/*
|-----------------------------------------------------------------------------------------------------------
| SPECIAL ALERT SECTION
|-----------------------------------------------------------------------------------------------------------
*/

.special-alert-section {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    width: 100%;
    padding: 10px 15px 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-grey);
}

.special-alert-section .close {
    flex: 0 0 auto;
    align-self: flex-end;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    margin: 0 0 10px 0;
    align-items: center;
    font-size: 16px;
    background: none;
}

.special-alert-section .close span {
    font-size: 14px;
    margin-right: 6px;
    text-transform: uppercase;
    color: var(--dark-grey-25);
    font-family: var(--font-body);
    font-weight: 500;
}

.special-alert-section .icon-cont {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    padding: 0 2px 2px 2px;
    border-radius: 50%;
    border: 1px solid var(--off-white);
}

.special-alert-section .icon-cont .fa {
    color: var(--off-white);
    font-size: 12px;
    line-height: 20px;

}

.special-alert-section .item {
    width: 100%;
    max-width: 400px; 
}

.special-alert-section .item .img-cont {
    width: 100%;
    max-width: 385px;
    height: 60vw;
    max-height: 231px;
    margin-bottom: 15px;
    border-radius: 2px;
    background-image: url("/includes/public/assets/images/default_image.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

}

.special-alert-section .item-inner .title {
    color: var(--off-white);
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 26px;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
}

.special-alert-section .item-inner .content {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: var(--off-white);
}

.special-alert-section .item-inner .content span {
    font-weight: bold;
    color: var(--red);
}

@media (min-width: 1025px){
    .special-alert-section {
        padding: 20px 30px 0px;
        flex-direction: row;
    }
    .special-alert-section .close {
        order: 2;
        align-self: flex-start;
    }

    .special-alert-section .item {
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: none;
    }
    .special-alert-section .item .img-cont {
        width: 385px;
        height: 231px;
    }
}

@media (max-width: 770px) {
    .special-alert-section {
        position: relative;
    }
}