@import url('https://fonts.cdnfonts.com/css/noto-sans');

* {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    background: #EAE7DE;
    color: #1a1a1a;
    font-family: 'Noto Sans', sans-serif;
    padding-top: 50px
}

body:before {
    content: '';
    background: #141616;
    opacity: .4;
    -webkit-filter: blur(207px);
    filter: blur(207px);
    width: 380px;
    height: 360px;
    position: absolute;
    left: 0;
    top: 0;
    display: block
}

img {
    max-width: 100%;
    height: auto
}
button{
    border: none !important;
    background: transparent;
    cursor: pointer;
}
.table-overflow {
    overflow: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em
}

table {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-collapse: collapse
}

table th {
    font-weight: 700;
    padding: 5px;
    background: #efefef;
    border: 1px solid #ddd
}

table td {
    border: 1px solid #ddd;
    padding: 5px
}

.container {
    max-width: 1920px;
    padding: 0 20px;
}

.btn {
    border-radius: 0;
    border: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}

.btn-gradient {
    background: -o-radial-gradient(50.34% 100%, 75% 100%, #2094FF 0%, #0B3DDD 100%);
    background: radial-gradient(75% 100% at 50.34% 100%, #2094FF 0%, #0B3DDD 100%);
    border-radius: 44px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px
}

.btn-blue {
    background: rgba(55, 100, 243, 0.5);
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: capitalize;
    color: #fff;
    border: 1px solid #302D48
}

.btn-blue:hover {
    border: 1px solid #fff;
    color: #fff
}

.btn-blue__outline {
    background: transparent;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    border: 1px solid #EF4136
}

.btn-red {
    background: #EF4136;
    border-radius: 8px;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding: 13px 28px;
}

.btn-white {
    background: #fff;
    border-radius: 8px;
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding: 13px 28px;
}

.btn-arrow {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding-right: 10px;
}

.btn-arrow:after {
    content: '';
    display: block;
    width: 6px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/chevron-right.svg) no-repeat center center;
}

.btn-arrow:hover {
    color: #00AEC4;
}

.header-banner {
    background:
        -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.3))),
        url(../img/header-bg.jpeg);
    background:
        -o-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)),
        url(../img/header-bg.jpeg);
    background:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)),
        url(../img/header-bg.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 500px;
}
.header-banner__img{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: url(../img/header-img.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 2;
    -webkit-animation: animMainDliderImg 10s linear 0s infinite;
            animation: animMainDliderImg 10s linear 0s infinite;
    /* animation-play-state: paused; */
}
@-webkit-keyframes animMainDliderImg {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(25px);
                transform: translateX(25px);
    }
    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@keyframes animMainDliderImg {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(25px);
                transform: translateX(25px);
    }
    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
.header-banner__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
    width: 100%;
    z-index: 3;
}

/* .header-banner__card {
    background: url(../img/start-banner-card.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 35px;
} */

