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

body {
    font-family: var(--main-font),georgia,times,serif;
	background-color: var(--body-bg-color);
	color: var(--body-color-text);
}

body[data-scroll=no-scroll] {
    overflow-y: hidden;
}

p {
    margin-top: 1rem;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

img {
	border-radius: 15px;
    height: auto;
    object-fit: cover;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
	color: var(--primary-color);
}

h1 {
    font-size: 32px;
    line-height: 42px;
}

h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
}

h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 32px
}

h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px
}

.container {
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 var(--offsets);
}

.container .container {
    padding: 0;
}

.page-update-text {
    font-size: 16px;
    font-weight: 400;
}

.page-update {
	margin: 0 0 24px;
}

.header {
	bottom: 0;
    position: sticky;
    top: 0;
    z-index: 50;
	background-color: var(--header-bg-color);
}

.header__box {
	padding: 24px 0;
    -webkit-box-pack: justify;
    gap: 0;
    justify-content: space-between;
	display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: nowrap;
}

@media(max-width: 768px) {
	.header__box {
		border-bottom: none;
    	flex-wrap: wrap;
    	gap: 16px;
    	position: static;
	}
}

.header__panel {
	display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
}

.header__panel__button {
	display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    flex-wrap: nowrap;
    gap: 0;
    height: 40px;
    outline: none;
    position: relative;
    transition-duration: 1s;
    width: 40px;
}

.header__panel__button__burger {
	background-color: #fff;
    border-radius: 20px;
    height: 3.2px;
    position: absolute;
    transition-delay: .25s;
    transition-duration: .25s;
    width: 30px;
}

.header__panel__button__burger:before {
    top: -9px
}

.header__panel__button__burger:after,
.header__panel__button__burger:before {
    background-color: #fff;
    border-radius: 20px;
    content: "";
    height: 3.2px;
    left: 0;
    position: absolute;
    transition: transform .25s, top .25s .25s, -webkit-transform .25s;
    width: 30px;
}

.header__panel__button__burger:after {
    top: 9px
}

.header__panel__button[data-state=open] .header__panel__button__burger {
    background: transparent;
    -webkit-transition-delay: .25s;
    transition-delay: .25s;
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.header__panel__button[data-state=open] .header__panel__button__burger:before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: top .25s,-webkit-transform .25s .25s;
    transition: top .25s,-webkit-transform .25s .25s;
    transition: top .25s,transform .25s .25s;
    transition: top .25s,transform .25s .25s,-webkit-transform .25s .25s
}

.header__panel__button[data-state=open] .header__panel__button__burger:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top .4s,-webkit-transform .25s .25s;
    transition: top .4s,-webkit-transform .25s .25s;
    transition: top .4s,transform .25s .25s;
    transition: top .4s,transform .25s .25s,-webkit-transform .25s .25s
}

.header-panel-logo {
	max-width: var(--logo-width);
    text-decoration: none;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
}

.header__buttons {
	display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
	margin-left: 30px;
    margin-right: auto;
}

@media(max-width: 768px) {
     .header__buttons {
        margin-left: 0;
        margin-right: 0;
        overflow: hidden;
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        display: grid;
        gap: 16px;
        grid-template-columns: 1fr 1fr;
        order: 1;
    }
}

.header__button_1 {
	background-color: var(--header-btn-1-bg);
	color: var(--header-btn-1-color);
}

.header__button_2 {
	background-color: var(--header-btn-2-bg);
	color: var(--header-btn-2-color);
}

.header__menu {
	background: rgba(18, 23, 34, .6);
    height: calc(100vh - var(--header-height));
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    transition: all .3s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 100;
}

.header__menu[data-state=open] {
    opacity: 1;
    visibility: visible
}

.header__menu__nav {
	background-color: var(--header-bg-color);;
    display: flex;
    height: calc(100vh - var(--header-height) + 2px);
    right: 100%;
    overflow: hidden;
    padding: 24px 16px 24px 16px;
    position: absolute;
    top: 0;
    width: 23%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    border-top: 1.6px solid var(--divider-main);
    flex-wrap: nowrap;
    gap: 0;
    z-index: 100;
}

