/* modal thong bao thieu diem */
.modal_no_point {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
}

.content {
    position: relative;
    width: 500px;
    background-color: white;
    margin: auto;
    margin-top: 8%;
    border-radius: 5px;
    overflow: hidden;
    animation: showAni ease-in 0.25s;
}

.icon_x {
    transform: translateY(-50%);
    position: absolute;
    cursor: pointer;
}

/* modal loadding */
.modal_load {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
}
.Spinner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    border: 5px solid #eee;
    display: inline-block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.Spinner:after,
.Spinner:before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.Spinner:after {
    position: absolute;
    top: -5px;
    left: -5px;
    border: 5px solid transparent;
    border-top-color: #928a8a;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
