/*
Theme Name: Mercury Child
Theme URI: https://mercurytheme.com/
Description: Child theme for Mercury theme
Author: MercuryTheme.com
Author URI: https://mercurytheme.com/
Template: mercury
Version: 3.9.6
*/
@import url("../mercury/style.css");

/* Custom start */
.space-header-ins {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.space-header-height .space-header-logo-ins:after {
    content: none;
}

.casino-table th {
    background-color: #302D55!important;
}
table tbody td {
    background: #444559;
    color: white;
}
/* Custom end */


/* Event Start */
.event {
    padding: 30px 20px;
    background-color: #474747;
    color: white;
    margin: 30px 0 0;
}

.event-block {

}

.event-title-linc {
    display: block;
    text-decoration: none;
    color: inherit;
    margin: 0 0 40px;
}

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

.team-left,
.team-right {
    text-align: center;
    flex: 1;
}

.team-logo {
    width: 30%;
}
.team-logo-box {
    width: 55%;
}

.separates-teams {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: silver;
    width: 33%;
}

.separates-teams span:first-child {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 10px;
}
.separates-teams span:nth-child(2) {
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}
.separates-teams span:nth-child(3) {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 30px;
}
.separates-teams span:nth-child(4) {
    font-size: 26px;
    line-height: 36px;
    color: silver;
    margin-bottom: 40px;
}
.separates-teams span:last-child {
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    color: silver;
}

.team-name {
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    margin: 20px 0;
}

@media screen and (max-width: 768px) {
    .team-left,
    .team-right {
        max-width: 60%;
    }

    .team-logo {
        width: 90%;
    }
}


.event-tabs {
    position: relative;
    display: flex;
    font-weight: bold;
    align-items: center;
    margin: 30px 0 20px;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    animation: scrollAnimation 3s linear infinite;
}

.event-tabs-item {
    white-space: nowrap;
    border: 1px solid white;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all ease-in .3s;
}
.event-tabs-item:hover {
    background-color: white;
    color: black;
}

/* Стилі для вебкит-браузерів (Chrome, Safari) */
.event-tabs::-webkit-scrollbar {
    height: 6px;
    margin: 5px;
}

.event-tabs::-webkit-scrollbar-track {
    background: #ccc;
}

.event-tabs::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

@keyframes scrollAnimation {
    0% { transform: translateX(0); }
    50% { transform: translateX(-2%); }
    100% { transform: translateX(0%); }
}

@media screen and (max-width: 768px) {
    .event {
        position: relative;
    }
    .event-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 20px 0 0;
        animation: scrollAnimation 3s linear infinite;
    }

    .event-tabs-item {
        white-space: nowrap;
    }
    .single-page-space {
        padding-top: 0;
    }
}

 #respond {
    display: block!important;
}




.custom-single-block {
    padding-bottom: 20px;
}

.custom-link {
    margin: 0 10px 20px;
}

.custom-link__link {
    position: relative;
    display: block;
    width: max-content;
    margin: 10px auto;
    color: #ffffff;
    padding: 30px 50px;
    font-size: 26px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgb(0, 0, 0);
    overflow: hidden;
    background-color: #228b22 ;
}
.custom-link__link:hover {
    background-color: #5cc042;
    transform: scale(101%);
    box-shadow: 0 2px 5px rgb(0, 0, 0);
}

.custom-link__link span:nth-child(1){
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ffffff, #4fa138);
    animation: animate1 2s linear infinite;
    animation-delay: 1s;
}

.custom-link__link span:nth-child(2){
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff, #4fa138);
    animation: animate2 2s linear infinite;
}

.custom-link__link span:nth-child(3){
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, #ffffff, #4fa138);
    animation: animate3 2s linear infinite;
    animation-delay: 1s;
}

.custom-link__link span:nth-child(4){
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, #ffffff, #4fa138);
    animation: animate4 2s linear infinite;
}

@keyframes animate1{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}
@keyframes animate2{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(100%);
    }
}
@keyframes animate3{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}
@keyframes animate4{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(-100%);
    }
}

@media screen and (max-width: 768px) {
    .custom-link__link {
        padding: 25px 40px;
    }
}

/* Event End */

/* ACF Block Casino start */


.casino-block__title-list {
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 0 200px 0 0!important;
    padding: 0!important;
}
.casino-block__title-item {
    list-style: none!important;
    padding: 10px 15px!important;
}

