/* Page Top
------------------------------------------------------------- */
.page-top {
    display: none;
    position: fixed;
    cursor: pointer;
    right: 50px;
    bottom: 40px;
    z-index: 99;
    width: 50px;
    height: 80px;
    transition: 0.6s ease-in-out;
    -webkit-transition: 0.6s ease-in-out;
    -moz-transition: 0.6s ease-in-out;
    -ms-transition: 0.6s ease-in-out;
    -o-transition: 0.6s ease-in-out;
}

.page-top svg path {
    transition: 0.6s ease-in-out;
    filter: drop-shadow(0 0 3px rgba(104, 131, 126, 0.3));
    -webkit-filter: drop-shadow(0 0 3px rgba(104, 131, 126, 0.3));
}

.page-top svg path:first-of-type {
    animation: house-move 1s infinite alternate;
    -webkit-animation: house-move 1s infinite alternate;
}

.page-top svg path:nth-of-type(2) {
    animation: house-roof-move 1s infinite alternate;
    -webkit-animation: house-roof-move 1s infinite alternate;
}

.footer-pages>li {
    padding-top: 35px;
}


#loader {
    background-color: rgba(55, 65, 81, 0.5);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    inset: 0;
    position: fixed;
    align-items: center;
    z-index: 3000;
}

.loader {
    -webkit-animation: spinner 1.5s linear infinite;
    animation: spinner 1.5s linear infinite;
    transition-timing-function: linear;
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    margin-bottom: 1rem;
    border: 5px solid #e5e7eb;
    border-top-color: #099573;
}

.loader-txt {
    text-align: center;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
}

.hiddenchk {
    display: none !important;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}