.loader_games {
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
    z-index: 2010;
    position: absolute;
    top: 50%;
    left: 48.27%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}
.loader_games:before,
.loader_games:after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}

.loader_games:before {
    animation: ball1 1s infinite;
    background-color: #fff;
    box-shadow: 30px 0 0 #ff3d00;
    margin-bottom: 10px;
}

.loader_games:after {
    animation: ball2 1s infinite;
    background-color: #ff3d00;
    box-shadow: 30px 0 0 #fff;
}

@keyframes rotate {
    0% { transform: rotate(0deg) scale(0.8) }
    50% { transform: rotate(360deg) scale(1.2) }
    100% { transform: rotate(720deg) scale(0.8) }
}

@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 #ff3d00;
    }
    50% {
        box-shadow: 0 0 0 #ff3d00;
        margin-bottom: 0;
        transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 #ff3d00;
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 #fff;
    }
    50% {
        box-shadow: 0 0 0 #fff;
        margin-top: -20px;
        transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 #fff;
        margin-top: 0;
    }
}

.van-dialog__message--has-title {
    padding-top: 30px;
    color: #fff;
}

.van-dialog__header {
    color: #fff;
    padding-top: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    font-weight:bold;
}
.van-dialog {
    width: 320px;
    overflow: hidden;
    background: #333332;
    border-radius: 18px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    position: fixed;
    top: 45%;
    left:50%;
    right:50%;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2010;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 2000;
}
.overlay.show {
    opacity: 1;
    visibility: visible;
}
.overlay_loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 2000;
}
.overlay_loader.show {
    opacity: 1;
    visibility: visible;
}
.van-dialog.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}
.van-dialog__message {
    flex: 1;
    max-height: 200px;
    padding: 8px 16px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
    text-align: center;
    word-wrap: break-word;
    -webkit-overflow-scrolling: touch;
    color:#A8A5A1;
}

.van-dialog__footer {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.van-hairline, .van-hairline--top, .van-hairline--left, .van-hairline--right, .van-hairline--bottom, .van-hairline--surround, .van-hairline--top-bottom {
    position: relative;
}

.van-dialog__confirm {
 /*   flex: 1;
    height: 44px;
    margin: 0;*/
    border: 0;
    border-radius: 0;
    color: #fff;
    font-size: 0.4rem;
}

.van-button--large {
    width: 100%;
    height: 44px;
}
.van-hairline--left:after{
    border-left-width:0!important;
}
.van-button--default {
    background: linear-gradient(90deg, #fe7777 0%, #fff 100%);
    border: 1px solid #E21515;
}

.van-button {
   /* -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    height:48px;
    margin: 0;*/
    border: 0;
    border-radius: 0;
}
.van-dialog__cancel {
    color: #fff!important;
    background: #6F7381;
    font-size: 0.4rem;
}
input, button, textarea {
    color: inherit;
    font: inherit;
}

.van-button:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #fff;
    border: inherit;
    border-color: #fff;
    border-radius: inherit;
    transform: translate(-50%, -50%);
    opacity: 0;
    content: " ";
}

.van-button__content:before {
    content: " ";
}
body.no-scroll {
    overflow: hidden;
}