.alert {
    border-width: 0 0 0 5px;
    display: flex;
    padding-left: 1rem;
    align-items: start;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.15);
}

.alert-success {
    border-color: #29A72F;
    background-color: #ECFAED;
}

.alert-error {
    border-color: #D44431;
    background-color: #FFEDEB;
}

.alert-warning {
    border-color: #D97008;
    background-color: #FFF7D6;
}

.alert-info {
    border-color: #166EFA;
    background-color: #E8F1FF;
}

.alert-warning svg {
    color: #D97008;
}

.alert-error svg {
    color: #D44431;
}

.alert-info svg {
    color: #166EFA;
}

.alert-success svg {
    color: #29A72F;
}

.alert svg.fa-xmark {
    color: #626D7A;
}

.alert svg.fa-circle-info,
.alert svg.fa-triangle-exclamation,
.alert svg.fa-circle-exclamation,
.alert svg.fa-circle-check,
.alert svg.fa-xmark {
    height: 20px;
    width: 20px;
}

.alert-body {
    display: flex;
    align-items: center;
    width: 100%;
}

.alert-buttons {
    display: flex;
    justify-content: end;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
}

.alert-title {
    color: #001D30;
    font-weight: 700;
}

.alert-message {
    color: #001D30;
}

.alert-icon {
    margin-right: 8px;
    align-self: flex-start;
}

.alert-dot {
    min-height: 5px;
    min-width: 5px;
    background-color: #166EFA;
    border-radius: 50%;
}

.section-alert {
    border-width: 0 0 0 0 !important;
}

.alert-dismissible {
    padding-right: 16px;
}

.alert-close-button {
    height: 20px;
}

.alert a {
    color: #166EFA;
    font-weight: 500;
}

.alert a:not([href]):not([class]),a:not([href]):not([class]):hover {
    color: #166EFA;
}

.alert .progress {
    width: 180px;
    background-color: #CCCCCC;
}