@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
html{
    font-size: var(--fsize);
    /* background-image: var(--bg) !important; */
    background-image: url('../icon/bg_mobile.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}
:root{
    --fsmall8: .55rem;
    --fsmall7: .65rem;
    --fsmall6: .7rem;
    --fsmall5: .75rem;
    --fsmall4: .8rem;
    --fsmall3: .85rem;
    --fsmall2: .9rem;
    --fsmall1: .95rem;
    --fsmall: .975rem;
    --fsize: 13.75px;
    --fsize1: 1.05rem;
    --fsize2: 1.1rem;
    --fsize3: 1.15rem;
    --fsize4: 1.2rem;
    --fsize5: 1.25rem;
    --fsize6: 1.35rem;
    --h6: 1.5rem;
    --h5: 1.6rem;
    --h4: 1.75rem;
    --h3: 2rem;
    --h2: 2.5rem;
    --h1: 3rem;
    /* --shadow: 0px 5px 0px #0000004D; */
    --width-dev: 480px;
}
button:active{transform: scale(.99)}
button.absolute:active{transform: scale(.99) translateY(-50%)}
h1{font-size: var(--h1)!important}
h2{font-size: var(--h2)!important}
h3{font-size: var(--h3)!important}
h4{font-size: var(--h4)!important}
h5{font-size: var(--h5)!important}
h6{font-size: var(--h6)!important}
body{
    color: var(--c);
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    line-height: 1.25;
    padding-bottom: 3rem;
    min-height: 100vh;
}
b,.b{font-weight: 600}
img,svg{
    width: 100%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}
button.disabled,a.disabled{
    pointer-events: none;
    filter: grayscale(1);
    background-color: #818181;
    color: #FFF;
}
input{width:100%}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
input[type=number]{-moz-appearance: textfield}
.pb{position: relative}
.pb > img{
    position: absolute;
    height: 100%;
    object-fit: cover;
}
.bg{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.bg-abs{
    position: absolute;
    width: 100%;
    height: 100%;
}
.abs-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
a{display: block}
@media only screen and (min-width: 576px){
    html{
        background-image: url('../icon/bg.jpg');
    }
}
@media only screen and (max-width: 325px){
    :root{
        --fsize: 10px;
    }
}