/*========== MODAL SEND FORM ==========*/
.box_send {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
}

.box_send_content {
    margin: auto;
    width: 100%;
    min-height: 100px;
    position: relative;
    padding: 150px 0;
    /*background: #fff;*/
    float: left;

    /*    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);*/
}

.send_error b {
    padding: 4px 10px 4px 10px;
    background: rgba(255, 255, 255, 0.6);
    color: #333;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
}

.send_error b:hover {
    background: #fff;
}

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

.box_send_success {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999;
    display: none;
}

/* ===== ERROR ===== */
.box_send_content_error {
    margin: auto;
    width: 100%;
    min-height: 50px;
    position: relative;
    padding: 0 40px;
    float: left;
}

.box_send_content_error i {
    color: #d12121;
    font-size: 5em;
    margin-bottom: 5px;
}

.box_send_content_error p {
    color: #fff;
    font-size: 1em;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.box_send_content_error p strong {
    color: #d12121;
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 700;
}


.close_modal_forma {
    width: 100%;
    margin-bottom: 5px;
    float: left;
}

.box_send_content_error b {
    float: right;
    padding: 12px 19px 12px 19px;
    background: #d12121;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;

    margin-right: 10%;
}

.box_send_content_error b:hover {
    background: #eb3838;
}


/* ===== SUCESSO ===== */
.box_send_content_success {
    margin: auto;
    width: 100%;
    position: relative;
    float: left;
    padding: 0 40px;
}

.box_send_content_success i {
    color: #ffff00;
    font-size: 5em;
    margin-bottom: 5px;
}

.box_send_content_success p {
    color: #fff;
    font-size: 1.1em;

    font-weight: 300;
}

.box_send_content_success p strong {
    color: #ff0;
    font-size: 1.8em;
    text-transform: uppercase;
    font-weight: bold;
}


.close_modal_forma {
    width: 100%;
    margin-bottom: 5px;
    float: left;
}

.box_send_content_success b {
    float: right;
    padding: 12px 19px 12px 19px;
    background: #d12121;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;

    margin-right: 10%;
}

.box_send_content_success b:hover {
    background: #eb3838;
}