.cursor{
    cursor: pointer;
}
.uppercase{
    text-transform: uppercase;
}

.loader{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 95%);
}

.loader .title {
    position: absolute;
    width: 90%;
    font-size: 1.2em;
    left: 0;
    right: 0;
    top: 88px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;    
    justify-content: center;
    font-weight: 600;
}

.spinner,.spinner:after{
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.spinner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: transparent;
    border-top: 5px solid #c20000;
    border-right: 5px solid #c20000;
    border-bottom: 5px solid #c20000;
    border-left: 5px solid transparent;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: .8s;
    animation-name: spinner-loading
}

@keyframes spinner-loading{
    0% {
        transform: rotate(0deg)
    } to {
        transform: rotate(1turn)
    }
}

span.text-danger {
    position: absolute;
    color: #fe0a0a;
}

._recaptcha ._validate input {
    text-align: center;
    font-size: 1.1rem;
}

.swal2-title h6 {
    font-size: 0.852222em;
    color: #000000c9;
}

.swal2-html-container {
    height: fit-content;
    overflow: hidden !important;
}

.swal2-html-container p {
    font-size: 1.0625em;
}

.whatsapp-floating {
    position: fixed;
    right: 25px;
    bottom: 40px;
    z-index: 99;
    width: 50px;
    height: 50px;
    font-size: 36px;
    color: #FFF;
    background-color: #19f030;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.has-html5video .f-html, .has-youtube .f-html, .has-vimeo .f-html{
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    aspect-ratio: 16 / 9;
}

@media (max-width: 1024px) {
    
}

@media (max-width: 834px) {
    .whatsapp-floating {
        right: 20px;
        bottom: 110px;
    }    
}

@media (max-width: 575px) {
    .whatsapp-floating {
        bottom: 100px;
    } 
}


