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

.gamesedition.hide {
    display: none;
}
.gamesedition .pageHeader {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.gamesedition .pageTitle {
    font-family: "Metropolis Bold";
    font-size: 24px;
    letter-spacing: 0.24px;
    color: #0d4962;
}

.gamesedition .goToContainer {
    display: flex;
    column-gap: 1rem;
}

.gamesedition .goToContainer.bottom,
.gamesedition .goToContainer.hide  {
    display: none;
}
.gamesedition .goToButton {
    display: flex;
    width: 160px;
    justify-content: center;
    color: #0d4962;
    font-family: "Metropolis Semi Bold";
    font-size: 17px;
    line-height: 18px;
    letter-spacing: 0.17px;
    border: 1.5px solid #0d4962;
    border-radius: 16px;
    padding: 10px;
}

.gamesedition .goToButton:hover {
    text-decoration: none;
}

.gamesedition .goToButton:focus-visible {
    outline: none;
}

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

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

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

.gamesedition .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;
}

/* Hide the browser's default checkbox */
.gamesedition .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.gamesedition .container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: solid 2px #0d4962;
    border-radius: 4px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.gamesedition .container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* Show the checkmark when checked */
.gamesedition .container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.gamesedition .container .checkmark:after {
    left: 5px;
    top: 1px;
    width: 7px;
    height: 13px;
    border: solid #0d4962;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.gamesedition .checkbox.hide,
.gamesedition .container.hide {
    display: none;
}

.gamesedition .input-title,
.communitycrud-user .members .modal-title,
.gamesedition .container .labelTitle {
    font-family: "Metropolis Semi Bold";
    font-size: 14px;
    letter-spacing: 0.14px;
    color: #0d4962;
    margin-top: 20px;
    margin-bottom: 10px;
}

.gamesedition .container .labelTitle {
    margin: 0;
    height: 17px;
}

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

.gamesedition .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;
}

.gamesedition .comment {
    font-family: "Metropolis Regular";
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
    text-align: left;
    color: #000;
    margin-top: 20px;
}

.gamesedition .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;
}

.gamesedition .inputWrapper {
    width: 96%;
}

.gamesedition .inputWrapper.hide {
    display: none;
}

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

.gamesedition .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 .modalContainer.hide {
    display: none;
}

.gvinput .modalContainer .modal {
    margin: auto;
    position: relative;
    background-color: white;
    display: block;
    width: 90%;
    margin-top: 0;
    padding-top: 5%;
    max-height: 111.5vh;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.gvinput .modalContainer .modal::-webkit-scrollbar {
    display: none;
}

.gvinput .list-value {
    width: 100%;
    display: inline-block;
    padding-block: 6px;
    margin-bottom: 0;
    height: 2rem;
    overflow-y: scroll;
}

.gvinput .modalContainer .btnContainer {
    display: flex;
    padding-block: 2% 2.5%;
}

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

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

.gamesedition .labels.hide {
    display: none;
}

.gamesedition .inputWrapper .viewGameletList,
.gamesedition .inputWrapper .createGamelet {
    display: flex;
    align-items: center;
    width: 100%;
    column-gap: 10px;
    margin-top: 15px;
    cursor: pointer;
}

.gamesedition .inputWrapper .viewGameletList .title,
.gamesedition .inputWrapper .createGamelet .title {
    font-family: "Metropolis Semi Bold";
    font-size: 14px;
    letter-spacing: 0.14px;
    color: #0d4962;
}

.gamesedition .inputWrapper .viewGameletList .listIcon {
    background-image: url(http://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/bo/bullet_list_icon_lm.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
}

.gamesedition .inputWrapper .createGamelet .addIcon {
    background-image: url(http://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/bo/plus_icon_blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
}

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

.gamesedition .imagesWrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    column-gap: 30px;
}

.gamesedition .imagesWrapper .imageContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gamesedition .imagesWrapper.hide {
    display: none;
}

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

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

.gamesedition .imageeditor .cropper-view-box,
.gamesedition .imageeditor .cropper-face {
    border-radius: 0;
}

.gamesedition .inputWrapper .viewGameletList.hide,
.gamesedition .inputWrapper .createGamelet.hide {
    display: none;
}

.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 .note {
    position: relative;
    width: 300px;
    top: 45px;
    font-family: "Metropolis Regular";
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.14px;
    color: #0d4962;
} 

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

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

.toggle input:checked ~ .note  {
    display: none;
}

/* Rocker ended .... */

.gamesedition .newMode .btnContainer {
    display: flex;
    cursor: pointer;
}

.gamesedition .newMode .btnContainer .addButton {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/circle_add_icon_blue_BO_v1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 26px;
    height: 23px;
}

.gamesedition .newMode .btnContainer .text {
    display: flex;
    align-items: center;
    font-family: "Metropolis Semi Bold";
    font-size: 14px;
    letter-spacing: 0.14px;
    margin-left: 5px;
    color: #0d4962;
}

/* DARK MODE */
.dark .gamesedition .inputWrapper .viewGameletList .listIcon {
    background-image: url(http://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/bo/bullet_list_icon_dm.png);
}

.dark .gamesedition .inputWrapper .createGamelet .addIcon {
    background-image: url(http://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/bo/icon-plus@3x.png);
}

.dark .gamesedition .pageTitle,
.dark .gamesedition .input-title,
.dark .gamesedition .gvinput .editable-placeholder,
.dark .gamesedition .container .labelTitle,
.dark .gamesedition .inputWrapper .viewGameletList .title,
.dark .gamesedition .inputWrapper .createGamelet .title,
.dark .gvinput .list-item,
.dark .buttonContainer .cancelButton,
.dark .gamesedition .newMode .btnContainer .text,
.dark .toggle .note {
    color: rgba(255, 255, 255, 0.87);
}

.dark .gamesedition .container .checkmark,
.dark .gamesedition .container .checkmark:after {
    border-color: rgba(255, 255, 255, 0.87);
}

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

.dark .gamesedition .newMode .btnContainer .addButton {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/circle_add_icon_white_BO_v1.svg);
}

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

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

    .gamesedition .goToContainer {
        display: none;
    }
    .gamesedition .goToContainer.bottom {
        display: flex;
        padding-top: 20px;
        width: 100%;
        justify-content: center;
    }
    .gamesedition .goToContainer.hide {
        display: none;
    }
}

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

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