@charset "UTF-8";

/* Flash message */
.alert {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding: 0.5em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    color: #721c24;
}
.alert.hidden {
    display: none;
}
.alert:hover {
    cursor: pointer;
}
.alert-success {
    font-size: 1.2rem;
    color: #EC0000;
    font-weight: 400;
    background-color: #FCF5F0;
    border: #EC0000 solid 1px;
    text-align: center;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 0.5rem;
    padding: 3px 5px;
}
.alert-danger a {
    color: #721c24;
    border-bottom: 1px solid;
    position: relative;
}
.alert-danger a:hover {
    border: none;
}

/* Form validation error */
.error-message {
    font-size: 1.25rem;
    color: #ff0018;
    padding: 3px 5px;
}

/* Other */
.readonly {
    border: none !important;
}
@media screen and (max-width: 767px) {
    .alert-danger {
        padding: 5px 10px;
    }
}
