* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

*::-webkit-scrollbar {
    display: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #fff;
    padding: 2vw;
}

button:focus-visible {
    border: unset;
}

input {
    all: unset;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    outline: none;
    box-sizing: border-box;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
    background: white;
    overflow: hidden;
    /*gap: 50px;*/
    gap: 2vw;
}

.left-panel {
    border-radius: 2vw;
    flex: 2;
    background: radial-gradient(circle at center, #ffffff 0%, #e1f4f1 20%, #e2d3e7 40%, #ffe2e2 60%, #d6f7df 80%, #bcdffb 100%);
    text-align: center;
    animation: gradient 15s ease infinite;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    position: relative;
}

.left-panel--head {
    display: flex;
    flex-direction: column;
    /*gap: 14px;*/
    gap: .75vw;
    position: absolute;
    /*top: 40px;*/
    top: 2vw;
    width: 100%;
}

.left-panel--head h2 {
    font-size: 1.25vw;
    font-weight: 500;
}

.left-panel--head p {
    font-size: 1.25vw;
    color: #777;
    font-weight: 200;
}

.left-panel--body {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.left-panel--body-wrapper {
    margin-top: 8vw;
    margin-bottom: 8vw;
}

.left-panel--footer {
    font-size: 1.25vw;
    color: #888;
    position: absolute;
    bottom: 2.08333333vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .55vw;
}

.left-panel--footer-desc {
    color: #888888;
    font-weight: 200;
}

.brand {
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55vw;
    color: #000;
}

.brand .brand-icon {
    width: 1.875vw;
    height: 1.875vw;
}

.brand .brand-link {
    font-size: 1.25vw;
    font-weight: 500;
    color: #000000;
    text-decoration: unset;
}

.right-panel {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    width: 100%;
    justify-content: space-between;
    overflow-y: auto;
}

.right-panel--head {
    display: flex;
    flex-direction: column;
    gap: .55vw;
}

.right-panel--head .right-panel--head--title {
    width: 100%;
    padding: 1.6vw;
    font-size: 1.2vw;
    border: 2px solid #000;
    border-radius: 1vw;
}

small {
    margin-top: .55vw;
    color: #888888;
    font-size: 1vw;
    display: block;
    text-align: center;
    font-weight: 300;
}

input[type="number"],
input[type="text"] {
    width: 100%;
    border: 2px solid #000;
}

input[type="number"] {
    border-color: #E0E0E0;
}

.range-inputs {
    display: flex;
    gap: .55vw;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: .55vw;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: .55vw;
    font-size: 1.25vw;
    padding: 1.5vw;
    border: 2px solid #E0E0E0;
    color: #E0E0E0;
    border-radius: 2.5vw;
    cursor: pointer;
    font-family: sans-serif;
    user-select: none;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.checkbox input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + .custom-checkbox {
    border-color: #000;
    background-color: #000;
}

.custom-checkbox {
    width: 1.5vw;
    height: 1.5vw;
    border: 2px solid #E0E0E0;
    display: inline-block;
    border-radius: 8px;
    position: relative;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 8px;
    border: solid #6AFF9C;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);

}

label.checkbox:hover .custom-checkbox::after {
    border: 2px solid #000;
}

label.checkbox:hover, label.checkbox:has(input:checked) {
    border: 2px solid #000;
    color: #000;
}

.checkbox input {
    /*width: 18px;*/
    /*height: 18px;*/
    width: 1vw;
    height: 1vw;
}

.right-panel--body {
    /*flex: 1;*/
}

.right-panel--footer {
    flex: 1;
    display: flex;
    flex-direction: column;
    /*gap: .55vw;*/
    gap: .5vw;
}

input[type="number"],
input[type="text"],
.checkbox,
#generate-btn,
#menu-generate-btn-mob,
.actions button {
    font-size: 1vw;
    padding: 1vw;
    border-radius: 2vw;
    font-weight: 200;
}

#menu-generate-btn-mob,
#generate-btn {
    background: #00FF88;
    color: black;
    padding: .5vw;
    border: none;
    border-radius: 2.5vw;
    font-size: 1vw;
    cursor: pointer;
    width: 100%;
}

#reload {
    font-weight: 200;
    background: #ff0048;
    color: black;
    padding: .5vw;
    border: none;
    border-radius: 2.5vw;
    font-size: 1vw;
    cursor: pointer;
    width: 100%;
}

#menu-generate-btn-mob {
    background: black;
    color: #00FF88;
}

