@import 'https://fonts.googleapis.com/css?family=Inter:400,400i,500,500i,600,600i,700,700i&display=swap';
@import 'https://fonts.googleapis.com/css?family=Montserrat:400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap';

/* default */
:root {
    --font-family-body: 'Inter';
    --font-family-heading: Montserrat;


    /* essential colors */
    --primary-color: #24EE89;
    --secondary-color: #9FE871;

    --button-hover: #ffc25559;
    --button-color: #000;

    --border-color: #37393D;
    --tag-color: #FFF;


    /* bg + neutral */
    --background-color: #1B1C1F;
    --background-color--md: #2A2C2F;
    --background-color--md--2: #3A4142;
    --background-color--sm: #323738;
    --background-color--high: #131415;

    --md-contrast-color: #B3BEC1;

    --white-color: #FFF;
    --white-color--80: #FFFFFFCC;

    --black-color: #000;
    --black-color--75: #000000BF;
    
    --light-color: #A9ACB0;
    --light-color--2: #F5F7FA;


    /* defaults */
    --old-price-color: #FBBF24;
    --free-sc-color--01: #F59E0B;
    --free-sc-color--02: #F97316;

    --delete-color: #D07F7F;
}


* {
    padding: 0;
    margin: 0;
    border: 0;
    background: center/cover;
}

html {
    position: relative;
}

body {
    font-family: var(--font-family-body);
    background: var(--background-color);
    color: var(--light-color--2);
}

.area-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card {
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    font-size: 0;
    transition: .3s;
}