.casino-item-image {
    display: flex;
    align-items: center;
}
.casino-item-image a {
    display: flex;
}

.casino-item-image img {
    height: 90px;
    width: 140px;
}
.casino-item-image h3 {
    font-size: 20px;
    margin-left: 10px;
}

.casino-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.casino-item-text {
    display: flex;
    align-items: center;
}

.casino-item-text__list {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0!important;
    padding: 0!important;
}

.casino-item__list-item {
    list-style: none!important;

}

.casino-item__list-item a {
    padding: 10px;
    font-size: 16px;
    font-weight: bold!important;
    color: silver!important;
}

.casino-item-text__link {
    display: flex!important;
    padding: 10px!important;
    border-radius: 10px!important;
    text-decoration: none!important;
    color: #ffffff !important;
    background-color: #228b22;
    width: max-content!important;
    margin: 0 0 0 auto;
}
.casino-item-text__link:hover {
    transform: scale(102%);
    background-color: #21c021;
}

.casino-table__link {
    color: silver!important;
    font-weight: bold;
}
.casino-table__link:hover {
    color: black!important;
}

.casino-table__cell {
    text-align: center!important;
}

.casino-table__row td {
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .casino-item-image h3 {
        display: none;
    }
    .space-page-content table tbody tr td {
        padding: 7px 10px;
    }
}

@media screen and (max-width: 540px) {
    .casino-item-image h3 {
        display: none;
    }
    .space-page-content table tbody tr td {
        padding: 5px;
    }
    .casino-item-text__link {
        padding: 10px 7px!important;
        font-size: 14px;
        font-weight: bold;
        line-height: 16px;
        width: auto!important;
        justify-content: center;
    }
    .casino-item-image img {
        height: 75px;
    }
}
/* ACF Block Casino end */



.progress-block {
    padding: 20px 20px;
    margin: 0 -20px;
    border-radius: 10px;
    background-color: #eeeeee;
}

.progress-block h3 {
    margin: 10px 0 20px;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-bottom: 20px;
    background-color: #dfdfdf;
}

.bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #4CAF50;
    border-radius: 10px;
    transition: width 0.5s;
}

.percent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-weight: bold;
}

.message {
    color: red;
}
/* ACF Voices Block  end */



/* Author single */
.author__top {
    padding: 0 15px;
}

.author-single__media {
    text-align: center;
    padding-bottom: 20px;
}

.author-single__name {
    text-align: center;
    font-weight: 900;
    margin-bottom: 20px ;
}

.author-single__job {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 15px;
    position: relative;
    margin: 25px 0 15px;
}

.author-social {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    justify-content: center;
    padding-bottom: 30px;
}

.author-social {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    padding-bottom: 30px;
}

@media screen and (max-width: 479px) {
    .author-social {
        justify-content: center;
    }
}

.author-social__item {
    margin: 10px 5px;
}

.author-social__item_link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    padding: 5px;
    background-color: #dbc500;
    border: 1px solid #dbc500;
    border-radius: 4px;
    transition: all 0.3s;
}

.author-social__item_link:hover {
    background-color: transparent;
}

.author-social__item_link svg {
    width: 18px;
    height: auto;
    transition: all 0.3s;
}

.author-social__item_link svg path {
    fill: #fff;
    transition: all 0.3s;
}

.author-social__item_link:hover svg path {
    fill: #dbc500;
}

.author-single__quote {
    background-color: #dbc500;
    padding: 30px 30px 30px 100px;
    position: relative;
    margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
    .author-single__quote {
        padding: 30px;
    }
}

.author-single__quote_icon {
    position: absolute;
    left: 25px;
    top: 30px;
    background-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .author-single__quote_icon {
        position: static;
        margin: 0 auto 25px;
    }
}

.author-single__quote_icon svg {
    width: 30px;
    height: auto;
}

.author-single__quote_icon svg path {
    fill: #131314;
}

.author-single__quote_description {
    padding-left: 30px;
    border-left: 4px solid #fff;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: #131314;
    line-height: 2;
}

@media screen and (max-width: 600px) {
    .author-single__quote_description {
        border-left: none;
        border-top: 4px solid #fff;
        padding: 20px 0 0 0;
    }
}

.author-single__quote_description p {
    margin-bottom: 15px;
}

.author-single__media_photo {
    max-width: 256px;
}

.posts__bottom {
    text-align: center;
    padding-top: 40px;
}

