.media-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 1400;
    display: none;
    transition: background 600ms;
}

.media-overlay .images img{
    position: absolute;
    cursor: zoom-in;
}

.media-overlay .images img.hide-for-ocr{
    width: unset !important;
    height: unset !important;
    opacity: 0.3;
}

.ocr-holder button{
    border: navajowhite;
    padding: 5px 10px;
    background: red;
    color: white;
    position: relative;
    top: -30px;
}

.media-overlay .ocr{
    background: #d2280e;
    padding: 6px 6px 4px;
    color: white;
}

.media-overlay .menu{
    position: fixed;
    top: -100px;
    width: 100%;
    text-align: center;
    transition: 600ms all;
}

.media-overlay.is-opened .menu{
    top: 25px;
}

.media-overlay.is-opened{
    background: rgba(255, 255, 255, 0.8);
}

.ocr-holder{
    position: fixed;
}

.ocr-holder div{
    user-select: text;
    position: absolute;
    display: inline-block;
    transition: 600ms all;
    white-space: nowrap;
}

.ocr-holder div:hover{
    background: rgba(255, 0, 0, 0.5);
}