joomla-alert {
    background: #18181bfa!important;
    padding: 40px 25px;
    color: #fff!important;
    border-radius: 0px!important;
    width: 100%;
    margin: 0;
    display: block;
    -webkit-animation-duration: var(--jui-alert-animation-duration);
    animation-duration: var(--jui-alert-animation-duration);
    -webkit-animation-timing-function: var(--jui-alert-animation-timing-function);
    animation-timing-function: var(--jui-alert-animation-timing-function);
}


.alert-message {
    font-size: 16px;
    line-height: 23px;
    font-family: 'inter';
}

span.visually-hidden {
    color: #fff;
    text-transform: capitalize;
    padding-bottom: 10px;
    display: block;
    font-size: 26px;
    font-weight: 600;
    font-family: 'inter';
}

joomla-alert .joomla-alert--close {
    background: transparent;
    border: 0;
    color: #333;
    float: right;
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 0.75;
    padding: 0.5rem;
    transition: color 0.2s ease, opacity 0.2s ease;
    position: relative;
    top: -0.5rem;
    cursor: pointer;
}

joomla-alert .joomla-alert--close:hover {
    color: #000;
    opacity: 1;
}

joomla-alert[type="success"], joomla-alert[type="info"], joomla-alert[type="warning"], joomla-alert[type="danger"] {
    background-color: #F4F4F4;
    color: #6e6e6e;
    border-left: none;
    box-sizing: border-box;
}

@-webkit-keyframes joomla-alert-fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes joomla-alert-fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-webkit-keyframes joomla-alert-fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes joomla-alert-fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    joomla-alert {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
    }
}
