.product-item {
    background-color: #fff;
    padding: 10px;
    position: relative;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 30px
}

.product-item .compare__title {
    display: none
}

.product-item__sticker-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    top: 10px;
    left: 10px;
    z-index: 10
}

.product-item:hover {
    z-index: 500
}

@media (min-width:769px) {
    .product-item:hover {
        box-shadow: 0 0 6px 0 rgba(0, 0, 0, .16)
    }
}

.product-item:hover .product-item__sticker {
    opacity: 1
}

@media (max-width:768px) {
    .product-item {
        padding: 5px;
        border: 1px solid #eee;
        padding-bottom: 10px;
        min-height: 335px
    }
}

.product-item .mg-product-image {
    transition: all .5s
}

.product-item__sticker {
    position: relative;
    line-height: 30px;
    margin-bottom: 9px
}

.product-item__sticker.out-stock span {
    background: #9d9d9d
}

.product-item__sticker.out-stock::before {
    border-color: transparent #535353 transparent transparent
}

.product-item__sticker>span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    padding: 0 25px;
    background-color: #ff421d;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    width: fit-content;
    color: #fff;
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .2);
    z-index: 1
}

.product-item__sticker::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 10px 6px 0;
    border-color: transparent #a01d03 transparent transparent;
    position: absolute;
    bottom: -6px;
    left: 0;
    z-index: 0
}

.product-item__sticker.green>span {
    background-color: var(--green)
}

.product-item__sticker.yellow>span {
    background-color: var(--yellow)
}

.product-item__sticker-text {
    color: #fff;
    padding-left: 10px;
    display: none;
    transition: all .5s
}

.product-item .product-item__text-link {
    display: block
}

.product-item .product-item__price {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
    color: #222;
    text-align: center
}

.product-item__buttons {
    margin-top: 15px;
    margin-bottom: 15px
}

.product-item .product-item__old-prise {
    font-size: 14px;
    color: #aaa;
    font-weight: 400
}

.product-item .product-item__button-wrap {
    opacity: 1;
    justify-content: center
}

@media (max-width:520px) and (min-width:371px) {
    .product-item .addToCart {
        font-size: 14px
    }
}

@media (max-width:430px) and (min-width:371px) {
    .product-item .addToCart {
        padding: 8px
    }
}

.product-item .product-item__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.product-item .c-buy--product-item {
    transition: all .5s
}

@media (min-width:1025px) {
    .product-item .c-buy--product-item {
        opacity: 0;
        visibility: hidden
    }
    
    .product-item__button-compare,
    .product-item__button-marker {
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px)
    }
    
    .product-item:hover .c-buy--product-item {
        opacity: 1;
        visibility: visible
    }
    
    .product-item:hover .product-item__button-compare,
    .product-item:hover .product-item__button-marker {
        transform: translateY(0);
        opacity: 1;
        visibility: visible
    }
    
    .product-item:hover .product-item__quick-view {
        opacity: 1
    }
}

.product-item__description {
    display: none
}

.product-item__quick-view {
    opacity: 0;
    position: absolute;
    right: 5px;
    top: 0;
    display: inline-block;
    text-transform: uppercase;
    color: #ccc;
    z-index: 1;
    font-size: 18px;
    text-align: center;
    line-height: 27px;
    letter-spacing: 2px;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.product-item__quick-view:hover {
    color: var(--main-color)
}

@media (max-width:768px) {
    .product-item__quick-view {
        display: none
    }
}

@media (min-width:1025px) {
    .product-item__quick-view {
        opacity: 0
    }
}

@media (max-width:1024px) {
    .product-item__quick-view {
        display: none
    }
}

.product-item__footer-panel {
    background-color: #fff;
    transition: max-height, transform .3s;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}

@media (min-width:992px) {
  /*  .product-item__footer-panel {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: -8px;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        box-shadow: 0 5px 16px 0 rgba(0, 0, 0, .16)
    }*/
}

@media (max-width:768px) {
    .product-item__footer-panel {
       /* display: none*/
    }
}

.product-item__footer-panel-inner {
    padding-top: 16px
}

@media (min-width:992px) {
    .product-item__footer-panel-inner {
       
		padding: 10px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width:991px) {
    .product-item .addToCart {
        padding-left: 15px;
        padding-right: 15px
    }
}

@media (min-width:992px) {
    .product-item:hover .product-item__footer-panel {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }
}

.product-item__btn-panel-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative
}

.product-item .product-item__favorites,
.product-item__compare {
    /*width: 40px;*/
    display: inline-block;
    text-align: center
}

.product-item .addToCompare {
    color: #aaa;
    transition: all .3s
}

.product-item .addToCompare:hover {
    color: var(---main-color)
}

@media (min-width:769px) {
    .product-item:hover .product-container__element {
        opacity: 1
    }
}

@media (max-width:768px) {
    .product-item .product-container__element {
        opacity: 1
    }
}

.product-item__image-box {
    position: relative;
    margin-bottom: 15px
}

.product-item__picture-link {
    display: block;
   /* width: 100%;*/
    transition: all .3s ease;
    z-index: 10;
    text-align: center
}

.product-item__picture-link img {
    margin-left: auto;
    margin-right: auto
}

.product-item__img--hover {
    position: absolute;
    top: 0;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%);
    z-index: -1;
    opacity: 0
}

