:root {
    --text-color: #FFFFFF;
}

body {
    margin: unset;
    padding: unset;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #212132;
    color: var(--text-color);
}

body > main {
    flex: 1;
    padding-top: 134px;
    background: url("../assets/bg-main.svg");
    background-size: 100%;
}

@media (min-width: 768px) {
    body > main {
        padding-top: 70px;
    }
}

body > footer {
    margin-top: auto;
}

a:hover {
    cursor: pointer;
}

.text {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: justify;
    color: var(--text-color);
    margin: 0;
}

.text + img {
    margin-top: 16px;
}

.bold {
    font-weight: bold;
}

.article-list {
    margin: 16px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 568px) {
    .article-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .article-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.article-list a {
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #393a51;
    color: white;
    background-color: #161626;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    border-radius: 10px;
    transition: 250ms;
}

.article-list a:hover {
    transform: scale(1.05);
}

/*Utility classes*/
.container {
    width: auto;
    padding: 2rem .75rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/*Banner*/
.banner-image {
    display: flex;
    overflow: hidden;
}
.banner-image img {
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 250px;
    transition: .3s;
}

.banner-image:hover img {
    transform: scale(1.02);
}
/*Banner*/

/*Text and stuff*/

.h2-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--text-color);
}
.h3-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--text-color);
}
.h4-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--text-color);
}
.h5-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--text-color);
}
ul {
    margin: 16px 0 16px 0;
    padding-left: 16px;
}
a {
    color: var(--text-color);
    font-weight: 700;
}

table {
    border-collapse: collapse;
    width: 100%;
    overflow: scroll;
    display: flex;
    margin: 16px 0 16px 0;
    color: var(--text-color);
}

table tbody {
    width: 100%;
}

table th {
    font-weight: bold;
}
th,
td {
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    padding: 8px 16px;
    text-align: left;
    border: 1.5px solid white;
}
tbody td{
    width: calc(100% / 4)
}

tbody tr th,
tbody tr td {
    text-align: center;
}

table.content-left tbody tr th,
table.content-left tbody tr td {
    text-align: left;
}

.img-fluid {
    height: auto;
    width: 100%;
    margin-bottom: 16px;
}

.text-block {
    padding: 1.5625rem;
    border-radius: 0.625rem;
    background: #1c2240;
    box-shadow: 0 0.25rem 0.625rem 0 #000;
}

/*Text and stuff*/

/*Header*/
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: rgba(37, 37, 54, .94902);
    z-index: 1000;
}

header .header {
    padding: 10px 16px;
}

header .container {
    background-color: transparent;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 32px;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

header .header-logo {
    display: flex;
}

header .header-logo img {
    width: 100%;
}

header .header-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

header .header-content .header-login {
    align-items: center;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}
header .header-content .header-register {
    text-decoration: none;
    box-shadow: 0 3px 0 0 #871628, 0 4px 4px 0 #000;
    background-color: #cd1835;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border: none;
    border-radius: 50px;
    padding: 5px 25px;
    outline: 0;
    text-align: center;
    text-transform: uppercase;
    line-height: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: .2s;
}
header .header-content .header-help {
    display: flex;
    align-items: center;
    color: #e8ce3a;
    gap: 8px;
}
header .header-content .header-help svg {
    color: red;
}
header .header-content .header-help span {
    font-size: 16px;
}
/*Header*/

/*navigator*/
.navigation-wrapper {
    border-bottom: 4px dotted #646A87;
    margin-bottom: 25px;
    box-shadow: inset 0 5px 25px 0 rgba(0, 0, 0, .8);
    display: flex;
    flex-direction: column;
    background-color: #212132;
}

.navigation-content {
    display: flex;
    flex-direction: column;
    background: repeating-linear-gradient(-45deg, transparent, transparent 2px, #17182f 2px, #17182f 4px);
}

@media (min-width: 768px) {
    .navigation-content {
        flex-direction: row;
    }
}

.navigation-item {
    height: 61px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 8px;
    border-radius: 8px 8px 0 0;
    position: relative;
    text-decoration: none;
}

.navigation-item:not(:last-of-type)::after {
    content: '';
    display: flex;
    height: 60%;
    width: 2px;
    background-color: #313047;
    position: absolute;
    top: 20%;
    right: 0;
}

.navigation-item:hover {
    background-color: rgba(255, 255, 255, .05);
}

.navigation-item img,
.navigation-item svg {
    width: 45px;
    height: 45px;
    margin-right: 15px;
}

.navigation-item span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
}

.navigation-item-slots {
    color: #17eada
}

.navigation-item-live {
    color: #de593e
}

.navigation-item-desks {
    color: #6ef770
}

.navigation-item-tour {
    color: #e8ce3a
}
/*navigator*/

/*Header casinos*/
.game-catalog-header__hit,
.game-catalog-header__new {
    width: 25px;
}

.game-catalog-header__link {
    display: block;
}

.game-catalog-header__new {
    margin-left: 10px;
}

.game-catalog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;

}

