.preloader {
    position: fixed;
    z-index: 99999;
    background-color: var(--layer-bg);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
}

.preloader.is-hide {
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
}

.preloader.is-none {
    display: none !important;
}

.preloader svg {
    display: block;
    width: 152px;
    height: 40px;
    max-width: 100%;
}
