:root {
    --color-orange:   #E98F08;
    --color-white:    #ffffff;
    --color-red:      #EC2A59;
    --color-pink:     #F045FE;
    --color-blue6:    #060F30;
    --color-blue5:    #0A1940;
    --color-blue4:    #112046;
    --color-blue3:    #182852;
    --color-blue2:    #273865;  
    --color-blue:     #566FAE;    
}

html {
    min-height: 100%;
    height: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-image: url('/assets/images/main-bg-01.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: var(--color-blue6);
    color: var(--color-white);
    line-height: 100%;
    min-height: 100vh;
    font-size: 15px;
    font-family: 'Gotham Pro', Verdana, Tahoma, Arial;
    font-weight: 400;
    height: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 65px;
}

/* loader */
#loader,
#action-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 15, 48, 0.8); /* полупрозрачный белый фон */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none; /* по умолчанию скрыт */
}

#loader img,
#action-loader img {
    width: 100px;
    height: 100px;
    animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.15); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}


/* buttons */
.button {
    font-weight: 700;
    border-radius: 10px;
    font-size: 14px;
    line-height: 14px;
    padding: 12px 24px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    text-transform: capitalize;
    height: 42px;
}

.button-ico {
    padding: 10px;
}

.button-normal { 
    background-color: var(--color-blue5);
    border: 3px solid var(--color-blue4);
    box-shadow: 0 4px 0 1px var(--color-blue6);
}

.button-danger {
    background-image: linear-gradient(to left, #B20AEE, #D300D8);
    border: 3px solid #FB42FF;
    box-shadow: 0 4px 0 1px #7d0f83;
}

.button-small {
    font-size: 10px;
    line-height: 10px;
    padding: 8px 16px;
    height: 32px;
    border-width: 2px;
}

/* pulls */
.pull-left {
    float: left;
}

.pull-right {
    float: right;
}









/* =========================== MOBILE NAVBAR ====================================*/
#mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1090;
    width: 100%;
    height: 65px; 
    background-color: var(--color-blue5);
    border-bottom: 5px solid var(--color-blue4)
}

#mobile-navbar .logo {
    height: 55px;
    width: auto;
    margin: 5px 0 0 5px;
}

#mobile-navbar .button {
    margin-top: 10px; 
    margin-right: 10px;
}

#mobile-navbar .balance {
    box-shadow: none;
    margin-left: 10px;
    margin-right: 0;
}

#mobile-navbar .balance img {
    margin-right: 10px;
}

#mobile-navbar .have-bonuses img {
    width: 24px;
    height: 24px;
    animation: rotate-scale-shake 0.5s ease-in-out;
}

#desktop-navbar {
    display: none;
}

@media (min-width: 768px) {
    #mobile-navbar {
        display: none;
    }

    #desktop-navbar {
        display: block;
    }

    body {
        padding-top: 0;
    }
}

/* =========================== DESKTOP NAVBAR ====================================*/
#desktop-navbar {
    position: relative;
    width: 100%;
    height: 62px; 
}

#desktop-navbar .logo {
    display: block;
    width: 180px;
    float: left;
    margin-top: 5px;
    margin-left: -10px;
}

#desktop-navbar .logo img {
    width: 100%;
    height: auto;
}

#desktop-navbar .button {
    margin-top: 10px; 
    margin-left: 12px;
}

#desktop-navbar a.menu {
    margin-left: 0px;
}

#desktop-navbar a.menu img {
    transform: scaleX(-1);
}

#desktop-navbar a.search img {
    margin-top: 3px;
}

#desktop-navbar a.search img,
#desktop-navbar a.menu img {
    width: 20px;
    height: auto;
}

#desktop-navbar .balance {
    margin-left: 10px;
}

#desktop-navbar .balance img {
    margin-right: 10px;
}

#desktop-navbar .balance button {
    font-size: 11px;
    line-height: 11px;
    font-weight: 500;
    padding: 6px 8px;
    height: 26px;
    margin: -3px -6px 0 24px;
    border: 2px solid var(--color-pink);
    box-shadow: 0 2px 0 1px #7d0f83;
    border-radius: 7px;
}

#desktop-navbar .have-bonuses img {
    width: 24px;
    height: 24px;
    animation: rotate-scale-shake 0.5s ease-in-out;
}


@media (min-width: 992px) {
    #desktop-navbar .logo {
        float: none;
        width: 180px;
        margin: 5px auto 0;
    }
}





/* =========================== ANIMATIONS ========================================*/
@keyframes rotate-scale-shake {
  0%   { transform: scale(1) rotate(0deg); }
  25%  { transform: scale(1.1) rotate(5deg); }
  50%  { transform: scale(1.1) rotate(-5deg); }
  75%  { transform: scale(1.05) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); }
}
/* =========================== BOTTOM MENU ====================================*/
#bottom-menu {
    margin-top: 13px;
}

#bottom-menu .bottom-menu {
    font-size: 15px;
    line-height: 22px;
    color: var(--color-blue);
    border-top: 1px solid var(--color-blue2);
}

#bottom-menu .bottom-menu .col-12 {
    padding-top: 13px;
}

#bottom-menu .bottom-menu a {
    color: var(--color-blue);
    text-decoration: none;
}

#bottom-menu .bottom-menu a:hover, 
#bottom-menu .bottom-menu a:active {
    color: var(--color-pink);    
}

/* =========================== COPYRIGHTS ====================================*/
#copyrights {
    margin-top: 13px;
    margin-bottom: 13px;
}

