@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

/*--  defaults  --*/
:root {
    --font-family-body: 'Inter', sans-serif;
    --font-family-heading: 'Sora', sans-serif;

    --primary-color: #F9B80A;

    --button-cta-color: #278AC2;
    --button-cta-color--hover: #64b4e2;

    --button-submit-color: #4DD6AE;
    --button-submit-color--hover: #63E6BE;

    --secondary-color: #087F5B;

    --high-contrast-color: #131416;
    --md-contrast-color: #73747D;
    --low-contrast-color: #F4F5F7;

    --border-color: #EBECEF;

    --background-color: #FFF;

    --neutral-color: #FFF;
    --neutral-color--2: #DCDEE3;
    --neutral-color--3: #cbcdd1;

    --dark-color: #32353a;
}



/*--  reset css  --*/
* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    background: center/cover;
}

body {
    font-family: var(--font-family-body);
    font-size: 16px;
    line-height: 150%;
    color: var(--md-contrast-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    position: relative;
    counter-reset: x;
    scroll-behavior: smooth;
}

body.pop-up {
    overflow: hidden;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: .3s;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
    position: relative;
}

ul,
ol {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

ol[type="A"] {
    list-style: upper-alpha;
}

p:not(:last-child) {
    margin: 0 0 16px 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    color: var(--high-contrast-color);
    margin-bottom: 12px;
}

h1 {
    font-size: 2em;
    line-height: 130%;
    margin-bottom: 8px;
}

h2 {
    font-size: 1.25em;
    line-height: 125%;
}

h3 {
    font-size: 1.125em;
}


@media screen and (max-width:991px) {
    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.125em;
    }

    h3 {
        font-size: 1em;
    }
}


/*  */
.area-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


/*  */
@keyframes spin {
    to {
        transform: rotate(1turn)
    }
}

.loading .loader {
    align-items: center;
    background: hsla(0, 0%, 100%, .6);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;

    &::before {
        animation: spin 1s linear infinite;
        border: 3px solid transparent;
        border-radius: 50%;
        border-top-color: var(--primary-color);
        content: "";
        height: 40px;
        width: 40px;
    }
}

/*--  Header  --*/
header {
    .wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;

        .left {
            display: flex;
            align-items: center;
            gap: 0 24px;
        }
    }

    .open-sidebar {
        cursor: pointer;

        img {
            filter: grayscale(1);
        }
    }

    .header-menu {
        ul {
            display: flex;
            align-items: center;
            gap: 0 24px;

            a {
                display: flex;
                flex-direction: row-reverse;
                gap: 0 8px;
                align-items: center;
                font-size: 14px;
                font-weight: 600;

                &:hover {
                    color: var(--high-contrast-color);
                }
            }

            img {
                height: 20px;
                width: auto;
            }
        }
    }

    .logo a {
        height: 36px;
        width: auto;
    }

    .buttons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 8px;

        >div {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 45px;
            border-radius: 6px;
            cursor: pointer;
            transition: .3s ease;
        }
    }

    .logout,
    .search {
        width: 45px;
        border: 1px solid var(--border-color);

        &:hover {
            border-color: var(--primary-color);
        }
    }

    .button {
        font-size: 0.875em;
        font-weight: 600;
        font-family: var(--font-family-heading);
        color: var(--high-contrast-color);
        padding: 0 24px;
    }

    .sign-in {
        padding: 0 16px;
    }

    .avatar,
    .sign-up {
        background: var(--primary-color);
        color: var(--neutral-color);

        &:hover {
            box-shadow: 0 0 8px 0 var(--primary-color);
        }
    }

    .avatar {
        aspect-ratio: 1;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 800;

        a {
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        img {
            height: 45px;
            aspect-ratio: 1;
            border-radius: 80px;
            object-fit: cover;
        }
    }


    @media screen and (min-width: 1200px) {
        .button {
            >span.responsiveness {
                display: none;
            }
        }
    }

    @media screen and (max-width: 1199px) {
        .wrapper {
            gap: 0 20px;

            .left .open-sidebar,
            .right .search,
            .middle {
                display: none;
            }
        }

        .buttons {
            gap: 0 6px;
        }

        .button {
            height: 40px;
            padding: 0 16px;
            text-align: center;
            line-height: 135%;

            >span:not(.responsiveness) {
                display: none;
            }
        }

        .sign-in {
            border: 1px solid var(--border-color);
        }
    }
}



/*--  footer  --*/
footer {
    font-size: 14px;

    .logo img {
        height: 32px;
    }

    .top { 
        border-top: 2px solid var(--border-color);
        display: grid;
        align-items: center;
        grid-template-columns: auto 1fr auto;
        gap: 0 16px;
        padding: 24px 0;
        border-bottom: 2px solid var(--border-color);
    }

    .menu ul {
        display: flex;
        align-items: center;
        gap: 0 24px;

        .menu-item a {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex-direction: row-reverse;
            gap: 0 8px;
        }

        a {
            font-weight: 600;
            color: var(--high-contrast-color);

            &:hover {
                color: var(--secondary-color);
            }
        }
    }

    .middle {
        display: grid;
        align-items: center;
        grid-template-columns: 1fr auto;
        gap: 0 40px;
        margin: 24px 0px;
    }

    .icons {
        display: flex;
        align-items: center;
        gap: 0 24px;
        justify-content: space-between;
    }

    .bottom {
        display: grid;
        align-items: center;
        grid-template-columns: 1fr auto;
        padding: 24px 0;
    }


    @media screen and (max-width: 1199px) {
        .top {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 32px 0;
            align-items: flex-start;
            gap: 20px;
        }

        .middle {
            gap: 16px 0;
            grid-template-columns: 1fr;
        }

        .bottom {
            padding: 14px 0;
            display: flex;
            flex-direction: column;
            gap: 24px 0;
        }
    }
}



/*--  Hero  --*/
section.hero {
    background: center/cover;
    padding: 64px 0;
    color: var(--neutral-color);

    .introduction {
        color: var(--neutral-color);

        .title>* {
            color: var(--neutral-color);
        }

        p:not(:last-child) {
            margin-bottom: 12px;
        }
    }

    .meta {
        display: flex;
        align-items: center;
        gap: 0 42px;
        font-size: 0.875em;
        font-weight: 500;
        margin-top: 24px;

        >div {
            display: flex;
            align-items: center;
            color: var(--neutral-color);
            gap: 0 4px;

            .string {
                color: var(--neutral-color--3);
            }

            >div {
                display: flex;
                align-items: center;
                flex-direction: row-reverse;
                justify-content: flex-end;
                gap: 0 4px;
            }
        }

    }


    @media screen and (min-width: 1200px) {
        .introduction {
            max-width: 760px;
        }
    }

    @media screen and (max-width: 1199px) {
        padding: 56px 0;

        .introduction {
            font-size: 0.875em;
        }

        .meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 4px 0;
            margin-top: 20px;
        }
    }

    @media screen and (max-width: 767px) {
        padding: 40px 0;
    }

    @media screen and (max-width: 575px) {
        padding: 32px 0;
    }
}