@media (max-width: 768px) {
    .game-catalog-header {
        display: block;
    }
    .game-catalog-header__left{
        margin-bottom: 10px;
    }
}
.game-catalog-header__sort {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.game-catalog-header__select {
    background: linear-gradient(#191929, #191929) padding-box, linear-gradient(180deg, rgba(0, 0, 0, 0) 51%, rgba(128, 128, 128, .4));
    border-radius: 5px;
    padding: 10px;
    border: none;
    border-right: 8px solid #191929;
    color: #fff;
    outline: 1px solid rgba(128, 128, 128, .4);
}

.game-catalog-header__select option {
    color: #191929;
}

.game-catalog-header__left {
    display: flex;
    align-items: center;
}

.game-catalog-header__search {
    position: relative;
    height: 35px;
    flex: 0 0 430px;
}

.game-catalog-header__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 35px;
    height: 35px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
}

.game-catalog-header__btn svg {
    width: 18px;
}

.game-catalog-header__input {
    width: 100%;
    border-radius: 25px;
    padding-left: 15px;
    padding-right: 50px;
    height: 100%;
    border: 1px solid transparent;
    background: linear-gradient(#191929, #191929) padding-box, linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(128, 128, 128, .4)) border-box;
    font-weight: 500;
    color: #fff;
    transition: box-shadow .25s ease;
    outline: none;
}

.game-catalog-header__input::placeholder {
    font-style: italic;
    color: #646a87;
    font-weight: 500;
}
/*Header casinos*/

/*Games list*/
.game-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.game {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px 0 #000;
    position: relative;
    overflow: hidden;
    -webkit-transition: 250ms;
    transition: 250ms;
    display: flex;
    flex-direction: column;
}

.game:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.game:hover .game-overflow {
    opacity: 1
}

.game-icon {
    width: 100%;
    height: 170px;
    border: 1px solid #393a51;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #393a51;
    padding: 16px;
    color: white;
    background-color: #161626;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1;
    flex: 1 0 auto;
}

.game-overflow {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 170px;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    transition: .2s;
    border: 1px solid #393a51;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    background-color: rgba(0, 0, 0, .8);
    z-index: 10;
}

.game-btn-play {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border: none;
    border-radius: 50px;
    padding: 5px 25px;
    outline: 0;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 22px;
    font-weight: 800;
    white-space: nowrap;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: .2s;
    box-shadow: 0 3px 0 0 #3c7028, 0 4px 4px 0 #000;
    background-color: #62c23c
}

.game-btn-play:hover {
    box-shadow: 0 3px 0 0 #3c7028, 0 4px 4px 0 #000, inset 0 15px 15px -3px rgba(255, 255, 255, .4)
}

.game-btn-try {
    border-radius: 50px;
    padding: 5px 20px;
    background-color: #313047;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .2s;
    text-decoration: none;
}

.game-btn-try:hover {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .game-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .game-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .game-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}
/*Games list*/

/*Pros and cons*/

.pros-and-cons .advantages {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
@media (min-width: 768px) {
    .pros-and-cons .advantages {
        flex-direction: row;
    }
}
.pros-and-cons .advantages .pros > .h4-title,
.pros-and-cons .advantages .cons > .h4-title {
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--text-color);
}
.pros-and-cons .advantages .pros,
.pros-and-cons .advantages .cons {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-right: auto;
    width: auto;
    flex: 1;
}
.pros-and-cons .advantages .pros > div,
.pros-and-cons .advantages .cons > div {
    display: flex;
    align-items: center;
    gap: 24px;
}
.pros-and-cons .advantages .pros svg,
.pros-and-cons .advantages .cons svg {
    min-width: 41px;
    min-height: 41px;
}
/*Pros and cons*/

/*FAQ*/
.faq-item {
    border: 1px solid white;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item .faq-title {
    cursor: pointer;
    padding: 18px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin: 0;
    color: var(--text-color);
}

.faq-item:not(:last-of-type) {
    margin-bottom: 16px;
}

.faq-item .faq-text {
    display: none;
    visibility: hidden;
    background-color: var(--color-bg-buj-content);
    height: 0;
    font-size: 17px;
    padding: 16px 18px 32px 18px;
    color: var(--text-color);
}

.faq-item.open .faq-text {
    display: block;
    border-top: 1px solid white;
    visibility: visible;
    height: auto;
    padding: 16px 32px;
}
/*FAQ*/

/*Reviews*/
.reviews-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.reviews-wrapper .review-item {
    border: 1px solid #fe284a;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: rgba(22, 22, 38, .8);
    border-radius: 6px;
}
.reviews-wrapper .review-item .review-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}
.reviews-wrapper .review-item .review-header .review-author {
    font-weight: 700;
    color: #fe284a;
}
.reviews-wrapper .review-item .review-header .review-reply {
    color: #fe284a;
    font-weight: 700;
    display: inline-flex;
    text-decoration: none;
}
.reviews-wrapper .review-item .review-text {
    padding: 0 16px;
    line-height: 24px;
    font-size: 16px;
    margin: 0;
    color: white;
}
/*Reviews*/

/*TOC*/
.toc-title {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.toc-title svg {
    width: 16px;
    height: 16px;
    transition: .3s;
}

.toc-title.open + .table-of-content {
    display: flex;
    opacity: 1;
    max-height: 350px;
    transform: scaleY(1)
}

.toc-title.open svg {
    rotate: 180deg;
}

.table-of-content {
    flex-wrap: wrap;
    opacity: 0;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: center top;
    transition: opacity .5s ease 0s, max-height 500ms ease 0s, transform 500ms ease 0s
}

.table-of-content li {
    flex: 1 0 100%;
}

@media (min-width: 768px) {
    .table-of-content li {
        flex: 1 0 50%;
    }
}
/*TOC*/

/*footer*/
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto
}

.footer ul {
    list-style: none;
}

.footer__block {
    box-sizing: border-box;
    max-width: 1200px;
    width: 100%;
    padding: 0 15px
}

.footer__inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 30px
}

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

.footer__help>li {
    border-radius: 5px;
    margin-right: 8px;
    transition: all .3s ease-in-out
}

.footer__help>li:hover {
    background-color: #252536
}

.footer__help a {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: 36px;
    width: 100%;
    border-radius: 5px;
    padding: 0 8px;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    transition: background-color .15s linear, transform .15s linear
}

.footer__navigation-social {
    display: flex;
    align-items: center
}

.footer__navigation-social li {
    margin-right: 10px
}

.footer__navigation-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 50%
}

