*,
*:before,
*:after {
    box-sizing: inherit;
}

.svg-sprite {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    visibility: hidden;
    opacity: 0;
}

.icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    flex-shrink: 0;
}

*::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: var(--green-7);
}

*::-webkit-scrollbar-thumb {
    background: var(--green-1);
    border-radius: 10px;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scrollbar-width: thin;
    scrollbar-color: var(--green-1) var(--green-7);
}

html.behavior-auto {
    scroll-behavior: auto;
}

html,
body {
    display: flex;
    flex-direction: column;
}

html.is-noscroll body {
    position: fixed !important;
    left: 0;
    right: 0;
    margin-right: var(--scrollbarWidth);
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    padding-top: 60px;
    font-family: var(--main-font);
    font-size: 16px;
    line-height: 24px;
    background: #96FBC4;
    background: linear-gradient(90deg, #96FBC4 50%, #F9F586 100%);
    color: var(--denim-blue);
}

body::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    color: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

:hover,
:active,
:focus {
    outline: none;
}

img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

b, strong {
    font-weight: bold;
}

hr {
    box-sizing: content-box;
    height: 0;
    margin: 1em 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    clear: both;
}

textarea {
    max-width: 100%;
    min-width: 100%;
    overflow: auto;
    resize: vertical;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    text-align: inherit;
}

a {
    background-color: transparent;
    text-decoration: underline;
    color: var(--poki-hover-1);
}

a:hover {
    color: var(--poki-blue);
}

p {
    margin: 0 0 10px 0;
}

ul,
ol,
dl,
pre,
table,
figure,
address,
fieldset,
blockquote {
    margin: 0 0 16px 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--title-font);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

h1, .h1 {
    font-size: 32px;
    line-height: 1.167;
    margin-bottom: 30px;
}

h2, .h2 {
    font-size: 24px;
}

h3, .h3 {
    font-size: 18px;
}

h4, .h4 {
    font-size: 16px;
}

h5, .h5 {
    font-size: 14px;
}

h6, .h6 {
    font-size: 12px;
}

.text p,
.text ul,
.text ol {
    margin-bottom: 10px;
}

.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
    margin-bottom: 10px;
}

.text * + h2,
.text * + h3,
.text * + h4,
.text * + h5,
.text * + h6 {
    margin-top: 30px;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

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

.text-decoration {
    text-decoration: underline !important;
}

.fs-1 {
    font-size: 1em !important;
}

.fs-2 {
    font-size: 1.25em !important;
}

.fs-3 {
    font-size: 1.5em !important;
}

.fs-4 {
    font-size: 1.75em !important;
}

.fs-5 {
    font-size: 2em !important;
}

.nowrap {
    white-space: nowrap !important;
}

.color-red {
    color: var(--rose-1) !important;
}

.form-check {
    line-height: 20px;
    margin-bottom: 1rem;
}

.form-check__label {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.form-check__input {
    position: absolute;
    opacity: 0;
}

.form-check__text {
    display: block;
    position: relative;
    padding: 0 0 0 26px;
}

.form-check__input:disabled + .form-check__text {
    opacity: 0.5;
    cursor: default;
    cursor: not-allowed;
}

.form-check__text:before,
.form-check__text:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    transition: 0.15s ease-in-out;
}

.form-check__text:before {
    width: 18px;
    height: 18px;
    border: 1px solid var(--grey-5);
    border-radius: 4px;
}

.form-check__input[type=radio] + .form-check__text:before {
    border-radius: 50%;
}

.form-check__input[type=radio] + .form-check__text:after {
    width: 10px;
    height: 10px;
    margin: 4px 0 0 4px;
    background: var(--grey-5);
    border-radius: 50%;
    opacity: 0;
}

.form-check__input[type=checkbox] + .form-check__text:after {
    width: 12px;
    height: 6px;
    margin: 4px 0 0 3px;
    border-style: solid;
    border-color: var(--grey-5);
    border-width: 0 0 2px 2px;
    opacity: 0;
    transform: rotate(-45deg);
}

.form-check__input:checked ~ .form-check__text:after {
    opacity: 1;
}

.form-check__input:disabled + .form-check__text {
    cursor: default;
    cursor: not-allowed;
}

.form-check__input.error ~ .form-check__text:before {
    border-color: var(--rose-1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.form-label-inline {
    margin-bottom: 0;
    padding-top: 7px;
}

.form-label[for] {
    cursor: pointer;
}

.form-control {
    display: block;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    transition: 0.15s ease-in-out;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 18px;
    border-radius: 5px;
    border: 1px solid var(--grey-5);
    background-color: #fff;
    color: var(--denim-blue);
}

.form-control::placeholder {
    color: var(--denim-blue);
}

.form-control:focus::placeholder {
    color: transparent;
}

select.form-control {
    max-width: 100%; 
    margin: 0;
    padding-right: 25px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23383838' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px 8px;
}

select.form-control::-ms-expand {
    display: none;
}

textarea.form-control {
    height: auto;
}

.form-control[disabled],
.form-control.disabled {
    opacity: .5;
    cursor: default;
    cursor: not-allowed;
}

.form-control.error {
    border-color: var(--rose-1);
}

label.error {
    display: block;
    color: var(--rose-1);
    font-size: 10px;
    line-height: 1rem;
    margin-bottom: -1rem;
}

.link {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline;
    text-align: left;
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
    font-weight: normal;
    border: 1px solid;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 18px;
    border-radius: 5px;
    color: var(--poki-hover-1);
    border-color: var(--poki-hover-1);
    background-color: transparent;
    min-width: 150px;
}

.btn:hover {
    color: var(--poki-hover-1);
    box-shadow: inset 0 0 200px rgb(0 0 0 / 10%);
}

.btn:active {
    box-shadow: inset 0 0 200px rgb(0 0 0 / 10%), inset 0 2px 3px rgba(0 0 0 / 10%);
}

.btn-link {
    color: var(--poki-hover-1);
    border-color: transparent;
    background-color: transparent;
}

.btn-link:hover,
.btn-link:active {
    color: var(--poki-blue);
    box-shadow: none;
}

.btn-primary {
    color: #fff;
    border-color: var(--green-1);
    background-color: var(--green-2);
}

.btn-primary:hover {
    color: #fff;
}

.btn.disabled,
.btn[disabled] {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .45;
    box-shadow: none;
}

.btn-block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.btn-block + .btn-block {
    margin-top: 5px;
}

.alert {
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
    align-items: baseline;
}

.alert a {
    color: inherit;
}

.alert p:last-child {
    margin-bottom: 0;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

.close-btn {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    border: none;
    background: none;
    padding: 0;
    width: 34px;
    height: 34px;
}

.close-btn:before,
.close-btn:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    border-bottom: 2px solid;
    margin: -1px 0 0 -7px;
    transform: rotate(45deg);
}

.close-btn:after {
    transform: rotate(-45deg);  
}

.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 60px;
    display: flex;
    z-index: 1000;
    background: #0ecbbd;
    color: #fff;
}

.header__logo {
    flex-shrink: 0;
    width: 200px;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, .25);
    position: relative;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
    height: 40px;
    font-family: var(--title-font);
    color: inherit !important;
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
}

.logo[href]:hover {
    color: var(--denim-blue) !important;
}

.logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.nav-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -13px;
    width: 26px;
    height: 26px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 5px;
    color: currentColor;
}

