[data-theme="light"] {
    --text: rgb(95, 99, 104);
    --title: rgb(32, 33, 36);
    --accent: #184ea6;
    --hover: #a9c7fd;
    --bg: #ffffff;
    --video-bg:#202124;
    --video-title:#fff;
    --border: rgb(218, 220, 224);
    --review-bg: rgb(248, 249, 250);
    --box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .2);
    --time: 250ms;
    --function-animation: ease-in-out;
    --font-family: Roboto, sans-serif;
}


[data-theme="dark"] {
    --text: #9a9a9a;
    --title: #dbdbdb;
    --accent: #a9c7fd;
    --hover: #184ea6;
    --bg: #202124;
    --video-bg:#202124;
    --video-title:#fff;
    --border: rgb(52, 52, 52);
    --review-bg: rgb(48, 48, 48);
    --box-shadow: 0 4px 5px 0 rgba(255, 255, 255, 0.14), 0 1px 10px 0 rgba(255, 255, 255, 0.12), 0 2px 4px -1px rgba(255, 255, 255, 0.2);
    --time: 250ms;
    --function-animation: ease-in-out;
    --font-family: Roboto, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text: #9a9a9a;
        --title: #dbdbdb;
        --accent: #a9c7fd;
        --hover: #184ea6;
        --bg: #202124;
        --video-bg:#202124;
        --video-title:#fff;
        --border: rgb(52, 52, 52);
        --review-bg: rgb(48, 48, 48);
        --box-shadow: 0 4px 5px 0 rgba(255, 255, 255, 0.14), 0 1px 10px 0 rgba(255, 255, 255, 0.12), 0 2px 4px -1px rgba(255, 255, 255, 0.2);
        --time: 250ms;
        --function-animation: ease-in-out;
        --font-family: Roboto, sans-serif;
    }
    [data-theme="light"] {
        --text: rgb(95, 99, 104);
        --title: rgb(32, 33, 36);
        --accent: #184ea6;
        --hover: #a9c7fd;
        --bg: #ffffff;
        --video-bg:#202124;
        --video-title:#fff;
        --border: rgb(218, 220, 224);
        --review-bg: rgb(248, 249, 250);
        --box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .2);
        --time: 250ms;
        --function-animation: ease-in-out;
        --font-family: Roboto, sans-serif;
    }
}
/*defauil*/
*,
::before,
::after {
    box-sizing: border-box;
}

html {
    font-family: var(--font-family);
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

.material-icons-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

.material-icons-outlined.sm {
    font-size: 14px;
}

.material-icons {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: "liga";
}

body {

    width: 100vw;
    min-height: 100vh;
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
    overflow-x: visible;
}

.body{
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

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

.container {
    width: 100vw;
    min-width: 320px;
    padding-left: 19px;
    padding-right: 19px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;

}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;

    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.container {
    margin: 0 auto;
    padding: 0 16px;
}

/*header*/
.header {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--bg);
}

.body.scroll .header {
    box-shadow: var(--box-shadow);
}

.header__container {
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-areas: 'logo nav opt';
    grid-auto-rows: 56px 48px;
}

.logo {
    grid-area: logo;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
    color: var(--text);
}

.header__options {
    grid-area: opt;
    display: flex;
    align-items: center;
    /*gap: 8px*/
}

.options__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    width: 48px;
    height: 48px;
    fill: var(--text);
}

.options_user {
    margin: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent);
}

.nav__list {
    grid-area: nav;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bg);
}

.nav__item {
    width: 100%;
    max-width: 112px;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    font-weight: 500;
    text-align: center;
    fill: var(--text);
}

.nav__item.active {
    fill: var(--accent);
    color: var(--accent);
}

.nav__item svg {
    display: none;
}

@media screen and (max-width: 900px) {
    .nav__list {
        position: fixed;
        border-top: 1px solid var(--border);
        padding: 8px 0;
        width: 100vw;
    }

    .nav__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav__item svg {
        display: inline-block;
    }
}

/*MAIN*/

