/* ---------------------------------------------------------
modal-embed-video css
--------------------------------------------------------- */
button.sd-mod-video-trigger {
    border: 0;
	background: transparent;
}
.modal.is-open .modal-overlay {
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}
.modal.is-loading {
    display: none;
}
.modal-overlay,
.modal-container {
    will-change: transform;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    background: rgba(0, 0, 0, 0.8);
}
.modal-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.modal-container .modal-close {
    position: fixed;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 16px;
    height: 16px;
    right: 20px;
    top: 20px;
    z-index: 1;
    border: 0;
    cursor: pointer;
    background: transparent;
}
@media screen and (min-width: 641px) {
    .modal-container .modal-close {
        width: 32px;
        height: 32px;
        top: 30px;
        right: 30px;
    }
}
.modal-container .modal-close:hover,
.modal-container .modal-close:focus {
    opacity: 0.6;
}
.modal-container .modal-close img {
    width: 100%;
    height: auto;
}
.modal-content {
    padding: 0;
    width: 100%;
}
@media screen and (min-width: 641px) {
    .modal-content {
        padding: 40px;
        max-width: 1190px;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }
}
.modal-video-content {
    padding-top: 56.25%;
    width: 100%;
    position: relative;
}
.modal-video-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
