:root {
    --alizarin-red: #e74c3c;
    --carrot-orange: #e67e22;
    --emerald-green: #2ecc71;
}

/** FLASH MESSAGE **/
#flash {
    position: fixed;
    width: 90%;
    z-index: 2000;
    bottom: 50px;
    left: 5%;
    box-shadow: var(--custom-box-shadow);
    border: none;
    border-radius: 0;
    font-size: 12pt;
    text-align: center;
}

#flash.alert-success {
    color: #fff;
    background-color: var(--emerald-green) !important;
    border-top: 1px solid var(--emerald-green);
}

#flash.alert-warning {
    color: #fff;
    background-color: var(--carrot-orange) !important;
    border-top: 1px solid var(--carrot-orange);
}

#flash.alert-danger {
    color: #fff;
    background-color: var(--alizarin-red) !important;
    border-top: 1px solid var(--alizarin-red);
}