.main {
    padding-top: 56px;
}

/*-----VIDEO BOX-----*/

.hero__video-box {
    display: none;
    position: absolute;
    left: 0;
    top: -10px;
    width: 100vw;
    height: 56.25vw;
}

.video__iframe {
    object-fit: cover;
    position: absolute;
    right: 0;
    width: 100%;
    height: 56.25vw;
}

.video__gradient {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%);
}


.video__btn {
    z-index: 1;
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    padding: 0 26px;
    border: 0;
    border-radius: 48px;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    min-width: 40px;
    text-transform: none;
    background-color: #0000008a;
    color: #fff;
    font-family: Google Sans, Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;

}
/*-------HERO-----------*/
.hero {
    padding-top: 48px;
    padding-bottom: 32px;
}

.hero__wrap {
    display: flex;
    gap: 24px;
}

.hero__wrap_scroll {
    display: none;
}

.hero__logo {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}
.hero__title-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero__title {
    color: var(--title);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
}
#topAapp, #topAapp2 {
    display: none;
}
.hero__developerName {
    margin-top: 4px;
    color: var(--accent);
}

.hero__options {
    font-size: 12px;
}

.hero__ads::after {
    content: '•';
    margin: 0 4px 0 6px;
}

.hero__features {
    /*height: 64px;*/
    margin: 16px 0 32px -16px;
    padding: 12px 0 12px 16px;
    width: 100vw;
    overflow-x: scroll;
    white-space: nowrap;
}

.features__item {
    position: relative;
    display: inline-block;
    padding: 0 16px;
}

.features__item:not(:first-child)::before {
    left: 0;
    position: absolute;
    top: calc(50% - 12px);
    content: "";
    display: block;
    height: 24px;
    width: 1px;
    background-color: var(--border);
}

.features__item--up, .features__item--down {
    display: flex;
    align-items: center;
    justify-content: center;

}

.features__item--up {
    height: 24px;
    color: var(--title);
    font-weight: 500;
}
.features__item--up > svg {
    fill: var(--title);
}

.features__item--up-age {
    padding: 1px 2px;
    border: .1px solid var(--title);
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
}

.hero__star {
    fill: var(--title);
}

.features__item--down {
    font-size: 12px;
    line-height: 1;
    height: 20px;
    fill: var(--text);
}

.hero__btn-box {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn__install {
    grid-area: btn-i;
    display: block;
    padding-top: 2px;
    margin-left: auto;
    margin-right: auto;
    min-width: 280px;
    width: 100%;
    height: 36px;
    background-color: var(--accent);
    font-size: 14px;
    font-family: "Google Sans";
    font-weight: 500;
    color: var(--bg);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    outline: 0;
}

.btn__extra-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn__share, .btn__wish {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    fill: var(--accent);
}

.btn__share {
}

.btn__wish {
}

.hero__device-box {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    fill: var(--text);
}

.device--desk {
    display: none;
}

/*-----GALLERY-----*/

.gallery__box {
    margin-top: 40px;
    overflow-x: scroll;
    white-space: nowrap;
}

.gallery__box::-webkit-scrollbar {
    width: 0;
}

.gallery__img {
    margin-right: 12px;
    display: inline-block;
    height: 204px;
    border-radius: 10px;
}

/*-----Description-----*/
.label__box {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    color: var(--title);
}

.btn__arrow {
    /*padding: 12px;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    fill: var(--text);
}

.description, #description, .update__box {
    margin-bottom: 24px;
}

#updated_on {
    margin-bottom: 4px;
    font-weight: 500;
    color: var(--title)
}

#tag_list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 12px;
    margin-bottom: 4px;
    margin-top: 28px;
}

#tag_list span {
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    font-weight: 500;
}

/*-----DATA SAFETY-----*/
.safety__list {
    border: 1px solid var(--border);
    border-radius: 25px;
    margin-top: 30px;
    padding: 20px;
    display: grid;
    gap: 20px;
}

.safety__item {
    display: flex;
    gap: 20px;
    fill: var(--text)
}

.safety__info {
    font-size: 12px;
}

#see_details {
    color: var(--accent);
}


/*REVIEWS FORM*/
.reviews-form__label {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--title);
}

