.product-box {
    position: relative;
    display: block;
    margin-bottom: 30px;

    text-align: center;
}
.product-box .image {
    position: relative;
    display: block;
    margin-bottom: 20px;
}
.product-box .image img {
    display: block;
}
.product-box .product-box-carousel {
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;


    opacity: 0;
    transition: 0.5s all;
}
.product-box:hover .product-box-carousel {
    opacity: 1;
}

.product-box .product-box-carousel.owl-carousel.owl-theme .owl-nav {
    position: absolute;
    margin: 0;
    bottom: 15px;
    right: 15px;
}
.product-box .product-box-carousel.owl-carousel.owl-theme .owl-nav .owl-prev,
.product-box .product-box-carousel.owl-carousel.owl-theme .owl-nav .owl-next {
    background: none;
    border: 1px solid #000000;
    padding: 10px 10px;
    font-size: 30px;
    line-height: 20px;
    border-radius: 100%;
    width: 32px;
}
.product-box .product-box-carousel.owl-carousel.owl-theme .owl-nav .owl-prev:hover,
.product-box .product-box-carousel.owl-carousel.owl-theme .owl-nav .owl-next:hover {
    color: #999999;
    border-color: #999999;
}



.product-box .caption {
    position: relative;
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

.product-box .title {
    position: relative;
    display: block;
    font-size: 18px;
    color: #000000;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.product-box .price {
    position: relative;
    font-weight: 600;
    color: #000000;
}
.product-box .price .price-old {
    font-weight: 300;
    text-decoration: line-through;
}
.product-box .description {
    position: relative;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.product-box .btn.btn-primary {
    padding: 7px 25px;
    font-weight: 400;
    font-size: 15px;
    border-radius: 35px;
}
.product-box .btn.btn-primary img {
    position: relative;
    display: inline-block;
    width: auto;
    vertical-align: -2px;
    margin-left: 5px;
    -webkit-filter: invert(1);
    filter: invert(1);
}
.product-box .btn.btn-primary:hover img {
    -webkit-filter: invert(0);
    filter: invert(0);
}
.product-box .option-group {
    position: relative;
    display: block;
    margin-bottom: 5px;
}
.product-box .option-group label {
    position: relative;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;

    transition: 0.2s all;
}

.product-box .option-group label.type-text {
    border-radius: 8px;
    border: 2px solid #000000;
    padding: 2px 7px;
    font-size: 13px;
    line-height: 13px;
}
.product-box .option-group label.type-color {
    position: relative;
    display: inline-block;
    border: 2px solid #000000;
    line-height: 16px;
    border-radius: 100%;
}
.product-box .option-group label.type-color b {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 100%;

}
.product-box .option-group label.type-image {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    border: 2px solid #000000;
    overflow: hidden;
}

.product-box .option-group input {
    display: none;
}
.product-box .option-group input + label:hover {
    border-color: #dddddd;
}
.product-box .option-group input:checked + label {
    border-color: #28b62e;
}