.nav-btn:hover,
html.is-nav-open .nav-btn {
    background: #fff;
    color: var(--denim-blue);
}

.nav-btn svg {
    display: block;
    width: 100%;
    height: 100%;
}

html.is-nav-open .nav-btn svg {
    transform: rotate(180deg);
}

.nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--green-4);
    margin: 0;
    padding: 10px 0;
    list-style: none;
    font-size: 12px;
    line-height: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s var(--bezier);
}

html.is-nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav a {
    display: block;
    color: var(--denim-blue);
    text-decoration: none;
    padding: 7px 20px;
}

.nav a:hover {
    color: var(--header-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.header__menu {
    flex-grow: 1;
    min-width: 1px;
    position: relative;
}

.menu-btn {
    display: none;
}

.menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    font-family: var(--title-font);
    color: var(--header-color);
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    overflow-x: overlay;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .1) transparent;
}

.menu:hover {
    scrollbar-color: rgba(0, 0, 0, .2) transparent;
}

.menu::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: transparent;
}

.menu::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .1);
    border-radius: 0;
}

.menu:hover::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2);
}

.menu > li > a {
    display: flex;
    height: 60px;
    align-items: center;
    color: inherit;
    text-decoration: none;
    padding: 0 12px;
}

.menu > li:hover > a,
.menu > li > a.is-active {
    color: var(--denim-blue);
}

.header__search {
    flex-shrink: 0;
    width: 300px;
    display: flex;
}

.search-btn {
    display: none;
}

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

.search {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.search__form {
    position: relative;
    width: 100%;
}

.search__form .form-control {
    font-size: 12px;
    line-height: 20px;
    padding: 8px 10px;
    padding-right: 40px;
    border-color: #fff;
}

.search__form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: var(--denim-blue);
    transform: scaleX(-1);
}

.search__form label.error {
    display: none !important;
}

.search__results {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    font-family: var(--title-font);
    font-size: 14px;
    line-height: 18px;
}

.autocomplete-suggestions {
    background: #fff;
    color: var(--denim-blue);
    padding: 5px 0;
    width: 100% !important;
    max-height: 281px !important;
    overflow-y: auto;
    overflow-y: overlay;
    scrollbar-width: thin;
    scrollbar-color: var(--green-1) transparent;
    max-height: calc(100vh - 60px) !important;
}

