/* general */


/* body:not(.logged-in) {
    cursor: none !important;
}

body:not(.logged-in) *:hover {
    cursor: none !important;
}


#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    user-select: none;
    pointer-events: none;
    opacity: 0;

}

body:not(.logged-in) #cursor.visible {
    opacity: 1;
}

#cursor svg {
    transform: translate(calc(-50% + -5px), calc(-50% + 20px));
    transition: all .2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#cursor svg path {
    transform: rotate(0deg);
    transition: all .2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

#cursor.on-hover svg path {
    transform: rotate(130deg);
}


#cursor svg circle {
    transition: all .2s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
}

#cursor.on-hover svg circle {
    opacity: .5;
} */


/* media query */
@media (max-width: 1199px) {}

@media (max-width: 1024px) {}

@media (max-width: 991px) {}

@media (max-width: 767px) {}

@media (max-width: 575px) {}


@media (min-width: 576px) {}

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1025px) {}

@media (min-width: 1200px) {}