.author-single__phone {
    text-align: center;
    margin-bottom: 30px;
}

.author-single__phone_url {
    color: #2e3246;
    transition: all 0.3s;
}

.author-single__phone_url:hover {
    color: #be2edd;
}

.author-single__media img {
    max-height: 250px;
}

.author img {
    border-radius: 5px!important;
}
/* Author single */



/* Cookie */
.cookie-consent {
    position: fixed;
    bottom: 10px;
    border-radius: 10px;
    background-color: black;
    color: white;
    text-align: left;
    padding: 10px;
    box-sizing: border-box;
    display: none;
    width: 70%;
    left: 15%;
    right: 15%;
    z-index: 100;
}

.close-consent {
    position: absolute;
    right: 5px;
    top: 5px;
    float: right;
    font-size: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

#acceptCookie {
    background-color: #2ecc71;
    border-radius: 10px;
    font-weight: bold;
    color: white;
    padding: 5px 10px;
    margin: 5px;
    border: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .cookie-consent {
        font-size: 12px;
        width: 90%;
        left: 5%;
        right: 5%;
    }
}

/* Cookie */




/* Page casino start */

.info-block {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    margin: 20px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-block__container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}
.info-block__container-size {
    max-width: max-content;
    gap: 5px;
}

.info-block__text {
    font-size: 16px;
    color: #495057;
    line-height: 1.5;
}
.header-info-block__text {
    font-size: 14px;
    color: #ffffff;
}

.info-block__icon {
    display: flex;
    font-size: 28px;
    vertical-align: middle;
    color: #ff0000;
}

.header-info-block {
    border: none;
    border-radius: 0;
    background-color: #ff7900;
    color: white;
    margin: 0;
}


@media screen and (max-width: 768px) {
    .info-block__text {
        font-size: 10px;
        line-height: 1;
    }
}

/* Page Title block */
.page-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    margin: 0 auto;
    max-width: 1170px;
}

@media screen and (max-width: 768px) {
    .page-title {
        flex-direction: column;
    }
    .page-title h1 {
        text-align: center;
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .page-title {
        gap: 10px;
        padding: 10px 0;
    }

    .page-title h1 {
        text-align: center;
        font-size: 20px;
    }
}

/* Page Title block */


/* Rating start */

.rating-block {
    display: flex;
    flex-direction: column ;
    align-items: center;
    gap: 15px;
}

.rating-block__score-block {
    display: flex;
    align-items: center;
}

.rating-block__score {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-right: 10px;
}
.rating-block__stars {
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.rating-block__star {
    color: #fdc500;
    margin-right: 2px;
}
.rating-block__reviews span {
    font-size: 16px;
    color: #e2e2e2;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .rating-block__score {
        font-size: 20px;
        font-weight: bold;
        color: #333;
        margin-right: 10px;
    }

    .rating-block__reviews span {
        font-size: 14px;
    }
}

@media screen and (max-width: 540px) {
    .rating-block {
        flex-direction: row;
        gap: 5px;
    }
    .rating-block__score {
        font-size: 16px;
        font-weight: bold;
    }
}

/* Rating end */

/* Page Breadcrumbs */
.page-breadcrumbs {
    margin: 0 20px;
}
/* Page Breadcrumbs */

/* Pages Tabs */
.page-pages {
    max-width: 1170px;
    margin: 10px auto;
}

.page-pages__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.page-pages__list-item {
    flex: 1 1 auto;
    margin-right: 10px;
    margin-bottom: 5px;
}

.page-pages__list-item-link {
    display: block;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #007bff;
    border: 1px solid #007bff;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    border-radius: 5px;
}

.page-pages__list-item-link:hover,
.page-pages__list-item-link:focus {
    background-color: #007bff;
    color: white;
    border: 1px solid #001665;
}

.page-pages__list-item-link:hover::before,
.page-pages__list-item-link:focus::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #007bff;
    animation: tabHover 0.3s;
}

@keyframes tabHover {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-pages__list-item {
        margin-right: 0;
    }
    .page-pages__list-item-link {
        text-align: left;
    }
}
/* Pages Tabs */


/* Top Cards  start */
.top-cards {
    padding: 0 0 30px;
}

.top-cards__title {
    color: black;
    font-size: 40px;
    line-height: 43px;
    margin: 0 0 25px;
    text-align: center;
}

.top-cards__text {
    color: black;
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 20px;
}