.reviews-form__cta {
    margin-bottom: 20px;
    font-size: 12px;
}

.reviews-form__stars {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars__btn {
    font-size: 40px;
    line-height: 1;
    color: var(--border);
}

.reviews-form__btn {
    padding: 0 32px;
    margin: 20px 0 32px;
    width: auto;
    min-width: auto;
}

/*-----REVIEWS-----*/
.reviews-verified__box {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    fill: var(--text);
}

.reviews_devices {
    margin-bottom: 36px;
    display: flex;
    gap: 12px;
}

.devices__item {
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 32px;
    font-weight: 500;
    color: var(--text);
    fill: var(--text);
}

.devices__item.accent {
    border: none;
    color: var(--accent);
    fill: var(--accent);
    background-color: var(--hover);
}

.rating-all__box {
    margin-bottom: 32px;
    display: flex;
    gap: 24px;
}

.reviews__rating {
    color: var(--title);
    font-family: "Google Sans Display", Roboto, Arial, sans-serif;
    line-height: 4rem;
    font-size: 3.5rem;
}

.stars__list {
    display: inline-block;
    fill: var(--accent)
}

.star-box {
    display: inline-block;
    color: inherit;
    width: 14px;
    height: 16px;
}

.star-true {
    color: var(--accent);
    fill: var(--accent);
    stop-color: var(--accent)
}

.star-false {
    color: var(--border);
    fill: var(--border);
    stop-color: var(--border);
}

.reviews__count-box {
    font-size: 12px;
    margin-top: 8px;
}

.reviews__rate-box {
    flex: 1;
}

.review-line {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    width: 100%;
}

.review-line__number {
    font-family: Roboto, Arial, sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    padding-right: 16px;
}

.review-line__active, .review-line__full {
    flex: 1;
    border-radius: 9999px;
    background-color: var(--border);
    height: 10px;
}

.review-line__active {
    background-color: var(--accent);
}

.review__box1 {
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 32px 1fr 48px;
    align-items: center;
    gap: 16px;
}

.reviews__list {
    display: grid;
    gap: 32px;
}

.review__img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.review__more-btn {
    height: 48px;
    padding: 12px;
    fill: var(--text);
}

.review__box2 {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review__stars {
    font-size: 10px;
    color: var(--border);
}

.stars__list[data-rating="1"] .stars__item:nth-child(1),
.stars__list[data-rating="2"] .stars__item:nth-child(-n+2),
.stars__list[data-rating="3"] .stars__item:nth-child(-n+3),
.stars__list[data-rating="4"] .stars__item:nth-child(-n+4),
.stars__list[data-rating="5"] .stars__item:nth-child(-n+5) {
    color: var(--accent);
}

.review__date {
    font-size: 12px;
}

.review__text {
    margin-bottom: 16px;
    letter-spacing: 0.2px;
}

.review__likes {
    margin-bottom: 12px;
    font-size: 12px;
}

.reviews__box3 {
    display: flex;
    align-items: center;
    gap: 24px;
}

.is-helpful {
    font-size: 12px;
}

.yes-no__box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.yes-no__btn.active, .yes-no__btn.active {
    background-color: var(--hover);
    color: var(--accent);
}
.yes-no__btn {
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.yes-no__btn.active {
    color: var(--accent);
    background-color: var(--hover);
    border: none;
}

.reviews__box-answer {
    display: grid;
    align-items: center;
    margin: 24px 24px 0;
    padding: 12px 16px 16px;
    grid-row-gap: 12px;
    background-color: var(--review-bg);
}

.box-answer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-answer__dev {
    color: var(--title);
}

#btn_all_reviews {
    margin-top: 32px;
    padding-bottom: 14px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: var(--accent);
}

#btn_all_reviews:hover {
    color: var(--hover);
}

/*-----SUPPORT----*/
.support__list {
    display: grid;
    gap: 24px;
    color: var(--title);
    fill: var(--text);
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    font-weight: 500;
    overflow: hidden;
}

.support__list.is-hidden {
    height: 0;
}
#btn_support_toggle {
    transform: rotate(180deg)
}
#btn_support_toggle.is-hidden {
    transform: rotate(0deg);
}
.support__item {
    display: flex;
    gap: 16px;
}

