@font-face {
    font-family: 'D-DIN Condensed';
    src: url('./fonts/D-DINCondensed-Bold.woff2') format('woff2'),
        url('./fonts/D-DINCondensed-Bold.woff') format('woff'),
        url('./fonts/D-DINCondensed-Bold.ttf') format('truetype'),
        url('./fonts/D-DINCondensed-Bold.svg#D-DINCondensed-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN Exp';
    src: url('./fonts/D-DINExp-Italic.woff2') format('woff2'),
        url('./fonts/D-DINExp-Italic.woff') format('woff'),
        url('./fonts/D-DINExp-Italic.ttf') format('truetype'),
        url('./fonts/D-DINExp-Italic.svg#D-DINExp-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN';
    src: url('./fonts/D-DIN-Bold.woff2') format('woff2'),
        url('./fonts/D-DIN-Bold.woff') format('woff'),
        url('./fonts/D-DIN-Bold.ttf') format('truetype'),
        url('./fonts/D-DIN-Bold.svg#D-DIN-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN Exp';
    src: url('./fonts/D-DINExp-Bold.woff2') format('woff2'),
        url('./fonts/D-DINExp-Bold.woff') format('woff'),
        url('./fonts/D-DINExp-Bold.ttf') format('truetype'),
        url('./fonts/D-DINExp-Bold.svg#D-DINExp-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN Condensed';
    src: url('./fonts/D-DINCondensed.woff2') format('woff2'),
        url('./fonts/D-DINCondensed.woff') format('woff'),
        url('./fonts/D-DINCondensed.ttf') format('truetype'),
        url('./fonts/D-DINCondensed.svg#D-DINCondensed') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN';
    src: url('./fonts/D-DIN-Italic.woff2') format('woff2'),
        url('./fonts/D-DIN-Italic.woff') format('woff'),
        url('./fonts/D-DIN-Italic.ttf') format('truetype'),
        url('./fonts/D-DIN-Italic.svg#D-DIN-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN Exp';
    src: url('./fonts/D-DINExp.woff2') format('woff2'),
        url('./fonts/D-DINExp.woff') format('woff'),
        url('./fonts/D-DINExp.ttf') format('truetype'),
        url('./fonts/D-DINExp.svg#D-DINExp') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN';
    src: url('./fonts/D-DIN.woff2') format('woff2'),
        url('./fonts/D-DIN.woff') format('woff'),
        url('./fonts/D-DIN.ttf') format('truetype'),
        url('./fonts/D-DIN.svg#D-DIN') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-family: D-DIN;
    --theme-primary-color: #336154;
    --theme-primary-color-code: 45, 3, 73;
    --theme-secondary-color: rgb(51, 97, 87);
    --theme-bg: #336154;
    --theme-content: rgb(5, 129, 94);
    --theme-content-code: 5, 129, 94;
    --theme-yellow: rgb(242, 234, 42);
    --theme-orange: rgb(242, 234, 42);
    --theme-orange-light: rgb(255, 151, 0);
    --theme-opacity-3: 0.3;
    --theme-opacity-4: 0.4;
    --theme-white: rgb(255, 255, 255);
    --theme-green: #009706;
    --theme-main-content: rgb(31, 106, 85);
    --theme-primary-light: rgba(140, 72, 165, 0.2);
    --theme-play-content: rgba(45, 3, 73, 0.6);
    --theme-play-content: rgba(45, 3, 73, 0.6);

    --theme-alert-success-background: #F4FDF0;
    --theme-alert-success-color: #009706;
    --theme-alert-success-border: #009706;

    --theme-alert-error-background: #fff1e6;
    --theme-alert-error-color: rgb(255, 114, 0);
    --theme-alert-error-border: rgb(255, 114, 0);

    --theme-error-color: rgb(255 113 68);
}

body {
    background: var(--theme-bg);
    font-family: 'D-DIN';
    max-width: 100vw !important;
}

.status_div {
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 5px;
}

.pending_color {
    background-color: var(--theme-secondary-color);
    color: var(--theme-white);
}

.approved_color {
    background-color: var(--theme-green);
    color: var(--theme-white);
}

.rejected_color {
    background-color: var(--theme-orange);
    color: var(--theme-white);

}

.bonus_header {
    background: var(--theme-yellow);
    color: var(--theme-primary-color);
    font-weight: 600;
}

.bg-none {
    background: none !important;
}

.bg-theme-yellow {
    background: var(--theme-yellow) !important;
}

.color-primary {
    color: var(--theme-primary-color) !important;
}

.bt-inner-page {
    font-family: 'D-DIN' !important;
}

.bt39 {
    background: var(--theme-green);
}

body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

body::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
}


main {
    max-width: 100vw !important;
    display: block;
    min-height: calc(100vh - 136px);
}

.home-content {
    max-width: 100vw !important;
    display: block;
}

.home-main-content section.games_section {
    display: grid;
}



.help-container {
    position: fixed;
    right: 0px;
    top: 25%;
    z-index: 4;
}

.landing-country-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    background: var(--theme-yellow);
    color: var(--theme-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.country-title {
    color: var(--theme-black);
}


.fast-access-container:hover .btn-custom-access {
    background: var(--theme-white);
}

.bg-yellow {
    background: var(--theme-yellow);
}

.bg-custom-yellow {
    background: var(--theme-yellow);
}

.bg-secondary-color {
    background: var(--theme-secondary-color);
}

.bg-theme-content {
    background: var(--theme-content) !important;
}



.header_user_menu {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-right: 30px;
}

.user_menu_avatar {
    height: 40px;
    width: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -1px;
}

.user_dropdown_menu {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid var(--theme-yellow);
    border-radius: 20px;
    padding: 0;
    color: var(--theme-white);
    background: var(--theme-secondary-color);
    padding-right: 10px;
}

.user_wallet {
    font-weight: 600;
}

.single-landing {
    padding: 15px;
    display: block !important;

}

#langInput {
    background-image: url('../css/searchicon.png');
    background-position: 10px 12px;
    background-repeat: no-repeat;
    width: 100%;
    font-size: 16px;
    padding: 12px 20px 12px 40px;
    border: 1px solid var(--theme-secondary-color);
    background: var(--theme-secondary-color);
    margin-bottom: 12px;
    color: var(--theme-white);
    position: sticky;
    top: 0;
}

#LangList {
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: auto;
}

#LangList li a {
    border-bottom: 2px solid var(--theme-secondary-color);
    background-color: var(--theme-primary-color);
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    color: var(--theme-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul#LangList img {
    height: 32px;
    padding-right: 10px;
    border-right: 2px solid var(--theme-secondary-color);
    padding-left: 10px;
}

ul#LangList span {
    padding-left: 15px;
}


.scroll_button {
    border: 0px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 0 0 15px 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    font-family: Rubik;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
    color: rgb(255, 255, 255);
    min-height: 40px;
    padding: 8px 24px;
    width: 100%;
    background-image: linear-gradient(var(--theme-primary-color), var(--theme-secondary-color));
}

.scroll_button .span {
    border: 0px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    font-family: Rubik;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
    color: var(--theme-white);
    min-height: 40px;
    padding: 8px 24px;
    width: 100%;
    background-color: var(--theme-primary-color);
}


#LangList::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

#LangList::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

#LangList::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--theme-secondary-color);
    -webkit-box-shadow: inset 0 0 6px var(--theme-primary-color);
}

#LangList::-webkit-scrollbar-thumb:window-inactive {
    background: var(--theme-yellow);
}