.top-cards__list {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    grid-template-areas: "item2 item1 item3";
    margin: auto;
    max-width: 1085px;
}

.top-cards__item {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.top-cards__item:nth-child(1) {
    grid-area: item1;
    margin: 0 10px;
    box-shadow: 0 3px 22px 0 rgba(255, 38, 126, 0.25);
    border: 2px solid rgba(255, 38, 126, 1);
}

.top-cards__item:nth-child(2),
.top-cards__item:nth-child(3) {
    margin: 20px 10px 20px;
    border: 1px solid rgba(148, 153, 159, 0.3);
    box-shadow: 0 0 11px -5px #000;
}

.top-cards__item-warning {
    border-top: 1px solid silver;
    padding-top: 20px;
}

.top-cards__item-center {
    border: 2px solid red;
}

.top-cards__item-info {
    display: flex;
    flex-direction: column;
    padding: 15px;
    height: 100%;
    justify-content: space-between;
}

.top-cards__item-image {
    position: relative;
}

.top-cards__item-image img {
    min-width: 100%;
    height: 210px;
}

.top-cards__item-image-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.top-cards__item-image-sub {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 28px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: normal;
    text-shadow: 2px 2px 2px black;
}

.top-cards__item-title {
    text-align: center;
    font-size: 16px;
    line-height: 19px;
    margin: 0 0 12px;
}

.top-cards__item-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px;
}

.top-cards__item-rating-star {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.top-cards__item-rating-star i {
    font-size: 14px;
    display: inline-block;
    margin-right: 4px;
}

.top-cards__item-rating-num {
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
}

.top-cards__item-linkCas {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin: 0 0 10px;
    font-size: 12px;
    color: red;
}

.label-mark {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    padding: 5px 7px;
    background: #ff4d00;
    font-size: 12px;
    color: white;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 1px 1px 5px black;
}

.top-cards__item-linkCas::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 3px;
}

.top-cards__item-subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 25px;
    margin: 0 0 15px;
}

.top-cards__item-list {
    margin: 0 0 25px;
}

.top-cards__item-item {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 13px;
}

.top-cards__item-item:not(:last-child) {
    margin-bottom: 13px;
}

.top-cards__item-item::before {
    content: '✅';
    font-weight: 900;
    color: green;
    position: absolute;
    display: inline-block;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    text-align: center;
    border: 1px solid green;
    background-color: #00ff12;
    border-radius: 50%;
    font-size: 10px;
}

.top-cards__item-coupon {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: red;
    border: 1px solid red;
    padding: 14px 18px 10px 12px;
    min-width: 225px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    margin: 0 0 25px;
}

.top-cards__item-coupon::before {
    content: '';
    height: 28px;
    width: 24px;
    position: absolute;
    right: 8px;
    top: 10px;
}

.top-cards__item-coupon::after,
.top-cards__item-coupon-before {
    content: "";
    position: absolute;
    top: -12px;
    font-size: 9px;
    width: calc(100% - 20px);
    text-align: center;
    right: 10px;
    background: white;
    z-index: 2;
    color: red;
}

.top-cards__item-link {
    text-align: center;
    border-radius: 10px;
    padding: 15px;
    display: inline-block;
    font-size: 18px;
    color: white;
    background: #ff6600;
    margin-bottom: 20px;
    border:none!important;
}