#copyrights .copyrights {
    font-size: 11px;
    line-height: 13px;
    color:  var(--color-blue);
    text-align: justify;
    border-top: 1px solid var(--color-blue2);
    padding-bottom: 70px;
}

#copyrights .copyrights .col-12 {
    padding-top: 13px;
}

/* =========================== BOTTOM MOBILE MENU  ==================================== */
#bottom-mobile-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 70px;
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: #0a1940;
    border-top: 3px solid #112046;
    z-index: 10;
}

.bottom-mobile-menu {
    font-size: 9px;
    text-transform: uppercase;
    text-align: center;
}

.bottom-mobile-menu img {
    width: 25px;
    height: 25px;
    margin: 15px 0 5px 0;
}

.bottom-mobile-menu img.center {
    width: 37px;
    height: 37px;
    margin: 0 0 0 0;
}

.bottom-mobile-menu a {
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    width: 20%;
    height: 47px;
    align-items: center;
    justify-content: center;
}

.bottom-mobile-menu a.center {
    position: absolute;
    top: -15px;
    width: 67px;
    height: 67px !important;
}

.bottom-mobile-menu-center {
    position: absolute;
    top: -10px;
    width: 67px;
    height: 67px !important;
}

@media (min-width: 992px) {
    #bottom-mobile-menu {
        display: none;
    }
    
}

 

/* pop-ups */
.pop-up-overlay { 
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    opacity: 0;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1099;
    transition: opacity 0.5s ease;
}

.pop-up-overlay.fade-in {
  opacity: 1;
  pointer-events: auto;
}

.pop-up-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.pop-up-window {
    width: 100vw;
    height: 100vh;
    background-color: var(--color-blue6);

}

.pop-up-logo img {
    text-align: center;
    margin: 12px auto;
}
.pop-up-logo img {
    display: inline-block;
    width: 170px;
    height: auto;
    margin-right: 10px;
}

.pop-up-window .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px;
    z-index: 4;
}

.pop-up-content .header {
    font-size: 30px;
    line-height: 30px;
    color: var(--color-white);
    padding-left: 0px;
    margin-bottom: 20px;
}

/* language selection */
#popupLanguage .header {
    color: var(--color-white);
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 10px;
    margin-top: 36px;
}

#popupLanguage .description {
    color: var(--color-blue);
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 10px;
}

#popupLanguage .list {
    padding: 0px 6px;
}

#popupLanguage a.language {
    display: block;
    float: left;
    text-align: left;
    font-weight: 700;
    border-radius: 10px;
    font-size: 13px;
    line-height: 13px;
    padding: 15px;
    color: var(--color-blue);
    background-color: var(--color-blue5);
    border: 3px solid var(--color-blue4);
    cursor: pointer;
    text-decoration: none;
    margin: 6px;
    width: calc(100% - 12px);
}

#popupLanguage a.language img {
    display: inline-block;
    margin-right: 15px;

}

#popupLanguage a.language:hover {
    border-color: var(--color-pink);
    color: var(--color-white);
}

#popupLanguage a.language:active {
    background-image: linear-gradient(to left, #B20AEE, #D300D8);    
    border-color: var(--color-pink);
    color: var(--color-white);
}

/* 351 ->   */
@media (min-width: 351px) {
    #popupLanguage a.language {
        width: calc(50% - 12px);
    }
}

@media (min-width: 576px) {
    #popupLanguage a.language {
        width: calc(33.3333% - 12px);
    }
}

@media (min-width: 768px) {
    #popupLanguage .pop-up-window {
        max-width: 550px;
        height: auto;
        position: relative;
        border: 3px solid var(--color-blue4);
        border-radius: 15px; 
        padding-bottom: 6px;
    }

    #popupLanguage .header {
        margin-bottom: 10px;
        margin-top: 12px;
    }
}

#popupLogin .pop-up-window,
#popupReminder .pop-up-window,
#popupRegister .pop-up-window {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#popupLogin .container,
#popupReminder .container,
#popupRegister .container {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

#popupLogin .header,
#popupReminder .header,
#popupRegister .header {
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

#popupReminder .instructions {
    color: var(--color-blue);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 10px;
    text-align: center;
}

#popupReminder .instructions.step-one {
    display: block;
}

#popupReminder .instructions.step-two {
    display: none;
}

#popupLogin .recaptcha-info,
#popupReminder .recaptcha-info,
#popupRegister .recaptcha-info {
    font-size: 9px;
    font-weight: 500;
    line-height: 13px;
    color: var(--color-blue);
    text-align: left;
    margin: 30px 0px;
    text-align: center;
}

#popupLogin .dont-have-account,
#popupReminder .did-you-remember,
#popupRegister .already-have-account {
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    color: var(--color-blue);
    text-align: center;
}

#popupLogin .dont-have-account a,
#popupReminder .did-you-remember a,
#popupRegister .already-have-account a {
    text-transform: capitalize;
}

#popupLogin a,
#popupReminder a,
#popupRegister a {
    text-decoration: none;
    background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#reminder-form button {
    margin-top: 26px;
}