/*--  Advertisers  --*/
section.advertisers {
    margin: 40px 0 56px 0;
}


/*  */
section.advertisers .introduction {
    margin-bottom: 24px;
}

section.advertisers .introduction .title {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0 12px;
}

section.advertisers .introduction .title>* {
    margin-bottom: 0;
}


/*  */
section.advertisers .cards>div:nth-child(n+2) {
    margin-top: 24px;
}


@media screen and (max-width: 1199px) {
    section.advertisers .introduction {
        margin-bottom: 12px;
    }

    /* section.advertisers .introduction .title img {
        display: none;
    } */

    section.advertisers {
        margin: 32px 0 48px 0;
    }
}

@media screen and (max-width: 767px) {
    section.advertisers {
        margin: 24px 0 40px 0;
    }
}



/*--  Responsible Gaming  --*/
section.responsible-gaming {
    margin: 56px 0;
}

section.responsible-gaming .introduction {
    margin-bottom: 24px;
}


@media screen and (max-width: 1199px) {
    section.responsible-gaming .introduction {
        margin-bottom: 12px;
    }

    section.responsible-gaming {
        margin: 48px 0;
    }
}

@media screen and (max-width: 767px) {
    section.responsible-gaming {
        margin: 40px 0;
    }
}



/*--  Payment Methods  --*/
section.payment-methods {
    margin: 56px 0;
}


@media screen and (max-width: 1199px) {
    section.payment-methods {
        margin: 48px 0;
    }
}

@media screen and (max-width: 767px) {
    section.payment-methods {
        margin: 40px 0;
    }
}



/*--  Content Block  --*/
section.block-content .sidebar {
    height: 100%;
    padding: 40px 0;
}

section.block-content .sidebar .cards {
    position: sticky;
    top: 32px;
}

section.block-content .sidebar .cards>div:nth-child(n+2) {
    margin-top: 24px;
}


/*  */
section.block-content .content-block {
    margin: 40px 0;
}

section.block-content .content-block:first-child {
    margin-top: 0 !important;
}

section.block-content .content-block ul li {
    position: relative;
    padding-left: 15px;
}

section.block-content ul li~li {
    margin-top: 10px;
}

section.block-content ul li::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background: var(--primary-color);
}

section.block-content .content-block ol {
    padding-left: 15px;
}

section.block-content .content-block ol li {
    padding-left: 5px;
}


@media screen and (max-width: 1199px) {
    section.block-content .sidebar {
        padding: 0 0 40px 0;
    }
}

@media screen and (max-width: 767px) {
    section.block-content .sidebar {
        padding: 0 0 32px 0;
    }

    /*  */
    section.block-content .content-block {
        margin: 32px 0;
    }
}



/*--  advertiser-geographical-aera  --*/
.advertiser-geographical-area {
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--neutral-color);
}


/* rank */
.advertiser-geographical-area .rank {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    min-width: 32px;
    border-radius: 80px;
    background: #AAA9B0;
}

.advertiser-geographical-area .rank span {
    display: block;
    text-align: center;
    color: var(--neutral-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 145%;
}


/* tag */
.advertiser-geographical-area .tag {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    width: fit-content;
    padding: 0 8px;
    border-radius: 200px;
    color: var(--secondary-color);
    background: #d63d001a;
    margin-bottom: 5px;
}

.advertiser-geographical-area .tag span {
    display: block;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 120%;
}


/* logo */
.advertiser-geographical-area .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    height: 64px;
    aspect-ratio: 1;
    border-radius: 8px;
}

.advertiser-geographical-area .logo img {
    height: 100%;
    width: 100%;
}


/* name */
.advertiser-geographical-area .name {
    font-weight: 600;
    line-height: 130%;
    color: var(--high-contrast-color);
}


/* rating */
.advertiser-geographical-area .rating {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.advertiser-geographical-area .rating .icon {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.advertiser-geographical-area .rating img {
    height: 20px;
    aspect-ratio: 1;
}


/* bonus */
.advertiser-geographical-area .bonus .string {
    font-weight: 700;
    line-height: 135%;
    color: var(--high-contrast-color);
}


/* code */
.advertiser-geographical-area .code {
    position: relative;
    z-index: 2;
}

.advertiser-geographical-area .code img {
    height: 12px;
    width: 12px;
}

.advertiser-geographical-area .code>div.title div,
.advertiser-geographical-area .code>div.success div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 0 8px;
    height: 32px;
    padding: 0 8px;

    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 120%;
    color: var(--button-cta-color);

    border-radius: 4px;
    border: 1px dashed var(--button-cta-color);
    background: var(--neutral-color);
}

.advertiser-geographical-area .code .title div {
    transition: .3s ease;
    cursor: pointer;
}

.advertiser-geographical-area .code .title div:hover {
    color: var(--button-cta-color--hover);
    border-color: var(--button-cta-color--hover);
}

.advertiser-geographical-area .code .success {
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s ease;
    width: 100%;
}

.advertiser-geographical-area .code .success:not(.active) {
    opacity: 0;
    visibility: hidden;
}


/* donation */
.advertiser-geographical-area .donation>a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0 8px;
    height: 40px;
    padding: 0 24px;
    font-family: var(--font-family-heading);
    font-size: 0.875em;
    font-weight: 600;
    line-height: 100%;
    color: var(--neutral-color);
    border-radius: 4px;
    background: var(--button-cta-color);
    z-index: 2;
}

.advertiser-geographical-area .donation>a:hover {
    background: var(--button-cta-color--hover);
}


/* payment methods */
.advertiser-geographical-area .payment-methods {
    gap: 0 8px;
}

.advertiser-geographical-area .payment-methods .icons>div,
.advertiser-geographical-area .payment-methods .icons,
.advertiser-geographical-area .payment-methods {
    display: flex;
    align-items: center;
}

.advertiser-geographical-area .payment-methods .prefix {
    font-size: 0.75em;
    font-weight: 500;
    line-height: 120%;
}

.advertiser-geographical-area .payment-methods .icons {
    z-index: 1;
}

.advertiser-geographical-area .payment-methods .icons>div {
    justify-content: center;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    padding: 3.75px;
}

.advertiser-geographical-area .payment-methods .icons>div:nth-child(n+2) {
    margin-left: -3.75px;
}

.advertiser-geographical-area .payment-methods .icons>div.extra {
    font-size: 0.625em;
    color: var(--neutral-color);
    background: var(--secondary-color);
    margin-left: -2.75px;
}

.advertiser-geographical-area .payment-methods .icons>div img {
    height: 100%;
    aspect-ratio: 1;
}


/* t&c */
.advertiser-geographical-area .tc-excerpt {
    padding: 12px 1rem;
    font-size: 0.75rem;
    line-height: 125%;
    color: var(--high-contrast-color);
    background: var(--neutral-color--2);
}


