/* EMAIL SEND CONDITION MESSAGE STYLING */
#email-sent,
#email-not-sent {
    display: none;
    width: 240px;
    height: 60px;

    position: fixed;
    bottom: 30px;
    left: 10px;
    z-index: 100;
    border-radius: 5px;

    justify-content: center;
    align-items: center;
    animation: fadeIn 5s;
    
    box-shadow: 3px 3px 30px 5px gray;
    opacity: 0;
}
#email-sent {
    background-color: darkgreen;
}
#email-not-sent {
    background-color: darkred;
    width: 280px;
}

#email-sent p,
#email-not-sent p {
    color: white;
    font-size: 18px;
}

#email-sending-condition-icon {
    font-size: 25px;
}