 .wishlist_wrapper .added_to_cart{
	display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.wishlist_wrapper .added_to_cart:focus{
	color: #fff;
    background-color: #286090;
    border-color: #122b40;	
}
.wishlist_wrapper .alert{
	display:none;
}
.wishlist_featured_img{
	width:50px !important;
	height:50px !important;
}
.wishlist_loader_two{
	width: 16px !important;
    position: relative;
    left: -27px;
    margin-top: 5px;	
}
.button{
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.added_to_cart{
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.added_to_cart:focus{
	color: #fff;
    background-color: #286090;
    border-color: #122b40;	
}
.nopadding{
	padding: 0 !important;
}
.p-30-0-30{
	padding-top:30px;
	padding-bottom:30px;
}
/* -------------------------------- 
Quick View CSS
-------------------------------- */
.cd-quick-view{
	top:22% !important;
	z-index:6 !important;
}
*::after, *::before {
  content: "";
}

body::after {
  /* dark overlay layer - visible when we fire .cd-quick-view */
  position: fixed;
  z-index:5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
@media only screen and (min-width: 1024px) {
  body.overlay-layer::after {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
  }
}
.cd-trigger:focus {
color: inherit;
}
 .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;
}

 .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: 4em 0 0;
  }
}

.cd-item{
	display:none;
}
 .cd-trigger {
  position: absolute;
  height: 50px;
  line-height: 50px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
  display: none;
  visibility: hidden;
  -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: rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 1024px) {
   .cd-trigger {
    /* always visible on small devices */
    visibility: visible;
    display: block;
  }
	.cd-item{
		display:block;
	}  
}
@media only screen and (min-width: 1170px) {
   .cd-trigger {
    /* only visible on hover on big devices */
    opacity: 1;
  }
}

@media only screen and (min-width: 1170px) {
   .no-touch .cd-item:hover .cd-trigger {
    opacity: 1;
  }

   .touch .cd-item .cd-trigger {
    opacity: 1;
  }
}
 .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: 900px;
    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-item-info {
  position: absolute;
  padding: 3em 3em 3em 3em;
  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: #333b3d;
}
 .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-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: 10px;
  right: 10px;
  display: inline-block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform .3s 0s, visibility 0s .3s;
  -moz-transition: -moz-transform .3s 0s, visibility 0s .3s;
  transition: transform .3s 0s, visibility 0s .3s;
}
 .cd-close::before {
  position: absolute;
  color:#ff0000;
  top: 0px;
  left: -10px;
  font-family: "Font Awesome 5 Free";
  font-size:1.2em;
  content: "\f410";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;  
}

 .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;
}
.cd-quick-view .added_to_cart{
	cursor: pointer;
    display: inline-block;
    color: #F7F8FC;
    border: none;
    border-radius: 5px;
    -webkit-box-shadow: 0 15px 30px 0 rgba(5, 16, 44, .15);
    box-shadow: 0 15px 30px 0 rgba(5, 16, 44, .15);
    transition: .4s;
    -webkit-transition: .4s;	
}
.cd-quick-view .button,.cd-quick-view .added_to_cart {
	background-color: #007bff !important;
	border-radius:0px;
	color:#fff !important;
	border:none;
    padding: 10px 30px 10px 30px !important;	
}
.cd-quick-view .ajax_add_to_cart.loading:after{
	top:10px !important;
}
.cd-quick-view .button:hover,.cd-quick-view .added_to_cart:hover {
    background-color: #007bff !important;
    color: #fff !important;
}
.cd-quick-view .added_to_cart::after{
	display:none !important;
}
.cd-quick-view h3{
    font-size: 1.20rem;	
}
@keyframes spin {
  to {transform: rotate(360deg);}
}
section img{
	margin-bottom:0px !important;
    max-width:100%;
}
.wishlist_loader{
	width: 16px !important;
}
.ajax_add_to_cart.added{
	display:none;
}
.woosmart_layout_14 .button{
	margin:0 !important;
}
.woosmart_layout_14 .button:hover{
    transform: inherit;	
}
.woosmart_layout_10 .button{
	margin-top:0 !important;
}