@media screen and (max-width: 1199px) {
    .advertiser-geographical-area .rank {
        height: 20px;
    }

    .advertiser-geographical-area .rank span {
        font-size: 0.75em;
        font-weight: 600;
        line-height: 125%;
    }

    .advertiser-geographical-area .tc-excerpt {
        font-size: 0.625rem;
    }
}


/*--  horizontal  card  --*/
.advertiser-geographical-area.horizontal.card {
    background: var(--neutral-color);

    >.top {
        display: grid;
        grid-template-columns: 350px 1fr 240px;
        padding: 0 24px 0 16px;
        align-items: center;

        .left {
            display: grid;
            align-items: center;
            grid-template-columns: auto 1fr;
            gap: 0 1rem;
        }

        .middle {
            margin-left: 20px;
            padding-left: 3rem;
            position: relative;
            border-left: 1px solid var(--border-color);
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;

            .icon {
                position: absolute;
                top: calc(50% - 24px);
                left: -24px;
            }
        }
    }

    .info>.bottom {
        display: flex;
        align-items: center;
        gap: 0 10px;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* review */
    .review {
        z-index: 1;
        
        a {
            display: flex;
            gap: 0 8px;
            height: 40px;
            padding: 0 24px;
            font-family: var(--font-family-heading);
            font-size: 0.875em;
            font-weight: 600;
            border-radius: 4px;
            border: 1px solid var(--border-color);
            width: 100%;
            align-items: center;
            justify-content: center;
            color: var(--high-contrast-color);

            &:hover {
                color: var(--secondary-color);

                img {
                    transform: translateX(2px);
                }
            }
        }

        img {
            height: 20px;
            width: auto;
        }
    }

    /* code */
    .code {
        width: fit-content;
        margin-top: 4px;
    }


    /* payment-methods */
    .payment-methods {
        margin-top: 16px;
    }


    @media screen and (min-width: 1200px) {
        .bonus .string {
            max-width: 320px;
        }
    }


    @media screen and (max-width: 1199px) {
        >.top {
            display: block;
            padding: 20px 1rem;

            .left .info {
                display: grid;
                align-items: center;
                grid-template-columns: 1fr auto;
                justify-content: space-between;
                width: 100%;
            }

            .middle {
                padding-left: 0;
                margin-top: 30px;
                border-left: none;
                border-top: 1px solid var(--border-color);
                min-height: unset;
                display: flex;
                flex-direction: column;
                align-items: center;

                .bonus {
                    padding-top: 30px;
                }

                .icon {
                    position: absolute;
                    top: -18px;
                    left: calc(50% - 20px);
                }
            }

            .right .buttons {
                flex-direction: row;
                gap: 0 12px;

                >div {
                    flex: 1;
                }
            }
        }

        /* tag */
        .tag {
            margin-bottom: 6px;
        }


        /* bonus */
        .bonus {
            text-align: center;
            padding: 16px;
            margin: 16px 0;
            border-radius: 8px;
        }


        /* code */
        .code {
            width: 100%;
            margin-top: 8px;
        }

        /* logo */
        .logo {
            height: 44px;
        }


        /* rating */
        .rating {
            flex-direction: column;
            gap: 8px 0;
        }


        /* donation */
        .donation a {
            img {
                display: none;
            }
        }
    }
}




/*--  vertical  card  --*/
.advertiser-geographical-area.vertical.card {
    background: var(--neutral-color);
}

.advertiser-geographical-area.horizontal.card>.top .left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.advertiser-geographical-area.vertical.card>.middle {
    padding: 0 24px;
}


/* tag */
.advertiser-geographical-area.vertical.card .tag {
    height: 22px;
    padding: 0 6px;
    border-radius: 80px;
    background: var(--neutral-color);
    margin-bottom: 8px;
}


/* logo */
.advertiser-geographical-area.vertical.card .logo {
    height: 48px;
    border: 2px solid var(--neutral-color);
}


/* name */
.advertiser-geographical-area.vertical.card .name {
    line-height: 100%;
    color: var(--neutral-color);
}


/* rating */
.advertiser-geographical-area.vertical.card .rating {
    flex-direction: column;
    gap: 8px 0;
    font-weight: 500;
    color: var(--neutral-color);
}

.advertiser-geographical-area.vertical.card .rating img {
    filter: brightness(0) invert(1);
}


/* bonus */
.advertiser-geographical-area.vertical.card .bonus {
    text-align: center;
    padding: 16px;
    margin: 16px 0;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}


/* code */
.advertiser-geographical-area.vertical.card .code {
    margin-top: 8px;
}


/* payment-methods */
.advertiser-geographical-area.vertical.card .payment-methods {
    margin: 24px 0;
}



/*--  pop-ups  --*/
#sign-in-pop-up,
#sign-up-pop-up,
#search-pop-up,
#push-notifications-pop-up,
#cookie-policy-pop-up,
#offer-pop-up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    z-index: 10000;
}

body:not(.sign-in-pop-up) #sign-in-pop-up,
body:not(.sign-up-pop-up) #sign-up-pop-up,
body:not(.search-pop-up) #search-pop-up,
body:not(.push-notifications-pop-up) #push-notifications-pop-up,
body:not(.cookie-policy-pop-up) #cookie-policy-pop-up,
body:not(.offer-pop-up) #offer-pop-up {
    height: 0;
    opacity: 0;
    visibility: hidden;
}


#push-notifications-pop-up.closed,
#cookie-policy-pop-up.closed {
    height: 0;
    overflow: hidden;
    opacity: 0;
}



/*--  Cookie Policy  --*/
#cookie-policy-pop-up {
    >div {
        padding: 2rem 0;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--neutral-color);
        z-index: 4;
    }

    .wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .left {
        display: flex;
        align-items: center;
        font-size: 0.875em;
        line-height: 145%;
        color: var(--md-contrast-color--medium);
        gap: 0 24px;

        .content {
            max-width: 456px;
        }

        strong {
            font-family: var(--font-family-heading);
            font-weight: 600;
            color: var(--high-contrast-color);
        }
    }

    .icon {
        width: 48px;
        flex: 0 0 48px;
        height: 48px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 4px;
        background: var(--low-contrast-color);

        img {
            display: block;
            height: 32px;
            width: 32px;
        }
    }

    p:not(:last-child) {
        margin-bottom: 4px;
    }

    .right {
        display: flex;
        gap: 0 32px;

        >div {
            display: flex;
            align-items: center;
            height: 48px;
            border-radius: 6px;
            font-weight: 600;
            transition: .3s;
            cursor: pointer;
        }

        >div.cancel {
            color: var(--button-submit-color);
            background: var(--neutral-color);
            padding: 0 24px;

            &:hover {
                color: var(--button-submit-color--hover);
            }
        }

        >div.submit {
            background: var(--button-submit-color);
            padding: 0 20px;
            color: var(--neutral-color);

            &:hover {
                background: var(--button-submit-color--hover);
            }
        }
    }


    @media screen and (min-width: 1200px) {
        #cookie-policy-pop-up {
        .right>div span.responsiveness {
            display: none;
        }
    }
    }

    @media screen and (max-width: 1199px) {
        #cookie-policy-pop-up {
        >div {
            border-radius: 24px 24px 0 0;
        }

        .wrapper {
            display: block;
        }

        .icon {
            display: none;
        }

        .left .content {
            max-width: unset;
        }

        p:not(:last-child) {
            margin-bottom: 8px;
        }

        .right {
            gap: 8px;
            padding-top: 18px;
            flex-direction: row-reverse;

            >div {
                flex: 1;
                padding: 0;
                justify-content: center;
                text-align: center;
                border-radius: 8px;
            }

            >div.cancel {
                color: var(--button-submit-color--hover);
            }

            >div span:not(.responsiveness) {
                display: none;
            }
        }
    }
}
}



