@font-face {
    font-display: swap;
    font-family: Google Sans;
    font-style: normal;
    font-weight: 500;
    src: url(https://inoutcdn.com/pwa-app/font/GoogleSans-Medium.ttf)
}

@font-face {
    font-display: swap;
    font-family: Google Sans;
    font-style: normal;
    font-weight: 400;
    src: url(https://inoutcdn.com/pwa-app/font/GoogleSans-Regular.ttf)
}

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

body,
html {
    background-color: #fff;
    font-family: Google Sans, sans-serif;
    -webkit-text-size-adjust: 100%;
}

.top-placeholder,
.topbar {
    height: 54px
}

.topbar {
    align-items: center;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 0 13px 0 20px;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 10
}

.topbar .topbar__left {
    height: 37px;
    width: 166px
}

.topbar .topbar__right {
    height: 36px;
    width: 114px
}

.topbar.active {
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .3)
}

.container {
    padding: 54px 22px 44px;
    width: 100%
}

/* State: INSTALL — show Install button */
.container[data-type=INSTALL] .install-btn__install {
    display: flex
}

/* State: DOWNLOADING — show downloading UI, shrink icon, show loading spinner */
.container[data-type=DOWNLOADING] .install-btn {
    opacity: .4
}

.container[data-type=DOWNLOADING] .install-btn__ing {
    display: flex
}

.container[data-type=DOWNLOADING] .header__icon--img {
    height: 34px;
    width: 34px
}

.container[data-type=DOWNLOADING] .header__icon--loading {
    opacity: 1;
    visibility: visible
}

/* State: DONE — show download complete indicator */
.container[data-type=DONE] .install-btn__done {
    display: flex
}

/* DONE state: green success appearance, clickable to re-download */
.container[data-type=DONE] .install-btn {
    cursor: pointer
}
.container[data-type=DONE] .install-btn__done {
    background: #1a7e3c;
    color: #fff;
    font-weight: 500
}

/* Hide company name during downloading/open, show progress instead */
.container[data-type=DOWNLOADING] .header__info-description,
.container[data-type=DONE] .header__info-description {
    display: none
}

.container[data-type=DOWNLOADING] .header__info-progress,
.container[data-type=DONE] .header__info-progress {
    display: block
}

.header {
    display: flex;
    margin-bottom: 28px
}

.header__icon {
    align-items: center;
    display: flex;
    height: 74px;
    justify-content: center;
    margin-right: 22px;
    position: relative;
    width: 74px;
    flex-shrink: 0;
}

.header__icon--img {
    border-radius: 20%;
    display: block;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: all .35s;
    width: 100%
}

.header__icon--loading {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 5
}

.header__icon--loading svg {
    animation: loading-rotate 2s linear infinite;
    color: #028760;
    display: block;
    height: 100%;
    width: 100%
}

.header__icon--loading svg circle {
    stroke: currentColor;
    stroke-width: 2px;
    stroke-linecap: round;
    animation: loading-circular 1.5s ease-in-out infinite
}

.header__info {
    flex: 1;
    overflow: hidden
}

.header__info-title {
    align-items: center;
    display: flex;
    margin-bottom: 2px;
    overflow-wrap: anywhere;
    word-break: keep-all;
    gap: 3px;
}

.header__info-title h1 {
    color: #111;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0
}

.header__info-title-tag-wrap {
    align-items: center;
    display: inline-flex;
    height: 31px;
    width: 20px
}

.header__info-title-tag {
    height: 20px;
    vertical-align: baseline;
    width: 20px
}

.header__info-description {
    color: #028760;
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    margin-bottom: 5px
}

.header__info-progress {
    color: #333;
    display: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 3px
}

.header__info-play {
    align-items: center;
    color: #333;
    display: flex;
    font-size: 10px;
    font-weight: 400;
    height: 14px
}

.header__info-play .ic_dun {
    margin-right: 4px;
    width: 10px
}

.info {
    display: flex;
    margin-bottom: 38px
}

.info__view {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.info__view:before {
    background: #ebebeb;
    bottom: 0;
    content: "";
    height: 24px;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: 0;
    width: 1px
}

.info__view:first-child:before {
    display: none
}

.info__view .ic_x {
    display: block;
    margin-left: 2px;
    width: 11px
}

.info__view-value {
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    align-items: center;
    display: flex;
    margin-bottom: 5px
}

.info__view-sui {
    align-items: center;
    display: flex;
    margin-bottom: 5px;
    border: 1px solid #020202;
    border-radius: 2px;
    color: #020202;
    font-size: 12px;
    font-weight: 700;
    height: 16px;
    justify-content: center;
    line-height: 14px;
    min-width: 17px;
    padding: 0 2px
}

.info__view-label {
    color: #606569;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px
}

.install-btn {
    background: #028760;
    border-radius: 8px;
    margin-bottom: 28px;
    overflow: hidden;
    position: relative;
    width: 100%;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.install-btn__view {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    height: 35px;
    line-height: 20px;
    width: 100%
}

.install-btn__ing,
.install-btn__view {
    align-items: center;
    display: none;
    justify-content: center
}

.install-btn__ing {
    flex-direction: column;
    padding: 8px
}

.install-btn__ing__rapid {
    align-items: center;
    color: #ffe336;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    justify-content: center;
    line-height: 21px
}

.install-btn__ing__rapid img {
    display: block;
    margin-right: 4px;
    width: 12px
}

.install-btn__ing__countdown {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px
}

.share-row {
    margin-bottom: 28px
}

.share-row,
.share-row__item {
    align-items: center;
    display: flex;
    justify-content: center
}

.share-row__item {
    margin-right: 27px
}

.share-row__item>img {
    height: 20px;
    margin-right: 10px;
    width: 17px
}

.share-row__item>div {
    color: #00a173;
    font-size: 14px;
    font-weight: 500
}

.img-scroll {
    margin-bottom: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%
}

.img-scroll::-webkit-scrollbar {
    display: none
}

.img-scroll__list {
    display: flex;
    flex-wrap: nowrap;
    height: 224px;
    width: fit-content
}

.img-scroll__view {
    border-radius: 8px;
    height: 224px;
    margin-right: 11px;
    overflow: hidden
}

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

.description {
    position: relative
}

.description__right-arrow {
    height: 15px;
    position: absolute;
    right: 0;
    top: 4px;
    width: 15px
}

.description__title {
    color: #202124;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 24px
}

.description__content {
    color: #666;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 19px;
    margin-bottom: 30px;
    overflow-wrap: break-word;
    white-space: break-spaces
}

.description__label {
    display: flex;
    flex-flow: wrap;
    margin-bottom: 15px
}

.description__label-item {
    align-items: center;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 15px;
    color: #5f6368;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    height: 30px;
    justify-content: center;
    margin: 0 11px 16px 0;
    padding: 0 12px;
    width: fit-content
}

.description__data-safety {
    border: 1px solid #dadce0;
    border-radius: 7px;
    padding: 24px 26px 8px;
    width: 100%
}

.description__data-safety__item {
    display: flex;
    margin-bottom: 16px
}

.description__data-safety__item .item-icon {
    align-items: center;
    display: flex;
    height: 18px;
    justify-content: center;
    margin-right: 22px;
    width: 15px
}

.description__data-safety__item .item-icon img {
    display: block
}

.description__data-safety__item .item-content {
    flex: 1;
    overflow: hidden;
    word-break: break-all
}

.description__data-safety__item .item-content p {
    color: #444;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px
}

/* Shiny button animation */
.shiny-btn:after {
    animation: shiny-btn-anim 5s ease-in-out infinite;
    background-color: #fff;
    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: -180px;
    width: 30px
}

@keyframes shiny-btn-anim {
    0% {
        opacity: 0;
        transform: scale(0) rotate(45deg)
    }
    80% {
        opacity: .5;
        transform: scale(0) rotate(45deg)
    }
    81% {
        opacity: 1;
        transform: scale(4) rotate(45deg)
    }
    to {
        opacity: 0;
        transform: scale(50) rotate(45deg)
    }
}

/* Footer */
.footer__section {
    padding-top: 15px
}

.footer__section-title {
    color: #5f6368;
    font-size: 14px;
    font-weight: 500;
    padding-top: 14px
}

.footer__section-item {
    color: #606468;
    font-size: 14px;
    padding-top: 14px
}

.footer__bottom {
    color: #606468;
    font-size: 13px;
    margin-top: 53px
}

.footer__bottom:last-of-type {
    margin-top: 33px
}

.flex {
    display: flex
}

.items-center {
    align-items: center
}

.mr-22 {
    margin-right: 22px
}

/* Bottom menu bar */
.menus,
.menus-placeholder {
    height: 86px
}

.menus {
    background-color: #fff;
    border-top: 1px solid #dadce0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    left: 0;
    padding-top: 8px;
    position: fixed;
    right: 0
}

.menus__item {
    align-items: center;
    display: flex;
    flex-direction: column
}

.menus__item>img {
    height: 20px;
    width: 21px
}

.menus__item>.title {
    color: #5f6368;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px
}

.menus__item.active>.title {
    color: #028760
}

/* Overlay layer: mask, dialogs */
#ks-layer {
    display: block !important
}

#ks-layer img {
    max-height: none;
    max-width: none
}

#ks-layer .animation-dialog {
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    opacity: 0;
    visibility: hidden
}

