.drawing-holder{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
}
.drawing-holder>div{
    /* height: 90vh; */
    width: 120%;
    position: relative;
    max-width: 90vw;
}

.wrapper-holder{
    padding: 0;
}

.drawing-wrapper{
    /* position: absolute; */
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1.7/1;
}

.drawing-wrapper.active{
    display: flex;
}

.drawing-icon{
    display: flex;
    border-bottom: 2px solid #888;
    padding: 10px 10px;
    user-select: none;
    cursor: pointer;
}

.drawing-icon.active{
    background-color: #ffd117;
    cursor: auto;
}

.drawing-icon:not(.active):hover{
    background-color: #f78da7;
}

.drawing-icon > img{
    width: 60px;
}

.drawing-icon > span{
    font-size: 1.5rem;
    margin: auto;
}

#frame, #video{
    width: 100%!important;
    aspect-ratio: 1.7/1;
    overflow: hidden;
}

#steps{
    max-height: 100%;
    cursor: pointer;
}

.icon-holder{
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 992px) {
    #g-side{
        display: none!important;
    }
    .drawing-wrapper{
        
    }

    .icon-holder{
        display: flex;
        align-items: center;
        justify-content: space-around;
        height: 80px;
        flex-direction: row;

    }

    .drawing-icon{
        border-bottom: none;
    }
}


@media only screen and (max-width: 800px) {
    .drawing-icon{
        flex-grow: 1;
        justify-content: center;
    }
    .drawing-icon > span{
        display: none;
    }
}

.dark-cover{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    /* display: none; */
}

.img-pop-up{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    /* max-width: 800px;
    max-height: 800px;
    background-color: #fff; */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.img-pop-up > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    /*aspect-ratio: 1/1; */
}