@media screen and (max-width: 1024px) {
    .top-cards {
        padding: 25px 0;
    }

    .top-cards__title {
        font-size: 22px;
        line-height: 30px;
        margin: 0 0 15px;
    }

    .top-cards__text {
        font-size: 14px;
        line-height: 22px;
        margin: 0 0 15px;
    }

    .top-cards__item-center .casino__item-info {
        padding: 15px 15px 20px;
    }

    .top-cards__item-center .casino__item-coupon {
        margin: 0 0 30px;
    }

    .top-cards__item-image-sub {
        top: 30px;
        font-size: 9.68px;
    }

    .top-cards__item-title {
        font-size: 12px;
        line-height: 15px;
        margin: 0 0 10px;
    }

    .top-cards__item-rating {
        margin: 0 0 10px;
    }

    .top-cards__item-rating-star img {
        width: 12px;
        height: 12px;
    }

    .top-cards__item-rating-num {
        font-size: 12px;
        line-height: 12px;
    }

    .top-cards__item-linkCas {
        font-size: 12px;
        margin: 0 0 13px;
    }

    .top-cards__item-subtitle {
        font-size: 12px;
        line-height: 17.31px;
        margin: 0 0 7px;
    }

    .top-cards__item-list {
        margin: 0 0 19px;
    }

    .top-cards__item-item {
        font-size: 10px;
        line-height: 12px;
        padding-left: 18px;
        margin-bottom: 10px;
    }

    .top-cards__item-item::before {
        top: 0;
        width: 14px;
        height: 14px;
    }

    .top-cards__item-coupon {
        min-width: 190px;
        margin: 0 0 19px;
        font-size: 14px;
        padding: 10px 18px 10px 12px;
    }

    .top-cards__item-coupon::after {
        font-size: 7px;
    }

    .top-cards__item-link {
        font-size: 16px;
        line-height: 19px;
        padding: 14px 25px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .top-cards {
        padding: 15px 0;
    }

    .top-cards__item-image {
        position: relative;
        max-width: 220px;
        margin: 0 auto;
    }

    .top-cards__item-image img {
        height: auto;
        border-radius: 0px 0px 10px 10px
    }

    .top-cards__list {
        display: block;
    }

    .top-cards__item:nth-child(1) {
        margin: 20px 10px 20px;
    }

    .top-cards__item-list {
        margin: 0 auto 19px;
    }

    .top-cards__item-title {
        font-size: 14px;
    }

    .top-cards__item-subtitle {
        font-size: 16px;
        line-height: 19px;
        margin: 0 0 13px;
    }

    .top-cards__item-item {
        padding-left: 20px;
        font-size: 12px;
        line-height: 14px;
    }

    .top-cards__item-item img {
        width: 14px;
        height: 14px;
    }

    .top-cards__item-center {
        grid-column: 1/3;
        grid-row: 1/2;
    }
}

@media screen and (max-width: 550px) {
    .top-cards {
        padding: 15px 0;
    }

    .top-cards__list {
        grid-template-columns: 1fr;
    }

    .top-cards__item-list {
        margin: 0 auto 24px;
    }

    .top-cards__item-coupon {
        width: 100%;
        margin-bottom: 15px !important;
    }

    .top-cards__item-center {
        grid-column: 1/2;
        grid-row: 1/2;
    }
}

/* Top Cards  end */

.space-page-content-meta {
    margin-bottom: 20px;
}

.page-author-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    background: rgba(244, 54, 118, 0.1);
}
.author-block {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.author-section {
    margin: 0 20px;
}

.author-section .space-page-content-meta {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .page-author-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}

/* ACF Online Casinos Block start */

.cards {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.21);
    margin: 0 0 15px 0;
    padding: 0 !important;
}

.cards__row {
    display: flex;
}

@media screen and (max-width: 1024px) {
    .cards__row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
    }
}





.cards-block-img {
    margin-bottom: 0 !important;
}

.cards__image {
    max-width: 350px;
    position: relative;
    margin: 0 15px 0 0;
    max-height: 220px;
}

@media screen and (max-width: 1024px) {
    .cards__image {
        max-width: 100%;
        margin: 0 0 30px;
    }
}

.cards__image img {
    max-width: 320px;
    height: 100%;
}

.cards__image-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cards__info {
    position: relative;
    padding: 15px 0;
    flex: 1 1 auto;
    margin: 0 15px 0 0;
}

@media screen and (max-width: 1024px) {
    .cards__info {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }
}

.cards__info-row {
    display: block;
    margin: 0 0 10px;
}

.cards__title {
    font-size: 20px;
    line-height: 22px;
    margin: 0 7px 0 0;
    color: white;
}

@media screen and (max-width: 710px) {
    .cards__title {
        text-align: center;
    }

    .cards__image img {
        width: 100%;
        max-width: none;
        height: 100%;
    }

    .cards__image {
        max-height: none;
    }
}
.cards__link {
    display: flex;
    align-items: center;
    align-self: center;
    font-size: 12px;
    color: red;
    transition: color 0.3s;
}

.cards__link::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 0 0 3px;
}

.cards__rating {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    color: white;
}

@media screen and (max-width: 710px) {
    .cards__rating {
        justify-content: center;
    }
}

.cards__rating-star {
    display: flex;
    align-items: center;
    margin: 0 5px 0 0;
}

.cards__rating-star img {
    display: inline-block;
}

.cards__rating-star img:not(:last-child) {
    margin: 0 4px 0 0;
}

.cards__rating-num {
    font-size: 14px;
    line-height: 14px;
}