iframe {
    display: block;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

ul,
ol {
    list-style: none;
}

input,
textarea,
select,
button {
    font-family: inherit;
    color: inherit;
    font-size: inherit;
    transition: .3s;
    display: block;
    width: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

*:focus {
    outline: none;
}

*::placeholder {
    color: inherit;
    opacity: .5;
}

h1,h2,h3 {
    color: var(--white-color);
}
/*  */

main,
footer {
    @media (min-width: 1200px) {
        padding-left: 243px;
    }
}

.sidebar-container {
    position: fixed;
    top: 60px;
    left: 0;
    width: 243px;
    height: calc(100% - 60px);
    background: var(--background-color);
    border-right: 1px solid var(--border-color);
    padding: 40px 16px;
    z-index: 2;

    @media (min-width: 1200px) {

        .logo,
        .close-icon {
            display: none;
        }
    }

    @media (max-width: 1199px) {
        & {
            top: 0;
            width: 260px;
            height: 100%;
            z-index: 6;
            border-right: 0;
        }

        &:not(.open) {
            display: none;
        }

        &::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            translate: 100% 0;
            width: calc(100vw - 260px);
            height: 100%;
            background: var(--black-color--75);
        }
    }

    .logo {
        width: fit-content;
        margin: 0 auto 40px;
    }

    .close-icon {
        position: absolute;
        right: -60px;
        top: 40px;
        z-index: 1;

        img {
            width: 36px;
            aspect-ratio: 1;
            border-radius: 6px;
            background: var(--background-color--high);
            padding: 0 8px;
            rotate: 180deg;
        }
    }

    ul {
        display: flex;
        flex-direction: column;
        gap: 10px 0;

        .menu-item>:is(a, div) {
            display: flex;
            height: 40px;
            padding: 0px 10px;
            align-items: center;
            gap: 0 8px;
            border-radius: 4px;
            font-family: var(--font-family-heading);
            font-size: 14px;
            font-weight: 700;
            line-height: normal;
            flex-direction: row-reverse;
            position: relative;
            cursor: pointer;

            &::before {
                content: '';
                position: absolute;
                top: calc(50% - 10px);
                left: 0;
                width: 4px;
                height: 20px;
                border-radius: 0px 4px 4px 0px;
                background: var(--primary-color);
                opacity: 0;
                transition: .3s;
            }

            span {
                flex: 1;
            }

            &:hover {
                background: #1D8F4710;

                &::before {
                    opacity: 1;
                }

                img {
                    filter: none;
                }
            }

            img {
                filter: grayscale(1);
            }
        }

        .menu-item:not(.current):not(:hover) {
            filter: opacity(0.4);
        }

        .current.menu-item>:is(a, div) {
            background: #1D8F4710;

            &::before {
                opacity: 1;
            }

            img {
                filter: none;
            }
        }
    }

    .sidebar {
        height: 100%;
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 3;
    background: var(--background-color);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);

    .container-fluid {
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .right {
        display: flex;
        align-items: center;
        gap: 0 12px;
    }

    .logout,
    .avatar a, .avatar span, .avatar img {
        display: flex;
        width: 40px;
        aspect-ratio: 1;
        justify-content: center;
        align-items: center;
        border-radius: 6px;
        border: 1px solid var(--background-color--md--2);
        font-family: var(--font-family-heading);
        font-size: 14px;
        font-weight: 700;
        line-height: 26px;
        text-transform: uppercase;
        cursor: pointer;
        overflow: hidden;
    }

    .avatar span, .avatar img {
        cursor: auto;
    }

    .avatar img {
        height: 100%;
        object-fit: cover;
    }

    .sign-in,
    .sign-up {
        transition: .3s;
        cursor: pointer;
    }

    .sign-in {
        display: flex;
        height: 40px;
        padding: 0px 24px;
        align-items: center;
        border-radius: 6px;
        border: 2px solid var(--border-color);
        font-family: var(--font-family-heading);
        font-size: 12px;
        font-weight: 700;
        line-height: normal;

        @media (max-width: 1199px) {
            padding: 0 14px;
            border: 0;
        }

        &:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
    }

    .sign-up {
        display: flex;
        height: 40px;
        padding: 0px 24px;
        align-items: center;
        border-radius: 6px;
        background: linear-gradient(90deg, var(--button-cta-color) 0%, var(--button-cta-secondary-color) 100%);
        color: var(--black-color);
        font-family: var(--font-family-heading);
        font-size: 12px;
        font-weight: 700;
        line-height: normal;

        &:hover {
            box-shadow: 0px 0px 12px 0px var(--button-hover);
        }
    }

    .search {
        img {
            cursor: pointer;
            width: 40px;
            aspect-ratio: 1;
            border-radius: 6px;
            border: 1px solid var(--background-color--md--2);
            padding: 0 10px;
        }

        @media (max-width: 1199px) {
            display: none;
        }
    }
}

footer {
    background: var(--background-color);
    color: var(--md-contrast-color);
    font-size: 14px;
    line-height: normal;
    border-top: 1px solid var(--border-color);

    .bottom {
        padding: 40px 0;
        border-top: 1px solid var(--border-color);
        font-weight: 600;
    }

    .top {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: space-between;
        padding: 40px 0;
    }

    .details {
        width: 582px;
        display: flex;
        flex-direction: column;
        gap: 32px 0;
    }

    .right {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px 24px;
    }
    
    .icons img {
        height: 28px;
        width: auto;
    }
    
    .icons>div:nth-child(3) img {
        height: 15px;
    }

    .menus-container {
        width: 342px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 12px;

        .title {
            padding-bottom: 16px;
            font-family: var(--font-family-heading);
            font-size: 14px;
            font-weight: 700;
            line-height: normal;
            color: var(--white-color);
        }

        ul {
            display: flex;
            flex-direction: column;
            gap: 16px 0;
            font-weight: 500;

            li:hover {
                color: var(--primary-color);
            }
        }
    }

    .social-container>div {
        display: flex;
        gap: 0 32px;

        img {
            width: 24px;
            aspect-ratio: 1;
            filter: brightness(0) invert(1);
        }
    }

    @media (max-width: 1199px) {
        & {
            border-bottom: 1px solid var(--border-color);
        }

        .bottom {
            padding-top: 32px;
            text-align: center;
        }

        .top {
            padding-bottom: 32px;
            display: flex;
            flex-direction: column;
            gap: 32px 0;
        }

        .details,
        .menus-container {
            width: auto;
            text-align: center;
        }

        .menus-container {
            grid-template-columns: 40% 1fr;
        }

        .logo {
            align-self: center;
        }

        .social-container>div {
            justify-content: center;
        }
    }
}

main {
    padding-top: 40px;
    padding-bottom: 60px;
}

/*  */

.homepage-social-casino-template {
    .hero {
        padding: 64px 40px;
        margin-bottom: 40px;
        position: relative;

        .background-image {
            position: absolute;
            top: -7px;
            left: 0;
            width: calc(100% + 8px);
            height: calc(100% + 25px);
            background: center/contain no-repeat;

            @media (min-width: 768px) {
                &.responsiveness {
                    display: none;
                }
            }

            @media (max-width: 767px) {
                & {
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background-size: cover;
                    border-radius: 12px;
                }

                &:not(.responsiveness) {
                    display: none;
                }
            }
        }

        .extra-background-image {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: left/contain no-repeat;

            @media (min-width: 1200px) {
                &.responsiveness {
                    display: none;
                }
            }
        }

        >.title {
            position: relative;
        }

        h2 {
            color: var(--white-color);
            font-family: var(--font-family-heading);
            font-size: 36px;
            font-weight: 900;
            line-height: normal;

            &.subtitle {
                font-size: 24px;
                font-weight: 700;
            }

            &.highlighted {
                font-size: 56px;
                background: var(--white-color);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }

        @media (max-width: 1199px) {
            & {
                padding: 60px 24px;
                margin-bottom: 32px;
            }

            h2 {
                font-size: 24px;

                &.subtitle {
                    font-size: 20px;
                }

                &.highlighted {
                    font-size: 48px;
                }
            }
        }
    }
}

.filters {
    display: flex;
    padding: 6px;
    gap: 0 8px;
    border-radius: 12px;
    background: var(--background-color--high);
    overflow: auto;

    .filter {
        >* {
            display: flex;
            height: 28px;
            padding: 0px 10px;
            align-items: center;
            gap: 0 6px;
            border-radius: 8px;
            font-family: var(--font-family-heading);
            font-size: 12px;
            font-weight: 700;
            line-height: normal;
            flex-direction: row-reverse;
            cursor: pointer;
            color: var(--neutral-color);
        }

        &:not(.active):not(:hover) {
            filter: opacity(0.4);
        }

        &.active:is([data-filter=live])>* {
            img {
                filter: brightness(0) invert(1) !important;
            }
        }

        img {
            min-width: 14px;
            width: 14px;
            aspect-ratio: 1;
            filter: grayscale(1);
        }

        &:hover>*,
        &.active>* {
            background: var(--primary-color);
            color: var(--white-color);

            img {
                filter: none;
            }
        }
    }
}

.winners-section {
    padding-bottom: 32px;

    .filters {
        width: fit-content;
        margin-bottom: 8px;
    }

    .winners {
        display: flex;
        padding: 12px;
        gap: 0 12px;
        border-radius: 12px;
        background: var(--background-color--high);
        overflow: auto;

        &::-webkit-scrollbar {
            display: none;
        }

        &:not(.active) {
            display: none;
        }
    }

    .winner {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 10px;
        align-items: center;
        padding: 10px 8px;
        border-radius: 8px;
        background: var(--background-color--md);
        flex: 0 0 172px;
        width: 172px;

        .game-image img {
            width: 40px;
            aspect-ratio: 1;
            border-radius: 4px;
            background: #D9D9D9;
            object-fit: cover;
        }

        .username {
            padding-bottom: 8px;
            color: var(--md-contrast-color);
            font-family: var(--font-family-heading);
            font-size: 10px;
            font-weight: 700;
            line-height: normal;
            text-transform: uppercase;
        }

        .prize div {
            display: flex;
            flex-direction: row-reverse;
            gap: 0 6px;
            align-items: center;

            span {
                flex: 1;
                color: var(--light-color);
                font-family: var(--font-family-heading);
                font-size: 12px;
                font-weight: 700;
                line-height: normal;
                text-transform: uppercase;
            }

            img {
                width: 14px;
                aspect-ratio: 1;
            }
        }
    }
}

.games-section {
    .filters {
        margin-bottom: 40px;

        @media (max-width: 1199px) {
            margin-bottom: 32px;
        }
    }

    .games-container:has(.active) .games:not(.active) {
        display: none;
    }

    .games {
        .top {
            padding-bottom: 8px;
            display: flex;
            align-items: center;

            .title {
                flex: 1;
                font-family: var(--font-family-heading);
                font-size: 16px;
                font-weight: 800;
                line-height: normal;
            }
        }

        .navigation {
            display: flex;
            gap: 0 8px;

            .left {
                rotate: 180deg;
            }

            .arrow-icon {
                border-radius: 6px;
            }

            .arrow-icon:not(.disabled) {
                background: var(--secondary-color);
            }

            img {
                width: 36px;
                aspect-ratio: 1;
                padding: 0 10px;
                cursor: pointer;
                filter: brightness(1);
            }

            .arrow-icon.disabled img {
                background: var(--background-color--md);
                cursor: not-allowed;
                filter: opacity(0.5);
            }
        }
    }
}

.games-pagination {
    .page {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px 16px;

        &:not(.current) {
            display: none;
        }

        @media (max-width: 991px) {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        @media (max-width: 767px) {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        @media (max-width: 575px) {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
}

.social-casino-game-card {
    height: 240px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;

    @media (max-width: 1199px) {
        height: 220px;
    }

    &:not(:hover) .details {
        display: none;
    }

    .details {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--black-color--75);
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 24px 0;
        text-align: center;
        font-family: var(--font-family-heading);
        font-size: 16px;
        font-weight: 700;
        line-height: normal;
    }

    .icon img {
        width: 94px;
        aspect-ratio: 1;
        margin: 0 auto;
    }
}

/*  */

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 {
    display: none;
}

.pop-ups {
    .pop-up {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--black-color--75);
        z-index: 4;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

#search-pop-up {
    .pop-up-container {
        width: 100%;
        max-width: 602px;
        padding: 32px;
        border-radius: 12px;
        background: #232626;
        position: relative;
    }

    .close {
        position: absolute;
        right: -20px;
        top: -20px;

        img {
            width: 40px;
            aspect-ratio: 1;
            padding: 0 10px;
            border-radius: 6px;
            background: var(--background-color--high);
            cursor: pointer;
        }
    }

    .navigation {
        display: flex;
        gap: 0 8px;

        .left {
            rotate: 180deg;
        }

        .arrow-icon {
            border-radius: 6px;

            &:not(.disabled) {
                background: var(--secondary-color);
            }
        }

        img {
            width: 36px;
            aspect-ratio: 1;
            padding: 0 10px;
            cursor: pointer;
            filter: brightness(1);
            border-radius: 6px;
        }

        .arrow-icon.disabled {
            background: var(--background-color--md);

            img {
                cursor: not-allowed;
                filter: opacity(0.5);
            }
        }
    }

    .bar {
        margin-bottom: 10px;
        border-radius: 12px;
        background: var(--background-color--sm);
        display: flex;
        padding: 0 24px;
        align-items: center;
        gap: 0 12px;

        img {
            width: 24px;
            aspect-ratio: 1;
        }

        input {
            flex: 1;
            height: 48px;
            font-family: var(--font-family-heading);
            font-size: 14px;
            font-weight: 700;
            line-height: normal;
        }
    }

    .results {
        .top {
            padding-bottom: 16px;
            display: flex;
            align-items: center;

            .title {
                flex: 1;
                font-family: var(--font-family-heading);
                font-size: 14px;
                font-weight: 700;
                line-height: normal;
            }
        }

        .page,
        .preview:not(.title):not(.hide) {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 8px;
        }

        .no-results {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-weight: 700;
            text-align: center;
            padding: 50px;
            gap: 15px;

            .icon img {
                width: 2.5rem;
            }
        }

        .hide:not(.title.preview) {
            display: none;
        }

        .page:not(.current) {
            display: none;
        }
    }

    .social-casino-game-card {
        height: 180px;
    }

    .preview.title.hide {
        opacity: 0;
        visibility: hidden;
    }

    @media (max-width: 1199px) {
        .pop-up-container {
            padding: 32px 16px;
        }

        .bar {
            padding: 0 16px;
        }

        .close {
            right: 16px;
        }
    }

    .results .preview:not(.title):not(.hide),
    .results .results-pagination .page {
        @media (max-width: 767px) {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        @media (max-width: 575px) {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
}

#sign-in-pop-up,
#sign-up-pop-up {
    .pop-up-container {
        width: 100%;
        max-width: 538px;
        padding: 40px;
        border-radius: 12px;
        background: #212524;
        position: relative;
    }

    .close {
        position: absolute;
        right: -10px;
        top: -8px;

        img {
            width: 40px;
            aspect-ratio: 1;
            padding: 0 10px;
            border-radius: 6px;
            background: var(--background-color--high);
            cursor: pointer;
        }
    }

    h2 {
        text-align: center;
        padding-bottom: 10px;
        font-family: var(--font-family-heading);
        font-size: 24px;
        font-weight: 700;
        line-height: normal;
    }

    .subtitle,
    .social-logins>.title {
        padding-bottom: 24px;
        color: var(--md-contrast-color);
        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(--background-color--md--2);
            color: var(--md-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(--primary-color);

                img {
                    filter: none;
                }
            }
        }
    }

    .bottom {
        padding-bottom: 32px;
        width: 100%;

        >.title {
            color: var(--md-contrast-color);
            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(--background-color--md--2);
            }
        }

        +div {
            text-align: center;
            font-size: 16px;
            line-height: normal;

            @media (max-width: 1199px) {
                font-size: 14px;
            }

            span:last-child {
                color: var(--primary-color);
                cursor: pointer;
            }
        }
    }

    @media (max-width: 1199px) {
        .pop-up-container {
            padding: 32px 16px;
        }

        .close {
            right: 16px;
            top: 16px;
        }

        .logins {
            gap: 0 12px;

            .button {
                height: 40px;
            }
        }
    }
}

#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;
    }

    h2 {
        font-size: 48px;
        padding-bottom: 16px;
    }

    .introduction {
        position: relative;
        padding: 40px;

        >.content {
            position: relative;
            padding-bottom: 100px;
            
            .content {
                color: var(--md-contrast-color);
                font-size: 20px;
                font-weight: 500;
                line-height: 155%;

                strong {
                    font-weight: 600;
                    color: var(--white-color);
                }
            }
        }

        +.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;
        }

        h2 {
            font-size: 32px;
            padding-bottom: 4px;
        }

        .introduction {
            padding: 32px 40px;

            >.content {
                .content {
                    font-size: 18px;
                    text-align: center;
                }
            }

            +.content {
                padding: 24px 16px 32px;
            }
        }
    }
}

/*  */

body.loading .pop-up-container {
    position: relative;
}

body.loading .loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgb(255 255 255/.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

body.loading .loader::before {
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/*  */

.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(--background-color--md--2);
        background: var(--background-color--md);
        font-size: 14px;
        font-weight: 500;
        line-height: normal;

        &:focus {
            border-color: var(--primary-color);
        }
    }

    textarea {
        height: 120px;
        padding: 20px;
    }

    .field.locked input {
        cursor: not-allowed;
    }

    input[type=button] {
        height: 48px;
        border-radius: 6px;
        background: linear-gradient(90deg, var(--button-submit-color) 0%, var(--button-submit-secondary-color) 100%);
        color: var(--white-color);
        font-family: var(--font-family-heading);
        font-size: 16px;
        font-weight: 700;
        line-height: normal;
        cursor: pointer;

        &:hover {
            box-shadow: 0px 0px 12px 0px var(--button-hover);
        }
    }

    .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 var(--background-color--md--2);
            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: var(--primary-color);

                img {
                    rotate: 180deg;
                }
            }

            .options {
                display: block;
            }
        }
    }

    .field.phone .countries>div .country {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        gap: 0 8px;
        font-size: 14px;
        color: var(--high-contrast-color--3);
    }

    .field.phone .countries {
        width: 110px;
    }

    .field.phone .countries>div.top {
        height: 48px;
        padding: 0px 5px;
        border-radius: 6px;
        border: 1px solid var(--background-color--md--2);
        background: #1E2121;
        transition: .3s;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        cursor: pointer;
    }

    .field.phone .countries>div.bottom .country,
    .field.phone .countries>div.top .country {
        font-weight: 700;
        padding: 4px 8px;
        justify-content: flex-end;
        cursor: pointer;
    }

    .field.phone .countries>div.bottom .country .flag,
    .field.phone .countries>div.top .country .flag {
        height: 16px;
        width: 16px;
        border-radius: 50%;
    }

    .field.phone .countries:not(.open) {
        .bottom {
            display: none;
        }
    }

    .field.phone .countries.open {
        .top .toggle img {
            rotate: 180deg;
        }
    }

    .field.phone {
        position: relative;
    }

    .field.phone .countries>div.bottom {
        top: 100%;
        height: 127px;
        overflow-y: scroll;
        width: 95px;
        /*background: var(--white-color)FFF;*/
        border-radius: 4px;
        transition: .3s ease;
        position: absolute;
        background: #1E2121;
        z-index: 1;
        margin-top: 8px;
        max-height: 200px;
        overflow: auto;
    }

    .field.phone .wrapper {
        height: 48px;
        border-radius: 6px;
        border: 1px solid var(--background-color--md--2);
        background: #1E2121;
        font-size: 14px;
        font-weight: 500;
        line-height: normal;

        &input:focus {
            border-color: var(--primary-color);
        }

        .input {
            width: 100%;
            display: flex;
            flex-direction: row;

            input {
                width: auto;
                padding: 0 20px;
            }
        }
    }

    .field:has(.error:not(:empty)) textarea,
    .field:has(.error:not(:empty)) input[type=text],
    .field:has(.error:not(:empty)) input[type=email],
    .field:has(.error:not(:empty)) input[type=tel],
    .field:has(.error:not(:empty)) input[type=number],
    .field:has(.error:not(:empty)) input[type=password] {
        border-color: #cb1515;
    }

    .error span {
        display: block;
        font-weight: 600;
        font-size: 14px;
        line-height: 145%;
        color: #cb1515;
    }
}

