@import url('./fonts.css');

:root {
    --accent-color: #BE402D;
    --black-color: #0C111F;
    --black-color-light: #636670;
    --grey-color: #848997;
    --grey-color-light: #DDDEE1;
    --white-color: #FFFFFF;

    --pros-color: #31B464;
    --cons-color: #C3244B;

    --font-primary: "Catamaran", sans-serif;;
    --font-secondary: "Rubik", sans-serif;;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--white-color);
    font-family: var(--font-secondary);
}
h1, h2, h3, .h1, .h2, .h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--black-color);
}
h1, .h1 {
    margin: 0 0 30px;
    font-size: 60px;
    line-height: 66px;
    vertical-align: middle;
}
h2, .h2 {
    margin: 0 0 30px;
    font-size: 40px;
    line-height: 46px;
    vertical-align: middle;
}
h3, .h3 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 34px;
    vertical-align: bottom;
}
h4, .h4 {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    vertical-align: middle;
}
p, .p, .p-m {
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    color: var(--black-color);
}
p, .p {
    font-weight: 400;
    color: var(--black-color-light);
}
.p-m {
    font-weight: 600;
}
.caption {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
@media (max-width: 991px) {
    h1, .h1 {
        margin-bottom: 20px;
        font-size: 40px;
        line-height: 46px;
    }
    h2, .h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 36px;
    }
    h3, .h3 {
        font-size: 24px;
        line-height: 26px;
    }
    h4, .h4 {
        font-size: 20px;
        line-height: 26px;
    }
    p, .p, .p-m {
        font-size: 16px;
        line-height: 22px;
    }
    .caption {
        font-size: 12px;
        line-height: 16px;
    }
}
ul, ol {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}
li {
    margin: 0;
    padding: 0;
}
ul li {
    position: relative;
    padding-left: 34px;
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    color: var(--black-color-light);
}
ul li::before {
    content: "➤";
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--white-color);
}
ul li a {
    color: inherit;
}
ol {
    counter-reset: ol-num;
}
ol li {
    position: relative;
    padding-left: 36px;
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    color: var(--black-color-light);
    counter-increment: ol-num;
}
ol li::before {
    content: counter(ol-num);
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50px;
    background-color: var(--accent-color);
    color: var(--white-color);
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
}
ol li b {
    color: var(--black-color);
}
@media (max-width: 991px) {
    ul li {
        font-size: 16px;
        line-height: 22px;
    }
}
button {
    border: 0;
    height: fit-content;
    cursor: pointer;
}
.accent-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    width: fit-content;
    border-radius: 10px;
    background-color: var(--accent-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--white-color);
    text-decoration: none;
    text-wrap: nowrap;
}

/* table */
table {
    width: 100%;
    border-collapse: collapse;
}
table thead tr th {
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    color: var(--black-color);
    background-color: var(--grey-color-light);
    text-align: left;
}
table thead tr th:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
table thead tr th:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
table tbody tr td {
    padding: 19px 10px 5px 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    color: var(--black-color-light);
    border-bottom: 1px solid var(--grey-color-light);
}
@media (max-width: 991px) {
    section {
        margin-bottom: 30px;
    }
    table thead tr th {
        font-size: 16px;
        line-height: 22px;
    }
    table tbody tr td {
        font-size: 16px;
        line-height: 22px;
    }
}

/* sections */
section {
    margin-bottom: 60px;
}
.container {
    max-width: 1530px;
    margin: 0 auto;
    padding: 0 16px;
}
@media (max-width: 991px) {
    section {
        margin-bottom: 30px;
    }
}