.autocomplete-suggestions::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: transparent;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    background: var(--green-1);
    background-clip: content-box;
}

.search__result-title {
    padding: 0 20px;
    margin-bottom: 5px;
}

.search__result-link,
.search__result-item {
    display: block;
    color: inherit !important;
    text-decoration: none;
    padding: 3px 20px;
}

.search__result-link:hover,
.search__result-item:hover {
    background-color: rgb(189 189 189 / 30%);
}

.search__result-item {
    display: flex;
    align-items: center;
    color: inherit !important;
}

.search__result-item-image-field {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    margin-right: 8px;
}

.search__result-item-image-field img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.search__result-item-content {
    flex-grow: 1;
    min-width: 1px;
}

.search__result-item-title {
    line-height: 18px;
    max-height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.footer {
    background: #fff;
    padding: 12px 20px;
    text-align: center;
}

.content {
    flex-grow: 1;
    padding: 20px;
}

.tabs {
    margin-bottom: 60px;
}

.tabs__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.tabs__nav-item {

}

.tabs__nav-link {
    display: flex;
    color: inherit !important;
    text-decoration: none;
    background: #efefef;
    border-radius: 5px 5px 0 0;
    padding: 5px 10px;
    min-height: 50px;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    align-items: center;
    position: relative;
    max-width: 220px;
    text-align: center;
}

.tabs__nav-link:hover {
    background: #f7f7f7;
}

.tabs__nav-link.is-active {
    background: #fff;
    z-index: 1;
}

.tabs__content {
    margin: 0 !important;
}

.tabs__item:not(.is-active) {
    display: none;
}

.tabs__item-header {
    display: none;
}

.tabs__item-content {

}

.tabs__item.is-open .tabs__item-header {

}

.tabs__item.is-open .tabs__item-content {

}

.tabs video {
    display: block;
    max-width: 100%;
    height: auto;
}

.data-table {
    width: 100%;
    margin: 0;
}

.data-table td {
    vertical-align: bottom;
    padding: 0 0 10px 0;
}

.data-table td:first-child {
    vertical-align: baseline;
}

.data-table td:first-child > span {
    display: block;
    margin-right: 5px;
    padding-right: 10px;
    background-image: linear-gradient(to right, var(--grey-3) 50%, #fff 50%);
    background-size: 5px 1px;
    background-position: left bottom 6px;
    background-repeat: repeat-x;
}

.data-table td:first-child > span > span {
    background: #fff;
    padding-right: 5px;
}

.data-table td:last-child > span {
    display: inline-block;
}

.reviews {
    max-width: 800px;
}

.review {

}

.review + .review {
    margin-top: -1px;
}

.review__main {
    display: flex;
    border-bottom: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    padding-top: 30px;
    padding-bottom: 30px;
}

.review__header {
    flex: 0 0 150px;
    padding-right: 20px;
}

.review__author {
    font-weight: 500;
    margin-bottom: 2px;
}

.review__rating {
    margin-bottom: 5px;
}

.review__date {
    font-size: 12px;
    color: var(--grey-3);
}

.review__content {
    flex-grow: 1;
    min-width: 1px;
}

.review__content p:last-child {
    margin-bottom: 0;
}

.review__replay {
    margin-left: 150px;
}

.add-review-btn {
    margin-top: 20px;
}

.add-review {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 99999;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    width: 300px;
    box-shadow: rgb(0 0 0 / 20%) 0px 2px 10px 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: 0.25s ease-in-out;
}

.add-review.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.add-review__title {
    font-family: var(--title-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.add-review__close-btn {
    position: absolute;
    right: 0;
    top: 6px;
    border: none;
    padding: 0;
    background: none;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.add-review .form-group {
    margin-bottom: 10px;
}

.add-review .form-control,
.add-review .btn {
    font-size: 12px;
    line-height: 16px;
    padding: 10px;
}

.add-review .form-control {

}

.add-review .btn {

}

.add-review__footer {
    display: flex;
    align-items: center;
    margin: 0 -2px;
}

.add-review__footer-cell {
    padding: 0 2px;
}

.add-review__footer-cell._captcha {
    flex-shrink: 0;
}

.add-review__footer-cell._input {
    flex-grow: 1;
    min-width: 1px;
}

.add-review__footer-cell._btn {
    flex-shrink: 0;
}

.add-review__footer-cell._captcha img {
    display: block;
    width: 75px;
    height: auto;
}

.add-review__footer-cell._btn .btn {
    width: 80px;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
}

.pagination {
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0 60px;
}

.pagination__arrow,
.pagination__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    text-align: center;
    height: 30px;
    width: 30px;
    background: #fff;
    border-radius: 5px;
    justify-content: center;
    font-weight: 500;
    color: var(--grey-3);
    padding: 0 5px;
    margin: 2px;
}

.pagination__arrow:hover,
.pagination__link:hover {
    text-decoration: none;
    color: #000;
}

.pagination__link.is-active {
    text-decoration: none;
    background: var(--green-1);
    color: #fff;
}

.pagination__arrow {
    text-indent: -9999px;
}

.pagination__arrow:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    left: 50%;
    top: 50%;
    margin: -4px;
    border-style: solid;
    border-width: 0 0 1px 1px;
}

.pagination__arrow_prev:after {
    transform: translateX(4px) rotate(45deg);
}

.pagination__arrow_next:after {
    transform: translateX(-4px) rotate(225deg);
}

.pagination__dott {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.page-content {
    display: flex;
    position: relative;
    padding: 24px;
    background: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 24%) 0px 6px 12px 0px;
    margin-bottom: 60px;
}

.page-content__main {
    flex-grow: 1;
    min-width: 1;
    max-width: 1000px;
}

.page-content__aside {
    flex: 0 0 auto;
    width: 300px;
    margin-left: 30px;
}

.adsbygoogle-wrapper {
    margin: auto;
}

.adsbygoogle-wrapper > ins {
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
}

.page-header {
    margin-bottom: 30px;
}

.page-header p {
    margin: 10px 0;
}

.breadcrumbs {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.breadcrumbs li {
    display: inline-block;
}

.breadcrumbs li:not(:last-child):after {
    content: '|';
    margin: 0 5px;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.sticker {
    position: absolute;
    z-index: 5;
    left: -6px;
    right: 0px;
    height: 28px;
    top: 8px;
    font: 700 11px / 28px "Proxima Nova", sans-serif;
    color: var(--poki-blue);
    text-transform: uppercase;
    padding: 0px 8px 0px 6px;
    pointer-events: none;
}

.sticker:before {
    content: "";
    background: rgb(255, 255, 255);
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0px;
    bottom: -4px;
    z-index: 0;
}

.sticker:after {
    content: "";
    background: var(--grey-5);
    width: 6px;
    height: 8px;
    border-radius: 4px 0px 0px 4px;
    position: absolute;
    bottom: -8px;
    left: 0px;
    z-index: 1;
}

.sticker > span {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 20%) 2px 2px 2px;
    border-radius: 3px 14px 14px 0px;
    padding: 0px 8px 0px 6px;
}

.sticker_new {

}

.sticker_hit {

}

.item {
    display: block;
    transition: transform 0.6s var(--bezier);
    position: relative;
    box-shadow: rgb(0 0 0 / 24%) 0 6px 12px 0px;
    user-select: none;
    border-radius: 16px;
}

.item:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.item:hover {
    transform: scale(1.02) translate(0, -4px);
    transition-duration: 0.3s;
}

.item__inner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 16px;
    overflow: hidden;
}

.item__img-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.lazy-wrapper:before,
.lazy-wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    transition: 0.25s ease-in-out;
    transition-property: opacity, visibility;
    z-index: 1;
}

.lazy-wrapper.loaded:before,
.lazy-wrapper.loaded:after {
    opacity: 0;
    visibility: hidden;
}

.lazy-wrapper:before {
    background: #96FBC4;
    background: linear-gradient(90deg, #96FBC4 50%, #F9F586 100%);
    border-radius: 16px;
}

.lazy-wrapper:after {
    margin: auto;
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-bottom-color: #0ecbbd;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform:  rotate(0deg);
    }
    to {
        transform:  rotate(360deg);
    }
}

.item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.item__content {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 4;
    transition: opacity 0.3s var(--bezier);
    border-radius: inherit;
}

.item:hover .item__content {
    opacity: 1;
}

.item__title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 6px;
    color: #fff;
    font-family: var(--title-font);
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    z-index: 5;
    transition: transform 0.3s var(--bezier);
    transform: translate(0, 8px);
    -webkit-font-smoothing: antialiased;
}

.item:hover .item__title {
    transform: translate(0, 0);
}

.main-catalog {
    display: grid;
    grid-template-rows: repeat(auto-fill, var(--cellSize));
    grid-gap: var(--cellSpacing);
    grid-auto-flow: dense;
    justify-content: center;
    margin: 0 auto 60px;
    --gridTemplateColumns: 3;
    grid-template-columns: repeat(var(--gridTemplateColumns), var(--cellSize));
    grid-template-areas:
    ".   .   .  "
    "l01 l01 .  "
    "l01 l01 .  "
    ".   .   .  "
    ".   l02 l02"
    ".   l02 l02";
}

.catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--cellSize), 1fr));
    grid-gap: var(--cellSpacing);
    margin-bottom: 60px;
}

