.overlayCalender {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 200ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99999;
}

.cancel {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: default;
}

.overlayCalender:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: calc((100vh - 700px)/2) auto;
    background: #fff;
    height: 90vh;
    position: relative;
    border-radius: 10px;
    max-width: 1000px;
    max-height: 700px;
    overflow: hidden;
}

.close {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 20px;
    right: 20px;
    opacity: 0.8;
    transition: all 200ms;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #666;
}

.content {
    height: 100%;
}

.calenderIframe {
    width: 100%;
    height: 100%;
    border: none;
}




@media (max-width: 1100px) {
    .popup {
        max-height: 90vh;
        margin: calc((100vh - 90vh)/2) 2.5vh;
    }
}