*:focus{
    outline: none !important;
}
body{
    overflow-x: hidden;
}
.loading{
    overflow: hidden;
}
/* PRELOADER */
.preloader{
    background-color: rgba(255,255,255,0.95);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    z-index: 99999999999999999999999999999999;
    font-family: var(--primary-font) !important;
    letter-spacing: 0.8px;
}
.preloader .loading-center{
    width: 100%;
    height: 100%;
    position: relative;
}
.preloader .loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 150px;
    width: 120px;
    margin-top: -75px;
    margin-left: -50px;
}
.preloader .loading-center-absolute p{
    margin-right: 20px;
    font-family: var(--primary-font) !important;
    letter-spacing: 0.8px;
    font-weight: 300;
    line-height: 40px;
}
.preloader .object{
    width: 20px;
    height: 20px;
    background-color: var(--secundary-color);
    float: left;
    margin-right: 20px;
    margin-top: 65px;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
}
.preloader .object_one {	
    -webkit-animation: object_one 1.5s infinite;
    animation: object_one 1.5s infinite;
}
.preloader .object_two {
    -webkit-animation: object_two 1.5s infinite;
    animation: object_two 1.5s infinite;
    -webkit-animation-delay: 0.25s; 
    animation-delay: 0.25s;
}
.preloader .object_three {
    -webkit-animation: object_three 1.5s infinite;
    animation: object_three 1.5s infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
@-webkit-keyframes object_one {
    75% { -webkit-transform: scale(0); }
}
@keyframes object_one {
    75% { 
        transform: scale(0);
        -webkit-transform: scale(0);
    }
}
@-webkit-keyframes object_two {
    75% { -webkit-transform: scale(0); }
}
@keyframes object_two {
    75% { 
        transform: scale(0);
        -webkit-transform:  scale(0);
    }
}
@-webkit-keyframes object_three {
    75% { -webkit-transform: scale(0); }
}
@keyframes object_three {
    75% { 
        transform: scale(0);
        -webkit-transform: scale(0);
    }
}
/* END PRELOADER */
/* SWEET ALERT CONF */
.swal2-popup {
    font-family: inherit;
    font-size: 15px !important;
}
.swal2-popup.swal2-toast {
    cursor: pointer;
    max-width: 400px;
}
.swal2-popup.swal2-toast .swal2-content{
    text-align: left;
    margin-left: 10px;
    word-wrap: anywhere;
}
/* END SWEET ALERT CONF */