.mouse {
    width: 25px;
    height: 45px;
    border: 1.5px solid var(--theme-white);
    border-radius: 60px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--theme-white);
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 30px;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 30px;
    }
}

.no-result {
    display: none;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--theme-secondary-color);
    color: var(--theme-yellow);
}

#LangList li:last-child a {
    border: none;
}



header {
    padding: 0 !important;
    position: sticky;
    z-index: 99;
    top: 0;
}

.header-content {
    background-color: var(--theme-secondary-color);
    height: 136px;
    display: flex;
    position: relative;

}

.header-content::after {
    content: " ";
    position: absolute;
    height: 68px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: var(--theme-content);

}

.logo-content {
    z-index: 3;
    max-width: 350px;
    min-width: 325px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 5px;
}

.logo-content img {
    z-index: 3;
    max-width: 350px;
    max-height: 100% !important;
    /* object-fit: cover; */
}


.nav-content-up,
.nav-content-bottom {
    min-height: 68px;
    width: 100%;
    z-index: 4;
}

.nav-content {
    display: flex;
    flex-direction: column;
    width: calc(100vw - 450px)
}

.nav-content-bottom {
    max-height: 68px;
    display: flex;
}

ul.nav-content-nav {
    display: flex;
    text-decoration: none;
    list-style: none;
    justify-content: center;
    width: 100%;
    gap: 15px;
    align-items: center;
    height: 68px;
    position: sticky;
    top: 0;
}

ul.nav-content-nav li a {
    font-size: 12.5px;
    color: var(--theme-white);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    display: flex;
    gap: 3px;
    align-items: center;
}

.nav-content-search-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-content-search-content input {
    background-color: rgba(255, 255, 255, 0.149);
    width: 245px;
    height: 37px;
    border: 0;
    border-radius: 18px;
    padding: 10px 20px;
    border: 1px solid rgb(255, 255, 255, 0);
    color: var(--theme-yellow);
}

.nav-content-search-content input:focus {
    border: 1px solid var(--theme-yellow);
}

.nav-content-search-content input::placeholder {
    color: var(--theme-yellow);
    opacity: var(--theme-opacity-4);
    font-weight: 600;
}

.input-content {
    position: relative;
}

.nav-content-search-content .nav-content-search-button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    width: 30px;
    height: 30px;
    border: 0;
    margin: 0;
    padding: 0;
}

.auth_buttons_content {
    display: flex;
    gap: 10px;
}

