.banner-wrapper{
    position: fixed;
    bottom: 0;
    left: 50%;
    z-index: 9999;
    background-color: #ffffff;
    transform: translateY(100%);
    visibility: hidden;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.banner-wrapper.active{
    visibility: visible;
    transform: translateY(0%) translateX(-50%);
    transition: 0.3s linear;
}
#banner-box{
    min-width: 300px;
    max-width: 320px;
    min-height: 50px;
    max-height: 500px;
    position: relative;
}
#banner-box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#banner-close-icon{
    position: absolute;
    right: -25px;
    top: -15px;
    cursor: pointer;
}
#banner-close-icon span svg{
    height: 25px;
    width: 25px;
}