/* Custom Woocommerce Shortcodes main style file */
.new-products{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.new-products__item a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
}
.new-products__item .cst-onsale{
    margin: 0;
    padding: 0;
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 11px;
    background-color: #7dbf05;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.new-products__item img{
    width: 82px;
    height: 82px;
    border-radius: 5px;
}

.new-products__item--info{
    padding: 10px 20px;
    flex: 1;
}
.new-products__item--info h5,
.new-products__item--info .price{
    font-family: 'Comfortaa', sans-serif;
    font-weight: bold;
}
.new-products__item--inco h5{
    padding-bottom: 15px;
}
.new-products__item--info .price{
    color: #ff757a;
}
.new-products__item--info h5,
.new-products__item--info .price del{
    color: #666;
}
.new-products__item--info .price del{
    margin-right: 10px;
}
.new-products__item--info .price ins{
    text-decoration: none;
}
.new-products .woocommerce-Price-currencySymbol{
    padding-right: 8px;
}

/* Swiper */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-container-multirow>.swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.new-products-header{
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.new-products-header__title{
    text-transform: capitalize;
}

/* Pagination */
.new-arrival-pagination{
    margin-top: 0;
    padding-bottom: 2px;
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.new-arrival-pagination > div{
    position: relative;
}
.new-arrival-pagination .swiper-button-next,
.new-arrival-pagination .swiper-button-prev{
    position: relative;
    font-family: "FontAwesome";
    font-size: 18px;
    outline: 0;
    display: block;
    width: 15px;
    text-align: center;
    cursor: pointer;
    color: #999999;
}
.new-arrival-pagination .swiper-button-next{
    margin-left: 25px;
}
.new-arrival-pagination .swiper-button-next:before{
    content: '\f105';
}
.new-arrival-pagination .swiper-button-prev:before{
    content: '\f104';
}

/* lines */
.new-products-line{
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ff757a;
    margin-bottom: 30px;
    margin-top: 20px;
}