.banner-card__title {
    text-transform: uppercase;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

.banner-card__title span {
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 0.7777777778rem;
}

.banner-card__play {
    font-size: 2.3333333333rem;
    line-height: 2.9444444444rem;
    margin-top: 0.6111111111rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 15px;
}

.banner-card__btn-bg {

    font-size: 2.3888888889rem;
    line-height: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.banner-card__btn-after {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.banner-card__calm-offer .btn {
    padding: 5px 75px;
}

.navbar {
    padding: 0;
    background: #212123;
}

.navbar .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.navbar .container .row {
    width: 100%;
}

.navbar-brand img {
    height: 40px;
}

.navbar-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-left: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 30px;
    gap: 10px;
}
.navbar-top__nav ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.navbar-top__nav ul li button{
    text-decoration: none;
    color: #B3B2B2;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 6px;
}
.navbar-top__nav ul li form.search{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b3b2b2;
    padding: 12px 18px 12px 40px;
    height: 44px;
    border-radius: 10px;
}
.navbar-top__nav ul li form.search input{
    font-size: 14px;
    color: #b3b2b2;
    background: none;
    border: none;
}
.navbar-top__nav ul li form.search input::placeholder{
    color: #b3b2b2;
    font-size: 14px;
}
.navbar-top__nav ul li form.search button{
    border: none;
    background: none;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
 
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-top__nav ul li form.search button svg{
    width: 17px;
    height: 17px;
}
.navbar-top__nav ul li button img{
    height: 24px;
    width: auto;
}
.navbar-top__nav ul li button:hover{
    color: #fff;
}
.navbar-fixed {
    background: #212123;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 28px;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
}

.navbar-brand svg {
    max-width: 110px;
}
.navbar-top__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
}
.navbar-toggler{
    display: block !important;
    padding: 0 !important;
}
.navbar-toggler:focus{
    -webkit-box-shadow: none;
            box-shadow: none;
}
.navbar-toggler-icon{
    -webkit-transform: skewX(-20deg);
        -ms-transform: skewX(-20deg);
            transform: skewX(-20deg);
    width: 35px !important;
    height: 35px !important;
}
.navbar-toggler-icon svg {
    fill: #fff;
    width: 35px;
    height: 35px
}
.navbar-collapse{
    position: fixed;
    left: -500px;
    top: 68px;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    background: #212122;
    padding: 25px;
    z-index: 99;
    height: 100vh;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
}
.navbar-collapse.show{
    left: 0;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.navbar-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 15px;
}

.navbar-nav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.navbar-nav a {
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 2px solid transparent;
    text-decoration: none
}

.navbar-nav a:hover {
    border-bottom: 2px solid #EF4136;
    border-radius: 2px
}

.navbar-auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.auth-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.auth-login__link {
    border: 2px solid #fff !important;
    border-radius: 8px;
    padding: 10px 34px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    background: transparent;
    color: #fff;
    text-decoration: none;
}
.auth-login__link:hover{
    background-color: #Fff;
    color: #000;
}
.auth-reg__link {
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    border: 2px solid #EF4136 !important;
}
.sidebar {
    position: sticky;
    top: 95px;
    right: 0;
    max-width: 394px;
    width: 100%;
    height: 100vh;
 padding-bottom: 25px;
    overflow-y: scroll;
    border-radius: 20px;
}
.sidebar::-webkit-scrollbar{
    display: none;
}
.sidebar-items{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}
.sidebar-item{
background-color: #fff;
    padding: 16px 20px;
    border-radius: 20px;
    min-height: 400px;
}
.sidebar-item .btn{
    width: 100%;
}
.sidebar-jackpot{
    min-height: 160px;
    text-align: center;
}
.sidebar-bonus{
    background: url(../img/sidebar-bonus-bg.jpg) no-repeat center center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}
.sidebar-bonus__title {
    font-size: 36px;
    color: #fff;
}
.sidebar-tour__title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}
.sidebar-tour__subtitle {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #6e6e70;
}
.sidebar-tour{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px;
    min-height: 350px
}
.sidebar-tour__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.sidebar-tour__badge {
    background: #1a1a1a;
    color: #fff;
    padding: 5px 20px;
    border-radius: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 12px;
    text-transform: uppercase;
}
.sidebar-tour__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.sidebar-tour__body {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}
.sidebar-tour__body img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-filter: brightness(0.5);
            filter: brightness(0.5);
}
.sidebar-tour__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 20px;
    color: #fff;
    z-index: 2;
}
.sidebar-tour__timer-title,
.sidebar-tour__prize-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    color: #9d9d9d;
}
.sidebar-tour__timer-value {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: #f2b68c;
}
.sidebar-tour__prize-value {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
}
.sidebar-app{
    background: url(../img/sidebar-app-bg.png) no-repeat center center;
    background-size: cover; 
}
.sidebar-app__title {
    font-size: 16px;
    line-height: 24px;
    color: #2c2c2e;
    font-weight: 700;
}
.sidebar-app{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-color: #f6f6f6;
}
.sidebar-app__subtitle {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .12px;
    color: #6e6e70;
}
.sidebar-app__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px;
}
.sidebar-app__item {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    color: #1a1a1a;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    text-align: left;
}
.sidebar-app__item-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #f2f5fc;
    height: 48px;
    width: 48px;
    border-radius: 10px;
}
.main-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 45px;
    gap: 25px;
}



.main {
    width: 100%
}

.main-bg {
    background-image: url(../img/./page-bg.png);
    background-size: cover;
    background-repeat: repeat
}