/*--  Push Notification  --*/
#push-notifications-pop-up {
    >div {
        position: absolute;
        top: 2rem;
        left: 0;
        width: 100%;
    }

    .wrapper {
        padding: 2rem;
        width: fit-content;
        background: var(--neutral-color);
        z-index: 4;
    }

    .content {
        font-size: 0.875em;
        line-height: 145%;
        color: var(--md-contrast-color--medium);
        max-width: 456px;

        strong {
            font-family: var(--font-family-heading);
            font-weight: 600;
            color: var(--high-contrast-color);
        }
    }

    p:not(:last-child) {
        margin-bottom: 4px;
    }

    .right {
        display: flex;
        gap: 8px;
        padding-top: 32px;

        >div {
            flex: 1;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            border-radius: 6px;
            font-weight: 600;
            text-align: center;
            transition: .3s;
            cursor: pointer;
        }

        >div.cancel {
            color: var(--button-submit-color);
            background: var(--neutral-color);
            padding: 0 24px;
        }

        >.cancel:hover {
            color: var(--button-submit-color--hover);
        }

        >div.submit {
            background: var(--button-submit-color);
            padding: 0 20px;
            color: var(--neutral-color);
        }

        >div.submit:hover {
            background: var(--button-submit-color--hover);
        }
    }


    @media screen and (min-width: 1200px) {
        #push-notifications-pop-up {
        .right>div span.responsiveness {
            display: none;
        }
    }
    }

    @media screen and (max-width: 1199px) {
        #push-notifications-pop-up {
        >div {
            top: unset;
            bottom: 0;
            background: var(--neutral-color);
            z-index: 4;
            border-radius: 24px 24px 0px 0px;
        }

        .wrapper {
            width: 100%;
            background: transparent;
            padding: 2rem 0;
        }

        p:not(:last-child) {
            margin-bottom: 8px;
        }

        .content {
            max-width: unset;
        }

        .right {
            padding-top: 18px;
            flex-direction: row-reverse;
        }

        .right>div {
            border-radius: 8px;
        }

        .right>div span:not(.responsiveness) {
            display: none;
        }
    }
    }

    @media screen and (max-width: 479px) {
        #push-notifications-pop-up {
        .right>div {
            flex: unset;
        }

        .right>div.submit {
            flex: 1;
        }
    }
}
}



/*--  Sign In/Up  --*/
#sign-in-pop-up,
#sign-up-pop-up {
    display: flex;
    align-items: center;
    justify-content: center;

    .pop-up-container {
        width: 100%;
        max-width: 538px;
        padding: 40px;
        border-radius: 12px;
        background: var(--neutral-color);
        position: relative;
    }

    .close {
        position: absolute;
        right: -18px;
        top: -18px;

        img {
            width: 45px;
            aspect-ratio: 1;
            padding: 0 10px;
            border-radius: 80px;
            background: var(--low-contrast-color);
            cursor: pointer;
        }
    }

    div:is(.introduction, .content)>.title>* {
        font-size: 1.5em;
        text-align: center;
        padding-bottom: 10px;
        line-height: normal;
    }

    .social-logins>.title {
        padding-bottom: 24px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
    }

    .logins {
        padding-bottom: 32px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 16px;

        .g_id_signin {
            display: none;
        }

        .button {
            display: flex;
            height: 48px;
            justify-content: center;
            align-items: center;
            gap: 0 8px;
            border-radius: 6px;
            background: var(--low-contrast-color);
            color: var(--high-contrast-color);
            font-family: var(--font-family-heading);
            font-size: 14px;
            font-weight: 700;
            line-height: normal;
            transition: .3s;
            cursor: pointer;

            img {
                width: 16px;
                aspect-ratio: 1;
                filter: grayscale(1);
            }

            &:hover {
                color: var(--secondary-color);

                img {
                    filter: none;
                }
            }
        }
    }

    .bottom {
        padding-bottom: 32px;

        >.title {
            font-size: 14px;
            font-weight: 500;
            line-height: normal;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 0 16px;
            align-items: center;
            padding-bottom: 32px;

            &::after,
            &::before {
                content: '';
                display: block;
                height: 1px;
                background: var(--border-color);
            }
        }

        +div {
            text-align: center;
            font-size: 16px;
            line-height: normal;

            @media (max-width: 1199px) {
                font-size: 14px;
            }

            span:last-child {
                color: var(--high-contrast-color);
                font-weight: 600;
                cursor: pointer;
            }
        }
    }

    @media (max-width: 1199px) {
        .pop-up-container {
            padding: 32px 16px;
        }

        .close {
            right: 16px;
            top: 16px;
        }

        .logins {
            gap: 0 12px;
            padding-bottom: 12px;

            .button {
                height: 40px;
            }
        }

        .bottom {
            padding-bottom: 20px;
        }

        .social-logins>.title,
        .bottom>.title {
            padding-bottom: 12px;
        }

        div:is(.introduction, .content)>.title>* {
            font-size: 1.25em;
            padding-bottom: 16px;
        }

        .close {
            right: 12px;
            top: 16px;

            img {
                width: 40px;
            }
        }
    }

    @media screen and (max-width: 767px) {
        .pop-up-container {
            padding: 24px;
            width: 100%;
            max-width: unset;
            height: 100%;
            border-radius: 0;
        }

        .background-image {
            border-radius: 0 !important;
        }
    }
}