.catalog__item._ad {
    grid-column: -4 / -1;
    grid-row: 1 / 7;
}

@media (max-width: 767.98px) {
    .catalog__item._ad {
        grid-column: -4 / -1;
        grid-row: 3 / 8;
    }
}

@media (max-width: 534px) {
    .catalog__item._ad {
        grid-column: 1 / -1;
        grid-row: 5 / 6;
    }
}

.catalog__item:nth-child(1) {
    grid-row-start: span 2;
    grid-column-start: span 2;
}

.main-catalog__item:nth-child(1) .item__inner:after,
.catalog__item:nth-child(1) .item__inner:after {
    content: '';
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    transform: translate3d(-50%, 0%, 0px);
    will-change: transform, opacity;
    pointer-events: none;
    opacity: 0;
    animation: 6s linear 6s infinite running shine;
    contain: strict;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0) 25%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 75%);
}

@keyframes shine {
    0% {
        transform:translate3d(-55%,-5%,0);
        opacity:0;
    }
    1% {
        transform:translate3d(-50%,0%,0);
        opacity:1;
    }
    10% {
        transform:translate3d(0%,-50%,0);
        opacity:1;
    }
    15% {
        transform:translate3d(0%,-50%,0);
        opacity:0;
    }
    39.99% {
        transform:translate3d(-55%,-5%,0);
        opacity:0;
    }
    40% {
        transform:translate3d(-50%,0%,0);
        opacity:1;
    }
    50% {
        transform:translate3d(0%,-50%,0);
        opacity:1;
    }
    66% {
        transform:translate3d(0%,-50%,0);
        opacity:0;
    }
    100% {
        transform:translate3d(0%,-50%,0);
        opacity:0;
    }
}

