.modal2Trigger {
    cursor: pointer;
}

.modal2ContentContainer {
    display: none;
}

.modal2Cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
}

.modal2 {
    position: relative;
    font-size: 16px;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

.modal2CloseButtonContainer {
    position: absolute;
    right: 3px;
    top: 0;
    font-size: 25px;
    text-align: right;
    z-index: 1;
}

.modal2CloseButtonContainer i {
    cursor: pointer;
    color: rgb(235, 0, 0);
}

.modal2Body {
    background-color: white;
    text-align: left;
    border: solid 1px rgba(0, 0, 0, 0.35);
    overflow: auto;
    max-width: 85vw;
    max-height: 85vh;
}

.modal2Body > iframe {
    margin: auto;
    min-width: calc(85vw - 2px);
    min-height: calc(85vh - 2px);
}