:root {
    --gold-01: #342918;
    --gold-02: #FFF5C2;
    --gold-03: #EFC466;
    --gold-04: 251, 196, 3;
    --gold-05: 251, 252, 212;
    --black-01: 10, 10, 10;
    /*--black-02: 13, 15, 23;*/
    --black-02: 16, 18, 26;
    --black-03: 21, 21, 21;

    --grey-01: 40, 40, 40;
    --grey-02: 60, 60, 60;
    --grey-03: 80, 80, 80;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: rgb(12, 12, 12);
}


.bg-main {
    background-color: rgb(var(--black-01));
}

.bg-secondary {
    background-color: rgb(var(--black-02));
}

.bg-tertiary {
    background-color: #1f2332;
}

.text-underline {
    text-decoration: underline;
}


.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 20px;
    box-sizing: border-box;
}

.section__header-logo.landing-logo {
    font-size: 24px;
    gap: 20px;
}

.section-inner--big {
    max-width: 1568px;
}


.gradient-bottom {
    width: 60px;
    margin-left: auto;
    margin-right: auto;
    height: 5px;
    background: linear-gradient(90deg, rgba(var(--gold-04), 0.5), rgba(var(--gold-05), 0.4)) !important;
}

.gradient-button {
    background: linear-gradient(90deg, rgba(var(--gold-04), 0.5), rgba(var(--gold-05), 0.4)) !important;
    border: 1px solid transparent;
    position: relative;
}

.gradient-button-disabled {
    background: linear-gradient(90deg, rgba(var(--grey-01), 0.5), rgba(var(--grey-03), 0.4)) !important;
    border: 1px solid transparent;
    position: relative;
}

.gradient-button::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(90deg, rgba(var(--gold-04), 0.5), rgba(var(--gold-05), 0.4)) !important;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.25s linear;
    border-radius: 4px;
}

.gradient-button:hover::before {
    opacity: 1;
}

.button-new.btn-icon {
    width: 150px;
    padding-left: 50px;
    padding-right: 0;
    font-size: 12px;
    font-weight: 700;
    border-radius: 2px;
}

.button-new.btn-icon span {
    position: absolute;
    left: -1px;
    top: -2px;
    bottom: -1px;
    width: 50px;
    height: auto;
    display: flex;
    align-items: center;
    color: #1DA1F2;
    border-radius: 0px 2px 2px 0px;
    border: 1px solid #343145;
    background: #1F2332;
    justify-content: center;
}

.button-new.btn-icon.discord-button {
    background: #5865F2;
    margin-bottom: 20px;
}

.button-new.btn-icon.discord-button span {
    color: #5865F2;
}

.button-new.btn-icon.no-icon {
    background-color: #1F2332;
    color: #99A0B9;
    padding-left: 0;
    border-color: #343145;
    border-radius: 2px;
}

.button-new.btn-icon.no-icon:hover {
    background-color: #454b60;
    color: #fff;
    border-color: #454b60;
}

.button-new {
    border-radius: 4px;
    color: #10121A;
    cursor: pointer;
    border: 1px solid #2196F3;
    background-color: #2196F3;
    width: 35px;
    /* height: 35px; */
    height: 32px;
    font-size: 16px;
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
    margin-right: 8px;
    position: relative;
}

.button-new--disabled {
    color: #99A0B9;
    background-color: #1F2332;
    border: 1px solid #343145;
}

.button-new.download {
    color: #99A0B9;
    background-color: #1F2332;
    border: 1px solid #343145;
}

.button-new.download-text-btn {
    color: #2196F3;
    background-color: #1F2332;
    border: 1px solid #2196F3;
    width: auto;
    height: auto;
    padding: 6px 15px;
    font-size: 12px;
}

.button-new.download-text-btn.blue-btn {
    background-color: #2196F3;
    color: #343145;
    padding: 10px 20px;
}

.button-new.download-text-btn.blue-btn:hover {
    color: #2196F3;
    background-color: #C5E0F9;
    opacity: 1;
    border: 1px solid #2196F3;
}

.button-new.download-text-btn.red-btn {
    background-color: #FF0000;
    color: #fff;
    padding: 10px 20px;
    border-color: #FF0000;
}

.button-new.download-text-btn.red-btn:hover {
    color: #FF0000;
    border: 1px solid #FF0000;
    opacity: 1;
    background-color: #F2B8B7;
}

.button-new.download-text-btn.green-btn {
    background-color: #00FFA3;
    color: #343145;
    padding: 10px;
    border-color: #00FFA3;
    margin: 0;
}

.button-new.download-text-btn.green-btn:hover {
    border: 1px solid #00FFA3;
    color: #00FFA3;
    opacity: 1;
    background: #57ffc2d6;
}

.button-new.download-text-btn:hover {
    background-color: #2196F3;
    color: #10121A;
    opacity: 0.8;
}

.empty-row:hover {
    background-color: inherit;
}

.button-new.apply-btn {
    width: 82%;
}

.button-new-active {
    background: unset;
    border: 1px solid #2196F3;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    background-color: transparent;
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
    color: #Fff;
    background-color: #2196F3;
}

