.tigid-preloader{
    position: fixed;
    z-index: 5000;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    left: 0px;
    top: 0px;
    opacity: 1;
    transition: opacity 1.5s;
}

.tigid-preloader.hidden{
    opacity: 0;
}

.tigid-preloader__logo{
    position: absolute;
    width: 240px;
    height: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../../../img/PRELOADER.svg?1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.2s;
    /* mix-blend-mode: difference; */
}

.tigid-preloader__bar{
    position: absolute;
    width: 0px;
    height: 0px;
    background-color: var(--color-bg-invert);
    transition: all 0.1s;
}

.tigid-preloader__bar.vertical{
    width: 1px;
    height: 0px;
}
.tigid-preloader__bar.horizontal{
    width: 0px;
    height: 1px;
}
.tigid-preloader__bar.left{
    left:0px;
}
.tigid-preloader__bar.right{
    right:0px;
}
.tigid-preloader__bar.top{
    top:0px;
}
.tigid-preloader__bar.bottom{
    bottom:0px;
}