.support__item svg {
    margin-top: -4px;
}

.email-contact {
    color: var(--text);
    font-family: Roboto, Arial, sans-serif;
    font-weight: 4000;
}


/*similar games*/
.games__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.games__item {
    border-radius: 12px;
    padding: 12px;
    display: grid;
    grid-template-columns: max-content auto;
    gap: 16px;
    overflow: hidden;
}

.games__item:hover, .games__item:focus {
    background-color: var(--border);
}

.games__box {
    overflow: hidden;
}

.games__img {
    border-radius: 12px;
    width: 56px;
    height: 56px;
    box-shadow: var(--box-shadow);
}

.games__name {
    color: var(--title);
    white-space: nowrap;
}

.games__dev, .games__rate {
    color: var(--text);
    font-size: 12px;
    white-space: nowrap;
}

/*FOOTER*/

.footer-container {
    padding-bottom: 72px;
}
.flag__box {
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text);
    fill: var(--text);
}

.footer__line {
    margin: 36px 0;
    width: 100%;
    height: 1px;
    background-color: var(--border);
}

.footer__nav-list {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    /*gap: 14px;*/

}

.footer__nav-list a {
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    color: var(--text);
    line-height: 32px;
}

.footer__nav-list a:first-child {
    font-weight: 500;
}


/*MODAL*/
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(32, 33, 36, .6);;
    z-index: 1000;
    /*display: none;*/
}
.backdrop.is-hidden {
    display: none;
}
.modal__box {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    height: calc(100vh - 32px);
    max-height: 720px;
    max-width: 720px;
    width: calc(100vw - 32px);
    overflow: hidden;
    background-color: var(--bg);
    @media screen and (min-width: 600px) {
        width: calc(100vw - 96px);
    }
}
.modal__header {
    padding: 24px 32px;
    display: grid;
    grid-template-areas: 'm-icon m-title m-close'
                            'm-icon m-section .';
    grid-template-columns: 64px 1fr 24px;
}
.modal__icon {
    width: 48px;
    height: 48px;
}
.modal__title {
    font-size: 22px;
    color: var(--title)
}
.modal__section {
    line-height: 28px;
}
.btn__close { fill: var(--text)}
.modal__body {
    margin: 0 32px;
    overflow-y: scroll;
    display: grid;
    grid-template-rows: 1fr 214px;
}
.modal__footer {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.modal__footer-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: calc(50% - 24px);
}
.modal__footer-item span:first-child{
    color: var(--title);
}

.modal-review__phone-box {
    margin: 16px 0 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    fill: var(--text);
}
#rate_this_app_for_phone {
    flex: 1;
    font-size: 18px;
}
#change {color: var(--accent)}
.modal-starts__wrap {
    margin: 0 auto;
    position: relative;
    font-size: 40px;
    display: inline-block;
    height: 40px;
    width: 100%;
}

.modal-starts__wrap::before {
    width: 100%;
}

.modal-stars__list {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: 100%;
}

.modal-stars__list input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.modal-stars__list label {
    position: relative;
    flex: 0 0 20%;
    height: 100%;
    cursor: pointer;
    text-align: center;
    color:var(--border);
    height: 48px;
    width: 100%;

}

.modal-stars__list label::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: " ★ ";
    display: block;
    transition: color 250ms ease 0s;
    height: 48px;
    /*color: transparent;*/
}

.modal-stars__list label:hover,
.modal-stars__list label:hover~label,
.modal-stars__list input:checked+label,
.modal-stars__list input:checked+label~label {
    color: var(--accent)
}

