.index-alerts-overlay {
    position: absolute;
    top: 10px !important;
    right: 10px !important;

    width: 600px;
    min-height: 300px;

    display: flex;
    flex-direction: column;

    z-index: 700 !important;
    color: var(--blanco);
    pointer-events: none;
}

.index-alerts-head {
    min-height: 44px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    border-left: 8px solid var(--codelis-logoL-rgb);
    border-radius: 10px 10px 0 0;

    background: linear-gradient(
        90deg,
        rgba(56, 21, 75, 0.55),
        rgba(47, 1, 44, 0.55)
    );

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.index-alerts-head-main {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.index-alerts-head-meta {
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .8px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .9);
    white-space: nowrap;
}

.index-alerts-card {
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 14px;

    padding: 18px 22px 16px;

    border-left: 8px solid rgba(111, 175, 235, 1);
    border-radius: 0 0 12px 12px;

    background: linear-gradient(
        180deg,
        rgba(56, 21, 75, 0.55),
        rgba(17, 8, 23, 0.55)
    );

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.index-alerts-card.is-danger {
    border-left-color: var(--danger);
}

.index-alerts-card.is-orange {
    border-left-color: var(--naranja);
}

.index-alerts-card.is-yellow {
    border-left-color: var(--warning);
}

.index-alerts-card.is-magenta {
    border-left-color: var(--magenta);
}

.index-alerts-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.index-alerts-title-wrap {
    min-width: 0;
    flex: 1;
}

.index-alerts-title {
    font-size: 31px;
    font-weight: 900;
    line-height: .98;
    text-transform: uppercase;
    letter-spacing: -0.8px;
}

.index-alerts-kicker {
    width: 170px;
    margin-top: 10px;
    padding: 7px 14px;

    text-align: center;

    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #fff;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.38),
        rgba(255,255,255,0.07)
    );

    border-radius: 8px;
}

.index-alerts-icon {
    min-width: 82px;
    height: 68px;
    flex: 0 0 auto;

    padding: 6px 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 12px;

    font-size: 44px;
    line-height: 1;

    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.index-alerts-card.is-danger .index-alerts-icon {
    background: rgba(220, 53, 69, 0.45);
}

.index-alerts-card.is-orange .index-alerts-icon {
    background: rgba(253, 126, 20, 0.45);
}

.index-alerts-card.is-yellow .index-alerts-icon {
    background: rgba(255, 193, 7, 0.45);
}

.index-alerts-card.is-magenta .index-alerts-icon {
    background: rgba(214, 51, 132, 0.45);
}

.index-alerts-zones,
.index-alerts-detail {
    font-size: 21px;
    line-height: 1.22;
    color: rgba(255, 255, 255, 0.94);
}

.index-alerts-zones strong,
.index-alerts-detail strong,
.index-alerts-vigencia strong {
    color: var(--warning-rgb);
}

.index-alerts-detail {
    display: block;
    overflow: visible;
}

.index-alerts-foot {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;

    padding-top: 10px;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.index-alerts-foot-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.index-alerts-source {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;

    font-size: 18px;
    line-height: 1;
    opacity: 0.82;

    color: var(--bg-x-gray-claro);
}

.index-alerts-vigencia {
    min-width: 0;
    flex: 1;

    text-align: left;

    font-size: 20px;
    line-height: 1.15;

    color: rgba(255, 255, 255, 0.84);
}

.index-alerts-counter {
    flex: 0 0 auto;

    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .9px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.78);
}