#ks-layer .animation-dialog.dialog-visible {
    animation-name: ks-fade-in
}

#ks-layer .animation-dialog.dialog-hidden {
    animation-duration: .15s;
    animation-name: ks-fade-out
}

#ks-layer .ks-mask {
    animation-duration: .35s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    background: rgba(0, 0, 0, .6);
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 1000
}

#ks-layer .ks-mask p {
    display: none;
    font-size: 0
}

#ks-layer .ks-mask-show {
    animation-name: ks-fade-in
}

#ks-layer .ks-mask-hide {
    animation-name: ks-fade-out
}

/* Back dialog (return key interception) — game-themed conversion card */
#ks-layer .ks-back-dialog {
    color: #fff;
    left: 0;
    margin: 0 auto;
    max-height: calc(100vh - 32px);
    opacity: 0;
    overflow: hidden auto;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    width: min(328px, calc(100vw - 28px));
    z-index: 1001;
    -webkit-overflow-scrolling: touch
}

#ks-layer .ks-game-dialog {
    background:
        radial-gradient(circle at 20% 0%, rgba(54, 255, 165, .24), transparent 35%),
        radial-gradient(circle at 92% 14%, rgba(255, 214, 74, .25), transparent 30%),
        linear-gradient(145deg, #121826 0%, #080d17 54%, #0c2017 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55), 0 0 0 1px rgba(6, 255, 155, .08) inset;
    padding: 16px;
}

