/* == MODAL ==*/
:root {
    --font-min: .8em;
    --font-small: .875em;
    --font-normal: 1em;
    --font-medium: 1.2em;
    --font-large: 1.4em;
    --font-max: 2em;
    --color-default: #555;
    --color-green: #36BA9B;
    --color-blue: #39AED9;
    --color-yellow: #F5B946;
    --color-red: #D94352;
    --color-fsphp: #1D2025;
    --weight-light: 300;
    --weight-normal: 400;
    --weight-strong: 600;
    --weight-bold: 700;
    --weight-black: 900;
    --hover-color-green: #61DDBC;
    --hover-color-blue: #66D4F1;
    --hover-color-yellow: #FCD277;
    --hover-color-red: #F76C82;
    --hover-duration: 0.3s;
    --gradient-green: linear-gradient(to right, #42E695 0%, #3BB2B8 50%, #42E695 100%);
    --gradient-blue: linear-gradient(to right, #17EAD9 0%, #6078EA 50%, #17EAD9 100%);
    --gradient-red: linear-gradient(to right, #622744 0%, #C53364 50%, #622744 100%);
    --gradient-yellow: linear-gradient(to right, #FCE38A 0%, #F38181 50%, #FCE38A 100%);
    --radius-normal: 5px;
    --radius-medium: 10px;
    --radius-large: 20px;
    --radius-round: 50%;
    --index-back: -1;
    --index-fold: 2;
    --index-menu: 3;
    --index-modal: 999
}
.modal{
    color: #000 !important;
}
.modal-overlay {
    background-color: rgba(0, 0, 0, 0.7) !important;
    width: 100% !important;
    height: 100%;
    position: fixed !important;
    top: 0 !important;
    z-index: 11 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
.modal-overlay .modaledit {
    width: 90% !important;
    height: 90% !important;
    margin: 5vh auto !important;
    position: relative !important;
}
.modal-overlay .modaledit .close-modal {
    color: white !important;
    position: absolute !important;
    right: 10px !important;
    font-weight: bold !important;
    top: 10px !important;
    cursor: pointer !important;
    font-size: 1.2rem !important;
}

/* == MODAL ACTIVE ==*/
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pointer {
    cursor: pointer;
}

.modal-overlay iframe {
    width: 100%;
    height: 90%;
    position: absolute;
    top: 8%;
    border: none;
    border-radius: 10px;
}

.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: calc(var(--index-modal) * 2)
}

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #fff;
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5)
}

.ajax_load_box_circle {
    border: 16px solid #e3e3e3;
    border-top: 16px solid var(--hover-color-green);
    border-radius: 50%;
    margin: auto;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 1.2s linear infinite;
    -o-animation: spin 1.2s linear infinite;
    animation: spin 1.2s linear infinite
}

.ajax_load_box_title {
    margin-top: 15px;
    font-weight: var(--weight-strong)
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.modal-content {
    border: none;
}

.modal {
    background-color: white
}

.modal-content h1{
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

label {
    font-weight: 600;
    font-size: 0.9rem;
}
.form-group input{
    border: 1px solid #000e2b;
    border-radius: 10px;
    height: 58px;
    box-shadow: 2px 3px 3px rgb(0 0 0 / 10%);
}
.form-group input::placeholder {
    font-weight: 300;
    font-size: 0.75rem;
}

/**,body{*/
/*    border: 0px;*/
/*    margin: 0px;*/
/*    padding: 0px;*/
/*}*/

a.nav-link{
    color: var(--dark);
}

.zoom-in:hover {
    transform: scale(1.06)
}

.zoom-in a {
    text-decoration: none !important;
    color: #fff !important;
}

.backTop.zoom-in a {
    text-decoration: none;
}

.backTop {
    background-color: #2cb742;
    background-image: url("../imageswebp/icon-whatsapp-xs.webp");
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-position: 13px;
    background-repeat: no-repeat;
    position: fixed;
    bottom: 24px;
    right: 24px;
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    padding: 14px 13px 14px 50px;
    border-radius: 12px;
    z-index: 9999;
    transition: 300ms;
    text-decoration: none;

}

.backTop a:hover {
    text-decoration: none;
}

.backTop:hover {
    background-color: #239e36;
    text-decoration: none;
    color: #fff
}

@media (min-width: 320px) and (max-width: 480px) {
    .backTop {
        font-size: 10px;
    }
}