/* ================= */
/* ===== MODAL ===== */
/* ================= */
.container-box-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999;
    display: none;
}

.box-modal {
    margin: auto;
    width: 700px;
    position: relative;
    padding: 50px 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.modal-enviando {
    color: #fff;
    font-size: 1.4em;
    font-weight: 300;
}

/* ================== */
/* ===== SUCESS ===== */
/* ================== */
.container-box-modal-success {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 226, 52, 0.9);
    z-index: 999;
    display: none;
    text-align: center;
}

.box-modal-success {
    margin: auto;
    max-width: 576px;
    width: 100%;
    position: relative;
    padding: 0 40px;
}

.box-modal-success p {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.box-modal-success img {
    width: 100px;
    border: 4px solid #fff;
    padding: 10px;
    margin-bottom: 20px;

    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

/* ================= */
/* ===== ERROR ===== */
/* ================= */
.container-box-modal-error {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(207, 32, 32, 0.9);
    z-index: 999;
    display: none;
    text-align: center;
}

.box-modal-error {
    margin: auto;
    max-width: 576px;
    width: 100%;
    position: relative;
    padding: 0 40px;
    /* background-color: black; */
}

.box-modal-error p {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.box-modal-error img {
    width: 120px;
    margin-bottom: 20px;
}

/* ==================== */
/* ===== BTN CLOSE ==== */
/* ==================== */
.close-modal-form {
    position: absolute;
    top: 0;
    right: 10px;
    background: #850909;
    border: 1px solid #660101;
    padding: 12px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.close-modal-form img{
    margin: 0;
    width: 25px;
}


.close-modal-form:hover {
    background: #660101;
}