/* blockquote */
blockquote {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--grey-color-light);
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: var(--black-color);
}
blockquote::before {
    content: "";
    min-width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    mask-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_109_2855)'%3E%3Cpath d='M8.79 17.5C10.5206 17.5 12.2123 18.0132 13.6512 18.9746C15.0902 19.9361 16.2117 21.3027 16.8739 22.9015C17.5362 24.5004 17.7095 26.2597 17.3719 27.957C17.0343 29.6544 16.2009 31.2135 14.9772 32.4372C13.7535 33.6609 12.1944 34.4943 10.497 34.8319C8.79971 35.1695 7.04037 34.9962 5.44152 34.3339C3.84267 33.6717 2.4761 32.5502 1.51464 31.1112C0.553179 29.6723 0.04 27.9806 0.04 26.25L0 25C0 20.3587 1.84374 15.9075 5.12563 12.6256C8.40752 9.34374 12.8587 7.5 17.5 7.5V12.5C15.8578 12.4956 14.2309 12.8168 12.7136 13.445C11.1962 14.0732 9.81849 14.996 8.66 16.16C8.20967 16.6093 7.79429 17.0924 7.4175 17.605C7.86583 17.5333 8.3225 17.4975 8.7875 17.4975L8.79 17.5ZM31.29 17.5C33.0206 17.5 34.7123 18.0132 36.1512 18.9746C37.5902 19.9361 38.7117 21.3027 39.3739 22.9015C40.0362 24.5004 40.2095 26.2597 39.8719 27.957C39.5343 29.6544 38.7009 31.2135 37.4772 32.4372C36.2535 33.6609 34.6944 34.4943 32.997 34.8319C31.2997 35.1695 29.5404 34.9962 27.9415 34.3339C26.3427 33.6717 24.9761 32.5502 24.0146 31.1112C23.0532 29.6723 22.54 27.9806 22.54 26.25L22.5 25C22.5 20.3587 24.3437 15.9075 27.6256 12.6256C30.9075 9.34374 35.3587 7.5 40 7.5V12.5C38.3578 12.4956 36.7309 12.8168 35.2136 13.445C33.6962 14.0732 32.3185 14.996 31.16 16.16C30.7097 16.6093 30.2943 17.0924 29.9175 17.605C30.3658 17.5333 30.8233 17.5 31.29 17.5Z' fill='%23394D84'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_109_2855'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    mask-position: center top;
    mask-repeat: no-repeat;
    mask-size: contain;
}
@media (max-width: 991px) {
    blockquote {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        font-size: 20px;
    }
}

/* header */