.main-catalog__item:nth-child(2) .item {
    animation: 4s ease-in-out 5s infinite normal none running shake;
    will-change: transform;
}

.main-catalog__item:nth-child(2) .item:hover {
    animation: 2s ease-in 0s infinite normal none running shake;
}

@keyframes shake {
    26% {
        transform:rotate(0deg) scale(1);
    }
    28% {
        transform:rotate(-2deg) scale(1.04);
    }
    32% {
        transform:rotate(1deg) scale(1.01);
    }
    34% {
        transform:rotate(-2deg) scale(1.02);
    }
    36%{
        transform:rotate(3deg) scale(1);
    }
    39% {
        transform:rotate(-1deg) scale(1);
    }
    44%{
        transform:rotate(0deg) scale(1);
    }
}

.main-catalog__item:nth-child(1) {
    grid-area: l01 / l01 / l01 / l01;
}

.main-catalog__item:nth-child(2) {
    grid-area: l02 / l02 / l02 / l02;
}

.main-catalog__item:nth-child(1) .item .item__title,
.main-catalog__item:nth-child(2) .item .item__title {
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 576px) {
    .main-catalog {
        --gridTemplateColumns: 5;
        grid-template-areas:
        ".   .   .   l01 l01"
        ".   .   .   l01 l01"
        "l02 l02 .   .   .  "
        "l02 l02 .   .   .  ";
    }
}