#ks-layer .ks-game-dialog:before {
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 24px 24px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 72%);
    pointer-events: none;
    position: absolute
}

#ks-layer .ks-game-dialog > * {
    position: relative;
    z-index: 1
}

#ks-layer .ks-game-dialog .back__glow {
    border-radius: 999px;
    filter: blur(8px);
    opacity: .65;
    pointer-events: none;
    position: absolute;
    z-index: 0
}

#ks-layer .ks-game-dialog .back__glow--green {
    background: rgba(2, 255, 150, .32);
    height: 110px;
    left: -42px;
    top: 64px;
    width: 110px
}

#ks-layer .ks-game-dialog .back__glow--gold {
    background: rgba(255, 217, 79, .28);
    height: 130px;
    right: -48px;
    top: -34px;
    width: 130px
}

#ks-layer .ks-back-dialog .back__topline {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px
}

#ks-layer .ks-back-dialog .back__logo {
    background: rgba(255, 255, 255, .94);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
    height: auto;
    padding: 5px 8px;
    width: 126px
}

#ks-layer .ks-back-dialog .back__trust {
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2px;
    padding: 7px 8px;
    white-space: nowrap
}

#ks-layer .ks-back-dialog .back__hero {
    background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.045));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .25);
    overflow: hidden;
    padding: 12px;
    position: relative
}

