/*
=========================================================
Beauty Home Services Pro
Announcement Slider (Swiper)
=========================================================
*/
.bhs-announcement-bar{

    position:sticky;
    top:0;
    z-index:1032;
}

.bhs-announcement-bar{
   /* position:relative;*/
    width:100%;
    overflow:hidden;
    z-index:9999;
}

.bhs-announcement-slider{
    width:100%;
}

.bhs-announcement-slider .swiper-wrapper{
    align-items:center;
}

.bhs-announcement-slider .swiper-slide{
    display:flex;
    align-items:center;
    justify-content:center;
}

.bhs-announcement-content{
    min-height:42px;
    display:flex;
    align-items:center;
    width:100%;
    transition:all .3s ease;
}

.bhs-announcement-content .container{
    width:100%;
}

.bhs-announcement-content .d-flex{
    min-height:42px;
}

.bhs-announcement-left{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.bhs-announcement-left i{
    font-size:15px;
    flex-shrink:0;
}

.announcement-text{
    font-size:14px;
    font-weight:600;
    line-height:1.4;
}

.announcement-code{
    display:inline-flex;
    align-items:center;
    padding:4px 10px;
    border-radius:20px;
    border:1px dashed rgba(255,255,255,.45);
    /* background:rgba(255,255,255,.12); */
    background:linear-gradient(90deg,#ff5f8f 0%,#ff3f7f 50%,#ff7aa8 100%);
    font-size:12px;
    font-weight:600;
    white-space:nowrap;
}

.announcement-code strong{
    margin-left:5px;
    font-weight:700;
}

.bhs-announcement-right{
    display:flex;
    align-items:center;
    margin-left:auto;
}

.announcement-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 18px;
    border-radius:30px;
    background:#fff;
    color:#222;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.announcement-btn:hover{
    background:#222;
    color:#fff;
    text-decoration:none;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination{
    display:none !important;
}

/* Tablet */

@media (max-width:991px){

    .bhs-announcement-content{
        padding:8px 0;
    }

    .bhs-announcement-content .d-flex{
        flex-direction:column;
        justify-content:center;
        gap:8px;
        text-align:center;
    }

    .bhs-announcement-left{
        justify-content:center;
    }

    .bhs-announcement-right{
        margin-left:0;
    }

}

/* Mobile */

@media (max-width:767px){

    .announcement-text{
        font-size:12px;
    }

    .announcement-code{
        display:none;
    }

    .announcement-btn{
        display:none;
    }

}