@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html{
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body{
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px !important;
    line-height: 150%;
    font-style: normal;
    color: rgba(149, 174, 180, 1);
    background-color: rgba(47, 61, 70, 1);
    cursor: default;
}

.section{
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: rgba(37, 49, 58, 1);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    position: relative;
    overflow: hidden;
}

h1, h2, h3, h4, h5, .title {
  font-weight: 900;
  line-height: 1.2;
  font-size: 24px;
  color: rgba(55, 197, 158, 1);
  text-transform: uppercase;
}

h1, .title.general {
  font-size: clamp(24px, 4vw, 32px);
  color: rgba(255, 255, 255, 1);
}

h2, .title.high {
  font-size: clamp(22px, 3.6vw, 24px);
}

h3, .title.medium {
  font-weight: 700;
  font-size: clamp(18px, 3.2vw, 20px);
  color: rgba(255, 255, 255, 1);
}

h4, .title.low {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  color: rgba(55, 197, 158, 1) !important;
}

h5, .title.minimal{
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  color: rgba(255, 255, 255, 1);
  text-transform: initial;
}

.sidebar__title{
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: rgba(255, 255, 255, 1);
}

.button{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    display: block;
    padding: 10px 24px;
    min-height: 40px;
    min-width: 120px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    background-color: rgba(55, 197, 158, 1);
    color: rgba(255, 255, 255, 1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-transform: capitalize;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
}

.button.install{
    min-height: 60px;
    min-width: 260px;
    font-weight: 900;
    font-size: 14px;
    line-height: 16px;
    color: rgba(55, 197, 158, 1);
    background-color: rgba(30, 54, 56, 1);
    border: 1px solid rgba(55, 197, 158, 1);
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 12px;
    padding: 14px 20px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.button.install span{
    min-width: 174px;
    text-align: center;
    text-transform: uppercase;
}

.button:hover, .button:focus {
    -ms-transform: scale(1.07);
        transform: scale(1.07);
    -webkit-transform: scale(1.07);
}

.current{
    color: rgba(55, 197, 158, 1);
}

.list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.background{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
}

.background img{
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
    width: 100%;
    height: 100%;
}

.logo{
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    border: none;
}

.logo:hover, .logo:focus {
    -ms-transform: scale(1.07);
        transform: scale(1.07);
    -webkit-transform: scale(1.07);
}

/* header */
.header{
    background-color: rgba(37, 49, 58, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 80px;
    margin-bottom: 20px;
}

.header__container{
    max-width: 1600px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 30px;
    margin: 0 auto;
    position: relative;
}

.header__logo{
    margin-left: 14px;
}

.header__menu{
    margin-left: 135px;
}

.header__menu ul{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.header__menu ul li{
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.header__menu ul li:hover, .header__menu ul li:focus{
    color: rgba(55, 197, 158, 1);
}

.header__button-auth{
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-left: 20px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.header__button{
    text-transform: initial;
}

.header__button-login{
    background-color: transparent;
    min-width: 87px;
    border: 1px solid rgba(55, 197, 158, 1);
}

.header__button-register{
    min-width: 132px;
}

.header__lang{
    background-color: transparent;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    gap: 10px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
}

.main{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.main__content{
    max-width: 1280px;
    min-width: 0;
    width: -webkit-calc((100% - 260px));
    width: calc((100% - 260px));
    margin-left: auto;
}

/* mobile-menu */
.mobile-menu {
    position: fixed;
    top: 79px;
    left: 0;
    width: 100%;
    background-color: rgba(37, 49, 58, 1);
    -webkit-border-radius: 12px;
            border-radius: 12px;
    z-index: 50;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-menu__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
    opacity: 0;
    padding: 48px 20px;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu.active .mobile-menu__content {
    opacity: 1;
}

/* sidebar */
.sidebar{
    width: 240px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    position: fixed;
    margin-bottom: 20px;
    top: 100px;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    height: -webkit-calc(100vh - 120px);
    height: calc(100vh - 120px);
    overflow-y: scroll;
    scrollbar-width: none;
    z-index: 101;
}

.page-nav{
    margin-bottom: 20px;
    display: none;
    background-color: rgba(37, 49, 58, 1);
    -webkit-border-radius: 6px;
            border-radius: 6px;
}

.sidebar__buttons{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    padding: 0 12px;
}

.sidebar__buttons li{
    position: relative;
    width: 100%;
    min-height: 56px;
}

.sidebar__buttons li img{
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
}

.sidebar__buttons li:first-child img{
    right: 0 !important;
    left: auto;
}

.sidebar__button{
    width: 100% !important;
    height: 100%;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    background: -o-linear-gradient(left, #2CCEBB 0%, #5486C2 100%);
    background: -webkit-gradient(linear, left top, right top, from(#2CCEBB), to(#5486C2));
    background: linear-gradient(90deg, #2CCEBB 0%, #5486C2 100%);
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 12px;
    overflow: hidden;
}

.sidebar__button span{
    width: 130px;
}

.sidebar__buttons li:first-child{
    margin-bottom: 12px;
}

.sidebar__buttons li:first-child .sidebar__button{
    background: rgba(36, 71, 79, 1);
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
}

.sidebar__buttons li:first-child .sidebar__button span{
    text-transform: initial;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
}

.sidebar__buttons li:first-child .sidebar__button span > span{
    font-weight: 400;
    font-size: 9px;
    line-height: 100%;
}

.sidebar__quicklinks{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 0 12px 15px 12px;
}

.sidebar__quicklinks li a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    font-family: 700;
    font-size: 14px;
    line-height: 100%;
    color: rgba(255, 255, 255, 1);
}

.sidebar__table-content{
    padding: 12px;
}

.sidebar__title{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 8px;
    cursor: pointer;
    padding: 6.5px 0;
    margin-bottom: 16px;
    -webkit-transition: margin-bottom 0.3s ease;
    -o-transition: margin-bottom 0.3s ease;
    transition: margin-bottom 0.3s ease;
}

.sidebar__table-content:not(.open) .sidebar__title{
    margin-bottom: 0;
}

.sidebar__arrow{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.sidebar__table-content.open .sidebar__arrow {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}

.sidebar__table-content .sidebar__list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    font-size: 14px;
    line-height: 120%;
}

.sidebar__table-content .sidebar__list li a{
    color: rgba(149, 174, 180, 1);
    font-weight: 500;
    -webkit-transition: color 0.3s ease, font-weight 0.3s ease;
    -o-transition: color 0.3s ease, font-weight 0.3s ease;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.sidebar__table-content .sidebar__list li:hover a, .sidebar__table-content .sidebar__list li:focus a{
    color: rgba(152, 200, 255, 1);
}

/* hero */
.hero {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 380px;
    max-width: 1280px;
    margin: 0 auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 100px;
    margin-bottom: 20px;
    min-width: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.hero__info{
    position: relative;
    z-index: 10;
    color: rgba(255, 255, 255, 1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-transform: none;
    gap: 10px;
    padding: 20px;
    margin-left: 10px;
    max-width: 618px;
}

.hero__text{
    margin-top: 10px;
    margin-bottom: 10px;
}

.breadcrumbs{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.breadcrumbs li:last-child::before{
    content: '|';
    margin-right: 16px;
}

.hero__rating{
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
    text-transform: uppercase;
}

/* tables */
table{
    -webkit-border-radius: 6px;
            border-radius: 6px;
    overflow: hidden;
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

table thead tr{
    background-color: rgba(27, 38, 45, 1);
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: rgba(255, 255, 255, 1);
    min-height: 60px;
}

table thead th{
    text-align: left;
    padding: 10px 20px;
    vertical-align: middle;
}

table tbody td{
    padding: 8px 20px;
}

table:has(thead) tbody tr:nth-child(odd) {
    background-color: rgba(43, 54, 61, 1);
}

table:has(thead) tbody tr:nth-child(even) {
    background-color: rgba(27, 38, 45, 1);
}

table:not(:has(thead)) tbody tr:nth-child(odd) {
    background-color: rgba(27, 38, 45, 1);
}

table:not(:has(thead)) tbody tr:nth-child(even) {
    background-color: rgba(43, 54, 61, 1);
}

table tbody td ul:not([class]), table tbody td ol:not([class]){
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 8px !important;
}

table tbody td ul:not([class]) li, table tbody td ol:not([class]) li{
    position: relative !important;
    padding: 0 !important;
    padding-left: 18px !important;
    color: rgba(255, 255, 255, 1) !important;
    background: none !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
}

table tbody td ul:not([class]) li::before, table tbody td ol:not([class]) li::before{
    content: '' !important;
    width: 6px !important;
    height: 6px !important;
    -webkit-border-radius: 50% !important;
            border-radius: 50% !important;
    background-color: rgba(55, 197, 158, 1) !important;
    position: absolute !important;
    top: 50% !important;
    -webkit-transform: translateY(-50%) !important;
        -ms-transform: translateY(-50%) !important;
            transform: translateY(-50%) !important;
    left: 0 !important;
}

.table__wrap{
    overflow-x: auto;
    max-width: 100%;
    width: 100%;
    border: 1px solid rgba(55, 197, 158, 1);
    -webkit-border-radius: 6px;
            border-radius: 6px;
}

.table-wrap::-webkit-scrollbar {
    height: 3px;
}

.table-wrap::-webkit-scrollbar-track {
    -webkit-border-radius: 8px;
            border-radius: 8px;
}

.table-wrap::-webkit-scrollbar-thumb {
    -webkit-border-radius: 8px;
            border-radius: 8px;
}

/* intro */
.intro__table{
    min-width: 356px;
    color: rgba(255, 255, 255, 1);
}

/* insights */
.insights__table{
    color: rgba(255, 255, 255, 1);
    min-width: 400px;
}

/* requirements */
.requirements__table{
    color: rgba(255, 255, 255, 1);
    min-width: 400px;
}

/* slots */
.slots__table{
    min-width: 600px;
}
/* rating */
.rating__table{
    min-width: 615px;
}

.rating__table th{
    white-space: nowrap;
}

/* games */
.games__table{
    min-width: 615px;
}

/* vip */
.vip__table{
    min-width: 485px;
}

.bonus .vip__table{
    min-width: 340px;
}

/* loyalty */
.bonus .loyalty__table{
    min-width: 340px;
}

.betting .loyalty__table{
    min-width: 450px;
}

/* bonuses */
.bonuses__table{
    min-width: 550px;
}

/* lists */
.providers__list, .payment__list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
}

.providers__list li, .payment__list li{
    background: -o-linear-gradient(left, #436FA4 21.29%, #278D71 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(21.29%, #436FA4), to(#278D71));
    background: linear-gradient(90deg, #436FA4 21.29%, #278D71 100%);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    padding: 14px 20px 14px 58px;
    font-weight: 700;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    position: relative;
}

ol.providers__list, ol.payment__list{
    counter-reset: item;
    list-style: none;
}

ol.providers__list li, ol.payment__list li{
    counter-increment: item;
}

ul.providers__list li::before, ul.payment__list li::before{
    content: '';
    width: 18px;
    height: 18px;
    background-image: url('../img/list.svg');
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

ol.providers__list li::before, ol.payment__list li::before{
    content: counter(item, decimal-leading-zero) "";
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    font-weight: 700;
    font-size: 16px;
    color: rgba(55, 197, 158, 1);
    line-height: 150%;
}

.section ul:not([class]){
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
}

.section ol:not([class]){
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;

    counter-reset: item;
    list-style: none;
}

.section ul:not([class]) li{
    background: -o-linear-gradient(left, #436FA4 21.29%, #278D71 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(21.29%, #436FA4), to(#278D71));
    background: linear-gradient(90deg, #436FA4 21.29%, #278D71 100%);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    padding: 14px 20px 14px 58px;
    font-weight: 700;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    position: relative;
}

.section ol:not([class]) li{
    background: -o-linear-gradient(left, #436FA4 21.29%, #278D71 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(21.29%, #436FA4), to(#278D71));
    background: linear-gradient(90deg, #436FA4 21.29%, #278D71 100%);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    padding: 14px 20px 14px 58px;
    font-weight: 700;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    position: relative;

    counter-increment: item;
}

.section ul:not([class]) li::before{
    content: '';
    width: 18px;
    height: 18px;
    background-image: url('../img/list.svg');
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.section ol:not([class]) li::before{
    content: counter(item, decimal-leading-zero) "";
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    font-weight: 700;
    font-size: 16px;
    color: rgba(55, 197, 158, 1);
    line-height: 150%;
}

/* intro */
.intro__info{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(55, 197, 158, 1);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: rgba(25, 35, 41, 0.8);
}

/* pros-cons, registration */
.pros-cons__data, .registration__info{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(55, 197, 158, 1);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: rgba(25, 35, 41, 0.8);
}

.pros-cons__info{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.pros-cons__table{
    width: -webkit-calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
    min-width: 0;
    outline: 1px solid rgba(55, 197, 158, 1);
    outline-offset: -1px;   
    -webkit-border-radius: 6px;   
            border-radius: 6px;
    color: rgba(255, 255, 255, 1);
}

.pros-cons__table thead th{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-transform: uppercase;
    gap: 16px;
    line-height: 16px;
}

.pros-cons__table tbody td{
    padding: 16px 44px 20px 44px;
    vertical-align: top;
}

/* banner */
.banner{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.banner__info{
    max-width: 713px;
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    font-weight: 600;
    font-size: 24px;
    line-height: 119%;
    color: rgba(252, 252, 252, 1);
    margin-left: 20px;
    position: relative;
    z-index: 10;
}

.banner__title{
    font-weight: 900;
    font-size: clamp(24px, 4vw, 32px) !important;
}

.banner__button{
    margin-top: 30px;
}

.banner__background img{
    -o-object-position: 30%;
       object-position: 30%;
}

/* installation */
.installation__info{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(55, 197, 158, 1);
    background-color: rgba(25, 35, 41, 1);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.installation__info > *:not(.installation__background){
    position: relative;
    z-index: 11;
    width: 75%;
}

/* download */
.download{
    min-height: 240px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 80px;
}

.download__button-group{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    z-index: 10;
}

.download__logo{
    padding: 16px 24px;
    background-color: rgba(30, 54, 56, 1);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    border: 1px solid rgba(55, 197, 158, 1);
}

.download__background img{
    -o-object-position: center;
       object-position: center;
}

/* bonuses, table-games */
.bonuses, .table-games{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 0.4);
}

.bonuses__list, .table-games__list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}

.bonuses__item, .table-games__item{
    padding: 20px;
    background-color: rgba(25, 35, 41, 0.9);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    border: 1px solid rgba(55, 197, 158, 1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    color: rgba(149, 174, 180, 1);
}

.bonuses > *:not(.bonuses__background), .table-games > *:not(.table-games__background){
    position: relative;
    z-index: 11;
}

.bonuses__background, .table-games__background{
    opacity: 0.6;
}

/* vip */
.vip__list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}

.vip__item{
    padding: 20px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    border: 1px solid rgba(55, 197, 158, 1);
    background-color: rgba(25, 35, 41, 0.8);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}

/* games */
.games__info{
    padding: 20px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    border: 1px solid rgba(55, 197, 158, 1);
    background-color: rgba(25, 35, 41, 0.8);
}

/* providers */
.providers__list, .payment__list{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px 20px;
}

.providers__list li, .payment__list li{
    width: -webkit-calc((100% - 40px) / 3);
    width: calc((100% - 40px) / 3);
}

/* support */
.support{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.support > *:not(.support__background){
    position: relative;
    z-index: 11;
}

/* faq */
.faq__list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}

.faq__item{
    -webkit-border-radius: 6px;
            border-radius: 6px;
    border: 1px solid transparent;
    overflow: hidden;
    -webkit-transition: border 0.3s ease;
    -o-transition: border 0.3s ease;
    transition: border 0.3s ease;
}

.faq__item.active{
    border: 1px solid rgba(55, 197, 158, 1);
}

.faq__question{
    padding: 15.5px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
    background: -o-linear-gradient(left, #436FA4 21.29%, #278D71 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(21.29%, #436FA4), to(#278D71));
    background: linear-gradient(90deg, #436FA4 21.29%, #278D71 100%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.faq__question h4, .faq__question .title.low{
    color: rgba(255, 255, 255, 1) !important;
}

.faq__answer{
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: rgba(27, 38, 45, 1);
}

.faq__item.active .faq__answer {
    opacity: 1;
    padding: 10px 20px;
}

.faq__arrow {
    -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
                flex-shrink: 0;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq__item.active .faq__arrow {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

/* reviews */
.reviews{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.reviews__list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 17px;
}

.reviews__item{
    width: -webkit-calc((100% - 34px) / 3);
    width: calc((100% - 34px) / 3);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 14px 20px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    background-color: rgba(43, 54, 61, 1);
    border: 1px solid rgba(34, 201, 157, 1);
    font-size: 15px;
    line-height: 135%;
}

.reviews__item:nth-child(odd){
    background-color: rgba(25, 35, 41, 1);
}

.reviews__name{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 1);
}

.reviews__stars{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
}

/* rating */
.rating__list{
    gap: 16px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.rating__list li{
    background: -o-linear-gradient(left, #436FA4 21.29%, #278D71 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(21.29%, #436FA4), to(#278D71));
    background: linear-gradient(90deg, #436FA4 21.29%, #278D71 100%);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    padding: 20px 8px;
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    width: -webkit-calc((100% - 64px) / 5);
    width: calc((100% - 64px) / 5);
    min-height: 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-align: center;
}

.rating__grade{
    padding: 8px 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/* opinion */
.opinion{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 380px;
}

.opinion__info{
    width: 75%;
    max-width: 948px;
    padding: 20px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    background-color: rgba(25, 35, 41, 0.9);
    border: 1px solid rgba(55, 197, 158, 1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-left: auto;
    position: relative;
    z-index: 11;
}

.opinion__background img{
    -o-object-position: left;
       object-position: left;
}

/* welcome */
.welcome{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 0.6);
}

.welcome > *:not(.welcome__background){
    position: relative;
    z-index: 11;
}

.welcome__list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}

.welcome__item{
    padding: 20px;
    background-color: rgba(25, 35, 41, 0.9);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    border: 1px solid rgba(55, 197, 158, 1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    color: rgba(149, 174, 180, 1);
}

.welcome__background{
    opacity: 0.7;
}

/* reload, offers, loyalty, cashback, experience, features, interface, tournaments */
.reload__info, .offers__info, .loyalty__info, .vip__info, .cashback__item, .experience__info, .features__info, .interface__info, .tournaments__info{
    padding: 20px;
    background-color: rgba(25, 35, 41, 0.8);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    border: 1px solid rgba(55, 197, 158, 1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}

.cashback__item{
    background-color: rgba(25, 35, 41, 0.9);
}

/* loyalty, cashback, features, experience */
.loyalty, .cashback, .features, .experience{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.experience{
    color: rgba(255, 255, 255, 1);
}

.loyalty:has(.loyalty__background){
    color: rgba(255, 255, 255, 1);
    min-height: 244px;
}

.loyalty > *:not(.loyalty__background), .cashback > *:not(.cashback__background), .features > *:not(.features__background),
.experience > *:not(.experience__background){
    position: relative;
    z-index: 11;
}

.experience__info{
    position: relative;
    z-index: 11;
    padding: 20px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    border: 1px solid rgba(55, 197, 158, 1);
    background-color: rgba(25, 35, 41, 0.9);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    color: rgba(149, 174, 180, 1);
}

.loyalty:has(.loyalty__background) > *:not(.loyalty__background){
    max-width: 640px;
    width: 50%;
}

.cashback__list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}

/* responsibility, register */
.responsibility, .register{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.register{
    min-height: 420px;
}

.responsibility__info, .register__info{
    position: relative;
    z-index: 11;
    padding: 20px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    border: 1px solid rgba(55, 197, 158, 1);
    background-color: rgba(25, 35, 41, 0.9);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    width: 70%;
}

.app .responsibility__info{
    margin-left: auto;
}

.app .responsibility__background img{
    -o-object-position: left;
       object-position: left;
}

/* mobile, requirements */
.requirements{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 1);
}

.mobile__info,
.requirements__info{
    padding: 20px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    border: 1px solid rgba(55, 197, 158, 1);
    background-color: rgba(25, 35, 41, 0.9);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    overflow: hidden;
}

.requirements__info{
    color: rgba(149, 174, 180, 1);
}

.mobile__info > *:not(.mobile__background),
.requirements > *:not(.requirements__background){
    position: relative;
    z-index: 11;
}

.mobile__info > *:not(.mobile__background){
    width: 75%;
}

.requirements__background{
    opacity: 0.7;
}

/* traditional, esports, specialty */
.traditional__info, .esports__info, .specialty__info{
    padding: 20px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    border: 1px solid rgba(55, 197, 158, 1);
    background-color: rgba(25, 35, 41, 0.8);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    overflow: hidden;
}

.traditional__info > *:not(.traditional__background), .esports__info > *:not(.esports__background){
    position: relative;
    z-index: 11;
}

.traditional__info:has(.traditional__background) > *:not(.traditional__background),
.esports__info:has(.esports__background) > *:not(.esports__background){
    width: 75%;
    color: rgba(255, 255, 255, 1);
}

/* footer */
.footer{
    width: 100%;
    max-width: 1600px;
    padding: 0 30px;
    margin: 0 auto;
}

.footer__container{
    width: -webkit-calc(100% - 260px);
    width: calc(100% - 260px);
    max-width: 1280px;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding: 32px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    background-color: rgba(16, 23, 29, 1);
}

.footer__countries{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.footer__countries a{
    padding: 12px 16px;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    background-color: rgba(24, 32, 39, 1);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    color: rgba(149, 174, 180, 1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer__countries li:hover a, .footer__countries li:focus a{
    color: rgba(255, 255, 255, 1);
}

.footer__menu{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    gap: 40px;
}

.footer-menu__item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    font-size: 14px;
    line-height: 200%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 180px;
    min-width: 140px;
}

.footer__category{
    text-transform: capitalize;
    font-weight: 700;
    font-size: 16px;
    line-height: 128%;
    color: rgba(255, 255, 255, 1);
}

.footer-item__list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

.footer-item__list li:hover a, .footer-item__list li:focus a{
    text-decoration: underline;
}

.footer__info{
    width: 100%;
    background-color: rgba(24, 32, 39, 1);
    -webkit-border-radius: 6px;
            border-radius: 6px;
    padding: 20px 38px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 18px;
    margin-bottom: 18px;
}

.footer__info p{
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: rgba(149, 174, 180, 1);
    max-width: 155px;
}

.footer__payments{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 605px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.footer__info .button{
    font-size: 13px;
    line-height: 120%;
}

.footer__payments img{
    height: 32px;
    width: auto;
}

.footer__extra{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 35px;
    font-size: 12px;
    line-height: 120%;
}

.footer-extra__data{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}

.footer__image{
    margin: 0 auto;
}

/* scroll-up */
.scroll-up{
    width: 42px;
    height: 42px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
    -webkit-box-shadow: 10px 10px 10px 10px rgba(14, 24, 17, 0.25);
            box-shadow: 10px 10px 10px 10px rgba(14, 24, 17, 0.25);
    -webkit-transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s ease;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s ease;
    -o-transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease, -webkit-transform 0.3s ease;
}

.scroll-up:hover, .scroll-up:focus {
    -webkit-transform: scale(1.07);
        -ms-transform: scale(1.07);
            transform: scale(1.07);
}

.scroll-up.show {
    opacity: 1;
}

.scroll-up.hide {
    opacity: 0;
}