/*====================================================*/
/*====================================================*/
/*=========== Preloader ============*/
.loader-54 {
    width: 80px;
    height: 80px;
    display: inline-block;
    position: relative;
    color: #9C361F;
    background-color: #fff;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    -webkit-animation: fill 2s linear infinite alternate;
            animation: fill 2s linear infinite alternate;
}
@-webkit-keyframes fill {
    0% {
        box-shadow: 0 0 inset;
    }
    100% {
        box-shadow: 0 -80px inset;
    }
}
@keyframes fill {
    0% {
        box-shadow: 0 0 inset;
    }
    100% {
        box-shadow: 0 -80px inset;
    }
}

.ctn-preloader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9000;
    overflow-x: hidden !important;
}
.ctn-preloader .animation-preloader {
    background: #112B36;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow-x: hidden !important;
}
.ctn-preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}
.ctn-preloader.loaded .animation-preloader {
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}