.cards__subtitle {
    font-weight: bold;
    max-width: 350px;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 10px;
    color:white;
}

@media screen and (max-width: 710px) {
    .cards__subtitle {
        text-align: center;
        margin: 0 auto 10px;
    }
}

.cards__item {
    position: relative;
    padding: 0 0 0 26px;
    font-size: 14px;
    line-height: 17px;
}

@media screen and (max-width: 1024px) {
    .cards__item {
        font-size: 15px;
        line-height: 15px;
    }
}

@media screen and (max-width: 710px) {
    .cards__item {
        font-size: 14px;
        line-height: 14px;
    }
}

.cards__item:not(:last-child) {
    margin: 0 0 13px;
}

.cards__item::before {
    content: '✅';
    font-weight: 900;
    border: 1px solid green;
    border-radius: 50%;
    text-align: center;
    font-size: 10px;
    color: green;
    position: absolute;
    display: inline-block;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 1024px) {
    .cards__item::before {
        width: 14px;
        height: 14px;
    }
}

@media screen and (max-width: 710px) {
    .cards__item::before {
        width: 12px;
        height: 12px;
    }
}

.cards__buttons {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    padding: 0 30px 0 0;
}

@media screen and (max-width: 1024px) {
    .cards__buttons {
        padding: 0;
    }
}

.cards__coupon {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: red;
    border: 1px solid red;
    padding: 14px 18px 10px 12px;
    min-width: 225px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    margin: 0 0 20px 0;
}

@media screen and (max-width: 1024px) {
    .cards__coupon {
        width: 100%;
    }
}


.cards__btn {
    min-width: 170px;
    text-align: center;
    padding: 13px;
    display: inline-block;
    font-size: 18px;
    color: white!important;
    text-decoration: none!important;
    background: red;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

.cards__btn:hover {
    background: darkred;
}

@media screen and (max-width: 710px) {
    .cards__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cards__info {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .cards__image {
        margin: 0 0 14px;
    }

    .cards__info {
        padding: 0 15px;
        margin: 0;
    }

    .cards__title {
        font-size: 20px;
    }

    .cards__link {
        font-size: 14px;
    }

    .cards__rating-num {
        font-size: 14px;
    }

    .cards__subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .cards__list {
        margin: 0 0 30px 0;
    }

    .cards__item {
        font-size: 12px;
        line-height: 14px;
        padding: 0 0 0 18px;
    }

    .cards__item:not(:last-child) {
        margin: 0 0 10px;
    }

    .cards__item::before {
        top: 0;
        width: 12px;
        height: 12px;
    }

    .cards__buttons {
        padding: 0 15px 15px;
    }

    .cards__coupon {
        min-width: 190px;
        margin: 0 0 19px;
        font-size: 14px;
        padding: 10px 18px 10px 12px;
    }

    .cards__coupon::after {
        font-size: 7px;
    }

    .cards__btn {
        font-size: 12px;
        line-height: 19px;
        padding: 9px;
    }
}


.label-mark-left {
    position: absolute;
    padding: 5px 7px;
    background: #ff267e;
    color: white;
    line-height: 1;
    white-space: nowrap;
}

@media screen and (max-width: 710px) {
    .label-mark-left {
        left: 50%;
        transform: translate(-50%, 0);
    }
}


/* Tabs Casino Page */
.content-tabs {
    border-radius: 5px;
    background-color: #262740;
    padding: 10px;
    box-shadow: 0 0 1px 2px #262740;
}
.content-tabs .event-tabs {
    margin: 0;
}
.event-tabs-item.page-pages__list-item-link {
   /*border:1px solid #007bff!important;*/
   color: #262740!important;
   background-color: #f2f2f2!important;
    transition: all ease .3s;
}

.event-tabs-item.page-pages__list-item-link:hover {
    transform: scale(102%);
}

@media screen and (max-width: 768px) {
    .content-tabs .event-tabs {
        flex-wrap: wrap;
        animation: none;
    }
}

/* Tabs Casino Page */

/* ACF Online Casinos Block end */

/* Order to Show start */
@media screen and (max-width: 768px) {
    .block-order {
        display: flex;
        flex-direction: column;
    }

    .page-pages {
        order: 2;
    }

    .page-author-section {
        order: 3;
    }

    .content-tabs {
        order: 4;
    }
}
/* Order to Show end */
/* Page casino end */

/* Custom styles start  */
body {
    background-color: #302D55;  
}

.archive.author .space-box {
    width: 100%;
    margin: 0 auto;
}

.space-pros-ins:before {
    background-color: #007838;
}
.space-cons-ins:before {
    background-color: #ff0d3c;
}

.space-organization-style-2-calltoaction-rating {
    background-color: #542D56;
}

.space-box,
.space-footer-top {
    background: #302D55;
}
.space-title-box,
.space-style-2-organization-header,
.space-archive-title-box {
    background-color: #542D56;
}
h1,h2,h3,h4,h5,h6,a,p, ul, ol, table,
.space-pros-cons ul li,
.space-pros-title, .space-cons-title  ,
.space-organization-style-2-calltoaction-text-ins strong,
.space-organization-style-2-ratings-all-item-ins,
.space-organization-style-2-rating-overall-ins span,
.space-organization-style-2-rating-overall-ins,
.space-archive-loop-item-title a,
.space-block-title,
.top-cards__item-title,
.top-cards__item-subtitle,
.top-cards__item-rating-num,
.space-news-3-item-title a {
    color: white!important;
}

.top-block {
    display: flex;
    justify-content: center;
    max-width: 1170px;
    margin: 0 auto;
}

.top-block__sidebar {
    margin: 0 10px;
    width: 280px;
    padding: 0 0 30px;
    border-radius: 5px;
}

.sidebar-title {
    font-size: 20px;
    line-height: 20px;
    margin: 10px 0 20px;
    color: #542D56;
    text-transform: uppercase;
}

.sidebar__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.sidebar__list-item {
    margin-bottom: 10px;
}

.sidebar__list-item-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #000000;
    border: 1px solid #c1275b;
    transition: all 0.3s;
    position: relative;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 3px #ffffff;
}

.sidebar__list-item-link:hover {
    transform: scale(102%);
    background-color: #542D56;
}

.sidebar__list-item-link:hover .sidebar__list-item-border,
.sidebar__list-item-link:hover .sidebar-arrow {
    background-color: #2c2e3b;
}

.sidebar__list-item-link-left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar__list-item-title {
    padding: 0 5px;
    font-size: 16px;
    line-height: 16px;
}

.sidebar__list-item-border {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #361838;
    border-radius: 50%;
    padding: 5px;
    min-width: 30px;
}

.sidebar-arrow {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #f43676;
    border-radius: 20px;
    position: relative;
    transition: all ease .5s;
    min-width: 30px;
}

.sidebar-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
}

