.upgrade-bouns-container {
    height: 630px;
    position: relative;
    width: 776px
}

.upgrade-bouns-container .svga-content.hide {
    visibility: hidden
}

.upgrade-bouns-container .svga-content {
    height: 100%;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    visibility: visible;
    width: 100%
}

.upgrade-bouns-container .mps-close {
    background: gray;
    border-radius: 100%;
    color: #00000080 !important;
    cursor: pointer;
    font-size: 30px;
    font-weight: 700;
    position: absolute;
    right: 164px;
    top: 66px;
    z-index: 1;
    z-index: 2
}

.upgrade-bouns-container .detail-content {
    height: 100%;
    width: 100%
}

.upgrade-bouns-container .detail-content h3 {
    color: #fff;
    font-family: NotoSansSC;
    font-size: 32px;
    font-weight: 700;
    position: absolute;
    text-align: center;
    text-shadow: 0 0 20px #ffc90080;
    top: 0;
    width: 100%
}

.upgrade-bouns-container .detail-content .upgrade-bouns-loop-content {
    animation-duration: .6s;
    animation-iteration-count: 1;
    animation-name: upgradeBounsFadein;
    position: absolute;
    text-align: center;
    top: 196px;
    width: 100%
}

.upgrade-bouns-container .detail-content .upgrade-bouns-loop-content .title {
    color: #b40000;
    font-family: NotoSansSC;
    font-size: 24px;
    font-weight: 500
}

.upgrade-bouns-container .detail-content .upgrade-bouns-loop-content .amount {
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-name: upgradeBounsAmount;
    color: #ffde86;
    font-family: NotoSans;
    font-size: 45px;
    font-style: italic;
    font-weight: 900;
    margin-top: 10px;
    text-shadow: 3px 4px 0 #c35d1e
}

.upgrade-bouns-container .detail-content .upgrade-bouns-loop-content .amount.fs10,
.upgrade-bouns-container .detail-content .upgrade-bouns-loop-content .amount.fs9 {
    font-size: 30px
}

.upgrade-bouns-container .detail-content .upgrade-bouns-loop-content .amount.fs7,
.upgrade-bouns-container .detail-content .upgrade-bouns-loop-content .amount.fs8 {
    font-size: 35px
}

.upgrade-bouns-container .detail-content .upgrade-bouns-loop-content .amount.fs5,
.upgrade-bouns-container .detail-content .upgrade-bouns-loop-content .amount.fs6 {
    font-size: 40px
}

.upgrade-bouns-container .detail-content .btn-bg.hide {
    visibility: hidden
}

.upgrade-bouns-container .detail-content .btn-bg {
    align-items: center;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 50px;
    display: flex;
    height: 57px;
    justify-content: center;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    visibility: visible;
    width: 215px
}

.upgrade-bouns-container .detail-content .btn-msg {
    color: #fff;
    font-family: NotoSansSC;
    font-size: 24px;
    font-weight: 500
}

.upgrade-bouns-container .detail-content .btn-mask {
    bottom: 0;
    cursor: pointer;
    height: 300px;
    left: calc(50% - 150px);
    position: absolute;
    width: 300px
}

.upgrade-bouns-container .flex-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center
}

@keyframes upgradeBounsFadein {
    0% {
        opacity: 0;
        transform: scale(.1)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes upgradeBounsAmount {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
    to {
        transform: scale(1)
    }
}