.auth_buttons_content .btn.btn-notification {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.login-button {
    border-width: 2px;
    border-color: var(--theme-yellow);
    border-style: solid;
    border-radius: 11px;
    height: 41px;
    padding: 10px;
    font-size: 14px;
    color: var(--theme-white);
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.login-button:hover {
    color: rgb(255, 255, 255, 0.8);
}

.register-button:hover {
    color: var(--theme-content)
}

.nav-content-up {
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 0px;
}


.register-button {
    border-radius: 11px;
    background-image: linear-gradient(90deg, var(--theme-yellow) 30%, var(--theme-orange) 100%);
    padding: 10px;
    font-size: 14px;
    color: var(--theme-white);
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 0;
    max-height: 41px;
}



.register-button svg {
    width: 20px;
    height: 20px;
    fill: var(--theme-white);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 5px;
}

.btn-notification {
    background: var(--theme-primary-color);
    color: var(--theme-white);
}


.deposit-button {
    border-radius: 11px;
    border-color: var(--theme-green);
    background: var(--theme-green);
    padding: 10px;
    font-size: 14px;
    color: var(--theme-white);
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 0;
    max-height: 41px;
}

.bonus-button {
    border-radius: 11px;
    border-color: var(--theme-yellow);
    background: var(--theme-yellow);
    padding: 10px;
    font-size: 14px;
    color: var(--theme-secondary-color);
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 0;
    max-height: 41px;
}

.home-slider-content {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

#home-slider {
    border-radius: 5px;
}

.keen-slider__slide.number-slide {
    width: 32px !important;
    height: 8px !important;
    border-radius: 8px !important;
    background-color: var(--theme-white);
    opacity: 0.2;
    min-width: 32px !important;
    min-height: 8px;
    transition: width 0.3s ease-in-out;
}

.keen-slider.thumbnail-home-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
}

.slider-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.keen-slider__slide.number-slide.active {
    background-color: var(--theme-yellow);
    opacity: 1;
    width: 50px !important;
}

.theme-home-sidebar {
    background-color: var(--theme-content);
    width: 350px;

    position: relative;
    min-width: 350px;
    position: fixed;
    left: 0;
    top: 136px;
    height: 100vh;
}

.help-container {
    position: fixed;
    right: 0px;
    top: 25%;
    z-index: 4;
}

.btn-custom-access {
    z-index: 4;
    box-sizing: border-box;
    position: fixed;
    width: 150px;
    height: 36px;
    right: 0px;
    top: 95%;
    color: white;
    background: #1A283D;
    border: 2px solid #F1BB18;
    border-radius: 4px;
}

.sticky_sidebar {
    max-height: calc(100vh - 140px);
    height: calc(100vh - 140px);
    position: relative;
    transition: height 0.3s ease-in-out;

}




.theme-home-sidebar ul#SidebarMenuDiv {
    width: 100%;
    list-style: none;
    padding: 0;
    margin-top: 0;
    overflow: auto;
    max-height: calc(100vh - 260px);

}

.theme-home-sidebar ul#SidebarMenuDiv.notlogin {
    max-height: calc(100vh - 210px);
}



.sticky .theme-home-sidebar ul {
    max-height: calc(100vh - 100px);
}


.theme-home-sidebar ul::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.theme-home-sidebar ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.theme-home-sidebar ul::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
}

.theme-home-sidebar ul::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0);
}




.theme-home-sidebar:hover ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.theme-home-sidebar:hover ul::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.theme-home-sidebar:hover ul::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
}





.theme-home-sidebar ul li {
    width: 100%;
    background: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--theme-yellow);
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    padding: 5px 20px;
    padding-right: 0;
}


.theme-home-sidebar ul li a {
    display: flex;
    gap: 15px;
    width: 100%;
    padding: 5px 20px;
    text-decoration: none;
    color: var(--theme-yellow);
    background: var(--theme-secondary-color);
    border-radius: 25px;
    align-items: center;
    justify-content: space-between;
}

.theme-home-sidebar ul li a .title_content {
    display: flex;
    gap: 10px;
    color: var(--theme-white);
}

.theme-home-sidebar ul li a .title_content img {
    object-fit: contain;

}

.theme-home-sidebar ul li:nth-child(even) {
    background-image: none;
}

.sidebar-title {
    width: 100%;
    background-image: linear-gradient(90deg, var(--theme-secondary-color) 20%, var(--theme-content) 100%);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: var(--theme-white);
    gap: 15px;
    color: var(--theme-yellow);
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    display: flex;
    justify-content: space-between;
}


.theme-home-sidebar-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 15px;
    display: grid;
    gap: 10px;
}