header {
    border-bottom: 1px solid var(--grey-color-light);
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
}
header .container .header-logo {
    max-height: 58px;
    width: auto;
}
header .container .mobile-menu-toggle {
    display: none;
}
header .container .mobile-menu-toggle > div {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
header .container .mobile-menu-toggle .mobile-menu-close-icon {
    display: none;
}
header .container .header-menu nav > ul {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row;
}
header .container .header-menu nav > ul > li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    font-weight: 600;
    cursor: pointer;
    color: var(--black-color);
    transition: all .17s;
}
header .container .header-menu nav > ul > li::before {
    content: none;
}
header .container .header-menu nav > ul li:hover {
    color: var(--accent-color);
}
header .container .header-menu nav > ul > li a {
    text-decoration: none;
}
header .container .header-menu nav > ul > li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
header .container .header-menu nav > ul > li:hover > span {
    transform: rotate(180deg);
}
header .container .header-menu nav > ul > li .sub-menu {
    position: absolute;
    display: none;
    flex-direction: column;
    top: calc(100%);
    right: 0;
    width: max-content;
    border-radius: 10px;
}
header .container .header-menu nav > ul > li:hover .sub-menu {
    display: flex;
    gap: 0;
    padding-top: 10px;
}
header .container .header-menu nav > ul > li .sub-menu li {
    background-color: var(--grey-color-light);
    padding: 8px 14px;
}
header .container .header-menu nav > ul > li .sub-menu li:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
header .container .header-menu nav > ul > li .sub-menu li:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
header .container .header-menu nav > ul > li .sub-menu li::before {
    content: none;
}
header .container .header-menu .menu-buttons {
    display: none;
    align-items: center;
    gap: 20px;
}
.menu-buttons .lang-btn {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    width: fit-content;
    border-radius: 50px;
    background-color: var(--grey-color-light);
    cursor: pointer;
}
.menu-buttons .lang-btn span {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}
header .container .header-menu .header-paragraph {
    display: none;
}
@media (max-width: 991px) {
    header.active {
        position: fixed;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--white-color);
        z-index: 1000000;
        overflow: auto;
    }
    header .container {
        display: grid;
        grid-template-areas: 
            'header-logo mobile-menu-toggle'
            'header-menu header-menu';
    }
    header .container .header-logo {
        grid-area: header-logo;
    }
    header .container .mobile-menu-toggle {
        grid-area: mobile-menu-toggle;
        display: flex;
        align-items: center;
        justify-content: center;
        justify-self: flex-end;
        width: 34px;
        height: 34px;
        background-color: var(--accent-color);
        border-radius: 50%;
    }
    header.active .container .mobile-menu-toggle .mobile-menu-open-icon {
        display: none;
    }
    header.active .container .mobile-menu-toggle .mobile-menu-close-icon {
        display: flex;
    }
    header .container .header-menu {
        grid-area: header-menu;
        display: none;
        padding: 30px 0;
    }
    header.active .container .header-menu {
        display: block;
    }
    header .container .header-menu nav {
        margin-bottom: 20px;
    }
    header .container .header-menu nav > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    header .container .header-menu nav > ul > li {
        display: grid;
        grid-template-columns: 1fr .1fr;
        grid-template-areas: 
            "name chevron"
            "list list";
        padding-bottom: 16px;
        width: 100%;
        border-bottom: 1px solid var(--grey-color-light);
    }
    header .container .header-menu nav > ul > li.open > span {
        transform: rotate(180deg);
    }
    header .container .header-menu nav > ul > li .sub-menu {
        display: none;
        position: relative;
        top: auto;
        gap: 0;
        margin-top: 5px;
    }
    header .container .header-menu nav > ul > li.open .sub-menu {
        display: flex;
        width: -webkit-fill-available;
    }
    header .container .header-menu nav > ul > li .sub-menu li {
        width: -webkit-fill-available;
        background-color: transparent;
    }
    header .container .header-menu nav > ul > li .sub-menu li a {
        display: block;
        width: -webkit-fill-available;
    }
    header .container .header-menu .menu-buttons {
        display: grid;
        grid-template-columns: 1fr .1fr;
        grid-template-areas: 
            "login lang-btn"
            "lang-list lang-list";
    }
    header .container .header-menu .menu-buttons .btn {
        grid-area: login;
        flex: 1;
        width: -webkit-fill-available;
    }
    header .container .header-menu .menu-buttons .lang-btn {
        grid-area: lang-btn;
    }
    header .container .header-menu .menu-buttons .lang-btn svg {
        transition: all .2s;
    }
    header .container .header-menu .menu-buttons.open .lang-btn svg {
        transform: rotate(180deg);
    }
    header .container .header-menu .menu-buttons .language_block {
        grid-area: lang-list;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
    }
    header .container .header-menu .menu-buttons.open .language_block {
        max-height: 500px; 
        opacity: 1;
    }
    header .container .header-menu .menu-buttons .language_block li {
        padding: 10px;
        background-color: var(--grey-color-light);
        border-radius: 10px;
    }
    header .container .header-menu .menu-buttons .language_block li::before {
        content: none;
    }
    header .container .header-menu .menu-buttons .language_block li a {
        text-decoration: none;
    }
    header .container .header-menu .header-paragraph {
        display: block;
        margin-top: 20px;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        color: var(--grey-color);
    }
}