.sidebar-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and ( max-width: 1200px ) {
    .top-block {
        flex-direction: column;
    }
    .top-block__sidebar {
        width: auto;
        margin-bottom: 20px;
    }

    .sidebar__list {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
        padding: 0;
        list-style-type: none;
        margin: 0;
    }
    .sidebar__list-item {
        width: 32%;
    }
}

@media screen and ( max-width: 768px ) {
    .sidebar__list-item {
        width: 49%;
    }
}

@media screen and ( max-width: 540px ) {
    .sidebar__list-item {
        width: 100%;
    }
}





/* Custom styles end */



/* Single Online Casino start */
.space-pros-cons ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: rgb(46, 50, 70);
}
/* Single Online Casino end */


/* Header start */
.present-link {
    display: flex;
    width: 32px;
    transition: all ease .3s;
}

.present-link img {
    width: 100%;
    height: auto;
    animation: shakeAndPauseInfinite 3s ease-in-out infinite;
    animation-fill-mode: forwards;
}
.present-link:hover {
    transform: scale(120%);
}

.header-link {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #505c8b;
    font-size: 18px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #f43676;
    transition: all ease .5s;
}
.header-link:hover {
    transform: scale(102%);
}

.space-header-menu {
    display: flex;
    align-items: center;
    gap: 7px;
}

.space-header-menu ul.main-menu {
    padding-right: 5px;
}


.custom-btn-animation {
    display: inline-block;
    text-decoration: none;
    border: 2px solid rgb(244, 54, 118);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    box-sizing: border-box;
}

.custom-btn-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    animation: lightWave 3s infinite;
}

@keyframes lightWave {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes shakeAndPauseInfinite {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-15deg);
    }
    20% {
        transform: rotate(15deg);
    }
    30% {
        transform: rotate(-15deg);
    }
    40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@media screen and (max-width: 1199px) {
    .space-header-logo {
        width: max-content;
    }
    .space-header-menu {
        width: max-content!important;
        padding-right: 50px;
    }

    .space-mobile-menu-icon {
        top: 10px!important;
    }
}