.button-disabled {
    background: unset;
    border: 1px solid grey;
    font-size: 12px;
    padding: 6px 15px;
    border-radius: 4px;
    color: grey;
    cursor: pointer;
    background-color: transparent;
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}

.button-new:hover {
    color: #99A0B9;
    background-color: #1F2332;
    border: 1px solid #343145;
}

.button-new.download:hover {
    border: 1px solid #2196F3;
    background-color: #2196F3;
    color: #10121A;
}

.gradient-button--discord {
    background: linear-gradient(90deg, #192259, #5563C6) !important;
}

.button {
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    padding: 20px 40px;
    text-align: center;
    border-radius: 6px;
    border: unset;
}

.button.inactive {
    opacity: 0.6;
    pointer-events: none;
}

.button--small {
    padding: 12px 32px;
    font-size: 16px;
}

.button--full {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p {
    font-weight: 400;
    margin-top: 0;
}

a:hover {
    color: rgba(var(--gold-01), 1);
}

.mt-4 {
    margin-top: 16px;
}

.sort-icon {
    width: 12px;
    vertical-align: text-top;
    margin-left: 5px;

}

.sort-icon:hover {
    opacity: 0.6;
}


.section__header {
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background-color: #0d111640;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.header-sub {
    height: 99px;
}

.section__header .section-inner__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
}

.section__header-logo {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 800;
    text-decoration: unset;
    gap: 5px;
}

@media only screen and (max-width: 3000px) {
    .section-inner--big {
        max-width: 1545px
    }
}

@media only screen and (max-width: 1254px) {
    .section-inner--big {
        max-width: 1161px
    }
}

@media only screen and (max-width: 768px) {
    .section__header-logo img {
        /* max-width: 40px; */
    }

    .section__header-logo span {
        display: none;
    }
}

.section__header-coupon {
    display: block;
    margin-left: -30px;
}

.section__mobile_header-coupon {
    margin-top: 10px;
    display: none;
}

@media only screen and (max-width: 1120px) {
    .section__header-coupon {
        display: none;
    }

    .section__mobile_header-coupon {
        display: block;
    }
}

.header__coupon-text {
    font-size: 24px;
    color: #FFFFFF;
    text-align: center;
}

.header__coupon-text__gold {
    background: linear-gradient(90deg, rgba(var(--gold-04), 1), rgba(var(--gold-05), 0.75));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.section__header-navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section__header-navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: unset;
    font-weight: 600;
    opacity: 0.8;
}

.section__header-navbar a.text-underline {
    border-bottom: 1px solid #fff;
}

@media only screen and (max-width: 768px) {
    .section__header-navbar a {
        font-size: 14px;
    }
}

.section__header-navbar a:hover {
    /* color: rgba(var(--gold-01), 1); */
    opacity: 1;
}

.section__header-navbar--login .after-login {
    display: none;
}

.section__header-navbar--login.logged-in .after-login {
    display: block;
    border: 2px solid rgba(251, 196, 3);
    padding: 5px 10px;
    border-radius: 40px;
}

.section__header-navbar--login.logged-in .after-login:hover {
    box-shadow: rgb(255 255 255 / 70%) 0px 0px 12px 0px;
}

.section__header-navbar--login.logged-in .after-login:hover a {
    color: #fff;
}

.section__header-navbar--login.logged-in .before-login {
    display: none;
}




.section__banner {
    /* background-image: url("../img/banner-img.jpg"); */
    /*background-image:*/
    /*        linear-gradient(to right, rgba(var(--black-01), 0.9), rgba(var(--black-02), 1)),*/
    /*        url('../img/background-main.jpg');*/
    background-image:
        linear-gradient(to right, rgba(var(--black-01), 0.5), rgba(var(--black-02), 0.9)),
        url('../img/background-main.jpg');
    background-repeat: no-repeat, repeat;
    background-size: cover;
    height: 800px;
    position: relative;
}

.section__banner .section-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.section__banner--heading {
    font-size: 64px;
    margin-bottom: 30px;
    font-weight: 900;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .section__banner--heading {
        font-size: 36px;
    }
}

.section__banner--text {
    font-size: 20px;
    margin-bottom: 50px;
    font-weight: 600;
    text-align: center;
}

.section__banner-icon {
    position: absolute;
    pointer-events: none;
}

.section__banner-icon--01 {
    top: 20%;
    left: 15%;
    max-width: 100px;
    opacity: 0.6;
}

.section__banner-icon--02 {
    bottom: 0;
    height: 200px;
    opacity: 0.5;
}

.section__banner-icon--03 {
    top: 20px;
    right: 20%;
    opacity: 0.2;
}

.section__banner-icon--04 {
    bottom: 20%;
    right: 10%;
    max-width: 130px;
    opacity: 0.6;
}



.section__cards {
    /* background-color: rgba(var(--black-01), 1); */
    padding-top: 90px;
    padding-bottom: 90px;
}

.product-card-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section__cards .slick-track {
    display: flex !important;
}

.section__cards .slick-slide {
    height: inherit !important;
}

.section__cards .section-inner--tab {
    display: flex;
    color: #fff;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.section__cards .section-inner--tab .tab {
    cursor: pointer;
}

.section__cards .section-inner--tab .tab.active {
    padding: 5px 10px;
    background-color: #1f2332;
    border-radius: 4px;
}

.section__cards .section-inner--us {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

@media only screen and (max-width: 1050px) {
    .section__cards .section-inner--us {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 768px) {
    .section__cards .section-inner--us {
        grid-template-columns: 1fr;
    }
}

.section__cards .section-inner--us.active {
    display: grid;
}

.section__cards .section-inner--home {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

@media only screen and (max-width: 1050px) {
    .section__cards .section-inner--home {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 768px) {
    .section__cards .section-inner--home {
        grid-template-columns: 1fr;
    }
}

.section__cards .section-inner--home.active {
    display: grid;
}

.section__cards .section-inner--eu {
    /* display: none; */
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    height: 0;
    visibility: hidden;
}

.section__cards .section-inner--eu.active {
    /* display: block; */
    height: auto;
    visibility: visible;
}

.section__cards .section-inner--us-res {
    /* display: none; */
    justify-content: space-around;
    /*flex-wrap: wrap;*/
    gap: 30px;
    height: 0;
    visibility: hidden;
}

.section__cards .section-inner--us-res.active {
    /* display: block; */
    height: auto;
    visibility: visible;
    display: flex;
}

@media only screen and (max-width: 1300px) {
    .residential-product-boxes {
        display: block !important;
    }

    .section__cards-card--residential {
        margin-top: 20px;
    }
}

@media only screen and (min-width: 1300px) {
    .section__cards-card--residential {
        width: 750px;
    }
}

.section__cards-card {
    background-repeat: no-repeat;
    padding: 40px 30px;
    border-radius: 12px;
    background: linear-gradient(179.93deg, #1518244d .07%, #151824 25.47%);
    background-blend-mode: darken;
    background-size: contain;
    background-repeat: no-repeat;
    /* box-shadow: 0px 0px 14px 2px rgb(var(--gold-01), 0.2); */
    border: 1px solid #ececec24;
    margin-right: 22px;
}

.section__cards .section-inner--eu .section__cards-card {
    /* width: calc(50% - 15px);
    max-width: 366px; */
    /* box-sizing: border-box; */
}

@media only screen and (max-width: 768px) {
    .section__cards-card--us {
        width: auto;
    }

    .section__cards .section-inner--eu .section__cards-card {
        width: 100%;
    }
}

.slick-slider-product .fa-angle-left {
    font-size: 36px;
    position: absolute;
    left: 20px;
    bottom: 50%;
    z-index: 1;
    color: #fff;
    cursor: pointer;
}

.slick-slider-product .fa-angle-right {
    font-size: 36px;
    position: absolute;
    right: 20px;
    bottom: 50%;
    z-index: 1;
    color: #fff;
    cursor: pointer;
}

.section__cards-card--us-flawless {
    background-image: url(../img/card-us-flawless.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--us-fixed-line {
    background-image: url(../img/card-us-fixed-line.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--us-fraud-score {
    background-image: url(../img/card-us-fraud-score.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--us-social-media {
    background-image: url(../img/card-us-social-media.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--us-scraping {
    background-image: url(../img/card-us-scraping.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}



.section__cards-card--us-pinnacle {
    background-image: url(../img/card-us-ultra.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--us-ultra {
    background-image: url(../img/card-us-ultra.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--us-event {
    background-image: url(../img/card-us-event.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--us-signature {
    background-image: url(../img/card-us-signature.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--us-select {
    background-image: url(../img/card-us-select.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--us-lite {
    background-image: url(../img/card-us-lite.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--eu-signature {
    background-image: url(../img/card-eu-signature.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--eu-select {
    background-image: url(../img/card-eu-select.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--eu-lite {
    background-image: url(../img/card-eu-lite.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--residential {
    background-image: url(../img/card-eu-select.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--home-isp {
    background-image: url(../img/card-home-isp.jpg), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--us-growtopia-green {
    background-image: url(../img/green-up.png), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

.section__cards-card--us-growtopia-red {
    background-image: url(../img/red-down.png), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}

/*
.section__cards-card--us {
    background-image: url(../img/us-flag.png), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}
.section__cards-card--eu {
    background-image: url(../img/eu-flag.png), linear-gradient(179.93deg, rgba(21, 24, 36, 0.61) 0.07%, rgba(0, 0, 0, 0.98) 16.47%, rgb(21, 24, 36) 100%);
}
*/
.section__cards-card h2 {
    font-size: 32px;
    font-weight: 700;
}

.section__cards-card .card-list {
    color: #fff;
    list-style: none;
    padding: 0;
    font-size: 16px;
    margin-top: 50px;
    margin-bottom: 50px;
    flex: 1;
}

.section__cards-card .card-list-item {
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 35px;
}

.section__cards-card .card-list-item:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/tick-gold.png) no-repeat;
    top: 0;
    left: 0;
    position: absolute;
    display: inline-block;
    background-size: cover;
}

.section__cards-card--box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section__cards-card--box-child {
    color: #fff;
    font-weight: 700;
    background: #1f2332;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
}

.section__cards-card--box-child.active {
    opacity: 1;
}

.section__cards-card--box-input {
    display: none;
}

.section__cards-card label {
    font-size: 16px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 8px;
    color: #fff;
    display: block;
}

.custom-amount label {
    cursor: pointer;
}

.custom-amount input {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    height: 30px;
    width: calc(100% - 0px);
    max-width: calc(100% - 0px);
    border-radius: 4px;
    display: none;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0;
    margin-right: 0;
}

.custom-amount input.active {
    display: block;
}

.section__cards-form--price {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 20px;
}

.section__cards-form--price .section__cards-form--price-value {
    font-size: 43px;
    font-weight: 900;
    color: #fff;
}

.section__cards-form--price span {
    color: rgba(var(--gold-04), 1);
    font-size: 24px;
    padding-right: 5px;
}

.section__cards-form--price .section__cards-form--price-caption {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.slick-slider-main .fa-angle-left {
    font-size: 36px;
    position: absolute;
    left: 20px;
    bottom: 50%;
    z-index: 1;
    color: #fff;
    cursor: pointer;
}

.slick-slider-main .fa-angle-right {
    font-size: 36px;
    position: absolute;
    right: 20px;
    bottom: 50%;
    z-index: 1;
    color: #fff;
    cursor: pointer;
}




.section__multirow {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section__multirow--subheading {
    font-size: 32px;
    font-weight: 900;
}

.section__multirow--heading {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 50px;
}

.section__multirow-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 50px;
}

@media only screen and (max-width: 768px) {
    .section__multirow-boxes {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media only screen and (max-width: 425px) {
    .section-inner {
        padding-left: 34px;
        padding-right: 26px;
    }
}

@media only screen and (max-width: 400px) {
    .section__multirow-boxes {
        grid-template-columns: 1fr;
    }
}

.section__multirow-box {
    color: #fff;
    background-color: rgba(var(--black-02), 1);
    padding: 20px;
    border-radius: 8px;
}

.section__multirow-box i {
    width: 20px;
    height: 20px;
    background-color: rgba(var(--black-01), 1);
    color: rgba(var(--gold-04), 1);
    font-size: 20px;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__multirow-box h4 {
    font-size: 24px;
    font-weight: 900;
    margin-top: 24px;
    margin-bottom: 20px;
}

.section__multirow-box p {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.8;
}




.section__slider {
    padding-top: 90px;
    padding-bottom: 90px;
}

.slick-slide img {
    width: 100%;
    opacity: 0.9;
}

.slick-prev.slick-arrow {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIGZpbGw9JyNmZmYnIHdpZHRoPSc4JyBoZWlnaHQ9JzgnIHZpZXdCb3g9JzAgMCA4IDgnPjxwYXRoIGQ9J001LjI1IDBsLTQgNCA0IDQgMS41LTEuNUw0LjI1IDRsMi41LTIuNUw1LjI1IDB6Jy8+PC9zdmc+);
}

.slick-next.slick-arrow {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIGZpbGw9JyNmZmYnIHdpZHRoPSc4JyBoZWlnaHQ9JzgnIHZpZXdCb3g9JzAgMCA4IDgnPjxwYXRoIGQ9J00yLjc1IDBsLTEuNSAxLjVMMy43NSA0bC0yLjUgMi41TDIuNzUgOGw0LTQtNC00eicvPjwvc3ZnPg==);
}




.section__footer {
    color: #fff;
    padding-top: 90px;
    padding-bottom: 90px;
    width: 100%;
    max-width: unset;
}

.section__footer .section__footer--top {
    display: grid;
    /* grid-template-columns: 2fr 2fr 1fr; */
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media only screen and (max-width: 400px) {
    .section__footer .section__footer--top {
        grid-template-columns: 1fr;
    }
}

.section__footer h2 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
}

.section__footer p {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
    margin: 12px 0;
}

.section__footer--links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.section__footer a {
    color: #fff;
    display: block;
    text-decoration: unset;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

.section__footer a:hover {
    color: rgba(var(--gold-01), 1);
}

.section__footer--bottom-inner {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #282c3e;
}

.section__footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 18px;
}

.section__footer-logo img {
    max-width: 34px;
}

.section__footer--bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.section__footer--bottom-links a:not(:last-child) {
    padding-right: 10px;
    border-right: 1px solid rgba(var(--gold-01), 1);
}




.section__review .section-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 180px;
    color: #ffffffc2;
    font-size: 16px;
}

.section__review .section-inner.inactive {
    opacity: 0.2;
    pointer-events: none;
}

@media only screen and (max-width: 768px) {
    .section__review .section-inner {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
}

.section__review-items {
    /* border: 1px solid #ececec24; */
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.section__review-items--header {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 30px;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #ececec24;
}

.section__review-items--item {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 30px;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #ececec24;
}

.section__review-items--empty {
    text-align: right;
    margin-top: 20px;
    padding-right: 20px;
}

.section__review-items--empty a {
    color: #fff;
    text-decoration: underline;
}

.section__review-items p {
    font-size: 13px;
}

.section__review-items h5 {
    font-size: 15px;
    margin-bottom: 5px;
}

.section__review-items .fa-close {
    cursor: pointer;
}

.section__review-summary {
    /* border: 1px solid #ececec24; */
    border-radius: 15px;
}

.section__review-summary--inner {
    height: auto;
}

.section__review-summary--header {
    padding: 20px;
    border-bottom: 1px solid #ececec24;
}

.section__review-summary--subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.section__review-summary--total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.section__review-summary--total p {
    font-size: 13px;
    font-style: italic;
}

.section__review-summary--sum {
    text-align: right;
    padding: 20px;
}

.section__review-summary--sum h5 {
    font-size: 32px;
    color: rgba(var(--gold-01), 1);
}

.section__review-summary--sum p {
    font-size: 13px;
}

.section__review-summary--check {
    text-align: right;
    padding: 20px 20px 0 20px;
}

.section__review-summary--check a {
    color: rgba(var(--white-01), 1)
}

.section__review-summary--button {
    padding: 20px;
}

.section__review-summary--shopping {
    color: inherit;
    text-decoration: unset;
    display: block;
    text-align: right;
    padding: 20px;
    padding-top: 0;
    font-size: 14px;
}

.section__review-items--promo {
    align-self: end;
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.example.example5 .section__review-items--promo button {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section__review-items--promo input {
    height: 40px;
    background: unset;
    border: unset;
    border-bottom: 1px solid #ffffff91 !important;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .section__review-items--promo input {
        width: 100%;
    }
}

.section__review-items--promo button {
    height: 40px;
    font-size: 16px;
    padding: 8px 32px;
}


/* Login page */
.section__login {
    color: #fff;
    display: none;
    background-image:
            linear-gradient(to right, rgba(var(--black-01), 0.5), rgba(var(--black-02), 1)),
            url('../img/background-main.jpg');
    background-repeat: no-repeat, repeat;
    background-size: cover;
    min-height: 800px;
}

.section__login.active {
    display: block;
}

.section__login--heading {
    text-align: center;
    font-size: 48px;
    margin-bottom: 10px;
}

.section__login--heading-wrapper {
    width: fit-content;
    margin: auto;
}

@media only screen and (max-width: 768px) {
    .section__login--heading {
        font-size: 36px;
    }
}

.section__login .section-inner {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section__login .section-inner__main {
    max-width: 500px;
    margin: auto;
}

.section__login .section-inner__main form {
    background: #0d0f17;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ececec24;
}

.section__login .section-inner__main .gradient-bottom {
    margin-bottom: 70px;
}

.section__login label {
    margin-bottom: 5px;
    display: block;
}

.section__login input {
    margin-bottom: 30px;
}

.section__login input.main-input {
    width: calc(100% - 20px);
    height: 40px;
    background: transparent;
    border: 1px solid #ffffffeb;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    border-radius: 4px;
}

.section__login .form-other {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section__login .form-other__check {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.section__login .form-other__forgot {
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.9;
}

.section__login .form-other__check input {
    margin: 0;
    margin-right: 10px;
    margin-bottom: 6px;
}

.section__login .form-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
    .section__login .form-buttons {
        gap: 15px;
    }
}

.section__login .form-buttons .button {
    min-width: 200px;
}

@media only screen and (max-width: 768px) {
    .section__login .form-buttons .button {
        width: 100%;
    }
}

.section__login .form-to {
    text-align: center;
    margin-top: 30px;
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.9;
}

.login-modal {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: none;
}

.login-modal.active {
    z-index: 999999;
    display: block;
}

.login-modal__content {
    max-width: 500px;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 9999;
}

.login-modal__content--main {
    width: 100%;
    padding: 50px 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: rgb(255 255 255 / 20%) 0px 0px 5px 0px;
}

.login-modal--heading {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
}

.login-modal--content {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.login-modal--icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border: 2px solid white;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 30px;
    font-size: 30px;
}

.login-modal--icon .fa {
    display: none;
}

.login-modal--icon.error {
    border: 2px solid #f27474;
    color: #f27474;
}

.login-modal--icon.error .fa-exclamation {
    display: block;
}

.login-modal--icon.info {
    border: 2px solid rgba(var(--gold-01), 1);
    color: rgba(var(--gold-01), 1);
}

.login-modal--icon.info .fa-info {
    display: block;
}

.password-eye-wrapper {
    position: relative;
}

.password-eye-wrapper i {
    position: absolute;
    right: 10px;
    top: 11px;
    z-index: 5;
    cursor: pointer;
}


/* Password page */
.section__login.section__login--password {
    display: block;
    height: calc(100vh - 99px);
}

.after-login__password a {
    padding-left: 10px;
    padding-right: 10px;
}

.section__login--password .section-inner__main form {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Dashboard */
.section__header-navbar--user {
    color: #fff;
    position: relative;
}

.section__header-navbar--user-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    cursor: pointer;
    height: 60px;
}

.section__header-navbar--user-avatar {
    width: 29px;
    height: 29px;
    background: black;
    border-radius: 50%;
    padding: 5px;
}

.section__header-navbar--user-inner i {
    font-size: 15px;
}

.section__header-navbar--dropdown {
    position: absolute;
    background: black;
    padding: 30px;
    right: 0;
    top: 100%;
    display: none;
    border-radius: 4px;
    gap: 15px;
    flex-direction: column;
    box-shadow: rgb(255 255 255 / 20%) 0px 0px 5px 0px;
}

.section__header-navbar--dropdown a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section__header-navbar--user:hover .section__header-navbar--dropdown {
    display: flex;
}

.section__dashboard {
    min-height: calc(100vh - 99px);
    padding-top: 40px;
    position: relative;
    z-index: 2;
}

.section__dashboard.inactive {
    background: unset;
}

.section__dashboard-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 40px;
    color: #fff;
    padding-bottom: 60px;
}

@media only screen and (max-width: 768px) {
    .section__dashboard-main {
        grid-template-columns: 1fr;
    }
}

.section__dashboard--left-top {
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
    /*border: 1px solid #ffffffa6;*/
    border: 2px solid rgba(100, 100, 100, 0.2);
}

.section__dashboard--left-user-avatar {
    width: 100px;
    height: 100px;
    background: black;
    border-radius: 50%;
    padding: 5px;
}

.section__dashboard--left-user-name {
    font-size: 24px;
}

.section__dashboard--left-bottom {
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 4px;
    /*border: 1px solid #ffffffa6;*/
    border: 2px solid rgba(100, 100, 100, 0.2);
}

.section__dashboard--right {
    overflow: auto;
    border-radius: 4px;
    /*border: 1px solid #ffffffa6;*/
    /*padding: 20px;*/
}

.section__dashboard--right-top {
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    margin-bottom: 30px;
    min-height: 280px;
    max-height: 280px;
    border-radius: 4px;
    /*border: 1px solid #ffffffa6;*/
    border: 2px solid rgba(100, 100, 100, 0.2);
}

.section__dashboard--right-bottom {
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
    min-height: 520px;
    overflow-x: auto;
    border-radius: 4px;
    /*border: 1px solid #ffffffa6;*/
    border: 2px solid rgba(100, 100, 100, 0.2);
}

.section__dashboard--right-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    padding-top: 50px;
}

.section__dashboard--right-buttons button {
    min-width: 150px;
}

.section__dashboard .table-wrapper {
    min-width: 600px;
    height: 420px;
    overflow-y: scroll;
}

.section__dashboard table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.section__dashboard table td,
.section__dashboard table th {
    text-align: center;
    border: solid 1px transparent;
    border-style: none solid solid none;
}

.section__dashboard table th {
    padding-bottom: 20px;
}

.section__dashboard table td {
    padding: 10px 5px;
    cursor: pointer;
}

.section__dashboard table tr.active td:first-child,
.section__dashboard table tr:hover td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.section__dashboard table tr.active td:last-child,
.section__dashboard table tr:hover td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.section__dashboard--right-top .loader {
    margin-left: auto;
    margin-right: auto;
}

.section__dashboard--right-top .loader-wrapper,
.section__dashboard--right-top .after-load {
    display: none;
}

.section__dashboard--right-top.loading .loader-wrapper {
    display: block;
}

.section__dashboard--right-top.loaded .after-load {
    display: block;
    line-height: 1.8;
    overflow: auto;
}

.section__dashboard--right-top.loaded .after-load__inner {
    max-height: 225px;
    min-height: 225px;
}

.section__dashboard--right-top.loading .pre-load,
.section__dashboard--right-top.loaded .pre-load {
    display: none;
}

.section__dashboard--left-bottom {
    height: max-content;
    min-height: 520px;
}

.section__dashboard--left-bottom .after-load {
    text-align: center;
    width: 100%;
}

.section__dashboard--left-bottom .after-load .after-load--note {
    background: transparent;
    width: 100%;
    height: 100px;
    margin-top: 30px;
    border-radius: 4px;
    color: white;
    padding: 10px;
}

.section__dashboard--left-bottom .time-progress {
    height: 12px;
    background: #fff;
    border-radius: 10px;
}

.section__dashboard--left-bottom .time-progress--inner {
    height: 100%;
    background-color: #2196F3;
    border-radius: 10px;
}

.section__dashboard--left-bottom .loader-wrapper,
.section__dashboard--left-bottom .after-load {
    display: none;
}

.section__dashboard--left-bottom.loading .loader-wrapper {
    display: block;
}

.section__dashboard--left-bottom.loaded .after-load {
    display: block;
}

.section__dashboard--left-bottom.loading .pre-load,
.section__dashboard--left-bottom.loaded .pre-load {
    display: none;
}

.modal-check-terms {
    margin-bottom: 20px;
}

.modal-check-terms a {
    color: rgba(var(--gold-01), 1);
}

#settingModal input {
    width: calc(100% - 20px);
    height: 40px;
    background: transparent;
    border: 1px solid #ffffffeb;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 15px;
}

#settingModal button {
    margin-bottom: 30px;
    margin-top: 20px;
}

.setting-modal--heading {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.setting-modal--heading--second {
    margin-top: 40px;
}

.setting-modal__tab {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    gap: 20px;
    cursor: pointer;
    margin-bottom: 40px;
    line-height: 1.8;
}

@media only screen and (max-width: 768px) {
    .setting-modal__tab {
        font-size: 16px;
    }
}

.setting-modal__tab p.active {
    border-bottom: 2px solid #fff;
}

.setting-modal__tab-content {
    display: none;
}

.setting-modal__tab-content.active {
    display: block;
}

#settingModal .login-modal__content--main {
    min-height: 400px;
}

.dashboard-table__main.active {
    background: #161a2a;
}

.dashboard-table__main:hover {
    background: #161a2a;
}

.toggle-particle {
    position: fixed;
    right: 30px;
    top: 260px;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    background: white;
    color: #0d0f17;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.toggle-particle .fa-eye {
    display: none;
}

.toggle-particle.inactive .fa-eye-slash {
    display: none;
}

.toggle-particle.inactive .fa-eye {
    display: block;
}

div.swal2-popup {
    background-color: #0d0f17;
    color: #fff;
    padding-bottom: 50px;
}


/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 20px;
    vertical-align: middle;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch input:checked~.round {
    background-color: rgba(33, 150, 243, 0.25);
}


.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #343145;
    background-color: #1F2332;
    -webkit-transition: transform .4s, border-width .2s linear, height .2s linear, width .2s linear;
    transition: transform .4s, border-width .2s linear, height .2s linear, width .2s linear;
}



.switch .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 0px;
    bottom: 0px;
    background-color: #2196F3;
    -webkit-transition: transform .4s, border-width .2s linear, height .2s linear, width .2s linear;
    transition: transform .4s, border-width .2s linear, height .2s linear, width .2s linear;
}

.switch-disabled .slider:before {
    background-color: #7c7c7c !important;
}


.switch input:checked+.slider {
    border: 2px solid #2196F3;
}

.switch .text-on {
    display: none;
    font-size: 12px;
    position: absolute;
    left: 11px;
    top: 5px;
    color: #48aeff;
}

.switch .text-off {
    font-size: 12px;
    position: absolute;
    right: 11px;
    top: 5px;
}

.switch input:checked~.text-on {
    display: block;
}

.switch input:checked~.text-off {
    display: none;
}

.switch input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

.switch input:checked+.slider:before {
    transform: translateX(20px);
    height: 18px;
    width: 18px;
    top: -2px;
}

.switch .slider.round {
    border-radius: 34px;
    z-index: 1;
}

.switch .slider.round:before {
    border-radius: 50%;
}

/* Loader */
/*.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #2196F3;
    width: 70px;
    height: 70px;
    -webkit-animation: spin 1s linear infinite;
    !* Safari *!
    animation: spin 1s linear infinite;
}*/

.loader-wrapper {
    position: relative;
    margin: auto;
}

.loader-wrapper__logo {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

::-webkit-scrollbar {
    width: 8px;
    height: 10px;

}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {

    background-color: #a3a3a3;
    border-radius: 8px 0 8px 0px;

}

::-webkit-scrollbar-thumb:hover {
    background: #b7b7b7;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Scrollbar custom */
@media only screen and (min-width: 768px) {
    body div::-webkit-scrollbar {
        display: block;
        width: 10px;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    body {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    body div {
        -ms-overflow-style: block;
        /* IE and Edge */
        scrollbar-width: block;
        /* Firefox */
    }
}


.tab-pane {
    padding: 15px;
    height: 300px;
}

.nav-tabs {
    position: relative;
    border: none !important;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.nav-tabs li {
    margin: 0px !important;
}

.nav-tabs li a {
    position: relative;
    margin-right: 0px !important;
    padding: 20px 40px !important;
    font-size: 16px;
    border: none !important;
    color: #333;
}

.nav-tabs a:hover {
    background-color: #fff !important;
    border: none;
}

.slider {
    display: inline-block;
    width: 40px;
    height: 18px;
    border-radius: 3px;
    background-color: #39bcd3;
    position: absolute;
    z-index: 1200;
    bottom: 0;
    transition: all .4s linear;

}

.nav-tabs .active {
    background-color: transparent !important;
    border: none !important;
    color: #39bcd3 !important;
}

.auth-box .tabs {
    display: flex;
    position: relative;
    background-color: #343145;
    box-shadow: 0px 0px 0px #185ee0;
    border-radius: 99px;
}




.auth-box input[type="radio"] {
    display: none;
}

.auth-box .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 100px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 99px;
    cursor: pointer;
    transition: color 0.15s ease-in;
    z-index: 2;
    color: #99A0B9;
}



.auth-box input[type="radio"]:checked+label {
    color: #fff;
}

.auth-box input[id="radio-1"]:checked~.glider,
.auth-box input[id="radio-3"]:checked~.glider,
.auth-box input[id="radio-5"]:checked~.glider {

    transform: translateX(0);
}

.auth-box input[id="radio-2"]:checked~.glider,
.auth-box input[id="radio-4"]:checked~.glider,
.auth-box input[id="radio-6"]:checked~.glider {

    transform: translateX(100%);
}

/* .auth-box input[id="radio-2"],
.auth-box input[id="radio-4"],
.auth-box input[id="radio-6"] {
    &:checked {
        &~.glider {
            transform: translateX(100%);
        }
    }
} */

.auth-box .glider {
    position: absolute;
    display: flex;
    height: 35px;
    width: 100px;
    background-color: #2196F3;
    z-index: 1;
    border-radius: 99px;
    transition: 0.25s ease-out;
}

.auth-box .glider--disabled {
    color: #99A0B9;
    border: 1px solid #343145;
    background-color: #1F2332;
}

.contentBox {
    display: none;
    margin-top: 10px;
}

.green {
    color: #00FFA3;
}

.flex-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-box input {
    width: 35%;
    flex: auto;
    padding: 10px 20px;
    margin-left: 0;
    max-width: 100%;

}

.trigger {
    text-align: center;
    padding: 7px 13px;
    background: #3e3e3e;
    color: #fff;
    font-size: 15px;
    outline: none;
    border: none;
    border-radius: 5px;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}

/*
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    color: #fff;
}
*/
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    color: #fff;
    z-index: 9999999999;
}

/*.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #151824;
    padding: 1rem 1.5rem;
    max-width: 800px;
    width: 100%;
    border-radius: 0.5rem;
    padding: 35px;
    text-align: center;
    height: 95%;
    overflow: scroll;
}*/
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #151824;
    padding: 1rem 1.5rem;
    max-width: 600px;
    width: 100%;
    border-radius: 0.5rem;
    padding: 35px;
    text-align: center;
    /* height: 538px;*/
    overflow: scroll;
    padding-bottom: 0;
    position: relative;
}

.close-button {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.residential .text-box {
    text-align: left;
    flex: auto;
    display: unset;
}

.residential .flex-box {
    /*padding: 0 50px;*/
    align-items: flex-start;
}

.residential .title {
    margin: 0;
}

.residential .title {
    margin-bottom: 20px;
}

.residential .text-box .title {
    margin-bottom: 20px;
}

.residential .text-box small {
    margin-bottom: 5px;
}

.residential .text-box h2.blue {
    color: #2196F3;
}

.residential .text-box .detail {
    margin-bottom: 10px;
}

.apply-btn {
    position: relative;
}

.residential .text-box .amount {
    color: #2196F3;
    font-size: 16px;
    font-weight: 600;

}

.apply-btn button {
    position: absolute;
    right: 0;
    width: auto;
    font-size: 12px;
    height: 100%;
    margin: 0;
    padding: 0 15px;
    background: #151824;
    color: #2196F3;
    border-color: #343145;
    border-left: 0;
    border-radius: 0 4px 4px 0;
}

.apply-btn input {
    max-width: 85%;
    width: 100%;
    margin: 0;
    padding-right: 60px;
    padding-left: 10px;
}

.apply-btn input::placeholder {
    font-size: 12px;
    text-align: left;
}

.custom-select.landing-custom .select-selected {
    /*border: 1px solid #343145;*/
    border: 0px;
    border-radius: 5px;
    font-size: 16px;
    padding: 20px;
    color: #fff;
}

.custom-select.landing-custom .select-items {
    padding: 0;
}

.custom-select.landing-custom .select-items div {
    color: #fff;
    justify-content: flex-start;
}

.custom-select.landing-custom .select-items div:hover, .same-as-selected {
    border-radius: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.1);
}

.custom-select.landing-custom .select-selected.select-arrow-active::after {
    transform: rotate(180deg);
    top: 13px;
}

.custom-select.landing-custom .select-selected::after {
    border-color: #fff transparent transparent transparent;
    top: 18px
}

.cust-residential {
    position: relative;
    background-color: #151824;
    padding: 35px;
    color: #fff;
    max-width: 780px;
    margin: 0 auto;
}

.cust-flex-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cust-flex-box>div:not(.full-width-slider) {
    flex: 0 0 48%;
    max-width: 48%;
}

#snackbar {
    visibility: hidden;
    min-width: 280px;
    margin-left: -125px;
    background-color: red;
    color: #fff;
    padding: 14px;
    position: fixed;
    z-index: 999;
    left: 50%;
    top: 43px;
    font-size: 17px;
    text-align: start;
    border-radius: 8px;
}

#snackbar.success {
    background-color: green;
}

#snackbar span {
    font-size: 24px;
}

#snackbar .toaster_header {
    text-align: end;
}

#snackbar .toaster_content {
    display: flex;
    align-items: center;
    gap: 20px;
}

#snackbar .toaster_header {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
}

#snackbar .toaster_header span {
    font-size: 16px;
}

/*toast*/
#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

input:focus::placeholder {
    color: transparent;
}

.new-gradient-text {
    background: linear-gradient(90deg, rgba(var(--gold-04), 1), rgba(var(--gold-05), 0.75));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.new-gradient-text.new-landing-bg {
    background: linear-gradient(90deg, rgba(var(--gold-04), 1), rgba(var(--gold-05), 0.75));
}

.gradient-text {
    background: linear-gradient(90deg, var(--gold-01), var(--gold-02), var(--gold-03));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.gradient-text.landing-bg {
    background: linear-gradient(90deg, rgba(var(--gold-04), 1), rgba(var(--gold-05), 0.75));
}

.extra-height {
    height: 58px !important;
}

.overview_resi_rows {
    height: 58px !important;
}

.isp_active_plan_rows {
    height: 58px !important;
}

.resi_active_plan_rows {
    height: 58px !important;
}

.landing-buttons-wrap {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

@media only screen and (max-width: 768px) {
    .landing-buttons-wrap {
        display: flex; flex-direction: column; gap: 20px;
    }
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1em;
}

/* Rules for screens 1500px and up */
@media (min-width: 1500px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Rules for screens between 1265px and 1500px */
@media (min-width: 1265px) and (max-width: 1499px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Rules for screens smaller than or equal to 1265px */
@media (max-width: 1264px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}