.right-panel--footer #generate-btn {
    flex: 1;
    font-size: 2vw;
}

.actions {
    display: flex;
    justify-content: space-between;
    gap: 0.520833333vw;
}

#menu-setting-btn-mob,
#menu-share-btn-mob,
#info-btn-mob,
.actions button {
    border: 2px solid #E0E0E0;
    padding: 1vw;
    border-radius: 2.5vw;
    cursor: pointer;
    background: #fff;
    max-height: 4.895vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 4.895vw;
    width: 100%;
}

.actions button svg {
    max-width: 1.5vw;
    max-height: 1.5vw;
    width: 100%;
    height: 100%;
}

.number {
    font-size: 6vw;
    font-weight: 700;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(6vw, 1fr));
    justify-content: center;
    align-content: center;
    gap: 0.66vw;
    line-height: 1.4;
    word-break: break-word;
    text-wrap: nowrap;
    width: 100%;
    overflow-y: auto;
    padding-left: 5%;
    padding-right: 5%;
    align-items: start;
    padding-top: 2.2vw;
}

.number > :only-child {
    grid-column: 1 / -1;
    place-self: center;
    text-align: center;
}

.item-copy {
    font-size: 5.25vw;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 3px;
    text-align: center;
}

.item-copy:active {
    transform: scale(0.95);
}

.popup {
    position: fixed;
    bottom: 3vw;
    right: 36.2vw;
    border-radius: 0.88vw;
    opacity: 0;
    background: #fff;
    color: #000;
    padding: 1.04vw;
    font-size: 0.729166667vw;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.520833333vw;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 14.75vw;
    z-index: -1;
}

#popup-seo {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    cursor: pointer;
}

#popup-seo.hidden {
    display: none;
}

.popup-seo-content {
    background: #fff;
    padding: 1.25vw;
    border-radius: 1.04vw;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2.08vw;
    width: 70vw;
    max-height: 90vh;
    font-size: 12px;
    font-weight: 200;
    text-align: left;
    color: #888888;
    overflow-y: scroll;
    cursor: default;
}

.popup.show {
    opacity: 1;
    z-index: 100;
}

.popup span {
    font-size: 1.25vw;
    font-weight: 400;
    text-transform: lowercase;
}

#popup-close {
    background: unset;
    border: unset;
    width: 100%;
    height: 100%;
    max-width: 1.5625vw;
    max-height: 1.5625vw;
}

.share-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.share-popup.hidden {
    display: none;
}

.share-content {
    background: #fff;
    padding: 1.25vw;
    border-radius: 1.04vw;
    text-align: center;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2.08vw;
}

.share-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.520833333vw;
}

.share-icons button {
    background: #fff;
    border: 2px solid #E0E0E0;
    border-radius: 2.6vw;
    padding: 10px;
    cursor: pointer;
}

.share-icons button svg {
    width: 100%;
    height: 100%;
    max-height: 1.875vw;
    max-width: 1.875vw;
}

.share-close {
    background: black;
    color: #00FF88;
    padding: 1.5vw;
    border: none;
    border-radius: 2.5vw;
    font-size: 1.2vw;
    cursor: pointer;
    width: 100%;
    font-weight: 200;
}

.favourites-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.favourites-popup.hidden {
    display: none;
}

.favourites-content {
    background: #fff;
    padding: 1.25vw;
    border-radius: 1.04vw;
    width: 20vw;
    max-height: 26vw;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.833vw;
}

.favourites-content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.52vw;
}

.favourites-link {
    padding: 1.5vw;
    border: 2px solid #E0E0E0;
    color: #888888;
    border-radius: 1.04vw;
    width: 100%;
    font-weight: 200;
}

.favourites-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #E0E0E0;
    padding: 1.5vw;
    max-width: 4.635vw;
    max-height: 4.635vw;
    width: 100%;
    background: #fff;
    border-radius: 50%;
    height: 100%;
    cursor: pointer;
}

.favourites-content-body {
    font-size: 1.25vw;
    font-weight: 200;
    color: #888888;
}

.favourites-content-body > b {
    font-weight: 500;
    color: #000;
}