.hero-section {
    margin: 24px 0;
}
.hero-section .breadcrumbs {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--grey-color);
}
.hero-section .breadcrumbs a {
    color: var(--grey-color);
    text-decoration: none;
}
.hero-section .breadcrumbs span {
    color: var(--black-color);
    cursor: default;
}
.hero-section h1 {
    text-align: center;
}
.hero-section .hero-section-paragraph {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero-section .hero-section-paragraph .hero-section-paragraph-content {
    color: var(--black-color-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;     
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.hero-section .hero-section-paragraph .hero-section-paragraph-content.open {
    -webkit-line-clamp: none;
}
.hero-section .hero-section-paragraph .show-more {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: var(--accent-color);
    transition: all .17s;
}
.hero-section .hero-section-paragraph .show-more span {
    color: var(--accent-color);
}
.hero-section .hero-section-paragraph .show-more:hover {
    color: var(--black-color);
}
.hero-section .hero-section-paragraph .show-more svg {
    transition: all .2s;
}
.hero-section .hero-section-paragraph .show-more svg path {
    stroke: var(--accent-color);
}
.hero-section .hero-section-paragraph .show-more:hover svg path {
    color: var(--black-color);
}
@media (max-width: 991px) {
    .hero-section h1 {
        text-align: left;
    }
    .hero-section .hero-section-paragraph .hero-section-paragraph-content {
        align-self: flex-start;
        text-align: left;
    }
    .hero-section .hero-section-paragraph .show-more {
        align-self: flex-end;
    }
}

footer {
    background-color: var(--black-color);
}
footer .footer--nav {
    display: grid;
    grid-template-columns: .4fr 1fr 1fr .7fr;
    gap: 60px;
    padding: 30px 0;
    border-bottom: 1px solid var(--black-color-light);
}
footer .footer--nav nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 20px;
}
footer .footer--nav nav ul li {
    color: var(--white-color);
    padding: 0;
}
footer .footer--nav nav ul li::before {
    content: none;
}
footer .footer--nav nav ul li a {
    text-decoration: none;
}
footer .menu-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: fit-content;
    column-gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap;
}
footer .menu-buttons .accent-btn {
    color: #E3E3E3;
}
footer .menu-buttons .language_block {
    position: relative;
}
footer .menu-buttons .language_block .lang-btn {
    background-color: var(--black-color-light);
    color: var(--white-color);
}
footer .menu-buttons .language_block .lang-list {
    position: absolute;
    display: none;
    bottom: calc(100% + 8px);
    right: 0;
    width: 100px;
    padding: 8px;
    background-color: var(--black-color-light);
    border-radius: 8px;
}
footer .menu-buttons .language_block.open .lang-list {
    display: flex;
}
footer .menu-buttons .language_block .lang-list li {
    width: -webkit-fill-available;
    padding: 0;
    color: var(--white-color);
}
footer .menu-buttons .language_block .lang-list li::before {
    content: none;
}
footer .menu-buttons .language_block .lang-list li a {
    display: block;
    width: -webkit-fill-available;
    text-decoration: none;
}
footer .menu-buttons .language_block .lang-btn svg {
    transition: all .2s;
}
footer .menu-buttons .language_block.open .lang-btn svg {
    transform: rotate(180deg);
}
footer .menu-buttons .language_block .lang-btn svg path {
    stroke: var(--white-color);
}
footer .footer-logos--list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 30px 0;
    border-bottom: 1px solid var(--black-color-light);
}
footer .footer--paragraph {
    font-size: 14px;
    line-height: 18px;
    text-align: right;
    color: var(--grey-color);
}
footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}
footer .footer-logo img {
    height: fit-content;
    width: auto;
}
footer .footer--info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}
footer .footer--info .footer-copyright {
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    color: var(--grey-color);
    cursor: default;
}
footer .footer--info ul {
    flex-direction: row;
    gap: 24px;
}
footer .footer--info ul li {
    padding: 0;
    color: var(--grey-color);
}
footer .footer--info ul li::before {
    content: none;
}
footer .footer--info ul li a {
    text-decoration: none;
}

