:root{
    --magenta: #ff2ece;
    --magenta-light: #ff6adc;
    --magenta-dark: #d119a6;
    --purple: #b41e8e;
    --purple-eff: rgb(126, 33, 102);
    --flag-purple: #B51E8E;
    --wish-purple: #B266A2;
    /* color-scheme: light only; */
}
:focus-visible {
    outline: none;
}
html, body{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    background-image: url('../image/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
}
.btn-purple{
    color: white;
    border: 0;
    border-radius: 8px;
    background-color: var(--purple);
    transition: background-color 0.1s;
    padding: 0.1rem 1.5rem;
    font-size: 3dvh;
}
.btn-purple:hover, .btn-purple:focus, .btn-purple:active, .btn-purple:visited{
    background-color: var(--purple-eff);
}
.btn-purple.disable{
    color: white;
    background-color: gray;
}
.btn-purple.disable:hover, .btn-purple.disable:focus, .btn-purple.disable:active, .btn-purple.disable:visited{
    background-color: gray;
}
.all-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.loader-img{
    display: flex;
    justify-content: center;
    align-items: center;
}
.fb-cls-1 {
    font-family: "LKT", "Noto Sans Thai", Helvetica, Arial, sans-serif;
    fill: currentColor;
    font-size: 54px;
    font-weight: 700;
}

@media (min-width: 768px) { 
    /* .all-container{
        width: 80%;
    } */
 }


.pre-loader{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: black;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader {
    width: 52px;
    height: 52px;
    border: 3px solid #FFF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
} 
.loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: var(--magenta);
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}