@media (min-width: 768px) {
    .main-catalog {
        --gridTemplateColumns: 7;
        grid-template-areas:
        ".   .   l01 l01 l01 l04 l04"
        "l03 l03 l01 l01 l01 l04 l04"
        "l03 l03 l01 l01 l01 .   .  "
        ".   .   .   m01 m01 .   .  "
        "l02 l02 l02 m01 m01 .   .  "
        "l02 l02 l02 m02 m02 m03 m03"
        "l02 l02 l02 m02 m02 m03 m03"
        ".   .   .   m04 m04 .   .  "
        ".   m05 m05 m04 m04 .   .  "
        ".   m05 m05 .   .   .   .  ";
    }

    .main-catalog__item:nth-child(3) {
        grid-area: l03 / l03 / l03 / l03;
    }

    .main-catalog__item:nth-child(4) {
        grid-area: l04 / l04 / l04 / l04;
    }

    .main-catalog__item:nth-child(5) {
        grid-area: m01 / m01 / m01 / m01;
    }

    .main-catalog__item:nth-child(6) {
        grid-area: m02 / m02 / m02 / m02;
    }

    .main-catalog__item:nth-child(7) {
        grid-area: m03 / m03 / m03 / m03;
    }

    .main-catalog__item:nth-child(8) {
        grid-area: m04 / m04 / m04 / m04;
    }

    .main-catalog__item:nth-child(9) {
        grid-area: m05 / m05 / m05 / m05;
    }

    .main-catalog__item:nth-child(3) .item .item__title,
    .main-catalog__item:nth-child(4) .item .item__title,
    .main-catalog__item:nth-child(5) .item .item__title,
    .main-catalog__item:nth-child(6) .item .item__title,
    .main-catalog__item:nth-child(7) .item .item__title,
    .main-catalog__item:nth-child(8) .item .item__title,
    .main-catalog__item:nth-child(9) .item .item__title {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (min-width: 1000px) {
    .main-catalog {
        --gridTemplateColumns: 9;
        grid-template-areas:
        ".   .   l01 l01 l01 l03 l03 m06 m06"
        "l04 l04 l01 l01 l01 l03 l03 m06 m06"
        "l04 l04 l01 l01 l01 l02 l02 l02 .  "
        ".   .   .   m02 m02 l02 l02 l02 .  "
        ".   m01 m01 m02 m02 l02 l02 l02 .  "
        ".   m01 m01 m03 m03 .   m04 m04 .  "
        ".   m05 m05 m03 m03 .   m04 m04 .  "
        ".   m05 m05 .   .   .   .   .   .  ";
    }

    .main-catalog__item:nth-child(10) {
        grid-area: m06 / m06 / m06 / m06;
    }

    .main-catalog__item:nth-child(10) .item .item__title {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (min-width: 1220px) {
    .main-catalog {
        --gridTemplateColumns: 11;
        grid-template-areas:
        ".   .   l01 l01 l01 l03 l03 m06 m06 l04 l04"
        "m02 m02 l01 l01 l01 l03 l03 m06 m06 l04 l04"
        "m02 m02 l01 l01 l01 l02 l02 l02 .   m03 m03"
        ".   .   .   .   .   l02 l02 l02 .   m03 m03"
        ".   m04 m04 m05 m05 l02 l02 l02 .   m01 m01"
        ".   m04 m04 m05 m05 .   .   .   .   m01 m01";
    }
}

@media (min-width: 1330px) {
    .main-catalog {
        --gridTemplateColumns: 12;
        grid-template-areas:
        ".   .   l01 l01 l01 l03 l03 m06 m06 l04 l04 .  "
        "m02 m02 l01 l01 l01 l03 l03 m06 m06 l04 l04 .  "
        "m02 m02 l01 l01 l01 l02 l02 l02 .   m03 m03 .  "
        ".   .   .   .   .   l02 l02 l02 .   m03 m03 .  "
        ".   m04 m04 m05 m05 l02 l02 l02 .   m01 m01 .  "
        ".   m04 m04 m05 m05 .   .   .   .   m01 m01 .  ";
    }
}

@media (min-width: 1550px) {
    .main-catalog {
        --gridTemplateColumns: 14;
        grid-template-areas:
        ".   .   l01 l01 l01 m06 m06 .   .   .   .   .   m01 m01"
        ".   .   l01 l01 l01 m06 m06 .   l03 l03 l03 .   m01 m01"
        "l04 l04 l01 l01 l01 .   .   .   l03 l03 l03 .   m02 m02"
        "l04 l04 .   .   .   l02 l02 l02 l03 l03 l03 .   m02 m02"
        "m03 m03 .   m04 m04 l02 l02 l02 m05 m05 m07 m07 m08 m08"
        "m03 m03 .   m04 m04 l02 l02 l02 m05 m05 m07 m07 m08 m08";
    }

    .main-catalog__item:nth-child(11) {
        grid-area: m07 / m07 / m07 / m07;
    }

    .main-catalog__item:nth-child(12) {
        grid-area: m08 / m08 / m08 / m08;
    }

    .main-catalog__item:nth-child(11) .item .item__title,
    .main-catalog__item:nth-child(12) .item .item__title {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (min-width: 1880px) {
    .main-catalog {
        --gridTemplateColumns: 17;
        grid-template-areas:
        ".   .   l01 l01 l01 .   .   .   .   .   .   .   .   m01 m01 m02 m02"
        ".   .   l01 l01 l01 m03 m03 m04 m04 l03 l03 l03 .   m01 m01 m02 m02"
        ".   .   l01 l01 l01 m03 m03 m04 m04 l03 l03 l03 m05 m05 l04 l04 l04"
        "m06 m06 m07 m07 m08 m08 l02 l02 l02 l03 l03 l03 m05 m05 l04 l04 l04"
        "m06 m06 m07 m07 m08 m08 l02 l02 l02 m09 m09 m10 m10 .   l04 l04 l04"
        ".   m11 m11 m12 m12 .   l02 l02 l02 m09 m09 m10 m10 m13 m13 m14 m14"
        ".   m11 m11 m12 m12 .   m15 m15 m16 m16 m17 m17 .   m13 m13 m14 m14"
        ".   .   .   .   .   .   m15 m15 m16 m16 m17 m17 .   .   .   .   .  ";
    }

    .main-catalog__item:nth-child(13) {
        grid-area: m09 / m09 / m09 / m09;
    }

    .main-catalog__item:nth-child(14) {
        grid-area: m10 / m10 / m10 / m10;
    }

    .main-catalog__item:nth-child(15) {
        grid-area: m11 / m11 / m11 / m11;
    }

    .main-catalog__item:nth-child(16) {
        grid-area: m12 / m12 / m12 / m12;
    }

    .main-catalog__item:nth-child(17) {
        grid-area: m13 / m13 / m13 / m13;
    }

    .main-catalog__item:nth-child(18) {
        grid-area: m14 / m14 / m14 / m14;
    }

    .main-catalog__item:nth-child(19) {
        grid-area: m15 / m15 / m15 / m15;
    }

    .main-catalog__item:nth-child(20) {
        grid-area: m16 / m16 / m16 / m16;
    }

    .main-catalog__item:nth-child(21) {
        grid-area: m17 / m17 / m17 / m17;
    }

    .main-catalog__item:nth-child(13) .item .item__title,
    .main-catalog__item:nth-child(14) .item .item__title,
    .main-catalog__item:nth-child(15) .item .item__title,
    .main-catalog__item:nth-child(16) .item .item__title,
    .main-catalog__item:nth-child(17) .item .item__title,
    .main-catalog__item:nth-child(18) .item .item__title,
    .main-catalog__item:nth-child(19) .item .item__title,
    .main-catalog__item:nth-child(20) .item .item__title,
    .main-catalog__item:nth-child(21) .item .item__title {
        font-size: 16px;
        line-height: 24px;
    }
}

.category-catalog {
    margin: 0 0 60px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    grid-gap: 5px;
}

.category-catalog__item {

}

.category-catalog__link {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    font-family: var(--title-font);
    font-size: 15px;
    line-height: 13px;
    text-transform: capitalize;
}

.category-catalog__link:hover {
    background: var(--green-1);
    color: #fff;
}

.category-catalog__item-image {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    display: block;
    position: relative;
}

.category-catalog__item-image:before {
    border-radius: 0;
}

.category-catalog__item-image:after {
    width: 20px;
    height: 20px;
    border-width: 1px;
}

.category-catalog__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.category-catalog__item-text {
    flex-grow: 1;
    min-width: 1px;
    word-break: break-word;
}

.game-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--cellSize), 1fr));
    grid-auto-rows: minmax(var(--cellSize), auto);
    grid-gap: var(--cellSpacing);
    margin-bottom: 60px;
}

.game-catalog__item {

}

.game-catalog__item._game {
    grid-column: 1 / 9;
    grid-row: 1 / 6;
}

.game-catalog__item._ad-1 {
    grid-column: 9 / 12;
    grid-row: 2 / 5;
    align-self: center;
}

.game-catalog__item._ad-2 {
    grid-column: 1 / 9;
    grid-row: 6 / 7;
    align-self: center;
}

@media (max-width: 1240px) {
    .game-catalog__item._ad-1 {
        grid-column: 9 / 11;
        grid-row: 2 / 4;
    }
}

@media (max-width: 1130px) {
    .game-catalog__item._ad-1 {
        grid-column: -4 / -1;
        grid-row: 8 / 11;
    }
}

@media (max-width: 1024px) {
    .game-catalog__item._game {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }

    .game-catalog__item._ad-1 {
        grid-column: -4 / -1;
        grid-row: 4 / 7;
    }

    .game-catalog__item._ad-2 {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
    }
}

@media (max-width: 454px) {
    .game-catalog__item._ad-1 {
        grid-column: 1 / -1;
        grid-row: 4 / 5;
    }
}

.game {
    position: relative;
}

.game__main {
    position: relative;
}

.game__frame-wrapper {
    background: #000;
    aspect-ratio: 16/9;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
}

.game__frame-wrapper:before {
    display: block;
    content: '';
    padding-top: calc(9 * 100% / 16);
}

.game__frame-inner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
}

.game__frame-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.game__frame-direction {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 24px;
    height: 24px;
    color: #fff;
    z-index: 100;
    display: none;
    pointer-events: none;
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 50% {
        transform: rotate(0deg);
    }

    5%, 45% {
        transform: rotate(-2.5deg);
    }

    10%, 40% {
        transform: rotate(5deg);
    }

    15%, 25%, 35% {
        transform: rotate(-10deg);
    }

    20%, 30% {
        transform: rotate(10deg);
    }
}

.game__frame-direction .icon {
    width: 100%;
    height: 100%;
}

@media (max-width: 767.98px) and (orientation: landscape) {
    .game__frame-content._vrt .game__frame-direction {
        display: block;
    }
}

@media (max-width: 767.98px) and (orientation: portrait) {
    .game__frame-content._hrz .game__frame-direction {
        display: block;
    }
}

.game__frame-content-place {
    display: none;
}

.game__frame-wrapper iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border: none;
    border-radius: 16px 16px 0 0;
}

