/* <!-- PRELODER CSS --> */
.preloader {
    position: fixed;
    width: 100%;
    min-height: 101vh;
    z-index: 10000;
    background: #fff;
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.preloader .preload {
    position: relative;
    height: 9.375rem;
    width: 9.375rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

.preloader .preload::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    border: .25rem solid #fff;
    border-left-color: #BDEB90;
    height: 13rem;
    width: 13rem;
    border-radius: 100%;
    animation: 2s linear infinite spinning;
}

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

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


/* <!-- GOES TO TOP CSS --> */

.up-btn {
    z-index: 10;
    position: fixed;
    bottom: 44px;
    right: 44px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px;

    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.up-btn.btn-show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.up-btn:hover {
    background-color: #fff !important;
}

.up-btn .icon-wrapper {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.up-btn .icon-wrapper .btn-icon {
    width: 25px;
    height: 15px;
    cursor: pointer;
}

.up-btn .icon-wrapper .btn-icon path {
    cursor: pointer;
}