@media (max-width: 768px) {
    .header__menu__nav {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1440px) {
    .header__menu__nav {
        width: 40%;
    }
}

.header__menu[data-state=open] .header__menu__nav {
    right: 0;
	border-top: 1px solid var(--primary-color);
}

.header__menu__list {
	display: flex;
    list-style: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    z-index: 100;
    -webkit-box-flex: 1;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}

.header__menu__item {
	display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    align-items: stretch;
    flex-wrap: nowrap;
}

.header__menu__item__link:hover {
	background-color: var(--header-text-bg-color-menu-hover); 
}

@media(max-width: 768px) {
    .header__menu__item {
        padding:0
    }
}

.sub-menu {
	 display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    flex-wrap: nowrap;
    gap: 0;
    padding: 8px 16px;
    align-items: stretch;
}

.header__menu__item__link {
	color: var(--header-text-color-menu);
    font-size: 18px;
    line-height: 25px;
    text-decoration: none;
    -webkit-box-flex: 1;
    flex: 1;
	border-radius: 16px;
	padding: 8px 16px;
}

.page-not-found__value {
    color: var(--primary-color);
    font-size: 100px!important;
    font-weight: 700;
    line-height: 100px!important;
    margin-top: 90px;
    text-align: center
}

.page-not-found__title {
    font-size: 20px;
    margin-top: 50px;
    text-align: center;
	color: var(--body-color-text);
}

.page-not-found__link {
    display: block;
    margin-top: 20px;
    text-align: center;
	font-size: 1.5rem;
	color: var(--primary-color);
}

.breadcrumbs {
    width: 100%;
    background-color: var(--breadcrumbs_bg_color);
}

.breadcrumbs_list {
    padding: 10px 0;
    max-width: 1300px;
    margin: 0 auto;
    list-style: none;
    display: flex;
	align-items: center;
	gap: 0.7rem;
}

@media (max-width: 1280px) {
	.breadcrumbs_list {
		margin-left: 20px;
		margin-right: 20px;
		gap: 0.5rem;
	}
}

.breadcrumbs__link {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
	font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    color: var(--breadcrumbs_color);
}

.breadcrumbs__separator {
	color: var(--breadcrumbs_color);
}

.breadcrumbs__link.last {
    color: var(--primary-color);
	pointer-events: none;
}

.breadcrumbs__link:not(.last):hover, .breadcrumbs__link:not(.last):focus {
	color: var(--breadcrumbs_color-hover);
}

.text-block {
	display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    align-items: stretch;
    color: var(--body-color-text);
    flex-wrap: nowrap;
    gap: 8px;
}

@media (max-width: 768px) {
	.text-block {
		gap: 8px;
	}
}

.text-block p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
	width: 100%;
	margin-top: 0;
}

ol, ul {
	margin-top: 0.5rem;
    padding-left: 25px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

table {
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    border-spacing: 0;
    padding: var(--offsets);
}

.wp-block-table th {
    border: 1px solid var(--primary-color);
    padding-bottom: 11px;
    padding-top: 11px
}

.wp-block-table thead {
    background-color: var(--primary-color);
    border-bottom: none;
}

.wp-block-table td {
    border: 1px solid var(--primary-color);
    padding: 8px;
    text-align: left
}

.wp-block-table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    display: flex;
    flex-direction: column-reverse;
    margin: 1rem 0
}

@media(max-width: 600px) {
    .wp-block-table {
        margin:16px 0;
        overflow: auto
    }

    .wp-block-table table {
        min-width: 570px;
    }
}

.wp-block-column {
	border-right: 1px solid var(--primary-color);
	margin: 15px 15px 15px 0;
	padding-right: 10px;
}

.wp-block-heading {
	margin-bottom: 5px;
}

.wp-block-column .wp-block-heading {
	margin-bottom: 10px;
}

.wp-block-column:last-of-type {
   	border-right: none;
	margin-right: 0;
	padding-right: 0;
}

@media(max-width: 781px) {
	.wp-block-column {
   		border-right: none;
		margin-right: 0;
		padding-right: 0;
	}
}

.toc__header {
	background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    padding: 12px 0;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
	width: 100%;
}

.toc__title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-left: 16px;
}

.toc__btn {
	display: flex;
    margin-right: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    flex-wrap: nowrap;
    gap: 0;
    height: 24px;
    outline: none;
    position: relative;
    transition-duration: 1s;
    width: 24px;
}

.toc__btn__burger {
    background-color: #fff;
    border-radius: 20px;
    height: 2px;
    position: absolute;
    -webkit-transition-delay: .25s;
    transition-delay: .25s;
    -webkit-transition-duration: .25s;
    transition-duration: .25s;
    width: 20px
}

.toc__btn__burger:before {
    top: -6px
}