.game__caption {
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 0 0 16px 16px;
    font-size: 12px;
    line-height: 20px;
}

.game__caption-image {
    flex: 0 0 auto;
    width: 60px;
    margin-right: 10px;
}

.game__caption-image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 16px;
}

.game__caption-content {
    flex-grow: 1;
    min-width: 1px;
}

.game__caption-title {
    font-family: var(--title-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
}

.game__caption-text {

}

.game__caption-buttons {
    display: flex;
    align-items: flex-start;
    margin-left: 15px;
}

.game__caption-share {

}

.game__caption-like {
    position: relative;
    margin-left: 10px;
}

.game__caption-like-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.07);
    color: #000 !important;
}

.game__caption-like-btn:focus,
.game__caption-like-btn:hover {
    opacity: .85;
}

.game__caption-like-btn:active {
    opacity: .7;
}

.game__caption-like-btn.is-active {
    color: #f90 !important;
}

.game__caption-like-btn._dislike svg {
    transform: rotate(180deg);
}

.game__caption-like-count {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    text-align: center;
    font-size: 11px;
    line-height: 1;
    margin-top: 5px;
}

.game__caption-rating {
    flex-shrink: 0;
    margin-left: 15px;
}

.game__rating {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.game__rating-value {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
}

.game__rating svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.game__caption-fullscreen {
    margin-left: 10px;
}

.game__caption-fullscreen-btn {
    padding: 0;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.game__caption-fullscreen-btn:hover {
    color: #000;
}

.game__caption-fullscreen-btn svg {
    transition: 0.15s ease-in-out;
}

.game__caption-fullscreen-btn:hover svg {
    transform: scale(1.1);
}

.game__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--purple-1);
    z-index: 100;
    border-radius: 16px;
    padding: 16px;
    color: #fff;
    display: flex;
    opacity: 1;
    visibility: visible;
    transition: 0.25s ease-in-out;
}