.carousel-item__content {
    position: absolute;
    z-index: 2;
    left: 150px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%
}

.carousel-item__text {
    position: absolute;
    top: 50%;
    left: 38%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 35%
}

.carousel-item__title {
    font-weight: 400;
    font-size: 38px;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 15px
}

.carousel-item__subtitle {
    font-weight: 300;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: .365217px;
    margin-bottom: 80px
}

.carousel-btn {
    background: -o-radial-gradient(50.34% 100%, 75% 100%, #2094FF 0%, #0B3DDD 100%);
    background: radial-gradient(75% 100% at 50.34% 100%, #2094FF 0%, #0B3DDD 100%);
    border-radius: 40px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 24px
}

.carousel-item__image img {
    width: 100%
}

.breadcrumbs {
    padding: 15px 0;
    opacity: .5;
    font-size: 14px
}

.breadcrumbs a {
    color: #1a1a1a
}

.content {
    color: #1a1a1a;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    border-radius: 24px;
    background: #f6f6f6;
    padding: 20px;
    margin: 25px 0;
}
.slots-preheader{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
padding: 0 20px;
}
.slots-preheader:before{
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: #2c2c2e;
}
.slots-type{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}
.slots-type__item button{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 20px 0;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    gap: 6px;
    color: #868a8a;
}
.slots-type__item button img{
    height: 18px;
    width: auto;
}
.slots-type__item.active button,
.slots-type__item button:hover{
    color: #1a1a1a;
}
.slots-type__item.active button::after,
.slots-type__item button:hover:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #EF4136;
    -webkit-transform: matrix(1,0,0,-1,0,0);
        -ms-transform: matrix(1,0,0,-1,0,0);
            transform: matrix(1,0,0,-1,0,0);
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
.slots-preheader__providers button{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    font-size: 12px;
    padding: 10px 20px;
    background-color: #fff;
    color: #1a1a1a;
    text-decoration: none;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 20px;
    text-transform: uppercase;
}
.slots-preheader__providers button img{
    height: 18px;
    width: auto;
}
.slots {
    background: #F6F6F6;
    border-radius: 20px;
}
.slots-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 25px 25px 0;
}

.slots-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
}

.slots-title h2 {
    margin-bottom: 0;
}

.slots-more__link {
    padding: 10px 25px;
    border-radius: 8px;
    border: 1px solid #EF4136;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.slots-more__link:hover {
    /* background: #EF4136; */
    color: #EF4136;
}
.slots-items{
    padding: 25px;
}
.slots-items .col {
    padding: 8px
}

.slot-item {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    border-radius: 24px
}

.slot-item__permalink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
}

/* .slot-item__inner::before {
    content: 'hot';
    text-transform: uppercase;
    position: absolute;
    right: 7px;
    top: 7px;
    z-index: 1;
    background: #222630;
    border-radius: 4px;
    color: #FF4C00;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding: 4px 8px;
} */

/* .slot-item__inner::after {
    content: 'new';
    text-transform: uppercase;
    position: absolute;
    left: 7px;
    top: 7px;
    z-index: 1;
    background: #222630;
    border-radius: 24px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding: 4px 8px;
} */



.slot-item__content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border: 2px solid #EF4136;
    text-align: center;

}

.slot-item:hover .slot-item__permalink {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    color: #1a1a1a;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    z-index: 999;
    border-radius: 4px
}

.slot-item:hover .slot-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 24px;
}

.slot-item__title {
    margin-top: 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
}

.slot-item__play {
    width: 44px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #EF4136;
    border-radius: 40px;
    font-size: 12px;
}

.slot-item__soft {
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    position: absolute;
    right: 10px;
    bottom: 10px
}

.slot-item__img {
    width: 100%;
    height: 100%;
    height: 161px;
    border-radius: 24px;
    -o-object-fit: cover;
    object-fit: cover;
}

/* .sidebar {
    width: 100%;
    max-width: 366px;
    z-index: 99;
    padding-left: 25px
} */

.sidebar-wrapper {
    position: sticky;
    top: 60px;
    margin-bottom: 60px
}



.sidebar-jackpot__title {
    font-weight: 200;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
}

.sidebar-jackpot__value {
    font-size: 24px;
    line-height: 28px;
    font-weight: 900;
    margin-bottom: 16px;
}