.form.sign-up,
.form.sign-in {
    form {
        display: flex;
        flex-direction: column;
        gap: 24px 0;

        @media (max-width: 1199px) {
            gap: 20px 0;
        }
    }
}



/*  */

.default-social-casino-template .main,
.template-404 .main {
    h1 {
        margin-bottom: 40px;
        font-family: var(--font-family-heading);
        font-size: 32px;
        font-weight: 700;
        line-height: normal;
        color: var(--white-color); 

        @media (max-width: 1199px) {
            font-size: 24px;
            margin-bottom: 32px;
        }
    }

    h2 {
        margin-bottom: 24px;
        font-family: var(--font-family-heading);
        font-size: 24px;
        font-weight: 700;
        line-height: normal;
        color: var(--white-color); 

        @media (max-width: 1199px) {
            font-size: 20px;
        }
    }

    h3 {
        margin-bottom: 20px;
        font-family: var(--font-family-heading);
        font-size: 20px;
        font-weight: 700;
        line-height: normal;
        color: var(--white-color); 

        @media (max-width: 1199px) {
            font-size: 18px;
        }
    }

    .content-block {
        font-size: 16px;
        line-height: normal;
        color: var(--light-color--2); 

        p {
            &:not(:last-child) {
                margin-bottom: 19px;
            }
        }
    }

    .container>.content>.content {
        display: flex;
        flex-direction: column;
        gap: 40px 0;
    }

    ul,
    ol {
        list-style-type: disc;
        list-style-position: inside;
        margin-bottom: 19px;
    }
}

