:root {
    --list-icon: "\f00c";
    --mxw: 1100px;
}

.hand {
    cursor: pointer;
}

a {
    text-decoration: none;
}

/* TEXT */
.text-tab {
    text-indent: 50px;
}

.text-sm {
    font-size: 0.801rem;
}

.font-light {
    font-family: "poppin-light", kanit-light;
}
.font-thin {
    font-family: "poppin-thin", kanit-thin;
}
/* Form */
::placeholder {
    color: #AAA !important;
    opacity: 1;
    font-style: italic;
}

.form-control:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: #ced4da;
    border: var(--bs-border-width) solid var(--bs-border-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: hsla(0, 0%, 0%, .5);
    opacity: 0;
    pointer-events: none;
    z-index: 15;
    transition: .5s ease;
}

/* Button */

.btn-custom-blue {
    appearance: button;
    background-color: #1899D6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 13px 19px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

.btn-custom-blue:after {
    background-clip: padding-box;
    background-color: #1CB0F6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    bottom: -4px;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.btn-custom-blue:main,
button:focus {
    user-select: auto;
}

.btn-custom-blue:hover:not(:disabled) {
    filter: brightness(1.1);
}

.btn-custom-blue:disabled {
    cursor: auto;
}

.btn-custom-blue:active:after {
    border-width: 0 0 0px;
}

.btn-custom-blue:active {
    padding-bottom: 10px;
}

.btn-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 12px;
    gap: 8px;
    height: 40px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.btn-custom i {}

.btn-custom .lable {
    line-height: 22px;
    font-size: 17px;
    font-family: sans-serif;
    letter-spacing: 1px;
}


@keyframes flickering {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    52% {
        opacity: 1;
    }

    54% {
        opacity: 0;
    }

    56% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    92% {
        opacity: 0;
    }

    94% {
        opacity: 1;
    }

    96% {
        opacity: 0;
    }

    98% {
        opacity: 1;
    }

    99% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}