.sidebar-soft {
    padding: 25px 14px;
    border-radius: 3px;
    margin-bottom: 20px
}

.sidebar-block__toggler::before {
    content: '';
    background: url(../img/./chevron-down.svg) no-repeat center center;
    background-size: contain;
    width: 15px;
    height: 10px;
    display: block
}

.sidebar-soft__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 25px;
    background: rgba(51, 61, 108, 0.2);
    border-radius: 8px;
    padding: 8px 16px
}

.sidebar-soft__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.sidebar-soft__item {
    padding: 10px 0;
    margin-bottom: 10px;
    width: 48%;
    margin-right: 5px;
    border-bottom: 1px solid #333D6C
}

.sidebar-soft__item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    text-decoration: none
}

.sidebar-soft__item-link:hover {
    color: #fff
}

.sidebar-soft__item-logo {
    height: 25px;
    width: 45px;
    margin-right: 15px;
    display: none
}

.sidebar-soft__item-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.sidebar-soft__item-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
    mix-blend-mode: normal
}

.sidebar-soft__link-icon {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.sidebar-soft__all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    margin-top: 15px
}

.sidebar-jsoft {
    padding: 25px;
    border-radius: 3px;
    padding-right: 0
}

.sidebar-jsoft__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 25px;
    background: rgba(51, 61, 108, 0.2);
    border-radius: 8px;
    padding: 8px 16px
}

.sidebar-jsoft__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.sidebar-jsoft__item {
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 5px;
    width: 48%;
    margin-right: 5px
}

.sidebar-jsoft__item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #fff;
    text-decoration: none
}

.sidebar-jsoft__item-link:hover {
    color: #fff
}

.sidebar-jsoft__item-logo {
    width: 45px;
    margin-right: 15px
}

.sidebar-jsoft__item-title {
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: rgba(255, 255, 255, 0.602874);
    margin-bottom: 5px
}

.sidebar-jsoft__link-icon {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.sidebar-jsoft__link-icon:before {
    content: '';
    background: url(../img/../img/icons/chevron-right.svg) no-repeat center center;
    background-size: contain;
    width: 10px;
    height: 10px;
    display: block
}

.soft {
    background: #181818;
    padding: 60px 0
}

.soft-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
   gap: 25px;
}
.soft-item{
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-filter: grayscale(1) brightness(0.6);
            filter: grayscale(1) brightness(0.6);
}
.soft-item img{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.payments {
    background: #2D3131;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 55px 0;
    gap: 48px
}

.footer {
    background: #181818;
    color: #FFF;
    mix-blend-mode: normal;
    color: #7C879D;
    font-size: 14px;
    line-height: 20px;
}

.footer-navbar {
    padding: 48px
}

.footer-navbar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 48px;
    -moz-column-gap: 48px;
    column-gap: 48px;
    list-style: none;
}

.footer-navbar ul li a {
    color: #FFF;
    margin-bottom: 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.footer-navbar ul li a:hover {
    opacity: 1;
    color: #EF4136;
}

.footer-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    text-transform: uppercase;
    mix-blend-mode: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.single-slot__content h1 {
    font-weight: 700;
    font-size: 28px;
    line-height: 40px
}

.single-slot__iframe-wrapper {
    width: 100%;
    height: 500px;
    margin: 55px 0;
    border-radius: 8px;
    overflow: hidden
}

.single-slot__iframe {
    height: 100%;
    width: 100%
}

.related-slots__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 25px
}


/* .related-slots .slot-item__img {
    height: 276px
} */


/* .related-slots .slot-item__img {
    height: 200px;
} */

.header-slider {
    overflow: hidden;
    padding: 30px 0
}

.header-carousel {
    width: 100%;
    height: 320px;
}

.carousel .slide {
    background: url(../img/./header-carousel-bg.svg) no-repeat center center;
    background-size: cover;
    border-radius: 8px;
    background-blend-mode: screen;
    -webkit-box-shadow: 0 64px 40px -40px rgba(0, 19, 57, 0.25), 0 64px 40px -40px rgba(0, 19, 57, 0.25);
    box-shadow: 0 64px 40px -40px rgba(0, 19, 57, 0.25), 0 64px 40px -40px rgba(0, 19, 57, 0.25)
}

