.gamemodeedition {
    padding: 0 20px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow-y: auto;
}

.gamemodeedition .suggestion div::before {
    content: "\2022 ";
    padding: 0 5px;
}


.gamemodeedition .pageHeader {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.gamemodeedition .pageHeader .title {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

.gamemodeedition .pageHeader .title div:first-child,
.gamemodeedition .pageHeader .title div:nth-child(2)  {
    cursor: pointer;
}

.gamemodeedition .pageHeader .title > * {
    font-family: "Metropolis Bold";
    font-size: 24px;
    letter-spacing: 0.24px;
    color: #0d4962;
}

.gamemodeedition .checkbox {
    margin-top: 20px;
}

.gamemodeedition .columnOne,
.gamemodeedition .columnTwo {
    display: flex;
    width: 50%;
    flex-direction: column;
}

.gamemodeedition .columnTwo {
    align-items: flex-end;
}

.gamemodeedition .container {
    display: flex;
    height: 20px;
    align-items: center;
    position: relative;
    width: 96%;
    padding: 0;
    padding-left: 35px;
    cursor: pointer;
    margin: 10px 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.gamemodeedition .input-title{
    font-family: "Metropolis Semi Bold";
    font-size: 14px;
    letter-spacing: 0.14px;
    color: #0d4962;
    margin-top: 20px;
    margin-bottom: 10px;
}

.gamemodeedition .containerTitle {
    font-family: "Metropolis Bold";
    font-size: 18px;
    line-height: 1.11;
    letter-spacing: 2.5px;
    text-align: left;
    color: #0eb5fe;
}

.gamemodeedition .input-mainTitle {
    font-family: "Metropolis Bold";
    font-size: 20px;
    line-height: 1.11;
    letter-spacing: 2.5px;
    text-align: left;
    color: #000;
    margin-top: 20px;
    margin-bottom: 10px !important;
}

.gamemodeedition .gvinput .editable-placeholder,
.gvinput .list-item {
    font-family: "Metropolis Semi Bold";
    font-size: 14px;
    letter-spacing: 0.14px;
    color: #0d4962;
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
}

.gamemodeedition .inputWrapper {
    width: 96%;
}

.gamemodeedition .inputContainer {
    width: 100%;
    margin: 0;
    margin-top: 0;
}

.gamemodeedition .inputContainer > select {
    border: 1px solid #c8c8c7;
    background-color: white;
    border-radius: 10px;
    text-transform: lowercase;
    height: 35px;
    width: 75%;
    padding: 0 10px;
}

.gvinput .modalContainer {
    position: absolute;
    background-color: white;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    border-bottom-right-radius: 28px;
    border-bottom-left-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    height: fit-content;
}


.gvinput .inputContainer {
    margin-top: 0;
}

.gamemodeedition .labels {
    display: flex;
    justify-content: space-around;
    padding-inline: 5px;
}

.gamemodeedition .gvinput .image-thumbnail,
.gamemodeedition .gvinput .add-image-icon {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background-color: #f0f0f0;
    margin-bottom: 0;
}

.gamemodeedition .imageContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gamemodeedition .imageContainer .inputContainer {
    display: flex;
    justify-content: center;
}
.gamemodeedition .imageContainer .gvinput .inputContainer .action-icon {
    bottom: unset;
    bottom: -2px;
    right: -15px;
}

.gamemodeedition .gvinput .image-handler {
    width: auto;
    margin: 0;
    border: solid 2px #0d4962;
    border-radius: 8px;
}

.gamemodeedition .imageeditor .cropper-view-box,
.gamemodeedition .imageeditor .cropper-face {
    border-radius: 0;
}
.buttonContainer {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.buttonContainer .saveButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 42px;
    font-family: "Metropolis Bold";
    letter-spacing: 0.17px;
    color: white;
    font-size: 13px;
    margin-top: 30px;
    text-transform: uppercase;
    border-radius: 8px;
    background-color: #0d4962;
    cursor: pointer;
}

.buttonContainer .cancelButton {
    font-family: "Metropolis Bold";
    font-size: 13px;
    letter-spacing: 0.17px;
    color: #0d4962;
    margin-top: 20px;
    cursor: pointer;
}

/* only the rocker for private .... */

.toggle {
    --width: 106px;
    --height: calc(var(--width) / 3);

    position: relative;
    display: inline-block;
    width: var(--width);
    height: var(--height);
    border-radius: var(--height);
    cursor: pointer;
}

.toggle input {
    display: none;
}

.toggle .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--height);
    background-color: #0d4962;
    transition: all 0.4s ease-in-out;
}

.toggle .slider::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(var(--height) - 6px);
    height: calc(var(--height) - 6px);
    border-radius: 50%;
    background-color: #cae4ef;
    transition: all 0.4s ease-in-out;
}

.toggle input:checked + .slider {
    background-color: #cae4ef;
    border: solid 1px #0d4962;
}

.toggle input:checked + .slider::before {
    transform: translateX(calc(var(--width) - var(--height)));
    background-color: #0d4962;
    top: 2px;
    left: unset;
    right: 74px;
}

.toggle .labels {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: "Metropolis Semi Bold";
    font-size: 14px;
    letter-spacing: 0.14px;
    transition: all 0.4s ease-in-out;
}

.toggle .labels::after {
    content: attr(data-off);
    position: absolute;
    right: 16px;
    opacity: 1;
    transition: all 0.4s ease-in-out;
    color: #cae4ef;
}

.toggle .labels::before {
    content: attr(data-on);
    position: absolute;
    left: 16px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    color: #0d4962;
}

.toggle input:checked ~ .labels::after {
    opacity: 0;
}

.toggle input:checked ~ .labels::before {
    opacity: 1;
}

/* Rocker ended .... */


/* DARK MODE */
.dark .gamemodeedition .pageHeader .title > *,
.dark .gamemodeedition .input-title,
.dark .gamemodeedition .gvinput .editable-placeholder,
.dark .gamemodeedition .container .labelTitle,
.dark .gvinput .list-item,
.dark .buttonContainer .cancelButton {
    color: rgba(255, 255, 255, 0.87);
}

.dark .gamemodeedition .gvinput .editable-placeholder,
.dark .gvinput .list-item {
    background-color: #0d4962;
}

/* Mobile */
@media (max-width: 767px) {
    .gamemodeedition .columnOne,
    .gamemodeedition .columnTwo {
        width: 100%;
    }

    .gamemodeedition .columnTwo {
        align-items: flex-start;
    }
}

/* Mobile and iPad */
@media (min-width: 767px) and (max-width: 1023px) {
    .gamemodeedition .columnOne,
    .gamemodeedition .columnTwo {
        width: 100%;
    }

    .gamemodeedition .columnTwo {
        align-items: flex-start;
    }
}