@media (max-width: 991px) {
    footer .footer--nav {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    footer .footer--nav nav ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    footer .footer--nav .footer--paragraph {
        text-align: center;
        font-size: 12px;
        line-height: 16px;
    }
    footer .menu-buttons {
        width: 100%;
    }
    footer .menu-buttons .accent-btn {
        flex: 1;
    }
    footer .footer--info {
        flex-direction: column-reverse;
        gap: 12px;
    }
    footer .footer--info .footer-copyright {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        text-align: center;
        vertical-align: middle;
    }
}

/* cookies */

.cookies {
    display: none;
}
.cookies.show {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: -webkit-fill-available;
    padding: 20px;
    z-index: 1000;
    background-color: var(--black-color);
}
.cookies span {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    color: var(--white-color);
}
.cookies .btn {
    border-radius: 50px;
}

@media (max-width: 991px) {
    .cookies {
        flex-direction: column;
        padding: 12px 16px;
    }
    .cookies .btn {
        width: -webkit-fill-available;
    }
}

/* best casinos */

.best-casinos-section .best-casinos-section-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.best-casinos-section .best-casinos-section-list .best-casino {
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 9px;
    border: 1px solid var(--grey-color);
    border-radius: 10px;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr .6fr;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--white-color);
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-name {
    display: flex;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-name .best-casino-card--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 162px;
    width: 162px;
    height: 130px;
    background-color: var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-name .best-casino-card--logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-name .best-casino-card--text {
    padding: 0 20px 0 16px;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card--block_name {
    margin-bottom: 10px;
    color: var(--grey-color);
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-name .best-casino-card--text h3 {
    margin: 0 0 8px;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-name .best-casino-card--text .caption {
    color: var(--grey-color);
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-banner .best-casino-card--block_name {
    margin-bottom: 8px;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-banner--content {
    padding: 16px;
    background-color: #0B192B;
    border-radius: 10px;
    color: #FFFFFF;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-banner--content b {
    background-color: #0B192B;
    color: #22FEAF;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-payments {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-payments .best-casino-card--block_name {
    margin-bottom: 8px;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-payments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-payments-list .best-casino-card-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 5px;
    width: 68px;
    height: 34px;
    background-color: var(--grey-color-light);
    border-radius: 5px;
    overflow: hidden;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-payments-list .best-casino-card-payment img {
    width: fit-content;
    height: 100%;
    width: 100%;
}
.best-casinos-section .best-casinos-section-list .best-casino .play-btn {
    text-decoration: none;
    height: fit-content;
    align-self: center;
    margin: 0 10px 0 20px;
    width: -webkit-fill-available;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-additional {
    display: flex;
    gap: 10px;
    color: var(--grey-color);
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-additional svg {
    min-width: 20px;
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-additional svg path {
    stroke: var(--grey-color);
}
.best-casinos-section .best-casinos-section-list .best-casino .best-casino-additional-text .bookmaker-show-more {
    display: none;
}

@media (max-width: 991px) {
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-card {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 12px;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-name {
        flex-wrap: wrap;
        gap: 10px;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-name .best-casino-card--logo {
        max-height: 93px;
        border-radius: 8px;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-name .best-casino-card--text {
        padding: 0;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-name .best-casino-card--text h3 {
        margin-bottom: 1px;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-banner {
        padding: 0;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-banner--content {
        max-height: none;
        font-size: 24px;
        line-height: 26px;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-payments {
        padding: 0;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-payments-list {
        display: flex;
        flex-wrap: wrap;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-card-payments-list .best-casino-card-payment {
        max-width: 72px;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .play-btn {
        width: -webkit-fill-available;
        margin: 0;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-additional-text {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-additional-text .caption {
        display: -webkit-box;
        -webkit-line-clamp: 2;     
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-additional .caption.open {
        -webkit-line-clamp: none;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-additional-text .bookmaker-show-more {
        display: flex;
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-additional-text .bookmaker-show-more span {
        color: var(--accent-color);
    }
    .best-casinos-section .best-casinos-section-list .best-casino .best-casino-additional-text .bookmaker-show-more svg path {
        stroke: var(--accent-color);
    }
}

/* main content */

.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 0 100px 0;
}
@media (max-width: 991px) {
    .main-content {
        display: flex;
        flex-direction: column;
        margin: 30px 0 80px 0;
    }
}

/* table_of_content */

.table_of_content {
    height: fit-content;
    background-color: var(--grey-color-light);
    border-radius: 10px;
}
.table_of_content .table_of_content-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--black-color);
}
.table_of_content .table_of_content-head svg path {
    stroke: var(--black-color);
}
.table_of_content ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}
.table_of_content.open ul {
    padding: 10px 20px 30px 20px;
    max-height: 500px;
    opacity: 1;
}
.table_of_content ul li {
    position: relative;
    display: flex;
    gap: 8px;
    padding: 0;
}
.table_of_content ul li::before {
    content: "";
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.6001 16.8L13.9874 12.1547C14.2152 11.9135 14.204 11.5332 13.9624 11.3058L9.6001 7.20005' stroke='%23040A1B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
}
.table_of_content ul li a {
    color: var(--black-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-decoration: none;
    transition: all .17s;
}
.table_of_content ul li:hover a {
    color: var(--accent-color);
}
.table_of_content ul li:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.6001 16.8L13.9874 12.1547C14.2152 11.9135 14.204 11.5332 13.9624 11.3058L9.6001 7.20005' stroke='%23BE402D' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.table_of_content .table_of_content-show-less {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding: 0 20px 20px 20px;
    cursor: pointer;
}
.table_of_content .table_of_content-show-less .table_of_content-show-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    justify-self: flex-end;
    background-color: var(--accent-color);
    border-radius: 50%;
    transition: all .2s;
    transform: rotate(180deg);
}
.table_of_content.open .table_of_content-show-less .table_of_content-show-icon {
    transform: rotate(0);
}
@media (max-width: 991px) {
    .table_of_content {
        position: relative;
    }
    .table_of_content .table_of_content-head {
        padding: 12px;
        font-size: 16px;
        line-height: 22px;
    }
}

/* pros_cons */

.pros_cons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pros_cons .pros_cons-elem {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background-color: var(--grey-color-light);
}
.pros_cons .pros_cons-elem .pros_cons-elem-top {
    display: flex;
    align-items: center;
    gap: 20px;
}
.pros_cons .pros_cons-elem .pros_cons-elem-top--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white-color);
}
.pros_cons .pros_cons-elem.pros .pros_cons-elem-top--icon svg path {
    stroke: var(--pros-color);
}
.pros_cons .pros_cons-elem.cons .pros_cons-elem-top--icon svg path {
    stroke: var(--cons-color);
}
.pros_cons .pros_cons-elem .pros_cons-elem-top h3 {
    margin: 0;
}
.pros_cons .pros_cons-elem .pros_cons-elem-content ul {
    gap: 12px;
}
.pros_cons .pros_cons-elem .pros_cons-elem-content ul li {
    padding-left: 20px;
}
.pros_cons .pros_cons-elem .pros_cons-elem-content ul li::before {
    background-color: transparent;
    width: auto;
}
.pros_cons .pros_cons-elem.pros .pros_cons-elem-content ul li::before {
    color: var(--pros-color);
}
.pros_cons .pros_cons-elem.cons .pros_cons-elem-content ul li::before {
    color: var(--cons-color);
}

@media (max-width: 991px) {
    .pros_cons {
        display: flex;
        flex-direction: column;
    }
}

/* faq-block */

.faq-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-block .faq-block-elem {
    background-color: var(--grey-color-light);
    border-radius: 10px;
    padding: 16px;
}
.faq-block .faq-block-elem .faq-block-elem-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}
.faq-block .faq-block-elem .faq-block-elem-top .faq-block-elem--question {
    margin: 0;
}
.faq-block .faq-block-elem .faq-block-elem-top .faq-block-elem--toggle {
    position: relative;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent-color);
}
.faq-block .faq-block-elem .faq-block-elem-top .faq-block-elem--toggle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 14px;
    width: 2px;
    background-color: var(--white-color);
    transition: all .2s;
}
.faq-block .faq-block-elem .faq-block-elem-top .faq-block-elem--toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 2px;
    background-color: var(--white-color);
}
.faq-block .faq-block-elem.open .faq-block-elem-top .faq-block-elem--toggle::before {
    transform: translate(-50%, -50%) rotate(-90deg);
}
.faq-block .faq-block-elem .faq-block-elem--answer {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    color: var(--black-color-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}
.faq-block .faq-block-elem.open .faq-block-elem--answer {
    padding-top: 10px;
    max-height: 500px;
    opacity: 1;
}