@media (min-width: 768px) and (min-height: 700px) {
    #popupLogin .pop-up-logo img,
    #popupReminder .pop-up-logo img,
    #popupRegister .pop-up-logo img {
        display: block;
        position: absolute;
        top: 10px;
        left: 10px;
        margin: 0;
    }

    #popupLogin .pop-up-window, 
    #popupReminder .pop-up-window,
    #popupRegister .pop-up-window,
    #popupProviders .pop-up-window {
        max-width: 700px;
        max-height: 650px;
        border-radius: 20px;
        border: 3px solid var(--color-blue4);    
        position: relative;
    }

    #popupRegister .pop-up-window {
        max-height: 700px;

    }

    #popupProviders .pop-up-window {
        max-width: 80vw;
        max-height: 80vh;
    }
    
    #popupLogin .pop-up-window .pop-up-content,
    #popupReminder .pop-up-window .pop-up-content,
    #popupRegister .pop-up-window .pop-up-content {
        width: 100%;
        height: 100%;
        position: relative;
        top: 0;
        left: 0;
    }

    #popupLogin .pop-up-window .container, 
    #popupReminder .pop-up-window .container,
    #popupRegister .pop-up-window .container {
        max-width: 100%;
        height: 100%;
    }

    #popupLogin .pop-up-window .container .full-height,
    #popupReminder .pop-up-window .container .full-height,
    #popupRegister .pop-up-window .container .full-height {
        height: 100%;
    }

    #popupLogin .header,
    #popupReminder .header,
    #popupRegister .header  {
        text-align: left;
        margin-top: 100px;
        margin-left: 5px;
        font-size: 25px;
        line-height: 25px;  
    }

    #popupReminder .instructions {
        text-align: left;
        margin-left: 5px;
    }


    #popupLogin .sprut-default-form .app-handler,
    #popupReminder .sprut-default-form .app-handler, 
    #popupRegister .sprut-default-form .app-handler {
        margin-bottom: 0;
    }

    #popupLogin .recaptcha-info,
    #popupReminder .recaptcha-info,
    #popupRegister .recaptcha-info {
        text-align: left;
        margin-left: 5px;
        height: 85px;
    }

    #popupLogin .dont-have-account,
    #popupReminder .did-you-remember,
    #popupRegister .already-have-account {
        text-align: left;
        font-size: 13px;
        line-height: 15px;
        margin-left: 5px;
        white-space: nowrap;
        overflow: hidden;
        position: absolute;
        bottom: 15px;
        left: 10px;
    }

    #login-promo,
    #reminder-promo, 
    #register-promo {
        position: relative;
        padding: 12px;
    }

 
    #login-promo .backgound-container,
    #reminder-promo .backgound-container,
    #register-promo .backgound-container {
        width: calc(100% - 24px);
        height: calc(100% - 24px);
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 0;
        background-position: center center;
        background-size: cover;
        border-radius: 20px;
        overflow: hidden;
        border: 3px solid var(--color-blue4);
    }

    #login-promo .bg-blur,
    #reminder-promo .bg-blur,
    #register-promo .bg-blur {
        width: calc(100% - 24px);
        height: calc(100% - 24px);
        position: absolute;
        top: 12px;
        left: 12px;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 1;
        border-radius: 20px;
        border: 3px solid var(--color-blue4);
    }
    
    #login-promo .image-text,
    #reminder-promo .image-text,
    #register-promo .image-text {
        width: 340px;
        position: absolute;
        top: 26px;
        right: 28px;
        z-index: 5;
        font-size: 28px;
        line-height: 28px;
        font-weight: 500;
        color: var(--color-white);
        text-transform: uppercase;
        text-align: right;
    }

    #login-promo .image-text small, 
    #reminder-promo .image-text small,
    #register-promo .image-text small {
        font-size: 20px;
    }

    #login-promo .image-text span, 
    #reminder-promo .image-text span, 
    #register-promo .image-text span {
        color: var(--color-pink);
    }
    
    #login-promo .creature,
    #reminder-promo .creature {
        position: absolute;
        width: 110%;
        bottom: 15px;
        right: -6%;
        z-index: 2;
    }

    #register-promo .creature {
        position: absolute;
        width: calc(100% - 24px);
        bottom: 15px;
        right: 12px;
        z-index: 2;
    }

    #login-promo .creature img, 
    #reminder-promo .creature img,
    #register-promo .creature img {
        width: 100%;
        height: auto;
    }

    #register-promo .chips {
        position: absolute;
        width: 120%;
        top: -5%;
        right: -10%;
        z-index: 3;
    }

    #register-promo .chips img {
        width: 100%;
        height: auto;
    }
}
   

#popupProviders .pop-up-content {
    padding: 12px 0px;
    height: 100%;
}

#popupProviders .subheader {
    display: block;
    text-align: left;
    color: var(--color-white);
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    margin: 0;
    padding: 0 0 20px 20px;
    width: 100%;
}

/* список */
#popupProviders .list {
  padding: 0 6px;
  display: flow-root;
  margin-bottom: 20px; 
}

/* карточка провайдера */
#popupProviders a.provider {
  display: block;
  float: left;
  text-align: left;
  font-weight: 700;
  border-radius: 10px;
  font-size: 11px;
  line-height: 11px;
  text-transform: uppercase;
  padding: 5px;
  color: var(--color-blue);
  background-color: var(--color-blue5);
  border: 3px solid var(--color-blue4);
  cursor: pointer;
  text-decoration: none;
  margin: 6px;
  width: calc(50% - 12px);
  white-space: nowrap;       /* всё в одну строку */
  overflow: hidden;          /* скрыть лишнее */
  position: relative;        /* нужно для псевдоэлемента */
}

#popupProviders a.provider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;  /* ширина зоны затухания */
  height: 100%;
  background: linear-gradient(to right, transparent, var(--color-blue5));
}


/* иконка провайдера */
#popupProviders a.provider img {
  display: inline-block;
  margin-right: 3px;
  height: 20px;
  width: 20px;
}

/* hover */
#popupProviders a.provider:hover {
  border-color: var(--color-pink);
  color: var(--color-white);
}


