.no-data {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.no-data img {
    display: block;
    width: 200px
}

.no-data p {
    margin-top: 10px;
    font-size: 16px;
    color: var(--font_color_2);
    text-align: center
}

.zoom-in-top-enter-active,
.zoom-in-top-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transition: transform .3s cubic-bezier(.23, 1, .32, 1), opacity .3s cubic-bezier(.23, 1, .32, 1);
    transform-origin: center top
}

.zoom-in-top-enter,
.zoom-in-top-leave-active {
    opacity: 0;
    transform: scaleY(0)
}

.zoom-in-left-enter-active,
.zoom-in-left-leave-active {
    opacity: 1;
    transform: scaleX(1);
    transition: transform .3s cubic-bezier(.23, 1, .32, 1), opacity .3s cubic-bezier(.23, 1, .32, 1);
    transform-origin: left
}

.zoom-in-left-enter,
.zoom-in-left-leave-active {
    opacity: 0;
    transform: scaleX(0)
}

.zoom-in-bottom-enter-active,
.zoom-in-bottom-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transition: transform .3s cubic-bezier(.23, 1, .32, 1), opacity .3s cubic-bezier(.23, 1, .32, 1);
    transform-origin: center bottom
}

.zoom-in-bottom-enter,
.zoom-in-bottom-leave-active {
    opacity: 0;
    transform: scaleY(0)
}

.game-progess-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--font_color_1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px
}

.game-progess-wrap .separate {
    margin: 0 5px
}

.game-progess-wrap .game-progress-bar {
    display: flex;
    width: 100px;
    height: 10px;
    border-radius: 6px;
    background: var(--sub_background_color)
}

.game-progess-wrap .game-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--important_font_color_1)
}

.zoom-in-top-enter-active,
.zoom-in-top-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transition: transform .3s cubic-bezier(.23, 1, .32, 1), opacity .3s cubic-bezier(.23, 1, .32, 1);
    transform-origin: center top
}

.zoom-in-top-enter,
.zoom-in-top-leave-active {
    opacity: 0;
    transform: scaleY(0)
}

.zoom-in-left-enter-active,
.zoom-in-left-leave-active {
    opacity: 1;
    transform: scaleX(1);
    transition: transform .3s cubic-bezier(.23, 1, .32, 1), opacity .3s cubic-bezier(.23, 1, .32, 1);
    transform-origin: left
}

.zoom-in-left-enter,
.zoom-in-left-leave-active {
    opacity: 0;
    transform: scaleX(0)
}

.zoom-in-bottom-enter-active,
.zoom-in-bottom-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transition: transform .3s cubic-bezier(.23, 1, .32, 1), opacity .3s cubic-bezier(.23, 1, .32, 1);
    transform-origin: center bottom
}

.zoom-in-bottom-enter,
.zoom-in-bottom-leave-active {
    opacity: 0;
    transform: scaleY(0)
}

.account-game-page {
    min-height: 400px;
    padding: 40px 0
}

.account-game-page .back-btn {
    margin-bottom: 20px;
    color: var(--font_color_1);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer
}

.account-game-page .back-btn>svg {
    width: 28.8px;
    height: 24px;
    fill: var(--theme_color_2)
}

.account-game-page .game-page-title {
    margin-bottom: 20px
}

.account-game-page .game-page-hot-title {
    color: var(--theme_color_2);
    background: linear-gradient(180deg, #fff 35.44%, #7d7d7d 61.71%, #fff 87.98%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--text_Wireframe_color_1);
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke-color: var(--text_Wireframe_color_1);
    margin: 17px 0 38px;
    text-align: center;
    font-size: 40px;
    font-weight: 400
}

.account-game-page .paginate-wrapper {
    margin-top: 20px
}

.account-game-page .search-game {
    margin-bottom: 20px;
    flex-shrink: 0;
    width: 100%
}

.account-game-page .search-form {
    position: relative
}

.account-game-page .search-input {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    border: 2px solid var(--sub_theme_color_1);
    background: var(--sub_background_color);
    padding: 0 90px 0 22px;
    color: var(--theme_color_2);
    box-shadow: none;
    font-size: 22px;
    font-weight: 400
}

.account-game-page .search-input:-ms-input-placeholder {
    color: var(--sub_theme_color_2)
}

.account-game-page .search-input::placeholder {
    color: var(--sub_theme_color_2)
}

.account-game-page .search-btn {
    display: block;
    position: absolute;
    flex-shrink: 0;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center
}

.account-game-page .search-btn>svg {
    width: 32px;
    height: 32px
}