#loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    z-index: 9999;
}

.hover:hover {
    cursor: pointer;
}

.none {
    display: none;
}

.v-center {
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

.v-bottom {
    top: 100%;
    position: relative;
    transform: translateY(-100%);
}

@media screen and (min-width: 1000px) {
    .web {
        display: block;
    }
    .mobile {
        display: none;
    }
}

@media (max-width: 1000px) {
    .web {
        display: none;
    }
    .mobile {
        display: block;
    }
}