/* Default Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: none;
    background-size: 100%;
    background-repeat: no-repeat;
    font-family: Arial, Helvetica, sans-serif;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

h4 {
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}

input {
    outline: none
}

input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.promo__block-img img {
    height: auto;
}

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.ajax-loader {
    opacity: 0.5;
    transition: all 0.5s ease-out;
    pointer-events: none;
}

.btn {
    display: block;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    padding: 13px 0;
    position: relative;
    margin: 0 auto;
    color: #fff;
    background: #99C039;
    width: 100%;
    max-width: 220px;
    transition: all 0.2s linear;
}

.btn:hover {
    background: #74AA1D;
    transition: all 0.3s linear;
}

.overflow {
    overflow: hidden;
}

.container {
    /* 1100 + 30 padding */
    max-width: 1130px;
    margin: auto;
    padding: 0 15px;
}

.header {
    background: -webkit-linear-gradient(180.37deg, rgba(137, 183, 44, 0.2) 10.08%, rgba(150, 191, 55, 0) 50.32%), #2F3031;
    background: linear-gradient(269.63deg, rgba(137, 183, 44, 0.2) 10.08%, rgba(150, 191, 55, 0) 50.32%), #2F3031;
    position: relative;
    z-index: 101;
}

.navbar-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    max-height: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    overflow: auto;
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    /*align-content: center;*/
    gap: 20px
}

.navbar-logo img {
    width: 80px;
    height: 80px;
}

.navbar-nav.active {
    max-height: none;
    height: calc(100vh - 20px);
    opacity: 1;
    margin-top: 20px;
}

.navbar-nav.active::before {
    content: '';
    border-top: 1px solid #898C83;
    position: absolute;
    width: 100vw;
    top: 80px;
    left: -15px;
}

.navbar-nav__list {
    margin-bottom: 100px;
    width: 100%;
}

.sub-menu {
    margin-left: 20px;
}

.navbar-nav__list li {
    font-size: 22px;
    line-height: 25px;
    color: #FFFFFF;
    position: relative;
    padding: 15px 0;
    cursor: pointer;
    border-bottom: 1px solid #898C83;
}

.has-arrow::after {
    content: url("");
    position: absolute;
    top: 15px;
    right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.has-arrow.active::after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.has-arrow.active {
    border-width: 0;
}

.has-arrow.active>.sub-menu {
    max-height: none;
    opacity: 1;
}

.navbar-nav__list .sub-menu {
    height: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.navbar-nav__list .sub-menu.active {
    border-bottom: 0;
}

.navbar-nav-link,
.sub-menu a {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.navbar-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* margin: 13px 20px; */
}


/* .navbar-toggle {
    border: 0;
    outline: 0;
    cursor: pointer;
    background-color: transparent;
    border-left: 1px solid #898C83;
    padding: 13px 0 13px 15px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.navbar-toggle::before {
    content: url('../icons/menu-open.svg');
}

.navbar-toggle.active::before {
    content: url('../icons/menu-close.svg');
} */

.navbar-toggle {
    width: 35px;
    height: 25px;
    cursor: pointer;
    position: relative;
    border: 0;
    outline: 0;
    cursor: pointer;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    /* color: #FFF; */
}

.navbar-toggle.active .burger__line_first,
.navbar-toggle.active .burger__line_fourth {
    opacity: 0;
}

.navbar-toggle.active .burger__line_second {
    transform: translateY(-50%) rotate(45deg);
}

.navbar-toggle.active .burger__line_third {
    transform: translateY(-50%) rotate(-45deg);
}

.burger__line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #FFF;
    position: absolute;
    left: 0;
    transition: .3s all linear;
}

.burger__line_first {
    top: 0;
}

.burger__line_second {
    top: 50%;
    transform: translateY(-50%);
}

.burger__line_third {
    top: 50%;
    transform: translateY(-50%);
}

.burger__line_fourth {
    bottom: 0;
}

.navbar-flag {
    margin-right: 15px;
    padding: 13px 15px 13px 0px;
    border-right: 1px solid #898C83;
}


/* Header End */

.best-casinos {
    margin-top: 20px;
    position: relative;
}

.best-casinos__title_2 {
    margin-top: 30px;
}

.title {
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 20px;
    color: #2F3031;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.title-text {
    font-size: 22px;
    line-height: 25px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0;
}

.title-img {
    display: flex;
    margin-right: 20px;
}

.best-casinos__text {
    font-size: 16px;
    line-height: 20.8px;
    color: #606060;
    margin-bottom: 20px;
}

.best-casinos__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 20px;
    margin-bottom: 30px;
}

.best-casinos__item {
    background: -webkit-linear-gradient(210.74deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 13px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

.b-casinos__main {
    font-size: 14px;
    line-height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.casino-name {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding-top: 5px;
    text-transform: uppercase;
    font-weight: bold;
    color: #2F3031
}

.casino-name img {
    max-width: 64px;
}

.casino-bonus {
    font-weight: normal;
    color: #2F3031;
}

.bonus {
    margin-bottom: 10px;
}

.owner-link {
    position: relative;
    margin-left: 30px;
    font-weight: bold;
    color: #74AA1D
}

.owner-link::after {
    content: url("");
    position: absolute;
    top: 0;
    right: -20px;
}

.b-casinos__controls {
    min-width: 82px;
    width: 28%;
}

.b-casinos__controls>.slot-item__details-rating {
    width: 82px;
    margin: 0 auto 5px;
}

.b-casinos__controls svg {
    margin: 0 auto 5px;
    display: block;
}

.casino-link {
    border: 1px solid #CCCCCC;
    display: block;
    padding: 5px 8px;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: #CCCCCC;
    max-width: 100%;
    margin-left: auto;
    min-height: 40px;
    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;
}

.casino-link-primary {
    background: #99C039;
    color: #FFFFFF;
    margin-bottom: 5px;
    border: none;
}

.alltime-casinos {
    margin-top: 25px;
}

.table-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0 20px;
    margin-bottom: 25px;
    transition: all 0.5s ease-out;
}

.table-wrapper__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #FFF;
    text-align: center;
    background: #2F3031;
    height: 34px;
    margin-bottom: 5px;
    display: none;
}

.panel {
    position: relative;
    width: 100%;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

.panel .panel__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.panel .panel-box {
    padding: 20px 0;
    border-bottom: 1px solid #F2F2F2;
    font-size: 14px;
    line-height: 21px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: stretch;
}

.panel__content .panel-box {
    padding: 10px 22px;
    width: 20%;
}

.panel__content .panel-box:first-child {
    width: 30%;
}

.panel__content .panel-box:nth-child(2) {
    width: 30%;
}

.panel__header-medal {
    position: relative;
    display: flex;
    justify-content: center;
}

.posts__counter {
    position: absolute;
    top: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
}

.panel__content {
    height: auto;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
}

.panel__content.active {
    max-height: 500px;
}

.panel-toggle.active img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.panel .panel-box:last-child {
    border-width: 0;
    margin-bottom: 17px;
}

.panel .panel__header-icon {
    max-width: 55px;
    max-height: 55px;
    width: 100%;
    margin-bottom: 30px;
}


/* .panel__header-rank {
    width: 100%;
} */

.panel .panel__header-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.panel .panel__header-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 13px;
}

.panel .panel__header-logo {
    max-width: 64px;
    max-height: 33px;
}

.panel .panel__header-name a {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #2F3031;
}

.panel__header-name-footer {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    gap: 8px;
    margin-top: 5px;
    font-weight: normal;
}

.panel__header-name-footer>img {
    max-width: 14px;
}

.panel .panel__header-bonus {
    font-size: 14px;
    line-height: 16px;
}

.panel .panel__header-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px 20px;
    max-width: 82px;
}

.panel__header-controls>.slot-item__details-rating {
    width: 82px;
    flex-shrink: 0;
}

.panel .panel__header-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: none;
    background: #99C039;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-weight: bold;
    font-size: 14px;
    line-height: 99.49%;
    text-align: center;
    min-height: 45px;
    width: 100%;
    padding: 5px 5px;
    max-width: 170px;
    color: #FFFFFF;
}

.panel .panel-toggle-desc {
    position: relative;
    background: transparent;
    border: 1px solid #CCCCCC;
    box-shadow: none;
    -webkit-box-shadow: none;
    color: #CCCCCC;
    cursor: pointer;
    padding-right: 25px;
    padding-left: 10px;
    display: none;
}

.panel .panel-toggle-desc.active {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.panel .panel-toggle-desc::after {
    content: url("");
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.3s;
}

.panel .panel-toggle-desc.active::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}

.panel .panel__content-bank-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 12px;
    flex-wrap: wrap;
}

.panel .panel__content-bank-list li {
    list-style: none;
}

.panel .panel__content-bank-list li::marker {
    list-style: none;
    display: none;
}

.panel .panel__content-bank-list li:not(:last-child) {
    margin-right: 8px;
}

.panel .panel__content-bank-list li img {
    max-height: 20px;
}

.panel .panel-toggle {
    background-color: #9AC03A;
    border-width: 0;
    outline: none;
    cursor: pointer;
    position: absolute;
    width: 24px;
    height: 24px;
    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;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%) rotate(180deg);
    transform: translate(-50%, 50%) rotate(180deg);
}

.panel__review {
    display: none;
}