.theme-home-sidebar-footer-pomotions {
    width: 100%;
    border: 0;
    border-radius: 25px;
    min-height: 41px;
    padding: 10px 20px;
    background-color: var(--theme-yellow);
    color: var(--theme-secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: none;
}

.theme-home-sidebar-footer-pomotions:hover {
    background-color: var(--theme-secondary-color);
    color: var(--theme-yellow);
}

.footer_bottom_buttons a {
    width: 100%;
    border: 0;
    border-radius: 25px;
    min-height: 41px;
    padding: 10px 20px;
    background-color: var(--theme-yellow);
    color: var(--theme-secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.footer_bottom_buttons a.theme-home-sidebar-bottom-button {
    width: 100%;
    border: 0;
    border-radius: 25px;
    min-height: 41px;
    padding: 10px 20px;
    background: var(--theme-content);
    color: var(--theme-yellow);
    border: 1px solid var(--theme-yellow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    justify-content: center;

}

.footer_bottom_buttons a.theme-home-sidebar-bottom-button:hover {
    border-color: var(--theme-white);
    color: var(--theme-white);
}


.theme-home-sidebar-footer-pomotions svg {
    fill: var(--theme-secondary-color);
    margin-left: 20px;

}

.theme-home-sidebar-footer-pomotions .line {
    min-width: 1px;
    height: 100%;
    background: var(--theme-secondary-color);
    height: 30px;
}

.theme-home-sidebar-footer-pomotions i.right-icon {
    min-width: 50px;
    display: flex;
    justify-content: end;
}

.theme-home-sidebar-footer-pomotions i.left-icon {
    font-size: 24px;
    margin-left: 24px;
}


.home-content {
    display: flex;
    margin-left: 350px;
}

.widgets {
    max-width: 350px;
    min-width: 350px;
    padding: 15px;
    background-color: var(--theme-secondary-color);
    border-radius: 10px;
    margin-top: 10px;
}

.widgets-title {
    padding: 10px 20px;
    font-size: 18px;
    background: var(--theme-primary-color);
    color: var(--theme-white);
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.widget-games {
    display: grid;
    gap: 5px;
}

.widget-game {
    display: flex;
    gap: 10px;
    background: var(--theme-primary-color);
    padding: 10px;
    border-radius: 5px;
}

.widget-game-image {
    width: 40%;
}

.widget-game-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 3px;
    height: 100%;
}

p.widget-game-name {
    color: var(--theme-white);
    font-size: 16px !important;
}

a.widget-game-url {

    background: var(--theme-secondary-color);
    color: var(--theme-yellow);
    padding: 3px 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    text-decoration: none;

}

.widget-game-detail {
    display: flex;
    flex-flow: column;
    width: 100%;
    justify-content: space-evenly;
}

a.widget-game-url:hover {
    background: var(--theme-yellow);
    color: var(--theme-primary-color);
}

.home-main-content {
    margin: 0 50px;
    display: block;
    justify-content: center;
    padding: 25px;
    background: var(--theme-main-content);
    width: 100%;
    max-width: calc(100vw - 455px);
}


.home-main-content::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}

.home-main-content::-webkit-scrollbar-track {
    opacity: 0 !important;
}

.home-main-content::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    opacity: 0 !important;
}

.home-main-content::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 1);
    opacity: 0 !important;
}




.home-top-games {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.game-content {
    width: 100%;
    background-color: var(--theme-main-content);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 10 / 7;
    position: relative;

}

.game-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
}

.game-title {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    color: var(--theme-white);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    letter-spacing: 2px;

}



.slide-control-div {
    display: flex;
    gap: 10px;
}

.nex-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-yellow);
    color: var(--theme-white);
    border-radius: 3px;
}

.nex-prev a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.nex-prev a:hover {

    background: var(--theme-secondary-color);
}

.nex-prev a:hover i {

    color: var(--theme-yellow);
}


.nex-prev a i {

    color: var(--theme-primary-color);
}

.slide-all-button {
    background: var(--theme-yellow);
    color: var(--theme-white);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary-color);
    padding: 0 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    min-height: 30px;
}

.slide-all-button:hover {

    background: var(--theme-secondary-color);
    color: var(--theme-yellow);

}

.game-content img {
    width: 100%;
    object-fit: cover;
    display: flex;
    height: 100%;

}

.game-content .game-overlay {
    opacity: 0;

}

.game-content:hover .game-overlay,
.game-content:active .game-overlay,
.game-content:focus .game-overlay {
    opacity: 1;
    background-color: var(--theme-play-content);
    margin-top: 0;

    backdrop-filter: blur(1px) !important;
}

.game-overlay-play-content {
    border-style: solid !important;
    border-width: 2px !important;
    border-color: var(--theme-yellow) !important;
    border-radius: 11px !important;
    background-color: rgba(255, 151, 0, 0.1) !important;
    box-shadow: 1px 0px 30px 30px rgb(253 190 35 / 61%);
    color: var(--theme-white) !important;
}

a.game-overlay-demo-content {
    background: none;
    color: var(--theme-white) !important;
}

.g-names {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 10px;
}

.g-name {
    font-size: 17px;

    color: var(--theme-yellow);
    line-height: 1.2;
}

.g-provider {
    font-size: 17px;
    color: var(--theme-white);
    opacity: var(--theme-opacity-4);

}

section.games_section {

    width: 100%;
    position: relative;
    overflow: hidden;
}

.game-header-content {
    margin-top: 100px;
    margin-bottom: 20px;

}

.game-header-content:first-child {
    margin-top: 0;

}

.pay_block {
    width: 100%;
    display: grid;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.footer_bottom_buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100% !important;
}