.favourites-close {
    background: black;
    color: #00FF88;
    padding: 1.5vw;
    border: none;
    border-radius: 2.5vw;
    font-size: 1.2vw;
    cursor: pointer;
    width: 100%;
    font-weight: 200;
}

.share-content,
.favourites-content {
    width: min(60vw, 400px);
}

.mobile-footer {
    display: none;
}

@media only screen and (max-width: 1024px) {
    body {
        padding: 2vw;
    }

    .container {
        gap: 1.8828125vw;
        flex-direction: column;
    }

    .left-panel {
        border-radius: 4.39453125vw;
        min-height: 49.8046875vw;
    }

    .left-panel--head {
        gap: 1.3671875vw;
        top: 3.90625vw;
    }

    .left-panel--head h2 {
        font-size: 2.34375vw;
    }

    .left-panel--head p {
    }

    .left-panel--body {
    }

    .left-panel--body-wrapper {
        margin-top: 15.1367188vw;
        margin-bottom: 15.1367188vw;
    }

    .left-panel--footer {
        bottom: 2.08333333vw;
        gap: 1.3671875vw;
    }

    .left-panel--footer-desc {
        font-size: 2.34375vw;
    }

    .brand {
        gap: 1vw;
    }

    .brand .brand-icon {
        width: 3.515625vw;
        height: 3.515625vw;
    }

    .brand .brand-link {
        font-size: 2.34375vw;
    }

    .right-panel {
        gap: 1.8828125vw;
    }

    .right-panel--head {
        gap: 1.9765625vw;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .right-panel--head #title-text-input {
        grid-column-start: 1;
        grid-column-end: 5;
    }

    .range-inputs {
        gap: 0.9765625vw;
        grid-column-start: 5;
        grid-column-end: 10;
    }

    small {
        margin-top: unset;
        font-size: 2.34375vw;
        grid-column-start: 1;
        grid-column-end: 10;
    }

    input[type="number"],
    input[type="text"],
    .checkbox,
    #generate-btn,
    .actions button {
        font-size: 2.34375vw;
        padding: 2vw;
        border-radius: 4.8828125vw;
    }

    input[type="number"],
    input[type="text"] {
        border-radius: 1.953125vw;
    }

    .checkbox-group {
        gap: 0.9765625vw;
        flex-direction: row;
    }

    .checkbox {
        width: 100%;
        gap: 0.9765625vw;
        font-size: 2.34375vw;
        padding: 2.9296875vw;
        border: 2px solid #E0E0E0;
        border-radius: 4.8828125vw;
    }

    .custom-checkbox {
        width: 2.9296875vw;
        height: 2.9296875vw;
        border: 2px solid #E0E0E0;
        border-radius: 0.41vw;
    }

    input[type="checkbox"]:checked + .custom-checkbox::after {
        width: 4px;
        height: 8px;
        border: solid #6AFF9C;
        border-width: 0 2px 2px 0;
    }

    label.checkbox:hover .custom-checkbox::after {
        border: 2px solid #000;
    }

    label.checkbox:hover, label.checkbox:has(input:checked) {
        border: 2px solid #000;
    }

    .checkbox input {
        width: 1vw;
        height: 1vw;
    }

    .right-panel--body {
        padding-bottom: 15vw;
    }

    .right-panel--footer {
        gap: 0.9765625vw;
        flex-direction: row;
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #fff;
        border-top: 2px solid #E0E0E0;
        padding: 1.953125vw;
        left: 0;
    }


    #generate-btn {
        padding: 2.9296875vw;
        border-radius: 4.8828125vw;
        font-size: 2.34375vw;
    }

    .actions {
        gap: 0.9765625vw;
    }

    .actions button {
        border: 2px solid #E0E0E0;
        padding: 2.5vw;
        border-radius: 50%;
        max-height: 8.69140625vw;
        min-width: 8.69140625vw;
    }

    .actions button svg {
        max-width: 3.515625vw;
        max-height: 3.515625vw;
    }

    .number {
        font-size: 11.71875vw;
        gap: 0.66vw;
    }

    .popup {
        bottom: 15vw;
        right: 2vw;
        border-radius: 0.88vw;
        padding: 1.953125vw;
        gap: 0.520833333vw;
        width: 35.15625vw;
    }

    .popup span {
        font-size: 2.34375vw;
    }

    #popup-close {
        max-width: 3.515625vw;
        max-height: 3.515625vw;
    }

    .popup-seo-content {
        padding: 2.25vw;
        border-radius: 2.04vw;
        gap: 2.08vw;
        width: 80vw;
    }

    .share-popup {
    }

    .share-content {
        padding: 3.90625vw;
        border-radius: 1.953125vw;
        min-width: 300px;
        gap: 2.08vw;
    }

    .share-icons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.9765625vw;
    }

    .share-icons button {
        border: 2px solid #E0E0E0;
        border-radius: 4.8828125vw;
        padding: 2.9296875vw;
    }

    .share-icons button svg {
        max-height: 3.515625vw;
        max-width: 3.515625vw;
    }

    .share-close {
        padding: 2.9296875vw;
        border-radius: 4.8828125vw;
        font-size: 2.34375vw;
    }

    .favourites-popup {
    }

    .favourites-content {
        width: 20vw;
        max-height: 45.2148438vw;
        padding: 3.90625vw;
        border-radius: 1.953125vw;
        min-width: 300px;
        gap: 2.08vw;
    }

    .favourites-content-head {
        gap: 0.9765625vw;
    }

    .favourites-link {
        padding: 2.9296875vw;
        border-radius: 1.953125vw;
        font-size: 2.34375vw;
    }

    .favourites-copy {
        padding: 2.9296875vw;
        max-width: 8.69140625vw;
        max-height: 8.69140625vw;
    }

    .favourites-content-body {
        font-size: 2.34375vw;
    }

    .favourites-content-body > b {
    }

    .favourites-close {
        padding: 2.9296875vw;
        border-radius: 4.8828125vw;
        font-size: 2.34375vw;
    }

    .share-content,
    .favourites-content {
        width: min(60vw, 400px);
    }
}

