/* Alert Notification */
.sjb-alert-banner {
    background-color: #fff8f4;
    border-left: 8px solid #fa745e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    margin: 45px 19px 10px 0px;
    /* font-family: 'Arial', sans-serif; */
}

.banner-content {
    display: flex;
    width: 100%;
    gap: 10px;
}

.banner-col-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
}
.alertavatar{
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
img.banner-icon.sjb-logo {
    width: 80px;
    margin-top: -110px;
}
.banner-col-2 {
    padding-left: 15px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 35%;
}

.banner-title {
    color: #ef6f5d;
    font-size: 17px;
    margin: 0;
    font-weight: bold;
}

.banner-text {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.banner-link {
    color: #ef6f5d;
    text-decoration: underline;
}

.banner-col-3 {
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 35%;
}

.banner-features {
    list-style-type: disc;
    color: #555;
    margin-top: 4px;
    font-size: 14px;
}

.banner-features li::marker {
    color: #ef6f5d;
}
.banner-logo {
    max-width: 110px;
    margin-right: 16px;
}
img.banner-icon.alertavatar {
    padding-top: 20px;
}
.banner-col-4 {
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 10%;
}
button.alert-close-btn {
    position: relative;
    top: -38px;
    left: 90px;
    background: transparent;
    border: none;
    padding: 2px 2px 0px 1px;
    width: 25px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    color: grey;
    font-family: system-ui,  sans-serif;
}
button.alert-close-btn:hover {
    background: #e5e5e5;
    color: #fa745e;
}
.banner-col-1 button.alert-close-btn{
    display: none;
}
@media screen and (max-width:800px) {
    .banner-content {
        flex-direction: column;
        /* justify-content: flex-start !important; */
        padding-right: 10px;
    }
    .banner-col-1, .banner-col-2, .banner-col-3, .banner-col-4{
        width: 100%;
    }
    .banner-col-4 button.alert-close-btn{
        display: none;
    }
    .banner-col-1 {
        justify-content: flex-start;
    }
    .banner-col-3 {
        margin-bottom: -40px;
    }
    .banner-col-1 button.alert-close-btn {
        display: block;
        top: -92px;
        left: 420px;
    }
}

@media screen and (max-width:600px) {
    .banner-col-1 button.alert-close-btn{
        top: -80px;
        left: 120px;    
    }
    .banner-content {
        flex-direction: column;
        /* justify-content: flex-start !important; */
        padding-right: 10px;
    }
    .banner-col-2 {
        padding-left: 0px;
        width: 100%;
    }
    .banner-col-3, .banner-col-4 {
        width: 100%;
    }
    img.banner-icon.sjb-logo {
        width: 70px;
        margin-top: -90px;
    }
    img.banner-icon.alertavatar {
        width: 150px;
    }
    .banner-features {
        padding-left: 15px;
    }
}