/*  */

.pop-ups .age-restriction {
    .pop-up-container {
        width: 100%;
        max-width: 378px;
        display: flex;
        padding: 32px;
        flex-direction: column;
        gap: 24px 0;
        border-radius: 12px;
        background: #232626;
        text-align: center;

        @media (max-width: 575px) {
            padding: 24px;
        }
    }

    h2 {
        font-family: var(--font-family-heading);
        font-size: 20px;
        font-weight: 700;
        line-height: normal;
    }

    .buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 12px;
    }

    .affirmative {
        display: flex;
        height: 40px;
        padding: 0px 24px;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        background: linear-gradient(90deg, var(--button-submit-color) 0%, var(--button-submit-secondary-color) 100%);
        color: var(--black-color);
        font-family: var(--font-family-heading);
        font-size: 12px;
        font-weight: 700;
        line-height: normal;
        transition: .3s;
        cursor: pointer;

        &:hover {
            box-shadow: 0px 0px 12px 0px var(--button-hover);
        }
    }

    .negative a {
        display: flex;
        height: 40px;
        padding: 0px 24px;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        border: 2px solid var(--border-color);
        font-family: var(--font-family-heading);
        font-size: 12px;
        font-weight: 700;
        line-height: normal;

        &:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
    }
}

/*  */

