@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --default-color: #f07813;
    --default-lighten-color: #147994;
    --default-catifsh-color: #147994;
    --default-header-color: #054953;
    --default-footer-color: #054953;
    --btn-text: #fff;
}

*, :after, :before {
    box-sizing: border-box
}

li, ol, ol[class], ul, ul[class] {
    margin: 0;
    padding: 0
}

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, ol[class], p, ul[class] {
    margin: 0
}

body {
    line-height: 1.5;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    color: #fff;
}

body.-toggle,
html.-toggle {
    overflow: hidden
}

li, ol[class], ul[class] {
    list-style: none
}

a {
    text-decoration: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img {
    display: block;
    max-width: 100%
}

button, input, select, textarea {
    border: none;
    font: inherit
}

[role=button], button {
    cursor: pointer
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

body {
    background: #fff;
    color: #727781;
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    letter-spacing: .5px;
    line-height: 1.4
}

@media (max-width:768px) {
    body {
        font-size: 14px;
        overflow-x: hidden
    }
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width:1220px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.header {
    background: var(--default-header-color);
    padding: 24px 0;
}

.header-wrap {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: max-content 1fr;
}

.header-logo__img {
    height: auto;
    width: 180px;
}

.menu-wrap {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr max-content max-content;
}

.main-nav {
    padding-right: 45px;
    text-align: right;
}

.main-nav__list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 32px;
}

.nav-item {
    font-size: 16px;
    position: relative;
    font-weight: bold;
}

.nav-item__link {
    color: #fff;
}

.main-nav__list li:hover>a {
    color: var(--default-color);

}

.header-lang {
    display: flex;
    align-items: center;
    color: #fff;
}

.btn {
    background: var(--default-color);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    line-height: 42px;
    text-transform: uppercase;
	width: fit-content;
}

.btn a {
    color: var(--btn-text);
    display: block;
    padding: 0 42px;
    font-weight: bold;   
}

.btn:hover {
    opacity: .86
}

.menu-mob-btn {
    background: var(--default-color) url(../assets/img/mob-menu-icon.svg) no-repeat 50%;
    background-size: 15px;
    border: 1px solid var(--default-color);
    border-radius: 4px;
    display: none;
    height: 42px;
    justify-self: flex-end;
    width: 42px;
}

.menu-mob-btn.-toggle {
    background: var(--default-color) url(../assets/img/mob-menu-close-icon.svg) no-repeat 50%;
    background-size: 15px;
    z-index: 4;
}

.main {
    padding: 54px 0;
    background: #f4f5f8;
}

/*POST*/
.post-entry p:not(:last-child) {
    margin-bottom: 24px;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    line-height: 1.2;
    margin-bottom: 14px;
	color:#000000;
}

.post-entry h1 {
    font-size: 32px
}

.post-entry h2 {
    font-size: 28px
}

.post-entry h3 {
    font-size: 24px
}

.post-entry h4 {
    font-size: 20px
}

.post-entry a {
    color: #0855cc
}

.post-entry a:hover {
    color: #0b4e35
}

.post-entry table {
    font-size: 14px;
    margin-bottom: 24px;
    width: 100%
}

.post-entry table tr:first-child {
    background: var(--default-color) !important;
	color: #fff;
}

.post-entry table tr:first-child td {
    color: #fff;
    font-weight: 700
}

.post-entry table tr:nth-child(odd) {
    background: var(--default-lighten-color);
	color: #fff;
}

.post-entry table tr td {
    padding: 16px 12px
}

.post-entry .wp-block-image {
    margin-bottom: 24px
}

.post-entry .wp-block-image img {
	border-radius:15px;
    margin: 0 auto;
}

.post-entry img {
    height: auto !important;
}

.post-entry ol,
.post-entry ul{
    counter-reset: num;
    list-style-type: none;
    margin-bottom: 24px;
    margin-left: 32px
}

.post-entry ol li,
.post-entry ul li{
    margin: 0 0 16px;
    padding: 0;
    position: relative
}

.post-entry ol li:before,
.post-entry ul li:before{
    background: var(--default-color);
    border-radius: 50%;
    color: #fff;
    content: counter(num);
    counter-increment: num;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 24px;
    left: -32px;
    line-height: 24px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 24px
}

.wp-block-quote{
    margin-bottom:1.2rem;
    background-color: var(--default-color);
    color: #FFFFFF;
    padding:40px;
    padding-left:80px;
    position: relative;
        border-radius: 8px;
}
.wp-block-quote::before{
    position: absolute;
    left:20px;
    top:20px;
    width:40px;
    height:40px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='40px' height='40px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
}

@media(max-width:580px){
    .wp-block-quote{
        padding:24px;
        padding-left:56px;
    }
    .wp-block-quote::before{
        top:16px;
        left:16px;
        width:24px;
        height:24px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='24px' height='24px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
    }
}

/*AUTHOR*/
.author-block {
    grid-gap: 30px;
    border: 1px solid #d8d8d8;
    border-radius: 20px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .078);
    display: grid;
    grid-template-columns: max-content 1fr;
    margin-bottom: 32px;
    padding: 32px
}

@media (max-width:768px) {
    .author-block {
        grid-gap: 20px;
        grid-template-columns: 1fr;
        padding: 20px 16px
    }
}

.author-block .author-block__photo img {
    border-radius: 50%;
    height: 168px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 168px
}

.author-block .author-block__top-grid {
    grid-gap: 20px;
    display: grid;
    grid-template-columns: 1fr max-content;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .author-block .author-block__top-grid {
        grid-gap: 20px;
        grid-template-columns: 1fr
    }
}

.author-block .author-block__line {
    color: #828282;
    font-size: 18px
}

.author-block .author-block__name {
    font-size: 24px;
    font-weight: 700
}

.author-block .author-block__socials {
    display: flex;
    gap: 10px
}

.author-block .author-block__socials .author-block__socials__item {
    background: #f2f2f2;
    border-radius: 4px;
    display: inline-block;
    height: 32px;
    overflow: hidden;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item:hover {
    opacity: .86
}

.author-block .author-block__socials .author-block__socials__item i {
    display: inline-block;
    height: 32px;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item i.icon-fb {
    background: url(../assets/img/icon-fb.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-tw {
    background: url(../assets/img/icon-tw.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-email {
    background: url(../assets/img/icon-email.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__text {
    font-size: 18px
}

.author-block .author-block__text p:not(:last-child) {
    margin-bottom: 20px
}

/*FAQ*/
.faq-block {
    margin-bottom: 32px;
    margin-top: 32px
}

.faq-block .faq-block--title {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px
}

.faq-block .faq-block--subtitle {
    color: #000;
    font-size: 16px;
    margin-bottom: 16px;
    margin-top: -4px
}

.faq-block .faq-block--items .faq-block--items__item:not(:last-child) {
    margin-bottom: 16px
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header {
    background: #f7f7f7;
    border: 1px solid var(--default-color);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
    position: relative
}

.faq-block .faq-block--items .faq-block--items__item .title-faq {
    max-width: 80%;
    width: 80%
}

.faq-block .faq-block--items .faq-block--items__item .title-faq:after {
    background: var(--default-color) url(../assets/img/icon-arrow-b.svg) no-repeat 50%;
    background-size: 14px;
    border-radius: 4px;
    content: "";
    height: 42px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 42px
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--content {
    display: none
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header {
    background: var(--default-color);
    color: #fff
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header:after {
    background: var(--default-color) url(../assets/img/icon-arrow-b.svg) no-repeat 50%;
    background-size: 14px;
    transform: translateY(-50%) rotate(-90deg)
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content {
    display: block;
    padding: 20px
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content p:not(:last-child) {
    margin-bottom: 8px
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a {
    color: #0855cc
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a:hover {
    color: #0b4e35
}

/*WP STYLE*/
.wp-block-media-text .wp-block-media-text__media {
    float: right;
    max-width: 50%;
    margin-left: 20px;
    margin-bottom: 20px;
}

.alignright{
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .alignright {
        max-width: 100%;
        margin: 16px auto 24px auto;
        float: none;
        order: 2;
    }
}

.alignleft{
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.footer {
    background: var(--default-footer-color);
    padding: 42px 0;
    color: #fff;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: space-around;
    align-items: center;
}



.footer-logo {
    display: block;
    width: 100%;
    max-width: 200px;
    margin-bottom: 30px;
}

.footer-left__text {
    font-size: 14px;
    opacity: .5;
    line-height: 150%;
}

.footer-right {
    width: 55%;
}

.footel-menu__list {
    display: block;
    columns: 2;
    margin-bottom: 30px;
}

.footel-menu__list li {
    display: block;
    margin-bottom: 10px;
}

.footel-menu__list li a {
    color: #fff;
    font-size: 15px;
}

.footel-menu__list li a:hover {
    text-decoration: underline;
}

.footer-info {
	display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding-top: 20px;
}

.footer-info__img {
	margin: 0 auto;
    object-fit: contain;
}


/*MOBILE*/
@media (max-width:768px) {
    .menu-mob-btn {
        display: block
    }

    .header-logo__img {
        max-height: 42px;
        max-width: 180px;
        width: auto;
    }

    .menu-wrap {
        grid-gap: 16px;
        background: #0e1013;
        display: none;
        grid-template-columns: 86px 1fr;
        height: calc(100% - 82px);
        left: 0;
        padding: 20px;
        place-content: flex-start;
        position: fixed;
        top: 82px;
        width: 100%;
    }

    .menu-wrap.-toggle {
        display: flex;
        z-index: 3;
        align-items: center;
        flex-direction: column;
        align-content: center;
    }

    .main-nav {
        grid-column: 1 / 3;
        grid-row: 1;
        margin-bottom: 20px;
        padding: 0;
        text-align: center;
    }

    .main-nav__list {
        display: block;
    }

    .main-nav__list li:not(:last-child) {
        border-bottom: 1px solid hsla(0, 0%, 100%, .1);
        display: block;
        margin-bottom: 20px;
        padding-bottom: 20px
    }

    .header .btn {
        grid-row: 2;
        text-align: center;
        width: max-content;
    }

    .header .btn a {
        padding: 0 10px;
    }
    .header {
        padding: 0;
    }
}

/*SLOTS STYLE*/
.game-title {
    font-size: 34px;
    margin: 15px 0 30px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 32px;
}
.game-title span {
    color: #4caf50;
}
.game__code {
    width: 100%;
    flex-grow: 1;
    height: 100%;
    position: relative;
}
.star-rating {
    position: relative;
    width: 95px;
}
.star-rating--inner,
.star-rating--outer {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: row;
}
.star-rating--outer {
    overflow: hidden;
}
.screen-reader-text {
    display: inline-block;
    margin-left: 5px;
    height: 18px;
    font-size: 18px;
    line-height: 21px;
    font-weight: normal !important;
    color: #faab00;
}
.game-rating {
    display: flex;
    flex-wrap: wrap;
    top: 15px;
    left: 15px;
    position: absolute;
    z-index: 1;
}
.game-rating-title {
    width: 100%;
}
.box__game-main {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 65vh;
}
.slotogamemain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.body__fullscreen .wrapper__container {
    z-index: 30;
}
.body__fullscreen .box__game-main {
    z-index: 10;
}
.box__game {
    position: relative;
}
.box__game-main:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(29, 38, 45, 0.7);
    width: 100%;
    height: 100%;
}
.box__game {
    background: #000;
    border-radius: 7px;
}
.box__game-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
    z-index: 2;
}
.share-text {
    margin-right: 15px;
}
.share-text span {
    display: block;
    font-size: 15px;
    line-height: 18px;
}
.share-wrap {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.share__toggle {
    flex-shrink: 0;
    display: block;
    width: 32px;
    height: 32px;
    padding: 0;
    background-color: #2f8f41;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m19.823 8.666-7.348-6.874c-.088-.083-.171-.13-.291-.125-.23.01-.521.172-.521.417V5.53a.222.222 0 0 1-.187.213C4.17 6.864 1.092 12.332.004 18.008c-.042.224.26.432.4.255 2.667-3.359 5.911-5.551 11.04-5.593.115 0 .219.136.219.25v3.385c0 .364.484.526.755.276l7.4-6.994A.575.575 0 0 0 20 9.15c-.005-.167-.047-.36-.177-.484Z' fill='%23fff'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    border-radius: 4px;
    cursor: pointer;
}
.share__toggle:hover {
    background-color: #39833c;
}
.share__content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    margin-right: calc(-50% - -14px);
    padding: 10px 3px;
    background-color: #fff;
    border-radius: 4px;
    z-index: 5;
}
.share__content:before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -5px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #fff;
}
.share__content--visible {
    display: block;
    -webkit-animation: fadein 0.2s;
    -moz-animation: fadein 0.2s;
    -ms-animation: fadein 0.2s;
    -o-animation: fadein 0.2s;
    animation: fadein 0.2s;
}
.report-problem,
.expand-wrap {
    display: flex;
    cursor: pointer;
    font-size: 15px;
}
.actions-btns .favorites-button,
.actions-btns .report-problem,
.actions-btns .expand-wrap {
    margin: 0 0 0 5px;
}
.report-problem:hover,
.expand-wrap:hover {
    opacity: 0.8;
}
.report-problem:before,
.expand-wrap:before {
    content: "";
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.report-problem:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNMTIgMjJjNS41IDAgMTAtNC41IDEwLTEwUzE3LjUgMiAxMiAyIDIgNi41IDIgMTJzNC41IDEwIDEwIDEwWk0xMiA4djUiLz48cGF0aCBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJNMTEuOTk1IDE2aC4wMDkiLz48L3N2Zz4=);
}
.expand-wrap:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNOSAyMmg2YzUgMCA3LTIgNy03VjljMC01LTItNy03LTdIOUM0IDIgMiA0IDIgOXY2YzAgNSAyIDcgNyA3Wk0xOCA2IDYgMTgiLz48cGF0aCBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Ik0xOCAxMFY2aC00TTYgMTR2NGg0TTYgNmwxMiAxMk02IDEwVjZoNE0xOCAxNHY0aC00Ii8+PC9zdmc+);
}
.expand-wrap svg {
    margin-right: 10px;
}
.actions-btns {
    display: flex;
    flex-direction: row;
}
.play-btn {
    width: 128px;
    height: 128px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    margin-left: -64px;
    margin-top: -64px;
    cursor: pointer;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 455 455'%3E%3Cpath d='M227.5 0C101.855 0 0 101.855 0 227.5S101.855 455 227.5 455 455 353.145 455 227.5 353.145 0 227.5 0zm-61.438 321.575v-188.15L328.938 227.5l-162.876 94.075z' fill='%23ffffff' /%3E%3C/svg%3E");
}
.play-btn:hover {
    opacity: 0.8;
}
.box__game-iframe {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden;
}
.box__game-iframe.fullscreen {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1020;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    align-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    background: #000;
}
.game__info {
    float: right;
    clear: right;
    width: 340px;
}
.list__dotted {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}
.list__dotted li {
    border-bottom: 1px dashed #475158;
    position: relative;
    padding: 0;
    margin-bottom: 18px;
    line-height: normal;
}
.list__dotted li span {
    background-color: #000;
    margin: 0;
}
.list__dotted li span.list-label,
.list__dotted li span.list-value {
    bottom: -5px;
    font-size: 18px;
    line-height: 16px;
}
.list__dotted span.list-label {
    position: relative;
    margin-right: 7em;
    padding-right: 2px;
}
.list__dotted span.list-value {
    position: absolute;
    right: 0;
    padding-left: 2px;
}
.list__dotted a {
    color: #fff;
}
.item__header .heading__section {
    color: #fff;
}
.list-rhombus {
    list-style: none;
    margin: 0;
    padding: 0;
}
.list-rhombus li {
    padding-left: 20px;
    position: relative;
}
.list-rhombus li + li {
    margin-top: 10px;
}
.list-rhombus li:not(.nostyle):before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    background: #fff;
    position: absolute;
    left: 0;
    top: 9px;
}
.list-rhombus a {
    color: #fff;
}
.table-contents {
    padding: 20px 15px;
    border: solid 1px #e0e0e0;
    background: #fff;
}
.table-contents p {
    margin: 0;
}
.exit__fullscreen {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    border: 0;
    background: none;
    fill: #fff;
    padding: 0;
    display: none;
    cursor: pointer;
    z-index: 1;
}
.exit__fullscreen svg {
    width: 32px;
    height: 32px;
}
.box__game-iframe.fullscreen .exit__fullscreen {
    display: block;
}
@media (min-width: 576px) {
    .actions-btns .favorites-button,
    .actions-btns .report-problem,
    .actions-btns .expand-wrap {
        margin: 0 0 0 13px;
    }
    .actions-btns .expand-wrap:before {
        margin-right: 10px;
    }
}
@media (min-width: 1140px) {
    .item__header {
        margin-left: -30px;
        margin-right: 30px;
        width: calc(100% + 60px);
    }
}
@media (max-width: 1140px) {
    .box__game-main {
        height: 30vh;
    }
}
@media (min-width: 768px) and (max-width: 1140px) {
    .item__header {
        margin-left: -15px;
        margin-right: 15px;
        width: calc(100% + 30px);
        border-radius: 0;
    }
    .game__code {
        max-width: 100%;
    }
    .box__game-main img {
        width: 100%;
        object-fit: cover;
    }
    .game__info {
        float: right;
        clear: right;
        width: 100%;
        margin: 30px 0;
    }
    .game__info .btn-red,
    .game__info .btn-yellow,
    .game__info .btn-green {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767.8px) {
    .item__header {
        margin-left: -15px;
        margin-right: 15px;
        width: calc(100% + 30px);
        border-radius: 0;
        padding: 0 15px 30px;
    }
    .game__code {
        max-width: 100%;
    }
    .game__info {
        float: right;
        clear: right;
        width: 100%;
        margin: 30px 0;
    }
    .game__info .btn-red,
    .game__info .btn-yellow,
    .game__info .btn-green {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .play-btn {
        width: 64px;
        height: 64px;
        margin-left: -32px;
        margin-top: -32px;
    }
    .play-btn svg {
        width: 64px;
        height: 64px;
    }
    .game-title {
        font-size: 25px;
    }
    .list__dotted span.list-label {
        white-space: nowrap;
    }
    .game__code {
        height: inherit;
    }
    .box__game-iframe {
        padding-top: 56.25%;
    }
    .box__game-iframe iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
}
.game__died {
    position: absolute;
    background: rgba(36, 37, 38, 0.85);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}
.game__died-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 22px;
}
.game__died-text:before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzQ0NjFfMjgxNTg0KSI+PHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iMTIiIGZpbGw9IiNmZmYiLz48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTS4wMDIgMTEuOTljMCA2LjU0NyA1LjM2NCAxMS45OSAxMS45ODkgMTEuOTkgNi41NDYgMCAxMS45ODktNS40NDMgMTEuOTg5LTExLjk5QzIzLjk4IDUuMzY3IDE4LjUzNy4wMDMgMTEuOTkuMDAzIDUuMzY3LjAwMi4wMDMgNS4zNjYuMDAzIDExLjk5MVptMTYuMTY5IDYuNjI2LTQuMTgtNC4xOC00LjE4IDQuMTgtMi40NDYtMi40NDUgNC4xMDItNC4xOC00LjEwMi00LjE4TDcuODEgNS4yODdsNC4xOCA0LjE4IDQuMTAyLTQuMTggMi41MjQgMi41MjQtNC4xOCA0LjE4IDQuMTggNC4xOC0yLjQ0NSAyLjQ0NVoiIGZpbGw9IiNEODIxM0YiLz48L2c+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwMF80NDYxXzI4MTU4NCI+PHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iMTIiIGZpbGw9IiNmZmYiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=);
}
@media (min-width: 768px) {
    .game__died-text {
        font-size: 34px;
        line-height: 36px;
        font-weight: bold;
    }
    .game__died-text:before {
        width: 32px;
        height: 32px;
    }
}
.box__subpage {
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: -30px;
}
.page-list {
    list-style: none;
    display: flex;
    align-items: flex-end;
    padding: 0;
    margin: 0;
}
.page-list li a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    width: 170px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #3f4143;
    background: #e3e4e5;
    border-right: 1px solid #b2b7ba;
    border-bottom: 1px solid #b2b7ba;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    white-space: nowrap;
}
.page-list li a:hover {
    background: #cccdce;
}
.page-list li.active a {
    height: 41px;
    background: #fff;
    color: #4caf50;
    border-top: 3px solid #4caf50;
    border-left: 1px solid #4caf50;
    border-right: 1px solid #4caf50;
    border-bottom: 0;
}
@media (max-width: 768px) {
    .page-list {
        overflow-x: scroll;
    }
    .page-list li a {
        width: auto;
        padding: 0 30px;
    }
    .page-list::-webkit-scrollbar {
        height: 5px;
        margin-top: 1px;
        background: #fff;
    }
    .page-list::-webkit-scrollbar-track {
        background: #fff;
        height: 5px;
    }
    .page-list::-webkit-scrollbar-thumb {
        border-radius: 2px;
        height: 5px;
        -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
        background: rgba(0, 0, 0, 0.3);
    }
}

.wpforms-container .wpforms-form .wpforms-field-label, .wpforms-container .wpforms-form .wpforms-field-sublabel, .wpforms-container .wpforms-form .wpforms-field-description, .wpforms-container .wpforms-form textarea, .wpforms-container .wpforms-form li, .wpforms-container .wpforms-form th {
	color:#fff;
}

.footer-container {
	margin: 5vh;
}