@media only screen and (max-width: 560px) {
    body {
        padding: unset;
        flex-direction: column;
    }

    .container {
        gap: 5.555vw;
        flex-direction: column;
    }

    .left-panel {
        border-radius: unset;
        min-height: unset;
    }

    .left-panel--head {
        gap: 3.888vw;
        top: 3.111vw;
    }

    .left-panel--head h2 {
        font-size: 5.666vw;
    }

    .left-panel--head p {
        font-size: 5.666vw;
    }

    .left-panel--body {
    }

    .left-panel--body-wrapper {
        margin-top: 20vw;
        margin-bottom: 20vw;
    }

    .left-panel--footer {
        bottom: 2.777vw;
        gap: 1.9444vw;
    }

    .left-panel--footer-desc {
        font-size: 3.666vw;
        max-width: 88.888vw;
        margin: 0 auto;
    }

    .brand {
        gap: 2.778vw;
    }

    .brand .brand-icon {
        width: 6vw;
        height: 6vw;
    }

    .brand .brand-link {
        font-size: 3.666vw;
    }

    .right-panel {
        display: none;
    }

    .mobile-footer {
        width: 100%;
        display: flex;
        padding: 2.555vw;
        gap: 2vw;
        align-items: center;
    }

    .range-inputs {
        gap: 0.9765625vw;
        grid-column-start: 5;
        grid-column-end: 10;
    }

    small {
        font-size: 3.28vw;
    }

    input[type="number"],
    input[type="text"],
    .checkbox,
    #menu-generate-btn-mob,
    .actions button {
        font-size: 3.28vw;
        padding: 3.35vw;
        border-radius: 4vw;
    }

    input[type="number"],
    input[type="text"] {
        border-radius: 4vw;
    }

    #menu-generate-btn-mob svg{
        max-width: 9vw;
        max-height: 9vw;
    }

    .checkbox-group {
        gap: 2.776vw;
        flex-direction: column;
    }

    .checkbox {
        width: 100%;
        gap: 2.776vw;
        font-size: 3.28vw;
        padding: 3.35vw;
        border: 2px solid #E0E0E0;
        border-radius: 13.888vw;
    }

    .custom-checkbox {
        width: 2.9296875vw;
        height: 2.9296875vw;
        border: 2px solid #E0E0E0;
        border-radius: 0.41vw;
    }

    input[type="checkbox"]:checked + .custom-checkbox::after {
        width: 4px;
        height: 8px;
        border: solid #6AFF9C;
        border-width: 0 2px 2px 0;
    }

    label.checkbox:hover .custom-checkbox::after {
        border: 2px solid #000;
    }

    label.checkbox:hover, label.checkbox:has(input:checked) {
        border: 2px solid #000;
    }

    .checkbox input {
        width: 1vw;
        height: 1vw;
    }


    #menu-generate-btn-mob {
        padding: 4.333vw;
        border-radius: 10.888vw;
        font-size: 3.666vw;
        max-height: 24.722vw;
    }

    .actions {
        gap: 0.9765625vw;
    }

    #menu-setting-btn-mob,
    #info-btn-mob,
    #menu-share-btn-mob,
    .actions button {
        border: 2px solid #E0E0E0;
        padding: 0;
        border-radius: 50%;
        max-height: 18.722vw;
        min-width: 18.722vw;
    }

    #menu-setting-btn-mob svg,
    #menu-share-btn-mob svg,
    #info-btn-mob svg,
    .actions button svg {
        max-width: 5vw;
        max-height: 5vw;
    }

    .number {
        font-size: 11.71875vw;
        gap: 0.66vw;
        grid-template-columns: repeat(auto-fill, minmax(16.42vw, 1fr));
        align-items: center;
        justify-items: center;
        max-height: 40vh;
    }

    .item-copy {
        font-size: 20vw;
    }

    .popup {
        bottom: 15vw;
        right: 2vw;
        border-radius: 0.88vw;
        padding: 1.953125vw;
        gap: 0.520833333vw;
        width: 35.15625vw;
    }

    .popup span {
        font-size: 2.34375vw;
    }

    #popup-close {
        max-width: 3.515625vw;
        max-height: 3.515625vw;
    }

    .popup-seo-content {
        padding: 3.25vw;
        border-radius: 3.04vw;
        gap: 3.08vw;
    }

    .share-popup {
    }

    .share-content {
        padding: 3.90625vw;
        border-radius: 1.953125vw;
        min-width: 300px;
        gap: 2.08vw;
    }

    .share-icons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.9765625vw;
    }

    .share-icons button {
        border: 2px solid #E0E0E0;
        border-radius: 4.8828125vw;
        padding: 2.9296875vw;
    }

    .share-icons button svg {
        max-height: 3.515625vw;
        max-width: 3.515625vw;
    }

    .share-close {
        padding: 2.9296875vw;
        border-radius: 4.8828125vw;
        font-size: 2.34375vw;
    }

    .favourites-popup {
    }

    .favourites-content {
        width: 20vw;
        max-height: 45.2148438vw;
        padding: 3.90625vw;
        border-radius: 1.953125vw;
        min-width: 300px;
        gap: 2.08vw;
    }

    .favourites-content-head {
        gap: 0.9765625vw;
    }

    .favourites-link {
        padding: 2.9296875vw;
        border-radius: 1.953125vw;
        font-size: 2.34375vw;
    }

    .favourites-copy {
        padding: 2.9296875vw;
        max-width: 8.69140625vw;
        max-height: 8.69140625vw;
    }

    .favourites-content-body {
        font-size: 2.34375vw;
    }

    .favourites-content-body > b {
    }

    .favourites-close {
        padding: 2.9296875vw;
        border-radius: 4.8828125vw;
        font-size: 2.34375vw;
    }

    .share-content,
    .favourites-content {
        width: min(60vw, 400px);
    }

    .mobile-setting-popup {
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .mobile-setting-popup-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 3.55vw;
    }

    .mobile-setting-popup-content-inputs {
        display: flex;
        flex-direction: column;
        gap: 1.78vw;
    }

    .mobile-setting-popup-content-inputs .range-inputs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.78vw;
    }

    #count-mob {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    .mobile-setting-popup-footer {
        position: absolute;
        border-top: 2px solid #E0E0E0;
        left: 0;
        width: 100%;
        padding: 3.57vw;
        background: #fff;
        bottom: 0;
    }

    .mobile-setting-popup-footer .mobile-setting-popup-footer-save {
        background: black;
        color: #00FF88;
        border: none;
        border-radius: 8.92vw;
        cursor: pointer;
        padding: 3.35vw;
        width: 100%;
        font-size: 3.28vw;
    }
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}