#sign-up-pop-up {
    .pop-up-container {
        padding: 0;
    }

    .background-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 12px 0 0 12px;
    }

    div:is(.content)>.title>* {
        font-size: 48px;
        padding-bottom: 16px;
        text-align: left;
        color: var(--neutral-color);
    }

    .introduction {
        position: relative;
        padding: 40px;

        >.content {
            position: relative;

            .content {
                color: #fff;
                font-size: 20px;
                font-weight: 500;
                line-height: 155%;

                strong {
                    font-weight: 600;
                    color: #FFF;
                }
            }
        }

        +.content {
            padding: 40px;
        }
    }

    @media (min-width: 1200px) {
        .background-image {
            background-size: 105% auto;

            &.responsiveness {
                display: none;
            }
        }

        .pop-up-container {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            max-width: 1010px;
        }

        h2 {
            text-align: left;
        }
    }


    @media (max-width: 1199px) {
        .background-image {
            border-radius: 12px 12px 0 0;
        }

        .pop-up-container {
            display: grid;
            grid-template-rows: auto 1fr;
        }

        div:is(.content)>.title>* {
            font-size: 32px;
            padding-bottom: 4px;
            text-align: center;
        }

        .introduction {
            padding: 32px 40px;

            >.content {
                .content {
                    font-size: 18px;
                    text-align: center;
                }
            }

            +.content {
                padding: 20px 24px 24px 24px;
            }
        }
    }

    @media (max-width: 1199px) {
        div:is(.content)>.title>* {
            font-size: 24px;
        }

        .introduction {
            padding: 24px;

            >.content {
                .content {
                    font-size: 16px;
                    text-align: center;
                }
            }
        }
    }
}


/*-- Offer Pop Up --*/
#offer-pop-up {
    display: flex;
    align-items: center;
    justify-content: center;

    .pop-up-container {
        width: 100%;
        max-width: 327px;
        padding: 24px;
        border-radius: 12px;
        background: var(--neutral-color);
        position: relative;
        gap: 16px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--dark-color);
    }

    .close {
        position: absolute;
        right: 0px;
        top: -48px;
        background-color: var(--neutral-color);
        border-radius: 80px;

        img {
            width: 40px;
            aspect-ratio: 1;
            padding: 8px;
            border-radius: 80px;
            background: var(--neutral-color);
            cursor: pointer;
        }
    }

    .advertiser {
        margin-top: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;

        img { 
            width: 80%;
        }
    }

    .middle {
        width: 100%;
    }

    .headline {
        width: 100%;
        text-align: center;
    }

    .offer {
        width: 100%;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        text-align: center;
        padding: 16px 24px;
    }

    .bottom {
        width: 100%;
        color: var(--neutral-color);
        background-color: var(--button-cta-color);
        padding: 12px 24px;
        border-radius: 4px;
        text-align: center;
        font-weight: 600;
        line-height: 150%;
        cursor: pointer;
        z-index: 2;

        &:hover {
            background-color: var(--button-cta-color--hover);
        }
    }

    .after-bottom {
        color: var(--md-contrast-color);
        font-size: 14px;
        line-height: 115%;
    }
}


/*--  Search  --*/
#search-pop-up {
    display: flex;
    align-items: center;
    justify-content: center;

    .pop-up-container {
        width: 100%;
        max-width: 538px;
        min-height: 590px;
        border-radius: 12px;
        background: var(--neutral-color);
        position: relative;
        padding-bottom: 40px;

        >.top {
            padding: 24px 32px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;

            .title div {
                display: flex;
                flex-direction: row-reverse;
                align-items: center;
                gap: 12px;

                * {
                    font-size: 14px;
                    line-height: 1;
                    margin: 0;
                }
            }
        }

        >.middle>.bottom>.default-results>.title>*,
        >.bottom>.total-results,
        >.bottom>.results .type .title {
            font-weight: 600;
            font-size: 12px;
            line-height: 125%;
            text-transform: uppercase;
            color: var(--high-contrast-color);
            font-family: var(--font-family-body);
        }

        >.middle>.bottom>.default-results>.title,
        >.bottom>.total-results {
            padding-bottom: 16px;
        }

        >.middle {
            padding: 20px 40px 0 40px;

            input:is([type=text],
                [type=email],
                [type=password],
                [type=date]) {
                height: 48px;
                padding: 0px 20px;
                border-radius: 6px;
                border: 1px solid var(--border-color);
                background: var(--neutral-color);
                font-size: 14px;
                font-weight: 500;
                line-height: normal;
                width: 100%;

                &:focus {
                    border-color: var(--primary-color);
                }
            }

            >.top {
                padding-bottom: 24px;
            }

            >.bottom {
                &.hide {
                    display: none;
                }

                .instructions {
                    font-weight: 600;
                    font-size: 12px;
                    line-height: 150%;
                    padding-bottom: 24px;
                    margin-top: -13px;
                }
            }
        }

        >.bottom {
            padding: 0 40px;

            >.results .type {
                padding-bottom: 40px;

                .title {
                    color: rgba(5, 5, 5, 0.5);
                    padding-bottom: 8px;
                }
            }
        }

        >.middle>.bottom>.default-results,
        >.bottom>.results {
            max-height: 385px;
            overflow-y: auto;
            overflow-x: hidden;

            &::-webkit-scrollbar {
                width: 4px;
            }

            &::-webkit-scrollbar-track {
                background: var(--border-color);
                border-radius: 80px;
            }

            &::-webkit-scrollbar-thumb {
                background: var(--primary-color);
                border-radius: 80px;
            }
        }


        /*  */
        .search.horizontal-small-card {
            position: relative;
            display: grid;
            align-items: center;
            grid-template-columns: 40px 1fr;
            gap: 10px;

            .left .icon {
                height: 40px;
                width: 40px;
                padding: 10px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--low-contrast-color);

                img {
                    height: 100%;
                    width: 100%;
                }
            }

            .right {
                text-align: left;
                font-size: 14px;
                font-weight: 600;
                font-family: var(--font-family-heading);
                transition: .3s ease;
            }

            &:hover {
                .right {
                    color: var(--high-contrast-color);
                }
            }

            &:not(:last-child) {
                margin-bottom: 20px;
            }
        }
    }

    .close {
        position: absolute;
        right: -18px;
        top: -18px;

        img {
            width: 45px;
            aspect-ratio: 1;
            padding: 0 10px;
            border-radius: 80px;
            background: var(--low-contrast-color);
            cursor: pointer;
        }
    }


    @media (max-width: 1199px) {
        .pop-up-container {
            >.top {
                padding: 24px;
            }

            >.middle {
                padding: 20px 24px 0 24px;
            }

            >.bottom {
                padding: 0 24px;
            }
        }

        .close {
            right: 10px;
            top: 10px;

            img {
                width: 40px;
            }
        }

        .logins {
            gap: 0 12px;

            .button {
                height: 40px;
            }
        }
    }
}