.toc__btn__burger:after,.toc__btn__burger:before {
    background-color: #fff;
    border-radius: 20px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    -webkit-transition-duration: .25s;
    transition-duration: .25s;
    -webkit-transition: top .25s .25s,-webkit-transform .25s;
    transition: top .25s .25s,-webkit-transform .25s;
    transition: transform .25s,top .25s .25s;
    transition: transform .25s,top .25s .25s,-webkit-transform .25s;
    width: 20px;
}

.toc__btn__burger:after {
    top: 6px;
}

.toc__menu {
	counter-reset: item;
    background-color: #fff;
    display: none;
	width: 100%;
}

.toc__menu__item {
    border-bottom: 1px solid #e8e8e8;
	border-radius: 8px;
	counter-increment: point;
	display: flex;
	align-items: center;
}

.toc__menu__item:hover {
	background-color: #cccccc88; 
}

.toc__menu__item__link {
    color: #000;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    padding: 10px;
    text-decoration: none;
    width: 100%;
}

.toc__menu__item__link:before {
    content: counter(point) ". ";
	margin-right: 5px;
    display: inline-block;
}

.toc[data-state=open] .toc__btn__burger {
    background: transparent;
    -webkit-transition-delay: .25s;
    transition-delay: .25s;
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.toc[data-state=open] .toc__btn__burger:before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: top .25s,-webkit-transform .25s .25s;
    transition: top .25s,-webkit-transform .25s .25s;
    transition: top .25s,transform .25s .25s;
    transition: top .25s,transform .25s .25s,-webkit-transform .25s .25s
}

.toc[data-state=open] .toc__btn__burger:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top .4s,-webkit-transform .25s .25s;
    transition: top .4s,-webkit-transform .25s .25s;
    transition: top .4s,transform .25s .25s;
    transition: top .4s,transform .25s .25s,-webkit-transform .25s .25s
}

.toc[data-state=open] .toc__menu {
    display: block
}

.scroll-to-top {	
	background: var(--primary-color);
	border: 1px solid var(--secondary-color);
    border-radius: 50%;
    bottom: 120px;
    color: var(--button-text-color);
    cursor: pointer;
    font-size: 20px;
    height: 48px;
    opacity: 0;
	visibility: hidden;
    position: fixed;
    right: 5%;
    transition: all .25s ease-in-out;
    width: 48px;
	z-index: 100;
}

.scroll-to-top.active {
	visibility: visible;
	opacity: 1;
}

.footer {
    background-color: var(--footer-panel-color);
    padding: 32px 0;
}

.footer .container {
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 24px;
}

.footer__main {
	border-bottom: 1px solid var(--primary-color);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding-bottom: 24px;
    color: var(--footer-panel-text-color);
    gap: 32px;
    justify-items: center;
}

@media(max-width: 768px) {
    .footer__main {
        gap: 20px;
        padding-bottom: 20px;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
	.footer__main {
		grid-template-rows: auto auto auto;
        grid-template-columns: 1fr;
	}
}

.footer__logo {
    height: auto;
    margin-right: auto;
    width: var(--logo-width);
}
    
@media(max-width: 768px) {
	.footer__logo {
		grid-column: 1 / -1;
    	grid-row: 1 / 2;
	}
}

.footer__menu {
	width: 100%;
	display: flex;
    justify-content: center;
}

@media(max-width: 768px) {
	.footer__menu {
    	justify-content: flex-start;
	}
}

.footer__menu__list {
	display: flex;
    list-style: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 16px;
}

.footer__menu__item__link {
	color: var(--footer-panel-text-color);
	font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
}

.footer__menu__item__link:hover {
	color: var(--footer-panel-text-color-hover);
}

.footer__app {
	display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}


@media(max-width: 1024px) {
    .footer__app {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }
}

.footer__app__buttons {
	display: flex;
    max-width: 400px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 30px;
}

@media(max-width: 768px) {
    .footer__app__buttons {
        gap:24px;
        max-width: 100%;
        width: 100%
    }
}

.footer__app__bonus {
	max-width: 400px;
}

.footer__bottom {
	display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--footer-panel-text-color);
}

.footer__bottom__age__limit {
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNyIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzAwMCIgZD0ibTEzLjUuNzAxIDEzLjQyMyA3Ljc1djE1LjVMMTMuNSAzMS43MDEuMDc3IDIzLjk1MXYtMTUuNXoiLz48L3N2Zz4=) no-repeat 50%;
    color: #ddd;
    font-size: 10px;
    font-weight: 500;
    height: 31px;
    line-height: 18px;
    padding: 7.5px 6.5px;
    width: 31px;
}

.footer__bottom img {
	border-radius: 0;
}

.footer__bottom .dmca-badge {
	height: 20px;
    width: 100px;
}