.ez-bar-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: transparent;
    flex-direction: column;
}



.ez-bar-inner {
    width: 100%;
    height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* This is critical */
    transition: height 1.5s ease-in-out;
    overflow: hidden;
    position: relative;
}



.ez-bar-number {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
    pointer-events: none;
}

.ez-bar-image {
    width: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
	object-position: bottom;

}

@media (max-width: 767px) {
.ez-bar-number{
   font-size: 14px;
 }
}