#ks-layer .ks-back-dialog .back__hero:after {
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.16) 46%, transparent 68%);
    content: "";
    height: 160%;
    left: -90%;
    position: absolute;
    top: -30%;
    transform: rotate(10deg);
    width: 60%;
    animation: back-card-shine 3.2s ease-in-out infinite
}

#ks-layer .ks-back-dialog .back__app-card {
    align-items: center;
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1
}

#ks-layer .ks-back-dialog .back__icon {
    background: #0d1117;
    border: 2px solid rgba(255, 255, 255, .24);
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
    flex: 0 0 auto;
    height: 68px;
    object-fit: cover;
    width: 68px
}

#ks-layer .ks-back-dialog .back__info {
    flex: 1;
    min-width: 0
}

#ks-layer .ks-back-dialog .back__kicker {
    color: #7fffc1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 3px;
    text-transform: uppercase
}

#ks-layer .ks-back-dialog .back__info-title {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.3px;
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: keep-all
}

#ks-layer .ks-back-dialog .back__info-title img {
    height: 19px;
    margin-left: 5px;
    width: 19px
}

#ks-layer .ks-back-dialog .back__info-description {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    margin-top: 5px
}

#ks-layer .ks-back-dialog .back__chip-stack {
    bottom: -8px;
    height: 46px;
    pointer-events: none;
    position: absolute;
    right: 8px;
    width: 64px;
    z-index: 0
}

#ks-layer .ks-back-dialog .back__chip-stack span {
    background: linear-gradient(145deg, #ffd74a, #ff9d2e);
    border: 3px dashed rgba(80, 44, 0, .35);
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(0,0,0,.28);
    height: 34px;
    position: absolute;
    width: 34px
}

#ks-layer .ks-back-dialog .back__chip-stack span:nth-child(1) { right: 0; top: 8px; }
#ks-layer .ks-back-dialog .back__chip-stack span:nth-child(2) { right: 22px; top: 2px; transform: rotate(-16deg); }
#ks-layer .ks-back-dialog .back__chip-stack span:nth-child(3) { right: 12px; top: -10px; transform: rotate(12deg); }

#ks-layer .ks-back-dialog .back__title {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.4px;
    line-height: 1.13;
    margin: 14px 2px 12px;
    text-align: left
}

#ks-layer .ks-back-dialog .back__title span {
    color: #f8d64e;
    text-shadow: 0 0 18px rgba(248, 214, 78, .35)
}

#ks-layer .ks-back-dialog .back__game-strip {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 10px
}

#ks-layer .ks-back-dialog .back__game-card {
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    min-height: 62px;
    overflow: hidden;
    padding: 10px 8px 8px;
    position: relative
}

#ks-layer .ks-back-dialog .back__game-card:after {
    bottom: -14px;
    content: "";
    height: 42px;
    opacity: .35;
    position: absolute;
    right: -12px;
    transform: rotate(-20deg);
    width: 42px
}

#ks-layer .ks-back-dialog .back__game-card--mines { background: linear-gradient(145deg, #2d3758, #141a31); }
#ks-layer .ks-back-dialog .back__game-card--blitz { background: linear-gradient(145deg, #5c302d, #241118); }
#ks-layer .ks-back-dialog .back__game-card--live { background: linear-gradient(145deg, #1f6a4b, #10261d); }
#ks-layer .ks-back-dialog .back__game-card--mines:after { background: radial-gradient(circle, #9df7ff 0 35%, transparent 38%); }
#ks-layer .ks-back-dialog .back__game-card--blitz:after { background: radial-gradient(circle, #ffcf4a 0 35%, transparent 38%); }
#ks-layer .ks-back-dialog .back__game-card--live:after { background: radial-gradient(circle, #ff4b75 0 35%, transparent 38%); }