.social-instagram {
    background-color: #264484;
    box-shadow: 0 3px 0 1px #16284d
}

.social-instagram:hover {
    box-shadow: 0 3px 0 #16284D, inset 0 10px 10px 5px rgba(255, 255, 255, 0.4)
}

.social-telegram {
    background-color: #2ca3df;
    box-shadow: 0 3px 0 1px #1a6b84
}

.social-telegram:hover {
    box-shadow: 0 3px 0 #1A6B84, inset 0 10px 10px 5px rgba(255, 255, 255, 0.4)
}

.social-vkontakte {
    background-color: #3a6aa3;
    box-shadow: 0 3px 0 1px #223f61
}

.social-vkontakte:hover {
    box-shadow: 0 3px 0 #223F61, inset 0 10px 10px 5px rgba(255, 255, 255, 0.4)
}

.social-youtube {
    background-color: red;
    box-shadow: 0 3px 0 1px #781712
}

.social-youtube:hover {
    box-shadow: 0 3px 0 #781712, inset 0 10px 10px 5px rgba(255, 255, 255, 0.4)
}

.footer__second {
    width: 100%;
    box-sizing: border-box;
    border-top: 1px dashed #303036
}

.footer__second-container {
    width: 100%
}

.footer__lang-mobile {
    display: none
}

