﻿
/* ------------------------- Check Box ------------------------ */

a {
    cursor: pointer;
}
.checkbox-custom {
    opacity: 0;
    position: absolute;
}

.checkbox-custom, .checkbox-custom-label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
}

    .checkbox-custom + .checkbox-custom-label:before {
        content: '';
        border-radius: 5px;
        border: 1px solid #373737;
        display: inline-block;
        vertical-align: middle;
        width: 25px;
        height: 25px;
        padding: 2px;
        margin-right: 13px;
        text-align: center;
    }

    .checkbox-custom:checked + .checkbox-custom-label:before {
        content: "";
        display: inline-block;
        width: 10px;
        height: 20px;
        border: solid #fff;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        border-radius: 0px;
        margin: 0px 23px 5px 5px;
    }



.input-group, .form-select {
    margin: 0;
    margin-top: 15px;
}

/* ==================== Loader =========================*/
/*html {
    background-color: #222;
}*/
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .overlay.loaded {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.loader-wrapper {
    position: absolute;
    width: 400px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.loader {
    color: #eee;
    animation: rotate 3.33334s infinite linear;
    font-size: 200%;
    height: 1.5em;
    line-height: 0;
    top: 40%;
    left: 50%;
    position: relative;
    width: 1.5em;
    border: none;
}

.chat-bubble {
    color: #fff;
    position: relative;
    top: 40%;
    text-align: center;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.dot {
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    height: 0.25em;
    position: absolute;
    width: 0.25em;
    vertical-align: top;
}

    .dot::after {
        content: '';
        display: inline-block;
        background-color: currentColor;
        position: absolute;
    }

.dot1 {
    left: 0;
    top: 0;
}

    .dot1::after {
        animation: scaleH 1.66667s -1.2500025s infinite both linear;
        width: 1em;
        height: 1px;
        top: 0.125em;
        left: 0.25em;
    }

.dot2 {
    bottom: 0;
    left: 0;
}

    .dot2::after {
        animation: scaleV 1.66667s -1.2500025s infinite reverse both linear;
        width: 1px;
        height: 1em;
        bottom: 0.25em;
        left: 0.125em;
    }

.dot3 {
    bottom: 0;
    right: 0;
}

    .dot3::after {
        animation: scaleH 1.66667s -1.66667s infinite reverse both linear;
        width: 1em;
        height: 1px;
        bottom: 0.125em;
        right: 0.25em;
    }

.dot4 {
    top: 0;
    right: 0;
}

    .dot4::after {
        animation: scaleV 1.66667s -0.833335s infinite both linear;
        height: 1em;
        width: 1px;
        top: 0.25em;
        right: 0.125em;
    }

@keyframes scaleV {
    from {
        transform: scale(1, 0);
        transform-origin: 0% 0%;
    }

    12% {
        transform: scale(1, 1);
        transform-origin: 0% 0%;
    }

    13% {
        transform: scale(1, 1);
        transform-origin: 0% 100%;
    }

    25% {
        transform: scale(1, 0);
        transform-origin: 0% 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0% 100%;
    }
}

@keyframes scaleH {
    from {
        transform: scale(0, 1);
        transform-origin: 0% 0%;
    }

    12% {
        transform: scale(1, 1);
        transform-origin: 0% 0%;
    }

    13% {
        transform: scale(1, 1);
        transform-origin: 100% 0%;
    }

    25% {
        transform: scale(0, 1);
        transform-origin: 100% 0%;
    }

    100% {
        transform: scale(0, 1);
        transform-origin: 100% 0%;
    }
}

@keyframes pulse {
    from {
        transform: scale(0.1);
    }

    12.5% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.1);
    }
}

 