@charset "UTF-8";

/* ===================== Table Content Start ======================= 

Project Name 	:  Anasy Media 
File 			:  CSS Base
Version 		:  1.0.0
Created     	:  16/02/2021
Author 			:  Pentagon

======================== Table Content End ===================== */


/* back to top - start
================================================== */

#thetop {
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    position: absolute;
}

#backtotop {
    right: 15px;
    width: 50px;
    height: 50px;
    z-index: 999;
    bottom: 40px;
    display: none;
    position: fixed;
    border-radius: 100%;
    background-color: #A83624;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.15);
}

#scroll {
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 57px;
    text-align: center;
    position: relative;
    color: #ffffff;
}

#scroll i {
    margin: 0px auto;
}


/* back to top - end
/* preloader - start
================================================== */

.preloader {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    z-index: 99999;
    cursor: default;
    position: fixed;
    align-items: center;
    justify-content: center;
}

.preloader.loaded {
    visibility: hidden;
}

.preloader .animation_preloader {
    z-index: 10000;
}

.preloader .spinner {
    width: 9em;
    height: 9em;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 100%;
    animation: spinner 1s infinite linear;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-top-color: #A83624;
}

.preloader p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.preloader .loader {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    font-size: 0;
    position: fixed;
    pointer-events: none;
}

.preloader .loader_section {
    padding: 0px;
}

.preloader .bg {
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #A83624;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation_preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.preloader.loaded .loader_section .bg {
    width: 0;
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@media screen and (max-width: 767px) {
    .preloader .animation_preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .preloader .animation_preloader .spinner {
        height: 7em;
        width: 7em;
    }
}


/* preloader - end