.tower-level-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.tower-level-option__text {
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
}
.tower-level-option__grid {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
}
.tower-level-option__grid-item {
    width: 32px;
    height: 32px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg_light_hover__100);
    border-radius: 4px;
}
.tower-level-option__grid-item img {
    height: 20px;
    width: auto;
    display: none;
}
@media screen and (max-width: 980px) {
    .tower-level-option__grid-item {
        width: 24px;
        height: 24px;
    }
    .tower-level-option__grid-item img {
        height: 16px;
    }
}
.tower-level-option__grid-item.emerald img.emerald,
.tower-level-option__grid-item.shield img.shield {
    display: block;
}
.tower__result {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    border-radius: var(--b-radius);
}
.tower__result_wrap {
    width: 265px;
    position: relative;
}
.tower__result_wrap .chevron {
    width: 100%;
    height: auto;
}
.tower__result-title {
    position: absolute;
    top: 29%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 22.816px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-shadow: 0px 2.5350883007px 0px rgba(0, 0, 0, 0.45) !important;
    color: #fff;
}
.tower__result-title.lose {
    color: #8fafc1;
}
.tower__result-text {
    position: absolute;
    top: 50.5%;
    left: 0;
    width: 100%;
    color: #ffb72d;
    text-align: center;
    text-shadow: 0px 1.4649480581px 0px rgba(0, 0, 0, 0.45) !important;
    font-size: 17.746px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.tower__result-text.lose {
    color: #e55353;
}
.tower__result-btn {
    border-radius: 4px;
    background: linear-gradient(90deg, #589925 0%, #7ec14a 100%);
    display: flex;
    padding: 8.09px 6.934px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 145px;
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%);
    color: #fff;
    text-align: center;
    font-size: 12.675px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.38px;
    z-index: 2;
    box-shadow: 0 4px #46781f !important;
    transition: 0.2s;
}
.tower__result-btn:hover {
    filter: brightness(1.1);
}
.chevron-enter-active,
.chevron-leave-active {
    transition: all 0.2s ease-in-out;
}
.chevron-enter-from,
.chevron-leave-to {
    opacity: 0;
    transform: scale(0.8);
}
.chevron-enter-to,
.chevron-leave-from {
    opacity: 1;
    transform: scale(1);
}
.tower__wrapper {
    position: relative;
    padding: 105px 0 37px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .tower__wrapper {
        padding: 0 12px 12px;
        background: url(assets/mobile-bg-3c210d1c.svg) no-repeat center bottom;
        background-size: 100% auto;
        border-radius: var(--b-radius);
        width: 100%;
    }
    html.dark .tower__wrapper,
    html[data-theme="dark"] .tower__wrapper {
        background: url(assets/mobile-bg-7e2c7301.svg) no-repeat center bottom, rgba(0, 0, 0, 0.2);
        background-size: 100% auto;
    }
}
.tower__hash {
    white-space: nowrap;
    margin-top: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 600;
    color: var(--color_secondary__100);
    max-width: 100%;
}
@media screen and (min-width: 767px) {
    .tower__main {
        background: radial-gradient(73.94% 48.11% at 50% 50%, rgba(244, 242, 255, 0.8) 50.67%, rgba(231, 226, 249, 0.8) 100%) !important;
    }
}
@media screen and (max-width: 767px) {
    .tower__main .game-field,
    .tower__main .tower__wrapper {
        padding: var(--padding);
    }
    .tower__main .game-field {
        padding-top: 0;
    }
}
html.dark .tower__main,
html[data-theme="dark"] .tower__main {
    background: #303541 !important;
}
.tower_sidebar-btns .v-btn-primary {
    gap: 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
    .tower_sidebar-btns {
        display: flex;
        order: -1;
    }
    .tower_sidebar-btns .v-btn-primary {
        width: 100%;
    }
}
