.closed-banner {
    display: flex;
    justify-content: space-between;
}

.closed-banner>img {
    width: 28%;
    height: 100%;
    object-fit: cover;
}

.closed-banner .closed-banner-content {
    padding: 27px 75px;
    width: 72%;
    position: relative;
}

.closed-banner-content h3 {
    margin-top: 0;
    margin-bottom: 32px;
}

.closed-banner-content p {
    margin-bottom: 0;
}

.closed-banner-closer {
    padding: 3px;
    background-color: white;
    border: none;
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    top: 8px;
    right: 8px;
}

.open-now-content {
    display: flex;
    gap:10px;
    align-items:center;
    font-size:15px;
}
.open-now-content p {
    margin-bottom: 0;
}
#open-now-dot{
    height: 20px;
    aspect-ratio: 1/1;
    border-radius: 5em;
}
.wpb_wrapper:has(.open-now-content){
    height: 100%;
    display: flex;
    align-items:center;
}
@media screen and (max-width:768px){
    .closed-banner{
        flex-wrap: wrap;
    }
    .closed-banner-content{
                width: 100% !important;
                    padding: 20px 30px !important;
    }
        .closed-banner>img{
            width: 100%;
        }
}