.single-social-casino-game-template .main {
    .container {
        display: flex;
        flex-direction: column;
        gap: 40px 0;
    }

    h1 {
        font-family: var(--font-family-heading);
        font-size: 32px;
        font-weight: 700;
        line-height: normal;
    }

    h2 {
        padding-bottom: 24px;
        font-family: var(--font-family-heading);
        font-size: 24px;
        font-weight: 700;
        line-height: normal;
    }

    @media (max-width: 1199px) {
        .container {
            gap: 32px 0;
        }

        h1 {
            font-size: 24px;
        }
    }
}

.game-iframe iframe,
.game-iframe img {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--background-color--md);
    aspect-ratio: 2;
    width: 100%;

    @media (max-width: 575px) {
        height: 320px;
    }
}

.social-casino-advertisers {
    .cards-container {
        display: flex;
        flex-direction: column;
        gap: 24px 0;
    }
}

.games-social-casino {
    .games-container {
        display: grid;
        gap: 0 16px;
        grid-template-columns: repeat(5, 1fr);

        @media (max-width: 991px) {
            grid-template-columns: repeat(4, 1fr);
        }

        @media (max-width: 767px) {
            grid-template-columns: repeat(3, 1fr);
        }

        @media (max-width: 575px) {
            grid-template-columns: repeat(2, 1fr);
        }

        >div {
            flex: 1;

            @media (max-width: 991px) {
                &:nth-child(n+5) {
                    display: none;
                }
            }

            @media (max-width: 767px) {
                &:nth-child(n+4) {
                    display: none;
                }
            }

            @media (max-width: 575px) {
                &:nth-child(n+3) {
                    display: none;
                }
            }
        }
    }
}

/*  */