.footer_bottom_buttons a {
    width: 100%;
    border: 0;
    border-radius: 25px;
    min-height: 41px;
    padding: 10px 20px;
    background-color: var(--theme-yellow);
    color: var(--theme-secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.footer_slogan {

    color: var(--theme-white);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.7;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.footer_slogan a {
    text-decoration: none;
    color: var(--theme-white);
    font-size: 35px;
}

.footer_slogan a h3 {

    font-size: 35px !important;
    background-color: var(--theme-content);
    border-radius: 20px;
    padding: 15px;
    letter-spacing: 2px;
}

.footer_slogan a span {
    color: var(--theme-yellow) !important;
    font-weight: 600;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--theme-white);
    text-transform: uppercase;
    line-height: 1.2;

}

.footer_content_m {
    display: flex;
    gap: 20px;
    border-top: 1px solid var(--theme-primary-light);
    min-width: calc(100vw - 450px);
    padding-top: 30px;
    justify-content: center;
}

.footer__item__title__text {

    font-size: 15px;
    color: var(--theme-white);
    font-weight: 600;
}


.footer__item__list__item>a {
    font-size: 14px !important;
    color: var(--theme-white) !important;
    line-height: 1.2 !important;


}

.footer__item__title {
    margin-bottom: 15px;
}

.game-icon svg path {
    fill: var(--theme-yellow) !important;
}

.game-icon {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    padding: 5px;
}

.game-icon svg {
    width: 100%;
    height: 100%;
}

.game-header-left {
    background-color: var(--theme-primary-light);
    display: flex;
    align-items: center;
    gap: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    padding: 0 20px;

}


ul.dropdown-menu.show {
    background: var(--theme-secondary-color);
    border: none;
}

ul.dropdown-menu.show .dropdown-item {
    color: var(--theme-yellow);
    display: flex;
    align-items: center;
    gap: 15px;
}

ul.dropdown-menu.show .dropdown-item:hover {
    background: var(--theme-yellow);
    color: var(--theme-content);
}

a.deposit-button:hover {
    color: rgba(255, 255, 255, 0.7);
    border: 0 !important;
}

a.bonus-button:hover {
    color: var(--theme-primary-light);
    border: 0 !important;
}


.menu-icon-svg {
    display: none;
}

.menuIcon {
    min-height: 25px;
    min-width: 25px;
}

.menuIcon svg {
    height: 25px;
    width: 25px;
}

li.active-category .menuIcon svg *,
.nav-content-nav li:hover .menuIcon svg * {
    fill: var(--theme-yellow) !important;
}

.nav-content-nav li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;

}

.nav-content-nav li:hover>a>span {
    color: var(--theme-yellow);
}

.nav-content-nav li:hover:after {
    content: " ";
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--theme-yellow);
    bottom: 0;
    left: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    left: calc(50% + 10px);
    transform: translate(-50%, -50%);
}

.promotions-content {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    border-radius: 7px;
    margin-top: 15px;
}

.promotions-content-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: var(--theme-yellow);
    padding: 15px 30px;
    background: var(--theme-secondary-color);
    border-radius: 30px;
    width: fit-content;

}

.pro-icon {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 5px;
}

a.promo-cont {
    padding: 10px;
    border-radius: 20px;
}

div#categories-container {
    display: flex;
    align-items: center;
}

.promotions-content-head svg * {
    fill: var(--theme-white);
}

.promotions-content-head h4 {
    margin: 0;
}

.promotion-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.promotion-content a {
    background: var(--theme-secondary-color);
    width: 100%;
    transition: all 350ms;
    display: block;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.promo-detail-button {
    margin: 10px;
    border: 2px solid var(--theme-orange);
    padding: 5px 25px;
    border-radius: 10px;
    display: inline-flex;
    color: var(--theme-white);
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    width: fit-content;
}

.promo-detail-button:hover {

    color: var(--theme-orange);

}

.promo-image {

    border-radius: 10px;
    overflow: hidden;

}


.promotion-content a.hide-promo {
    display: none;
}



.promotion-content img {
    height: 100%;
    width: 100%;
}

div#promotionCanvas {
    width: 33vw;
    background: var(--theme-primary-color);
    border-left: 2px solid var(--theme-yellow);
    border-radius: 10px 0 10px;
    overflow: hidden;
}

.promo-content {
    margin: 10px !important;
    font-size: 18px !important;
    display: grid;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--theme-white);
    letter-spacing: 2px;
}

.promo-content span {

    color: var(--theme-yellow);
}


div#promotionCanvas .offcanvas-header {
    background-color: var(--theme-yellow);
    border: 0;
}

div#promotionCanvas .offcanvas-header h5 {
    color: var(--theme-primary-color);
    font-weight: 600;
}

.modal-backdrop {
    background: var(--theme-primary-color);

}

.modal-backdrop.show {
    opacity: .8;
    backdrop-filter: blur(10px);
}

.promotion-canvas-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.promotion-canvas-image>img {
    width: 100%;
    height: auto;
}

.promototion-canvas-content {
    margin-top: 20px;
    padding: 10px;
    color: var(--theme-white);
    background: var(--theme-content);
    border-radius: 10px;
    text-align: center;
}

.promototion-canvas-content * {
    margin: 0;
    padding: 0;


}

.menu_scroll_buttons {
    display: none;
    background: var(--theme-yellow);
    border: 0;
    border-radius: 5px;
}

.menu_scroll_buttons:disabled {
    background: var(--theme-primary-light);
}

.sidebar-title-text {
    display: flex;
    gap: 10px;
    align-items: center;
}

.profile_menu_info {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}


.profile-card {
    background: var(--theme-secondary-color);
    display: flex;
    align-items: center;
    padding: 15px 10px;
    gap: 20px;
    border-radius: 0;
    box-shadow: 0 1px 20px 10px rgb(45 3 73 / 42%);
}

.profile_menu_info .name {
    font-weight: 600;
    margin: 0;
    line-height: 18px;
}

.profile_menu_info .ac_number {
    font-size: 12px;
    margin: 0;
    line-height: 14px;
}


.profile-card * {
    color: var(--theme-white) !important;
}