.swiper-slide {
    border-radius: 8px;
    overflow: hidden;
}

.header-slide {
    padding: 40px;
    height: 100%;
}

.header-slide__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3
}

.header-slide__img {
    position: absolute;
    right: -10px;
    bottom: 0;
    z-index: 5;
    width: 300px;
    height: 320px
}

.header-slide__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.header-slide__type {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    mix-blend-mode: normal;
    margin-bottom: 30px;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.5);
}

.header-slide__type:before {
    content: '';
    display: block;
    width: 20px;
    height: 36px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/small-logo.svg) no-repeat center center;
}

.header-slide__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 72px;
    max-width: 60%;
    width: 100%;
}

.header-slide__prize-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    mix-blend-mode: normal;
    opacity: .66;
    margin-bottom: 5px
}

.header-slide__prize-value {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 28px
}

.header-slide__btn {
    padding: 8px 24px;
    position: absolute;
    left: 40px;
    bottom: 40px;
}

.type-carousel {
    overflow: hidden;
    height: 220px;
    padding: 0 14px;
    max-width: 1050px
}

.type-slide {
    padding: 0;
    min-height: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.type-slide__wrapper {
    padding: 28px
}

.type-slide__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px
}

.type-slide__img {
    width: 145px;
    height: 100%;
    position: absolute;
    right: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.type-slide__img img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%
}

.swiper-button-next,
.swiper-button-prev {
    width: 100px;
    height: 40px;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 40px;
    color: #EF4136
}

.swiper-button-disabled {
    display: none;
}

.swiper-button-prev {
    left: -15px;
    background: rgba(1, 1, 1, 1.0);
    background: -o-linear-gradient(left, rgba(1, 1, 1, 1.0), rgba(0, 0, 0, 0.0));
    background: -webkit-gradient(linear, left top, right top, from(rgba(1, 1, 1, 1.0)), to(rgba(0, 0, 0, 0.0)));
    background: linear-gradient(to right, rgba(1, 1, 1, 1.0), rgba(0, 0, 0, 0.0));
}

.swiper-button-next {
    right: -15px;
    /* Created with https://www.css-gradient.com */
    background: rgba(1, 1, 1, 1.0);
    background: -o-linear-gradient(right, rgba(1, 1, 1, 1.0), rgba(0, 0, 0, 0.0));
    background: -webkit-gradient(linear, right top, left top, from(rgba(1, 1, 1, 1.0)), to(rgba(0, 0, 0, 0.0)));
    background: linear-gradient(to left, rgba(1, 1, 1, 1.0), rgba(0, 0, 0, 0.0));
}

.type-slide__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3
}

.sidebar-carousel {
    padding: 0 14px
}

.sidebar-slide {
    background: url(../img/./sidebar-slide-bg.svg) no-repeat center center !important;
    background-size: cover;
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 28px;
    text-align: center
}

.sidebar-slide__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px
}

.sidebar-slide__subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .5px
}

.sidebar-slide__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3
}

.toc-list {
    background: #f6f6f6;
    border-radius: 4px;
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 28px;
    margin-bottom: 35px
}

.toc-list ol {
    padding-left: 20px;
    margin-bottom: 0;
    opacity: .5
}

.toc-list ol li a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px dashed #dedede
}

.toc-list ol li a:hover {
    border-bottom: none
}

.cookieinfo {
    width: 100%;
    font-size: 13px !important;
    position: fixed !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0 !important;
    border-radius: 0;
    padding: 15px 25px !important;
    background: #262A46;
    text-align: left !important;
    opacity: 1 !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    line-height: 19px !important
}

.cookieinfo>div {
    max-width: 1440px;
    margin: 0 auto
}

.cookieinfo span {
    display: inline-block !important
}

.cookieinfo a {
    text-decoration: underline !important
}

.cookieinfo-close {
    padding: 0 !important;
    min-width: auto !important;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #131945;
    font-size: 12px;
    border: 1px solid #636363;
    color: #fff !important;
    padding: 5px 35px !important;
    border-radius: 4px !important;
    z-index: 2
}

.cookieinfo-close:hover {
    background: none !important;
    color: #fff !important
}

#toTop {
    bottom: 15%
}

