/*
---------------------------------------------
Modal Style
---------------------------------------------
*/

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%!important;
    aspect-ratio: 16 / 9;
    padding: 0;
	background-color: rgba(0, 0, 0, 0.0);
}

.close-btn {
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 10px;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    text-decoration: none;
    cursor: grab;
}

.close-btn:active {
	cursor: grabbing;
}

.close-btn-primary-color {
    color: var(--primary-color);
}

.close-btn-primary-color:hover,
.close-btn-primary-color:focus {
    color: var(--secondary-color);
}

.close-btn-white{
    color: var(--white-color);
}

.close-btn-white:hover,
.close-btn-white:focus {
   color: var(--primary-color);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
	border-radius:10px;

}

#fullSizeMailModal .modal-content{
    height:auto;
    aspect-ratio:auto;
}

.modal-header{
    justify-content: center!important;
}
.modal-body p{
    text-align:center;
}