/* десктопные размеры */
@media (min-width: 768px) and (min-height: 700px) {
  /* общие рамки/позиционирование для окна провайдеров */
  #popupProviders .pop-up-window {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 20px;
    border: 3px solid var(--color-blue4);
    position: relative;
  }

    #popupProviders a.provider {
        width: calc(33.3333% - 12px);
    }
}

@media (min-width: 1200px) {
    #popupProviders .pop-up-window {
        max-width: 1100px;
        max-height: 80vh;
    }

    #popupProviders a.provider {
        width: calc(25% - 12px);
    }
}

/* Прокручиваемая область для списков внутри вашего попапа */
#popupProviders .providers-scroll {
    position: relative;
    overflow: auto;
    max-height: 100%;
    padding: 0 0px 0px 0px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    margin-right: 12px;

    --sb-size: 6px;
    --sb-radius: 10px;
    --sb-track: color-mix(in srgb, var(--color-blue5) 70%, transparent);
    --sb-thumb:  var(--color-pink);
    --sb-thumb-hover:  var(--color-pink);
    --shadow-size: 16px;
    --shadow-color: rgba(0,0,0,.10);
    --header-bg: color-mix(in srgb, var(--color-blue6) 92%, transparent);
    --header-blur: 6px;
}

/* Липкие подзаголовки разделов */
#popupProviders .providers-scroll .subheader {
    position: sticky;
    top: 0;
    z-index: 2;
    backdrop-filter: blur(var(--header-blur));
    background: linear-gradient(to bottom, var(--header-bg), transparent 100%);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 0 0 20px 20px;
}

/* Мягкие тени сверху/снизу — видны только когда можно скроллить */
#popupProviders .providers-scroll::before,
#popupProviders .providers-scroll::after {
    content: "";
    position: sticky;
    display: block;
    left: 0; right: 0;
    height: var(--shadow-size);
    z-index: 3;
    pointer-events: none;
}

#popupProviders .providers-scroll::before {
    top: 0;
    margin-top: -1px;
    background: linear-gradient(to bottom, var(--shadow-color), transparent);
    opacity: 0; transition: opacity .2s ease;
}

#popupProviders .providers-scroll::after {
    bottom: 0;
    background: linear-gradient(to top, var(--shadow-color), transparent);
    opacity: 0; transition: opacity .2s ease;
}

#popupProviders .providers-scroll.not-at-top::before { 
    opacity: 1; 
}

#popupProviders .providers-scroll.not-at-bottom::after {
    opacity: 1;
}

/* Кастомный скроллбар — Chromium/WebKit */
#popupProviders .providers-scroll::-webkit-scrollbar { width: var(--sb-size); height: var(--sb-size); }
#popupProviders .providers-scroll::-webkit-scrollbar-track { background: var(--sb-track); border-radius: var(--sb-radius); }
#popupProviders .providers-scroll::-webkit-scrollbar-thumb { background: var(--sb-thumb); border-radius: var(--sb-radius); }
#popupProviders .providers-scroll::-webkit-scrollbar-thumb:hover { background: var(--sb-thumb-hover); }

/* Firefox */
#popupProviders .providers-scroll { scrollbar-width: thin; scrollbar-color: var(--sb-thumb) var(--sb-track); }

@media (min-width: 768px) and (min-height: 700px) {
  #popupProviders .pop-up-window { display: flex; flex-direction: column; }
  #popupProviders .providers-scroll { max-height: 100%; }
}