.advertiser-geographical-area.long.horizontal {
    color: var(--white-color);

    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--background-color--md);

    .tc-excerpt {
        padding: 5px 16px;
        border-radius: 0 0 8px 8px;
        background: var(--background-color--high);
        color: var(--md-contrast-color);
        font-size: 12px;
        line-height: 125%;
        margin: 0 -1px -1px;
    }

    .payment-methods {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0 8px;
        justify-content: space-between;

        .prefix {
            color: var(--md-contrast-color);
            font-size: 12px;
            font-weight: 500;
            line-height: 120%;
        }
    }

    .icons {
        display: flex;
        position: relative;
        z-index: 0;

        >div {
            width: 22px;
            aspect-ratio: 1;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--border-color);
            margin-right: -5px;

            &.extra {
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 10px;
                font-weight: 500;
                line-height: 1;
            }
        }

        img {
            width: 100%;
            aspect-ratio: 1;
        }
    }

    .logo {
        width: 64px;
        aspect-ratio: 1;
        border-radius: 8px;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
        }
    }

    .rank {
        display: flex;
        width: 24px;
        aspect-ratio: 1;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        border: 1px solid var(--background-color--md--2);
        background: var(--background-color--high);
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        position: absolute;
        left: 16px;
        top: -7px;
    }

    .tag {
        width: fit-content;
        display: flex;
        padding: 4px 6px;
        border-radius: 50px;
        background: var(--primary-color);
        color: var(--tag-color);
        font-size: 12px;
        font-weight: 600;
        line-height: 120%;
        margin-bottom: 6px;
    }

    .name {
        font-size: 16px;
        font-weight: 600;
        line-height: 130%;
        padding-bottom: 4px;
    }

    .rating {
        display: flex;
        align-items: center;
        gap: 0 4px;
        color: var(--md-contrast-color);
        font-size: 14px;
        font-weight: 600;
        line-height: 150%;
    }

    .string {
        font-size: 16px;
        font-weight: 600;
        line-height: 135%;
    }

    .donation a {
        display: flex;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        background: linear-gradient(90deg, var(--button-cta-color) 0%, var(--button-cta-secondary-color) 100%);
        color: var(--white-color);
        font-family: var(--font-family-heading);
        font-size: 12px;
        font-weight: 700;
        line-height: normal;

        &:hover {
            box-shadow: 0px 0px 12px 0px var(--button-hover);
        }
    }

    .right {
        display: flex;
        flex-direction: column;
        gap: 16px 0;
    }

    .left {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0 16px;
        align-items: center;
    }

    @media (min-width: 992px) {
        >.top {
            display: grid;
            align-items: center;
            padding: 0 24px 0 16px;
            grid-template-columns: 256px minmax(0, 1fr) 242px;
            gap: 0 54px;
        }

        .middle {
            position: relative;
            height: 120px;
            padding-left: 74px;
            border-left: 1px solid var(--border-color);

            >.icon {
                position: absolute;
                top: calc(50% - 24px);
                left: -24px;
            }
        }

        .bonus {
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 6px 0;
            justify-content: center;
        }

        .payment-methods {
            justify-content: center;
        }
    }

    @media (max-width: 991px) {
        >.top {
            padding: 22px 16px;
            display: flex;
            flex-direction: column;
            gap: 16px 0;
        }

        .middle {
            padding: 20px;
            border-radius: 8px;
            border: 1px solid var(--border-color);

            >.icon {
                display: none;
            }
        }

        .string {
            padding-bottom: 8px;
            text-align: center;
        }

        .code {
            width: auto;
        }

        .name {
            padding-bottom: 0;
        }

        .info {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
        }

        .rating {
            flex-direction: column;
            gap: 2px 0;
        }

        .logo {
            width: 48px;
        }
    }
}

.code {
    cursor: pointer;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    width: 140px;

    img {
        width: 12px;
        aspect-ratio: 1;
    }

    >div {
        &:not(.active) {
            display: none;
        }

        >div {
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0 8px;
            flex-direction: row-reverse;
            border-radius: 4px;
            border: 1px dashed var(--primary-color);
        }
    }
}

/*  */