.copyright-age-warning {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 950px
}

.license-wrapper {
    min-width: 40px
}

.warning-item {
    display: flex;
    align-items: center;
    margin-right: 35px
}

.footer__second .license-wrapper .validator>div {
    overflow: visible !important
}

.p-copyright {
    min-width: 230px;
    line-height: 16px;
    word-break: normal;
    word-wrap: normal
}

.footer__second .p-copyright,
.footer__second .p-warning {
    color: #646a87;
    font-size: 12px;
    margin-left: 20px
}

.footer__second .copyright-age-warning-item {
    max-width: 380px
}

.footer__second .age-18 {
    min-height: 40px;
    min-width: 40px
}

.footer__second .p-warning {
    line-height: 14px
}

.footer__second .copyright-age-warning {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 950px
}

.footer__lang-desktop {
    min-width: 175px;
    width: 175px;
    display: flex;
    justify-content: flex-start
}

.choose-lang-list {
    z-index: 90;
    overflow-y: auto;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 6px 4px;
    background-color: #4a5372;
    color: #fff;
    column-count: 2;
    position: absolute;
    bottom: -14.5px;
    left: -194px;
    max-height: fit-content;
    width: auto
}

.choose-lang {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    cursor: pointer
}

.choose-lang .choose-lang-button {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: initial;
    height: 30px;
    padding: 5px;
    cursor: pointer
}

.dropdown-list {
    opacity: 0;
    visibility: hidden;
    transition: visibility .5s, opacity .25s ease
}

.dropdown-list.show {
    opacity: 1;
    visibility: visible
}

.choose-lang-list li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 3px;
    background: inherit;
    break-inside: avoid;
    padding: 10px 5px
}

.choose-lang-list li.choose-lang-mid-odd-item {
    margin-bottom: 30px
}

.choose-lang-list li:last-child {
    margin-bottom: 0
}

.choose-lang-list li:hover {
    background-color: #2d3047
}

.choose-lang-list .choose-lang-box {
    display: flex;
    align-items: center;
    box-sizing: border-box
}

.choose-lang a {
    text-decoration: none
}

.flag-lang {
    width: 30px;
    border-radius: 50%
}

.choose-lang .lang-native-select {
    display: none
}

.choose-lang .arrow-down {
    width: 12px
}

.choose-lang span {
    padding: 0 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff
}

.footer__payments-selector {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

.footer__payments-selector h3 {
    font-size: 18px;
    margin: 0;
}

.footer__payments-selector.open .arrow-down {
    transform: rotate(-180deg)
}

.footer__payments-selector .arrow-down {
    margin: 0 8px;
    width: 12px;
    transition: transform .5s
}

.footer__payments-list {
    opacity: 0;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: center top;
    transition: opacity .5s ease 0s, max-height 500ms ease 0s, transform 500ms ease 0s
}

.footer__payments-selector.open + .footer__payments-list {
    opacity: 1;
    max-height: 350px;
    transform: scaleY(1)
}

.footer__payments ul {
    display: flex;
    flex-wrap: wrap
}

.footer__payments li {
    align-items: center;
    background-color: rgba(255, 255, 255, .03);
    border-radius: 5px;
    width: 100px;
    height: 60px;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    padding: 10px;
    margin: 0 10px 10px 0
}

.footer__payments img {
    height: 100%;
    max-height: 40px;
    width: 60px;
    object-fit: contain
}

@media screen and (max-width:1280px) {
    .footer__inner-container {
        order: -1;
        flex-direction: column;
        justify-content: center;
        padding-top: 30px;
        padding-bottom: 30px;
        gap: 20px 0
    }

    .footer__second .copyright-age-warning {
        order: 1
    }
}

@media screen and (max-width:768px) {
    .footer__help {
        justify-content: center;
        margin-bottom: 20px
    }

    .footer__second .copyright-age-warning {
        order: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px 0
    }

    .choose-lang-list {
        column-count: 1;
        bottom: -12px;
        left: -5px
    }
}
/*footer*/
