*{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif0;
}

.pop-up{
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 23;
    top: 0;
}

button{
    color: black;
    border: 0.1px solid black;
    border-radius: 2.5px;
    height: 21.3333px;
    cursor: pointer;
}

button[disabled]{
    cursor: not-allowed;
}

button.applied{
    background-color: rgb(0, 172, 0);
}

.img{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 22;
    cursor: grab;
}

.img.grabbed{
    cursor: grabbing;
}

.img.hidden{
    display: none;
}

.img.where{
    animation: ease-in-out 6s whereAnim;
    z-index: 999999999;
}

@keyframes whereAnim {
    0% {
        box-shadow: 0px 0px 15px 0px rgb(255, 92, 92);
    }25% {
        box-shadow: 0px 0px 20px 30px red;            
    }50% {
        box-shadow: 0px 0px 15px 0px rgb(255, 92, 92);  
    }75% {
        box-shadow: 0px 0px 20px 30px red;
    }100% {
        box-shadow: 0px 0px 0px 0px rgb(255, 92, 92);
    }
}

.img.mirrored{
    transform: scaleX(-1);
}



.video{
    height: 100%;
}