.swiper {
    width: 100%;
    height: 100px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-blue);

}
.slide-month-title{
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-slide span{
    display: block !important;
    text-align: center;
}

.swiper-slide::after{
    content: '';
    position: absolute;
    bottom: 50%;
    left: 80%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: var(--dark-blue);
    z-index: -1;
}

.swiper-pagination-bullet-active{
    background-color: var(--orange);
}

.bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: 0px;
}
.qty{
    font-weight: bold;
}
.qty-container{
    position: relative;
    color: var(--dark-blue);
}
.qty-container .show-text{
    font-weight: 600;
}
.qty-container .qty{
    position: absolute;
    left: 50%;
}
.arrow-down{
    position: absolute;
    top: 15px;
    left: 50%;
}

.arrow-up{
    position: absolute;
    bottom: 15px;
    left: 50%;
}
.search-input{
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid #707070;
    outline: none;
}