/* form styles */
/* reset */
input,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="checkbox"],
input[type="radio"],
input[type="range"],
input[type="file"],
textarea,
select,
button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    box-sizing: border-box;
    outline: none;
}
/* Обёртка */
.input-wrapper {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  background: var(--color-blue5);
  border: 3px solid var(--color-blue4);
  color: var(--color-pink);
  border-radius: 15px;
  padding: 5px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

/* Обёртка при фокусе */
.input-wrapper:focus-within {
  border-color: var(--color-pink);
}

/* Иконка */
.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.icon-password {
  background-image: url('/assets/images/ico-password.svg'); 
}

.icon-email {
  background-image: url('/assets/images/ico-email.svg');
}

.icon-nickname {
  background-image: url('/assets/images/ico-nickname.svg'); 
}

.icon-promocode {
  background-image: url('/assets/images/ico-promocode.svg'); 
}

.icon-search {
    background-image: url('/assets/images/ico-search.svg');
}

/* Инпут */
.input-wrapper input {
  all: unset;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  color: inherit;
  background-color: transparent;
  box-sizing: border-box;
  padding: 10px 10px 10px 45px;
  border-radius: 15px; /* Повторяем скругление */
}

/* Плейсхолдеры (кроссбраузерно) */
.input-wrapper input::placeholder,
.input-wrapper input::-moz-placeholder,
.input-wrapper input:-ms-input-placeholder,
.input-wrapper input::-ms-input-placeholder {
  color: var(--color-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  opacity: 1;
}

.input-wrapper input::-webkit-input-placeholder {
  color: var(--color-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  opacity: 1;
}

/* Автозаполнение Chrome/Safari */
.input-wrapper input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px var(--color-blue5) inset !important;
  -webkit-text-fill-color: var(--color-pink) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.input-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  margin-top: 15px;
  margin-left: 18px;
}

/* Скрываем стандартный checkbox */
.input-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Кастомная иконка */
.input-checkbox .checkbox-icon {
  width: 16px;
  height: 16px;
  background-image: url('/assets/images/ico-check-unchecked.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: background-image 0.2s ease;
}

/* Состояние: checked */
.input-checkbox input[type="checkbox"]:checked + .checkbox-icon {
  background-image: url('/assets/images/ico-check-checked.svg');
}

/* Текстовая подпись */
.input-checkbox .checkbox-label {
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  color: var(--color-blue);
  margin-left: 8px;
}


/* Автозаполнение Firefox */
@supports (-moz-appearance:none) {
  .input-wrapper input:-moz-autofill {
    box-shadow: 0 0 0px 1000px var(--color-blue5) inset !important;
    -moz-text-fill-color: var(--color-pink) !important;
  }
}

.sprut-default-form .form-col {
    padding: 0 12px;
    position: relative;
}

.sprut-default-form a.eye {
    position: absolute;
    display: block;
    padding: 6px;
    top: 28px;
    right: 17px;
    z-index: 1;
}


.sprut-default-form button {
    display: block;
    color: var(--color-white);
    background: linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%), #0A1940;
    box-shadow: 0 4px 0 1px #7d0f83;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    border: 3px solid var(--color-pink);
    border-radius: 15px;
    padding: 15px;
    width: 100%;
    text-transform: capitalize;
    margin-top: 10px;
}

.sprut-default-form .field-error {
    display: block;
    text-align: right;
    font-size: 10px;
    font-weight: 500;
    line-height: 10px;
    height: 10px;
    color: var(--color-red);
    margin: 7px 0 3px 0;
    padding: 0 10px 0 0;
}


.sprut-default-form .app-handler {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 13px;
    margin: 10px 0;
    padding: 0;
    height: 13px;
}

.sprut-default-form .app-handler.error {
    color: var(--color-red);
}

.sprut-default-form .forgotten-password {
    text-align: right;
    padding: 0 12px;
    margin: 10px 0 22px;
}
.sprut-default-form .forgotten-password a {
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    margin-right: 15px;
}




.grecaptcha-badge {
    opacity: 0;
    pointer-events: none;
}



/* Контейнер + свои слои */
#gamesCategoriesMenu {
    --btnW: 30px;   /* ширина кнопки (включая бордеры, т.к. border-box) */
    --btnGap: 0px;  /* отступ кнопки от края */
    --side-gap: calc(var(--btnW) + var(--btnGap));
    position: relative;
    width: 100%;
    height: 75px;
    overflow: hidden;
    isolation: isolate;
}

/* Кнопки */
#gamesCategoriesMenuPrevBtn,
#gamesCategoriesMenuNextBtn {
    position: absolute;
    top: 0;
    width: var(--btnW);
    height: 70px;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 10;
    background-color: var(--color-blue5);
    border: 3px solid var(--color-blue4);
    box-shadow: 0 4px 0 1px var(--color-blue6);
    border-radius: 10px;
}

#gamesCategoriesMenuPrevBtn{ left: var(--btnGap); }
#gamesCategoriesMenuNextBtn{ right: var(--btnGap); }

/* Viewport: только карманы под кнопки */
#gamesCategoriesMenu .slider-viewport {
    position: relative;
    height: 100%;
    margin: 0 var(--side-gap);
    overflow: hidden;
    z-index: 0;
}

/* Лента: без gap — карточки вплотную */
#gamesCategoriesMenu .slider-inner {
    position: relative;
    display: flex;
    height: 100%;
    transition: transform 0.3s ease;
    z-index: 0;
}

/* Карточки: 3 по умолчанию, без внутренних промежутков */
#gamesCategoriesMenu a.games-categories-item,
#gamesCategoriesMenu a.clone {
    flex: 0 0 calc(100% / 3 - 6px);  
    margin-left: 3px;
    margin-right: 3px;
    min-width: 0;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-blue);
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 0;
    background-color: var(--color-blue5);
    border: 3px solid var(--color-blue4);
    box-shadow: 0 4px 0 1px var(--color-blue6);
    border-radius: 10px;
    box-sizing: border-box;
}

#gamesCategoriesMenu a.games-categories-item.active,
#gamesCategoriesMenu a.clone.active {
    color: var(--color-pink);
    border: 3px solid var(--color-pink);
    box-shadow: 0 4px 0 1px #7d0f83;
}

#gamesCategoriesMenu a.games-categories-item:hover,
#gamesCategoriesMenu a.clone:hover {
    color: var(--color-pink);
    

}

/* Иконка и подпись */
#gamesCategoriesMenu .ico-container img {
    width:30px; 
    height:30px; 
    display:block; 
}

#gamesCategoriesMenu .category-name{ 
    font-size: 11px;
    line-height: 11px; 
    margin-top:4px; 
    white-space:nowrap; 
    font-weight: 500;
}

#gamesCategoriesMenu .active .category-name {
    color: var(--color-white);
} 

@media (min-width: 576px) {
    #gamesCategoriesMenu a.games-categories-item,
    #gamesCategoriesMenu a.clone{
        flex: 0 0 calc(100% / 4 - 6px);
    }
}

@media (min-width: 768px) {
    #gamesCategoriesMenu a.games-categories-item,
    #gamesCategoriesMenu a.clone{
        flex: 0 0 calc(100% / 6 - 6px);  
    }
}


@media (min-width: 992px) {

    #gamesCategoriesMenu {
        --btnW: 50px;
        height: 55px;
    }

    #gamesCategoriesMenuPrevBtn,
    #gamesCategoriesMenuNextBtn {
        height: 50px;
    }
    
    /* Viewport: только карманы под кнопки */
    #gamesCategoriesMenu .slider-viewport {
        margin: 0 var(--side-gap);
    }

    
    #gamesCategoriesMenu a.games-categories-item,
    #gamesCategoriesMenu a.clone {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 0 0 calc(100% / 3 - 6px);
        height: 50px;
        background-color: transparent;
        border: 3px solid transparent;
        box-shadow: none;
    }

    #gamesCategoriesMenu .ico-container  {
        margin-right: 12px;
        margin-top: 0;
    }
  
    #gamesCategoriesMenu .category-name {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    #gamesCategoriesMenu a.games-categories-item,
    #gamesCategoriesMenu a.clone {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 0 0 calc(100% / 4 - 6px);
    }
}