.bottom-menu {
    position: sticky;
    bottom: 0;
    padding: 12px 16px;
    border-radius: 12px 12px 0px 0px;
    background: var(--background-color--md);
    color: var(--md-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-around;

    @media (min-width: 1200px) {
        display: none;
    }

    img {
        width: 24px;
        aspect-ratio: 1;
        filter: grayscale(1);
        margin: 0 auto 4px;
    }

    .current {
        color: var(--primary-color);

        img {
            filter: none;
        }
    }
}

/*  */

.comparison-social-casino-template .main .container {
    >.title {
        h1 {
            padding-bottom: 20px;
            font-family: var(--font-family-heading);
            font-size: 32px;
            font-weight: 700;
            line-height: normal;
            color: var(--white-color);

            @media (max-width: 1199px) {
                font-size: 24px;
            }
        }
    }

    >.casinos {
        padding-bottom: 40px;

        .introduction {
            padding-bottom: 40px;
            font-size: 18px;
            line-height: normal;
        }

        .cards-container {
            display: flex;
            flex-direction: column;
            gap: 24px 0;
        }

        @media (max-width: 1199px) {
            & {
                padding-bottom: 32px;
            }

            .introduction {
                padding-bottom: 32px;
                font-size: 16px;
            }
        }
    }

    >.content>.content {
        display: flex;
        flex-direction: column;
        gap: 40px 0;
        font-size: 16px;
        line-height: normal;

        @media (max-width: 1199px) {
            gap: 32px 0;
        }

        h2 {
            font-family: var(--font-family-heading);
            font-size: 24px;
            font-weight: 700;
            line-height: normal;
            color: var(--white-color);
        }

        h3 {
            color: var(--white-color);
        }

        .content-block,
        ol {
            display: flex;
            flex-direction: column;
            gap: 20px 0;
        }

        ol {
            padding-left: 24px;
            list-style: decimal;
        }
    }
}

/*  */

.advertiser-geographical-area.long.vertical:not(.offer) {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--background-color--md);
    overflow: hidden;

    .tc-excerpt {
        padding: 16px 24px;
        border-radius: 0 0 8px 8px;
        background: var(--background-color--md);
        color: var(--md-contrast-color);
        font-size: 12px;
        line-height: 125%;
        margin: 0 -1px -1px;
    }

    .payment-methods {
        display: flex;
        align-items: center;
        justify-content: space-between;

        .prefix {
            flex: 1;
            color: var(--md-contrast-color);
            font-size: 12px;
            font-weight: 500;
            line-height: 120%;
        }
    }

    .icons {
        display: flex;
        position: relative;
        z-index: 0;

        >div {
            width: 22px;
            aspect-ratio: 1;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--border-color);
            margin-right: -5px;

            &.extra {
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 10px;
                font-weight: 500;
                line-height: 1;
            }
        }

        img {
            width: 100%;
            aspect-ratio: 1;
        }
    }

    .logo {
        width: 52px;
        aspect-ratio: 1;
        border-radius: 8px;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
        }
    }

    .rank {
        display: flex;
        width: 24px;
        aspect-ratio: 1;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        border: 1px solid var(--background-color--md--2);
        background: var(--background-color--md);
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        position: absolute;
        left: 16px;
        top: -7px;
    }

    .tag {
        width: fit-content;
        display: flex;
        padding: 2px 4px;
        border-radius: 2px;
        background: var(--secondary-color);
        color: var(--tag-color);
        font-size: 12px;
        font-weight: 600;
        line-height: 120%;
        margin-bottom: 6px;
    }

    .name {
        font-size: 16px;
        font-weight: 600;
        line-height: 130%;
    }

    .rating {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--md-contrast-color);
        font-size: 14px;
        font-weight: 600;
        line-height: 150%;
    }

    .string {
        font-size: 16px;
        font-weight: 600;
        line-height: 135%;
        min-height: 72px;
        border-radius: 8px;
        border: 1px solid #464952;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .donation a {
        display: flex;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        background: linear-gradient(90deg, var(--button-cta-color) 0%, var(--button-cta-secondary-color) 100%);
        color: var(--black-color);
        font-family: var(--font-family-heading);
        font-size: 12px;
        font-weight: 700;
        line-height: normal;

        &:hover {
            box-shadow: 0px 0px 12px 0px var(--button-hover);
        }
    }

    .left {
        padding: 20px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0 16px;
        align-items: center;
    }

    .middle {
        padding: 16px 24px 24px;
    }

    .bonus {
        display: flex;
        flex-direction: column;
        gap: 8px 0;
        padding-bottom: 28px;
    }

    .code {
        width: auto;
    }
}

#post-sign-up-offers-pop-up {
    .pop-up-container {
        position: relative;
        padding: 40px;
        border-radius: 12px;
        background: #212524;
        width: 100%;
        max-width: 1100px;
    }

    .cards-container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0 32px;
    }

    .close {
        position: absolute;

        @media (min-width: 992px) {
            display: flex;
            width: 40px;
            aspect-ratio: 1;
            justify-content: center;
            align-items: center;
            right: -20px;
            top: -20px;
            border-radius: 6px;
            background: var(--background-color--sm);
            cursor: pointer;
        }

        @media (max-width: 991px) {
            & {
                width: 180px;
                height: 4px;
                border-radius: 4px;
                background: var(--md-contrast-color);
                top: 18px;
                left: calc(50% - 90px);
            }

            img {
                display: none;
            }
        }
    }

    h2 {
        padding-bottom: 8px;
        font-size: 20px;
        font-weight: 600;
        line-height: 120%;
    }

    .introduction {
        padding-bottom: 24px;
        color: #FFFFFFE6;
        font-size: 16px;
        line-height: 150%;
    }

    @media (max-width: 991px) {
        .pop-up-container {
            padding: 48px 16px 24px;
        }

        .cards-container {
            gap: 0 16px;
            grid-template-columns: repeat(3, 320px);
            overflow: auto;
            margin: 0 -16px;
            padding: 0 16px;
        }
    }
}

/*  */

.promotions-social-casino-template .main {
    h1 {
        font-family: var(--font-family-heading);
        font-size: 32px;
        font-weight: 700;
        line-height: normal;

        @media (max-width: 1199px) {
            font-size: 24px;
        }
    }

    .filters {
        margin: 24px 0;

    }

    .filters .filter.active img, .filters .filter:hover img {
        filter: brightness(0) invert(1) !important
    }

    .container {
        display: flex;
        flex-direction: column;
        gap: 40px 0;

        @media (max-width: 1199px) {
            gap: 32px 0;
        }

        >.introduction {
            font-size: 16px;
            line-height: normal;
        }

        >.introduction,
        >.popular {
            display: flex;
            flex-direction: column;
            gap: 20px 0;
        }

        >.popular,
        >.more-offers {
            >.title div {
                font-family: var(--font-family-heading);
                font-size: 14px;
                font-weight: 700;
                line-height: normal;
                display: flex;
                align-items: center;
                flex-direction: row-reverse;
                gap: 0 8px;

                span {
                    flex: 1;
                }
            }
        }
    }
}

