
body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    background-color: var(--white-color);
    color: var(--black-color);
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.loader-first {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    transition: var(--transition-ease);
}

.loader-closed {
    transform: translateY(-100%);
}

.alert-warnning {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5em;
    font-weight: 700;
    color: #fff;
    background: #000;
    overflow: hidden;
}

.alert-warnning p {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 18px;
    transform: translate(-50%, -50%);
    color: #fff;
}