@media (min-width: 1200px) {
    #gamesCategoriesMenu a.games-categories-item,
    #gamesCategoriesMenu a.clone {
        flex: 0 0 calc(100% / 4 - 6px);
    }
}

@media (min-width: 1200px) {
    #gamesCategoriesMenu a.games-categories-item,
    #gamesCategoriesMenu a.clone {
        flex: 0 0 calc(100% / 5 - 6px);
    }
}


.developers-select, 
.search-game {
    color: var(--color-blue);
    padding-left: 12px;
    padding-right: 12px;
    height: 50px;
	white-space: nowrap;
	overflow: hidden;
}

.search-game .ico-search {
    width: 22px;
    height: 22px;
}

.developers-select .ico-filter {
    margin-right: 0px;
	width: 20px; 
	height: auto;
}

@media (min-width: 1200px) {

    .search-game {
        justify-content: left;
        position: relative;
    }

    .developers-select {
           justify-content: left;
           position: relative;
	}

    .developers-select .ico-filter {
        margin-right: 6px;
    }

     .search-game .ico-search {
        margin-top: 3px;
        margin-right: 7px;
     }
}




/* =========================== GAMES LIST ==================================== */
/* ==========================================================================
   GAMES LIST — mobile-first
   ========================================================================== */

/* 1) Контейнеры/ряды */
.games-list .row,
.games-list-cat .row {
  margin-top: 25px;
  margin-bottom: 25px;
}
.games-list .row .col-12,
.games-list-cat .row .col-12 {
  padding-left: 9px;
  padding-right: 9px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* 2) Базовые карточки */
.games-list .item,
.games-list a.show-all,
.games-list-cat .item {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 6px 12px;
  text-align: center;
  text-decoration: none;
  z-index: 2;
}

.games-list .item .ico-container {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}
.games-list .item .ico-container svg.svg-inlined,
.games-list .item .ico-container svg.svg-inline,
.games-list .item .ico-container img.svg-inline {
  width: 100% !important;
  height: auto !important;
}

/* 3) Категория (десктопная карточка скрыта по умолчанию) */
.games-list .category--grid { display: none; }
.games-list .category {
  border-radius: 20px;
  background-color: var(--color-blue5);
  border: 3px solid var(--color-blue4);
  box-shadow: 0 5px 0 1px var(--color-blue6);
  color: var(--color-pink);
  text-decoration: none;
}
.games-list .category .category-name {
  color: var(--color-white);
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}
.games-list .category .show-more {
  color: var(--color-blue);
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  margin-top: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.games-list .category:hover {
  border: 3px solid var(--color-pink);
  box-shadow: 0 4px 0 1px #7d0f83;
}
.games-list a.category:hover .show-more {
	color: var(--color-pink);
}

/* 4) Карточка игры */
.games-list .game,
.games-list-cat .game { 
    border-radius: 20px; 
    position: relative; 
}

.games-list .game .thumb-img,
.games-list-cat .game .thumb-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 2;
}

.games-list .game .overlay,
.games-list-cat .game .overlay {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    display: none;
}

.games-list .game:hover .overlay,
.games-list-cat .game:hover .overlay {
    display: block;
}

.games-list .game .overlay .fav,
.games-list-cat .game .overlay .fav {
    display: block;
}

.games-list .game .overlay a.add2fav,
.games-list-cat .game .overlay a.add2fav {
    display: block;
    float: right;
    padding: 8px;
}

.games-list .game .overlay a.add2fav img,
.games-list-cat .game .overlay a.add2fav img {
    width: 15px;
    height: 15px;
}

.games-list .game .overlay a.play,
.games-list-cat .game .overlay a.play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100% - 80px);
    text-decoration: none;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
}

.games-list .game .overlay a.play .play-container,
.games-list-cat .game .overlay a.play .play-container {
    display: inline-block;
    width: 32px;
    height: 32px;
}

.games-list .game .overlay a.play .play-container img,
.games-list-cat .game .overlay a.play .play-container img {
    width: 100%;
    height: auto;
}

.games-list .game .overlay a.demo,
.games-list-cat .game .overlay a.demo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 12px;
    line-height: 25px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-pink)
}

.games-list .game .overlay a.demo:hover,
.games-list .game .overlay a.demo:active,
.games-list-cat .game .overlay a.demo:hover,
.games-list-cat .game .overlay a.demo:active {
    color: var(--color-pink)
}

.games-list .game .thumb-border,
.games-list-cat .game .thumb-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 3px solid rgba(219, 204, 219, 0.20);
  box-sizing: border-box;
  pointer-events: none;
  z-index: 3;
}


.games-list .game .shadow,
.games-list-cat .game .shadow {
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.6;
  z-index: 1;
}

