/* Dashboard administrator alert */
/* Dashboard administrator alert */
.portal-dashboard-alert{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:16px 48px 16px 16px;
    border:1px solid #d6dce7;
    border-left:4px solid #4f46e5;
    border-radius:14px;
    background:linear-gradient(135deg,#f7f8ff 0%,#ffffff 70%);
    box-shadow:0 8px 24px rgba(15,23,42,.06);
}

.portal-dashboard-alert-icon{
    width:40px;
    height:40px;
    flex:0 0 40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:#eef2ff;
    color:#4f46e5;
    font-size:1rem;
}

.portal-dashboard-alert-content{
    min-width:0;
    padding-top:1px;
}

.portal-dashboard-alert-content > strong{
    display:block;
    margin-bottom:4px;
    color:#1f2937;
    font-size:.88rem;
    font-weight:800;
}

.portal-dashboard-alert-message{
    color:#667085;
    font-size:.76rem;
    line-height:1.65;
}

.portal-dashboard-alert-message p{
    margin:0 0 7px;
}

.portal-dashboard-alert-message p:last-child{
    margin-bottom:0;
}

.portal-dashboard-alert-message a{
    color:#4f46e5;
    font-weight:700;
}

.portal-dashboard-alert-close{
    position:absolute;
    top:11px;
    right:11px;
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    border:0;
    border-radius:8px;
    background:transparent;
    color:#98a2b3;
    cursor:pointer;
    transition:background .18s ease,color .18s ease;
}

.portal-dashboard-alert-close:hover{
    background:#eef0f4;
    color:#344054;
}

@media (max-width:575.98px){
    .portal-dashboard-alert{
        gap:11px;
        padding:13px 42px 13px 13px;
    }

    .portal-dashboard-alert-icon{
        width:36px;
        height:36px;
        flex-basis:36px;
    }
}