.offers-container {

    &:not(:has(.offers)),
    .offers {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .offers:not(.active) {
        display: none;
    }

    @media (max-width: 1199px) {
        .offers {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }

        &:not(:has(.offers)) {
            grid-template-columns: repeat(3, 320px);
            overflow: auto;
            margin: 0 -15px;
            padding: 0 15px;

            .advertiser-geographical-area.offer {

                .tag,
                .old-price {
                    display: none;
                }
            }
        }
    }
}

.advertiser-geographical-area.offer {
    padding: 24px 16px 24px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--background-color--md);

    .bottom {
        display: none;
    }

    .logo {
        width: 72px;
        aspect-ratio: 1;
        border-radius: 8px;
        border-radius: 8px;

        img {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 8px;
        }
    }

    .top {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 15px;
    }

    .tag {
        width: fit-content;
        padding: 2px 6px;
        position: absolute;
        left: 24px;
        top: -8px;
        border-radius: 18px;
        background: var(--primary-color);
        color: var(--white-color);
        font-size: 12px;
        font-weight: 600;
        line-height: 120%;
        text-transform: uppercase;
    }

    .details {
        display: flex;
        flex-direction: column;
        gap: 12px 0;
    }

    .coins {
        font-size: 16px;
        font-weight: 700;
        line-height: normal;
    }

    .free-sc {
        width: fit-content;
        padding: 2px 6px;
        border-radius: 6px;
        background: var(--background-color--high);
        color: var(--md-contrast-color);
        font-size: 18px;
        font-weight: 700;
        line-height: normal;
    }

    .old-price {
        color: var(--primary-color);
        font-size: 14px;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .button a {
        width: fit-content;
        display: flex;
        height: 36px;
        padding: 0px 20px;
        align-items: center;
        border-radius: 6px;
        background: linear-gradient(90deg, var(--button-cta-color) 0%, var(--button-cta-secondary-color) 100%);
        color: var(--white-color);
        font-family: var(--font-family-heading);
        font-size: 14px;
        font-weight: 700;
        line-height: normal;
        z-index: 2;

        &:hover {
            box-shadow: 0px 0px 12px 0px var(--button-hover);
        }
    }
}

/*  */

.my-account-social-casino-template .main {
    .container {
        max-width: 500px;

        >.account {
            padding-bottom: 40px;
            margin-bottom: 40px;
            border-bottom: 1px solid var(--background-color--md--2);

            @media (max-width: 1199px) {
                padding-bottom: 32px;
                margin-bottom: 32px;
            }
        }
    }

    h1 {
        padding-bottom: 40px;
        font-family: var(--font-family-heading);
        font-size: 28px;
        font-weight: 700;
        line-height: normal;

        @media (max-width: 1199px) {
            font-size: 24px;
            padding-bottom: 32px;
        }
    }
}

.form.account {
    .middle {
        display: flex;
        flex-direction: column;
        gap: 24px 0;
        padding-bottom: 32px;

        >.avatar {
            padding: 24px 20px;
            border-radius: 6px;
            border: 1px solid var(--background-color--md--2);
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;

            @media (max-width: 1199px) {
                display: flex;
                flex-direction: column;
                gap: 12px 0;
                align-items: stretch;
            }

            .hide {
                display: none !important;
            }

            .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: 40px;
                background: var(--background-color--md--2);
                font-family: var(--font-family-heading);
                font-size: 14px;
                font-weight: 700;
                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;
                max-width: 140px;
            }

            input {
                display: none;
            }

            .button.upload-avatar .title {
                display: flex;
                height: 36px;
                padding: 0px 16px;
                justify-content: center;
                align-items: center;
                border-radius: 6px;
                background: linear-gradient(90deg, var(--button-submit-color) 0%, var(--button-submit-secondary-color) 100%);
                color: var(--white-color);
                font-family: var(--font-family-heading);
                font-size: 12px;
                font-weight: 700;
                line-height: normal;
                cursor: pointer;
                transition: .3s;

                &:hover {
                    box-shadow: 0px 0px 12px 0px var(--button-hover);
                }
            }

            .button.delete-avatar .title {
                display: flex;
                height: 36px;
                padding: 0px 16px;
                justify-content: center;
                align-items: center;
                border-radius: 6px;
                border: 2px solid var(--delete-color);
                font-family: var(--font-family-heading);
                font-size: 12px;
                font-weight: 700;
                line-height: normal;
                transition: .3s;
                cursor: pointer;

                &:hover {
                    color: var(--delete-color);
                }
            }

            .left {
                display: grid;
                grid-template-columns: auto 1fr;
                align-items: center;
                gap: 0 10px;
            }

            .right {
                display: flex;
                gap: 0 10px;

                >div {
                    flex: 1;
                }
            }
        }
    }

    .introduction {
        font-family: var(--font-family-heading);
        font-size: 20px;
        font-weight: 700;
        line-height: normal;
        margin-bottom: -4px;
    }
}

.form.change-password {
    .introduction {
        font-family: var(--font-family-heading);
        font-size: 20px;
        font-weight: 700;
        line-height: normal;
        margin-bottom: -4px;
    }

    form {
        display: flex;
        flex-direction: column;
        gap: 24px 0;
    }

    .bottom {
        margin-top: 8px;
    }
}

/*  */

.contact-social-casino-template .main {
    .container {
        max-width: 500px;
    }

    .introduction {
        padding-bottom: 40px;
    }

    h1 {
        padding-bottom: 20px;
        font-family: var(--font-family-heading);
        font-size: 28px;
        font-weight: 700;
        line-height: normal;
        color: var(--white-color);

        @media (max-width: 1199px) {
            font-size: 24px;
        }
    }
}

.form.contact-social-casino {
    .field {
        margin-bottom: 24px;
    }

    .bottom {
        margin-top: 32px;
    }
}

.template-404 {
    main {
        min-height: 350px;
    }

    .advertiser-geographical-area~.advertiser-geographical-area {
        margin-top: 12px;
    }

    .hero {
        margin-bottom: 48px;
    }
}

.default-social-casino-template {
    main {
        min-height: 350px;
    }
}