.profile_menu_icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-yellow);
    color: var(--theme-primary-color) !important;
    max-height: 40px !important;
    min-width: 40px;
}

.profile_menu_icon * {
    color: var(--theme-primary-color) !important;
}

.account-page {
    display: flex;
    gap: 20px;
}

.account-page-sidebar {

    width: 350px;
    position: relative;
    min-width: 350px;
}


.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

.image-content {
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--theme-primary-color);
    border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: var(--theme-content);
}

.overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #FFF;
}

.card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #FFF;
    padding: 3px;
}

.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--theme-content);
}

.name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.description {
    font-size: 14px;
    color: #707070;
    text-align: center;
}

/* div#betby {
    height: calc(100vh - 136px);
} */

.body-100 {
    max-height: 100vh !important;
}


/* div#betby .bt47,
div#betby .bt45 {
    top: 0 !important;
}
 */

.footer_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;

}

.footer_menu.side-footer {
    padding-left: 400px;
    padding-right: 50px;
}


button.category-button {
    background: none;
    border: 0;
    color: var(--theme-white);
    text-transform: capitalize;
}

button.category-button.active-category-button {
    color: var(--theme-yellow);
    font-weight: 600;
    position: relative;
}


button.category-button.active-category-button svg * {
    fill: var(--theme-yellow);
}

.pro-text {
    position: relative;
    height: 100%;
}

button.category-button.active-category-button .pro-icon .pro-text:after {
    content: " ";
    position: absolute;
    width: 80%;
    height: 2px;
    background: var(--theme-yellow);
    bottom: -8px;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, 0);
}


.textbox-wrapper.of-auto {
    overflow: unset;
}

#accordionGames {
    display: grid;
    gap: 15px;
    padding: 10px;
}

#accordionGames .accordion-item {
    background: none;
    padding: 0;
    margin: 0;
    border: 0;
}

#accordionGames button.accordion-button {
    background: var(--theme-secondary-color);
    border: 0;
    box-shadow: none !important;
    padding: 10px;
    display: flex;
    border: 2px solid var(--theme-yellow) !important;
    margin: 0;
    line-height: normal;
    border-radius: 30px;
    color: var(--theme-yellow) !important;
    font-weight: 600;
    gap: 10px;
    text-transform: uppercase;
}

#accordionGames button.accordion-button img {
    width: 24px;
    height: 24px;
    object-fit: contain;

}

.acc-title {
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    line-height: 1.2;
    text-align: left;
    letter-spacing: 2px;
    font-size: 16px;
}

#accordionGames .accordion-button::after {

    background: none !important;
}


#accordionGames .accordion-body {
    padding: 0;
    border: 0;
}

#accordionGames .accordion-body li {

    border: 0;
}

#accordionGames .list-group {
    padding-top: 5px !important;
}


.theme-home-sidebar-footer-lang {
    color: var(--theme-white);
    border-radius: 5px;
    overflow: hidden;
    font-size: 13px;
    padding: 0 10px;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--theme-content);
}

header .lang_image {
    background: none !important;
    padding: 5px;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 5px;

}

/* 15 inç ve üzeri laptoplar için */
@media (min-width: 1441px) and (max-width: 1600px) {
    ul.nav-content-nav li a {
        font-size: 14px !important;
    }

    .footer__item__title__text {
        font-size: 16px !important;
    }
}

/* 17 inç ve daha büyük laptoplar veya desktoplar için */
@media (min-width: 1601px) {
    ul.nav-content-nav li a {
        font-size: 16px !important;
    }

    .footer__item__title__text {
        font-size: 17px !important;
    }

    .promotions-content {
        max-width: 90vw;
    }
}


.filterSidebar {
    max-height: calc(100vh - 180px) !important;
    padding: 10px !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


#LangSelectedMenuCanvas {
    min-width: 350px;
    z-index: 10001 !important;
}

#LangSelectedMenuCanvas .offcanvas-headers {
    display: flex;
    justify-content: end;
    padding: 0 20px;
}

#LangSelectedMenuCanvas #langInput {
    max-height: 50px;
    border-radius: 10px;
}

#LangSelectedMenuCanvas .navbar_close {
    border: 0 !important;
    background: none;
    color: white;
    font-size: 30px;
}


.profile_menu_sidebar li a {
    background: none !important;
    justify-content: space-between !important;
    text-align: left;
    border: 0;
    padding: 0;
}

.profile_menu_sidebar li {
    padding: 0 !important;

    background-image: linear-gradient(90deg, var(--theme-secondary-color) 30%, var(--theme-content) 100%) !important;
}


.profile_menu_sidebar li:nth-child(even) {
    background-image: none !important;
}

.profile_menu_sidebar li a {

    padding: 10px 20px !important;
    font-weight: 600;
    color: var(--theme-white) !important;
}

.profile_menu_sidebar li.active {
    background: var(--theme-yellow) !important;
}

.profile_menu_sidebar li.active a {
    color: var(--theme-primary-color) !important;
}

.profile_menu_sidebar li.active a .user_icon_menu i {
    border-right: 1px solid rgba(var(--theme-primary-color-code), var(--theme-opacity-4));

}


.profile_menu_sidebar li a:focus,
.profile_menu_sidebar li a:hover {
    box-shadow: none;
    border: 0;
}