/* 5) Мобильный заголовок + кнопки */
.games-list .category-row { display: block; width: 100%; }
.games-list .category-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 12px 0;
}
.games-list .category-row a.category-mobile {
  flex: 1 1 auto;
  margin: 0;
  text-decoration: none;
  color: var(--color-white);
}
.games-list .category-row .category-mobile .ico-container {
  float: left;
  width: 32px;
  height: 32px;
  margin: 0;
  color: var(--color-pink);
}
.games-list .category-row .category-mobile .ico-container img {
  width: 30px; height: 30px;
}
.games-list .category-row .category-mobile .category-name {
  float: left;
  color: var(--color-white);
  line-height: 30px;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
}
.games-list .category-row .category-mobile .arrow {
  float: left;
  display: block;
  width: auto;
  height: 12px;
  margin: 9px 0 0 0;
}
.games-list .category-controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: 12px;
}
.games-list .slider-btn {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  padding: 8px; line-height: 1;
  cursor: pointer;
  border: 2px solid var(--color-blue3);
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.25);
  background: transparent;
}
.games-list .slider-btn:hover,
.games-list .slider-btn:active {
  border: 2px solid var(--color-pink);
  box-shadow: 0 2px 0 1px #7d0f83;
}
.games-list .slider-btn:disabled { opacity: .4; cursor: default; }

/* 6) Трек .cards — лента на мобиле */
.games-list .col-12 > .cards {
	width: 100%; 
	display: flex; 
	flex-wrap: nowrap; 
	overflow: hidden; 
}

.games-list-cat .col-12 > .cards {
	width: 100%; 
	display: flex;
	 flex-wrap: wrap; 
	 overflow: visible; 
}


/* 7) Колонки (мобайл → десктоп) */
.games-list .cards .item,
.games-list .cards .show-all,
.games-list-cat .cards .item { 
    flex: 0 0 calc(100% / 3 - 12px); 

} /* ≥0: 3 в экран */

.games-list .cards .show-all {
    text-decoration: none;
    color: var(--color-pink);
    flex-direction: row;       /* вместо колонки */
  align-items: center;
  justify-content: center;   /* или space-between — по вкусу */
  gap: 0px;
  padding: 10px 12px;        /* чуть воздуха по бокам */
  text-align: center;          /* чтобы caption не центрировался по строке */
}

.games-list .item.game.show-all .caption {
  flex: 1 1 50%;
  min-width: 0;              /* важно для ellipsis во flex-контейнере */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
   font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    text-transform: uppercase;
   
}

/* Стрелки фиксированного размера, не растягиваются */
.games-list .item.game.show-all .arrow {
  flex: 0 0 auto;
  width: 12px;               /* подбери размер под дизайн */
  height: 12px;
  margin-left: 0px;          /* небольшая дистанция от текста/стрелки */
  margin-right: -7px;

}

@media (min-width: 576px) { 
    .games-list .cards .item,
    .games-list .cards .show-all,
	.games-list-cat .cards .item { 
        flex: 0 0 calc(100% / 4 - 12px); 
    }

    .games-list .game .overlay a.add2fav,
    .games-list-cat .game .overlay a.add2fav {
        padding: 10px;
    }

    .games-list .game .overlay a.add2fav img,
    .games-list-cat .game .overlay a.add2fav img {
        width: 20px;
        height: 20px;
    }

    .games-list .game .overlay a.play,
    .games-list-cat .game .overlay a.play {
        font-size: 16px;
        font-weight: 500;
    }
    
    .games-list .game .overlay a.play .play-container,
    .games-list-cat .game .overlay a.play .play-container {
        width: 45px;
        height: auto;
    }
}

/* 8) Десктопные переключения: сетка, показ десктоп-категории */
@media (min-width: 768px) {
    .games-list .category--grid {
        display: flex; 
    }

    .games-list .category-row {
        display: none;
    }

    .games-list .col-12 > .cards { 
        flex-wrap: wrap; overflow: visible; 
    }
    
    .games-list .cards .item,
    .games-list-cat .cards .item {
        flex: 0 0 calc(100% / 5 - 12px);
    }
    
    .games-list .item.game.show-all {
        display: none;
    }

    .games-list .game .overlay a.play,
    .games-list-cat .game .overlay a.play {
        font-size: 18px;
        font-weight: 500;
    }
    
    .games-list .game .overlay a.play .play-container,
    .games-list-cat .game .overlay a.play .play-container {
        width: 55px;
        height: auto;
    }

}


@media (min-width: 992px) {  
    .games-list .cards .item, 
    .games-list-cat .cards .item { 
        flex: 0 0 calc(100% / 7 - 12px); 
    }

    .games-list .game .overlay a.play, 
    .games-list-cat .game .overlay a.play {
        font-size: 16px;
        font-weight: 500;
    }
    
    .games-list .game .overlay a.play .play-container,
    .games-list-cat .game .overlay a.play .play-container {
        width: 45px;
        height: auto;
    }

} /* LG: 7 */
@media (min-width: 1200px) { 
    .games-list .cards .item,
    .games-list-cat .cards .item { 
        flex: 0 0 calc(100% / 8 - 12px); 
    }

    .games-list .game .overlay a.play,
    .games-list-cat .game .overlay a.play {
        font-size: 18px;
        font-weight: 500;
    }
    
    .games-list .game .overlay a.play .play-container, 
    .games-list-cat .game .overlay a.play .play-container {
        width: 55px;
        height: auto;
    }

}

/* 9) Скрытие «лишних» карточек на десктопе */
@media (min-width: 768px) and (max-width: 991.98px) {
  .games-list .col-12 .cards .item:nth-child(n+16) { display: none; } /* оставить первые 12 */
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .games-list .col-12 .cards .item:nth-child(n+15) { display: none; } /* оставить первые 14 */
}

