/*
 * Simple Modal Styles
 *
 * Author: Vanessa Coles
 * Description: Required styles for Simple Modal.
 --------------------------------------------------------- */

/* Default Modal Styles */

.modal-overlay {
    position: fixed;
    top: 0;
    width: 100%;
}
.modal {
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
}
.modal-overlay {
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    background: #eef0f596;
    z-index: 10;
}
.modal {
    display: none;
    left: 50%;
    padding: 25px;
    max-width: 550px;
    box-sizing: border-box;
    z-index: 999999;
    visibility: hidden;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o--transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: url(../images/modal_bg.png);
    background-size: 101% 100%;
    border-radius: 38px;
    background-position: -2px 0px;
}
.modal-content {
    /* background: #fff; */
}
.modal-title {
    margin: 0;
}

