#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
    margin: auto;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#cover-spin::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    margin: auto;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

#cover-spin::before {
    margin: -15px auto -65px auto;
    display: block;
}

.loading-text {
    width: 260px;
    position: absolute;
    top: calc(50% - 15px);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    color: #000;
    font-size: 16px;
    font-family: SCDream7, serif;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 5px;
}

.lds-ellipsis div {
    position: absolute;
    top: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 3px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 3px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 13px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 22.5px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(9.5px, 0);
    }
}

.bet-type-blue,
.bet-type-red {
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.bet-type-blue {
    background-image: linear-gradient(0deg, #004db6, #61c1ff);
}

.bet-type-red {
    background-image: linear-gradient(0deg, #b60000, #ff6161);
}

@media (max-width: 800px) {
    .bet-type-blue,
    .bet-type-red {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 12px;
    }
}

.bet-result {
    display: inline-block;
    padding: 2px 7px;
    color: #ffffff;
    border-radius: 5px;
    font-size: 12px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.spin {
    animation: -animation-spin 2s infinite linear;
}

@keyframes -animation-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-lock:before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 3 !important;
}

.btn-lock:after {
    content: "\f023" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    bottom: unset !important;
    transform: translate(-50%, -50%) !important;
    z-index: 4 !important;
    height: auto !important;
    font-family: var(--fa-style-family, "Font Awesome 6 Free") !important;
    font-weight: var(--fa-style, 900) !important;
    font-size: 50px !important;
    color: #ffffff !important;
    background: transparent !important;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
    box-shadow: 0 0 0 1000px white inset;
}