#ks-layer .ks-back-dialog .back__game-card b,
#ks-layer .ks-back-dialog .back__game-card span {
    display: block;
    position: relative;
    z-index: 1
}

#ks-layer .ks-back-dialog .back__game-card b {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1
}

#ks-layer .ks-back-dialog .back__game-card span {
    color: rgba(255, 255, 255, .74);
    font-size: 11px;
    font-weight: 800;
    margin-top: 7px
}

#ks-layer .ks-back-dialog .back__stats {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 10px;
    padding: 10px 2px
}

#ks-layer .ks-back-dialog .back__stats div {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    position: relative
}

#ks-layer .ks-back-dialog .back__stats div + div:before {
    background: rgba(255, 255, 255, .12);
    content: "";
    height: 28px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px
}

#ks-layer .ks-back-dialog .back__stats strong {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1
}

#ks-layer .ks-back-dialog .back__stats span {
    color: rgba(255,255,255,.58);
    font-size: 9px;
    font-weight: 700;
    margin-top: 4px;
    max-width: 86px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

#ks-layer .ks-back-dialog .back__detail {
    align-items: flex-start;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    display: flex;
    gap: 10px;
    padding: 11px 12px
}

#ks-layer .ks-back-dialog .back__detail-icon {
    align-items: center;
    background: linear-gradient(145deg, #fff0a6, #ffb331);
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(255, 184, 46, .22);
    display: flex;
    flex: 0 0 auto;
    font-size: 20px;
    height: 38px;
    justify-content: center;
    width: 38px
}

#ks-layer .ks-back-dialog .back__detail p {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.43;
    margin: 0
}

#ks-layer .ks-back-dialog .back__detail-introduction span,
#ks-layer .ks-back-dialog .back__detail-introduction i {
    color: #f8d64e;
    font-style: normal;
    font-weight: 800
}

#ks-layer .ks-back-dialog .back__btn {
    align-items: center;
    background: linear-gradient(135deg, #1ee889 0%, #028760 52%, #0fd17a 100%);
    border-radius: 17px;
    box-shadow: 0 14px 30px rgba(2, 135, 96, .36), 0 0 0 1px rgba(255,255,255,.2) inset;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: 900;
    height: 46px;
    justify-content: center;
    letter-spacing: .2px;
    margin-top: 13px;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    width: 100%
}

#ks-layer .ks-back-dialog .back__btn:after {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
    content: "";
    height: 100%;
    left: -45%;
    position: absolute;
    top: 0;
    transform: skewX(-18deg);
    width: 42%;
    animation: back-btn-shine 2.6s ease-in-out infinite
}

#ks-layer .ks-back-dialog .back__btn span {
    position: relative;
    z-index: 1
}

@keyframes back-card-shine {
    0%, 45% { left: -90%; }
    75%, 100% { left: 130%; }
}

@keyframes back-btn-shine {
    0%, 52% { left: -45%; }
    78%, 100% { left: 120%; }
}

@media (max-width: 340px), (max-height: 690px) {
    #ks-layer .ks-game-dialog { padding: 13px; }
    #ks-layer .ks-back-dialog .back__hero { padding: 10px; }
    #ks-layer .ks-back-dialog .back__title { font-size: 20px; margin: 11px 2px 10px; }
    #ks-layer .ks-back-dialog .back__game-card { min-height: 56px; padding: 8px 7px 7px; }
    #ks-layer .ks-back-dialog .back__stats { padding: 8px 2px; }
    #ks-layer .ks-back-dialog .back__detail { padding: 9px 10px; }
}

/* iOS APK dialog — tells user APK is Android only */
#ks-layer .ks-ios-apk-dialog {
    align-items: center;
    background-color: #fff;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    padding: 32px 28px 24px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    width: min(340px, calc(100vw - 32px));
    z-index: 1001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

