.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modalContent {
    position: relative;
    margin: auto;
    width: 55%;
    animation-name: animateTop;
    animation-duration: 0.5s;

    background-color: #a2bcd7;
    padding: 1vh;
    border-radius: 3vh;
    text-align: center;
    
    height: fit-content;
    overflow: auto;
}

@keyframes animateTop {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}

.close {
    float: right;
    font-size: xx-large;
    font-weight: bold;
    transition: 0s none;
}

.close:hover, .close:focus {
    cursor: pointer;
    color:red;
}

.modalBody {
    overflow: auto;
}

.modalBody div {
    padding: 2vh, 0;
}

.leftShow {
    float: left;
    width: 25%;
    height: fit-content;
}

.leftHide {
    width: 0%;
    display: none;
}

#maidImage {
    width: 90%;
    margin: 5%;
}

/*for vertical screens*/
@media (max-width: 1000px) {
    .modalContent {
        width: 90%;
    }
}