﻿
.loading-area {
    background-color: black;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 10000;
}
.gooey {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 142px;
    height: 60px;
    margin: -20px 0 0 -71px;
    background: transparent;
    filter: contrast(20);
   

}

.dot {
    position: absolute ;
    width: 16px; 
    height: 16px;
    top: 12px;
    left: 15px;
    background: #000;
    border-radius: 50% ;
    transform: translateX(0);
    animation: dot 2.8s infinite;
}
.dots {
    transform: translateX(0); 
    margin-top: 12px ;
    margin-left: 31px ;
    animation: dots 2.8s infinite;
   
}
.dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #000;
    border-radius: 50%;
}
.load-text {
    font-family: Noto Sans Thai;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 30%;
    margin-top: 5%;
}

@keyframes dot {
    50% {
        transform: translateX(96px);
    }
}
@keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}