#ks-layer .ks-ios-apk-dialog .ios-apk__icon-wrap {
    align-items: center;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    height: 64px;
    justify-content: center;
    margin-bottom: 18px;
    width: 64px;
}

#ks-layer .ks-ios-apk-dialog .ios-apk-icon {
    height: 36px;
    width: 36px;
}

#ks-layer .ks-ios-apk-dialog .ios-apk__title {
    color: #111;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

#ks-layer .ks-ios-apk-dialog .ios-apk__text {
    color: #555;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 22px;
    text-align: center;
}

#ks-layer .ks-ios-apk-dialog .ios-apk__btn {
    align-items: center;
    background: #028760;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: 600;
    height: 46px;
    justify-content: center;
    margin-bottom: 10px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
}

#ks-layer .ks-ios-apk-dialog .ios-apk__btn:active {
    opacity: 0.8;
}

#ks-layer .ks-ios-apk-dialog .ios-apk__close {
    color: #888;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#ks-layer .ks-ios-apk-dialog .ios-apk__close:active {
    opacity: 0.6;
}

/* Comments */
.comments {
    margin-top: 34px
}

.comments__title {
    color: #222;
    font-size: 19px;
    font-weight: 500
}

.comments__tips {
    color: #444;
    font-size: 13px;
    margin: 20px 0 10px
}

.comments__type {
    display: flex;
    flex-flow: wrap;
    margin: 40px 0 20px
}

.comments__type-item {
    align-items: center;
    border: 1px solid #dadce0;
    border-radius: 15.5px;
    color: #5f6368;
    display: flex;
    font-size: 13px;
    height: 31px;
    justify-content: center;
    margin: 0 10px 10px 0;
    padding: 0 15px;
    width: fit-content
}

.comments__type-item img {
    margin-right: 10px;
    width: 13px
}

.comments__type-active {
    background-color: #e6f3ef;
    border: 1px solid #e6f3ef;
    color: #028760
}

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

.comments__scoring-points {
    font-size: 58px;
    font-weight: 400
}

.comments__scoring-star {
    display: flex
}

.comments__scoring-people {
    color: #444;
    font-size: 12px;
    margin-top: 13px
}

.comments__scoring-content {
    flex: 1;
    margin-left: 10px;
    max-width: 180px
}

.comments__scoring-item {
    align-items: center;
    color: #444;
    display: flex;
    font-size: 11px;
    margin-bottom: 6.5px
}

.comments__br {
    background-color: #dadce0;
    height: .5px;
    margin: 40px 0 10px;
    width: 100%
}

.comments__list-item {
    margin: 30px 0
}

.comments__list-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px
}

.comments__list-avatar {
    border-radius: 50%;
    height: 32px;
    margin-right: 16px;
    object-fit: fill;
    width: 32px
}

.comments__list-name {
    color: #222;
    font-size: 14.5px;
    margin-right: auto
}

.comments__list-icon {
    height: 16px;
    width: 4px
}

.comments__list-stars span {
    color: #444;
    font-size: 12px;
    margin-left: 8px
}

.comments__list-detail {
    color: #444;
    font-size: 14px;
    margin-top: 10px;
    overflow-wrap: break-word;
    white-space: break-spaces
}

.progress {
    background-color: #e3e3e3;
    border-radius: 5px;
    flex: 1;
    height: 9px;
    margin-left: 14.5px;
    max-width: 166px;
    overflow: hidden;
    width: 100%
}

.progress-bar {
    border-radius: 5px;
    height: 100%;
    background: #028760;
}

/* Star images in comments */
.star {
    display: inline-block;
}

@keyframes ks-fade-in {
    0% {
        opacity: 0;
        visibility: hidden
    }
    to {
        opacity: 1;
        visibility: visible
    }
}

@keyframes ks-fade-out {
    0% {
        opacity: 1;
        visibility: visible
    }
    to {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes loading-rotate {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(1turn)
    }
}

@keyframes loading-circular {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40
    }
    to {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120
    }
}