/* 10) UX: запрет выделения/перетаскивания в карточках */
.games-list .item,
.games-list-cat .item,
.games-list .item *,
.games-list-cat .item * {
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.games-list .item img,
.games-list .item .thumb-img,
.games-list .item .shadow,
.games-list-cat .item img,
.games-list-cat .item .thumb-img,
.games-list-cat .item .shadow {
  -webkit-user-drag: none; user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none; /* клики идут по <a> */
}


/* text content block */
.content-block {
    background: var(--color-blue6);
    border-radius: 20px;
    padding: 12px 0px 12px 12px;
    border: 3px solid var(--color-blue4);
    margin-top: 20px;
    margin-bottom: 30px;
}

.content-block .custom-scroll {
    max-height: 300px;
    padding-right: 12px;
}

/* text content typo */
.text-page-content {
    font-family: "Gotham Pro";
    font-weight: 400px;
    font-size: 11px;
    line-height: 14px;
    text-align: left;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    hyphens: auto;
    overflow-wrap: anywhere;
}

.text-page-content h1 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    margin: 0 0 10px 0;
    background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-page-content h2 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    margin: 10px 0;
    background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-page-content h3 {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    margin: 10px 0;
    background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-page-content h4 {
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    margin: 10px 0;
    background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-page-content h5 {
    font-size: 11px;
    line-height: 11px;
    font-weight: 500;
    margin: 10px 0;
    background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-page-content p {
    margin-bottom: 10px;
}

.text-page-content p:last-child {
    margin-bottom: 0;
}    

.text-page-content ul {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0;
}

.text-page-content ul li {
    --gap-left: 6px;
    --gap-right: 6px;
    --dot: 4px;
    position: relative;
    padding-inline-start: calc(var(--gap-left) + var(--dot) + var(--gap-right));
    margin-bottom: 6px;
}

.text-page-content p,
.text-page-content li { 
    text-wrap: pretty; 
}

.text-page-content ul li::before {
    content: "";
    position: absolute;
    inset-inline-start: var(--gap-left);
    top: 0.55em;
    width: var(--dot);
    height: var(--dot);
    border-radius: 50%;
    background: currentColor;
}

.text-page-content a {
    color: var(--color-blue2, #7fb1ff);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1.5px;
}

.text-page-content a:hover { 
    color: var(--color-pink);
    text-decoration-thickness: 2px; 
}

.text-page-content ::selection {
    background: var(--color-blue4);
    color: #fff;
}

.text-page-content blockquote {
    margin: 10px 0;
    padding: 8px 12px;
    border-inline-start: 3px solid var(--color-blue4);
    background: rgba(255,255,255,.03);
    border-radius: 10px;
}

.text-page-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95em;
}

.text-page-content th,
.text-page-content td {
    padding: 6px 10px;
    border-bottom: 1px solid var(--color-blue4);
    text-align: left;
}

.text-page-content thead th {
    font-weight: 600;
    position: sticky; top: 0;
    background: var(--color-blue6);
}

.text-page-content code,
.text-page-content kbd {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    font-size: .9em;
    background: rgba(255,255,255,.05);
    padding: .1em .4em;
    border-radius: 4px;
}

.text-page-content hr {
    height: 1px; border: 0;
    background: linear-gradient(90deg, transparent, var(--color-blue4), transparent);
    margin: 12px 0;
}

.text-page-content ul ul li {
    --gap-left: 18px; 
}


@media (min-width: 992px) {

    .content-block {
        padding: 24px 0px 24px 24px;
    }
    
    .content-block .custom-scroll {
        padding-right: 24px;
    }

    .text-page-content {
        font-size: 15px;
        line-height: 18px;
    }
    
    .text-page-content h1 {
        font-size: 24px;
        line-height: 24px;
        margin: 0 0 20px 0;         
    }
    
    .text-page-content h2 {
        font-size: 20px;
        line-height: 20px;
        margin: 20px 0;
    }

    .text-page-content h3 {
        font-size: 18px;
        line-height: 18px;
        margin: 20px 0;
    }

    .text-page-content h4 {
        font-size: 16px;
        line-height: 16px;
        margin: 20px 0;
    }

    .text-page-content h5 {
        font-size: 15px;
        line-height: 15px;
        margin: 20px 0;
    }

    .text-page-content p {
        margin-bottom: 16px;
    }
    

    
    .text-page-content ul li {
        --gap-left: 12px;
        --gap-right: 12px;
        --dot: 6px;
        margin-bottom: 6px;
    }
    
    .text-page-content ul li::before {
        top: 6px;
        width: var(--dot);
        height: var(--dot);
    }
}












/* footer providers block */
#footerProviders {
    --cols: 15;
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: 24px auto 0;
    height: 40px;
    overflow: hidden;
    isolation: isolate;
    display: none;
}

#footerProviders .slider-viewport {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  z-index: 0;
}

#footerProviders .slider-inner {
    position: relative;
    display: flex;
    height: 100%;               
    transition: transform 0.3s ease;
    z-index: 0;
    gap: 0;
}

#footerProviders a.footer-providers-item,
#footerProviders a.clone {
  flex: 0 0 calc(100%  / var(--cols));
  min-width: 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
  opacity: 0.5;
}

#footerProviders a.footer-providers-item:hover,
#footerProviders a.clone:hover,
#footerProviders a.footer-providers-item:focus-visible,
#footerProviders a.clone:focus-visible {
  opacity: 1;
  outline: none;
}

#footerProviders a.footer-providers-item img {
  width: 28px;
  height: 28px;
  display: block;
}

@media (min-width: 992px)  {
    #footerProviders {
        display: block; 
    } 
}

@media (min-width: 1200px) {
    #footerProviders {
        --cols: 21; 
    } 
}


.clearfix::after {
  content: "";
  display: table;
  clear: both;
}