.product-item__caption {
    margin-top: 4px
}

.product-item .buy-container {
    position: relative
}

.product-item__rating {
    text-align: center;
    transition: all .3s ease
}

.product-item__rating span {
    font-size: 11px;
    line-height: 20px
}

.product-item__rating i {
    font-size: 11px;
    color: var(--main-color);
    line-height: inherit
}

.product-item__left {
    text-align: center
}

.product-item__new-prise {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
	    margin-bottom: 10px;
}

.product-item .c-button {
    box-shadow: 1px 2px 5px rgba(0, 0, 0, .2)
}

.product-item__old-prise {
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    text-decoration: line-through;
    font-size: 16px;
    line-height: 16px;
    color: #222;
	    margin-bottom: 10px;
}

.product-item__name {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
    line-height: 22px;
    margin-top: -7px;
    overflow: hidden;
    color: #555;
    text-transform: uppercase;
    text-align: center;
    transition: all .3s
}

.product-item__name:hover {
    color: var(--secondary-color)
}

@media (max-width:768px) {
    .product-item__name {
        overflow: hidden;
        display: block;
        width: inherit;
        padding: 5px 0
    }
}

.product-item__list-price {
  /*  display: none*/display: contents;
}

.product-item__button-box {
    display: flex;
    margin-top: 10px;
    cursor: pointer
}

@media (max-width:560px) {
    .product-item__button-box {
        justify-content: space-between
    }
}

.product-item__button-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 40%;
    opacity: 1;
    padding: 5px 0;
    transition: all .3s ease
}

.product-item__button-wrap i {
    font-size: 22px;
    line-height: 25px;
    color: var(--main-color)
}

@media (max-width:480px) and (min-width:370px) {
    .product-item__button-wrap i {
        font-size: 20px
    }
}

@media (max-width:1024px) {
    .product-item__button-wrap {
        justify-content: space-evenly
    }
}

@media (max-width:560px) {
    .product-item__button-wrap {
        width: auto
    }
}

.product-item .cart_form {
    display: flex;
    justify-content: center
}

.product-item .cart_form>span {
    display: none
}

.product-item .c-variant__row {
    width: 20%
}

.product-item .c-variant__value {
    display: none
}

.product-item .c-form {
    padding: 2px
}

.product-item .c-variant__img img {
    height: auto;
    margin-bottom: 0
}

.product-item .color-block span {
    display: none
}

.product-item .size-block>span {
    display: none
}

.product-item__variants {
    margin-bottom: 15px;
    text-align: center
}

.product-item .variants-tbody {
    justify-content: center
}

.product-item__image-box:hover .product-item__variants {
    visibility: visible;
    opacity: 1
}

.product-item .sizeMap-row .color,
.product-item .sizeMap-row .size {
    color: var(--text-color) !important
}

.product-item .sizeMap-row .size span {
    color: var(--text-color)
}

.col-12>.product-item {
    box-shadow: none !important;
    border: 2px solid #eee
}

.col-12>.product-item .product-item__container {
    flex-direction: row;
    padding: 10px
}

/*.col-12>.product-item .product-item__footer-panel {
    position: relative;
    opacity: 1;
    max-height: none !important;
    margin-top: 0;
    visibility: visible;
    box-shadow: none;
    transform: none;
    border-left: 1px solid #eee;
    text-align: center;
    width: 200px
}
*/
.col-12>.product-item .product-item__footer-panel-inner {
    padding: 20px
}

.col-12>.product-item .cart_form {
    justify-content: center
}

.col-12>.product-item .product-item__rating {
    text-align: left
}

.col-12>.product-item .product-item__btn-panel-inner {
    flex-wrap: wrap
}

.col-12>.product-item .product-item__button-buy {
    width: 100%
}

.col-12>.product-item .product-item__buttons {
    height: 48px;
    margin: auto;
    display: flex;
    width: 120px;
    align-items: center;
    justify-content: space-evenly
}

.col-12>.product-item .product-item__quick-view {
    display: none
}

.col-12>.product-item .product-item__image-box {
    margin-bottom: 0
}

.col-12>.product-item .product-item__price {
    display: none
}

.col-12>.product-item .product-item__list-price {
    display: block;
    margin-bottom: 15px
}

.col-12>.product-item .product-item__new-prise {
    font-size: 16px;
    color: #222;
    font-weight: 700
}

.col-12>.product-item .product-item__old-prise {
    color: #333
}

.col-12>.product-item .product-item__buy-info {
    flex-grow: 1;
    padding: 0 20px
}

.col-12>.product-item .product-item__image-box {
    min-width: 270px;
    max-width: 270px
}

.col-12>.product-item .product-item__name {
    display: block;
    color: #000;
    margin-bottom: 10px;
    font-size: 18px;
    margin-top: 0;
    text-align: left
}

.col-12>.product-item .product-item__rating {
    margin-bottom: 10px
}

.col-12>.product-item .product-item__description {
    display: block;
    margin-bottom: 20px;
    color: #555;
    line-height: 24px;
    font-size: 14px
}

.a-product-tabs .product-item__rating {
    display: none
}

.a-product-tabs .product-item__quick-view {
    display: none
}