/*============= comment identification/reading reference ===============*/
/*
1. ========= full section finish
2. ######### in between split
3. ********* 2nd level nesting
*/
/*======================= common Classes ===========================*/

a {
    text-decoration: none;
    outline: none;
}
a:hover {
    text-decoration: none;
}
.trans-xy {
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.trans-x {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.trans-y {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.transition {
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
}
.col-no-space {
    margin: 0;
    padding: 0;
}
img.img-resp {
    width: 100%;
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}
.pad-side-50 {
    padding: 0 50px;
}
/*###### common pages styles ######*/

.dashed-split-line {
    width: 100%;
    clear: both;
    border-bottom: dashed 1px #e5e5e5;
}
.common-type-sub-head h2 {
    font-size: 30px;
    color: #2f2f2f;
    line-height: 24px;
    text-align: center;
    padding: 40px 0;
}
/*======================= Product Detail page ===========================*/

.take-me-down {
    position: absolute;
    bottom: 90px;
    width: 100%;
    left: 0;
    text-align: center;
    z-index: 1;
}
.take-me-down a {
    color: #fff;
    font-size: 30px;
    line-height: 0;
}
/*############# product details and page section ############# */

.product-explain-wrapper {
    padding: 0 15px;
}
.product-explain-wrapper .product-explain-inner {
    margin: 0 auto;
    overflow: hidden;
}
/* ******** watch detail panel ******** */
/*.product-explain-wrapper .watch-detail-panel{border: solid 1px #e5e5e5; box-sizing: border-box;position:relative;background:#FFF;}*/

.product-explain-wrapper .watch-detail-panel .watch-detail-panel-inner {
    text-align: center;
}
/*stick panel*/

.product-explain-wrapper .watch-detail-panel.sticked {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    left: 40px;
}
.product-explain-wrapper .watch-detail-panel.bottom-travel {
    position: absolute;
    left: 40px;
    bottom: 80px;
}
/*panel head*/
/*.product-explain-wrapper .watch-detail-panel .panel-head .prod-name-detail{float: left;width: 100%;}*/

.product-explain-wrapper .watch-detail-panel .panel-head .prod-name-detail h3,
.product-explain-wrapper .watch-detail-panel .panel-head .prod-name-detail h1 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px;
}
.product-explain-wrapper .watch-detail-panel .panel-head .prod-name-detail h5,
.product-explain-wrapper .watch-detail-panel .panel-head .prod-name-detail h1 span {
    font-size: 17px;
    padding-top: 7px;
    text-transform: none;
    font-weight: normal;
}
.product-explain-wrapper .watch-detail-panel .panel-head .prod-price {
    margin-top: 15px;
}
/*.product-explain-wrapper .watch-detail-panel .panel-head .prod-price h3 {
    color: #666;
    font: 600 oblique 24px/24px "georgia";
}*/
.prod-price h3 span {
    margin-left: 0;
}
.prod-price font {
    font-size: 15px;
    line-height: 16px;
    color: #00b0b9;
    margin-left: 2px;
}
/*panel desc*/

.product-explain-wrapper .watch-detail-panel .prod-desc {
    padding: 20px 0;
}
.product-explain-wrapper .watch-detail-panel .prod-desc p {
    font-size: 14px;
    line-height: 22px;
    color: #949494;
}
.prod-desc ul {
    margin-left: 15px;
}
.prod-desc ul li,
ul.specBullets li {
    font-size: 14px;
    line-height: 22px;
    color: #949494;
}
ul.specBullets {
    margin-left: 40px;
    padding-bottom: 40px;
}
/*panel color choose*/

.product-explain-wrapper .watch-detail-panel .prod-choose-colors {
    padding: 20px 0;
}
.product-explain-wrapper .watch-detail-panel .prod-choose-colors .choose-color-head {
    color: #999;
    padding-bottom: 20px;
}
.product-explain-wrapper .watch-detail-panel .prod-choose-colors ul {
    padding-left: 0;
    margin-bottom: 0;
}
.product-explain-wrapper .watch-detail-panel .prod-choose-colors ul li {
    list-style: none;
    display: inline-block;
    text-align: center;
}
.product-explain-wrapper .watch-detail-panel .prod-choose-colors ul li .color-marker {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: solid 10px #fff;
    margin-right: 10px;
}
.product-explain-wrapper .watch-detail-panel .prod-choose-colors ul li .color-marker:after {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    border: solid 1px #00b0b9;
    border-radius: 50%;
    left: -11px;
    top: -11px;
    transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
}
.product-explain-wrapper .watch-detail-panel .prod-choose-colors ul li .color-marker.active-marker:after {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
}
.product-explain-wrapper .watch-detail-panel .prod-choose-colors ul li .color-marker input {
    width: 100%;
    height: 100%;
    display: inline-block;
    opacity: 0;
    cursor: pointer;
}
.product-explain-wrapper .watch-detail-panel .prod-choose-colors ul li.color-1 .color-marker {
    background: #334168;
}
.product-explain-wrapper .watch-detail-panel .prod-choose-colors ul li.color-2 .color-marker {
    background: #33684c;
}
.product-explain-wrapper .watch-detail-panel .prod-choose-colors ul li span {
    color: #666;
    font-size: 12px;
    margin-right: 10px;
    padding-top: 10px;
    display: inline-block;
}
/*panel emi options*/
/*.product-explain-wrapper .watch-detail-panel .available-emi-options{padding: 20px 0;width: 100%;position: relative;border-bottom:1px dashed #999999;z-index:1;}*/

.product-explain-wrapper .watch-detail-panel .available-emi-options .emi-opts:nth-child(odd) {
    margin-top: 0;
}
.product-explain-wrapper .watch-detail-panel .available-emi-options .emi-opts:nth-child(even) {
    float: right;
}
.product-explain-wrapper .watch-detail-panel .available-emi-options p {
    font-size: 13px;
}
.product-explain-wrapper .watch-detail-panel .available-emi-options p span {
    background: #333;
    cursor: pointer;
    color: #fff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    line-height: 16px;
}
/*emi toolip*/

.product-explain-wrapper .watch-detail-panel .available-emi-options .emi-opts .emi-opts-inner {
    position: relative;
}
.product-explain-wrapper .watch-detail-panel .available-emi-options .emi-tooltip-wrapper {
    position: absolute;
    right: -90px;
    top: 20px;
    width: 300px;
    display: none;
    border: 1px solid #d4d4d4;
}
.product-explain-wrapper .watch-detail-panel .available-emi-options .emi-tooltip-wrapper:after {
    position: absolute;
    content: "";
    left: 7px;
    top: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #FFF;
}
.product-explain-wrapper .watch-detail-panel .available-emi-options .emi-tooltip-wrapper .emi-tooltip-inner {
    background: #FFF;
    padding: 20px;
    color: #333;
}
.product-explain-wrapper .watch-detail-panel .available-emi-options .emi-tooltip-wrapper .emi-tooltip-inner h4 {
    padding-bottom: 5px;
    font-weight: bold;
}
.product-explain-wrapper .watch-detail-panel .available-emi-options .emi-tooltip-wrapper .emi-tooltip-inner ul {
    display: table;
    width: 100%;
}
.product-explain-wrapper .watch-detail-panel .available-emi-options .emi-tooltip-wrapper .emi-tooltip-inner ul li {
    list-style: none;
    width: 50%;
    display: table-cell;
}
.product-explain-wrapper .watch-detail-panel .available-emi-options .emi-tooltip-wrapper .emi-tooltip-inner ul li p {
    color: #333;
    font-size: 14px;
    padding: 5px 0;
}
.product-explain-wrapper .watch-detail-panel .available-emi-options .emi-tooltip-wrapper .emi-tooltip-inner span {
    padding-top: 10px;
    color: #999;
    font-size: 13px;
}
/*pin code check*/

.product-explain-wrapper .watch-detail-panel .prod-check-pin {
    width: 100%;
    padding: 20px 0;
}
.product-explain-wrapper .watch-detail-panel .prod-check-pin label {
    width: 40%;
    display: inline-block;
    color: #333;
    font-size: 16px;
}
.product-explain-wrapper .watch-detail-panel .prod-check-pin input {
    border: none;
    padding: 0 0 0 10px;
    border-bottom: solid 1px #fff;
    font-size: 14px;
}
.product-explain-wrapper .watch-detail-panel .prod-check-pin input:focus {
    border-bottom: solid 1px #00b0b9;
    border-left: solid 1px #fff;
}
/*product buttons*/

.product-explain-wrapper .watch-detail-panel .prod-buttons {
    width: 48%;
    display: block;
    padding: 0;
    float: right;
    margin-top: 25px;
}
.product-explain-wrapper .watch-detail-panel .prod-buttons .prod-buy-now {
    float: left;
    width: 100%;
}
.product-explain-wrapper .watch-detail-panel .prod-buttons .add-cart-button {
    float: right;
    width: 100%;
}
.product-explain-wrapper .watch-detail-panel .prod-buttons a {
    color: #fff;
    background: #000;
    font-size: 14px;
    font-weight: 700;
    width: 240px;
    height: 50px;
    line-height: 50px;
    display: block;
    text-align: center;
    margin: 0 auto;
    text-transform: uppercase;
}
.product-explain-wrapper .watch-detail-panel .prod-buttons a:hover {
    background: #04A4AC;
}
.cartStatusMess a {
    background: none !important;
    color: #00b0b9 !important;
}
/* ******** watch show panel ******** */

.product-explain-wrapper .watch-show-panel {
    margin: 0 auto;
    width: calc(100% - 510px);
    width: -webkit-calc(100% - 510px);
    width: -moz-calc(100% - 510px);
    width: -ms-calc(100% - 510px);
    width: -o-calc(100% - 510px);
}
.each-show-watch {
    width: 400px;
    margin: 0 auto;
    position: relative;
}
/*.show_zoom .each-show-watch{cursor: url(../images/minus.png) 40 40,zoom-out;position: relative;}*/
/*zoom state items*/

.product-explain-wrapper .watch-detail-panel.move-left {
    left: -100%;
}
.product-explain-wrapper .watch-show-panel.keep-center {
    width: 100%;
}
/*############# product detail page specification section ############# */

.product-specific-wrapper {
    background: #f7f7f7;
    padding-bottom: 40px;
}
.product-specific-wrapper .product-specific-inner {
    padding: 0 40px;
}
/* ********* Product explain boxes ********* */

.prod-spec-box-wrapper .each-prod-spec-row ul {
    display: table;
    width: 100%;
}
.prod-spec-box-wrapper .each-prod-spec-row ul li {
    display: table-cell;
    width: 20%;
    border: solid 1px #c9c9c9;
    color: #666;
    text-align: center;
    vertical-align: top;
    padding: 20px;
    border-right: none;
    border-top: none;
}
.prod-spec-box-wrapper .each-prod-spec-row ul li:last-child {
    border-right: solid 1px #c9c9c9;
}
.prod-spec-box-wrapper .each-prod-spec-row:first-child ul li {
    border-top: solid 1px #c9c9c9;
}
.prod-spec-box-wrapper .each-prod-spec-row ul li span {
    color: #999;
    display: block;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-size: 13px;
}
.prod-spec-box-wrapper .each-prod-spec-row ul li img {
    display: inline-block;
    width: 26px;
}
.prod-spec-box-wrapper .each-prod-spec-row ul li p {
    display: block;
    padding-top: 10px;
    font-size: 13px;
}
/*############# product detail page looks slider images ############# */

.product-looks-wrapper .products-looks-init .owl-controls .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.product-looks-wrapper .products-looks-init .owl-controls .owl-dots .owl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin: 0 15px;
}
.product-looks-wrapper .products-looks-init .owl-controls .owl-dots .owl-dot.active {
    background: #00b0b9;
}
.product_detail_lh {
    width: 500px;
    position: relative;
    opacity: 1;
    margin: 0 auto;
}
.pro_detail_spec {
    border: 1px solid #e5e5e5;
    margin-top: 15px;
    padding: 40px;
}
.pro_detail_spec h2,
.pro_spec h2 {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #d4d4d4;
    text-transform: uppercase;
    font-weight: 600;
}
.pro_detail_spec > div,
.pro_spec > div {
    border-bottom: 1px dashed #e5e5e5;
    overflow: hidden;
    padding: 10px 0;
    font-size: 14px;
    line-height: 16px;
}
.pro_detail_spec > div span,
.pro_spec > div span {
    float: left;
    text-transform: uppercase;
}
.pro_detail_spec > div p,
.pro_spec > div p {
    padding-left: 85px;
}
.show_zoom .product_detail_lh {
    left: -500px;
    opacity: 0;
    position: absolute;
}
.show_zoom .watch-show-panel {
    width: calc(100% - 0px);
    width: -webkit-calc(100% - 0px);
    width: -moz-calc(100% - 0px);
    width: -ms-calc(100% - 0px);
    width: -o-calc(100% - 0px);
}
.show_zoom .each-show-watch {
    width: 500px;
}
.pro_det_city .current {
    height: 40px;
    line-height: 40px;
    padding-right: 20px;
}
.cartStatusMess {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    line-height: 15px;
}
.cartStatusMess a {
    display: inline !important;
    padding: 0 !important;
    border: none !important;
}
.cartStatusMess a:hover {
    background: none !important;
    color: #00b0b9 !important;
}
.pro_city_select {
    width: 100%;
    height: 50px;
    border-radius: 30px;
    border: 2px solid #999999;
    margin-top: 20px;
    box-sizing: border-box;
}
.pro_city_select .nice-select {
    border: none;
    background: none;
}
.pro_city_select .nice-select span {
    font-size: 16px;
    padding: 0px;
    text-align: left;
    height: 45px;
    line-height: 45px;
    padding-left: 20px;
    display: block;
    margin-right: 20px;
    color: #999999;
}
.pro_city_select .nice-select .option {
    line-height: 28px;
    font-size: 15px;
    min-height: 25px;
    padding-left: 5px;
    padding-right: 0px;
}
.product_rating {
    overflow: hidden;
}
.star_rate {
    width: 75px;
    margin: 0 auto;
    height: 14px;
    background: url(../images/star.png) repeat-x;
}
.rated_star {
    width: 30px;
    height: 14px;
    background: #FFF url(../images/star_rate.png) repeat-x;
    float: left;
}
.rate_txt,
.review_preview span {
    font-size: 15px;
    color: #00b0b9;
    cursor: pointer;
}
/*.rate_txt:hover{
        color:#00b0b9;
}*/

.review_preview span {
    cursor: default;
}
/*.review_section{
        width:100%;
        height:100%;
        position:absolute;
        left:-110%;
        top:0px;
        background:#FFF;
        z-index:1;
}
.review_section.show_review{
        left:0px;
}
.review_show_holder{
        width:100%;
        height:100%;
        background:#FFF;
        box-sizing:border-box;
        padding:30px 0px 0px;
}
.review_back_btn{
        font-size:15px;
        height:15px;
        line-height:15px;
        cursor:pointer;
        color:#2f2f2f;
        padding-left:35px;
        background:url(../images/sprit.png) no-repeat 0px -431px;
        margin-left:30px;
}*/

.reviews {
    height: calc(100% - 139px);
    height: -moz-calc(100% - 139px);
    height: -webkit-calc(100% - 139px);
    overflow: auto;
    margin-top: 20px;
    padding: 0 30px;
}
.reviews ul {
    list-style: none;
}
.reviews ul li {
    padding: 15px 0px;
    border-bottom: 1px dashed #e3e3e3;
}
.reviews ul li h2 {
    overflow: hidden;
}
.reviews ul li h2 span {
    float: left;
    margin-right: 15px;
    font-size: 15px;
    font-weight: bold;
    height: 15px;
    line-height: 15px;
    overflow: hidden;
    color: #2f2f2f;
}
.reviews ul li p {
    margin-top: 15px;
    color: #2f2f2f;
    font-size: 15px;
    line-height: 18px;
}
.reviews ul li p span {
    color: #848484;
    padding-right: 15px;
}
.review_bottom {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 90px;
    background: #f0f0f0;
    box-sizing: border-box;
    width: 100%;
}
.review_preview {
    overflow: hidden;
    margin: 35px 0 0 20px;
    float: left;
}
.review_preview .rated_star {
    background: #f0f0f0 url(../images/star_rate.png) repeat-x;
}
.review_bottom a,
.no_review_txt a {
    height: 50px;
    width: 150px;
    font-size: 15px;
    color: #FFF;
    line-height: 50px;
    text-align: center;
    margin: 20px 20px 0 0;
    float: right;
    background: #00b0b9;
    cursor: pointer;
    display: inline-block;
}
.no_review_txt a {
    float: none;
    margin: 20px 0 0 0;
}
.rate_this_product {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: #FFF;
    position: absolute;
    left: -200%;
    top: 0px;
    padding: 30px 0px 0px;
}
.rate_this_product.show_rate_pro {
    left: 0px;
}
.product_rate {
    overflow: hidden;
    margin-top: 20px;
    padding: 0px 20px;
}
.product_rate h2 {
    color: #2f2f2f;
    font-size: 15px;
    line-height: 15px;
    margin-top: 10px;
    text-transform: uppercase;
}
.pro_rating_star {
    overflow: hidden;
    width: 75px;
    margin-top: 10px;
}
.pro_rating_star a {
    width: 14px;
    height: 14px;
    margin-left: 1px;
    float: right;
    background: url(../images/star.png) no-repeat left top;
}
.pro_rating_star a:hover {
    background: url(../images/star_rate.png) no-repeat left top;
}
.pro_rating_star a.selected,
.pro_rating_star a.selected~ a {
    background: url(../images/star_rate.png) no-repeat left top;
}
.pro_rating_star a.selected.hovering {
    background: url(../images/star.png) no-repeat left top;
}
.pro_rating_star a.selected.hovering~ a {
    background: url(../images/star.png) no-repeat left top;
}
.pro_rating_star a.selected~ a:hover,
.pro_rating_star a.selected~a:hover ~ a {
    background: url(../images/star_rate.png) no-repeat left top;
}
.pro_rating_star a:hover,
.pro_rating_star a:hover ~ a {
    background: url(../images/star_rate.png) no-repeat left top !important;
}
.review_form {
    margin-top: 20px;
    overflow: hidden;
    padding: 0 20px;
}
.review_form div {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}
.review_form div input {
    width: 100%;
    border: 1px solid #dedede;
    height: 50px;
    padding: 15px 10px 0;
    box-sizing: border-box;
    color: #2f2f2f;
    font-family: 'Calibri';
}
.review_form div textarea {
    width: 100%;
    border: 1px solid #dedede;
    padding: 20px 10px 0;
    box-sizing: border-box;
    color: #2f2f2f;
    height: 100px;
    font-family: 'Calibri';
    background: #f5f5f5;
}
.review_form div label {
    position: absolute;
    top: 17px;
    left: 0px;
    font-size: 14px;
    color: #2f2f2f;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    cursor: text;
}
.review_form .txt_box.onfocus input + label,
.review_form .txt_box.input-filled input + label,
.review_form .txt_box.onfocus textarea + label,
.review_form .txt_box.input-filled textarea + label {
    top: 5px;
    color: #1db9c1;
    font-size: 14px;
}
.submit_review {
    width: 150px;
    height: 50px;
    border: none;
    outline: none;
    background: #00b0b9;
    color: #FFF;
    cursor: pointer;
    display: block;
    margin-top: 18px;
    font-family: 'Calibri';
    font-size: 15px;
}
/*.no_review{
        width:100%;
        height:calc(100% - 70px);
        -webkit-height:calc(100% - 70px);
        -moz-height:calc(100% - 70px);
        background:#FFF;
        position:absolute;
        left:0px;
        top:70px;
}*/

.no_review_txt {
    /*width:90%;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform: translate(-50%, -50%);*/
    
    text-align: center;
}
.no_review_txt p {
    font-size: 15px;
    line-height: 25px;
    color: #2f2f2f;
}
.offer_txt {
    width: 100%;
    float: left;
    margin-top: 10px;
    display: none;
}
.product-looks-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 10px;
}
.product-looks-wrapper h2 {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    padding: 0 0 20px;
    text-transform: uppercase;
    font-weight: bold;
}
.products-looks-init {
    width: inherit;
}
.products-looks-init .owl-stage {
    padding-bottom: 2px;
}
.products-looks-init .owl-stage > div {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.products-looks-init .owl-stage > div a {
    display: block;
    position: relative;
}
/*.products-looks-init .owl-stage > div a:before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: rgba(0, 176, 185, 0.85);
    content: '';
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}
.products-looks-init .owl-stage > div a:hover:before {
    opacity: 1;
    visibility: visible;
}
.products-looks-init .owl-stage > div a:after {
    width: 100px;
    height: 25px;
    border: 1px solid #FFF;
    line-height: 25px;
    text-align: center;
    font-size: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -12px 0 0 -50px;
    content: 'View Products';
    opacity: 0;
    visibility: hidden;
    color: #00b0b9;
    background: #FFF;
}
.products-looks-init .owl-stage > div a:hover:after {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.products-looks-init .owl-prev,
.products-looks-init .owl-next {
    width: 17px;
    height: 16px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    margin-top: -8px;
    text-indent: -1000px;
    overflow: hidden;
    background-image: url(../images/slider_arrow.png);
    background-repeat: no-repeat;
}
.products-looks-init .owl-prev {
    left: -30px;
    background-position: left bottom !important;
}
.products-looks-init .owl-prev:hover {
    background-position: left top !important;
}
.products-looks-init .owl-next {
    right: -30px;
    background-position: right bottom !important;
}
.products-looks-init .owl-next:hover {
    background-position: right top !important;
}*/
.inner_product_bread_crumbs {
    padding: 10px 30px;
    margin: 0 auto;
    overflow: hidden;
}
.buy_pro_btn_holder {
    width: 100%;
    overflow: hidden;
}
.add_cart_btn {
    width: 48%;
    float: left;
    margin-top: 20px;
}
.add_cart_btn a {
    color: #333;
    padding: 15px 0px;
    background: #dfdfdf;
    font-size: 14px;
    display: block;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
}
.add_cart_btn a:hover {
    background: #c1c1c1;
}
.watch_available_txt {
    font-size: 12px;
    color: #000;
    padding-top: 15px;
}
.download_cat {
    float: right;
    color: #000;
}
.download_cat p {
    float: left;
    font-size: 15px;
}
.download_cat span {
    float: left;
    font-size: 26px;
    margin: -7px 0px 0px 7px;
}