.reviews h3,
.reviews h6 {
    font-weight: 600;
}

.reviews h6 {
    font-size: 24px;
}

.review-item {
    background: #181A20;
    -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.375761);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.375761);
    border-radius: 4px;
    /* width: 100%;
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content; */
    margin-bottom: 35px;
}

.review-text {
    opacity: 0.6;
    font-size: 14px;
    padding: 20px;
    text-align: center;
}

.review-author {
    opacity: 0.6;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #121212;
    padding: 14px 22px;
}

.contacts {
    background: #181A20;
    border-radius: 4px;
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 28px;
    margin-bottom: 35px;
}

.contacts-text {
    opacity: 0.6;
}

.promo {
    z-index: 2;
    background: url(../img/promo-bg.png) no-repeat center center;
    padding: 80px 0;
    padding-top: 170px;
}

.promo__pre-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #CECFD0;
    margin-bottom: 20px;
    padding-left: 32px;
}

/* .promo__pre-title:before {
    content: '';
    display: block;
    width: 26px;
    height: 50px;
    position: absolute;
    left: 0;
    bottom: -4px;
    background: url(../img/small-logo.svg) no-repeat center center;
} */

.promo-title {
    font-weight: 400;
    font-size: 62px;
    line-height: 76px;
    width: 55%;
    margin-bottom: 35px;
}

.faq-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 50px;
}

.accordion-item {
    background: #05060A;
    margin-bottom: 20px;
    border-radius: 20px !important;
}

.accordion-button {
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.accordion-button.collapsed {
    background: #181A20;
}

.accordion-button:not(.collapsed) {
    background: #EF4136;
    color: #fff;
}

.accordion-button:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-button::after {
    background: url(../img/chevron-right.svg) no-repeat center center;
}

.accordion-button:not(.collapsed)::after {
    background: url(../img/chevron-down.svg) no-repeat center center;
}

.wpmtst-testimonial.testimonial {
    border: none !important;
    border-radius: 24px;
    background: #212123;
    -webkit-box-shadow: 0px 16px 40px 0px rgba(56, 68, 91, 0.06);
    box-shadow: 0px 16px 40px 0px rgba(56, 68, 91, 0.06);
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    line-height: 24px;
}

.wpmtst-testimonial-inner {
    border: none !important;

}

.strong-form-inner {
    padding: 0 !important;
}

.strong-form label {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}

#wpmtst-form input[type="text"],
#wpmtst-form textarea {
    background: #F6F6F6;
    -webkit-box-shadow: 0px 16px 40px 0px rgba(56, 68, 91, 0.06);
    box-shadow: 0px 16px 40px 0px rgba(56, 68, 91, 0.06);
    border: none !important;
    border-radius: 20px;
    margin-bottom: 15px;
    padding: 10px;
    color: #1a1a1a;
}

#wpmtst_submit_testimonial {
    background: #EF4136;
    border-radius: 4px;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding: 13px 28px;
    border: none;
}

.faq details {
    padding: 15px;
    border-radius: 24px;
    background: #F6F6F6;
    -webkit-box-shadow: 0px 16px 40px 0px rgba(56, 68, 91, 0.06);
    box-shadow: 0px 16px 40px 0px rgba(56, 68, 91, 0.06);
    margin-bottom: 15px;
}

.faq details[open] {
    background: #F6F6F6;
}

.faq details p {
    margin-top: 15px;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 24px;
}

.faq details>summary {
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #EF4136;
    background: #FFFFFF;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 28px;
    font-weight: 100;
}

.faq details[open] summary:after {
    content: "-";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #EF4136;
    background: #fff;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 28px;
    font-weight: 100;
}

.content-contacts span {
    color: #EF4136;
}

.banner-row {
    color: #fff;
    width: 50%;
}

.banner-title {
    font-weight: bold;
    font-size: 42px;
    line-height: 42px;
    text-transform: uppercase;
}

.banner-value {
    font-weight: 500;
    font-size: 21px;
    line-height: 31px;
}

.banner-row .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}
.payments-list {
    position: absolute;
    right: 0;
    bottom: 0;
    filter: grayscale(1) brightness(0.8);
}
.payments-list__inner{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}
.payments-list__item{
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payments-list__item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}