.profile_panel {
    min-height: calc(100vh - 190px);
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    background: none !important;
    margin-top: 30px;
}

.profile_panel_title {
    padding: 10px 30px;
    background: var(--theme-primary-color);
    color: var(--theme-white);
    font-weight: 600;
}

.profile_panel_body {
    padding: 10px;
}

.profile_panel .accordion-button {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--theme-white);
    background: var(--theme-content);
    border-radius: 0;
    display: flex;
    gap: 20px;
    font-size: 20px;
}

.profile_panel .accordion-item {
    border: 0 !important;
}


.profile_panel .accordion-item .accordion-button::after {
    display: none !important;
}

.profile_panel button.accordion-button:focus {
    box-shadow: none;
    border: 0 !important;
}

.profile_panel .accordion-item .accordion-collapse {
    background: var(--theme-primary-light);
}

.profile_panel .account-info-text td:last-child {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: var(--theme-primary-color);
}

.profile_panel .account-info-text td:first-child {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--theme-primary-color);
    position: relative;
    width: 200px;
}

.profile_panel .account-info-text td:first-child:after {
    content: ":";
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--theme-primary-color);
    position: absolute;
    right: 0;
}

a.btn.btn-custome-payment-add {
    background: var(--theme-content);
    color: var(--theme-yellow);
}

.user_icon_menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user_icon_menu i {
    border-right: 1px solid rgba(255, 255, 255, var(--theme-opacity-4));
    padding-right: 10px;
}

.change-password-input {
    background: #F2F2F2;
    border-radius: 8px;
    padding: 16px;
    border: none;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
}

.old-password {
    position: absolute;
    top: 35%;
    right: 2.5%;
    font-size: 18px;
}

.old-password:hover {
    cursor: pointer;
}

.btn-custom-change-password {
    align-items: center;
    padding: 16px 42px;
    gap: 10px;
    border-radius: 0px;
    font-size: 14px;
    color: #878787;
    background: #ECECEC;
}

#new-password {
    position: absolute;
    top: 35%;
    right: 2.5%;
    font-size: 18px;
}

#new-password:hover {
    cursor: pointer;
}

.pass-wrapper {
    position: relative;
    display: flex;
    margin-bottom: 14px;
}

button.btn.btn-success {
    width: fit-content !important;
    border: 0;
    border-radius: 25px;
    min-height: 41px;
    padding: 10px 20px;
    background-color: var(--theme-yellow);
    color: var(--theme-secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: none;
}

.form_footer {
    display: flex;
    justify-content: end;
}

.w-100 {
    width: 100% !important;
    min-width: 100%
}


.dropdown.user_menu li.active a {
    background: var(--theme-yellow);
    color: var(--theme-content);
}


a.game-overlay-favorite-content {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 20px;
    color: var(--theme-yellow);
    cursor: pointer;
    text-decoration: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.game-overlay-favorite-content .fa-solid {
    display: none;
}

a.game-overlay-favorite-content .fa-regular {
    display: block;
}

a.game-overlay-favorite-content.favorited {

    border-radius: 3px;
    background: var(--theme-yellow);
    color: var(--theme-content);
}

a.game-overlay-favorite-content.favorited .fa-solid {
    display: block;
}

a.game-overlay-favorite-content.favorited .fa-regular {
    display: none;
}

@keyframes leaves {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.pay-items {
    gap: 20px;
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;


}

.pay-item {
    width: 100%;
    background: var(--theme-white);
    border-radius: 5px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    transition: all 0.1s ease-in-out;

}

.pay-item:hover {
    transform: scale(1.02);
}

.pay-item-image img {
    max-height: 50px;
    max-width: 150px;
    object-fit: cover;
}

.pay-item-content-title {
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    font-size: 16px;
    color: var(--theme-primary-color);
}

.pay-items-content {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    justify-content: space-between;

}

.pay-item-content-minmax {
    display: flex;
    gap: 5px;
    font-size: 12px;
    align-items: center;
}

.pay-item-content-minmax-i {
    font-size: 7px;
    color: var(--theme-yellow);
}

.pay-item-content-amount {
    font-size: 12px;
    font-weight: 600;
}

.pay-item-border {
    border-left: 2px solid;
    padding-left: 30px;
    width: 150px;
}

.pay-item-image {
    min-width: 150px;
}

.pay-item-content {
    text-align: left;
    justify-content: flex-start;
    width: 100%;
}

.w-60 {
    width: 70%;
}

.profile_panel.deposit {
    max-width: 500px !important;
}

.deposit_image {
    max-height: 60px;
    border-radius: 10px;
}


.profile_panel.deposit .accordion-button:not(.collapsed)::after {
    display: none !important;
}

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

.bonuses_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.bonu_image>img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 3px;
}

.bonus_content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: white;
    padding: 3px;
    border-radius: 5px;
    box-shadow: 0px 0 6px 5px rgb(var(--theme-primary-color-code), var(--theme-opacity-3));
    justify-content: space-between;
}

.bonus_title {
    padding: 5px;
    font-weight: 600;
    color: var(--theme-primary-color);
}

.bonus_button button {
    width: 100% !important;
    border: 0;
    background: var(--theme-primary-color);
    color: var(--theme-white);
}

.user_icon_menu>img {
    width: 25px;
}

#SidebarMenuDiv li.active .user_icon_menu>img {
    filter: brightness(0.15);
}

