
/*** Default Cursor Settings ***/
.custom_cursor {
    position:fixed;
    top:50%;
    left:50%;
    pointer-events: none;
    transition: ease opacity .5s;
    opacity: 0;
}
.custom_cursor.show {
    opacity: 1;
}
.custom_cursor.hide {
    opacity: 0;
}
/*** ---------------------------- Different Cursor Styles ---------------------------- ***/
#cursor__circle {
    transition: ease opacity .5s, ease width .5s, ease height .5s, ease margin .5s, ease background-image .2s;
}

/*** Default Cursor ***/
#cursor__circle {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    background: black;
    border-radius: 50%;
    backface-visibility: hidden;
    z-index: 10000000000;
}

/*** Video Cursor ***/
#cursor__circle.video_cursor {
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    mix-blend-mode: normal;
    text-align: center;
}
#cursor__circle.video_cursor::after {
    content: 'Play Video';
    display: block;
    color: black;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    line-height: 1.2;
}

/*** Scroll Down Cursor ***/
#cursor__circle.scroll_down_cursor {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    text-align: center;
    background-image: none;
}


/*** General Button Cursor ***/
#cursor__circle.general_button_cursor {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    text-align: center;

    /*background-image: url('assets/altius8_right_arrow.svg');*/
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
}




html.is_mobile_device #cursor__circle {
    display: none !important;
}
@media(max-width: 991.98px) {
    #cursor__circle {
        display: none !important;
    }
}