@import url('https://fonts.googleapis.com/css2?family=Anuphan:wght@300&display=swap');

::-webkit-scrollbar { /* make scrollbar transparent */
    width: 0px;
    background: transparent;
}

* {
    font-family: 'Anuphan', sans-serif;
}

body {
    /* background-color: #F0F3F4; */
    background-color: #000;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* .neon {
    color: #fff;
    text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 40px #FEDE00,
    0 0 80px #FEDE00,
    0 0 90px #FEDE00,
    0 0 100px #FEDE00,
    0 0 150px #FEDE00;
} */

.custom-btn {
    color: #fff;
    width: 130px;
    height: 40px;
    padding: 10px 25px;
    /* font-family: 'Lato', sans-serif; */
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

/* 11 */
.btn-11 {
    border: 1px solid #FFF;
    color: #FFF;
    box-shadow: 0 0 5px #FFF, 0 0 5px #FFF inset;
    transition: all 0.3s ease;
}

.btn-11:hover{
    text-shadow:
    0 0 20px #FFF,
    0 0 50px rgb(255,255,255),
    0 0 75px rgb(255,255,255),
    0 0 76px rgb(255,255,255),
    0 0 77px rgb(255,255,255),
    0 0 78px rgb(255,255,255),
    0 0 79px rgb(255,255,255),
    0 0 80px rgb(255,255,255),
    0 0 85px rgb(255,255,255),
    0 0 99px rgb(255,255,255);
}

.custom-radios div {
    display: inline-block;
}
.custom-radios input[type="radio"] {
    display: none;
}
.custom-radios input[type="radio"] + label {
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 14px;
}
.custom-radios input[type="radio"] + label span {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    line-height: 35px;
}
.custom-radios input[type="radio"] + label span img {
    opacity: 0;
    transition: all 0.3s ease;
}
/* 12 สีตัวเลือก */
.custom-radios input[type="radio"]#color-1 + label span {
    background-color: #fe0000;
}
.custom-radios input[type="radio"]#color-2 + label span {
    background-color: #03cc02;
}
.custom-radios input[type="radio"]#color-3 + label span {
    background-color: #3300fd;
}
.custom-radios input[type="radio"]#color-4 + label span {
    background-color: #fd67fe;
}
.custom-radios input[type="radio"]#color-5 + label span {
    background-color: #ffffff;
}
.custom-radios input[type="radio"]#color-6 + label span {
    background-color: #fffc0b;
}
.custom-radios input[type="radio"]#color-7 + label span {
    background-color: #4495eb;
}
.custom-radios input[type="radio"]#color-8 + label span {
    background-color: #f8e181;
}
.custom-radios input[type="radio"]#color-9 + label span {
    background-color: #9b01fc;
}
.custom-radios input[type="radio"]#color-10 + label span {
    background-color: #ff6501;
}
.custom-radios input[type="radio"]#color-11 + label span {
    background-color: #ccfe66;
}
.custom-radios input[type="radio"]#color-12 + label span {
    background-color: #0dfacb;
}
/* ********** */
.custom-radios input[type="radio"]:checked + label span img {
    opacity: 1;
}