/*---------------------Roots-----------------*/

:root {
    ---green: #1BB46D;
    ---white: #ffffff;
    ---black: #1F1F5F;
    ---border: #e5e5e5;
    ---paragraph: #919191;
}

/*---------------------Roots-----------------*/

/* LOADER */
.loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(---white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    transition: transform 1s ease-in-out;
}

/* Slide up animation */
.loader.hide {
    transform: translateY(-100%);
}

/* LOGO */
.loader img {
    width: 180px;
    margin-bottom: 0px;
}

/* LOADING BAR */
.loading-bar {
    width: 300px;
    height: 10px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

/* Progress */
.loading-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1BB46D, #016D39);
    border-radius: 10px;
    transition: width 0.3s ease;
}


@media (max-width:420px) {
    .loading-bar {
    width: 250px;
    height: 10px;
}
}