@import url("https://fonts.googleapis.com/css?family=Quicksand&display=swap");

.alert-header {
    font-family: Quicksand; 
}

.alert {
    width: 622px;
    padding: 30px;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 0 15px 5px #ccc;
    margin-bottom: 15px;
}

.close-alert {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.5;
    right: 10px;
    top: 10px;
    text-align: center;
    font-size: 1.6em;
    cursor: pointer;
    font-weight: bold;
    font-size: 30px;
}

.simple-alert {
    background-color: #ebebeb;
    border-left: 5px solid #6c6c6c;
}

.simple-alert .close-alert {
    border-color: #6c6c6c;
    color: #6c6c6c;
}

.success-alert {
    background-color: #a8f0c6;
    border-left: 5px solid #178344;
}

.success-alert .close-alert {
    border-color: #178344;
    color: #178344;
}

.danger-alert {
    background-color: #f7a7a3;
    border-left: 5px solid #8f130c;
}

.danger-alert .close-alert {
    border-color: #8f130c;
    color: #8f130c;
}

.warning-alert {
    background-color: #ffd48a;
    border-left: 5px solid #8a5700;
}

.warning-alert .close-alert {
    border-color: #8a5700;
    color: #8a5700;
}