.modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal.video{
    background-color: rgba(255, 255, 255, 0.5);
}
.modal.video video{
    width: 100%;
    height: auto;
}
.modal-inside{
    max-width: 70%;
    margin: 10% auto 0;
    background-color: rgba(255, 255, 255, 1);
    height: 520px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}
.modal.video .modal-inside{
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    max-width: 1420px;
    height: 100%;
    margin: 0 auto;
} 
iframe#vimeo{
    width: 100%;
    height: 100%;
}
.modal-content{
    overflow: scroll;
    height: 100%;
}
.modal .close{
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 40px;
    height: 40px;
    top: 20px;
    right: -20px;
    background-image: url(../img/close.svg);
    background-size: cover;
    opacity: 1 !important;
}
.modal .close:hover{
    cursor: pointer;
}
@media only screen and (max-width:50em) {
    .modal-inside{
        max-width: 90%;
        height: 80vh;
        margin: 25px auto 0;
    }
}