ul.dropdown-menu.show li a img {
    width: 25px !important;
    filter: brightness(10000%);
}

ul.dropdown-menu.show li a i,
ul>form>button>i {
    min-width: 25px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--theme-white)
}



.scroll_button_menu {
    border: 0px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 0 0 15px 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: rgb(255, 255, 255);
    min-height: 40px;
    padding: 8px 24px;
    background-color: transparent;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(var(--theme-content-code), 0) 10%, rgb(var(--theme-content-code), 0.68) 30%, rgb(var(--theme-content-code)) 60%, rgb(var(--theme-content-code)) 100%);
    position: sticky;
    bottom: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
    height: 50px;
    transition: height 0.5s ease, opacity 0.5s ease;
    overflow: hidden;

}

button.scroll_button_menu {
    opacity: 0;
}

#SidebarMenuDiv:hover .scroll_button_menu {
    opacity: 1;
}

.scroll_button_hide {
    height: 0;
    opacity: 0 !important;
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 10px;
    display: block;
    text-align: center;
    font-size: 20px;
    z-index: 100;
    text-decoration: none;
    text-shadow: 0;
    width: 13px;
    height: 13px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    z-index: 9;
    left: 50%;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -moz-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
    -webkit-animation: fade_move_down 2s ease-in-out infinite;
    -moz-animation: fade_move_down 2s ease-in-out infinite;
    animation: fade_move_down 2s ease-in-out infinite;
}


@-webkit-keyframes fade_move_down {
    0% {
        -webkit-transform: translate(0, -10px) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 10px) rotate(45deg);
        opacity: 0;
    }
}

@-moz-keyframes fade_move_down {
    0% {
        -moz-transform: translate(0, -10px) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -moz-transform: translate(0, 10px) rotate(45deg);
        opacity: 0;
    }
}

@keyframes fade_move_down {
    0% {
        transform: translate(0, -10px) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 10px) rotate(45deg);
        opacity: 0;
    }
}

.birthdate_input {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
    padding: 0 20px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    opacity: 0;
}

.birthdate_input input {
    width: 100%;
    background: var(--theme-secondary-color);
    border: 0;
    color: var(--theme-white);
    text-align: center;
    margin-bottom: 5px;
}

.textbox-wrappers {
    display: block;
    position: relative;
    height: 60px;
    border-radius: 3px 3px 0 0;
    cursor: text;
    background-color: var(--theme-secondary-color);
    margin-bottom: 15px;
    overflow: hidden;
}


.textbox-wrappers label {
    display: block;
    position: absolute;
    top: 21px;
    left: 16px;
    line-height: 1em;
    font-size: 1em;
    color: var(--theme-white);
    font-weight: 500;
    z-index: 1;
    transition: .1s;
    opacity: 0.7;
}

.InputLine {
    min-width: 2px;
    min-height: 20px;
    background: white;
    transform: rotate(15deg);
}

input.date-part.input-error {
    border: 1px solid var(--theme-yellow);
}

.providers_search {
    width: 100%;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.providers_search input {
    width: 100%;
    border: 1px solid var(--theme-white);
    outline: none;
    border-radius: 32px;
    background-color: transparent;
    color: var(--theme-white);
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    font-family: inherit;
    transition: color 0.3s ease 0s, borderColor 0.3s ease 0s;
    height: 40px;
    padding: 12px 16px;
}

.providers_search input::placeholder {
    color: var(--theme-white);
    opacity: var(--theme-white);
    font-weight: 600;
}


ul.footer__social_item__list {
    display: flex;
    list-style: none;
    gap: 15px;
}

.footer_menu_social img {
    width: 45px;
    height: 45px;

}

ul.footer__social_item__list div {
    background: var(--theme-secondary-color);
    border-radius: 5px;
    transition: all .2s ease-in-out;
    /* border: 1px solid var(--theme-yellow); */

}

ul.footer__social_item__list li:hover {
    transform: scale(1.1);
}

.partner_block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.partner_block a {
    display: flex;
    justify-content: center;
}

.partner_block a:last-child img {
    max-height: 100px;
}

.helper_text {
    color: var(--theme-yellow);
    margin: 0;
    font-size: 11px;
    float: right;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 15px;
}

.footer-verify {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 400px;
    padding-right: 50px;
}

.footer-verify a {
    text-decoration: none;
}

ul#LangList.langlistModal {
    overflow-x: auto;
    max-height: calc(100vh - 136px);
}

ul#LangList.langlistModalList {
    overflow-x: auto;
    max-height: calc(100vh - 250px);
}

.form-select.form-select-md {
    background: var(--theme-secondary-color);
    color: rgba(255, 255, 255, 0.7);
    border: 0;
    margin: 0 !important;
    height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.form-select.form-select-md:focus {
    box-shadow: none !important;
}


.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10000;
    display: flex;
}


.custom-modal {
    background: #f9f9f9;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    text-align: center;
}

.custom-modal-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}


.custom-modal-body {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}


.custom-modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.custom-modal-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-modal-button-danger {
    background-color: #e74c3c;
    color: #fff;
}

.custom-modal-button-secondary {
    background-color: #3498db;
    color: #fff;
}

.custom-modal-button:hover {
    opacity: 0.9;
}

.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.custom-modal-close:hover {
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}