.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 101%;
    overflow: auto;
    z-index: 1;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 25, 76, 0.9);
    text-align: center;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blocker:before {
    content: "";
    display: none;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
}

.blocker.behind {
    background-color: transparent;
}

.modal {
    display: flex;
    flex-direction: column;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    max-width: 416px;
    width: 100%;
    border-radius: 0px !important;
    padding: 90px 60px 90px 45px;
    height: auto;
    background: #ececec;
    border-radius: 0;
    box-sizing: border-box;
    text-align: left;
    font-size: 12px;
    line-height: 20px;
    overflow: scroll;
    height: 400px;
}

.modal .contact {
    margin-bottom: 25px;
}

.modal .contact p {
    margin: 0px;
}

.modal .contact a {
    text-decoration: none;
    color: #00194c;
}

.modal .contact .name {
    font-weight: 600;
}

.modal a.close-modal {
    position: absolute;
    top: 18px;
    right: 20px;
    display: block;
    width: 16px;
    height: 16px;
    text-indent: -9999px;
    background: url('../images/cross.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 550px) and (max-width:767px) {
    .modal {
        height: auto;
    }
}