.modalBook {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 170;
}

.modalBook .myform {
    position: relative;
    text-align: center;
    width: 770px;
    margin-left: 5%;
    margin-right: 5%;
    padding-left: 5%;
    padding-right: 5%;
    background: #F5F5F5 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    box-shadow: #7080af 0px 16px 24px 0px;
    box-shadow: rgba(112, 128, 175, 0.2) 0px 16px 24px 0px;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 300ms cubic-bezier(0.57, 0.21, 0.69, 1.25);
    transition: transform 300ms cubic-bezier(0.57, 0.21, 0.69, 1.25);
}

.modalBook .close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: transparent;
    z-index: 999;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.modalBook .close::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #7080af;
    -webkit-clip-path: polygon(0 10%, 10% 0, 50% 40%, 89% 0, 100% 10%, 60% 50%, 100% 90%, 90% 100%, 50% 60%, 10% 100%, 0 89%, 40% 50%);
    clip-path: polygon(0 10%, 10% 0, 50% 40%, 89% 0, 100% 10%, 60% 50%, 100% 90%, 90% 100%, 50% 60%, 10% 100%, 0 89%, 40% 50%);
    border-radius: 8px;
    pointer-events: none;
}

.modalBook.open {
    opacity: 1;
    visibility: visible;
}

.modalBook.open .myform {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.modal-title {
    text-align: center;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-variant-east-asian: normal;
    font-weight: bold;
    font-stretch: condensed;
    font-size: 220%;
    line-height: 100%;
    font-family: "Open Sans Condensed", sans-serif;
    letter-spacing: 0px;
    color: #333333;
    text-transform: uppercase;
    opacity: 1;
    margin-top: 20%;
    margin-bottom: 5% !important;
}
@media screen and (max-width: 680px) {
    .modal-title { font-size: 6.5vw; margin-bottom: 6% !important; width: 94%; margin-left: 3%; margin-top: 14% !important; }
    .modalBook .myform {
    position: relative;
    text-align: center;
    width: 770px;
    margin-left: 8%;
    margin-right: 8%;
    padding-left: 8%;
    padding-right: 8%;
    background: #F5F5F5 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    box-shadow: #7080af 0px 16px 24px 0px;
    box-shadow: rgba(112, 128, 175, 0.2) 0px 16px 24px 0px;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 300ms cubic-bezier(0.57, 0.21, 0.69, 1.25);
    transition: transform 300ms cubic-bezier(0.57, 0.21, 0.69, 1.25);
}
.modalBook .close {
    position: absolute;
    top: 0;
    right: 12px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: transparent;
    z-index: 999;
    padding: 10px;
    box-sizing: border-box;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.modalBook .close::before {
    content: "";
    position: absolute;
    inset: 10px;
    background-color: #7080af;
    -webkit-clip-path: polygon(0 10%, 10% 0, 50% 40%, 89% 0, 100% 10%, 60% 50%, 100% 90%, 90% 100%, 50% 60%, 10% 100%, 0 89%, 40% 50%);
    clip-path: polygon(0 10%, 10% 0, 50% 40%, 89% 0, 100% 10%, 60% 50%, 100% 90%, 90% 100%, 50% 60%, 10% 100%, 0 89%, 40% 50%);
    border-radius: 8px;
    pointer-events: none;
}
}