/* Header end */


/* Custom Footer */
.footer-top,
.space-footer-copy {
    background-color: #262740;
}

.single-casino .space-footer {
    padding-bottom: 0!important;
}

.footer-top {
    padding: 70px 0 15px;
}

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

.footer__market_list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu li a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 20px;
    transition: all .3s;
}

.footer-menu li a:hover {
    color: #a7e5dd;
}

.footer-menu-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
}


.footer__market_list {
    display: flex;
    flex-wrap: wrap;
}

.footer__market_list_item {
    margin: 0 20px 20px 0;
}


.footer__market_list_item_url {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 158px;
    border: 1px solid #fff;
    padding: 10px 15px;
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s;
}

.footer__market_list_item_url svg {
    display: block;
    width: 25px;
    height: auto;
    margin-right: 15px;
}

.footer__market_list_item_url:hover {
    color: #a7e5dd;
    border-color: #a7e5dd;
}

.footer__market_list_item_url:hover svg path {
    fill: #a7e5dd;
}

.footer-top-block {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: 100%;
}

.footer-top-item {
    width: 20%;
    padding: 0 15px;
}

.footer-top-info {
    width: 20%;
    padding: 0 15px;
}

.footer-description {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 15px;
}
.footer-description p img {
    padding-bottom: 10px!important;
}

.footer__org_list {
    list-style: none;
    padding: 30px 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    grid-gap: 20px;
    align-items: center;
    border-top: 1px solid rgb(255 255 255/37%);
}

.footer__warning {
    background-color: #fff;
    padding: 40px 0;
    font-size: 23px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
    line-height: 36px;
}

.footer-copyright {
    background-color: #111111;
    padding: 30px 0;
    color: #cecece;
    font-size: 0.75em;
    line-height: 1.25em;
    font-weight: 400;
    text-align: center;
}

.space-footer-copy-left,
.space-footer-copy-left a {
    color: #cecece;
}

.footer__org_list-url-logo {
    width: auto;
    max-height: 40px;
}

.footer-copyright-text {
    width: 100%;
}

.footer-description p {
    padding-bottom: 1.45em;
}

.footer-description a {
    color: #fff;
    text-decoration: underline;
    transition: all 0.3s;
}

.footer-description a:hover {
    color: #a7e5dd;
    text-decoration: none;
}

.space-footer-ins {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-center__images {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    gap: 10px;
}

.footer-center__images-img img {
    max-width: 175px;
    max-height: 35px;
}


@media screen and (max-width: 991px) {
    .footer-menu-title {
        margin-bottom: 15px;
    }
    .footer-top-item {
        width: 33%;
        margin-bottom: 25px;
    }

    .footer-top-info {
        width: 33%;
        margin-bottom: 35px;
    }
}


/* Styles for footer menu */
@media (max-width: 767px) {
    .space-page-section-ins {
        padding-bottom: 10px;
    }
    .footer-top-item .footer-menu-title {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }
    /* Стрілочка */
    .footer-top-item .footer-menu-title::after {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        border: solid white;
        border-width: 0 3px 3px 0;
        padding: 5px;
        transform: rotate(45deg);
        margin-left: 5px;

        transition: transform 0.3s ease-out;
    }

    .footer-top-item.active .footer-menu-title::after {
        transform: rotate(135deg);
    }

    .footer-top-item.active .footer-menu {
        max-height: max-content;
    }

    .footer-menu li {
        display: block;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

    .footer-top-item {
        width: 100%;
        margin-bottom: 0;
    }

    .footer-menu {
        display: none;
        text-align: left;
    }

    .footer-top-item.active .footer-menu {
        display: block;
    }

    .footer-top-item .footer-menu-title::after {
        font-size: 0.8em;
    }
    .footer__warning {
        padding: 30px 0;
        font-size: 18px;
        line-height: 32px;
    }
    .footer-top-item {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .footer-top-info {
        text-align: center;
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    .footer-top {
        padding: 30px 0 15px 0;
    }
    .footer__market_list {
        justify-content: center;
    }
    .footer__market_list_item {
        margin: 0 10px 20px 10px;
    }
    .footer-top-block {
        margin: 0;
        flex-direction: column;
        align-items: center;
    }
}
/* Styles for footer menu */