

.new-header-baner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 350;
    background: rgba(0,0,0,0.24);
    display: none;
}

.new-header-baner.active {
    display: block !important;
}

.new-header-baner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-banner-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background: #ccc;
}

.header-banner-close:after {
    content:'';
    display: block;
    width: 12px;
    height: 2px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.header-banner-close:before {
    content:'';
    display: block;
    width: 12px;
    height: 2px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}



@media screen and (min-width: 992px) {
    .header.banner-active {
        top: 90px;
    }
}

@media screen and (max-width: 992px) {    
    .new-header-baner {
        top: auto;
        bottom: -1px;
        height: initial;
        padding: 20px 0;
        background: rgb(255 253 232);
    }

    .new-header-baner img {
        height: auto;
        max-height: 120px;
        object-fit: contain;
        object-position: center;
    }

    .header-banner-close {
        top: -20px;
    }

    .new-header-baner img {
        object-fit: contain;
        background: #fffde8;
    }
}
