video#eftvideo {
    pointer-events: all;
    width: 100%;
}
#btnbar {
    margin: 3rem;
}
.modal {
    position: fixed;
    opacity: 0;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: rgba(0,0,0,.75);
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    transition: opacity .5s;
}
.modal.open {
    opacity:1;
}
.modal button {
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: calc(100% - 50px);
    border: none;
    font-size: 30px;
    padding-bottom:4px;
    background-color: #c21212;
    color: #fff;
}
.modal .content {
    width: 100%;
    background-color: #fff;
    z-index: 101;
}
@media only screen and (min-width: 500px) {
    .modal .content {
        width: 540px;
    }
    .modal button {
        margin-bottom: -4px;
        margin-left: 570px;
    }
}
.eftform {
    margin: 1rem;
    padding: 2rem;
    z-index: 1000;
}
.eftform .question {
    font-size: 1.25rem;
    padding: 1rem 0;
}
.eftform .input {
    padding: 1rem 0;
}
.eftform input, .eftform select {
    width: 100%;
    padding: .5rem;
    font-size: 1rem;
}