.game__overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.game__overlay-content {
    flex: 0 0 auto;
    width: 50%;
    padding-left: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    order: 1;
}

.game__overlay-content-inner {
    width: 100%;
}

.game__overlay-title {
    margin-bottom: 10px;
}

.game__overlay-title > * {
    margin: 0;
}

.game__overlay-text {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5em;
    max-height: 21em;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 1em;
}

.game__overlay-text::-webkit-scrollbar {
    background: transparent;
}

.game__overlay-text::-webkit-scrollbar-thumb {
    background: #fff;
}

.game__overlay-btn {
    position: relative;
    overflow: hidden;
}

.game__overlay-btn:after {
    content: '';
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    transform: translate3d(-50%, 0%, 0px);
    will-change: transform, opacity;
    pointer-events: none;
    opacity: 0;
    animation: 3s linear 9s infinite running shine;
    contain: strict;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0) 25%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 75%);
}

.game__video-wrapper {
    flex: 0 0 auto;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game__video-content {
    flex-grow: 1;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}

.game__video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.game__video-wrapper img {
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
    border-radius: 16px;
}

@supports(aspect-ratio: 16/9) {
    .game__frame-wrapper:before {
        display: none;
    }

    .game__frame-inner {
        position: static;
    }

    .game__frame-content {
        width: auto;
        height: auto;
    }

    .game__frame-wrapper iframe {
        border-radius: 0;
    }

    .game__video-content {
        width: auto;
        height: auto;
    }
}

html:-ms-fullscreen .game__frame-wrapper iframe {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999998;
}

html:-moz-full-screen .game__frame-wrapper iframe {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999998;
}

html:-webkit-full-screen .game__frame-wrapper iframe {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999998;
}

html:fullscreen .game__frame-wrapper iframe {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999998;
}

.blog {
    margin-bottom: 30px;
    margin-bottom: 30px;
    float: left;padding-top: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-item {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-bottom: 30px;
    width: 100%;
    background: #fff;
    border-radius: 15px;
}

.blog-item__image {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px 15px 0 0;
    position: relative;
    overflow: hidden;
}

.blog-item__image:before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.blog-item__image .lazy-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.blog-item__image img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.blog-item__content {
    padding: 15px;
}

.blog-item__title {
    margin: 0 0 10px;
}

.blog-item__text {
    margin-bottom: 10px;
}

.blog-item__date {
    font-size: 0.8em;
    color: var(--grey-3);
}

.home-header {
    text-align: center;
    margin-bottom: 40px;
}

.feedback-page {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-alert {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100001;
    background: rgb(247 247 247 / 95%);
    padding: 15px 0 25px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: 0.35s ease-in-out;
}

.cookie-alert.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-alert__inner {
    display: flex;
    align-items: center;
}

.cookie-alert__content {
    flex-grow: 1;
    min-width: 1px;
    font-size: 16px;
    line-height: 1.5;
}

.cookie-alert__footer {
    flex-shrink: 0;
    margin-left: 20px;
}

.cookie-alert__btn {

}

.content-404 {
    text-align: center;
    padding: 40px 0;
}

.content-404 h1 {
    font-size: 180px;
    line-height: 1;
    margin: 0 0 40px;
}

.content-404 p {
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 50px;
}