
.adm-products .product-detail {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.adm-products .product-detail .image {
    border: 1px solid #eee;
}
.adm-products .product-detail .image a {
    display: block;
    text-align: center;
    padding: 1px;
}
.adm-products .product-detail .image img {
    display: inline-block;
    margin: 0px auto;
    max-width: 100%;
}
.adm-products .product-detail h3 {
    font-size: 15px;
    line-height: 1.5;
    margin: 0px 0px 5px;
}
.adm-products .product-detail .rating {
    margin-bottom: 5px;
}
.adm-products .product-detail .price {
    font-size: 15px;
}
.adm-products .product-detail .price-new {
    font-weight: 700;
}
.adm-products .product-detail .price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    font-size: 13px;
}
.adm-products .product-detail button {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    border-radius: 0;
    font-size: 12px;
    line-height: 1;
    height: 36px;
    width: 36px;
    cursor: pointer;
    color: #006df0;
    border: 1px solid #006df0;
    background: rgba(255, 255, 255, 0.75);
    transition: all 0.3s;
}
.adm-products .product-detail button:hover {
    color: #fff;
    border: 1px solid #006df0;
    background: #006df0;
}
/******************************************/
.adm-products.style-list-left .product-detail {
    text-align: left;
}
.adm-products.style-list-left .product-detail .image {
    float: left;
}
.adm-products.style-list-left .product-detail .button-group {
    padding-top: 10px;
}
/******************************************/
.adm-products.style-list-right > h2 {
    text-align: right;
}
.adm-products.style-list-right .product-detail {
    text-align: right;
}
.adm-products.style-list-right .product-detail .image {
    float: right;
}
.adm-products.style-list-right .product-detail .button-group {
    padding-top: 10px;
}
/******************************************/
.adm-products.style-grid .product-detail {
    text-align: center;
}
.adm-products.style-grid .product-detail .image {
    margin-bottom: 10px;
}
.adm-products.style-grid .product-detail .button-group {
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 40%;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.adm-products.style-grid .product-detail:hover .button-group {
    opacity: 1;
    left: 0px;
    bottom: 50%;
    margin-bottom: -18px;
}
/******************************************/
.adm-products.style-flip-left > h2 {
    text-align: center;
}
.adm-products.style-flip-left .row > div:nth-child(even) .product-detail {
    text-align: left;    
}
.adm-products.style-flip-left .row > div:nth-child(even) .product-detail .image {
    float: left;
}
.adm-products.style-flip-left .row > div:nth-child(even) .product-detail .button-group {
    padding-top: 10px;
}
.adm-products.style-flip-left .row > div:nth-child(odd) .product-detail {
    text-align: right;
}
.adm-products.style-flip-left .row > div:nth-child(odd) .product-detail .image {
    float: right;
}
.adm-products.style-flip-left .row > div:nth-child(odd) .product-detail .button-group {
    padding-top: 10px;
}
/******************************************/
.adm-products.style-flip-right > h2 {
    text-align: center;
}
.adm-products.style-flip-right .row > div:nth-child(even) .product-detail {
    text-align: right;
}
.adm-products.style-flip-right .row > div:nth-child(even) .product-detail .image {
    float: right;
}
.adm-products.style-flip-right .row > div:nth-child(even) .product-detail .button-group {
    padding-top: 10px;
}
.adm-products.style-flip-right .row > div:nth-child(odd) .product-detail {
    text-align: left;
}
.adm-products.style-flip-right .row > div:nth-child(odd) .product-detail .image {
    float: left;
}
.adm-products.style-flip-right .row > div:nth-child(odd) .product-detail .button-group {
    padding-top: 10px;
}
/**********************************************/
.adm-products .owl-carousel {
    position: relative;
}
.adm-products .owl-carousel .owl-nav div {
	position: absolute;
    top: 50%;
    margin-top: -36px;
    opacity: 0!important;
    width: 48px;
    line-height: 1;
    text-align: center;
    border-radius: 50%!important;
    padding: 0px!important;
    background: transparent;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.adm-products .owl-carousel:hover .owl-nav div {
    opacity: 1!important;
}
.adm-products .owl-carousel .owl-nav > div.owl-prev {
    left: -48px;
}
.adm-products .owl-carousel .owl-nav > div.owl-next {
    right: -48px;
}
.adm-menu .adm-products .owl-carousel .owl-nav > div.owl-prev {
    left: 0px;
}
.adm-menu .adm-products .owl-carousel .owl-nav > div.owl-next {
    right: 0px;
}
.adm-products .owl-carousel .owl-nav div .adm-icon {
    font-size: 48px;
    transition: all .5s;
}
@media (max-width: 768px) {
    .adm-products .owl-carousel .owl-nav div {
        display: none;
    }
    .adm-products .owl-carousel .owl-nav > div.owl-prev {
        left: 0px;
    }
    .adm-products .owl-carousel .owl-nav > div.owl-next {
        right: 0px;
    }
}