/* -------------------------------- 


/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */


@media only screen and (min-width: 1024px) {

.cd-items {
  padding: 1em 0;
}
@media only screen and (min-width: 768px) {
  .cd-items {
    padding: 2em 0 0;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-items {
    padding: 0em 0 0;
  }
}

.cd-item {
  position: relative;
  margin: 0 0 1em;
}
.cd-item > img {
  display: block;
  width: auto!important;
margin:0 auto;
}
@media only screen and (min-width: 768px) {
  .cd-item {
    width: 48%;
    float: left;
    margin: 0 4% 2em 0;
  }
  .cd-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-item {
    width: 22%;
    float: left;
    margin: 0 4% 2.8em 0;
height:350px;
  }
  .cd-item:nth-child(2n) {
    margin-right: 4%;
  }
  .cd-item:nth-child(4n) {
    margin-right: 0;
  }
  .cd-item.empty-box::after {
    /* box visible as placeholder when the .cd-quick-view zooms in */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #392c3f;
  }
}
.cart{display:none;}
.cd-item:hover .cart{
    display: block;
    position: absolute;
    height: 50px;
    line-height: 50px;
    width: 100%;
    top: 84%;
    left: 0;
    background: #fff;
    font-weight: bold;
    /* text-align: center; */
     -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.product_i {
    margin-top: 14px;
    padding-left: 35px;
}
    .cd-trigger {
        position: absolute;
        height: 50px;
        line-height: 50px;
        width: 100%;
        top: 52%;
        left: 0;
        background: #fff;
        font-weight: bold;
        text-align: center;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #0988bc;
        opacity: 0.9;
        visibility: visible;
        -webkit-transition: opacity 0.2s, background-color 0.2s;
        -moz-transition: opacity 0.2s, background-color 0.2s;
        transition: opacity 0.2s, background-color 0.2s;
    }
.no-touch .cd-trigger:hover {
    background: #fff;
	  color: #0988bc;
}
@media only screen and (min-width: 1024px) {
  .cd-trigger {
    /* always visible on small devices */
    visibility: visible;
    opacity: 1;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-trigger {
    /* only visible on hover on big devices */
    opacity: 0;
  }
}

@media only screen and (min-width: 1170px) {
  .no-touch .cd-item:hover .cd-trigger {
    opacity: 1;
  }

  .touch .cd-item .cd-trigger {
    opacity: 0;
  }
}
.cd-quick-view {
  /* quick view non available on small devices */
  display: none;
}
@media only screen and (min-width: 1024px) {
  .cd-quick-view {
    display: block;
    position: fixed;
    max-width: 960px;
    visibility: hidden;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: left, top, width;
    z-index: 1;
  }
  .cd-quick-view:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-quick-view.is-visible {
    /* class added when user clicks on .cd-trigger */
    visibility: visible;
  }
  .cd-quick-view.animate-width {
    /* class added at the end of the first zoom-in animation */
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    -webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
  }
}

/* .cd-slider-wrapper {
  position: relative;
  display: inline-block;
  float: left;
} */

.add-content .cd-slider {
  margin-right: 3em;
}

.cd-item-info {
  position: absolute;
  padding: 3em 3em 3em 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s, visibility 0s;
  -moz-transition: opacity .3s, visibility 0s;
  transition: opacity .3s, visibility 0s;
}
.cd-item-info h2 {
  font-size: 28px;
  font-size: 1.75rem;
}
.cd-item-info p {
  line-height: 1.6;
  margin: 1em 0;
  color: #67919c;
}
.cd-item-info .cd-item-action li {
  display: inline-block;
  margin-right: 1em;
}
.cd-item-info .cd-item-action li:first-child {
  margin-left: -4px;
}
.cd-item-info .add-to-cart {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 0.25em;
  border: none;
  padding: .6em 1.2em;
  background-color: #f82f53;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  cursor: pointer;
}
.add-content .cd-item-info {
  /* class added at the end of the width animation, used to show the content */
  position: relative;
  visibility: visible;
  opacity: 1;
}
.add-content .cd-item-info h2 {
  -webkit-animation: cd-slide-in 0.3s;
  -moz-animation: cd-slide-in 0.3s;
  animation: cd-slide-in 0.3s;
}
.add-content .cd-item-info p {
  -webkit-animation: cd-slide-in 0.4s;
  -moz-animation: cd-slide-in 0.4s;
  animation: cd-slide-in 0.4s;
}
.add-content .cd-item-info .cd-item-action {
  -webkit-animation: cd-slide-in 0.5s;
  -moz-animation: cd-slide-in 0.5s;
  animation: cd-slide-in 0.5s;
}

@-webkit-keyframes cd-slide-in {
  0% {
    -webkit-transform: translate3d(-40px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes cd-slide-in {
  0% {
    -moz-transform: translate3d(-40px, 0, 0);
  }
  100% {
    -moz-transform: translate3d(0, 0, 0);
  }
}
@keyframes cd-slide-in {
  0% {
    -webkit-transform: translate3d(-40px, 0, 0);
    -moz-transform: translate3d(-40px, 0, 0);
    -ms-transform: translate3d(-40px, 0, 0);
    -o-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.cd-close {
  position: absolute;
  top: 5px;
  right: 10px;
  display: inline-block;

  text-align:center;
  /* image replacement */

}
.cd-close::before, .cd-close::after {
  /* close icon in css */
  position: absolute;
  top: 12px;
  left: 5px;
  display: inline-block;
  height: 4px;
  width: 20px;
  background: #47374e;
  
}
.cd-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-close::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.no-touch .cd-close:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.add-content .cd-close {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform .3s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .3s 0s, visibility 0s 0s;
  transition: transform .3s 0s, visibility 0s 0s;
}




.owl-carousel11 .owl-nav button.owl-prev, .owl-carousel1 .owl-nav button.owl-next {
	width: 50px;
	height: 70px;
	margin: 0; /* removes margins around nav buttons */
	background: #ECF0F1;
	border-radius: 0;
	color: #E74C3C;
	cursor: pointer;
	position: absolute;
	bottom: 200px;
	z-index: 999;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.owl-carousel1 .owl-nav button.owl-prev:hover, .owl-carousel1 .owl-nav button.owl-next:hover {
	background: #ECF0F1;
	color: #34495E;
}

.owl-nav button.owl-prev {
	left: -50px; /* starting position */
}

.owl-nav button.owl-next {
	right: -50px; /* starting position */
}

.owl-carousel1:hover .owl-nav button.owl-prev {
	left: 0; /* target position after transition */
}

.owl-carousel1:hover .owl-nav button.owl-next {
	right: 0; /* target position after transition */
}

/* Dots */
.owl-theme .owl-dots {
	margin-top: 10px; /* restores top margin for dots only */
}

.owl-theme .owl-dots .owl-dot span {
	background-color: #ECF0F1;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background-color: #E74C3C; /* for active dot */
}

/* Other */
button:focus, button:active {
   outline: none; /* removing blue outline from buttons */
}

.fa-close{color:#a1a1a1;}

.cd-item-info button{background:#0983b5!important;}


.owl-carousel .owl-dot{
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    /* user-select: none; */
    height: 1px;
    width: 54px;
    background: #000;
    left: 30%;
    border-radius: 23px;
}

.owl-dots {
       position: absolute;
    bottom: 0;
    width: auto;
    left: 35%;
    display: flex;
    padding: 20px 0px;
	margin: 0px 22px;
}

.owl-dot{margin: 0px 5px;}
	
	
	
	

.owl-carousel2 .owl-nav button.owl-prev, .owl-carousel1 .owl-nav button.owl-next {
	width: 50px;
	height: 70px;
	margin: 0; /* removes margins around nav buttons */
	background: #ECF0F1;
	border-radius: 0;
	color: #E74C3C;
	cursor: pointer;
	position: absolute;
	bottom: 200px;
	z-index: 999;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.owl-carousel2.owl-nav button.owl-prev:hover, .owl-carousel1 .owl-nav button.owl-next:hover {
	background: #ECF0F1;
	color: #34495E;
}

.owl-nav button.owl-prev {
	left: -50px; /* starting position */
}

.owl-nav button.owl-next {
	right: -50px; /* starting position */
}

.owl-carousel2:hover .owl-nav button.owl-prev {
	left: 0; /* target position after transition */
}

.owl-carousel2:hover .owl-nav button.owl-next {
	right: 0; /* target position after transition */
}
	
	
	ul.nav.nav-tabs li {
    padding: 16px 18px;
    font-size: 15px;font-family: Radnika, sans-serif!important;}
	
	ul.nav.nav-tabs li a{color:#545454;font-weight:bold;text-transform:uppercase;}
		ul.nav.nav-tabs{border-bottom:none;}
	
	ul.nav.nav-tabs li .active{border-top:2px solid #2aa9d3;padding-top:15px;color:#000;}
	
	th{color:#545454;width:150px;   font-size: 15px;font-family: Radnika, sans-serif!important;font-weight:bold;padding:10px;}
	td{color:#545454;}
	
	
	.fade:not(.show){opacity:0.9;}
	
	.tab-content{padding:30px 0px;}
	
	
	.tabs-info{width:700px;margin:0 auto;}
	
	.review{padding:50px 0px;}
	
	
	.profile-img img {
    width: 100%;
    border-radius: 88px;
    height: 91px;
    margin-top: 42px;
}

.tab-title h2{    font-size: 23px;
    font-weight: bold;
}
strong{color:#777;}
.rev{font-size:17px;font-family: Radnika, sans-serif!important;color:#545454!important;padding-top:6px;}
	.ratings-review{color:#2aa9d3;}
	
	
	
	.product 
  img {
    max-width: 100%;
    height: auto;
  }


.product--image {
  float: left;
  width: 35%;
}
  .icon-images {float:left;}
  .large-image{float:right;}
  .icon-images 
    img {
      height: 80px;
      margin: 9px 0px;
      cursor: pointer;
      border: 1px solid #e5e5e5;
    }


@media screen and (max-width: 500px) {
  .product--image {
    float: none;
    width: 100%;
    padding: 10px 5px;
    margin: 5px 10px;
  }
}


.breadcrumb-sec{padding:0px 0px 30px;}

.p-rating  i{font-size:11px;color:#2aa9d3;}
.page-breadcrumb ul li{display:inline-block;color:#545454;opacity:0.6;}
.page-breadcrumb ul li a{color:#545454;opacity:0.6;}
.p-rating{cursor:pointer;}

.hover-review{display:none;}
.p-rating:hover .hover-review{    display: block;
    position: absolute;
    background: #222;
    width: 173px;
    /* padding: 0px 28px; */
    padding-left: 13px;
    padding-top: 9px;
    color: #fff;
    text-transform: capitalize;
    font-weight: lighter;    top: -52px;
    left: 75%;}

img#ctl00_ContentPlaceHolder1_imgurl{width:auto!important;}

.btn-checkout a{color:#fff;}

td.pro-remove {
    width: 10px;
}


tr.subtotal {
    text-align: left;
}

tr.shipping{
    text-align: left;
}


.cd-item{cursor:pointer;}


.cd-quick-view.add-content .cd-close:after {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: flipInYs;
    animation-name: flipInYs;
}