/*--  Form  --*/
.form {
    .label {
        padding-bottom: 8px;
        font-size: 16px;
        font-weight: 500;
        line-height: normal;

        @media (max-width: 1199px) {
            font-size: 14px;
        }
    }

    textarea,
    input:is([type=text],
        [type=email],
        [type=password],
        [type=date]) {
        height: 48px;
        padding: 0px 20px;
        border-radius: 6px;
        border: 1px solid var(--border-color);
        background: var(--neutral-color);
        font-size: 14px;
        font-weight: 500;
        line-height: normal;
        width: 100%;

        &:focus {
            border-color: var(--primary-color);
        }
    }

    textarea {
        height: 120px;
        padding: 20px;
    }

    input[type=button] {
        height: 48px;
        border-radius: 6px;
        border: none;
        background: var(--primary-color);
        color: var(--neutral-color);
        font-family: var(--font-family-heading);
        font-size: 16px;
        font-weight: 700;
        line-height: normal;
        cursor: pointer;
        width: 100%;

        &:hover {
            box-shadow: 0px 0px 8px 0px var(--primary-color);
        }
    }

    .birth-date {
        .wrapper {
            position: relative;
        }

        .icon {
            position: absolute;
            top: 50%;
            right: 20px;
            translate: 0 -50%;
        }
    }

    .recover-password {
        margin-left: auto;
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
        cursor: pointer;
        width: fit-content;
    }

    .field.state {
        position: relative;

        .selected {
            height: 48px;
            padding: 0px 20px;
            border-radius: 6px;
            border: 1px solid #3A4142;
            background: #1E2121;
            transition: .3s;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            cursor: pointer;
        }

        .bottom {
            .label {
                font-size: 14px;
                font-weight: 500;
                line-height: normal;
                padding-bottom: 0;
            }
        }

        .options {
            position: absolute;
            background: #1E2121;
            z-index: 1;
            width: 100%;
            margin-top: 8px;
            display: none;
            max-height: 200px;
            overflow: auto;
            padding: 0 20px;
        }

        .option-wrapper {
            padding: 10px 0;
        }

        &.open {
            .selected {
                border-color: #24EE89;

                img {
                    rotate: 180deg;
                }
            }

            .options {
                display: block;
            }
        }
    }

    .field.has-error {

        textarea,
        input:is([type=text],
            [type=email],
            [type=password],
            [type=date]) {
            border-color: #9A0B59;
        }
    }

    .error span {
        display: block;
        font-size: 0.75em;
        font-weight: 500;
        line-height: 135%;
        color: #9A0B59;
    }


    @media screen and (max-width: 1199px) {

        textarea,
        input:is([type=text],
            [type=email],
            [type=password],
            [type=date]) {
            height: 40px;
            padding: 0px 16px;
        }
    }
}

.form.sign-up,
.form.sign-in {
    form {
        display: flex;
        flex-direction: column;
        gap: 24px 0;

        @media (max-width: 1199px) {
            gap: 20px 0;
        }
    }
}


/*--  Bottom Menu  --*/
.bottom-menu {
    position: sticky;
    bottom: 0;
    padding: 12px 16px;
    border-radius: 12px 12px 0px 0px;
    background: var(--low-contrast-color);
    color: var(--high-contrast-color);
    font-family: var(--font-family-heading);
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    z-index: 5;
    display: flex;
    justify-content: space-between;

    .menu-item {
        cursor: pointer;

        >* {
            display: flex;
            flex-direction: column-reverse;
        }
    }

    img {
        width: 24px;
        aspect-ratio: 1;
        filter: grayscale(1);
        margin: 0 auto 4px;
    }

    .current {
        color: var(--primary-color);

        img {
            filter: none;
        }
    }


    @media (min-width: 1200px) {
        display: none;
    }
}


/*--  Show More/Less  --*/
.show-more-less-content {

    .show-more-content,
    .show-less-content {
        display: none;

        .title {
            margin-bottom: 0 !important;
            display: flex;
            font-size: 0.75em;
            font-weight: 500;
            line-height: 1.5;
            text-transform: uppercase;
            align-items: center;
            cursor: pointer;
            color: var(--neutral-color);

            img {
                padding: 0;
                width: auto;
                height: 24px;
                filter: brightness(0) invert(1);
                margin: 0 0 0 7px;
                transform: rotate(90deg);
                transition: .3s ease;
            }
        }
    }

    .show-less-content .title img {
        transform: rotate(-90deg);
    }


    @media screen and (max-width:1199px) {

        .show-more-content,
        .show-less-content {
            display: block;
        }

        .hide {
            height: 0;
            opacity: 0;
            display: none;
        }
    }
}