.reviews-form__textarea {
    margin-top: 25px;
    padding: 16px;
    display: block;
    width: 100%;
    height: 80px;
    font-size: 14px;
    color: var(--text);
    background-color: var(--bg);
    border: 1px solid var(--border);
}
.modal-review__comment {
    margin-top: 40px;
    line-height: 1.5;
}

#add-review .modal__body {
    display: block;
    flex: 1;
}
.modal__footer-review {
    border-top: 1px solid var(--border);
    padding: 24px 32px;
}
.modal__footer-review #btn_submit {
    padding: 8px 60px;
    margin-right: 0;
    min-width: auto;
    width: auto;
}

.modal__reviews-list .reviews__item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

/*SPECIAL STYLES*/
.no-header .header__container {
    display: none;
    pointer-events: none;
}

.with-fixingInstallButton .btn__install_scroll {
    /*display: none;*/
    margin-top: 5px ;
    min-width: 183px;
}

.with-fixingInstallButton .hero {
    padding-top: 22px;
}
.with-fixingInstallButton .hero__title_scroll {
    color: var(--title) !important;
}

.with-fixingInstallButton .hero__wrap_scroll {
    padding: 48px 16px 16px;
    position: sticky !important;
    top: 30px;
    z-index: 8;
    background-color: var(--bg);
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

.no-userLogo .options_user {
    display: none
}

.no-header .main {
    padding-top: 0;
}

.no-menu .nav__list {
    display: none
}

.no-choice .features__item--choice {
    display: none
}

.no-ads .hero__ads {
    display: none
}

.no-pur .hero__pur {
    display: none
}

.no-reviews .reviews__sections {
    display: none;
}
.no-similarGames .similar-games {
    display: none;
}

.with-video .hero {
    position: relative;
    padding-top: calc(56.25vw - 40px);
    background-color: var(--video-bg);
}
.with-video .hero__video-box {
    display: block;
}
.with-video .hero__wrap {
    position: relative;
    z-index: 2;
}
.with-video .hero__title, .with-video .features__item--up, .with-video .hero__options {
    color: var(--video-title);

}
.with-video .features__item--up > svg {
    fill: var(--video-title);
}
.with-video .features__item--up-age {
    color: var(--video-title);
    border-color: var(--video-title);
}
.top #topAapp {
    display: inline-block;
}
.top #topAapp2 {
    display: inline-block;
}



/*-----PRELOADERS-----*/
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg);
    height: 32px;
    width: auto;
}

.btn__install {
    position: relative;
    overflow: hidden;
}
.isLoad::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hover);
    opacity: 0.5;
    transform: translateX(100%);
    animation: btn-load var(--animation-duration, 1s)  linear;
    /*animation-timing-function: linear;*/
}
@keyframes btn-load {
    from {
        transform: translateX(0);
    } to {
          transform: translateX(100%);
      }
}
/*-----SPINNER-----*/
/*spin1*/
.lds-ring,
.lds-ring div {
    box-sizing: border-box;
}
.lds-ring {
    display: inline-block;
    /*position: absolute;*/
    width: 32px;
    height: 32px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    /*margin: 8px;*/
    border: 3px solid currentColor;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: currentColor transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*spin2*/

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
    box-sizing: border-box;
}
.lds-spinner {
    color: currentColor;
    display: inline-block;
    position: absolute;
    width: 32px;
    height: 32px;
}
.lds-spinner div {
    transform-origin: 16px 16px; /* Уменьшено до 16px */
    animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 1.4px;           /* Уменьшено пропорционально */
    left: 14.7px;         /* Уменьшено пропорционально */
    width: 2.6px;         /* Уменьшено пропорционально */
    height: 7px;          /* Уменьшено пропорционально */
    border-radius: 20%;
    background: currentColor;
}
.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* image carousel*/

.splide__slide img {
    width: 100%;
    height: auto;
}

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

#image-modal .modal__header {
    padding: 6px 12px;
}

#image-modal .modal__body {
    display: flex;
    align-items: center;
    margin: 0 12px;
}
