@charset "UTF-8";
.modal-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-overlay.modal-overlay-visible{
    display: block;
}

.modal-container{
    display: none;
    position:fixed;
    top: 50%;
    left: 50%;
    z-index: 101;
    transform: translate(-50%, -50%);
    width: 55%;
    height: 55%;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 20px 15px 20px 0px rgb(255 255 255 / 20%);
    border-right: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    /* Let's add the overflow-y property */
    overflow-y: auto;
}

.modal-container-controls{
    position: absolute;
    right: 40px;
    top: 8px;
}

#modal-close-button{
    background-color: red;
    opacity: 0.7;
    color: white;
    border-radius: 25px;
    padding: 10px;
    border: 0px;
}

#modal-close-button:hover{
    opacity: 1;
    transform: translate3D(0,-1px,0) scale(1.03);
    cursor: pointer;
}

.modal-container.modal-container-visible{
    display: block;
}

#codemir {
    margin-top: 50px;
    margin-right: -5px;
}

.CodeMirror  {
    height: 85%;
    width: 100.1%;
/*    border: 1px solid #000000; */
}

