.button_box_exit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 40px;
    height: 40px;
    background: transparent;
    color: rgb(255, 255, 255);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 100%;
    font-size: 20px;
    cursor: grabbing;
    transition: 0.3s;
}

@media (hover: none) {
    .button_box_exit:not(:active) {
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 10);
        transform: translateY(-5%);
        color: rgb(0, 0, 0);
        cursor: grab;
        transition: 0.3s;
    }
}

@media (hover: hover) {
    .button_box_exit:hover {
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 10);
        transform: translateY(-5%);
        color: rgb(0, 0, 0);
        cursor: grab;
        transition: 0.3s;
    }
    .button_box_exit:active {
        box-shadow: none;
        transform: translateY(0%);
        color: rgb(255, 255, 255);
        cursor: grabbing;
        transition: 0.3s;
    }
}