/*-- Limits Table  --*/
.limits.table {
    width: 100%;
    border-collapse: collapse;
    font-weight: 400;
    font-size: 0.875em;
    line-height: 18px;
    border: unset;

    ~.limits.table {
        margin-top: 32px;
    }

    tr:nth-child(odd) td {
        background: var(--neutral-color);
    }

    thead th {
        background: var(--background-color) !important;
    }

    th {
        font-family: var(--font-family-heading);
        font-style: normal;
        font-weight: 400;
        font-size: 0.75em;
        text-transform: uppercase;
        color: var(--high-contrast-color);
        text-align: left;
        padding: 10px 0;
    }

    tbody td {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    td {
        padding: 14px 0;
        background: var(--background-color);

        &:first-child>* {
            display: flex;
            align-items: center;
            gap: 8px;
            height: 100%;
        }

        .title a {
            font-weight: 600;
            font-size: 0.875em;
            line-height: 18px;
            color: var(--md-contrast-color);

            &:hover {
                color: var(--primary-color);
            }
        }
    }

    th:last-child,
    td:last-child {
        padding-right: 20px;
    }

    th:first-child,
    td:first-child {
        padding-left: 20px;
    }

    .logo {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        overflow: hidden;
        position: relative;

        .area-link {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        img {
            width: auto;
            height: 20px;
        }
    }

    @media (min-width: 768px) {

        .minimum,
        .maximum {
            text-align: center;
        }
    }

    @media (max-width:1199px) {
        & {
            display: table;
            overflow: unset;
        }
    }

    @media (max-width: 767px) {
        & {
            display: block;
            overflow: auto;
        }

        thead,
        tbody {
            display: block;
        }

        th {
            padding: 8px 14px;
        }

        td {
            padding: 12px 14px;
        }

        tr>*:first-child {
            border-right: 1px solid var(--border-color);
            min-width: 100px;
            flex: 1;
            position: sticky;
            left: 0;
        }

        th:first-child,
        td:first-child {
            padding-left: 14px !important;
        }

        td:first-child span {
            display: none;
        }

        th:nth-child(n+2),
        td:nth-child(n+2) {
            white-space: break-spaces;
            width: 130px;
            flex: 0 0 130px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        tr {
            display: flex;
        }

        .wrapper .title {
            display: none !important;
        }

        .logo {
            margin: 0 auto;
            width: 2rem;
            height: 2rem;

            img {
                width: 18px;
                height: 18px;
            }
        }
    }
}



/*--  Sidebar  --*/
section.sidebar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    z-index: 10000;
    display: none;

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 6;
        width: 280px;
        height: 100vh;
        overflow: auto;
        background: #FFF;
        transition: .3s;

        .top {
            position: sticky;
            top: 0;
            background: #FAFAFA;
            border-bottom: 1px solid var(--border-color);
            z-index: 6;
        }

        .bottom {
            padding: 24px 0;
        }

        .logo {
            padding: 1rem 2rem;
            background: var(--neutral-color);
        }

        .close {
            padding: 11px 1rem 11px 2rem;
            background: #fb37481a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #681219;
            font-weight: 500;

            .icon {
                cursor: pointer;
            }
        }

        .menu-container {
            &:not(:last-child) {
                margin-bottom: 32px;
            }

            .title {
                padding: 0 24px;

                >* {
                    font-size: 1em;
                }
            }

            .menu-item a {
                display: flex;
                align-items: center;
                height: 40px;
                width: 100%;
                padding: 0 24px;
                font-size: 14px;
                font-weight: 500;

                &:hover {
                    color: var(--high-contrast-color);
                    background: #FAFAFA;
                }
            }
        }
    }

    &.open {
        display: block;
    }
}



/*--  --*/
body.default-social-reviews-template {
    header {
        border-bottom: 2px solid var(--border-color);
    }

    section.block-content {
        padding: 48px 0;

        h1 {
            font-size: 1.5em;
        }

        h2 {
            font-size: 1em;
        }
    }
}



/*--  content-sidebar  --*/
.content-sidebar {
    position: sticky;
    top: 40px;

    .navigation {
        li {
            margin: 0;

            &::before {
                display: none;
            }

        }

        a {
            display: block;
            /* font-size: 14px;
            font-weight: 500; */

            &:hover {
                color: var(--button-cta-color--hover);
                font-weight: 600;
            }

            &::before {
                display: none;
            }
        }
    }


    @media (min-width: 1200px) {
        .navigation {
            ul {
                border-right: 2px solid var(--border-color)
            }

            a {

                border-bottom: 1px solid var(--border-color);
                padding: 20px 0;

                &:last-child {
                    border-bottom: none;
                }

                span {
                    display: block;
                    position: relative;
                    left: 2px;
                    border-right: 2px solid transparent;
                    padding-right: 20px;
                }
            }

            li {

                &.active {
                    a span {
                        border-color: var(--primary-color);
                        color: var(--primary-color);
                        font-weight: 600;
                    }
                }

            }
        }
    }

    @media screen and (max-width: 1199px) {
        .navigation {
            ul {
                border-bottom: 1px solid var(--border-color);
                display: flex;
                gap: 0 20px;
                margin: 0 -15px;
                overflow: auto;
                padding: 0 15px;
                white-space: nowrap;
            }

            a {
                border-bottom: 2px solid transparent;
                color: #77808c;
                display: block;

                line-height: 145%;
                padding: 1rem 0 14px;
            }

            li {

                &.active {
                    a {
                        border-color: var(--primary-color);
                        color: var(--primary-color);
                        font-weight: 600;
                    }
                }

            }

        }
    }
}


/*--  sportsbook-review-social-reviews-template  --*/
.sportsbook-review-social-reviews-template, .casino-review-social-reviews-template {
    section.hero {
        @media screen and (max-width: 1199px) {
            background-image: url(https://static.girospremiados.com/wp/hero_banner_mobile-1.webp);
        }
    }

    section.block-content {
        @media screen and (max-width: 1199px) {
            .row {
                padding-top: 12px;
            }

            .col-xl-4 {
                background: #fff;
                margin: 0;
                order: -1;
                position: sticky;
                top: 0;
                z-index: 2;
                margin-bottom: 2rem;
            }
        }

        @media screen and (max-width: 767px) {
            .row {
                padding-top: 0;
            }
        }

    }

    section.advertisers .advertiser-geographical-area.horizontal.card {
        margin-top: -75px;

        @media screen and (max-width: 1199px) {
            margin-top: -70px;

            .review {
                display: none;
            }
        }

        @media screen and (max-width: 767px) {
            margin-top: -55px;
        }
    }
}



/*--  template-404  --*/
.template-404 {
    section.hero {
        .introduction {
            max-width: none !important;

            >div:is(.title, .content)>* {
                text-align: center !important;
            }
        }

        a {
            color: var(--neutral-color);

            &:hover {
                text-decoration: underline;
            }
        }
    }
}



/*-- my-account-social-reviews-template  --*/
.my-account-social-reviews-template {
    header {
        border-bottom: 2px solid var(--border-color);
    }


    /*  */
    #restricted-access {
        section.hero {
            padding-bottom: 32px !important;

            .introduction {
                margin: 0 auto;
                text-align: center;

                .title>* {
                    color: var(--high-contrast-color);
                }

                .content {
                    color: var(--md-contrast-color);
                }
            }
        }

        section.account {
            margin-bottom: 56px;

            .buttons {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                gap: 40px 0;
            }

            .button {
                font-size: 0.875em;
                font-weight: 600;
                font-family: var(--font-family-heading);
                color: var(--high-contrast-color);
                cursor: pointer;
                transition: .3s ease;

                &.sign-in {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    height: 48px;
                    padding: 0 24px;
                    border-radius: 80px;
                    cursor: pointer;
                    background: var(--primary-color);

                    &:hover {
                        box-shadow: 0 0 8px 0 var(--primary-color);
                    }
                }

                &.sign-up {
                    font-weight: 500;
                    color: var(--md-contrast-color);
                    text-align: center;

                    .title {
                        color: var(--high-contrast-color);
                    }

                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
        }


        @media screen and (min-width: 1200px) {
            section.account {
                .buttons {
                    margin: 0 auto;
                    max-width: 760px;
                }
            }
        }
    }


    /*  */
    #profile-container {
        max-width: 530px;
        margin: 0 auto;
        padding: 56px 0;

        >.title {
            margin-bottom: 24px;
        }

        >.account {
            padding-bottom: 40px;
            margin-bottom: 40px;
            border-bottom: 1px solid var(--border-color);
        }


        form {
            .introduction .title {
                font-family: var(--font-family-heading);
                font-weight: 600;
                color: var(--high-contrast-color);
                font-size: 1.25em;

                >* {
                    margin-bottom: 0;
                }
            }

            textarea,
            input:is([type=text], [type=email], [type=password], [type=date]) {
                height: 48px !important;
            }

            .label {
                color: var(--high-contrast-color);
                font-size: 16px;
                font-weight: 500;
                line-height: 145%;
                padding-bottom: 8px;
            }

            >.bottom .buttons {
                display: flex;
                gap: 0 12px;

                >div {
                    flex: 1;
                }

                .cancel:not(.button) .title input,
                .cancel.button {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    height: 48px;
                    border-radius: 80px;
                    border: none;
                    background: #FFF1F1;
                    color: #A63232;
                    font-family: var(--font-family-heading);
                    font-size: 16px;
                    font-weight: 700;
                    line-height: normal;
                    cursor: pointer;
                    width: 100%;

                    &:hover {
                        background: #FFD5D5;
                    }
                }

                .cancel.button {
                    border-radius: 6px;
                }
            }

            .field.locked input {
                cursor: not-allowed;
            }

            .field.birth-date {
                .icon img {
                    filter: brightness(0);
                }

                input[type="date"]::-webkit-inner-spin-button,
                input[type="date"]::-webkit-calendar-picker-indicator {
                    display: none;
                    -webkit-appearance: none;
                }
            }

            .field.phone {
                position: relative;

                .wrapper {
                    height: 48px;
                    border-radius: 6px;
                    border: 1px solid var(--border-color);
                    /* background: #1E2121; */
                    font-weight: 500;
                    line-height: normal;

                    .input {
                        height: 100%;
                        width: 100%;
                        display: flex;
                        flex-direction: row;

                        .country>div {
                            height: 100%;
                            width: 100%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            background: var(--low-contrast-color);
                            padding: 0 16px;
                            gap: 0 4px;
                            font-size: 14px;
                            font-weight: 600;
                            color: var(--high-contrast-color);
                        }

                        input {
                            display: block;
                            width: auto;
                            height: 100%;
                            padding: 0 20px;
                            border: 0;
                        }
                    }
                }
            }
        }


        #form-account-social-reviews {
            form {
                >.bottom {
                    .buttons {
                        margin-top: 32px;
                    }
                }

                >.middle {
                    display: flex;
                    flex-direction: column;
                    gap: 20px 0;

                    >.avatar {
                        padding: 24px 20px;
                        border-radius: 6px;
                        border: 1px solid var(--border-color);
                        display: grid;
                        grid-template-columns: minmax(0, 1fr) auto;
                        align-items: center;

                        .hide {
                            display: none !important;
                        }

                        .left {
                            display: grid;
                            grid-template-columns: auto 1fr;
                            align-items: center;
                            gap: 0 10px;

                            .original-image,
                            .image {
                                img {
                                    width: 48px;
                                    aspect-ratio: 1;
                                    border-radius: 50%;
                                    object-fit: cover;
                                }
                            }

                            .short-name {
                                display: flex;
                                width: 48px;
                                aspect-ratio: 1;
                                justify-content: center;
                                align-items: center;
                                border-radius: 50%;
                                background: var(--low-contrast-color);
                                font-size: 14px;
                                font-weight: 800;
                                color: var(--high-contrast-color);
                                line-height: 26px;
                                text-transform: uppercase;
                            }

                            .info {
                                .title {
                                    padding-bottom: 4px;
                                    font-size: 16px;
                                    font-weight: 500;
                                    line-height: normal;
                                }

                                .content {
                                    color: #9CA3AF;
                                    font-size: 14px;
                                    font-weight: 500;
                                    line-height: normal;

                                }
                            }
                        }

                        .right {
                            display: flex;
                            gap: 0 10px;

                            >div {
                                flex: 1;
                            }

                            .button.upload-avatar .title,
                            .button.delete-avatar .title {
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                height: 40px;
                                padding: 0 16px;
                                border-radius: 80px;
                                font-family: var(--font-family-heading);
                                font-size: 14px;
                                font-weight: 700;
                                line-height: normal;
                                cursor: pointer;
                                transition: .3s;
                            }

                            .button.upload-avatar .title {
                                background: var(--primary-color);
                                color: var(--neutral-color);

                                &:hover {
                                    box-shadow: 0px 0px 8px 0px var(--primary-color);
                                }
                            }

                            .button.delete-avatar .title {
                                border: 2px solid #D07F7F;

                                &:hover {
                                    color: #D07F7F;
                                }
                            }

                            input {
                                display: none;
                            }
                        }
                    }
                }
            }
        }


        #form-change-password {
            form {
                display: flex;
                flex-direction: column;
                gap: 20px 0;

                >.bottom {
                    .buttons {
                        margin-top: 12px;
                    }
                }
            }
        }


        @media screen and (min-width: 1200px) {
            #form-account-social-reviews {
                form {
                    >.middle {
                        >.avatar {
                            .left .info .content {
                                max-width: 140px;
                            }
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 1199px) {
            >.account {
                padding-bottom: 32px;
                margin-bottom: 32px;
            }

            #form-account-social-reviews {
                form {
                    >.middle {
                        >.avatar {
                            display: flex;
                            flex-direction: column;
                            gap: 16px 0;
                            align-items: stretch;
                        }
                    }
                }
            }
        }
    }
}



/*-- Home - Social Reviews  --*/
.homepage-social-reviews-template {

    /*--  Header  --*/
    header {
        background: var(--neutral-color);
        padding: 16px 0;
    }

    header .wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: fit-content;
    }


    /*  */
    header ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header ul a {
        font-family: var(--font-family-heading);
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: flex-end;
        gap: 0 8px;
        font-size: 0.75em;
        font-weight: 500;
        color: var(--neutral-color);
    }

    header ul a:hover {
        text-decoration: underline;
    }

    header ul a img {
        height: 16px;
    }


    /*  */
    header .logo img {
        height: 28px;
        width: auto;
    }


    /*  */
    header .responsible-gaming {
        display: flex;
        align-items: center;
        gap: 0 12px;
        font-size: 0.75em;
        font-weight: 500;
        color: var(--high-contrast-color) !important;
    }

    header .responsible-gaming img {
        height: 20px;
        width: 20px;
        filter: brightness(0);
    }


    @media screen and (max-width:991px) {
        header .wrapper {
            flex-wrap: nowrap;
            flex-direction: column;
            gap: 8px;
            align-items: center;
        }

        header .logo {
            display: block;
            margin: 0;
            padding: 0;
            border: none;
            border-bottom: 2px solid var(--border-color--light);
        }

        header .menu {
            order: 2;
        }

        header ul a {
            gap: 0 4px;
        }

        header .responsible-gaming {
            order: 2;
            font-size: 0.75em;
            font-weight: 600;
            gap: 0 4px;
        }
    }



    /*--  Hero  --*/
    section.hero {
        background: center/cover;
        padding: 56px 0;

        .introduction {
            text-align: center !important;
            margin-bottom: 54px;
            color: var(--md-contrast-color) !important;

            .title>* {
                color: var(--high-contrast-color);
                margin-bottom: 4px;
            }

            .content {
                p:not(:last-child) {
                    margin-bottom: 4px;
                }
            }
        }

        .buttons>div a,
        .buttons {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .buttons>div a {
            height: 48px;
            padding: 0 24px;
            font-family: var(--font-family-heading);
            font-size: 14px;
            font-weight: 600;
            color: var(--neutral-color);
            background: var(--button-cta-color);
            border-radius: 6px;
            transition: .3s ease;

            &:hover {
                background: var(--button-cta-color--hover);
            }
        }

        @media (min-width: 576px) {
            .container {
                max-width: 526px !important;
            }
        }


        @media (max-width: 991px) {
            padding: 40px 0;
        }

        @media (max-width: 767px) {
            padding: 48px 0;
        }
    }
}