@font-face {
    font-family: 'CircularStd-Book';
    src: url('./fonts/CircularStd-Book.woff2') format('woff2'),
    url('./fonts/CircularStd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CircularStd-Black';
    src: url('./fonts/CircularStd-Black.woff2') format('woff2'),
    url('./fonts/CircularStd-Black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'CircularStd-Book', sans-serif;
    font-style: normal;
    font-weight: normal;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #000000;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
}

.hidden {
    overflow: hidden;
}

.container {
    max-width: 675px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 16px 0 24px;
    }
}

.bg {
    position: relative;
    padding: 0px 0px 0px;
}

.bg-l, .bg-r {
    position: absolute;
    top: 0px;
    z-index: 3;
}

@media (max-width: 2500px) {
    .bg-l {
        left: -350px;
        top: 100px;
    }

    .bg-r {
        right: -350px;
        top: 100px;
    }
}

@media (min-width: 2500px) {
    .bg-l {
        left: -350px;
        top: 100px;
    }

    .bg-r {
        right: -350px;
        top: 100px;
    }
}

@media (max-width: 1920px) {
    .bg-l {
        left: -300px;
        top: 100px;
    }

    .bg-r {
        right: -300px;
        top: 100px;
    }
}

@media (max-width: 1500px) {
    .bg-l {
        left: -235px;
    }

    .bg-r {
        right: -235px;
    }
}

@media (max-width: 1400px) {
    .bg-l, .bg-r {
        max-width: 150px;
    }

    .bg-l {
        left: -160px;
    }

    .bg-r {
        right: -160px;
    }
}

@media (max-width: 1280px) {
    .bg-l, .bg-r {
        display: none;
    }
}

.card-rating {
    display: block;
    width: 86px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}


@media only screen and (max-width: 768px) {
    .card-rating {
        top: -8px;
        width: 76px;
    }
}

.star-full {
    max-width: 90px;
}

.star-full img {
    max-width: 100%;
}

.hero {
    padding: 66px 0 30px 0;
}

@media only screen and (max-width: 768px) {
    .hero {
        padding: 33px 0 30px 0;
    }
}

.title {
    font-family: 'CircularStd-Black', sans-serif;
    font-size: clamp(24px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    text-align: center;
}

.hero .text-block {
    margin: 0px 0px 0px;
}

.hero .hero-text p {
    font-family: 'CircularStd-Book', sans-serif;
    font-weight: normal;
    margin: 0px;
    font-size: 14px;
    line-height: 20px;
    color: #132a53;
}

.hero.item_1 .title {
    margin: 0;
}

@media (max-width: 990px) {
    .hero.item_1 .title {
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .hero.item_1 .title {
        max-width: 326px;
    }
}

.recent {
    background: #000;
}

.recent .list-wrapper .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.recent .card-list {
    margin: 0px;
}

.recent .card-item, .recent .card-item__main-inner {
    position: relative;
    min-height: 170px;
    background: #2c343a;
    border-radius: 40px;
}

@media only screen and (max-width: 768px) {
    .recent .card-item, .recent .card-item__main-inner {
        min-height: 112px;
    }
}

.recent .card-item .card-item__inner {
    padding: 32px;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100%;
    background-color: #232428;
    border-radius: 40px;
    transform: translate(-8px, -8px);
}

@media only screen and (max-width: 768px) {
    .recent .card-item .card-item__inner {
        padding: 22px 16px 22px 10px;
    }
}


.recent .card-item .card-item__inner .card-button {
    display: block;
    font-family: 'CircularStd-Black', sans-serif;
    font-weight: 700;
    padding: 12px 62px 12px 32px;
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #000;
    background-color: #cee5f2;
    border-radius: 20px;
    text-transform: uppercase;
}

.recent .card-item .card-item__inner .card-button:before {
    content: url("./card-button.svg");
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 42px;
    height: 99%;
    top: 50%;
    right: -5px;
    background-color: #94c2e6;
    border-radius: 100%;
    transform: translateY(-50%);
    transition: all ease .3s;
    z-index: 6;
}

.recent .card-item .card-item__bottom {
    display: none;
}

.recent .card-item .card-item__bottom img {
    max-width: 27px;
    max-height: 18px;
    border-radius: 4px;
}

@media only screen and (max-width: 768px) {
    .recent .card-item .card-item__bottom {
        margin: 8px 0 0 0;
        padding: 0 0 8px 0;
        display: none;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
}

@media only screen and (hover: hover) {
    .recent .card-item .card-item__inner .card-button:hover:before {
        right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .recent .card-item .card-item__inner .card-button {
        padding: 0;
        font-size: 0;
        width: 30px;
        height: 30px;
        right: -12px;
        border-radius: 100%;
    }

    .recent .card-item .card-item__inner .card-button:before {
        width: 100%;
        height: 100%;
        top: 50%;
        right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .recent ul.card-list-bottom {
        display: block;
    }
}

.recent ul.card-list-bottom .card-item .card-ranking {
    right: 0;
}

.recent ul.card-list-bottom .card-item .list-title {
    font-size: 16px;
}

.recent .card-item:not(:last-child) {
    margin: 0 0 30px 0;
}

.recent .card-item.additional_indentation:not(:last-child) {
    margin: 0 0 48px 0;
}

.recent .card-item .card-logo-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100px;
    width: 100%;
    min-height: 100px;
    max-height: 100px;
    flex-shrink: 0;
    background-color: #087c42;
    border-radius: 100%;
    border: 4px solid #2c343a;
}

@media only screen and (max-width: 768px) {
    .recent .card-item .card-logo-inner {
        max-width: 80px;
        min-height: 80px;
        max-height: 80px;
        border: 2px solid #2c343a;
    }
}

.recent .card-item .card-logo-inner img {
    max-width: 64px;
}

@media only screen and (max-width: 768px) {
    .recent .card-item .card-logo-inner img {
        max-width: 50px;
    }
}

.recent .card-item .card-rating img {
    max-width: 100%;
}

.recent ul.card-list .card-item:last-child {
    margin-bottom: 0;
}

.card-footer_show .recent .card-item, .card-footer_show .recent .card-item__main-inner {
    margin: 0 0 30px;
}

.recent .badge_new.card-item::before {
    background-image: url('../images/badges/L_NEW.svg');
    content: '';
    position: absolute;
    right: -7px;
    top: -7px;
    width: 89.53px;
    height: 91px;
    background-repeat: no-repeat;
    transform: rotate(90deg);
}

.recent .badge_nytt.card-item::before {
    background-image: url('../images/badges/L_NYTT.svg');
    content: '';
    position: absolute;
    right: -7px;
    top: -7px;
    width: 89.53px;
    height: 91px;
    background-repeat: no-repeat;
    transform: rotate(90deg);
}

.recent .badge_nyt.card-item::before {
    background-image: url('../images/badges/L_NYT.svg');
    content: '';
    position: absolute;
    right: -7px;
    top: -7px;
    width: 89.53px;
    height: 91px;
    background-repeat: no-repeat;
    transform: rotate(90deg);
}

.recent .badge_uusi.card-item::before {
    background-image: url('../images/badges/L_UUSI.svg');
    content: '';
    position: absolute;
    right: -7px;
    top: -7px;
    width: 89.53px;
    height: 91px;
    background-repeat: no-repeat;
    transform: rotate(90deg);
}

.recent .card-item .card-footer {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: #6c6c6c;
    padding: 0 0 0 20px;
}

@media only screen and (max-width: 768px) {
    .recent .card-item .card-footer {
        padding: 0;
        width: 100%;
        text-align: center;
    }
}

.recent .card-item .card-footer a {
    color: inherit;
}

.recent .card-item .list-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    margin: 0 0 8px 0;
    display: inherit;
    text-decoration: none;
}

@media only screen and (max-width: 991px) {
    .recent .card-item .list-title {
        font-size: 14px;
    }
}

.recent .card-item .list .item {
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 0 9px 0;
}

.recent .card-item .list .item:last-child {
    margin: 0px;
}

@media only screen and (max-width: 991px) {
    .recent .card-item .list .item {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        min-width: 170px;
    }
}

.recent .card-item .list .item .image, .recent .card-item .list .item .title {
    display: inline-block;
    vertical-align: middle;
}

.recent .card-item .list .item .image {
    margin: -2px 0 0 0;
    width: 14px;
    min-width: 14px;
    height: 14px;
}

@media screen and (max-width: 991px) {
    .recent .card-item .list .item .image {
        margin: 2px 0 0 0;
        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;
    }
}

.recent .card-item .list .item .title {
    font-family: 'CircularStd-Book', sans-serif;
    font-weight: normal;
    color: #e9e9e9;
    font-size: 15px;
    padding-left: 5px;
}

.recent .card-item .card-ranking {
    position: absolute;
    top: -1px;
    right: 16px;
    width: 38px;
    min-width: 38px;
    height: 54px;
    display: -webkit-box;
    display: -moz-flex;
    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;
    z-index: 10;
}


@media only screen and (max-width: 991px) {
    .recent .card-item .list .item .title {
        font-size: 14px;
    }

    .recent .card-item .card-ranking {
        right: 10px;
        width: 30px;
        min-width: 30px;
        height: 42px;
    }

    .recent .card-list-bottom .card-item .card-ranking {
        display: none;
    }

    .recent .card-item .card-ranking.medal {
        position: absolute;
        background: transparent;
        z-index: 10;
    }
}

.recent .card-item .card-ranking span {
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #132a53;
}

.recent .card-list-bottom .card-item .logo {
    min-height: 100px;
    border-radius: 16px;
}

@media only screen and (max-width: 768px) {
    .recent .card-list-bottom .card-item .logo {
        min-height: 76px;
    }
}

.recent .card-item .logo {
    margin-bottom: 22px;
    position: relative;
    width: 100%;
    display: flex;
    background-color: #000;
    border-radius: 20px;
}

.recent .card-item .logo img {
    width: auto;
    max-width: 72%;
    display: block;
    height: auto;
    /*max-height: 43%;*/
    max-height: 70px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.recent .card-item .button {
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 56px;
    background: #c9142f;
    color: #fff;
    -webkit-transition: 0.15s;
    transition: 0.15s;
    width: 100%;
    border-radius: 20px;
}

@media only screen and (max-width: 768px) {
    .recent .card-item .button {
        height: 44px;
    }
}

@media only screen and (max-width: 991px) {
    .recent .card-item .button {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        border-radius: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .recent .card-item .button {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .recent .card-item .button:hover {
        background: #EB525E;
    }
}

.recent .card-item .payments {
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-end;
    width: 105px;
    margin-bottom: -2px;
    margin-right: 42px;
    order: -1;
}

@media only screen and (max-width: 991px) {
    .recent .card-item .payments {
        margin: 15px 0px 0px;
        width: 100%;
        order: 1;
        justify-content: center;
    }
}

.recent .card-item .payments .item {
    margin: 0px 4px 4px 0px;
}

.recent .card-item .payments .item:nth-child(3n), .recent .card-item .payments .item:last-child {
    margin: 0px 0px 4px 0px;
}

.recent .card-item .payments .item .image {
    width: 30px;
}

.recent .card-item .payments .item .image img {
    display: block;
    border-radius: 2px;
}

.recent .block-l {
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
    width: 98%;
}

@media only screen and (max-width: 768px) {
    .recent .block-l {
        gap: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .recent .card-item .payments .item {
        margin: 0px 4px 0px 0px;
    }

    .recent .card-item .payments .item:nth-child(3n) {
        margin: 0px 2px 0px 0px;
    }
}

.recent .block-r {
    width: 36%;
}

@media screen and (max-width: 991px) {
    .recent .block-r {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer {
    margin: 33px 0 0 0;
    background: #2c343a;
}

.footer .f_right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 20px;
}

.footer .f_right .footer-logo {
    width: 35px;
}

.footer .f_right img {
    max-width: 144px;
    max-height: 34px;
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .footer .copyright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        padding: 10px 0px
    }

    .footer .f_right .footer-logo {
        width: 35px;
        margin-right: 0;
    }

    .footer .f_right a:not(.footer-logo) {
        display: none;
    }
}

.footer .copyright-icon {
    margin: 0 0 0 0;
    flex-shrink: 0;
}

@media only screen and (max-width: 991px) {
    .footer .copyright-icon {
        margin: 0px 20px 0px 0px;
    }
}

.footer .copyright-text {
    font-family: 'CircularStd-Book', sans-serif;
    font-size: 10px;
    line-height: 1.6;
    color: #ffffff;
}

.hero.with_img {
    padding: 55px 0px 20px 0px;
    margin: 0px;
}

.hero.with_img .title {
    align-items: baseline;
    display: flex;
    margin: 0px;
}

.hero.with_img .title img {
    margin-right: 10px;
    display: block;
}

@media only screen and (max-width: 991px) {
    .footer .copyright-text {
        text-align: left;
    }

    .recent .card-item .logo {
        width: 100%;
        min-height: 100px;
        margin-bottom: 16px;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;

    }

    .recent ul.card-list .list-title {
        margin-bottom: 10px;
    }

    .recent ul.card-list.top .list-title {
        margin-bottom: 0px;
        font-size: 16px;
    }

    .hero .title {
        margin: 0px;
    }

    .hero.with_img .title {
        font-size: 21px;
    }

    .hero.with_img {
        padding: 50px 0px 20px 0px;
        margin: 0px;
    }

    .item.paynplay {
        display: block;
    }
}

@media only screen and (max-width: 425px) {
    .hero.with_img .title {
        /*font-size: 17px;*/
        align-items: flex-end;
    }

    .hero.with_img .title img {
        /*margin-top: 5px;*/
        margin-bottom: 2px;
        /*max-width: 25px;*/
    }

    .lang-at .hero.with_img .title {
        font-size: 16px;
    }

    .lang-at .hero.with_img .title img {
        max-width: 25px;
    }

    /*.lang-en.index .hero.with_img .title {*/
    /*  font-size: 15px;*/
    /*}*/
    /*.lang-en.index .hero.with_img .title img {*/
    /*  max-width: 22px;*/
    /*}*/
}

@media only screen and (max-width: 767px) {
    .lang-sv .hero.top.item_2 {
        padding: 52px 0 28px 0;
    }

    .lang-en .hero.with_img .title {
        font-size: 19px;
    }

    .lang-da .hero.with_img .title {
        font-size: 17px;
    }
}

.footer .copyright .f_left {
    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: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.footer .container {
    padding: 40px 16px 40px 24px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 1024px) {
    .footer {
        margin: 66px 0 0 0;
    }
}

footer .copyright-text span.sep {
    font-size: 13px;
    display: inline-block;
    margin: 0px 5px;
}

footer .copyright-text br, footer .copyright-text a, footer .copyright-text span.sep {
    display: none !important;
}

@media only screen and (max-width: 991px) {
    footer .copyright-text br, footer .copyright-text a, footer .copyright-text span.sep {
        display: inline-block !important;
        font-family: inherit;
    }

    .desc {
        display: none !important;
    }
}

footer .copyright-text {
    padding: 0px 5px 0px 0px;
    font-family: inherit;
}

@media (min-width: 991px) {
    .recent .card-item .logo {
        min-height: 150px;
    }

    footer .copyright-text {
        padding: 0px 10px;
    }
}

footer .copyright-text span.hide-mob {
    display: inline-block !important;
}

@media only screen and (max-width: 991px) {
    footer .copyright-text br, footer .copyright-text span, footer .copyright-text a {
        display: inline-block !important;
    }

    footer .copyright-text span.hide-mob {
        display: none !important;
    }
}

.lang-da .card-button .btn {
    letter-spacing: 0.1em;
}

.flag {
    display: block;
    position: absolute;
    width: 144px;
    height: 110px;
    left: 26px;
    top: 10px;
    z-index: 1;
}

.flag img {
    /*max-width: 36px;*/
    /*width: 36px;*/
    height: 400%;
    width: 400%;
    vertical-align: middle;
    transform: scale(0.25);
    transform-origin: 0 0;
    max-height: -webkit-fill-available;
}

.tax-free {
    position: absolute;
    left: 67px;
    top: 10px;
    z-index: 1;
}

.tax-free img {
    height: 24px;
}

@media (max-width: 991px) {
    .tax-free {
        left: 36px;
        top: 4px;
    }

    .top .flag {
        /*position: relative;*/
        /*width: 0px;*/


        /*left: -4px;*/
        /*top: 36px;*/
        /*z-index: 1;*/
    }

    .lang-en .hero.with_img .title {
        font-size: 20px;
        line-height: 24px;
        align-items: center;
    }
}

@media (min-width: 450px) and (max-width: 991px) {
    .lang-en .hero.with_img .title {
        align-items: flex-end;
    }

    .lang-en .hero.with_img .title img {
        margin-bottom: 3px;
    }
}

@media only screen and (max-width: 991px) {
    .top .flag {
        /*position: relative;*/
        /*width: 0px;*/
        left: -4px;
        /*top: 0;*/
        top: 4px;
        z-index: 1;
    }

    .flag {
        display: block;
        /*position: relative;*/
        /*width: 0px;*/
        left: -5px;
        top: 0;
        z-index: 1;
    }
}

.recent .card-item .payments.count_2 .image.desktop {
    display: none;
}

.recent .card-item .payments.count_2 .image.mobile {
    display: block;
    width: 60px;
}

@media only screen and (min-width: 992px) {
    .recent .card-item .payments .item:only-child .image {
        width: 72px;
    }

    .recent .card-item .payments .item:only-child .image img {
        height: 43px;
        margin: 0 auto;
        margin-right: 0;
    }

    .recent .card-item .payments.count_2.trustly.paynplay {
        width: auto;
    }

    .recent .card-item .payments.count_2.trustly.paynplay .item .image {
        width: 47px;
    }

    .recent .card-item .payments.count_2 .item .image img {
        width: 100%;
    }

    .recent .card-item .payments.count_2 .image.desktop {
        display: block;
    }

    .recent .card-item .payments.count_2 .image.mobile {
        display: none;
    }

    .lang-en .recent .card-list .card-item .payments.count_2 .item .image {
        width: 47px;
    }
}

/*# sourceMappingURL=style.css.map */
@media only screen and (max-width: 375px) {
    .lang-en .hero.with_img .title {
        font-size: 17px;
    }

    .hero.with_img .title img {
        max-width: 25px;
    }

    .lang-at .hero.with_img .title {
        font-size: 15px;
    }

    .lang-sv .hero.with_img .title {
        font-size: 20px;
    }
}

.recent .hero.item_1 .title, .recent .title {
    text-align: left;
}

.recent .hero.item_1 .title, .recent .title {
    max-width: 100%;
}

.recent .card-item .card-footer {
    margin: 10px 0 0 0;
    padding: 0;
    position: static;
}

.recent .card-item .card-footer a {
    font-family: 'CircularStd-Book', sans-serif;
}

.card-item {
    background: transparent;
    border-radius: 0;
}

.footer {
    background-color: #232428;
}

.footer .copyright {
    height: unset;
}

.top-rated .card-item .card-footer, .recent .card-item .card-footer {
    margin: 10px 0 0 0;
    padding: 0;
    font-family: 'CircularStd-Book', sans-serif;
    position: static;
}

.footer-bottom-link a {
    font-family: 'CircularStd-Book', sans-serif;
    font-size: 14px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    color: #e9e9e9;
    text-underline-offset: 3px;
}

@media (hover: hover) {
    .footer-bottom-link a:hover {
        text-decoration: underline;
    }
}

.footer-bottom-link {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

@media screen and (min-width: 992px){
    .footer-bottom-link {
        flex-direction: row;
        gap: 30px;
    }
}

.footer-bottom-link a:hover {
    text-decoration: underline;
}

.footer .f_right .footer-logo {
    width: 80px;
}

.footer .copyright {
    max-width: 920px;
}

.footer .f_right .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 47%;
    max-width: 47%;
    width: 100%;
    min-height: 60px;
    max-height: 60px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

@media (min-width: 992px) {
    .hero.top.item_2 {
        padding-top: 66px;
    }

    .recent .card-item .list .item {
        max-width: 340px;
    }

    .footer .copyright {
        padding: 20px 0;
        height: unset;
    }

    .footer .f_right {
        margin: 0;
        flex-direction: row;
        gap: 16px;
    }

    .footer .copyright .copyright-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.04);
        border-radius: 10px;
    }

    .footer .f_right .footer-logo, .footer .copyright .copyright-icon {
        flex-shrink: 0;
        min-width: 138px;
        max-width: 138px;
        min-height: 46px;
        max-height: 46px;
    }

    .footer .f_right .footer-logo img, .footer .copyright .copyright-icon img {
        max-width: 112px;
        max-height: 30px;
        object-fit: contain;
    }
}

@media only screen and (max-width: 991px) {
    .footer .copyright .copyright-icon {
        margin-right: 0;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 47%;
        max-width: 47%;
        width: 100%;
        min-height: 60px;
        max-height: 60px;
        background-color: rgba(255, 255, 255, 0.04);
        border-radius: 10px;
    }

    .footer .f_right {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-left: 0;
    }

    .footer-bottom-link {
        margin-top: 20px;
    }
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #000;
}

.recent .card-item {
    background: transparent;
    min-height: unset;
    border-radius: 0;
}

.description {
    margin: 20px auto 0;
    font-family: 'CircularStd-Book', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #e9e9e9;
}

.cookie .container, .privacy .container, .terms .container {
    max-width: 975px;
}

.content {
    padding: 30px 0 60px;
    font-family: 'CircularStd-Book', sans-serif;
    color: #fff;
    line-height: 1.6;
}

.content h1, h2, h3, h4, h5, h6 {
    font-family: 'CircularStd-Book', sans-serif;
    font-weight: 700;
    color: #fff;
}

.content h1 {
    font-size: clamp(26px, 5vw, 34px);
}

.content h2 {
    font-size: clamp(22px, 4vw, 30px);
}

.content h3 {
    font-size: clamp(20px, 3.5vw, 28px);
}

.content h1:not(:first-child), .content h2:not(:first-child) {
    margin-top: 1.5em;
}

.content h1, .content h2 {
    margin-bottom: 0.5em;
}

.content ul, .content ol {
    margin-left: 20px;
}

.content ul {
    font-family: 'CircularStd-Book', sans-serif;
    list-style: disc;
}

.content ul li, .content ol li {
    font-family: 'CircularStd-Book', sans-serif;
}

.content__lower-alpha ul {
    font-family: 'CircularStd-Book', sans-serif;
    list-style: lower-alpha;
}

.content a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    word-wrap: break-word;
}

.content p, .content ul {
    font-family: 'CircularStd-Book', sans-serif;
    margin-top: 0;
    margin-bottom: 1em;
}

.content > *:last-child, .content h1 + *:last-child, .content h2 + *:last-child {
    margin-bottom: 0;
}

.content > *:first-child, .content h1 + *:first-child, .content h2 + *:first-child, .content p + *:first-child {
    margin-top: 0;
    margin-bottom: 0;
}


/* responsible-gaming  */

.responsible-gaming-intro {
    max-width: 830px;
}

.rg-list {
    margin-top: 32px;
}

.rg-list .rg-list__item {
    border-top: 1px solid rgba(46, 46, 46, 0.7);
}

.rg-list .rg-list__item:last-child {
    border-bottom: none;
}

.rg-list__item {
    display: flex;
    flex-direction: column;
    padding: 32px 0;
    position: relative;
}

.rg-list__item-left {
    width: 100%;
}

.rg-list__item-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.rg-list__item-img {
    width: 134px;
    height: 134px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1A1F2C;
    margin: 0 auto;
}

.rg-list__item-img img {
    width: 100%;
    max-width: 106px;
    height: auto;
    display: block;
}

.rg-list .rg-list__item:nth-child(6) .rg-list__item-img img  {
    max-width: 75px;
}

.rg-list__item-title {
    text-align: center;
    font-size: 24px;
}

.rg-list__item-right h2,
.rg-list__item-right h3,
.rg-list__item-right h4,
.rg-list__item-right h5,
.rg-list__item-right h6,
.rg-list__item-right p {
    margin: 0;
}

@media screen and (min-width: 992px) {
    .rg-list {
        margin-top: 0;
    }

    .rg-list__item {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .rg-list__item-left {
        width: 134px;
    }

    .rg-list__item-right {
        width: calc(100% - 134px);
        padding-left: 36px;
        margin-top: 0;
    }

    .rg-list__item-title {
        text-align: left;
    }

    .rg-list .rg-list__item:first-child {
        border-top: none;
    }
}

.rg-list__item:last-child {
    padding-bottom: 2px;
}

.rg-list__item-right p, .rg-list__item-right ul {
    margin-bottom: 0;
}

.main-gaming .rg-list__item:last-child {
    padding-bottom: 0;
}

.main-gaming {
    margin: -8px 0 0 0;
    padding: 0 0 33px 0;
}

.main-gaming h1, .main-gaming h2, .main-gaming h3, .main-gaming h4, .main-gaming h5, .main-gaming h6 {
    font-size: clamp(24px, 2.5vw, 28px);
}

.main-gaming h1:not(:first-child), .main-gaming h2:not(:first-child), .main-gaming h3:not(:first-child),
.main-gaming h4:not(:first-child), .main-gaming h5:not(:first-child), .main-gaming h6:not(:first-child) {
    margin-top: 24px;
}

.main-gaming p, .main-gaming ul li, .main-gaming ol li {
    font-size: 15px;
}

.main-gaming .rg-list__item-title {
    font-size: 15px;
}

@media (min-width: 768px) {
    .main-gaming {
        margin: -6px 0 0 0;
        padding: 0 0 66px 0;
    }

    .main-gaming h1:not(:first-child), .main-gaming h2:not(:first-child), .main-gaming h3:not(:first-child),
    .main-gaming h4:not(:first-child), .main-gaming h5:not(:first-child), .main-gaming h6:not(:first-child) {
        margin-top: 56px;
    }
}

.header {
    padding: 12px 0;
    background-color: #f0b318;
}

.header__left {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header__responsible-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.header__responsible-logo img {
    min-height: 56px;
    min-width: 56px;
    max-height: 56px;
    max-width: 56px;
}

.header__left-title {
    font-family: 'CircularStd-Black', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.header__left-title p {
    font-family: 'CircularStd-Black', sans-serif;
    font-weight: inherit;
    font-size: inherit;
    font-style: inherit;
}

.header__left-description {
    margin: 0;
    font-family: 'CircularStd-Book', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
}

.header__left-description p {
    margin: 0;
    font-family: 'CircularStd-Book', sans-serif;
    font-weight: inherit;
    font-size: inherit;
    font-style: inherit;
}

.header__right {
    margin: 12px 0 0 0;
}

@media (min-width: 992px) {
    .header {
        padding: 16px 0;
    }

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

    .header__left-title {
        font-size: 20px;
    }

    .header__right {
        margin: 0;
    }
}

.logos {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.logos__item {
    max-width: 100%;
    width: 50%;
}

.logos__item-link {
    padding: 6px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    max-width: 100%;
    min-width: 100%;
    min-height: 52px;
    max-height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.logos__item-link img {
    display: block;
    max-width: 100px;
    max-height: 30px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 992px) {
    .logos {
        gap: 16px;
    }

    .logs__item {
        max-width: unset;
        width: unset;
    }

    .logos__item-link {
        padding: 10px 24px;
        max-width: 150px;
        min-width: 150px;
        min-height: 52px;
        max-height: 52px;
    }
}

.under {
    padding: 40px 0;
}

.under__container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.under__inner {
    padding: 40px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: rgba(255, 255, 255,  0.09);
    border-radius: 20px;
}

.under__description {
    font-family: 'CircularStd-Book', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 4vw, 24px);
    line-height: 1.25;
    color: #fff;
    text-align: center;
}

.under__description p {
    margin: 0;
    font-family: inherit;
}

.brands {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    width: 100%;
    list-style: none;
}

.brands__item {
    width: calc(50% - 5px);
}

.brands__item-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 40px;
    max-height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all ease .3s;
}

.brands__item-link:hover {
    opacity: 0.8;
}

.brands__item-link img {
    display: block;
    max-width: 100px;
    max-height: 32px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

#illow-banner-widget {
    z-index: 200 !important;
}

#CybotCookiebotDialog {
    z-index: 300 !important;
}

.cky-btn-revisit-wrapper, .cky-consent-container {
    z-index: 350 !important;
}

#cookiescript_badge, #cookiescript_injected_wrapper {
    z-index: 300 !important;
}

@media (min-width: 700px) {
    .brands__item {
        width: 100%;
    }

    #illow-banner-widget {
        z-index: 10000 !important;
    }

    #CybotCookiebotDialog {
        z-index: 300 !important;
    }

    .cky-btn-revisit-wrapper, .cky-consent-container {
        z-index: 350 !important;
    }

    #cookiescript_badge, #cookiescript_injected_wrapper {
        z-index: 300 !important;
    }
}

/*increase footer logo styles*/
[lang="se"] .footer-logo:nth-child(2n) img {
    max-width: 144px;
    max-height: 54px;
}

@media (min-width: 700px) {
    [lang="se"] .footer-logo:nth-child(2n) img {
        max-width: 130px;
        max-height: 44px;
    }
}

[lang="uk"] .footer .f_right img {
    max-height: 40px;
}

@media (min-width: 700px) {
    [lang="uk"] .footer .f_right img {
        max-height: 32px;
    }
}

.main-title {
    font-family: 'CircularStd-Black', sans-serif;
    font-size: clamp(24px, 2.5vw, 28px);
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

.btn-reset {
    border: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq {
    padding: 33px 0 0 0;
}
.faq__title {
    margin: 0 0 20px 0;
}
@media (min-width: 1024px) {
    .faq {
        padding: 66px 0 0 0;
    }

    .faq__title {
        margin: 0 0 22px 0;
    }
}

.recent__top, .recent__second-inner {
    padding: 0 6px;
}

.games__container {
    padding-left: 10px;
}

@media (max-width: 767px) {
    .recent__top, .recent__second-inner {
        padding: 0 16px;
    }

    .games__container {
        padding-left: 16px;
        padding-right: 24px;
    }

    .responsible-gaming__container, .faq__container {
        padding: 0 16px;
    }
}

.accordion__item {
    padding: 0 0 22px 0;
    border-bottom: 1px solid #484848;
}
.accordion__item:first-child {
    border-top: 1px solid #484848;
}
.accordion__item-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 22px;
    padding-right: 40px;
    font-family: 'CircularStd-Black', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    outline: none;
    border: none;
    text-align: left;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.accordion__item-trigger:before {
    content: url("../images/accordion-icon.svg");
    position: absolute;
    display: block;
    top: 60%;
    right: 2px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.accordion__item-trigger.active {
    padding-bottom: 16px;
}
.accordion__item-trigger.active:before {
    top: 40%;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.accordion__item-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.accordion__item-content p:not(:last-child) {
    margin-bottom: 5px;
}
@media (min-width: 576px) {
    .accordion__item-trigger:before {
        top: 70%;
    }
}
@media (min-width: 1024px) {
    .accordion__item-trigger.active:before {
        top: 50%;
    }
}

.games {
    padding: 33px 0 0 0;
}
.games__title {
    margin: 0 0 20px 0;
    font-family: 'CircularStd-Black', sans-serif;
    text-align: left;
}

@media (min-width: 1024px) {
    .games {
        padding: 66px 0 0 0;
    }
}

.games-list__envelope {
    position: relative;
}

.games-list__item-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding: 10px 12px 10px 10px;
    min-height: 120px;
    background-color: #232428;
    border-radius: 30px;
    z-index: 5;
}

.games-list__envelope:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #2c343a;
    border-radius: 30px;
}

.games-list__item:not(:last-child) {
    margin-bottom: 20px;
}

.games-list__item:last-child {
    display: none;
}

.games-list__item-logo {
    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;
    min-width: 80px;
    max-width: 80px;
    aspect-ratio: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 2px solid #2c343a;
    border-radius: 100%;
}
.games-list__item-logo img {
    display: block;
    max-width: 60px;
    max-height: 35px;
    -o-object-position: center center;
    object-position: center center;
    -o-object-fit: contain;
    object-fit: contain;
}
.games-list__item-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 4px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    align-self: stretch;
    flex-grow: 1;
}
.games-list__item-title {
    margin: 0;
    align-self: flex-start;
    font-family: 'CircularStd-Black', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    transition: all ease .2s;
}

.games-list__item-title:hover {
    color: #94c2e6;
}

.games-list__item-title a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.games-list__item-description {
    padding-right: 30px;
    font-family: 'CircularStd-Book', sans-serif;
    font-size: 14px;
    color: #e9e9e9;
}

.games-list__item-link {
    margin: auto 0 0 0;
    display: block;
    font-family: 'CircularStd-Black', sans-serif;
    font-weight: 700;
    padding: 12px 62px 12px 32px;
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #000;
    background-color: #cee5f2;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 10;
}

.games-list__item-link:before {
    content: url("./card-button.svg");
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 42px;
    height: 99%;
    top: 50%;
    right: -5px;
    background-color: #94c2e6;
    border-radius: 100%;
    transform: translateY(-50%);
    transition: all ease .3s;
    z-index: 6;
}

@media (any-hover: hover) {
    .games-list__item-link:hover:before {
        right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .games-list__item-link {
        padding: 0;
        font-size: 0;
        width: 30px;
        height: 30px;
        right: -24px;
        border-radius: 100%;
    }

    .games-list__item-link:before {
        width: 100%;
        height: 100%;
        top: 50%;
        right: 0;
    }
}

@media (min-width: 768px) {
    .games-list__item-link {
        display: none;
    }
}

.games-list__item-footer {
    margin: 18px 0 0 0;
    font-family: 'CircularStd-Book', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: #6c6c6c;
    text-align: center;
}

.games-list__item-footer a {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
}

@media (min-width: 576px) {
    .games-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 20px 16px;
    }
    .games-list__item {
        width: calc(50% - 8px);
    }
    .games-list__item:not(:last-child) {
        margin-bottom: 0;
    }

    .games-list__item:last-child {
        display: block;
    }

    .games-list__item-wrap {
        min-height: 130px;
    }
}
@media (min-width: 768px) {
    .games-list__item-link {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .games-list__item-wrap {
        min-height: unset;
    }

    .games-list__item-footer {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .games-list {
        gap: 20px;
    }

    .games-list__item {
        width: calc(50% - 10px);
    }

    .games-list__item-link {
        padding: 12px 56px 12px 32px;
    }

    .games-list__item-description {
        padding-right: 4px;
    }
}

.responsible-gaming {
    padding: 33px 0 0 0;
}

.responsible__content {
    margin-bottom: 20px;
}

.responsible__content h2 {
    margin: 0;
    font-family: 'CircularStd-Black', sans-serif;
    font-size: clamp(24px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
}
.responsible__content h3 {
    margin: 30px 0 0 0;
    font-family: 'CircularStd-Black', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
}
.responsible__content p {
    margin: 20px 0 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
}

@media (min-width: 1024px) {
    .responsible-gaming {
        padding: 66px 0 0 0;
    }
}

.responsible-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #232428;
    border-radius: 40px;
}
.responsible-list__item:not(:last-child) {
    margin-bottom: 20px;
}
.responsible-list__item-logo {
    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;
    min-width: 114px;
    max-width: 114px;
    aspect-ratio: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 100%;
}
.responsible-list__item-logo img {
    display: block;
    max-width: 86px;
    max-height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}
.responsible-list__item-inner {
    margin: 20px 0 0 0;
}
.responsible-list__item-title {
    margin: 0;
    font-family: 'CircularStd-Black', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
}
.responsible-list__item-description {
    margin: 10px 0 0 0;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
}

.responsible-list__item-description a {
    margin: 12px 0 0 0;
    color: inherit;
    text-decoration: underline;
    transition: all ease .1s;
}

.responsible-list__item-description a:hover {
    color: #ccc;
    opacity: 0.9;
    text-decoration: none;
}

.responsible-list__item-description p:not(:last-child) {
    margin-bottom: 16px;
}

@media (min-width: 800px) {
    .responsible-list__item {
        padding: 20px 24px;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 20px;
    }

    .responsible-list__item-inner {
        margin: 0;
    }

    .responsible-list__item-logo {
        flex-shrink: 0;
    }
}

.gambling {
    padding: 33px 0 0 0;
}

.gambling__main {
    display: flex;
    flex-direction: column;
}

@media (min-width: 800px) {
    .gambling__main .recent {
        order: 1;
    }

    .gambling__main .faq {
        order: 2;
    }

    .gambling__main .gambling {
        order: 3;
    }

    .gambling__main .responsible-gaming {
        order: 4;
    }
}

.gambling__container {
    padding: 0 24px 0 16px;
    max-width: calc(668px + 16px + 24px);
}

.gambling__content {
    margin-bottom: 30px;
    max-width: 764px;
}

.gambling__title {
    margin: 0;
    font-family: 'CircularStd-Black', sans-serif;
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    text-align: left;
}

.gambling__description {
    margin: 20px 0 0 0;
    font-family: 'CircularStd-Book', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #e9e9e9;
    text-align: left;
}

.gambling__description p:not(:last-child) {
    margin-bottom: 6px;
}

@media (min-width: 1024px) {
    #gambling-page .recent__top, .recent__second-inner {
        padding: 0 10px;
    }

    .gambling {
        padding: 66px 0 0 0;
    }
}

.swiper__buttons {
    display: none;
}

@media (max-width: 600px) {
    .swiper {
        overflow: visible !important;
    }

    .swiper-wrapper {
        flex-direction: column !important;
        overflow: visible !important;
        gap: 20px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .swiper-wrapper {
        flex-direction: row !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 34px;
    }

    .swiper-slide {
        width: calc(50% - 10px) !important;
        height: auto !important;
    }

    .casino {
        height: 100%;
    }
}

.casino .options-list__item {
    color: #e9e9e9;
}

@media (min-width: 1024px) {
    .slider__inner {
        position: relative;
    }

    .swiper-slide {
        height: auto !important;
    }

    .casino {
        height: 100%;
    }

    .casino .options-list__item {
        font-size: 15px;
    }

    .gambling__container {
        padding: 0 10px;
        max-width: calc(668px + (10px * 2));
    }

    .mobile-swiper-wrapper {
        flex-direction: column !important;
        gap: 30px !important;
    }
}

.swiper-desktop {
    padding-bottom: 16px;
}

@media (min-width: 1024px) {
    .swiper__buttons {
        display: block;
    }

    .swiper-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-button-prev {
        left: -40px;
    }

    .swiper-button-next {
        right: -40px;
    }

    .swiper-button svg {
        transform: scale(0.9);
    }

    .swiper-button svg path {
        stroke: #fff;
    }

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

    .swiper-slide {
        padding-right: 10px;
    }
}

@media (min-width: 1154px) {
    .swiper-button-prev {
        left: -35px;
    }

    .swiper-button-next {
        right: -35px;
    }
}

.casino {
    position: relative;
    min-height: 302px;
    display: flex;
    flex-direction: column;
    background-color: #232428;
    border-radius: 36px;
}

.casino::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #2B3338;
    border-radius: 36px;
    z-index: -1;
}

.casino__image {
    position: relative;
    display: block;
    width: 100%;
    min-height: 130px;
    max-height: 130px;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    overflow: hidden;
}

.casino__image img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 130px;
    max-height: 130px;
    object-fit: cover;
    object-position: center center;
}

.casino__title {
    position: absolute;
    display: block;
    padding: 14px 6px;
    left: 0;
    bottom: 0;
    font-family: 'CircularStd-Black', sans-serif;
    font-size: 20px;
    color: #fff;
    align-self: center;
    background-color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.casino__inner {
    position: relative;
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    z-index: 50;
}

.casino__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.casino__link {
    margin: auto 0 0 0;
    padding: 12px;
    font-family: 'CircularStd-Black', sans-serif;
    display: inline-flex;
    justify-content: center;
    align-self: center;
    font-size: 14px;
    width: 100%;
    background-color: #94c2e6;
    color: #000;
    border-radius: 60px;
    text-align: center;
    text-transform: uppercase;
    transition: all .45s cubic-bezier(.55, 0, .1, 1);
}

.casino__link:hover {
    opacity: 0.7;
}

.options-list {
    margin: 0 0 26px 0;
    padding: 0 12px;
}

.options-list__item {
    position: relative;
    padding-left: 16px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.options-list__item::after {
    content: url("../images/checkmark.svg");
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.options-list__item:not(:last-child) {
    margin-bottom: 9px;
}

@media (min-width: 768px) {
    .swiper-mobile {
        overflow: visible !important;
    }

    .swiper-mobile .swiper-wrapper {
        flex-direction: column !important;
    }
}

@media (max-width: 545px) {
    .recent__slider-inner {
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 4px;
        overflow-x: hidden;
    }

    .mobile-infinite {
        padding-bottom: 40px;
    }

    .mobile-swiper-wrapper {
        flex-direction: row !important;
        gap: 0 !important;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: #fff;
    }
}

@media (max-width: 640px) {
    .mobile-infinite .card-item__main-inner {
        min-height: 103px;
        border-radius: 30px;
    }

    .mobile-infinite .card-item__inner {
        display: none !important;
    }

    .mobile-infinite .card-item__mobile-inner {
        display: flex;
        padding: 10px 12px 10px 10px;
        align-items: center;
        gap: 14px;
        width: 100%;
        min-height: 100%;
        background-color: #232428;
        border-radius: 30px;
        transform: translate(-8px, -8px);
    }

    .card-item__mobile-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        flex-grow: 1;
    }

    .card-item__mobile-description {
        font-size: 14px;
        color: #fff;
    }

    .card-item__mobile-title {
        font-family: 'CircularStd-Black', sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #fff;
    }
}

@media (min-width: 641px) {
    .card-item__mobile-inner {
        display: none;
    }
}

@media (min-width: 545px) {
    .mobile-infinite {
        overflow: visible !important;
    }

    .mobile-infinite .swiper-slide {
        width: 100% !important;
    }
}

.login {
    position: relative;
    padding-bottom: 33px;
}

.login__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 460px;
}

.login__content {
    max-width: 400px;
}

.login__description {
    text-align: center;
}

.login-form {
    margin: 20px auto 0;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #232428;
    border-radius: 20px;
    box-shadow: 0 4px 19px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.login-form__label {
    width: 100%;
}

.login-form__input {
    padding: 16px 20px;
    display: block;
    font-weight: 400;
    font-size: 16px;
    background-color: #2c343a;
    color: #fff;
    width: 100%;
    border-radius: 10px;
    border: none;
    appearance: none;
    outline: none;
}

.login-form__input::placeholder {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    text-transform: uppercase;
}

.login-form__button {
    display: block;
    font-family: 'CircularStd-Black', sans-serif;
    font-weight: 700;
    padding: 16px 32px;
    font-size: 14px;
    color: #000;
    background-color: #cee5f2;
    border-radius: 14px;
    text-transform: uppercase;
}

@media (min-width: 800px) {
    .login {
        padding-bottom: 66px;
    }
}

@media (any-hover: hover) {
    .login-form__button:hover {
        opacity: 0.8;
    }
}

@media (max-width: 545px) {
    #gambling-page .responsible-list__item {
        display: block;
    }

    #gambling-page .responsible-list__item-logo {
        float: right;
        margin: 0 0 6px 6px;
        min-width: 100px;
        max-width: 100px;
    }

    #gambling-page .responsible-list__item-logo img {
        max-width: 70px;
    }
}


