@charset "UTF-8";
/* CSS Document */

#modalContainer {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#alertBox {
    position: relative;
}

#modalContainer>#alertBox {
    position: fixed;
}

/* Alert css */

.alert {
    width: 512px;
    padding: 16px;
    margin: 8px;
    max-width: 90%;
}

.alert-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.alert-content {
    margin: 0;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
}

.alert-1 {
    border-left: 4px solid #ef7f1b;
    background-color: rgba(239, 126, 27, 0.15);
}

.alert-1 .alert-title {
    color: #ef7f1b;
}

.alert-2 {
    border-left: 4px solid #ff0000;
    background-color: rgba(255, 0, 0, 0.15);
}

.alert-2 .alert-title {
    color: #ff0000;
}