
.loader-overlay.show {
    transition: 1s;
    opacity: 1;
    z-index: 123;
    display: block;
}

.loader-overlay {
    z-index: -1;
    opacity: 0;
    position: fixed;
    content: '';
    width: 100%;
    height: 100%;
    background: #00000047;
    display: none;
    top: 0;
}

.loader-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #f57f20;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.go-top {
    position: fixed;
    right: 6.5%;
    bottom: 42px;
    border: 1px solid #c9c9c9;
    padding: 8px;
    cursor: pointer;
    color: #f57f20;
}


.as-menu__fix{
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 12px 10px 24px;
    position: relative;
    color: #343a40;
    -webkit-transition: .3s;
    transition: .3s;
}

.phone-ring__text{
    white-space: nowrap;
}