.panel .table-wrapper__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background: -webkit-linear-gradient(210.74deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    /* backdrop-filter: blur(30px); */
    padding: 10px 0;
    margin-bottom: 5px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.body-number__img {
    width: 10%;
    /* margin: 0 auto; */
}

.header-number {
    width: 8%;
    text-align: center;
}

.body-name__img {
    width: 15%;
    /* margin: 0 auto; */
}

.header-name {
    width: 23%;
    text-align: center;
}

.header-title,
.body-title__text {
    width: 15%;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    text-transform: uppercase;
    color: #2F3031;
    max-width: 195px;
    text-align: left;
    /* margin: 0 auto; */
}

.body-title__text-info__comments {
    font-weight: normal;
    font-size: 14px;
    color: #2F3031;
    margin-right: 5px;
}

.body-title__text-info__comments:before {
    content: url(../images/comments.svg);
    margin-right: 5px;
    vertical-align: middle;
}

.body-title__text-info__country:before {
    content: url(../images/ukraine.svg);
}

.body-title__text-info__country {
    vertical-align: bottom;
}

.body-bonus__text {
    width: 15%;
    text-align: center;
    font-size: 18px;
    /* margin: 0 auto; */
}

.header-bonus {
    width: 23%;
}

.body-bonus__text {
    border-left: 1px solid #F2F2F2;
    border-right: 1px solid #F2F2F2;
}

.body-rating__img {
    position: relative;
    /* margin: 0 auto; */
}

.body-rating__img span {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    color: #FFF;
    position: absolute;
    left: 40px;
    /* top: 4px; */
}

.body-rating__img {
    width: 10%;
    margin: 0 auto;
}

.header-acc-btn,
.body-acc-btn {
    width: 17.5%;
}

.body-acc-btn {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #CCCCCC;
    padding: 0;
    height: 45px;
    line-height: 45px;
    position: relative;
    max-width: 170px;
    margin: 0 auto;
    border: 1px solid #CCCCCC;
    background: transparent;
    cursor: pointer;
}

.body-website {
    width: 17.5%;
}

.body-website a {
    display: block;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    padding: 0;
    height: 45px;
    line-height: 45px;
    position: relative;
    max-width: 170px;
    margin: 0 auto;
    color: #fff;
    background: -webkit-linear-gradient(356.72deg, #99C039 52.78%, #74AA1D 103.39%);
    background: linear-gradient(93.28deg, #99C039 52.78%, #74AA1D 103.39%);
}

.body-content__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.details-methods__title,
.details-duration__title,
.details-options__title,
.details-software__title,
.details-bonus__title {
    font-size: 18px;
    color: #2F3031;
    line-height: 25px;
}

.body-content__reviews {
    margin-top: 25px;
}

.body-content__reviews-title {
    font-size: 18px;
    color: #2F3031;
    /* margin-bottom: 5px; */
}

.body-content__reviews-rate span {
    color: #F8D000;
    border: 1px solid #FFFFFF;
    font-size: 25px;
}

.body-content__reviews-review {
    font-size: 16px;
    color: #606060;
    margin-top: 6px
}

.reviews-review {
    display: block;
    font-weight: bold;
    margin-top: 6px;
}


/* Featured Games */

.featured-games {
    margin: 25px 0 50px 0;
}

.featured-games__description p {
    font-size: 16px;
    line-height: 21px;
    color: #606060;
    margin-bottom: 25px;
}

.featured-games__row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 26px;
    justify-content: center;
    transition: all 0.5s ease-out;
}

.slot-item {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 155px;
    min-height: 220px;
    width: 100%;
    transition: all 0.2s linear;
}

.slot-item:hover {
    background: rgba(137, 183, 44, 0.1);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s linear;
}

.slot-item__img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
}

.slot-item__details {
    padding: 0 17px;
    text-align: left;
    position: relative;
    top: -15px;
}

.slot-item__details-rating {
    display: flex;
    align-items: center;
    background-image: url("../icons/rating.svg");
    background-repeat: no-repeat;
    height: 25px;
    position: relative;
}

.casino-rating {
    max-width: 82px;
    display: none
}

.b-casinos__controls>.casino-rating {
    display: flex;
}

.slot-item__details-rating span {
    position: absolute;
    left: 21px;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
}

.slot-item__details-title {
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    color: #2F3031;
    padding: 9px 0 0 0;
}

.show-more {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #2F3031;
    max-width: 210px;
    width: 100%;
    height: 45px;
    border: 1px solid #2F3031;
    background: transparent;
    cursor: pointer;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s linear;
}

.show-more:hover {
    background: #74AA1D;
    color: #FFF;
    border: 1px solid transparent;
    transition: all 0.2s linear;
}

.dark-green {
    transition: all 0.2s linear;
}

.dark-green:hover {
    background: #74AA1D;
    transition: all 0.3s linear;
}


/* Rated Casinos */

.rated-casinos {
    margin-bottom: 50px;
    position: relative;
    overflow-x: clip;
    /* overflow-x: hidden; */
}

.rated-casinos__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rated-casinos__item {
    background: -webkit-linear-gradient(210.74deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 154px;
    min-height: 147px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.r-casinos__item-title {
    margin-top: 20px;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #2F3031;
}


/* Best Netent Casinos */

.netent-casinos {
    background: -webkit-linear-gradient(21.38deg, #333333 3.44%, rgba(0, 0, 0, 0.6) 63.92%), url(../images/netent-bg.jpg);
    background: linear-gradient(68.62deg, #333333 3.44%, rgba(0, 0, 0, 0.6) 63.92%), url(../images/netent-bg.jpg);
    background-size: cover;
    background-position: right;
    background-position: 75% 0%;
    padding: 50px 0;
    position: relative;
}

.netent-casinos__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    z-index: 1;
    position: relative;
}

.n-casinos__row-title,
.n-casinos__row-subtitle {
    color: #FFFFFF;
}

.n-casinos__row-list {
    padding: 0;
    margin: 30px 0 0 0;
}

.n-casinos__row-list li {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #FFFFFF;
}

.n-casinos__row-list li:before,
.d-review__list li:before {
    content: "";
    border-radius: 50%;
    width: 8.35px;
    height: 8.35px;
    background: -webkit-linear-gradient(356.72deg, #99C039 52.78%, #74AA1D 103.39%);
    background: linear-gradient(93.28deg, #99C039 52.78%, #74AA1D 103.39%);
    display: inline-block;
    margin-right: 14px;
    position: relative;
    top: -1.5px;
}

.n-casinos__row-list li:not(:last-child) {
    margin-bottom: 30px;
}

/* Detailed Review */

.detailed-review {
    margin-top: 40px;
}

.detailed-review__content {
    margin-top: 35px;
}

.d-review__content-inner {
    margin-bottom: 30px;
    font-size: 14px;
    color: #2F3031;
    /* max-width: 790px; */
    width: 100%;
}

.d-review__content-inner h2 {
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    color: #2F3031;
    margin-bottom: 20px;
    margin-top: 30px;
}

.d-review__content-inner h3 {
    font-weight: bold;
    font-size: 22px;
    line-height: 25px;
    color: #2F3031;
    margin-bottom: 20px;
    margin-top: 30px;
}

.d-review__content-inner .h3 {
    font-weight: bold;
    font-size: 22px;
    line-height: 25px;
    color: #2F3031;
    margin-bottom: 20px;
    margin-top: 30px;
}

.d-review__content-inner h4 {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #2F3031;
    margin-bottom: 20px;
    margin-top: 30px;
}

.d-review__content-inner h5 {
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    color: #2F3031;
    margin-bottom: 20px;
    margin-top: 30px;
}

.d-review__content-inner h6 {
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    color: #2F3031;
    margin-bottom: 20px;
    margin-top: 30px;
}

.d-review__content-inner p:not(:last-child) {
    margin-bottom: 20px;
}

.d-review__content-inner p strong {
    width: 100%;
    font-size: 16px;
    line-height: 21px;
    color: #2F3031;
    margin: 35px 0 30px 0;
}

/* .d-review__highlited {
    max-width: 880px;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    color: #2F3031;
    margin: 35px 0 30px 0;
} */
.d-review__content-inner .d-review__list li:not(:last-child) {
    margin-bottom: 10px;
}


/* About Project */

.about-project {
    padding: 50px 0 15px;
    position: relative;
    overflow: clip;
}

.about-project__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 20px
}

.about-project__row-leader {
    position: relative;
}

.about-project__row-leader img {
    max-width: 161px;
    border-radius: 50%;
}

.row-leader__shadow {
    background: -webkit-linear-gradient(210.74deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    position: absolute;
    width: 161px;
    height: 161px;
    left: 0;
    top: 10px;
    border-radius: 50%;
    z-index: -2;
    left: -10px;
}

.about-project__row-content {
    max-width: 600px;
    width: 100%;
}

.row-content__title {
    margin: 0;
}

.row-content__subtitle {
    position: relative;
    margin: 20px 0;
}

.row-content__subtitle::after {
    content: url("");
    position: absolute;
    right: 0;
    top: -50px;
}

.row-content__text {
    position: relative;
}

.row-content__text p {
    font-style: italic;
    color: #2F3031;
}

.row-content__text p:not(:last-child) {
    margin-bottom: 30px;
}

.row-content__leader-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/* Info Section */

.info-section {
    background: url(../images/info-bg.png);
    padding: 40px 0;
    background-size: cover;
    background-position: right;
    background-position: 70% 0%;
    margin-bottom: 25px;
}

.info-section__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.info-section__row-text {
    max-width: 800px;
    width: 100%;
}

.info-section__row-text p {
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}


/* Casino Banking Options */

.banking-options {
    margin-bottom: 30px;
    margin-top: 60px;
}

.banking-options__text {
    margin: 25px 0 35px 0;
    /* font-size: 16px; */
    color: #606060;
}

.banking-options__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.banking-options__item {
    display: -webkit-box;
    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;
    padding: 25px 0;
    background: -webkit-linear-gradient(210.74deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 100%
}

.b-options-item__img {
    max-width: 115px;
    width: 100%;
    text-align: center;
}

.b-options-item__info h4 {
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    text-transform: uppercase;
    color: #2F3031;
}

.b-options-item__info {
    min-width: 182px;
    width: 182px;
}

.b-options-item__info p {
    font-size: 14px;
    color: #606060;
}


/* Banking Options FAQ => accordeon */

.banking-options-faq {
    margin-top: 70px;
    /* margin-bottom: 80px; */
    position: relative;
    overflow-x: clip;
    /* overflow-x: hidden; */
}

.accordion,
.tables {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.accordion .a-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.accordion .a-container:last-child {
    margin-bottom: 0px;
}

.accordion .a-container .a-btn {
    margin: 0;
    position: relative;
    padding: 15px 30px;
    color: #2F3031;
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    background: -webkit-linear-gradient(210.74deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding-right: 70px;
}

.accordion .a-container .a-panel {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0px 10px;
}

.accordion .a-container .a-panel p {
    color: #262626;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

.accordion .a-container.active .a-btn {
    color: #fff;
    background: -webkit-linear-gradient(356.72deg, #99C039 52.78%, #74AA1D 103.39%);
    background: linear-gradient(93.28deg, #99C039 52.78%, #74AA1D 103.39%);
}

.accordion .a-container.active .a-panel {
    padding: 15px 25px;
    opacity: 1;
    max-height: 500px;
    background: -webkit-linear-gradient(210.74deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.arrow {
    margin: 25px;
    display: inline-block;
    height: 12px;
    position: relative;
    width: 12px;
    position: absolute;
    right: 0;
    top: -8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.3s;
}

.arrow::after {
    content: '';
    display: inline-block;
    height: 12px;
    left: 0;
    position: absolute;
    top: 0;
    width: 12px;
    border-bottom-style: solid;
    border-bottom-width: 3px;
    border-right-style: solid;
    border-right-width: 3px;
    border-color: #262626;
}

.accordion .a-container.active .a-btn .arrow,
.tables .a-container.active .a-btn .arrow {
    top: 0px;
    -webkit-transform: rotate(-136deg);
    transform: rotate(-136deg);
    transition: all 0.3s;
}

.accordion .a-container.active .arrow:after {
    border-color: #FFF;
}

.js-show-more-wrapper .js-hidden {
    display: none;
}

.js-show-more-wrapper.js-active .js-hidden {
    display: block;
}

/* Tables */

.tables .a-container+.a-panel {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0px 10px;
}

.tables .a-container.active .a-btn {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.tables .a-container.active {
    margin-bottom: 0;
}

.tables .a-container.active+.a-panel {
    padding: 15px 25px;
    opacity: 1;
    max-height: 500px;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #F2F2F2;
    margin-bottom: 5px;
}

.tables .a-container.active .arrow:after {
    height: 8px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 8px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-color: #CCCCCC;
}

.tables .a-container .arrow:after {
    width: 8px;
    height: 8px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-color: #CCCCCC;
    left: 5px;
    top: -7px;
}


/* Footer */

.footer_newsletter {
    background: url(../images/newsletter-bg.png);
    background-size: auto;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 22px 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin: -70px auto -100px;
    gap: 13px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 35px;
}

.newsletter_title {
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 100%;
    text-align: center;
}

.newsletter_form_wrapper {
    position: relative;
    width: 100%;
    max-width: 260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    box-sizing: border-box;
}

.newsletter_form_wrapper input {
    width: 100%;
    height: 40px;
    padding-right: 50px;
    padding-left: 15px;
    border: 0px solid transparent;
    border-radius: 0;
    background-color: transparent;
    color: #FFF;
    font-weight: bold;
    font-size: 16px;
    box-sizing: border-box;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    border-left: 1px solid #FFFFFF;
}

.newsletter_form_wrapper input::-webkit-input-placeholder {
    color: #FFF;
}

.newsletter_form_wrapper input::-moz-placeholder {
    color: #FFF;
}

.newsletter_form_wrapper input:-ms-input-placeholder {
    color: #FFF;
}

.newsletter_form_wrapper input::placeholder {
    color: #FFF;
}

.newsletter_form_wrapper input[type="submit"] {
    width: 170px;
    height: 40px;
    cursor: pointer;
    background: #F8D000;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    padding-right: 30px;
    padding-left: 30px;
    outline: none;
    border: none;
    transition: all 0.3s linear;
}

.newsletter_form_wrapper input[type="submit"]:hover {
    transition: all 0.4s linear;
    background: #E3C006;
}

.footer-first__row {
    background-color: #2F3031;
    /*padding-top: 15px;*/
    margin-top: 60px;
}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*padding: 110px 0 0;*/
    padding: 50px 0 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

.footer__info .footer-logo img {
    width: 80px;
    height: 80px;
}

.footer-googleplay {
    margin-top: 35px;
    display: none;
}

.footer__menu-list {
    padding: 16px 0;
    width: 100%;
}


/* .footer__menu-list:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
} */

.footer__menu-list ul {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.leader-info__name {
    font-weight: bold;
    font-size: 1.17em;
}

.footer__menu-list .h4 {
    position: relative;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.footer-arrow {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    position: absolute;
    right: 0;
}

.footer__menu-list.active ul {
    max-height: 500px;
    opacity: 1;
}

.footer__menu-list.active .footer-arrow {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.footer__menu-list ul li {
    margin-top: 15px;
}

.footer__menu-list ul li a {
    font-size: 16px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.footer__menu-list ul li a:hover {
    transition: all 0.4s;
    color: #CCCCCC;
}

.soc-icons {
    background: -webkit-linear-gradient(51.31deg, rgba(137, 183, 44, 0.2) -14%, rgba(150, 191, 55, 0) 61.91%), #2F3031;
    background: linear-gradient(38.69deg, rgba(137, 183, 44, 0.2) -14%, rgba(150, 191, 55, 0) 61.91%), #2F3031;
    padding: 8px 10px 8px 10px;
    border-radius: 50%;
    font-size: 15px;
    color: #FFF;
}

.social-links a {
    text-align: center;
    float: left;
    width: 30px;
    height: 30px;
    background: -webkit-linear-gradient(51.31deg, rgba(137, 183, 44, 0.2) -14%, rgba(150, 191, 55, 0) 61.91%), #2F3031;
    background: linear-gradient(38.69deg, rgba(137, 183, 44, 0.2) -14%, rgba(150, 191, 55, 0) 61.91%), #2F3031;
    border-radius: 100%;
    margin-right: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s linear;
}

.social-links a:hover {
    background: #74AA1D;
    transition: all 0.2s linear;
}

.social-links a i {
    font-size: 15px;
    line-height: 31px;
    color: #FFF;
}

.footer-second__row {
    background: -webkit-linear-gradient(51.31deg, rgba(137, 183, 44, 0.2) -14%, rgba(150, 191, 55, 0) 61.91%), #2F3031;
    background: linear-gradient(38.69deg, rgba(137, 183, 44, 0.2) -14%, rgba(150, 191, 55, 0) 61.91%), #2F3031;
    padding-top: 30px;
}

.second__row-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.second__row-slogan {
    margin-bottom: 10px;
}

.footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.second__row-wrapper .footer__nav a {
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #FFFFFF;
    transition: all 0.3s;
}

.second__row-wrapper .footer__nav a:hover {
    transition: all 0.4s;
    color: #CCCCCC;
}

.footer-third__row {
    background: rgb(229, 229, 229);
    background: -webkit-linear-gradient(left, rgba(229, 229, 229, 0.8774860285911239) 59%, rgba(254, 246, 204, 0.6898109585631127) 100%);
    background: linear-gradient(90deg, rgba(229, 229, 229, 0.8774860285911239) 59%, rgba(254, 246, 204, 0.6898109585631127) 100%);
}

.third__row-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 17px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    gap: 15px 0;
}

.third__row-wrapper nav {
    width: 100%;
    text-align: center;
}

.third__row-wrapper .copyright {
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.2);
}

.third__row-wrapper nav a {
    display: inline-block;
    margin: 0 1rem;
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}


/* Back to top button */

.scrollToTopBtn {
    height: 45px;
    background: -webkit-linear-gradient(356.72deg, #99C039 52.78%, #74AA1D 103.39%);
    background: linear-gradient(93.28deg, #99C039 52.78%, #74AA1D 103.39%);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    position: fixed;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    cursor: pointer;
    z-index: 100;
    width: 100px;
    bottom: 28px;
    right: -15px;
}

.showBtn {
    opacity: 1;
}


/* Author Page */

.breadcrumbs {
    margin-top: 30px;
    margin-bottom: 30px;
}

.breadcrumbs a {
    font-size: 18px;
    color: #2F3031;
    border-bottom: 2px solid #2F3031;
    display: inline-block;
    margin-bottom: 5px;
}

.breadcrumbs span {
    font-size: 18px;
    color: #2F3031;
}

.breadcrumbs a.breadcrumbs-current {
    border-bottom: none;
}


/* .author-content {
    margin-bottom: 100px;
} */

/* .author-content__title:before {
    content: url(../images/author.png);
    position: relative;
    display: inline;
    top: 4px;
    left: 0;
    margin-right: 20px;
} */

.author-content-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.author-content__logo {
    display: flex;
    margin-right: 20px;
}

.author-content__logo img {
    border-radius: 50%;
}

.author-content__title {
    margin: 0 !important;
}

.author-content__text p,
.author-content__extratext p {
    color: #606060;
}

.author-content__socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px dashed #A9A9A9;
    border-bottom: 1px dashed #A9A9A9;
    padding: 20px 0px;
    margin: 35px 0;
}

.author-content__socials .content__socials:nth-child(even) {
    margin: 0 auto;
}

.author-content__socials .content__socials:nth-child(odd) {
    width: 50%;
    height: 55px;
    border-right: 1px dashed #A9A9A9;
    margin: 8px 0px;
}

.socials-left__img,
.socials-right__img {
    margin-right: 10px;
}

.content__socials {
    display: flex;
    align-items: center;
}

/* .content__socials-left {
    width: 50%;
}

.content__socials-right {
    margin: 0 auto;
} */

.socials-left__info,
.socials-right__info {
    line-height: 22px;
}

.socials-left__info-title,
.socials-right__info-title {
    font-weight: bold;
    font-size: 14px;
    color: #CCCCCC;
}

.socials-left__info-url a,
.socials-right__info-url a {
    font-weight: bold;
    font-size: 16px;
    color: #99C039;
}

/* .dashed-separator {
    height: 55px;
    border-right: 1px dashed #A9A9A9;
} */

.author-content__materials {
    margin: 25px 0;
}

.author-content__materials-list ul {
    display: flex;
    flex-wrap: wrap;
}

.author-content__materials-list ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 13px;
    width: 50%;
}

.author-content__materials-list ul li img {
    margin-right: 15px;
    width: 37px;
    height: 37px;
    border-radius: 50%;
}

.author-content__materials-list ul li a {
    font-weight: bold;
    font-size: 18px;
    color: #2F3031;
}

/* Casino Page */

.casino-promo {
    overflow-x: clip;
    /* overflow-x: hidden; */
    position: relative;
}

.casino-promo__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    border: 2px solid #89B72C;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px 40px 0 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.promo__block-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-start;
}

.promo__block-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    width: 100%;
    align-items: center;
    padding: 20px 0 15px 0;
}

.promo__block-info__title {
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    color: #2F3031;
    margin: 0;
}

.promo__block-info__payments {
    max-width: 60%;
    margin: 0 auto;
}

.promo__block-info__details {
    font-size: 14px;
    color: #2F3031;
    text-decoration: underline;
    position: absolute;
    right: 40px;
}

.promo__block-info__details a {
    color: #2F3031;
}

.promo__block-info__details__comments:before {
    content: url("");
    margin-right: 5px;
    vertical-align: middle;
}

/* .promo__block-info__details__country:before {
    content: url('https://flagcdn.com/za.svg');
} */
.promo__block-info__details__country {
    overflow: hidden;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-flex;
    margin-bottom: 2px;
    vertical-align: middle;
    margin-right: 5px;
}

.promo__block-info__details__country img {
    width: auto;
    height: 100%;
    margin: 0 auto;
    width: 15px;
    height: 15px;
}

.promo__block-bonus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    width: 100%;
}

.promo__block-bonus__img {
    display: flex;
    width: 82px;
    flex-shrink: 0;
    align-items: center;
    background-image: url("");
    background-repeat: no-repeat;
    height: 25px;
    position: relative;
    width: 82px;
    flex-shrink: 0;
}

.promo__block-bonus__img span {
    position: absolute;
    left: 21px;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
}

.promo__block-bonus__title {
    font-weight: bold;
    font-size: 23px;
    text-align: center;
    text-transform: uppercase;
    color: #2F3031;
    margin: 0 0 10px 0;
}

.promo__block-bonus__title span {
    font-size: 23px;
    font-weight: normal;
    text-transform: initial;
    color: #2F3031;
    display: block;
    margin-top: 10px;
}

.promo__block-action {
    text-align: center;
}

.promo__block-action a {
    width: 224px;
    font-size: 18px;
    flex-shrink: 0;
}

.promo__block-action__text a {
    font-weight: bold;
    font-size: 14px;
    color: #99C039
}


/* Casino Features */

.casino-features {
    background: -webkit-linear-gradient(210.74deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    border-top: 1px solid #D9D9D9;
    /* border-bottom: 1px solid #D9D9D9; */
    margin: 30px 0;
}

.casino-features>.container {
    padding: 0;
}

.casino-features__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.casino-features__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 50%;
    padding: 15px;
    border-bottom: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
    min-height: 75px;
    width: 100%;
}

.features__item-img {
    margin-right: 10px;
    display: flex;
}

.features__item-title {
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    color: #99C039;
}

/* Casino Cards */

.casino-cards__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.casino-cards__box {
    max-width: 350px;
    width: 100%;
    min-height: 220px;
    background: -webkit-linear-gradient(218.02deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%), #FFFFFF;
    background: linear-gradient(231.98deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    padding: 25px 22px;
    box-sizing: border-box;
    word-wrap: break-word;
    position: relative;
}

.casino-cards__box.star-bg {
    background-image: url(../images/star.svg), -webkit-linear-gradient(218.02deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%);
    background-image: url(../images/star.svg), linear-gradient(231.98deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%);
    background-repeat: no-repeat;
    background-position: 93% 85%;
}

.c-cards__box-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #99C039;
    margin-bottom: 20px;
}

.c-cards__box-content span {
    font-weight: bold;
    font-size: 18px;
    color: #99C039;
    position: relative;
    width: 100%;
    cursor: pointer;
}

.c-cards__box-content__title {
    font-weight: bold;
    font-size: 18px;
    color: #99C039;
    line-height: 27px;
}

.c-cards__box-content__text {
    font-size: 18px;
    color: #2F3031;
    line-height: 27px;
}

.content-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    /* justify-content: space-between; */
    align-items: center;
}

.c-cards__box-content__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-cards__box-content__images {
    /* width: 40%; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.c-cards__box-content__images img {
    max-height: 36px;
    -o-object-fit: contain;
    object-fit: contain;
}

.c-cards__box-content.image-height img {
    max-height: 36px;
}

.c-cards__box-content.image-height img.hidden {
    display: none;
}

.box-content__images-row-1,
.box-content__images-row-2,
.box-content__images-row-3 {
    margin-bottom: 15px;
}

.box-content__images-row-1,
.box-content__images-row-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.box-content__images-row-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.box-content__images-row-2 img:first-child {
    margin-right: 20px;
}

.c-cards__box-content__images img {
    display: block;
    /* max-width: 105px; */
}

.c-cards__box-content__images img.hidden {
    display: none;
}

.c-cards__box-content__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* gap: 40px */
}

.box-content__lists {
    column-count: 2;
    /* column-gap: 30px; */
}

.box-content__lists li {
    display: flex;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    height: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #2F3031;
    align-items: center;
    margin-bottom: 15px;
    overflow: auto;
}

.box-content__lists img {
    margin-right: 10px;
    height: 30px;
}


/* Player Reviews */

.player-reviews {
    margin-top: 60px;
}

.player-reviews__title {
    align-items: flex-start;
    line-height: 35px;
}

.player-reviews__info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* max-width: 730px; */
}

.player-reviews__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.player-reviews__subtitle {
    font-size: 18px;
    display: block;
    font-weight: normal;
    color: #2F3031;
}

.info-sort {
    display: none;
    border: none;
    font-size: 18px;
    margin-top: 13px;
    color: #2F3031;
    background: transparent;
    outline: none;
    cursor: pointer;
}


/* .nice-select-dropdown {
    width: 100%;
} */


/* .info-sort:active, .info-sort.open, .info-sort:focus {
	padding: 0;
} */

.player-reviews__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.player-review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* max-width: 730px; */
    box-sizing: border-box;
    background: -webkit-linear-gradient(218.02deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%), #FFFFFF;
    background: linear-gradient(231.98deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
}

.player-reviews__review-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    /* max-width: 730px;  */
}

.player-reviews__review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
}

.p-reviews__review-medal {
    margin-right: 8px;
}

.review-info__title {
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #2F3031;
}

.review-info__date {
    font-weight: bold;
    font-size: 14px;
    color: #CCCCCC;
}

.player-reviews__text {
    font-size: 16px;
    line-height: 21px;
    margin: 20px 0;
    color: #606060;
}

.moreText {
    display: none;
}

.read-more-btn {
    font-weight: bold;
    font-size: 14px;
    color: #9AC03A;
    cursor: pointer;
}

.text.show_more .moreText {
    display: inline;
}

.text.show_more .dots {
    display: none;
}

.player-reviews__text p.active {
    height: auto;
    max-height: none;
    opacity: 1;
    /* -webkit-line-clamp: initial; */
}

.player-reviews__text span svg {
    margin-left: 5px;
    transform: rotate(0deg);
    transition: all 0.3s;
}

.player-reviews__text span svg path {
    fill: #9AC03A;
}

.player-reviews__text p.show_more+span svg {
    transform: rotate(-180deg);
    transition: all 0.3s;
}

.player-reviews__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.reviews__action-reply {
    margin-right: 20px;
}

/* NEW */
/* .comment-like {
    display: flex;
    align-items: center;
    gap: 5px;
}
.comment-like span {
    font-size: 14px;
} */
.reviews__action-reply svg path,
.comment-like svg path {
    transition: all 0.2s linear;
}

.reviews__action-reply svg:hover>path,
.comment-like svg:hover>path {
    transition: all 0.2s linear;
    fill: #99C039;
}

.player-review-post {
    background: -webkit-linear-gradient(356.72deg, #99C039 52.78%, #74AA1D 103.39%);
    background: linear-gradient(93.28deg, #99C039 52.78%, #74AA1D 103.39%);
    border: none;
    outline: none;
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    padding: 13px 0;
    color: #FFFFFF;
    cursor: pointer;
    /* max-width: 730px; */
}

.post-review-overlay {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
}

.post-review-overlay.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.post-close-btn {
    position: absolute;
    background-color: transparent;
    border: none;
    outline: none;
    top: -45px;
    right: 0;
    width: 27px;
    height: 39px;
    cursor: pointer;
}

.post-close-btn::before,
.post-close-btn::after {
    content: '';
    display: block;
    width: 3px;
    height: 30px;
    background-color: #FFFFFF;
    position: absolute;
    left: 50%;
    bottom: -5px;
}

.post-close-btn::before {
    -webkit-transform: translateX(-50%) rotate(-50deg);
    transform: translateX(-50%) rotate(-50deg);
}

.post-close-btn::after {
    -webkit-transform: translateX(-50%) rotate(50deg);
    transform: translateX(-50%) rotate(50deg);
}

.post-review {
    max-width: 349px;
    background: -webkit-linear-gradient(210.74deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /* -webkit-backdrop-filter: blur(30px); */
    /* backdrop-filter: blur(30px); */
    padding: 22px 40px;
    box-sizing: border-box;
    position: relative;
}

.post-review-success {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post-review.success .post-review__body-title {
    text-align: center;
    margin: 35px 0;
}

.post-review.success a {
    width: 100%;
}

.post-review__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 35px;
}

.post-review__header-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #2F3031;
    margin-bottom: 20px;
}

.post-review__header-title span {
    display: block;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #CCCCCC;
}

.post-review__rating {
    width: 225px;
}

.post-review__body a {
    margin: 10px;
}

.post-review__body-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #2F3031;
    margin: 38px auto 35px;
    text-align: center;
}

.post-review__form {
    margin-top: 10px;
    position: relative;
}

.post-review__form textarea {
    resize: none;
    width: 100%;
    border: 1px solid #CCCCCC;
    padding: 15px 20px;
    box-sizing: border-box;
    font-size: 14px;
    color: #CCCCCC;
    font-weight: bold;
    outline: none;
    background: transparent;
}

.post-review__form input.author-comment {
    resize: none;
    width: 100%;
    border: 1px solid #CCCCCC;
    padding: 15px 20px;
    box-sizing: border-box;
    font-size: 14px;
    color: #CCCCCC;
    font-weight: bold;
    outline: none;
    background: transparent;
    margin-bottom: 15px;
}

.post-review__form textarea::-webkit-input-placeholder,
.post-review__form input.author-comment::-webkit-input-placeholder {
    font-size: 14px;
    color: #CCCCCC;
}

.post-review__form textarea::-moz-placeholder {
    font-size: 14px;
    color: #CCCCCC;
}

.post-review__form textarea:-ms-input-placeholder {
    font-size: 14px;
    color: #CCCCCC;
}

.post-review__form textarea::placeholder,
.post-review__form input.author-comment::placeholder {
    font-size: 14px;
    color: #CCCCCC;
}

.required {
    border: 1px solid red !important;
    transition: all 0.3s;
}

.charactersRemaining {
    position: absolute;
    bottom: 90px;
    right: 15px;
    font-weight: bold;
    color: #CCCCCC;
    font-size: 14px;
}

.post-review__form button {
    width: 220px;
    outline: none;
    border: none;
    margin-top: 30px;
    cursor: pointer;
}

.post-review__body a {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #99C039;
    text-align: center;
    display: block;
}


/* Casino Register */

.casino-register {
    margin-top: 40px;
    margin-bottom: 30px;
}

.casino-register__wrapper {
    position: relative;
}


/* .casino-register__wrapper:after {
    content: '';
    position: absolute;
    right: 10px;
    height: 100%;
    width: 13px;
    background: #FBFAF7;
    top: 0;
    display: none;
} */

.casino-register__step-circle {
    position: relative;
}

.casino-register__step {
    padding: 35px 20px 25px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background: -webkit-linear-gradient(197.27deg, rgba(137, 183, 44, 0.2) -19.93%, rgba(150, 191, 55, 0) 39.76%), #FFFFFF;
    background: linear-gradient(252.73deg, rgba(137, 183, 44, 0.2) -19.93%, rgba(150, 191, 55, 0) 39.76%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.c-register__step-img {
    position: absolute;
    content: '';
    width: 76px;
    height: 76px;
    background: -webkit-linear-gradient(356.72deg, #99C039 52.78%, #74AA1D 103.39%);
    background: linear-gradient(93.28deg, #99C039 52.78%, #74AA1D 103.39%);
    bottom: 0;
    z-index: 50;
    border-radius: 50%;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
}

.step-img__number {
    font-size: 115px;
    font-weight: bold;
    color: #360000;
    position: absolute;
    right: -7px;
    top: -27px;
    line-height: 1.15;
}

.casino-register__step-circle:not(:last-child)::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 7.5px;
    background: -webkit-linear-gradient(356.72deg, #99C039 52.78%, #74AA1D 103.39%);
    background: linear-gradient(93.28deg, #99C039 52.78%, #74AA1D 103.39%);
    bottom: -5px;
    z-index: 50;
    left: 47px;
}

.step-info__title {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #2F3031;
    margin-bottom: 10px;
}

.c-register__step-info {
    margin-left: 100px;
}

.c-register__step-info p {
    font-size: 16px;
    line-height: 21px;
    color: #606060;
    margin: 0;
}


/* .c-register__step-img {
    margin-top: -10px;
} */

.casino-register__step {
    align-items: center;
}


/* Pros and Corns */

.pros-corns {
    margin-top: 40px;
    position: relative;
    overflow-x: clip;
    /* overflow-x: hidden; */
}

.pros-corns__wrapper {
    background: -webkit-linear-gradient(218.02deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%), #FFFFFF;
    background: linear-gradient(231.98deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    position: relative;
}

.pros-corns__wrapper h3 {
    margin-top: 0 !important;
    margin-bottom: 13px !important;
}

.pros-corns__wrapper .h3 {
    margin-top: 0 !important;
    margin-bottom: 13px !important;
}

.pros-corns__list-1 li,
.pros-corns__list-2 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #2F3031;
    margin-bottom: 15px;
    max-width: 195px
}

.pros-corns__list-2 li:last-child {
    margin-bottom: 0;
}

.pros-corns__list-1 li svg,
.pros-corns__list-2 li svg {
    margin-right: 15px;
}

.c-cards__box-content__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 40%;
    gap: 15px;
}

.content-images>span {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.row-2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.c-cards__box-content__row img {
    width: 100%;
    max-width: 145px;
    -o-object-fit: scale-down;
    object-fit: contain;
}


/* News Page */


/* .news-slots {
    margin-bottom: 130px;
} */

.pagination-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    max-width: 350px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 15px; */
    max-width: 350px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
}

/* .page-numbers a, .page-numbers span {
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    transition: opacity 0.2s linear;
} */

.pagination-link a,
.pagination-link span.current,
.nav-links span,
.nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 45px;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    /* backdrop-filter: blur(30px); */
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    color: #2F3031;
    cursor: pointer;
    position: relative;
    z-index: 9;
}

.pagination-link-helper {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    transition: opacity 0.2s linear;
}

.pagination-link a:hover .pagination-link-helper {
    opacity: 1;
}

.pagination-link span.current,
.nav-links span.current {
    background: #608B1A;
    color: #FFF;
}

.pagination-link span.current:hover .pagination-link-helper {
    opacity: 0;
}

.load-more a {
    max-width: 350px;
    width: 100%;
    height: 45px;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(30px); */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
    color: #2F3031;
    margin-left: auto;
    margin-right: auto;
}


/* Page Game Slots */

.game-slots__wrapper {
    display: flex;
    flex-direction: column;
}


/* .game-slots {
    margin-bottom: 130px;
} */

.game-slots__description p {
    font-size: 16px;
    line-height: 21px;
    color: #606060;
    margin-bottom: 25px;
}

.g-slots__search {
    display: flex;
    margin-top: 35px;
    margin-bottom: 40px;
}

.g-slots__search input[type=search] {
    height: 63px;
    width: 100%;
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(30px); */
    border: none;
    outline: none;
    padding-left: 20px;
    font-size: 18px;
    color: #CCCCCC;
}

.g-slots__search input[type=search]::placeholder {
    font-weight: bold;
    font-size: 18px;
    color: #CCCCCC;
}


/* Style the submit button */

.g-slots__search button {
    width: 64px;
    background: linear-gradient(93.28deg, #99C039 52.78%, #74AA1D 103.39%);
    color: white;
    font-size: 17px;
    border: none;
    border-left: none;
    /* Prevent double borders */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* form.g-slots__search button:hover {
    background: #0b7dda;
  } */

.g-slots__search svg {
    height: 24px;
    width: 24px;
}

.g-slots__search svg path {
    fill: #FFF;
}

.game-slots__info-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "sort" "filters" "slots";
}

.game-slots__content {
    max-width: 825px;
    width: 100%;
    grid-area: slots;
}

.g-slots__content-sorting {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 14px;
    grid-area: sort;
}

.g-slots-qnty {
    color: #2F3031;
}

.g-slots-sorting-params {
    display: flex;
}

.sorting-params__btn {
    margin-right: 13px;
    color: #CCCCCC;
    border: none;
    outline: none;
    background: none;
    /* cursor: pointer; */
}

.sorting-params label {
    color: #2F3031;
    cursor: pointer;
}

.sorting-form input {
    opacity: 0;
    position: absolute;
    width: 0;
}

.sorting-params input[type="radio"] {
    /* opacity: 0;
    position: absolute;
    width: 0; */
}

.sorting-params input:checked+label {
    font-weight: bold;
    color: #99C039;
}

.sorting-params label:not(:last-child) {
    margin-right: 13px;
}

.sorting-params label.active {
    font-weight: bold;
    color: #99C039;
}

.game-slots__sidebar {
    /* max-width: 255px; */
    margin-bottom: 30px;
    grid-area: filters;
}

.reset-filters {
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(30px); */
    /* Note: backdrop-filter has minimal browser support */
    font-weight: bold;
    font-size: 18px;
    color: #99C039;
    border: none;
    outline: none;
    /* or 20px */
    width: 100%;
    height: 57px;
    cursor: pointer;
}

.filter-blocks {
    background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(30px); */
}

.filter-block {
    /* background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px); */
    /* Note: backdrop-filter has minimal browser support */
}

.filter-block__title {
    padding: 10px 22px;
    min-height: 60px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.filter-block:not(:last-child) .filter-block__title {
    border-bottom: 1px solid #D9D9D9;
}

.filter-block__title.active {
    border: none;
    font-weight: bold;
}

.filter-block__title a {
    cursor: pointer;
    font-size: 18px;
    color: #2F3031;
}

.filter-block__title.active svg {
    transform: rotate(-180deg);
    transition: all 0.3s;
}

.filter-block__title.active svg path {
    fill: #99C039;
}

.filter-block__title+.filter-block__params {
    transition: all 0.3s ease-in;
    height: 0;
    max-height: 150px;
    overflow: hidden;
    opacity: 0;
    padding: 0 22px;
}

.filter-block__title.active+.filter-block__params::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    /* background-color: #aaa; */
}


/* Add a thumb */

.filter-block__title.active+.filter-block__params::-webkit-scrollbar-thumb {
    background: #aaa;
}

.filter-block__title.active+.filter-block__params {
    height: auto;
    opacity: 1;
    padding: 10px 22px;
    border-bottom: 1px solid #D9D9D9;
    /* transition: all 0.3s ease-in; */
    overflow-y: scroll;
}

.filter-block__title svg {
    margin-left: auto;
    transform: rotate(0deg);
    transition: all 0.3s;
}

.filter-block__params {
    padding: 15px 0;
    max-height: 100px;
    /* overflow-y: scroll; */
}


/* .filter-block__params label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
} */

.filter-block__params label {
    display: block;
    position: relative;
    padding: 0 30px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.filter-block__params label:not(:last-child) {
    margin-bottom: 10px;
}

/* Hide the browser's default checkbox */

.filter-block__params label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: -2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: transparent;
    border: 1px solid #D9D9D9;
    border-radius: 0;
}


/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.filter-block__params label input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.filter-block__params label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #99C039;
    border-radius: 2px;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.filter-block-search {
    margin-bottom: 20px;
}

.filter-block-search label {
    padding: 0;
}

.filter-block-search input[type="search"] {
    width: 100%;
    position: relative;
    outline: none;
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    height: 45px;
    padding-left: 15px;
    font-size: 14px;
    color: #CCCCCC;
}

.filter-block-search input[type="search"]::placeholder {
    font-weight: bold;
    font-size: 14px;
    color: #CCCCCC;
}

.filter-block-search svg {
    position: absolute;
    right: 15px;
    transform: translateY(70%);
}

.filter-block-search svg path {
    fill: #CCCCCC;
}

.slot-item__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
    grid-template-areas: "main-1" "sidebar" "main-2" "sidebar-author" "main-3" "main-4";
}

.main-1 {
    grid-area: main-1;
}

.main-2 {
    grid-area: main-2;
    padding: 0 15px;
}

.main-3 {
    grid-area: main-3;
    padding: 0 15px;
}

.main-4 {
    grid-area: main-4;
    padding: 0 15px;
}

.slot-sidebar {
    /* padding: 0 15px; */
    width: 100%;
    grid-area: sidebar;
}

.sidebar-author {
    grid-area: sidebar-author;
}

.slot-content {
    width: 100%;
}

.slot-item__wrapper .player-reviews {
    margin-top: 0;
}

.a-dead-slot__text p {
    font-size: 16px;
    color: #606060;
}

.a-dead-slot__text {
    margin-bottom: 16px;
    padding: 0 15px;
}

.a-dead-slot__rate {
    margin: 0 15px;
    position: relative;
}

.a-dead-slot__rate span {
    position: absolute;
    left: 26px;
    top: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #FFF;
}

iframe.a-dead-slot__demo-game {
    width: 100%;
    min-height: 540px;
}

.slot-full-package {
    margin-top: 40px;
}

.slot-full-package .title {
    padding: 0 15px;
}

.a-welcome-package {
    max-width: 825px;
    width: 100%;
    height: 254px;
    background-position-x: right;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 50px;
}

.welcome-package__title {
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    color: #2F3031;
    margin-bottom: 25px;
}

.welcome-package__title span {
    font-size: 36px;
    display: block;
}

.a-welcome-package a {
    margin: 0;
}

.slot-item__wrapper .pros-corns__wrapper {
    padding: 40px 55px;
}

.slot-item__wrapper .pros-corns__list-2 {
    margin-right: 0;
}

.slot-book {
    margin-top: 40px;
}

.slot-book__info {
    font-size: 16px;
    color: #606060;
    line-height: 21px;
}

.slot-book__info span {
    font-weight: bold;
    display: block;
}

.slot-item__wrapper .player-reviews__info-wrap,
.news__wrapper .player-reviews__info-wrap {
    max-width: none;
}

.slot-item__wrapper .player-reviews__wrapper,
.news__wrapper .player-reviews__wrapper {
    flex-direction: column;
}

.slot-item__wrapper .player-review,
.news__wrapper .player-review {
    width: 100%;
    max-width: none;
}

.slot-item__wrapper .post-review-overlay,
.news__wrapper .post-review-overlay,
.slot-item__wrapper .post-review,
.news__wrapper .post-review {
    width: 100%;
    max-width: none;
}

.slot-item__wrapper .post-review__header,
.news__wrapper .post-review__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.slot-item__wrapper .post-review__header-title,
.news__wrapper .post-review__header-title {
    margin: 0;
    margin-bottom: 20px;
}

.slot-item__wrapper .post-review__header-title span,
.news__wrapper .post-review__header-title span {
    text-align: left;
}

.slot-item__wrapper .post-review__header,
.news__wrapper .post-review__header {
    margin-bottom: 25px;
}

.slot-item__wrapper .post-review__body-title,
.news__wrapper .post-review__body-title {
    margin: 0 0 10px 0;
    text-align: left;
}

.slot-item__wrapper textarea,
.news__wrapper textarea {
    height: 115px;
}

.slot-item__wrapper .post-review__form button,
.news__wrapper .post-review__form button {
    margin: 15px 0 0 0;
}

.slot-item__wrapper .post-review__body a,
.news__wrapper .post-review__body a {
    text-align: left;
}

.slot-item__wrapper .charactersRemaining,
.news__wrapper .charactersRemaining {
    bottom: 72px;
}

.slot-item__wrapper .post-review,
.news__wrapper .post-review {
    height: 100%;
    min-height: auto;
}

.post-review-overlay.active .player-reviews__wrapper {
    flex-direction: column;
}

.post-review-overlay.active .post-review {
    height: auto;
    min-height: auto;
}

.post-review-overlay.active .post-review {
    width: auto;
    max-width: none;
}

.post-review-overlay.active .post-review__header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.post-review-overlay.active .post-review__form button {
    margin: 15px auto 0 auto;
}

.post-review-overlay.active .post-review__body a {
    text-align: center;
}

.post-review-overlay.active textarea {
    height: auto;
}

.slot .banking-options-faq {
    margin-top: 20px !important;
    margin-bottom: 0;
}

.slot .detailed-review {
    margin-top: 0;
    margin-bottom: 40px;
}

.slot .featured-games {
    margin: 40px 0 0 0;
}

.author-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(231.98deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-box {
    padding: 16px 20px;
    display: none;
}

.sidebar-author>.sidebar-box {
    display: flex;
}

.author-img {
    margin-right: 15px;
    display: none;
}

.author-img img {
    border-radius: 100%;
}

.author-title,
.author-title a {
    font-weight: bold;
    color: #99C039;
    line-height: 21px;
}

.author-post-date {
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
    color: #CCCCCC;
    display: none;
}

.slot-attributes {
    padding: 25px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.slot-attribute {
    max-width: calc(50% - 10px);
    width: 100%;
}

.slot-attribute__title {
    font-weight: bold;
    line-height: 21px;
    color: #99C039;
}

.slot-attribute__info {
    line-height: 21px;
    color: #606060;
}

.slot-attribute__info a {
    color: #606060;
    text-decoration: none;
}

.slot-contents {
    padding: 25px 20px;
    margin-top: 30px;
    background: linear-gradient(231.98deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%), #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.slot-contents-title {
    display: flex;
    align-items: center;
}

.contents-title__img {
    margin-right: 10px;
}

.contents-title__text {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #2F3031;
}

.slot-contents-info {
    /* margin-bottom: 20px; */
    margin-top: 20px;
}

.contents-info__title {
    font-weight: bold;
    text-transform: uppercase;
    line-height: 21px;
    color: #99C039;
    margin-bottom: 10px;
    display: block;
}

.slot-attributes__wrapper {
    background: linear-gradient(231.98deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%), #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
}

.slot-attributes__wrapper span {
    display: none;
}

.slot-contents-info ul {
    margin-bottom: 15px;
}

.slot-contents-info ul li {
    list-style-type: decimal;
    list-style-position: inside;
    line-height: normal;
    color: #606060;
    cursor: pointer;
    margin-bottom: 5px;
}

/* OPEN NEWS */
/* ============================================== */
/* ============================================== */
/* ============================================== */
/* ============================================== */
/* ============================================== */
/* ============================================== */
/* ============================================== */
/* ============================================== */
/* ============================================== */

.news__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
    grid-template-areas:
        "open-news__sidebar"
        "alltime-casinos"
        "news-text"
        "demo-game"
        "best-casino"
        "intro-bonuses"
        "common-bonuses"
        "bonuses-extra"
        "bonuses-rules"
        "main-4"
        "main-3"
        "a-welcome-package";
}

.news__wrapper>.slot-contents {
    display: none;
    grid-area: slot-contents;
}

.title-25 {
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    color: #2F3031;
    margin-bottom: 15px;
}

.open-news__sidebar {
    grid-area: open-news__sidebar;
    padding: 0 15px;
}


.filter-blocks:not(:last-child) {
    margin-bottom: 20px;
}

.filter-blocks .slot-filter-title {
    padding: 10px 22px 6px 22px;
    min-height: 60px;
    height: auto;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #D9D9D9;
    cursor: default;
    font-size: 18px;
    color: #2F3031;
}

.news__wrapper .alltime-casinos {
    grid-area: alltime-casinos;
    padding: 0 15px;
    margin-top: 0;
}

.news-text {
    grid-area: news-text;
    padding: 0 15px;
}

.news__wrapper .a-dead-slot__demo-game {
    grid-area: demo-game;
    margin-top: 0;
}

img.a-dead-slot__demo-game {
    width: 100%;
}

.news__best-casino {
    grid-area: best-casino;
    padding: 0 15px;
}

.news__b-casino__content {
    font-size: 16px;
    line-height: 21px;
    color: #606060;
}

.news__b-casino__content p a,
.news__b-casino__content li a,
.accordion a,
.news__b-casino__content table a {
    color: #85B52A;
    text-decoration: underline;
}

.news__b-casino__content a:hover {
    text-decoration: none;
}

.news__b-casino__notice {
    padding: 23px 25px 15px 25px;
    border-top: 1px dashed #A9A9A9;
    border-bottom: 1px dashed #A9A9A9;
    margin-top: 30px;
    position: relative;
}

.b-casino__notice-text {
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
    line-height: 21px;
    color: #99C039;
}

.b-casino__notice-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 24px;
    background: linear-gradient(93.28deg, #99C039 52.78%, #74AA1D 103.39%);
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    position: absolute;
    top: -12px;
    left: 0;
}

.news__intro-bonuses {
    grid-area: intro-bonuses;
    display: flex;
    flex-direction: column;
}

.news__intro-bonuses .title-25,
.news__i-bonuses__text {
    padding: 0 15px;
}

.news__i-bonuses__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news__i-bonuses__thumb img,
.c-bonuses-extra__thumb img {
    width: 100%;
    object-fit: cover;
}

.news__i-bonuses__text {
    font-size: 16px;
    line-height: 21px;
    color: #606060;
}

.news__common-bonuses {
    grid-area: common-bonuses;
    padding: 0 15px;
}

.news__common-bonuses-rules {
    padding: 0 15px;
}

.title-18 {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: #2F3031;
    margin-bottom: 10px;
}

.news__b-casino__content ul {
    padding-bottom: 10px;
}

.news__b-casino__content ul li {
    list-style-type: square;
    list-style-position: inside;
    font-size: 16px;
    line-height: 21px;
    color: #606060;
}

.news__b-casino__content ul li:not(last-child) {
    margin-bottom: 10px;
}

.news__b-casino__content ul li::marker {
    color: #85B52A;
    width: 5px;
    height: 5px;
    font-size: 17.5px;
    margin: 0;
    padding: 0;
}

.news__b-casino__content ul li span {
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    color: #85B52A;
}

.news__common-bonuses-extra {
    grid-area: bonuses-extra;
}

.news__c-bonuses-extra__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.c-bonuses-extra__text p {
    font-size: 16px;
    line-height: 21px;
    color: #606060;
    padding: 0 15px;
}

.c-bonuses-extra__text p span {
    border-bottom: 1px solid #85B52A;
    color: #85B52A;
}

.news__common-bonuses-rules {
    grid-area: bonuses-rules;
}

.news__common-bonuses-rules {
    margin-top: 25px;
}

.news__b-casino__content ol {
    counter-reset: number;
    padding-bottom: 10px;
}

.news__b-casino__content .notice {
    padding: 23px 25px 15px 25px;
    border-top: 1px dashed #A9A9A9;
    border-bottom: 1px dashed #A9A9A9;
    margin-top: 30px;
    position: relative;
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
    line-height: 21px;
    color: #99C039;
    clear: both;
}

.news__b-casino__content ol li {
    font-size: 16px;
    line-height: 21px;
    color: #606060;
    position: relative;
    padding-left: 20px;
}

.news__b-casino__content ol li:before {
    background: url("");
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 2px;
    counter-increment: number;
    content: counter(number);
    font-weight: bold;
    font-size: 14px;
    line-height: 97.99%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news__b-casino__content ol li:not(last-child) {
    margin-bottom: 10px;
}

.news__b-casino__content ol li span {
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    color: #85B52A;
}

.banking-options-faq.main-4 {
    margin-top: 0;
}

.a-welcome-package {
    grid-area: a-welcome-package;
}

.essential {
    grid-area: essential;
}

.slot-contents-title {
    cursor: pointer;
}

.contents-title__arrow {
    /* display: block; */
    opacity: 1;
    margin-left: auto;
    transition: all 0.3s;
    transform: rotate(0deg);
}

.contents-title__arrow svg path {
    fill: #99C039;
}

.contents-title__arrow.active {
    transition: all 0.3s;
    transform: rotate(-180deg);
}

.slot-contents-content {
    display: none;
}

/* ADAPTIVE */
@media screen and (max-width: 768px) {
    .panel__header {
        flex-direction: column;
        align-items: center !important;
    }

    .panel__header div {
        width: 100%;
    }

    .panel .panel__header-bonus {
        width: 100%;
    }

    .panel .panel__header-link {
        max-width: 80%;
    }
}

@media screen and (max-width: 360px) {
    .row-2 {
        flex-wrap: wrap;
    }

    .panel {
        max-width: 290px;
    }

    .panel__content-bank-list {
        flex-wrap: wrap;
    }

    .panel__header-group {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .author-content__materials-list ul li {
        width: 100%;
    }

    /* Author Page */
    .author-content__socials {
        padding: 15px 0px;
        margin: 20px 0;
        flex-direction: column;
    }

    .dashed-separator {
        height: 0;
        border-right: 0;
        border-bottom: 1px dashed #A9A9A9;
        margin: 15px 0px;
    }

    .content__socials-right {
        margin: 0;
    }

    .author-content__materials-list ul li a {
        font-size: 17px;
    }

    /* News Page */
    .pagination-link a {
        width: 55px;
    }

    .c-register__step-img {
        width: 60px;
        height: 60px;
    }

    .step-img__number {
        font-size: 80px;
        right: -3px;
        top: -15px;
    }

    .c-register__step-info {
        margin-left: 90px;
    }

    .pros-corns__list-1 li,
    .pros-corns__list-2 li {
        max-width: 100%;
    }

    .slot-sidebar {
        padding: 0 15px;
    }

    .slot-attribute:nth-last-child(5) {
        width: 100%;
        max-width: none;
    }

    .slot-attribute:nth-last-child(2),
    .slot-attribute:nth-last-child(1) {
        width: 100%;
        max-width: none;
    }

    .slot-contents-info:not(:last-child) {
        padding: 0 0 15px 0;
        border-bottom: 1px dashed #A9A9A9;
    }

    .slot-contents {
        background: linear-gradient(251.77deg, rgba(137, 183, 44, 0.2) 6.25%, rgba(150, 191, 55, 0) 59.99%), #FFFFFF;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    }

    .a-welcome-package {
        padding: 0 20px;
        background-position-x: 75%;
    }

    .slot-attributes__wrapper {
        position: relative;
    }

    .slot-attributes__wrapper.active .slot-attribute:nth-last-child(-n+5) {
        display: block;
    }

    .slot-attributes__wrapper span {
        position: absolute;
        bottom: 3px;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: bold;
        font-size: 16px;
        color: #99C039;
        display: block;
    }

    .slot-attributes__wrapper span:after {
        content: url("");
        margin-left: 10px;
        transition: all 0.3s;
        transform: rotate(0deg);
        display: inline-block;
    }

    .slot-attributes__wrapper.active span:after {
        transition: all 0.3s;
        transform: rotate(-180deg);
        display: inline-block;
    }

    .slot-attribute:nth-last-child(-n+5) {
        display: none;
    }

    .slot-attributes {
        padding: 25px 20px 40px 20px;
    }

    .contents-title__arrow-t {
        opacity: 1;
        margin-left: auto;
        transition: all 0.3s;
        transform: rotate(0deg);
    }

    .contents-title__arrow-t svg path {
        fill: #99C039;
    }

    .contents-title__arrow-t.active {
        transition: all 0.3s;
        transform: rotate(-180deg);
        opacity: 1;
    }

    .filter-blocks .slot-filter-title {
        border: none;
        min-height: 75px;
    }

    .filter-block__content {
        max-height: 0;
        transition: max-height 0.3s ease-out;
        overflow: hidden;
    }

    .filter-block__content.active {
        max-height: 1000px;
        transition: max-height 0.25s ease-in;
    }


}

.panel__header-icon-wrap {
    position: relative;
}

.panel__header-icon-wrap .num {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    font-weight: bold;
    font-size: 25px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    padding-top: 9px;
}

.header-rating {
    width: 23%;
    margin: 0;
}

@media screen and (max-width: 980px) {
    .author-content__socials .content__socials:nth-child(odd) {
        width: 100%;
        border-right: none;
        margin: 5px 0px;
    }

    .author-content__socials .content__socials:nth-child(even) {
        margin: 0;
        width: 100%;
    }

    .g-slots__content-sorting {
        display: block;
    }

    .g-slots-qnty {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 1028px) {
    .navbar-search-field:focus {
        background-position-x: 98%;
    }

    .box-content__lists {
        columns: auto;
    }
}

@media screen and (min-width: 708px) {
    .best-casinos__item {
        max-width: 329px;
    }
}

@media screen and (min-width: 768px) {

    .slot .featured-games {
        max-width: 1130px;
        margin-left: auto;
        margin-right: auto;
    }

    /* .alltime-casinos */
    .table-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .table-wrapper__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
    }

    .panel {
        max-width: 100%;
    }

    .panel .panel__header-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        max-width: 45%
    }

    .panel .panel__header-group {
        margin-bottom: 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .panel .panel__header-controls {
        flex-direction: row;
        /* flex-grow: 1; */
        justify-content: end;
        max-width: 100%;
    }

    .panel .panel__header-icon {
        max-width: 55px;
        max-height: 55px;
        margin-bottom: 0;
    }

    .panel .panel__header-icon-wrap {
        text-align: center;
        width: 8%;
        flex-shrink: 0;
    }

    /* featured-games */
    .featured-games__item,
    .slot-item {
        max-width: 255px;
    }

    /* rated casinos */
    .rated-casinos__item {
        max-width: 198px;
        min-height: 189px;
    }

    /* newslatter */
    .footer_newsletter {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        min-height: 130px;
        margin-top: 80px;
    }

    .newsletter_title {
        max-width: 270px;
        text-align: left;
    }

    .newsletter_form_wrapper {
        max-width: 100%;
    }

    /* footer */
    .second__row-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 20px 0;
    }

    .footer__nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-bottom: 0;
        max-width: 650px;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .second__row-slogan {
        margin-bottom: 0;
    }

    .second__row-wrapper .footer__nav a {
        margin-bottom: 0;
    }

    .third__row-wrapper {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .copyright {
        text-align: left;
    }

    .footer-second__row {
        padding-top: 0;
    }

    .casino-promo__block {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .promo__block-img {
        width: 165px;
        flex-shrink: 0;
    }

    .promo__block-img img {
        width: 100%;
        max-width: 144px;
    }

    .promo__block-info__payments {
        max-width: 80%;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .casino-features__item {
        max-width: 33.33%;
    }

    .casino-features__item:nth-child(3n) {
        border-right: none;
    }

    .pros-corns__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .pros-corns__list-2 {
        margin-right: 100px;
    }

    .pros-corns__list-1 li,
    .pros-corns__list-2 li {
        max-width: 100%;
    }

    .casino-register__wrapper:after,
    .c-register__circle {
        display: block;
    }

    .casino-register__step {
        background: -webkit-linear-gradient(218.02deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%), #FFFFFF;
        background: linear-gradient(231.98deg, rgba(137, 183, 44, 0.2) -3.79%, rgba(150, 191, 55, 0) 29.01%), #FFFFFF;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    }

    .accordion .a-container .a-btn {
        font-size: 18px;
    }

    .game-slots__info-wrap {
        grid-template-columns: 1fr 255px;
        grid-template-rows: 35px;
        grid-template-areas: "sort filters" "slots filters";
        gap: 0 30px;
    }

    .game-slots__content .featured-games__item,
    .game-slots__content .slot-item {
        max-width: 47.5%;
    }

    .g-slots__content-sorting {
        font-size: 18px;
    }

    /* slot */
    .slot-item__wrapper {
        max-width: 1130px;
        margin: auto;
        padding: 0 15px;
        grid-template-columns: 1fr 255px;
        grid-template-rows: repeat(4, auto);
        gap: 30px;
        grid-template-areas: "main-1 sidebar" "main-2 sidebar" "main-3 sidebar" "main-4 main-4";
    }

    .slot-item__wrapper .pros-corns__list-2 {
        margin-right: 0;
    }

    .a-dead-slot__rate {
        margin: 0;
    }

    .a-dead-slot__text,
    .slot-full-package .title,
    .main-2,
    .main-3,
    .main-4 {
        padding: 0;
    }

    .sidebar-author {
        display: none;
    }

    .sidebar-box {
        display: flex;
        padding: 16px 20px;
    }

    .author-img,
    .author-post-date,
    .info-sort {
        display: block;
    }

    .slot-attributes {
        flex-direction: column;
    }

    .slot-attribute {
        max-width: 100%;
    }

    /* OPEN NEWS */
    /* ============================================== */
    /* ============================================== */
    /* ============================================== */
    /* ============================================== */
    /* ============================================== */
    /* ============================================== */
    /* ============================================== */
    /* ============================================== */
    /* ============================================== */

    .news__wrapper {
        grid-template-columns: 1fr 255px;
        grid-template-rows: min-content;
        gap: 20px;
        grid-template-areas:
            "news-text open-news__sidebar"
            "demo-game open-news__sidebar"
            "best-casino open-news__sidebar"
            "intro-bonuses open-news__sidebar"
            "common-bonuses open-news__sidebar"
            "bonuses-extra open-news__sidebar"
            "bonuses-rules open-news__sidebar"
            "alltime-casinos open-news__sidebar"
            "main-4 main-4"
            "main-3 main-3"
            "a-welcome-package a-welcome-package";

        max-width: 1130px;
        margin: auto;
        padding: 0 15px;
    }

    .news-text,
    .news__best-casino,
    .news__intro-bonuses .title-25,
    .news__i-bonuses__text,
    .news__common-bonuses,
    .c-bonuses-extra__text p,
    .news__common-bonuses-rules,
    .news__wrapper .alltime-casinos,
    .open-news__sidebar {
        padding: 0;
    }

    .news__wrapper .panel .panel__header-icon {
        max-width: 25px;
        max-height: 45px;
    }

    .news__wrapper .header-number,
    .news__wrapper .body-number__img {
        width: 15%;
    }

    .news__wrapper .header-name,
    .news__wrapper .body-name__img {
        width: 35%;
        text-align: left;
    }

    .news__wrapper .header-bonus,
    .news__wrapper .body-bonus__text {
        width: 27%;
        text-align: left;
    }

    .news__wrapper .header-rating,
    .news__wrapper.body-rating__img {
        display: none;
    }

    .news__wrapper .panel__header-controls>.slot-item__details-rating {
        display: none;
    }

    .news__wrapper .panel .panel__header-content {
        max-width: 70%;
    }
}

.panel .panel__header-bonus span {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: #9AC03A;
    display: block;
}

.panel .panel__header-bonus {
    font-size: 16px !important;
    text-align: center;
    color: #2F3031;
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.slot-item__details-rating-wrap {
    border-right: 1px solid #F2F2F2;
}

.slot-item__details-rating-wrap,
.casinos-table-buttons-link {
    width: 23%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.casinos-table-buttons-link .promo__block-action__text {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.slot-item__details-rating-wrap .slot-item__details-rating {
    height: 38px;
    background-size: cover;
    width: 119px;
}

.slot-item__details-rating-wrap .slot-item__details-rating span {
    font-size: 20px;
    left: 37px;
}

.slot-item__details-rating-wrap .panel__header-name-footer {
    width: 100%;
    text-align: center;
    margin-top: 5px;
    justify-content: center;
    display: flex !important;
}

.slot-item__details-rating-wrap .panel__header-name-footer a {
    text-decoration: underline;
    color: #2F3031;
}

.panel .panel__header-group {
    text-align: center;
    display: flex;
    justify-content: center;
    border-left: 1px solid #F2F2F2;
}

.header-website {
    width: 23%;
    text-align: center;
}

@media screen and (min-width: 1024px) {

    /* navbar */
    .navbar-wrap {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        min-height: 98px;
    }

    .navbar-nav {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        max-height: 500px;
        opacity: 1;
        width: auto;
        overflow: unset;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .navbar-nav__list {
        margin-bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: auto;
        gap: 0px 46px
    }

    .navbar-nav__list li {
        font-size: 16px;
        line-height: 18px;
        cursor: pointer;
        border-width: 0;
    }

    .sub-menu {
        position: absolute;
        margin-left: -2px;
        height: auto;
        max-height: 0px;
        opacity: 0;
        overflow: hidden;
        transition: all 0.2s ease-in-out;
        width: 180px;
        top: 45px;
        left: -40%;
    }

    .has-arrow:hover>.sub-menu {
        max-height: none;
        opacity: 1;
        background: #FFFFFF;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
        margin-left: 0;
        overflow: initial;
        left: 0;
        top: 45px;
    }

    .navbar-nav__list>.has-arrow>.sub-menu::before {
        background: linear-gradient(239.26deg, #F8D000 17.45%, #F8D000 53.19%), #FFFFFF;
        position: absolute;
        height: 6px;
        top: -6px;
        left: 0;
        right: 0;
        content: '';
    }

    .sub-menu .has-arrow::after {
        -webkit-filter: invert(1);
        filter: invert(1);
        top: 10px;
        right: 10px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .sub-menu .has-arrow .sub-menu {
        position: absolute;
        top: 0;
        left: 180px;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .sub-menu li {
        color: #2F3031;
        padding: 10px 17px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

    .sub-menu li.has-arrow {
        padding-right: 30px;
    }

    .navbar-nav__list>.has-arrow::after {
        display: none;
    }

    .navbar-toggle {
        display: none;
    }

    .navbar-flag {
        margin-right: 0;
        margin-left: 23px;
        border: 0;
        padding: 0;
    }

    .navbar-search-field {
        background-size: 14px;
        padding: 5px 20px 5px 0;
        width: 160px;
        height: 30px;
        border: none;
        border-bottom: 1px solid #898c83;
    }

    .navbar-controls form {
        margin-right: 0;
    }

    .navbar-search-field {
        position: initial;
        transition: none;
    }

    .navbar-search-field:focus {
        position: relative;
        top: 0;
        left: 0;
        background-color: transparent;
        background-position-x: right 0;
        width: 160px;
        transition: none;
    }

    .about-project__row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 20px 50px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .about-project__row-leader img {
        max-width: 265px;
    }

    .row-leader__shadow {
        width: 265px;
        height: 265px;
    }

    .row-content__subtitle::after {
        right: -50px;
        top: 40px;
    }

    .row-content__leader-info {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    /* footer */
    .footer__inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        /*padding-bottom: 100px;*/
        padding-bottom: 50px;
    }

    .footer-first__row {
        /*padding-top: 60px;*/
    }

    .footer__menu-list {
        padding: 8px 0;
        border: none;
        width: auto;
    }

    .footer__info {
        width: auto;
        text-align: center;
    }

    .footer-arrow {
        display: none;
    }

    .footer__menu-list ul {
        max-height: 500px;
        opacity: 1;
    }

    .third__row-wrapper nav {
        width: auto;
    }

    /* panel */
    .panel {
        margin-bottom: 8px;
    }

    .panel .panel-toggle {
        display: none;
    }

    .panel .panel-toggle-desc {
        display: block;
    }

    .panel .panel__header-link {
        width: 172px;
    }

    .panel .panel-toggle-desc.active+.panel__content {
        max-height: 500px;
    }

    .panel .panel__header-content {
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-right: 20px;
    }

    .panel .panel__header-name a {
        font-size: 20px;
        line-height: 23px;
    }

    .panel__header-name-footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .panel__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }

    .panel-box strong {
        display: block;
    }

    .panel__content-panels {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
    }

    .panel .panel-box:last-child {
        margin-bottom: 0;
    }

    .panel__review {
        display: block;
        padding: 10px 20px;
        width: 100%;
    }

    .panel__review-rating {
        display: flex;
    }

    .panel__review-text {
        font-size: 16px;
        line-height: 21px;
        color: #606060;
    }

    .panel__review-author {
        font-weight: bold;
        font-size: 14px;
        line-height: 21px;
        color: #2F3031;
    }

    .promo__block-info__title {
        font-size: 40px;
        line-height: 46px;
        margin-bottom: 25px;
    }

    .casino-features>.container {
        padding: 0 15px;
    }

    .casino-features {
        border-bottom: 1px solid #D9D9D9;
        background: -webkit-linear-gradient(210.74deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
        background: linear-gradient(239.26deg, rgba(137, 183, 44, 0.2) 17.45%, rgba(150, 191, 55, 0) 53.19%), #FFFFFF;
        position: relative;
    }

    .casino-features__wrapper {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .casino-features__item {
        border-bottom: none;
    }

    .casino-features__item:nth-child(3n) {
        border-right: 1px solid #D9D9D9;
    }

    .casino-features__item:last-child {
        border-right: none;
    }

    .pros-corns__list-1 li,
    .pros-corns__list-2 li {
        font-size: 18px;
        line-height: 21px;
    }

    .casino-cards__box {
        max-width: 480px;
    }

    .box-content__lists {
        column-count: 2;
        /* column-gap: 70px; */
    }

    .box-content__lists img {
        margin-right: 20px;
    }

    .c-cards__box-content__lists {
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
        gap: 70px
    }

    .c-cards__box-content__row {
        /* width: 100%; */
        gap: 15px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .c-cards__box-content__row img {
        max-width: 100%;
    }

    /* News Page */
    .panel .panel__header-content {
        max-width: 100%;
    }

    .game-slots__content>.featured-games__row {
        justify-content: center;
    }

    .game-slots__content .featured-games__item,
    .game-slots__content .slot-item {
        max-width: 31.4%;
    }

    .sorting-params__btn {
        margin-right: 45px;
    }

    .title-text {
        font-size: 30px;
        line-height: 36px;
    }


    /* ============================================ */
    /* ============================================ */
    /* ============================================ */
    /* ============================================ */
    /* ============================================ */
    /* ============================================ */
    /* ============================================ */
    .news__i-bonuses__wrapper,
    .news__c-bonuses-extra__wrapper {
        flex-direction: row;
    }

    .news__i-bonuses__thumb img,
    .c-bonuses-extra__thumb img {
        min-width: 255px;
    }

    .news__wrapper .panel .panel__header-controls {
        flex-direction: column;
    }

    .news__wrapper .header-bonus,
    .news__wrapper .body-bonus__text {
        text-align: center;
    }

    .news__wrapper .header-website {
        text-align: center;
    }

    .news__wrapper .panel .panel__header-icon {
        max-width: 55px;
        max-height: 55px;
    }

}

.panel .panel__header {
    display: flex;
    justify-content: center;
}

.panel .panel__header-logo {
    max-width: 125px;
    max-height: 63px;
}

.panel .panel__header-bonus {
    border-right: 1px solid #F2F2F2;
    border-left: 1px solid #F2F2F2;
    font-size: 18px;
    line-height: 20px;
    width: 100%;
    display: block;
    text-align: center;
    padding: 0 5px;
}

@media screen and (min-width: 1280px) {
    body {
        background-image: url('');
    }

    .about-project {
        overflow: inherit;
    }

    /* alltime casino */
    .best-casinos__item {
        padding: 20px 22px;
        max-width: 255px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .b-casinos__main {
        width: 100%;
        margin: auto;
    }

    .casino-name {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding-top: 0;
        margin-bottom: -10px;
        font-size: 18px;
        line-height: 21px;
    }

    .casino-rating {
        display: flex;
    }

    .casino-name img {
        max-width: 186px;
    }

    .owner-link {
        margin-left: 20px;
    }

    .b-casinos__controls {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .b-casinos__controls>.slot-item__details-rating {
        display: none;
    }

    .banking-options__row {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .casino-link {
        max-width: 100%;
        padding: 14px 8px;
    }

    .casino-link-primary {
        margin-bottom: 0;
    }

    .about-project__row-leader img {
        max-width: 345px;
    }

    .row-leader__shadow {
        width: 345px;
        height: 345px;
    }

    .casino-cards__box {
        max-width: 540px;
    }

    .player-review {
        /* max-width: 730px; */
    }

    .review__read-more {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .player-reviews__info-wrap {
        max-width: 730px;
        width: 100%;
    }

    .player-review-post {
        display: none;
    }

    .post-review-overlay {
        display: block;
        position: relative;
        width: auto;
        background-color: transparent;
    }

    .post-close-btn {
        display: none;
    }

    .player-reviews__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 21px;
    }

    .c-cards__box-content__row {
        gap: 35px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        width: auto;
    }

    .row-2 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .info-sort {
        display: block;
    }

    .game-slots__content .featured-games__item,
    .game-slots__content .slot-item {
        max-width: 255px;
    }

    /* =========================================== */
    /* =========================================== */
    /* =========================================== */
    /* =========================================== */
    /* =========================================== */
    /* =========================================== */
    .news__wrapper {
        grid-template-columns: 255px 1fr 255px;
        grid-template-areas:
            "news-text news-text open-news__sidebar"
            "demo-game demo-game open-news__sidebar"
            "slot-contents best-casino open-news__sidebar"
            "slot-contents intro-bonuses open-news__sidebar"
            "common-bonuses common-bonuses open-news__sidebar"
            "bonuses-extra bonuses-extra open-news__sidebar"
            "bonuses-rules bonuses-rules open-news__sidebar"
            "alltime-casinos alltime-casinos open-news__sidebar"
            "main-4 main-4 open-news__sidebar"
            "main-3 main-3 open-news__sidebar"
            "a-welcome-package a-welcome-package open-news__sidebar";
    }

    .news__wrapper>.slot-contents {
        display: block;
        grid-area: slot-contents;
        margin-top: 0;
        background: none;
        box-shadow: none;
    }

    .news__wrapper .header-name,
    .news__wrapper .body-name__img {
        width: 45%;
    }
}