  /*
 * Swiper 4.1.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 11, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {    
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-invisible-blank-slide {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
 position: relative;
}

.tvcmsblog-slider .tvcmsmain-prev .swiper-button-prev:hover  i,
.tvcmsblog-slider .tvcmsmain-next .swiper-button-next:hover i{
    color: #fa6678;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: inline-block;
  background: #bebdbd;
  margin: 0 6px;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fa6678;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #222222;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #222222;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
	@media (max-width: 575px){
		.swiper-container-fade .swiper-slide {	padding-top: 50vh}
	}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/***************************************START SWIPER_SLIDER**************************************/

/* * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
#content-wrapper{
    margin-top: 2em;
 }
.tvcmsgrid-view-product{
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
 }
 .btn:focus{
  outline: none !important;
 }
 #category .form-control:focus
 #category .input-group.focus:focus{
  outline: none;
 }

 @media(max-width: 575px){
  #category #left-column{
   padding-left: 15px;
  }
  #category #content-wrapper{
  padding-right: 15px;
 }
}
/****************************ThemeVolty START loading******************************************/
.tvcms-loading-overlay{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    display: block;
    z-index: 10000;
}
.tvcms-loading-overlay .tvcms-loading-inner img{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
/****************************ThemeVolty END loading******************************************/

/******************START CATEGORY SLIDER********************/ 

.tvcmscategory {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    cursor: url(../img/icon-move-black.png), move;
}
.tvcmscategory .tvcategory-wrapper-content {
  overflow: hidden;
  padding: 50px 0;
}
.tvcmscategory .tvcategory-info img{
  
  width: 100%;
}
.tvcmscategory .tvcategory-wrapper{
  position: relative;
  border:5px solid #fff;
  overflow: hidden;
}
.tvcmscategory .tvcategory-slider-infobox{
  background-color:#fa6678;
  text-align: center;
  padding: 25px 0;
  position: absolute;
  bottom: -150px;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.tvcmscategory .tvcategory-slider-infobox .tvcategory-titel{
  font-size: 24px;
  color: #000;
  font-weight: 400;
}
.tvcmscategory .tvcategory-wrapper:hover .tvcategory-slider-infobox{
    bottom: 0;
}
.tvcmscategory .tvcategory-slider-wrapper{
  padding: 50px 0 0 0;
}
@media (max-width: 991px){
  .tvcmscategory .tvcategory-slider-infobox{
    bottom: 0;
  }
}

@media (max-width: 767px){
  .tvcmscategory .tvcategory-slider-infobox .tvcategory-titel{
    font-size: 18px;
  }
  .tvcmscategory .tvcategory-slider-infobox{
    padding: 15px 0;
  }
}
@media (min-width: 768px){
  .tvcmscategory .tvcategory-slider-wrapper{
    margin-left: -15px;
    margin-right: -15px;
  }
}
/******************END CATEGORY SLIDER********************/ 
/***********************Start bottm space*********************/
    .tvcmsspecial-product-offer-banner,
    .tvcmsofferbanners-two,
    .tvcmstab-product,
    .tvcmsmultibanners,
    .tvcmsmain-block,
    .tvcmsbest-seller-product,
    .tvcmsfeatured-product,
    .tvcmsnew-product,
    .tvcmstestimonial,
    .tvcmstesimonial-blog-post,
    .tvcmscustomer-services{
      /* margin-bottom: 60px; */
      /* overflow: hidden; */
    }
    
@media(max-width: 991px ){
    .tvcmscustomer-services,
    .tvcmsspecial-product-offer-banner,
    .tvcmsofferbanners-two,
    .tvcmstab-product,
    .tvcmsmultibanners,
    .tvcmsmain-block,
    .tvcmsbest-seller-product,
    .tvcmsfeatured-product,
    .tvcmsnew-product,
    .tvcmstestimonial,
    .tvcmstesimonial-blog-post{
      /* margin-bottom: 30px; */
    }
}
/**********************End Bottom Space*************************/
#product_comparison .thumbnail-container img{
  width: 250px;
  max-width: 250px;
}
#product_comparison .tvcmscomparison .tvcmsproduct-compare-list{
   background-color: transparent;
   border:none;
   cursor: pointer;
} 
#product_comparison .tvcmscomparison .tvcmsproduct-compare-list:focus{
  outline: none;
}
#product_comparison .tvcompare-hover-img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
#product_comparison .tvcmscomparison .thumbnail-container{
  position: relative;
  display: block;
}
#product_comparison .tvcmscomparison:hover .tvcompare-hover-img{
  opacity: 1;
}

#product_comparison .product-description .final-price{
  color: #000;
  font: 600 16px/18px;}
#product_comparison .product-description .price{
  color: #666;
  font: 500 14px/18px;  text-decoration: line-through;
}
#product_comparison .product-description .discount{
  font: 500 13px/18px;  color:  #fa6678;
  margin: 0 3px;
}

#product_comparison .product-description .product-desc p{
     margin:10px 0; 
}


#product_comparison .product-description{
  margin-top: 10px;
}

#product_comparison .product-description .product-title a{
  color: #666;
  font: 400 16px/18px   text-transform: capitalize;
}
#product_comparison .product-description .product-title a:hover{
  color: #222;
}

#product_comparison .product-add-to-cart .btn{
    box-shadow: none;
    background-image: none;
    border: none;
    background-color: #fa6678;
    color: #ffffff;
    font-size: 14px;
    padding: 2px 7px;
    line-height: 38px;
    letter-spacing: 0.5px;
    -webkit-transition: 0s ease-in-out;
    -o-transition: 0s ease-in-out;
    -ms-transition: 0s ease-in-out;
    -moz-transition: 0s ease-in-out;
    transition: 0s ease-in-out;
}
#product_comparison .product-add-to-cart .btn i{
  font-size: 20px;
}
#product_comparison .product-add-to-cart .btn:hover{
  background: #000;
  color: #ffffff;
}
#product_comparison .tvcmscomparison .product-description .product-desc{
   font-size: 14px;
    color: #666;
    font-weight: 400;
    line-height: 20px;
    text-align: left !important;
}
#module-tvcmsproductcompare-productcomparelist #product_comparison{
  border: none;
}

@media (max-width: 991px){
  #product_comparison .compare_extra_information{
    width: 100%;
  }
  #product_comparison td{
    display: block;
    float: left;
    width: auto;
   margin-top: 20px;
   text-align: center;
  }
  #product_comparison .comparison_feature_odd.feature-name{
    width: 100%;
    text-align: center;
  }
  #module-tvcmsproductcompare-productcomparelist .card {
    border :none;
    padding:0;
  }
  #module-tvcmsproductcompare-productcomparelist .tvproduct-add-to-cart span{
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 768px){
   #product_comparison .tvcmscomparison{
      width: 100%;
   }
}
@media (max-width: 767px){
    #product_comparison .thumbnail-container img{
    width: 100%;
   }
}

@media (max-width: 575px){
   #product_comparison .tvcmscomparison{
      width: 100%;
   }
}

@media (min-width: 768px) and (max-width: 991px){
  #product_comparison .product-description .discount{
    margin: 0;
  }
  #product_comparison .product-description .final-price{
    font-size: 11px;
  }
  #product_comparison .product-description .price{
    font-size: 11px;
  }
}


/******************END COMPARE********************/


/***************************START ALL BANNERS HOVER**********************************/
@-webkit-keyframes ani {
      25%  {left: 100%;}
      75%  {left: 200%;}
      100% {left: 300%}
} 
  
@keyframes ani {
    0%{top:0;}
    25%  {left: 100%; top:100%;}
    75%  {left: 300%; top:400%;}
    100% {left: 400%; top:200%;}
}  
.tvbanner-hover-wrapper,
.tvspecial-offer-banner{
        padding: 0;
        text-align: center;
}
.tvmain-block-inner-box .tvbanner-hover-wrapper{
  padding: 0 15px;
}
.tvbanner-hover-wrapper .tvbanner-hover{
     width:0%;
    height:0%;
    background:rgba(0,0,0,0) linear-gradient(to right,rgba(128,128,128,0) 0%,rgba(255,255,255,.3) 100%) repeat scroll 0 0;
    position:absolute;
    top:0;
    left:-150%;
    -webkit-transform:skewY(-78deg);
    -o-transform:skewY(-78deg);
    -ms-transform:skewY(-78deg);
    -moz-transform:skewY(-78deg);
    transform:skewY(-78deg);
    -webkit-transition:0.2s ease-in-out;
    -o-transition:0.2s ease-in-out;
    -ms-transition:0.2s ease-in-out;
    -moz-transition:0.2s ease-in-out;
    transition:0.2s ease-in-out;
    box-shadow:7px 1px 18px 12px rgba(255,255,255,0.2);
}

.tvbanner-hover-wrapper img{
    width: 100%;
}
.tvbanner-hover-wrapper:hover .tvbanner-hover{
    animation-direction:2s;
    animation:ani 5s infinite;
    -webkit-animation:ani 5s infinite;
    width:100%;
    height:100%;
}
@media(max-width: 991px){
  .tvcmsspecial-offer-banner {
     padding: 0;
  }
}
@media(max-width: 575px){
  .tvbanner-hover-wrapper, .tvspecial-offer-banner{
    margin-bottom: 15px;
  }
}

/***************************END ALL BANNERS HOVER**********************************/

/*******************START BANNER*****************/
.tvcmsofferbanners-one {
  padding: 30px 0;
}
 .tvcmsofferbanners-one  .tvone-banner-wrapper-info{
  padding: 0;
 }
 
.tvtwo-banner-wrapper-box,
.tvmultibanner2-wrapper{
    margin-left: -15px;
    margin-right: -15px;
}

@media (max-width: 767px){
    .tvcmsofferbanners-one .tvcmstvcmsofferbanners{
      padding: 0 15px;
    }
    .tvmultibanner2-wrapper{
      text-align: center;
    }
    .tvmultibanner2-wrapper img{
      width: auto;
      border-radius: 5px;
    }
}

/*******************END BANNER*****************/


/************************************START BLO POST*******************************/
#module-tvcmsblog-archive .tvcmsblog-slider-pagination{
    text-align: center;
}
.tvcmsblog-next-pre-btn .tvcmsmain-prev:before,
.tvcmsblog-next-pre-btn .tvcmsmain-next:before{
    line-height: 36px;
}
 .tvcmsblog-slider-pagination{
    position: absolute;
    top: 50%;
    width: 100%;
}
 .tvcmsblog-slider-pagination .tvcmsblog-slider-prev,
 .tvcmsblog-slider-pagination .tvcmsblog-slider-next{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    border: none;
    cursor: pointer;
}
/*.tvcmsblog-slider-pagination .tvcmsblog-slider-prev:before,
.tvcmsblog-slider-pagination .tvcmsblog-slider-next:before{
  content: "";
    width: 35px;
    height: 35px;
    background: #eeeeee;
    position: absolute;
    border-radius: 5px;
    left: 0;
    display: inline-block;
    vertical-align: top;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}*/
/*.tvcmsblog-slider-pagination .tvcmsblog-slider-prev:hover:before,
.tvcmsblog-slider-pagination .tvcmsblog-slider-next:hover:before{
  background-color: #fa6678;
}
.tvcmsblog-slider-pagination .tvcmsblog-slider-prev:after,
.tvcmsblog-slider-pagination .tvcmsblog-slider-next:after{
  content: "";
    width: 35px;
    height: 35px;
    border: 1px solid #eeeeee;
    position: absolute;
    border-radius: 5px;
    top: 0;
    bottom: 0;
    cursor: pointer;
    opacity: 1;
    margin: auto;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.tvcmsblog-slider-pagination .tvcmsblog-slider-prev:hover:after,
.tvcmsblog-slider-pagination .tvcmsblog-slider-next:hover:after{
  border: 1px solid #fa6678;
}*/
.tvcmsblog-slider-pagination .tvcmsblog-slider-prev:after{
  right: 7px;
}
.tvcmsblog-slider-pagination .tvcmsblog-slider-next:after{
  left: 7px;
}
.tvcmsblog-slider-pagination .tvcmsblog-slider-prev i,
.tvcmsblog-slider-pagination .tvcmsblog-slider-next i{
    color: #888888;
    font-size: 20px;
    width: 35px;
    height: 35px;
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    line-height: 35px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    position: relative;
    z-index: 2;
}

.tvcmsblog-slider-pagination .tvcmsblog-slider-prev:hover i,
.tvcmsblog-slider-pagination .tvcmsblog-slider-next:hover i{
    color: #fa6678;
}

.tvcmsblog-slider-pagination .tvcmsblog-slider-prev{
  left: 15px;
}
.tvcmsblog-slider-pagination .tvcmsblog-slider-next{
  right: 15px;
}
.tvcmstesimonial-blog-post .tvtestimonial-full-width{
  margin-bottom: 50px;
}
/*******************************SENDS BLO POST*******************************/

/****************************START TESTIMONIAL*****************s***********/

.tvtestimonial-info-all-block{
  overflow: hidden;
  margin: 0 auto;
  width: 90%;
}
.tvtestimonial-wrapper{
  padding: 0 15px;
  overflow: hidden;
  display: table;
}
.tvcmstestimonial .tvtestimonial:after{
  content: "";
  position: absolute;
}
.tvtestimonial-inner-info-box{
  text-align: left;
}
.tvcmstestimonial{
  background-attachment: fixed;
  padding: 70px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.tvcmstestimonial:before,
.tvcmsmain-block:before,
.tvcmsfooter .tvfooter-content-box:before{
    content: "";
    background-image:url(../img/themevolty/Round-Image.png);
    display: block;
    background-position: center;
    top: 0;
    position: absolute;
    width: 100%;
    height: 18px;
}
.tvcmstestimonial:after,
.tvcmsmain-block:after{
    content: "";
    background-image:url(../img/themevolty/Round-Image-2.png);
    display: block;
    background-position: center;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 18px;
}
.tvtestimonial-title a{
  font: 600 18px/normal 'Cherry Swash', cursive;  
  color: #222222;
  text-transform: capitalize;
}
.tvtestimonial-title a:hover{
  color: #fa6678;
}
.tvtestimonial-title{
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.tvtestimonial-designation{
  font: 400 13px/16px 'Poppins', sans-serif;
  color: #fa6678;
  font-style: italic;
  margin-bottom: 20px;
}

.tvtestimonial-img{
  width: 150px;
  height: 150px;
  float: left;
  margin-right: 50px;
}
.tvtestimonial-img img{
  width: 100%;
  border-radius: 100%;
}
.tvtestimonial-dec{
  font: 400 13px/23px 'IBM Plex Sans', sans-serif;  
  color: #333333;
  padding-bottom: 15px;
  letter-spacing: 0.2px;
}
.tvtestimonial-info-box{
  overflow: hidden;
  display: table-cell;
  vertical-align: middle;
}
.tvtestimonial-pagination{
  text-align: center;
  padding-top: 20px;
}
@media(max-width: 1199px){
  
  .tvtestimonial-title a:after{
    height: 19px;
    width: 19px;
    bottom: -9px;
  }
}
@media(max-width: 991px){
  .tvcmstestimonial{
    padding: 30px 0;
  }
  .tvtestimonial-info-all-block{
    width: 100%;
  }
}

@media(min-width: 576px) and (max-width: 767px){
  .tvtestimonial{
    padding: 0 15px;
  }
  
}

@media(max-width: 767px){
  .tvtestimonial-info-all-block{
      width: 100%;
    }
}

@media(max-width: 575px){
  .tvtestimonial-info-box{
    width: 100%;
    padding-top: 20px;
  }
  .tvcmstestimonial{
    padding: 30px 15px;
  }
  .tvtestimonial-wrapper{
    padding: 0;
    display: block;
  }
  .tvtestimonial-img{
    width: 120px;
    height: 120px;
    margin: 0 auto;
    float: none;
    text-align: center;
  }
}
@media(max-width: 360px){
  .tvcmstestimonial .tvcmsmain-prev, 
  .tvcmstestimonial .tvcmsmain-next{
    top: 45%;
  }
}

/****************************END TESTIMONIAL***********************/

/****************************END NEW-EVENT***********************/
.tvcmstesimonial-blog-post{
    clear: both;
    background: #ffffff none repeat scroll 0 0;
}
.tvcmsnews-event .blog_pos{
    overflow: hidden;
    background: #ffffff none no-repeat scroll 0 0;
    position: relative;
}
.tvnews-event-title-paging{
    overflow: hidden;
}
.tvnews-event{
  background-color: transparent;
  overflow: hidden;
  width: 100%;
}
.tvcmstesimonial-blog-post .tvcmsnews-event{
  padding: 0;
}
.tvcmsnews-event .tvblog-title-background-text{
  position: relative;
  font-weight: normal;
  margin-top: 10px;
}
.tvcmsnews-event .tvdate-time
{
  
}
.tvcmsnews-event .tvdate-time .tvday-time,
.tvcmsnews-event .tvdate-time .tvmonth-time,
.tvcmsnews-event .tvdate-time .tvyear-time{
  text-align: center;
  float: left;
  padding: 0 2px;
}
.tvcmsnews-event .tv-main-title .tvnews-event-des-title{
    display: none;
}
.tvcmsnews-event .tvnews-event-description{
    color: #888;
    font: 400 13px/23px ;    margin: 0;
}
.tvcmsnews-event .tvnews-event-content{
    position: relative;
}
.tvcmsnews-event .post_thumbnail a{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
.tvcmsnews-event .post_thumbnail .post_meta{
  display: none;
}
.tvcmsnews-event .blog_post_content_top .post_thumbnail{
    position: relative;
    padding: 0;
}
.tvcmsnews-event .post_meta{
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
}
.tvcmsnews-event .tvblog-date-username{
    text-align: center;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}
.tvcmsnews-event .swiper-slide{
    margin-bottom: 10px;
}
.tvcmsnews-event .tvblog-titel-post_meta{
  overflow: hidden;
  text-align: left;
}
.tvcmsnews-event .img_content img{
   width: 100%;
}
.tvblog-username-titel{
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;   
}
.tvcmsnews-event .tvdate-time .tvmonth-time p,
.tvcmsnews-event .tvdate-time .tvday-time p,
.tvcmsnews-event .tvdate-time .tvyear-time p
{
     color: #888888;
    font: 400 13px/normal 'IBM Plex Sans', sans-serif;
    margin: 0;

  }
.tvcmsnews-event .tvnews-event-username i{
    color: #888888;
    font-size: 14px;
    margin: 1px 5px;
}
.tvcmsnews-event .tvnews-event-username p{
  display: inline-block;
  color: #888888;
  font: 400 13px/normal 'IBM Plex Sans', sans-serif;
  margin: 0;
}
.tvcmsnews-event .tvnews-event-titel .post_title{
    color: #333333;
    font: 600 20px/24px 'Cherry Swash', cursive;   
     margin-bottom: 10px;
    display: block;
    letter-spacing: 0.2px;
}
.tvcmsnews-event .tvnews-event-titel a:hover{
    color: #666666;
}
.tvcmsnews-event .tvnews-event-titel{
    width: 100%;
    overflow: hidden;
}
.tvblog-event-img-content .tvblog-post_meta-post_content{
  padding:15px 0;
}
.tvcmsnews-event .blog_mask_content{
    display: none;
}
.tvcmsnews-event .tvnews-event-hoverbtn {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.tvcmsnews-event .tvnews-event-hoverbtn .tvblog-content-img {
    width: 100%;
    position: relative;
    -webkit-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background-position: center;
    background-size: cover;
    height: 245px;
}


.tvcmsnews-event .tvnews-event-hoverbtn .tvnews-event-ovrly{
    background: rgba(0,0,0,1);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}


.tvnews-event-read-more .tvnews-event-read-more-link a{
    color: #fa6678;
    font: 400 12px/30px ;    height: 30px;
    cursor: pointer;
    display: block;
    float: right;
    text-transform: capitalize;
} 

.tvcmsnews-event .tvnews-event-read-more{
    text-align: right;
}

.tvcmsnews-event .tvnews-event-read-more-link a i{
    font-size: 15px;
    color: #fa6678;
}
.tvnews-event-read-more .tvnews-event-read-more-link a:hover,
.tvnews-event-read-more .tvnews-event-read-more-link a:hover i{
  color: #222;
}
.tvcmsnews-event .tvnews-event-hoverbtn .tvnews-event-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.tvcmsnews-event .tvnews-event-hoverbtn .tvnews-event-buttons i{
   display: inline-block;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    opacity: 0;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
    position: relative;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s;
    -o-transition: -o-transform 0.3s, opacity 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.tvcmsnews-event .tvnews-event-hoverbtn .tvnews-event-buttons i:hover{
    color: #fa6678;
}
.tvcmsnews-event .tvnews-wrapper .blog_pos:hover .tvnews-event-buttons i {
    opacity: 1;
    font-size: 40px;
    font-weight: 400;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.tvcmsnews-event .tvnews-wrapper .blog_pos:hover .tvnews-event-ovrly {
    opacity: 0.5;
}
.tvcmsnews-event .tvnews-event-hoverbtn .tvnews-event-buttons {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.tvcmsnews-event .tvnews-wrapper .blog_pos:hover .tvnews-event-buttons {
    border-radius: 100%;
}
.tvcmsnews-event .tvnews-event-link{
    text-align: right;
    display: block;
    float: right;
}
.tvcmsnews-event .tvcmsnews-pagination{
    margin-top: 30px;
}
.tvcmsnews-event .tvnews-event-link a{
    color: #6b6a6a;
    font-weight: 400;
    font-size: 14px;
     -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    text-transform: capitalize;
}
.kr_blog_post_inner{
  overflow: hidden;
  margin: 0 -15px;
}
.tvcmsnews-event .tvnews-event-link a:hover{
    color: #222222;
}
.tvcmsnews-event .tvnews-event-link i{
    font-size: 18px;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}
@media(min-width: 992px) and (max-width: 1199px){
  .tvcmsnews-event .tvnews-event-hoverbtn .tvblog-content-img{
    height: 150px;
  }
}

@media (max-width:991px){
    #module-tvcmsblog-single .tvcmsleftpannel-testimonial-slider .tvleftpannel-testimonial_dec{
        padding: 0 11px;
    }
    .tvcmsnews-event .tvnews-wrapper .blog_pos .tvblog-username-titel{
        left: 15px;
    }
}
@media (min-width: 768px){
  .tvtestimonial-blog-post .tvnews-event-wrapper-mobile-desktop-slider{
      margin-left: -15px;
      margin-right: -15px;
  }
}
@media(max-width: 767px){
  .tvcmsnews-event .tvnews-event-link{
    margin-right: 15px;
  }
  .tvblog-content-box{
    margin-bottom: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px){
  .tvcmsnews-event .tvnews-event-hoverbtn .tvblog-content-img{
    height: 145px;
  }
}
@media(max-width: 575px){
  .tvnews-event{
    padding: 0 15px;
  }
  .tvblog-content-box
  {
    padding: 0;
  }
  .tvtestimonial-blog-post{
    margin-top: 30px;
  }
  .tvcmsnews-event .tvnews-event-hoverbtn .tvnews-event-buttons:after,
.tvcmsnews-event .tvnews-event-hoverbtn .tvnews-event-buttons:before{
  width: 30px;
  height: 30px;
}
.tvcmsnews-event .tvnews-event-hoverbtn .tvnews-event-buttons i{
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 18px;
}
}



/****************************END NEW-EVENT***********************/

/***************************START SERVICE*********************/
.tvcmscustomer-services .tvservices-center{
  border: none; 
  padding: 0 15px;
  margin: 0;
}
.tvcmscustomer-services .tvservices-img img{
  width: auto;
  max-width: none;
}
.tvcmscustomer-services .tvservices-img-wrapper:hover img{
  opacity: .6;
}
.tvcmscustomer-services .tvservices-img-wrapper{
}
.tvcmscustomer-services .tvservices-img i{
    font-size: 40px;
    color: #666666;
    -webkit-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.tvcmscustomer-services .tvservices-info{
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  padding-top: 15px;
}
.tvservices-img{
  background-image:url(../img/themevolty/bg-icon-service.png); 
  background-repeat: no-repeat;
  height: 150px;
  display: block;
  max-width: 100%;
  position: relative;
  background-position: center;
  display: -webkit-box !important;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.tvservice-bg-delivery-img {
    background-image:url(../img/themevolty/Sprit-image.png);
    height: 100px;
    width: 100px;
    background-position: 0 0;
    margin: auto;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.tvservices-img-wrapper:hover .tvservice-bg-delivery-img {
    background-position: 0 100px;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.tvservice-bg-discount-img {
    background-image:url(../img/themevolty/Sprit-image.png);
    height: 100px;
    width: 100px;
    background-position: -100px 0;
    margin: auto;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.tvservices-img-wrapper:hover .tvservice-bg-discount-img {
    background-position: -100px 100px;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.tvservice-bg-quality-img {
    background-image:url(../img/themevolty/Sprit-image.png);
    height: 100px;
    width: 100px;
    background-position: -200px 0;
    margin: auto;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.tvservices-img-wrapper:hover .tvservice-bg-quality-img {
    background-position: -200px 100px;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.tvservice-bg-support-img {
    background-image:url(../img/themevolty/Sprit-image.png);
    height: 100px;
    width: 100px;
    background-position: -300px 0;
    margin: auto;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.tvservices-img-wrapper:hover .tvservice-bg-support-img {
    background-position: -300px 100px;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.tvservices-img-wrapper .tvservices-content-box{
  background-color: #fafafa;
}
.tvcmscustomer-services .tvservices-title{
    color: #333;
    font: 800 18px/normal 'Cherry Swash', cursive;    display: block;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.tvcmscustomer-services .tvservice-dec{
    color: #888888;
    font: 400 15px/20px 'IBM Plex Sans', sans-serif;
}

.tvcmscustomer-services .tvservices-1,
.tvcmscustomer-services .tvservices-2,
.tvcmscustomer-services .tvservices-3,
.tvcmscustomer-services .tvservices-4{
  text-align: center;
}

@media (max-width: 991px){
  .tvcmscustomer-services .tvservices-center {
      margin-bottom: 15px;
  } 
  .tvcmscustomer-services .tvservice-inner{
    display: block !important;
  }
}

/***************************END SERVICE*********************/

/****************************START LEFT PANEL***************************/



/****************start banner**************/
.tvcmsleft-offer-banner{
}
.tvcmsleft-offer-banner img{
  width: 100%;
}
.tvcategory-cover{
  margin-bottom: 20px;
}
@media(max-width: 767px){
  .tvcmsleft-offer-banner img{
    width: auto;
    border-radius: 5px;
  }
  .tvcmsleft-offer-banner{
    text-align: center;
  }
}
/********end right banner**********/

.tvright-panel-titel{
    color: #444;
    font-size: 18px;
}
.tvright-panel-description p{
    font-size: 14px;
    color: #676767 !important;
    margin:0;
}
#tvright-panel-description p{
    margin: 0;
}
#tvright-panel-description{
    color: #666;
    font: 400 14px/20px 'Cabin',sans-serif;
}

/*************************END RIGHT PANEL****************************************/



/****************************END ALL PRODUCTS Reviews***********************/
  .tvReviews .btn{
    box-shadow: none;
    background-image: none;
    border: none;
    background-color: #fa6678;
    color: #ffffff;
    font-size: 14px;
    height: 38px;
    min-width: 165px;
    max-width: 80%;
    padding:0 10px;
    line-height: 38px;
    margin: 0;
}
.tvReviews .btn:hover{
    background-color: #222222;
    color: #ffffff;
}
.tvcmsproducts-section-title{
   font-size: 18px;
}
.tvcmsproduct_comments_block_tab h4{
   color: #222222;
   font-weight: 500;
   font-size: 13px;
}
/****************************END ALL PRODUCTS Reviews***********************/

/********************************start review star********************/



#tvcmsproductCommentsBlock .star_content .star_on i,
.tvcmsfeatured-product .tvproduct-info-box .star_on i,
.tvcmsspecial-product .tvproduct-info-box .star_on i,
.tvcmsnew-product .tvproduct-info-box .star_on i,
.tvcmsbest-seller-product .tvproduct-info-box .star_on i,
.tvcmstab-title-product .tvproduct-info-box .star_on i,
.tvcmslike-product .tvproduct-info-box .star_on i,
.tvcmscategory-product .tvproduct-info-box .star_on i,
#products .tvproduct-info-box .star_on i{
    color: #fcae01;
}
/********************************end review star********************/

/****************************START COYTACT US LINK FOOTER***********************/

#order-confirmation .tvcms-box-layout .card-title i{
  padding: 0;
}
.tvcms-box-layout .card-block{
   background-color: transparent;
   box-shadow: none;
} 
#contact #content-wrapper .card-block{
}
.tvcmscontact-us .tvcontact-title h3{
}
.tvcmscontact-us .tvcontactt-us-inner select,
.tvcmscontact-us .tvcontact-us-email input,
.tvcmscontact-us .tvcontact-us-attachment input,
.tvcmscontact-us .tvcontact-us-order-reference select,
.tvcmscontact-us .tvcontact-us-message textarea{
}
.tvcmscontact-us .form-control-label{
}
.tvcmscontact-us .tvcontact-us-message{
  width: 50%;
}
.tvcontact-us-attachment .input-group-btn .btn{
}
.tvcmscontact-us .tvcontact-us-button{
}
@media (max-width: 767px){
  .tvcmscontact-us .tvcontact-us-message{
    width: 100%;
  }
}
/***start store information*****/
.tvcmsStore-inform-contact-us{
}

/****************************END COYTACT US LINK FOOTER***********************/

/****************************START OUR STORES LINK FOOTER***********************/

.tvcmsstores .tvstore-titte-address{
    color: #222;
    font-size: 15px;
    font-weight: 600;
}
.tvcmsstores .tvstores{
   box-shadow: none;
   background-color: transparent;
   border:1px solid #eee;
}
.tvcmsstores .tvstore-address{
  color: #626262;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}
.tvcmsstores .tvstore-dayname{
  color: #222;
  font-size: 14px;
  font-weight: 600;
}
.tvcmsstores .tvstore-time{
  color: #626262;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 575px){
  .tvcmsstores .tvstore-description{
    text-align: center;
    margin-bottom: 10px;
  }
  .tvcmsstores .tvstore-day-time{
    text-align: center;
  }
  .tvcmsstores .tvstore-day-time table{
    display: inline-block;
  }
}
/****************************END OUR STORES LINK FOOTER***********************/

#content.tvall-page-content{
  background-color: transparent;
  box-shadow: none;
  padding:0;
  margin: 0 auto;
  border: none;
}

.tvno-account{
  text-align: center;
}
.tvno-account a{
}
.tvno-account a:hover{
}
@media(max-width: 767px){
    #content.tvall-page-content .form-group .col-md-6{
        width: 100%;
    }
}
/******************************START LOGIN PAGE******************************/


/******************************END LOGIN PAGE*******************************/


/******************************START WISHLIST******************************/
 .tvcmswishlist-view-table-data{
  display: inline-table ;
 }
 .tvcmswishlist .wlp_bought_item_container .product_infos a.lnkdel{
  background-color: #000;
 }
 .tvcmswishlist .wlp_bought_item_container .product_infos a.lnkdel i{
  color: #FFF;
  font-size: 16px;
  display: block;
 }
 .tvcmswishlist #showSendWishlist a{
    color: #222;
    font-weight: 500; 
 }

 .wishlistLinkTop .tvwishlist-send-mess-btn button:hover{
  background: #000;
 }


.tvcmswishlist .wishlistLinkTop .wlp_bought ul li .wlp_bought_item_container{
  border:1px solid #eee;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  padding: 10px;
  position: relative;
  margin-bottom: 10px;
}

.tvcmswishlist .wishlistLinkTop .wlp_bought_item_container .product_infos .btn_action a{
    color: #ffffff;
    background-color: #fa6678;
    display: inline-block;
    padding: 5px 15px;
    float: left;
    font-size: 14px;
    -webkit-transition: 0s ease-in-out;
    -o-transition: 0s ease-in-out;
    -ms-transition: 0s ease-in-out;
    -moz-transition: 0s ease-in-out;
    transition: 0s ease-in-out;
}
.tvcmswishlist .wishlistLinkTop .wlp_bought_item_container .product_infos .btn_action a:hover{
  background: #000;
  color: #ffffff;
}
.tvcmswishlist .wishlistLinkTop .wlp_bought_item_container .product_infos .btn_action a span{
  transition: 0s;
}
.tvcmswishlist .wishlistLinkTop .wlp_bought_item_container .product_infos .btn_action .wishlist_change_button{
  float: right;
}
.tvcmswishlist .wishlistLinkTop .wlp_bought_item_container .product_infos .btn_action table tr{
  border: 1px solid #eee;
}
.tvcmswishlist .wishlistLinkTop .wlp_bought_item_container .product_infos .btn_action .popover-content{
  padding: 0;
  margin-top: 10px;
}
.tvcmswishlist .wishlistLinkTop .wlp_bought_item_container .product_image{
  border:1px solid #eee;
}
.tvcmswishlist .wishlistLinkTop .wlp_bought_item_container .product_infos .product-name{
  margin:10px 0;
  color: #666666;
  font: 400 14px/18px;}
.tvcmswishlist .wishlistLinkTop .product_infos .wishlist_product_detail .form-group{
  margin-top: 0;
}


.tvcmswishlist{
    padding:0 15px;
}
.tvcmswishlist .tvwishlist-info th{
    border:1px solid #eee; 
    text-align: center;
    color: #545454;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
} 
.tvcmswishlist .tvwishlist-info td{
    border:1px solid #eee; 
    text-align: center;
    color: #222;
    font-weight: 400;
    font-size: 14px;
} 
.tvcmswishlist .tvwishlist-info .tvwishlist-view-link a{
  color: #fa6678;
   font-weight: 500;
    font-size: 14px;
}
.tvcmswishlist .tvwishlist-info .tvwishlist-view-name a{
  color: #222222;
   font-weight: 400;
    font-size: 14px;
}
.tvcmswishlist .tvwishlist-titel-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    color: #222222;
}
.tvcmswishlist .wishlist_default p{
   margin: 0;
}

.tvcmswishlist .wishlist_delete a{
    color: #222;
}
.tvcmswishlist .tvwishlist-back-btn .btn-back-to-account i{
  font-size: 1rem;
}
.tvcmswishlist .tvwishlist-back-btn .btn-home i{
  font-size: 1rem;
}
.tvcmswishlist .tvwishlist-back-btn .btn-back-to-account{
    box-shadow: none;
    background-image: none;
    border: none;
    background-color: transparent;
    font-size: 14px;
    color: #666;
    height: 38px;
    line-height: 38px;
    float: left;
}
.tvcmswishlist .tvwishlist-back-btn .btn-back-to-account:hover{
    color: #000;
}
.tvcmswishlist .tvwishlist-back-btn .btn-home{
   box-shadow: none;
    background-image: none;
    border: none;
    background-color: transparent;
    font-size: 14px;
    color: #222;
    color: #666;
    height: 38px;
    line-height: 38px;
    float: left;
     margin: 0 15px;
}
.tvcmswishlist .tvwishlist-back-btn .btn-home:hover{
    color:#000;
}
.tvcmswishlist .tvwishlist-back-btn .btn-back-to-account:focus {
   border:none;
}
#module-tvcmswishlist-mywishlist .form-group{
  overflow: hidden;
}
.tvwishlist-vuew-label, .tvwishlist-vuew-input{
  padding: 0;
  margin-top: 5px;
}
@media (max-width: 767px){
  .table {
    display: block; 
    width: 100%; 
    min-height: 0; 
    overflow-x: auto;
  }
  .tvwishlist-vuew-label input{
    padding: 0;
  }
}



#module-tvcmswishlist-view .wlp_bought_list li{
    padding: 0 10px;
    margin-bottom: 10px;
}

#module-tvcmswishlist-view .wlp_bought_list li .row{
  border: 1px solid #eee;
  padding: 10px 0;
}
#module-tvcmswishlist-view .wlp_bought_list li button{
  background-color: #fa6678;
  padding: 5px 15px;
  color: #000;
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 400;
  -webkit-transition: 0s ease-in-out;
  -o-transition: 0s ease-in-out;
  -ms-transition: 0s ease-in-out;
  -moz-transition: 0s ease-in-out;
  transition: 0s ease-in-out;
}
#module-tvcmswishlist-view .wlp_bought_list li button:hover{
    background:#000;
    color: #ffffff;
}
#module-tvcmswishlist-view .wlp_bought_list li .btn_action form{
  float: left;
}
#module-tvcmswishlist-view .wlp_bought_list li .lnk_view{
   background-color: #fa6678;
  padding: 5px 15px;
  color: #000;
  float: right;
  font-size: 12px;
    -webkit-transition: 0s ease-in-out;
  -o-transition: 0s ease-in-out;
  -ms-transition: 0s ease-in-out;
  -moz-transition: 0s ease-in-out;
  transition: 0s ease-in-out;
}
#module-tvcmswishlist-view .wlp_bought_list li .ajax_add_to_cart_button{
   background-color: #fa6678;
  padding: 5px 15px;
  color: #ffffff;
  float: left;
  font-size: 12px;
    -webkit-transition: 0s ease-in-out;
  -o-transition: 0s ease-in-out;
  -ms-transition: 0s ease-in-out;
  -moz-transition: 0s ease-in-out;
  transition: 0s ease-in-out;
}
#module-tvcmswishlist-view .wlp_bought_list li .ajax_add_to_cart_button span,
#module-tvcmswishlist-view .wlp_bought_list li .lnk_view span
{
    -webkit-transition: 0s ease-in-out;
  -o-transition: 0s ease-in-out;
  -ms-transition: 0s ease-in-out;
  -moz-transition: 0s ease-in-out;
  transition: 0s ease-in-out;
}
#module-tvcmswishlist-view .wlp_bought_list li .ajax_add_to_cart_button:hover{
    background-color: #000;
    color: #ffffff;
}

#module-tvcmswishlist-view .wlp_bought_list li .lnk_view:hover{
    background:#000;
    color: #ffffff;
}

@media (max-width: 991px){
    .tvcmswishlist .tvwishlist-info th{
        font-size: 13px;
    }
    .tvcmswishlist .tvwishlist-info td{
        font-size: 12px;
    }
}
@media(min-width: 320px) and (max-width: 475px){
    #module-tvcmswishlist-view .wlp_bought_list li .lnk_view{
        float: none;
        margin-top: 10px;
        font-size: 13px;
    }
    #module-tvcmswishlist-view .wlp_bought_list li button{
        font-size: 13px;
    }
}

@media (min-width: 768px) and (max-width: 1399px){
    #module-tvcmswishlist-view .wlp_bought_list li .lnk_view{
        margin-top: 10px;
    }
}

/******************************END WISHLIST******************************/

/******************************START SITEMAP******************************/

.tvcmssitemap .tvsitemap ul li a{
   color: #222;
   font-size: 13px;
   -webkit-transition: 0.3s ease-in-out;
   -o-transition: 0.3s ease-in-out;
   -ms-transition: 0.3s ease-in-out;
   -moz-transition: 0.3s ease-in-out;
   transition: 0.3s ease-in-out;
}

.tvcmssitemap .tvsitemap ul li a:hover{
  color: #000;
  margin-left: 5px;
}
.tvcmssitemap .tvsitemap ul li a:before {
  font-family: 'Material Icons';
  content: '\e315';
}
.tvcmssitemap .tvsitemap-titel-name{
    color: #656565;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    width: 100%;
    height: 35px;
}
@media (max-width: 767px){
  .tvcmssitemap .tvsitemap{
    margin-bottom: 20px;
  }
}
/******************************END SITEMAP******************************/

/******************************START  CREATE AN ACCOUNT******************************/

.tvall-page-content .tvcmsregister-form{
}
.tvcmsregister-form .form-control-valign label{
  margin-right: 15px;
}
.tvall-page-content .tvcmsregister-form p{
}
.tvcmsregister-form .form-control-comment{
   padding-top: 10px;
   display: block;
}
.tvinformation-lable em{
  margin-top: 10px;
  display: block;
}
/******************************END  CREATE AN ACCOUNT******************************/

/***********process all inner page**********************/

.tvall-inner-page-box{
    box-shadow: none;
    background-color: transparent;
    
}
.tvall-inner-page-box .tvall-inner-page-process{
  border: 1px solid #eee;
}
#checkout .tvall-inner-page-box .tvall-inner-page-process .form-footer a.btn{
    box-shadow: none;
    background-image: none;
    border: none;
    background-color: #fa6678;
    color: #ff;
    font-size: 13px;
    padding: 5px 16px;
    line-height: 31px;
    -webkit-transition: 0s ease-in-out;
    -o-transition: 0s ease-in-out;
    -ms-transition: 0s ease-in-out;
    -moz-transition: 0s ease-in-out;
    transition: 0s ease-in-out;
    text-decoration: none;
    margin-right: 5px;
}
#checkout .tvall-inner-page-box .tvall-inner-page-process .form-footer a.btn:hover{
    background-color: #222222;
    color: #ffffff;
}


/**************end all inner page********************/

/******************************START BLOG-POST PAGE inner page******************************/

.blog_post_content .post_title{
  font-size: 20px;
    color:#222222;
    font-weight: 600;
}
.tvcms-blog-inner-page .blog_post_content .post_description p{
    font-size: 13px;
    line-height: 17px;
    text-align: justify;
    color: #222;
    letter-spacing: 0.5px;
}
.meta_category a{
   color: #222;
   font-size: 14px;
}

.tvcms-blog-inner-page .btn{
    box-shadow: none;
    background-image: none;
    border: none;
    background-color: #fa6678;
    color: #ffffff;
    font-size: 14px;
    height: 38px;
    width: 120px;
    border-radius: 5px;
    line-height: 38px;
    margin-bottom: 10px;
}
.comments_area .comments_title{
    font-size: 18px;
    color: #222;
    font-weight: 600;
}
.tvcms-blog-inner-page .comment_reply_title{
    font-size: 16px;
    color: #222;
    margin: 15px 0;
    font-weight:600;
}
/******************************START BLOG-POST PAGE inner page******************************/

/****************************START REVIEWS-POPOUOP**************************/


.tvreviews-popup-send-btn button{
     box-shadow: none;
    background-image: none;
    cursor: pointer;
    border: none;
    background-color: #fa6678;
    color: #fff;
    font-size: 14px;
    height: 38px;
    padding: 0 15px;
    vertical-align: baseline;
    text-transform: lowercase;
    font-weight: 500;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.tvreviews-popup-send-btn button:hover{
    background: #000;
    color: #ffffff;
}

.new_comment_form_content .comment_title{
   color: #222;
   font-weight: 500;
   font-size: 14px;
}
.product_name strong{
  font-size: 14px;
}
#new_comment_form_footer .required{
   margin:0;
   color: #000;
   font-size: 14px;
}
.new_comment_form_content h2{
  font-size: 18px;
  color: #222;
  font-weight: 600;
}

/****************************END REVIEWS-POPOUOP**************************/


/****************************START ABOUT US**************************/

.page-heading.bottom-indent{
  font-size: 18px;
  font-weight: 600;
  color: #444;
}
.cms-block h3{
  font-size: 18px;
  font-weight: 600;
  color: #222;
}
.cms-box h3{
  font-size: 18px;
  font-weight: 600;
  color: #222;
}
.cms-block p{
   font-weight: 400;
   font-size: 14px;
   color: #222;
   line-height: 18px;
}
.cms-box .testimonials .inner{
  font-weight: 400;
   font-size: 14px;
   color: #222;
   line-height: 20px;
}
.cms-box p{
   font-weight: 400;
   font-size: 14px;
   color: #222;
   line-height: 20px;
}
/****************************END ABOUT US**************************/

/****************************START LEGAL NOTICE**************************/
.page-cms-5 h2,
.page-cms-5 h3,
.page-cms-4 h2,
.page-cms-4 h3,
.page-cms-3 h2,
.page-cms-3 h3,
.page-cms-2 h2,
.page-cms-2 h3,
.page-cms-1 h2,
.page-cms-1 h3{
   color: #222;
   font-size: 16px;
   font-weight: 500;
   margin-bottom: 10px;
}
.page-cms-5 a,
.page-cms-4 a,
.page-cms-3 a,
.page-cms-2 a,
.page-cms-1 a{
   color: #656565;
}

.page-cms-5 a:hover,
.page-cms-4 a:hover,
.page-cms-3 a:hover,
.page-cms-2 a:hover,
.page-cms-1 a:hover{
  color: #222;
}
/****************************END LEGAL NOTICE**************************/

/****************************START DELIVERY**************************/

.page-cms-1 p,
.page-cms-2 p,
.page-cms-3 p,
.page-cms-4 p,
.page-cms-5 p{
   color: #222;
   font-size: 14px;
   font-weight: 400;
   line-height: 20px;
}

.page-cms-1 li,
.page-cms-2 li,
.page-cms-3 li,
.page-cms-4 li,
.page-cms-5 li{
  line-height: 20px;
}
/****************************END DELIVERY**************************/

/****************************START FORGET PASSWORD**************************/
.tvcmsforget-password .btn{
    box-shadow: none;
    background-image: none;
    border: none;
    background-color: #fa6678;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    height: 38px;
    line-height: 38px;
}
.tvcmsforget-password .btn:hover{
    background: #222222;
    color: #ffffff;
}
.tvcmsforget-password .required{
    font-size: 14px;
    color: #222;
    width: auto;
}
.send-renew-password-link{
  color: #222;
  font-size: 13px;
}
.page-footer  button{
    box-shadow: none;
    background-image: none;
    border: none;
    background-color: #fa6678;
    color: #ffffff;
    font-size: 14px;
    height: 38px;
    line-height: 38px;
    line-height: normal;
    cursor: pointer;
    transition: 0s;
}
.page-footer  button i{
    font-size: 14px !important;
    height: 38px;
    line-height: 38px;
    transition: 0s;
}
.page-footer  button:hover{
    background:#333;
    color: #ffffff;
}
/****************************END FORGET PASSWORD**************************/

/*****************************START CREATE NEW ADDRESS******************************/
.tvcms-box-layout .form-footer .btn{
    box-shadow: none;
    background-image: none;
    border: none;
    background-color: #fa6678;
    color: #ffffff;
    font-size: 13px;
    padding:2px 12px;
    line-height: 38px;
    letter-spacing: 0.5px;
}
.tvcms-box-layout .form-footer a.btn{
    box-shadow: none;
    background-image: none;
    border: none;
    background-color: #fa6678;
    color: #ffffff;
    font-size: 13px;
    padding:2px 16px;
    line-height: 38px;
    margin:0 10px;
    text-decoration: none !important;
}
.tvcms-box-layout .form-footer .btn:hover{
    background: #000;
}
.tvcms-box-layout .form-control-label{
    font-size: 13px;
    font-weight: 500;
    color: #222222;
}
.tvcms-box-layout .form-control-valign{
  color: #777777;
  font-size: 13px;
}
/*****************************END CREATE NEW ADDRESS******************************/

/****************************START BLOG REPLY-FORM **************************/

#tvcmsblogs_commentfrom label{
  font-size: 13px;
  color: #222222;
  font-weight: 500;
}
@media (max-width: 767px){
  #tvcmsblogs_commentfrom label{
    padding-bottom: 10px;
  }
}
/****************************END BLOG REPLY-FORM **************************/


/****************************START FOOTER-PAGE **************************/
.page-footer a{
  color: #6f6f6f;
  font-size: 14px;
}
.page-footer a:hover{
    color: #000;
}
/****************************END FOOTER-PAGE*********************************/

/****************************START PRODUCTS CART-POPUP**************************/
 
.tvcmsproduct-cart-popup .tvproduct-cart-btn button{
    box-shadow: none;
    background-image: none;
    border: none;
    height: 38px;
	color: #1c0303;
	background-color: #fec692;
	padding: 5px 10px;
	border-radius: 990px;
	font: 400 18px/28px 'Signika', cursive;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.tvcmsproduct-cart-popup .tvproduct-cart-btn a.btn{
    box-shadow: none;
    background-image: none;
    border: none;
    height: 38px;
    width: 195px;
	color: #1c0303;
	background-color: #fec692;
	padding: 5px 10px;
	border-radius: 990px;
	font: 400 18px/28px 'Signika', cursive;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.tvcmsproduct-cart-popup .tvproduct-cart-btn a.btn:hover,
.tvcmsproduct-cart-popup .tvproduct-cart-btn button:hover{
   color: #fff;
  background: #1c0303;
}
#blockcart-modal .cart-content .cart-content-btn i,
.tvproduct-cart-btn a i{
  font-size: 24px;
  margin: 0 7px;
  line-height: 0.75em;
}
/****************************END PRODUCTS CART-POPUP**************************/


/****************************START ORDER HISTORY*********************/

/****************************END ORDER HISTORY*********************/


/*****************************START PROCCES******************************/

/************************START SHOPING CART********************/
.cart-detailed-actions button.btn{
    box-shadow: none;
    background-image: none;
    border: none;
    line-height: 38px;
    padding:2px 16px;
}
.checkout button.btn{
    box-shadow: none;
    background-image: none;
    border: none;
    line-height: 38px;
    padding:2px 16px;
}
#identity .form-footer button{
}
.tvcmswishlist .tvwishlist-btn .btn{
  height: 36px;
  width: 80px;
  background-color: #fa6678;
 color: #ffffff;
  font: 500 14px/normal 'Cabin',sans-serif;
  -webkit-transition: 0s ease-in-out;
  -o-transition: 0s ease-in-out;
  -ms-transition: 0s ease-in-out;
  -moz-transition: 0s ease-in-out;
  transition: 0s ease-in-out;

}
.tvcmsshopping-cart a.btn:hover,
.cart-grid-right .cart-detailed-actions a.btn:hover,
#checkout .tvall-inner-page-box .tvall-inner-page-process .form-footer button:hover,
.tvlogin-btn .btn:hover,
.tvcmsaddress-process button.btn:hover,
.delivery-options-list button:hover,
#payment-confirmation button.btn:hover,
#identity .form-footer button:hover,
#order-detail .form-footer button:hover,
.tvcmswishlist .tvwishlist-btn .btn:hover,
.tvyour-account-btn .tvyour-account-signout.btn:hover,
.tvcmscontact-us .tvcontact-us-button .btn:hover,
.tvcmsregister-form .form-footer .btn:hover{
}
.tvcmsshopping-cart a i{
    font-size: 16px;
    height: 40px;
    line-height:38px;
    transition: 0s;
}
.tvcmsshopping-cart .remove-from-cart i{
    font-size: 16px;
}

.cart-grid-right .cart-detailed-actions a i{
    font-size: 16px;
    height: 40px;
    line-height: 38px;
}
.cart-grid-right .cart-detailed-actions a.btn span,
.cart-grid-right .cart-detailed-actions a.btn i{
  transition: 0s;
}
.cart-grid-right .tvproduct-customer-services td,
.tvproduct-customer-services td{
   border:1px solid #eee;
   padding:5px 5px;
   font-size: 14px;
   line-height: 22px;
   font-family: 'IBM Plex Sans', sans-serif;
}
.tvproduct-customer-services-wrapper .tvproduct-customer-services-item img{
   height: 25px;
   width: 25px;
   margin-right: 5px;
}
.tvcmsshopping-cart{
  padding-left: 0;
}
.tvcmsshopping-cart .card{
   background-color: transparent  !important;
   border: 1px solid #f5f5f5;
   padding: 15px;
}
.tvcmsshopping-cart .card .card-block{
  padding: 0;
}
.tvcmsshopping-cart .product-line-grid-body{
  line-height: 22px;
}
.tvcmsshopping-cart .product-line-grid-body .product-line-info{
  line-height: 18px;
  margin-bottom: 5px;
}
.tvcmsshopping-cart .product-line-grid-body .card-block{
  padding:0 15px;
}
.tvcmsshopping-cart .product-line-grid-body .product-line-info a{
}
.tvcmsshopping-cart .product-line-grid-body .product-line-info a:hover{
}
.tvcmsshopping-cart .product-line-info .product-discount .regular-price{
}
.tvcmsshopping-cart .product-line-info .product-discount .discount-percentage{
    margin: 0 5px;
}
.tvcmsshopping-cart .product-line-info .current-price span{
}
.tvcmsshopping-cart .current-price,
.tvcmsshopping-cart .product-discount{
  float: left;
}
.tvcmsshopping-cart .product-line-info .label,
.tvcmsshopping-cart .product-line-info .value{
}
.tvcmsaddress-process .address-item .address-alias{
}
.tvcmsaddress-process .address-item .addres{
}
/**********************END SHOPING CART******************/

/************************START Personal Information *******************/


.tvcmspersonal-information .form-control-comment{
    padding-top: 10px;
    display: block;  
}
.tvcmspersonal-information  .custom-checkbox span{
  float: left;
}
.tvcmspersonal-information .tvinformation-lable{
   display: block;
   clear: none;
}
#checkout-personal-information-step .nav .nav-item .nav-link{
   cursor: pointer;
}
#checkout-personal-information-step .nav .nav-item .nav-link:hover{
}

.tvcmspersonal-info-process label{
}
.tvcmspersonal-info-process label em{
}
.tvcmspersonal-info-process .tvlogin-from-btn .btn{
}
@media (max-width: 767px){
    #identity .form-group .col-md-6,
     #address .form-group .col-md-6{
        width: 100%;
    }
}

/************************ END Personal Information *******************/

/**************************START 2ADDRESS process***********************/

#checkout-personal-information-step .delivery-addresses .address-item{
  background-color: transparent;
}
.tvshipping-address-process a{
    color: #222;
    font-size: 14px;
    font-weight: 400;
} 

.cart-summary-products .tvshow-detail-process a{
    color: #222;
    font-size: 14px;
    font-weight: 500;
}
/**************************END 2ADDRESS process***********************/

/**************************START SHIPPING***************************/ 


.delivery-options-list .carrier-name{
}
/**************************END SHIPPING***************************/ 
#checkout-payment-step .condition-label label{
}

#checkout-payment-step .condition-label a{
}

.delivery-options-list .form-fields #delivery label{
}

/************************START order-confirmation  *******************/

.order-confirmation-table .order-line a{
}
#order-confirmation .definition-list p a{ 
 }


/******shiping methhod ***********/

.summary-selected-carrier{
  line-height: 50px;
}
.checkout-payment-step .order-summary-content h4{
}

#order-confirmation .order-confirmation-table .order-line .qty{
}
@media (max-width: 1199px){
   #order-confirmation .order-confirmation-table .order-line .details{
    }
    #order-confirmation .order-confirmation-table .order-line .qty{
    }
    #order-confirmation .order-confirmation-table .tvprocess-payment-price-text{
    }
    #order-confirmation .order-confirmation-table .order-line .qty{
    }
}

@media (min-width: 1200px) and (max-width: 1399px){
    #order-confirmation .order-confirmation-table .order-line .qty{
    }
      #order-confirmation .order-confirmation-table .order-line .details{
    }
    #order-confirmation .order-confirmation-table .order-line .details{
    }
}

.page-order-confirmation table tr,
.page-order-confirmation table td{
}
.page-order-confirmation .tvtheme-control-wrapper table tr,
.page-order-confirmation .tvtheme-control-wrapper table td
{
}

.page-order-confirmation #order-details .card-title{
}

.page-order-confirmation #order-details ul li
{
}
.page-order-confirmation #order-details ul li em{
}
/************************END order-confirmation*******************/

/*************************START PAYMENT PROCESS**********************/

.tvall-inner-page-box #order-summary-content .card-title{
   color: #222;
   font-size: 15px;
   font-weight: 500;
}

#order-summary-content h4{
   color: #222;
   font-size: 15px;
   font-weight: 500;
}
#content-hook_order_confirmation a{
   color: #626262;
}
#content-hook_order_confirmation a:hover{
  color: #222;
}
/*************************END PAYMENT PROCESS**********************/

/************************************END PROCCES*******************************************/


/*****************************START LEFT PANNEL******************************/

.block-categories .category-sub-menu li[data-depth="0"] > a:hover{
  color: #222;
}
.block-categories .category-sub-menu .category-sub-link:hover{
  color: #222;
}
.tvcms-leftpanel-category ul {
    margin-bottom: 0;
}

#search_filters h4{
  font-weight: 500;
}
#search_filters .js-search-filters-clear-all{
  color: #fff;
  font-size: 14px;
  background-color: #444;
  margin-bottom: 10px;
}
.tvcms-leftpanel-category .tv-leftpanel-category li a{
  font-size: 15px;
  font-weight: 400;
  color: #444;
}
.tv-leftpanel-category i{
  font-size: 15px;
  color: #626262;
}

.tvcms-leftpanel-filter h1{
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.tv-leftpnael-filter li a{
   font-size: 13px;
   font-weight: 400;
   margin-bottom: 5px; 
}
.tv-leftpnael-filter li a:hover{
  color: #fa6678;
}
.tv-leftpnael-filter .custom-checkbox input[type="checkbox"] + span:hover{
    border: 1px solid #000;
}

#left-column .tvcmsleft-special-product .tvleft-special-product-title,
#left-column .tvcmsleft-new-product .tvleft-new-product-title,
#left-column .tvcmsleft-testimonial .tvleft-testimonial-title-box,
#left-column #search_filters_suppliers .tvbrandleft-penal-title-mobile,
#left-column #search_filters_brands .tvbrandleft-penal-title-mobile,
#search_filters .tvfilter-desktop-title,
.category-top-menu .tvcategory-inner-page-title,
#facet_blog_category .tvblock-categoryleft-title
{
  background: #fafafa none repeat scroll 0 0;
  border-bottom: 1px solid #eee;
  font: 600 16px/40px 'Cherry Swash', cursive;  color: #222222;
  height: 40px;
  padding: 0 10px;
  overflow: hidden;
  text-transform: capitalize;
}
#left-column #search_filters_suppliers .facet-label a,
#left-column #search_filters_brands .facet-label a{
  color: #222222;
}
#left-column #search_filters_suppliers .facet-label a:hover,
#left-column #search_filters_brands .facet-label a:hover{
  color: #222222;
}
#left-column #search_filters_suppliers .tvleft-contant,
#left-column #search_filters_brands .tvleft-contant,
#facet_blog_category .tvleft-penal-all-block-category{
  padding: 10px;
}
#left-column #search_filters_suppliers .tvleft-contant p,
#left-column #search_filters_brands .tvleft-contant ul,
#facet_blog_category .tvleft-penal-all-block-category ul{
  margin: 0;
  color: #626262;
  font-size: 13px;
  font-weight: 400;
  font-family: 'IBM Plex Sans', sans-serif;
}
#left-column #search_filters_brands .tvleft-contant ul .facet-text a{
  margin-bottom: 10px;
  text-align: left;
}
#left-column #search_filters_brands .tvleft-contant ul .facet-text:last-child a{margin-bottom: 0;}
#left-column .tvcmsleft-testimonial .tvleft-testimonial-title-box .facet-label{
  float: left;
}
.tvleftpannel-testimonial-pagination .tvcmsmain-prev,.tvleftpannel-testimonial-pagination .tvcmsmain-next{margin: 0;}
#search_filters_brands .facet ul li a,
#search_filters_suppliers .facet ul li a,
#search_filters_blog_category .facet ul li a{
  color: #626262;
  font-size: 13px;
  font-weight: 400;
}

#search_filters_brands .facet ul li a:hover,
#search_filters_suppliers .facet ul li a:hover,
#search_filters_blog_category .facet ul li a:hover{
  color: #222;
}
@media (max-width: 767px){
  #left-column .tvcmsleft-special-product .tvleft-special-product-title,
  #left-column .tvcmsleft-new-product .tvleft-new-product-title,
  #left-column .tvcmsleft-testimonial .tvleft-testimonial-title-box,
  #left-column #search_filters_suppliers .tvbrandleft-penal-title-mobile,
  #left-column #search_filters_brands .tvbrandleft-penal-title-mobile,
  #search_filters .tvfilter-desktop-title,
  .category-top-menu .tvcategory-inner-page-title{
    border-bottom: 1px solid #f5f5f5;
  }
}
/*****************************END LEFT PANNEL******************************/

/*************************START pagination*****************************/
.pagination .page-list .tvpage-list-pagination a i{
  font-size: 20px;
}
.pagination .page-list .tvpage-list-pagination a{
    border: 1px solid #eee;
    width: 35px;
    height: 35px;
    line-height: 33px;
    font-size: 14px;
    display: block;
    float: left;
    margin: 0 2px;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -ms-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    text-align: center;
}
.pagination .page-list .tvpage-list-pagination a:hover{
  background: #fa6678;
  color: #ffffff;
  border: 1px solid #fa6678;
}
.pagination .page-list .current a{
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
}
/*************************END pagination*****************************/

/*********************START all page******************/
#index .tvcmspage-footer-link{
   display: none;
}
/*.tvcmspage-footer-link{
  padding: 15px 0;
}*/

/*********************END all page******************/

/**************start your account*******************/
.tvyour-account-btn {
    text-align: center;
}


/**************end your account*******************/




/****************************START PRODUCT VIWE  INNRE PAGE*******************************/

.tvproduct-detail-popup-content .tvcmsquick-view-popup-title{
   font-size: 20px;
   color: #343434;
   text-transform: capitalize;
   font-family: 'Cherry Swash', cursive;
}
.tvproduct-detail-popup-content .tvcurrent-price{
    float: left;
    font-size: 14px;
    color: #242424;
    margin: 5px 0;
}
.tvproduct-detail-popup-content .discount-amount{
      float: left;
    margin: 0 10px;
    line-height: 25px;
    background-color: #000;
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    padding: 0 5px;
}
.tvproduct-detail-popup-content .discount-percentage{
    float: left;
    background-color: #48494a;
    margin: 0 10px;
    color: #FFF;
    padding: 5px;
    font-weight: 400;
    font-size: 12px;
}
.tvproduct-detail-popup-content .product-discount{
    float: left;
    font-size: 14px;
    margin: 5px 0;
}
.tvproduct-detail-popup-content .tax-shipping-delivery-label{
    margin-top: 10px;
    font-size: 14px;
    color: #222;
}
.tvproduct-detail-popup-content .product-description-short{
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin: 10px 0;
}
.tvproduct-detail-popup-content .product-description-short p{
  margin: 0;
}
.tvproduct-detail-popup-content .product-variants-item .control-label{
    float: left;
    font-size: 14px;
    font-weight: 600;
    line-height: 38px;
    width: 21%;
}
.tvproduct-detail-popup-content .product-variants-item .form-control-select{
    float: left;
    padding-right: 15px;
}
.tvproduct-detail-popup-content .product-variants-item ul {
    overflow: hidden;
    margin: 0;
}
.tvproduct-detail-popup-content .product-variants-item ul li{
    margin: 10px 5px;
    width: 16px;
    height: 16px;
}
.tvproduct-detail-popup-content .product-add-to-cart .control-label{
    font-size: 14px;
    color: #333;
    font-weight: 600;
    float: left;
    width: 21%;
    line-height: 44px;
}
.tvproduct-detail-popup-content .tvquick-view-add-to-cart{
    float: left;
}
.tvproduct-detail-popup-content .tvquick-view-add-to-cart button {
    background-color: #242424;
    padding: 8px 10px;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    text-transform: capitalize;
}
.tvproduct-detail-popup-content .tvquick-view-add-to-cart button:hover{
    background: #fa6678;
    color: #fff;
}
.tvproduct-detail-popup-content .tvquick-view-add-to-cart i{
    font-size: 16px;
    line-height: 15px;
    transition: 0s;
}
.tvproduct-detail-popup-content .tvproduct-view-content{
    margin-top: 15px;
    overflow: hidden;
}
.tvproduct-detail-popup-content .tvproduct-view-content #product-availability{
    margin: 0 5px;
    line-height: 26px;
}
.tvproduct-detail-popup-content #wishlist_button button{
  background-color: transparent;
  border: none;
}
.tvproduct-detail-popup-content #wishlist_button i{
    color: #222222;
    font-size: 18px;
}
.tvproduct-detail-popup-content #wishlist_button span{
    color: #222222;
    font-size: 14px;
}
.tvproduct-detail-popup-content #wishlist_button:hover span,
.tvproduct-detail-popup-content #wishlist_button:hover i{
    color: #fa6678;
    color: #ffffff;
}
 .tvsocial-sharing{
    width: 100%;
    overflow: hidden;
    margin-top:15px;
}
.tvproduct-detail-popup-content .product-additional-info{
  margin-top: 10px;
}
.tvproduct-detail-popup-content .tvcompare-wrapper{
  display: inline-block;
}
.tvproduct-detail-popup-content #wishlist_button{
  display: inline-block;
}
.tvsocial-sharing ul{
    margin-bottom: 0;
}


.tvsocial-sharing ul li a{
    width: 35px;
    height: 35px;
    background-color: #fa6678;
    margin: 0 8px 0 0;
    float: left;
    text-align: center;
    line-height: 35px;
}
.tvsocial-sharing ul li span:before{
   color: #ffffff;
   font-size: 16px;
   height: 35px;
   line-height: 35px;
}
.tvsocial-sharing ul li a:hover{
  background: #000 none no-repeat scroll 0 0;
}
.tvsocial-sharing ul li a:hover span:before{
  color: #FFF;
}
.tvproduct-detail-popup-content .modal-footer{
    margin-top: 15px;
    overflow: hidden;
}
.tvproduct-detail-popup-content .panel-product-line{
    margin: 0;
    float: left;
}
.tvproduct-detail-popup-content .modal-footer .js-productinfo{
    display: none;
}
.tvproduct-content .tvproduct-customer-services{
    float: left;
    width: 100%;
    margin-top: 20px;
}
.tvproduct-detail-popup-content .tvcompare-wrapper button.tvcmsproduct-compare-btn{           
    background-image: none;
    border: none;
    color: #222222;
    background-color: transparent;
    font-weight: normal;
    text-transform: none;
    float: left;
    padding: 0 5px;
}
.tvproduct-content .tvproduct-customer-services .tvproduct-customer-services-title{
    color: #666;
    font-size: 13px;
} 
.tvproduct-content  .tvproduct-customer-services-item { 
    border: 1px solid #e9e9e9;
    padding: 10px;
}
.tvproduct-content  .tvproduct-customer-services-item img{
    margin-right: 8px;
}
.tvproduct-content .product-manufacturer{
   float: left;
   padding-right: 10px;
}
.tvproduct-detail-popup-content .product-features td{
   border:1px solid #eee;
   padding: 8px;
}
.tvproduct-detail-popup-content .tvproduct-compare i{
  font-size: 18px;
}
.tvproduct-detail-popup-content .tvproduct-compare span{
  font-size: 14px;
}

.tvproduct-content #wishlist_button:hover span,
.tvproduct-content #wishlist_button:hover i,
.tvproduct-content .tvproduct-compare:hover i,
.tvproduct-content .tvproduct-compare:hover span,
.modal-dialog .modal-footer #wishlist_button:hover span,
.modal-dialog .modal-footer #wishlist_button:hover i,
.modal-dialog .modal-footer .tvproduct-compare:hover i,
.modal-dialog .modal-footer .tvproduct-compare:hover span
{
  color: #fa6678;
}


@media (max-width: 575px){
   .tvproduct-detail-popup-content .product-add-to-cart .control-label{
        width: 25%;
    }
    .tvproduct-detail-popup-content .product-add-to-cart .control-label,
    .tvproduct-detail-popup-content .product-variants-item .control-label{
        width: 35%;
    }
}

/****************************START PRODUCT VIWE  INNRE PAGE*******************************/

/*************************************START MAIN-BLOCK************************************/
.tvcmsmain-block{
   background-image:url(../img/themevolty/Banner.jpg);
   padding: 20px 0;
   position: relative;
   background-size: cover;
   background-position: center right;
}
.tvcmsmain-block .tvmain-block{
  overflow: hidden;
}
.tvcmsmain-block .tvmain-block-img,
.tvcmsmain-block .tvmain-block-content-box{
  text-align: right;
}
.tvcmsmain-block img{
  max-width: 100%;
  width: auto;
}

.tvcmsmain-block .tvmain-block-info{
  text-align: center;
}
.tvcmsmain-block .tvmain-block-title{
  font: 500 45px/normal 'Cherry Swash', cursive;  
  text-transform: capitalize;
  margin-bottom: 15px;
  color: #333333;
}
.tvcmsmain-block .tvmain-block-sub-title{
    color: #333333;
    font: 600 60px/normal 'Cherry Swash', cursive;    
    text-transform: capitalize;
}
.tvcmsmain-block .tvmain-block-desc{
  font: 400 14px/23px ;  color: #888888;
  display: block;
  height: 65px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -ms-line-clamp: 3;
  -o-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  overflow: hidden;
}
.tvcmsmain-block .tvmain-block-btn button span{
    font: 400 24px/normal ;
    text-transform: capitalize;
}
.tvcmsmain-block .tvmain-block-btn button .tvblock-btn-icon i{
    font-size: 16px;
    line-height: 24px;
    height: 24px;
    margin-left: 5px;
}
.tvmain-block-btn {
  display: block;
  margin-top: 30px;
}
.tvcmsmain-block a{
  display: block;
}

.tvcmsmain-block .tvmain-block-btn button{
    cursor: pointer;
    border: none;
    background: transparent none repeat scroll 0 0;
    color: #fff;
    border: 2px solid #ffffff;
    padding: 3px 25px;
}
.tvcmsmain-block .tvmain-block-btn button:hover{
    color: #222222;
    border: 2px solid #222222;
}
.tvcmsmain-block .tvmain-block-desc p{
  margin: 0 0;
}
@media(min-width: 992px) and (max-width: 1399px){
  
  .tvcmsmain-block .tvmain-block-btn button{
    margin-top: 30px;
  }
}
@media(max-width: 991px){
  .tvcmsmain-block .tvmain-block-img{
    margin-bottom: 30px;
  }
  .tvcmsmain-block{
    text-align: center;
  }
}
@media(min-width: 768px) and (max-width: 991px){
  .tvcmsmain-block img{
    width: auto;
  }
}
@media(max-width: 990px){
	.tvmain-block-inner-box .tvbanner-hover-wrapper {
		padding: 0 0;
		display: none
	}
}
@media(min-width: 768px){
  .tvcmsmain-block .tvmain-block-wrapper{
  }
  
  .tvcmsleft-offer-banner #facet_special{
      display: block;
  }
  .tvcmsleftpannel-testimonial-slider #facet_testimonial{
      display: block;
  }
  #search_filters_brands #facet_brand{
      display: block;
  }
  #search_filters_blog_category #facet_blog_category{
      display: block;
  }
  #search_filters_suppliers #facet_suppliers{
      display: block;
  }
  .tvcmsleft-featured-product #facet_featured_product{
      display: block;
  }
  .tvcmsleft-new-product #facet_new_product{
      display: block;
  }
  .tvcmsleft-special-product #facet_special_product{
      display: block;
  }
}
@media(max-width: 767px){
  .tvcmsmain-block .tvmain-block-info{
    padding: 0;
  }
  .tvcmsmain-block .tvmain-block-content-box{
    padding: 15px 0;
  }
  .tvcmsmain-block .tvmain-block-title{
    font-size: 36px;
  }
  .tvcmsmain-block .tvmain-block-sub-title{
    font-size: 40px;
  }
  .tvcmsmain-block .tvmain-block-btn button{
    padding: 2px 10px;
  }
  .tvcmsmain-block .tvmain-block-img{
    text-align: center;
  }
}
@media(max-width: 575px){
  .tvcmsmain-block .tvmain-block-title{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .tvcmsmain-block .tvmain-block-sub-title{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .tvcmsmain-block .tvmain-block-btn button{
    padding: 0 8px;
  }
  
}

.tvproduct-wrapper .tvproduct-hover .tvproduct-wishlist {
    display: none;
}
.wishlist-button-add {
    position: absolute;
    top: 2%;
    right: 2%;
}
/*************************************END MAIN-BLOCK***********************************

/*************************************	CUSTOM		***********************************/
.row {
	margin-left: -15px;
	margin-right: -15px;}
body {
	font: 400 17px/normal 'Signika', cursive;
	color: #1c0303;
	letter-spacing: 0;
	max-width: 100vw;
	overflow-x: hidden}
a,
.btn,
button {
	color: #1c0303;
	-webkit-transition: 0.36s ease-in-out;
    -o-transition: 0.36s ease-in-out;
    -ms-transition: 0.36s ease-in-out;
    -moz-transition: 0.36s ease-in-out;
    transition: 0.36s ease-in-out;}
a:hover {	color: #a0c4c2}
#footer {
	z-index: 2;
	position: relative;
	overflow: visible}
.tvcms-loading-overlay .tvcms-loading-inner img {	max-width: 4em;}
.custom-checkbox {	font: 400 13px/normal 'Signika', cursive}
.tvcmsheader {
	background: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000}
#header,
#header .header-top,
#index .tvcmsheader,
.tvcmsheader {
	background: none;
	background-color: initial;
	padding: 10px 0}
	
	@media (max-width: 1199px) {
		body #header {
			-webkit-transition: all 0.3s ease-in-out;
			-o-transition: all 0.3s ease-in-out;
			-ms-transition: all 0.3s ease-in-out;
			-moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out}
		body.scroll #header,
		body#index.scroll .tvcmsheader,
		body.scroll .tvcmsheader {
			box-shadow: 0 5px 15px rgba(0,0,0,0.05);
			background-color: rgba(255,255,255,0.8);
			backdrop-filter: blur(5px)}
		body.scroll	.tv-mobile-header-logo img {	max-height: 3.5em}
	}

body:not(#index) .tvheader-logo	{
	border-radius: 50%;
	padding: 10px 15px;
	text-align: center;
	height: auto;}
body:not(#index) .tvheader-logo a {
	display: block;
	background: #fff;
	border-radius: 50%;
	padding: 5px;}
body:not(#index) .tvheader-logo img {
	position: initial;
	-webkit-transform: none;
	-o-transform: none;
	-ms-transform: none;
	-moz-transform: none;
	transform: none}
.tvcms-horizontal-menu.sticky {	padding-left: 10%}
.tvcmsheader-top .tvheader-top {	padding: 0 15px}
.tvcms-horizontal-menu ._sticky_logo {
	top: 0 !important;
	float: none;
	width: auto;
	padding: 7px;
	border-radius: 50%;
	background-color: #fec692}
.tvcms-horizontal-menu:not(.sticky) ._sticky_logo {	display: none}
.tvcms-horizontal-menu.sticky ._sticky_logo {	display: block}
.tvheader-top-position {	box-shadow: none}
header .container > .row {	margin-right: 0}
.tvcms-horizontal-menu > ul > li {	position: relative}
.tvcms-horizontal-menu > ul > li > a {
	color: #1c0303;
	text-transform: none;
	font: 600 17px/50px 'Akaya Kanadaka', cursive}
.tvcms-horizontal-menu > ul > li > .sub-menu {
	display: inline !important;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out}
.tvcms-horizontal-menu > ul > li:not(.hover) > .sub-menu {
	max-height: 0;
	left: 50% !important;
	transform: translateX(-50%);
	width: auto !important;
	white-space: nowrap;
	border-top: none;
	color: #1c0303;
	text-transform: none;
	font: 600 20px/25px 'Akaya Kanadaka', cursive;
	top: 103% !important;
	box-shadow: none;
	background-image: none;
	background-color: #fec692;
	padding: 0 10px;
	overflow: hidden;
	display: inline-block !important}
.tvcms-horizontal-menu > ul > li.hover > .sub-menu {
	top: 103% !important;
	left: 50% !important;
	transform: translateX(-50%);
	width: auto !important;
	white-space: nowrap;
	padding: 10px;
	max-height: 100vh;
	-webkit-animation: none;
	-moz-animation: none;
	animation: none}
.tvcms-horizontal-menu > ul > li .tvhorizontal-menu-drop-down-icon,
.tvcmsheader-search .tvheader-search-display-icon .tvsearch-open::after,
.tvcmsmyaccount-user-info-wishlist-compare button i,
.tvheader-shopping-cart-wrapper .tvshopping-cart-icon i,
.tvproduct-detail-popup-content .product-description-short {	color: #1c0303}
body.page-index .tv-mobile-view-header-menu .tvcmsheader-search .tvheader-search-display-icon .tvsearch-open::after {
	-webkit-transition: 0.36s ease-in-out;
	-o-transition: 0.36s ease-in-out;
	-ms-transition: 0.36s ease-in-out;
	-moz-transition: 0.36s ease-in-out;
	transition: 0.36s ease-in-out}
body.page-index:not(.scroll) .tv-mobile-view-header-menu .tvcmsheader-search .tvheader-search-display-icon .tvsearch-open::after,
body.page-index:not(.scroll) .tv-mobile-view-header-menu .tv-mobile-user-info .dropdown-item {	color: #fff}
.tvcms-horizontal-menu.sticky {
	align-items: center !important;
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	background-repeat: repeat-x;
	padding: 0;
	box-shadow: none}
.tvheader-top-all-icon .tvcmsheader-search,
.tvcmsheader-shopping-cart,
.tvheader-top-info .tvcmsmyaccount-user-info-wishlist-compare {	vertical-align: middle}
.tvheader-top-all-icon .tvcmsheader-search {	line-height: 1em}
.tvcmsheader-shopping-cart,
.tvheader-top-info .tvcmsmyaccount-user-info-wishlist-compare {
	height: 60px;
	line-height: 60px}
.tvcmsheader-shopping-cart {
	line-height: 60px;
	height: 60px;
	margin: 0 0 0}
.tvcmsheader-shopping-cart .blockcart {
	background-image: url('https://www.laboutiqueduhamster.com/themes/ps_cake_149/assets/img/themevolty/panier.jpg') ;
	background-position: center;
	background-size: 115%;
	background-repeat: no-repeat}
.tvcmsheader-shopping-cart .blockcart {
	line-height: 60px;
	border-radius: 50%}
.tvheader-shopping-cart-wrapper .tvshopping-cart-icon i {
	line-height: 60px;
	font-size: 60px;
	opacity: 0}
.tvcmsheader-shopping-cart .blockcart .tvcart-no-product {	cursor: default}
.tvcmsheader-shopping-cart .blockcart .tvcart-no-product p {	text-align: center}
.tvcms-horizontal-menu .tvheader-sub-menu {
	border-top: none;
	text-align: center;
	color: #1c0303;
	text-transform: none;
	font: 600 20px/25px 'Akaya Kanadaka', cursive}
.top-menu .sub-menu ul[data-depth="1"] > li {
	float: none;
	text-align: center;
	display: block;
	margin: 0 5px}
.top-menu .sub-menu ul[data-depth="1"] > li:last-child {	margin-bottom: 0}
.tvcms-horizontal-menu .tvheader-sub-menu li .dropdown-submenu {
	color: #1c0303;
	text-align: center;
	padding: 0 0 0;
	display: block !important;
	text-align: center;
	font: 600 20px/25px 'Akaya Kanadaka', cursive}
.tvcms-horizontal-menu ul > li > a,
.tvcms-horizontal-menu .tvheader-sub-menu ul li a {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 0}
.tvcms-horizontal-menu ul > li > a.dropdown-item,
.tvcms-horizontal-menu .tvheader-sub-menu ul li a.dropdown-item {	padding-right: 10px}
.tvcms-horizontal-menu ul > li > a:hover,
.tvcms-horizontal-menu .tvheader-sub-menu ul li a:hover,
.tvcms-horizontal-menu ul li a:hover i {	color: #3f6a68}
.tvcms-horizontal-menu .tvmain-menu-hover-block::before,
.tvcmscart-show-dropdown::before,
.tvcmscart-show-dropdown::after {
    display: none;
    border-left: none;
    border-right: none;
    border-bottom: none}
.tvcms-horizontal-menu .tvheader-sub-menu,
.myaccount-user-wishlist-compar-wrapper .myaccount-user-wishlist-compar-dropdown {
	top: 102%;
	box-shadow: none;
	background-image: none;
	background-color: #fec692;
	padding: 10px}
.tvcmsmyaccount-user-info-wishlist-compare .dropdown-menu a {
	color: #1c0303;
	text-transform: none;
	text-align: center;
	font: 600 20px/normal 'Akaya Kanadaka', cursive}
.tvcmsmyaccount-user-info-wishlist-compare .dropdown-menu #_desktop_user_info a {
	white-space: nowrap;
	font: 600 20px/normal 'Akaya Kanadaka', cursive}
.tvcmsmyaccount-user-info-wishlist-compare .dropdown-menu #_desktop_user_info div:nth-child(n+2) {	margin-top: 10px}
.tvcms-horizontal-menu > ul > li .tvhorizontal-menu-drop-down-icon {
	height: auto;
	line-height: inherit;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(50%);
	display: block;
	margin: 0 0 0;
	padding: 0 0 0;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	font-size: 1em}
.tvcms-horizontal-menu > ul > li .tvmain-menu-hover-block .tvhorizontal-menu-drop-down-icon {	transform: translateY(-50%) translateX(50%) rotate(180deg)}
.tvcmscart-show-dropdown {
	max-height: 0;
	border-top: none;
	color: #1c0303;
	text-transform: none;
	font: 600 20px/25px 'Akaya Kanadaka', cursive;
	top: 102% !important;
	box-shadow: none;
	background-image: none;
	background-color: #fec692;
	padding: 0 10px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	overflow: hidden;
	display: block}
.tv-mobile-cart .blockcart .tvcmscart-show-dropdown {	background-color: #fff}
.blockcart:hover .tvcmscart-show-dropdown {
	padding: 10px;
	max-height: 100vh;
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	-webkit-animation: none;
	-moz-animation: none;
	animation: none}
.tvcmscart-show-dropdown {	font: 400 16px/normal 'Signika', cursive;}
.tvcmscart-show-dropdown .tvcart-product-content a:hover {	color: #602d2d}
.tvcmscart-show-dropdown .tvcart-product-content .product-name {
	padding:0 30px 0 0;
	display: block;
	font: 600 16px/25px 'Akaya Kanadaka', cursive;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis}
.tvcmscart-show-dropdown .tvcart-product-content .product-quantity {
	display: block;
	font: 400 13px/normal 'Signika', cursive;
	text-align: right}
.tvcmscart-show-dropdown .tvcart-product-list-subtotal {
	text-transform: uppercase;
	font: 400 12px/normal 'Signika', cursive}
.tvcmscart-show-dropdown .tvcart-product-list-total {
	text-transform: uppercase;
	font: 600 17px/normal 'Signika', cursive;
	margin-top: 5px}
.tvcmscart-show-dropdown .tvcart-no-product {	padding: 0}
.tvcmscart-show-dropdown .tvcart-product-list-checkout a i {
	margin-left: 5px;
	vertical-align: bottom}
.tvcmsheader-search .tvserach-header-display-wrappper {
	width: auto;
	border: none;
	border-radius: 0;
	top: 115%}
	
	@media (max-width: 399px) {
		.tvcmsheader-search .tvserach-header-display-wrappper {	min-width: 290px}
	}
	@media (min-width: 400px) {
		.tvcmsheader-search .tvserach-header-display-wrappper {	min-width: 380px}
	}
	
.tvcmsheader-search .tvserach-header-display-wrappper {
	color: #1c0303;
	text-transform: none;
	font: 600 14px/20px 'Signika', cursive;
	top: 102% !important;
	z-index: 500;
	box-shadow: none;
	background-image: none;
	background-color: #fec692}
.tvcmsheader-search form {
	height: auto;
	padding: 0 0 5px 5px}
.search-widget form input[type="text"] {	border-bottom: 1px solid #a6733c}
.search-widget form input[type="text"]:focus {	border-bottom: 1px solid #1c0303}
.search-widget form input[type="text"],
.search-widget form input[type="text"]::placeholder {
	color: #1c0303 !important;
	font: 600 14px/20px 'Signika', cursive;
	background-color: #fec692}
.search-widget form input[type="text"]::placeholder {	opacity: 0.6}
.search-widget form input[type="text"]:focus::placeholder {	opacity: 0}
.tvcmsheader-search .tvcms-select-category {
	color: #1c0303;
	height: auto;
	font: 600 14px/20px 'Signika', cursive;
	text-transform: none;
	padding: 0 15px 0 0;
	cursor: pointer;
	background-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" width="16" height="16"><path fill="%231c0303" d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"></path></svg>')}
.tvcmsheader-search .tvcms-select-category option {	background: #fff;}
.tvcmsheader-search .tvheader-top-search-wrapper button {
	width: 34px;
	padding: 0 0 5px;
	font: 600 14px/28px 'Signika', cursive;
	background: #1c0303;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;}
.tvcmsheader-search .tvheader-top-search-wrapper button:hover {
	color: #1c0303;
	background-color: #a0c4c2}
.tvcmsheader-search .tvheader-top-search-wrapper button i {
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	font-size: 20px}
.tvcmsheader-search .tvheader-top-search-wrapper button:hover i {	color: #1c0303;}
.tvcmscart-show-dropdown .tvcart-no-product h1 {
	color: #1c0303;
	text-transform: none;
	font: 600 14px/20px 'Signika', cursive}
.tv-mobile-cart {
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	margin: 0 0 0 5px;
	vertical-align: top;
	background-image: url('https://www.laboutiqueduhamster.com/themes/ps_cake_149/assets/img/themevolty/panier.jpg');
	background-position: center;
	background-size: 115%;
	background-repeat: no-repeat;
	line-height: 60px;
	border-radius: 50%}
body.scroll .tv-mobile-cart {	line-height: 40px}
.tvheader-shopping-cart-wrapper .tvshopping-cart-icon i {
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out}
.tv-mobile-cart a {	display: inline-block}

@media (max-width: 1199px) {
	body.scroll .tvheader-shopping-cart-wrapper .tvshopping-cart-icon i {
		line-height: 40px;
		font-size: 40px;}
	.tvheader-top-menu {
		 display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: space-between;
		-ms-flex-pack: space-between;
		justify-content: space-between;
		align-items: center;}
}
.tv-mobile-header-logo,
.tvheader-top-menu-wrapper {	width: 50%}

	@media (max-width: 384px) {
		.tv-mobile-header-logo  {	width: 33%}
		.tvheader-top-menu-wrapper {	width: 67%}
	}
	
.tv-mobile-view-header-menu,
.tvheader-mobile-view-all-icon {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    align-items: center;}
.tv-mobile-view-header-menu .tv-mobile-all-cetegories {	margin: 0 5px 0 0}
.tvheader-mobile-view-all-icon > .text-sm-center,
.tv-mobile-user-info {	margin: 0 5px}
.tv-mobile-user-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: flex-end;
	-ms-flex-pack: flex-end;
	justify-content: flex-end;
	align-items: center}
.tvheader-top-menu-wrapper #customer_login {	margin-bottom: 5px}

	@media (max-width: 279px) {
		.tvheader-mobile-view-all-icon > .text-sm-center {	display: none}
	}
	
.tvright-panel-titel,
.tvproduct-wrapper .tvproduct-info-box .tvproduct-title a,
.tvcmscustomer-services .tvservices-title,
.tvtestimonial-title a,
#left-column .tvcmsleft-special-product .tvleft-special-product-title,
#left-column .tvcmsleft-new-product .tvleft-new-product-title,
#left-column .tvcmsleft-testimonial .tvleft-testimonial-title-box,
#left-column #search_filters_suppliers .tvbrandleft-penal-title-mobile,
#left-column #search_filters_brands .tvbrandleft-penal-title-mobile,
#search_filters .tvfilter-desktop-title,
.category-top-menu .tvcategory-inner-page-title,
#facet_blog_category .tvblock-categoryleft-title,
.tvproduct-wrapper .tvproduct-price .tvnew-price,
.tvcmsmain-block .tvmain-block-title,
.tvcmsmain-block .tvmain-block-sub-title,
.tvcmsfooter .tvfooter-title, .tvcmsfooter .tvfooter-title a {
	color: #1c0303;
	font: 600 22px/28px 'Akaya Kanadaka', cursive}
.h6, h6 {
	color: #1c0303;
	font: 600 18px/24px 'Akaya Kanadaka', cursive}
.tvright-panel-titel,
#left-column .tvcmsleft-special-product .tvleft-special-product-title,
#left-column .tvcmsleft-new-product .tvleft-new-product-title,
#left-column .tvcmsleft-testimonial .tvleft-testimonial-title-box,
#left-column #search_filters_suppliers .tvbrandleft-penal-title-mobile,
#left-column #search_filters_brands .tvbrandleft-penal-title-mobile,
#search_filters .tvfilter-desktop-title,
.category-top-menu .tvcategory-inner-page-title,
#facet_blog_category .tvblock-categoryleft-title,
.tvproduct-wrapper .tvproduct-price .tvnew-price {	text-transform: uppercase}
.tvproduct-wrapper .tvproduct-new-box,
.tvproduct-view-img-block .product-flag,
.tvproduct-wrapper .tvproduct-info-box .tvproduct-title a {	text-transform: none}
.tvtestimonial-title a {	color: #fff}
.tvproduct-wrapper .tvproduct-new-box,
.tvproduct-view-img-block .product-flag {	font: 400 15px/normal 'Signika', cursive}
.tvcmscustomer-services .tvservice-dec,
.tvproduct-detail-popup-content .product-description-short,
.tvproduct-wrapper .tvproduct-price .tvnew-price  {	
	color: #1c0303;
	font: 400 16px/normal 'Signika', cursive}
.tvcmscustomer-services .tvservice-dec {	opacity: 0.85}
.tvcmsfooter .tvfooter-block-sub-title li a,
.tvcmsfooter .tvfooter-address,
.tvcmsfooter .tvfooter-contact,
.tvcmsfooter .tvfooter-email,
.tvfooter-contact-fax-wrapper .tvfooter-contact-fax {	font: 400 15px/normal 'Signika', cursive}
.tvtestimonial-dec,
.tvcms-newsletter .tvnewsletter-name,
.tvcms-newsletter .tvnewsletter-input .tvnewsletter-email-address,
.tvcms-newsletter .tvnewsletter-input .tvnewsletter-email-address::placeholder,
.tvnewsletter-email-send-btn {
	color: #fff;
	font: 400 13px/normal 'Signika', cursive}
.tvnewsletter-email-send-btn {
	color: #1c0303;
	background-color: #fec692}
.tvcms-newsletter .tvnewsletter-btn, .tvnewsletter-email-send-btn .tv-mobile-view-btn  {
	font: 400 15px/normal 'Signika', cursive;
	color: #1c0303}
h1, .h1,
.tvcms-main-title .tvtitle {
	text-align: left;
	display: block;
	color: #1c0303;
	text-transform: none;
	font: 600 48px/60px 'Akaya Kanadaka', cursive}
h2, .h2,
.title_blog,
.title_blog a {
	color: #1c0303;
	text-transform: none;
	font: 600 38px/54px 'Akaya Kanadaka', cursive}
h3, .h3 {
	color: #1c0303;
	font: 600 30px/40px 'Akaya Kanadaka', cursive}
h4, .h4,
h4 > a {
	color: #1c0303;
	font: 600 22px/28px 'Akaya Kanadaka', cursive}
	
	@media(max-width: 990px){
		h1, .h1,
		.tvcms-main-title .tvtitle {	font: 600 32px/42px 'Akaya Kanadaka', cursive}
		h2, .h2,
		.title_blog,
		.title_blog a {	font: 600 26px/36px 'Akaya Kanadaka', cursive}
		h3, .h3 {	font: 600 22px/28px 'Akaya Kanadaka', cursive}
		h4, .h4,
		h4 > a {	font: 600 18px/22px 'Akaya Kanadaka', cursive}
	}
	@media (max-width: 768px) {
		.tvcms-newsletter .tvnewsletter-input,
		.tvcms-newsletter .tvnewsletter-input .tvnewsletter-email-address {	height: 38px;}
		.tvcms-newsletter .tvnewsletter-btn,
		.tvnewsletter-email-send-btn .tv-mobile-view-btn  {	font: 400 13px/normal 'Signika', cursive;}
	}
	@media (max-width: 384px) {
		h1, .h1,
		.tvcms-main-title .tvtitle {	font: 600 26px/36px 'Akaya Kanadaka', cursive}
		h2, .h2,
		.title_blog,
		.title_blog a {	font: 600 20px/22px 'Akaya Kanadaka', cursive}
		h3, .h3,
		h4, .h4,
		h4 > a {	font: 600 16px/22px 'Akaya Kanadaka', cursive}
	}
	
.btn.disabled,
.btn:disabled {
	opacity: 0.4;
	background: #fde2ca}
.tvcmsmain-slider .tvmain-slider-title,
.tvcmsmain-slider .tvmain-slider-contant .tvmain-slider-info p {	text-align: center}
.tvspecial-product .all-product-link,
.tvfeatured-product .all-product-link,
.tvnew-product .all-product-link,
.tvbest-seller-product .all-product-link,
.tvcmsfeatured-product .all-product-link {
	color: #1c0303;
	background-color: #fec692;
	padding: 5px 10px;
	border-radius: 990px;
	font: 400 15px/normal 'Signika', cursive;
	text-transform: uppercase}
.tvspecial-product .all-product-link,
.tvfeatured-product .all-product-link,
.tvnew-product .all-product-link,
.tvbest-seller-product .all-product-link,
.tvcmsfeatured-product .all-product-link {
	text-align: center;
	margin-left: 0}
	
	@media (max-width: 768px) {
		.tvspecial-product .all-product-link,
		.tvfeatured-product .all-product-link,
		.tvnew-product .all-product-link,
		.tvbest-seller-product .all-product-link,
		.tvcmsfeatured-product .all-product-link {	font: 400 13px/normal 'Signika', cursive;}
	}
	
.ets_blog_ltr_mode a:hover,
.ets-blog-wrapper-detail a:hover,
.ets-blog-like-span:hover,
.blog-main-page a:hover,
.ets_button_backtolist:hover,
.ets-block-comment-report:hover {	color: #a0c4c2}
.more a:hover,
.tvspecial-product .all-product-link:hover,
.tvfeatured-product .all-product-link:hover,
.tvnew-product .all-product-link:hover,
.tvbest-seller-product .all-product-link:hover,
.tvcmsfeatured-product .all-product-link:hover {
	color: #fff;
	background: #1c0303}
.tvspecial-product .all-product-link i,
.tvfeatured-product .all-product-link i,
.tvnew-product .all-product-link i,
.tvbest-seller-product .all-product-link i,
.tvcmsfeatured-product .all-product-link i {	font-size: 24px}
.tvnewsletter-info .tvall-title {
	color: #fff;
	font: 600 36px/48px 'Akaya Kanadaka', cursive}
.tvcmsmain-block .tvmain-block-title {
	color: #fff;
	font: 600 48px/60px 'Akaya Kanadaka', cursive;
	text-transform: none}	
.tvcmsspecial-product-offer-banner,
.tvcmsofferbanners-two,
.tvcmstab-product,
.tvcmsmultibanners,
.tvcmsmain-block,
.tvcmsbest-seller-product,
.tvcmsfeatured-product,
.row > div:not(#left-column) .tvcmsnew-product,
.tvcmstestimonial,
.tvcmstesimonial-blog-post,
.tvcmscustomer-services {
	margin: 0 0 0;
	padding: 4em 0}
.tvcmsfeatured-product {	padding: 6em 0 4em}
body.page-cart .tvcmsfeatured-product {	padding: 6em 0 0}
.tvcmsnew-product .tvcmshtml-blocks {	padding: 2em 0 4em}
.tvcmsmain-slider-offer-banner {	margin-bottom: 0}
.tvcmsmain-block {	padding: 20px 0}

	@media(max-width: 990px){
		.tvcmsspecial-product-offer-banner,
		.tvcmsofferbanners-two,
		.tvcmstab-product,
		.tvcmsmultibanners,
		.tvcmsmain-block,
		.tvcmsbest-seller-product,
		.tvcmsfeatured-product,
		.row > div:not(#left-column) .tvcmsnew-product,
		.tvcmstestimonial,
		.tvcmstesimonial-blog-post,
		.tvcmscustomer-services {	padding: 2em 0}
		.tvcmsfeatured-product {	padding: 3em 0 2em}
		body.page-cart .tvcmsfeatured-product {	padding: 3em 0 0}
		.tvcmsnew-product .tvcmshtml-blocks {	padding: 2em 0 2em}
		.tvcmsmain-block {	padding: 0 0}	
		.tvcmsmain-block .tvmain-block-inner-box {
			width: 100%;
			background: rgba(0,0,0,0.4);
			padding: 60px 0;}
		.tvcmsmain-block .tvmain-block {
			width: 96%;
			margin-left: auto;
			margin-right: auto;}
	}

.tvcms-newsletter .tvnewsletter-name {
	margin-top: 15px;
	margin-bottom: 15px;
	padding-top: 0;
	text-transform: none}
.tvcms-newsletter .tvnewsletter-name p {
	color: #fff;
	font: 400 24px/36px 'Akaya Kanadaka', cursive}
.tvcmsmain-block .tvmain-block-sub-title {
	color: #fff;
	font: 600 36px/48px 'Akaya Kanadaka', cursive;
	text-transform: none}
	
	@media(max-width: 990px){
		.tvcmsmain-block .tvmain-block-title {	font: 600 32px/42px 'Akaya Kanadaka', cursive}
		.tvcmsmain-block .tvmain-block-sub-title {	font: 600 26px/36px 'Akaya Kanadaka', cursive}
	}
	
.tvmain-block-btn a {
	display: inline-block;
	width: auto;
	color: #fff;
	padding: 10px 15px;
	border: 2px solid #fff;
	border-radius: 990px;
	letter-spacing: 1px;
	font: 400 18px/normal 'Signika', cursive;
	text-transform: uppercase}
	
	@media (max-width: 768px) {
		.tvmain-block-btn a {
			padding: 5px 10px;
			font: 400 13px/normal 'Signika', cursive;}
	}
	
.tvcms-newsletter .tvnewsletter-inner .tvnewsletter-search {	border: none}
.block_newsletter form .input-wrapper {
	border: 1px solid #fec692;
	border-right: none}
.tvproduct-wrapper .tvproduct-new-box,
.tvproduct-view-img-block .product-flag {
	color: #1c0303;
	background: #fec692;
	left: -9px;
	border-top-right-radius: 990px;
	border-bottom-right-radius: 990px;
	border-top-left-radius: 990px}
.tvproduct-wrapper .tvproduct-new-box::before,
.tvproduct-view-img-block .product-flag::before {
	border-left: 8px solid transparent;
	border-top: 10px solid #e8b383}
.tvcms-main-title .tvtitle::before {
	background-image: none;
	display: none}
.zoomTint {	background-color: #fff !important}
.tvcmsfooter .tvfooter-content-box {
	color: #1c0303;
	background: #fff}
.tvcmsfooter .tvfooter-title,
.tvcmsfooter .tvfooter-title a,
.tvcmsfooter .tvfooter-block-sub-title li a,
.tvcmsfooter .tvfooter-address, 
.tvcmsfooter .tvfooter-contact,
.tvcmsfooter .tvfooter-email,
.tvfooter-contact-fax-wrapper .tvfooter-contact-fax,
.tvfooter-address-icon i,
.tvfooter-contact-icon i,
.tvfooter-email-icon i,
.tvfooter-contact-fax-wrapper .tvfooter-contact-fax-icon i,
.tvcmsfooter-link .tvfooter-copylink .tvcopylink a {	color: #1c0303}
.tvcmsfooter .tvfooter-address {	line-height: 26px}
.tvfooter-social-icon a span {	background: #1c0303}
.tvfooter-social-icon a:hover span {	background: #fec692}
.tvfooter-social-info-box:hover .tv-social-icon-img	{	color: #1c0303}
.tvcmsfooter-link {	background: #a0c4c2}
.tvcmsfooter-link .tvfooter-copylink .tvcopylink a {	font: 400 14px/24px 'Signika', cursive}
.tvfooter-social-icon .tvfooter-social-info-box:first-child {	margin-left: 0}
.tvbottom-to-top-icon i {
	color: #fff;
	background-color: #a0c4c2}
	
	@media (max-width: 768px) {
		.tvcmsfooter-link {
			padding-top: 10px;
			padding-bottom: 10px}
	}
	@media (max-width: 575px) {
		#footer .col-xs-12 {	text-align: center}
		#footer .col-xs-12:nth-child(n+2) {	margin-top: 15px}
	}

.tvtab-featured-pagination-next-pre-btn .tvtab-featured-product-prev i,
.tvtab-featured-pagination-next-pre-btn .tvtab-featured-product-next i,
.tvtab-new-pagination-next-pre-btn .tvtab-new-product-prev i,
.tvtab-new-pagination-next-pre-btn .tvtab-new-product-next i,
.tvtab-best-seller-pagination-next-pre-btn .tvtab-best-seller-product-prev i,
.tvtab-best-seller-pagination-next-pre-btn .tvtab-best-seller-product-next i,
.tvcmsbest-seller-next-pre-btn .tvcmsbest-seller-prev i,
.tvcmsbest-seller-next-pre-btn .tvcmsbest-seller-next i,
.tvcmsspecial-next-pre-btn .tvcmsspecial-prev i,
.tvcmsspecial-next-pre-btn .tvcmsspecial-next i,
.tvfeatured-next-pre-btn .tvcmsfeatured-prev i,
.tvfeatured-next-pre-btn .tvcmsfeatured-next i,
.tvnew-next-pre-btn .tvnew-prev i,
.tvnew-next-pre-btn .tvnew-next i,
.tvcmscategory-next-pre-btn .tvcmscategory-prev i,
.tvcmscategory-next-pre-btn .tvcmscategory-next i,
.tvcmscross-selling-next-pre-btn .tvcmscross-selling-prev i,
.tvcmscross-selling-next-pre-btn .tvcmscross-selling-next i,
.tvcmslike-next-pre-btn .tvcmslike-prev i,
.tvcmslike-next-pre-btn .tvcmslike-next i,
.tvtab-special-pagination-next-pre-btn .tvtab-special-product-prev i,
.tvtab-special-pagination-next-pre-btn .tvtab-special-product-next i,
.tvcms-testimonial-pagination-btn .tvtestimonial-prev i,
.tvcms-testimonial-pagination-btn .tvtestimonial-next i {
	font-size: 22px;
	color: #fff;
	background-color: #a0c4c2;
	border: none;
	height: 40px;
	position: relative;
	z-index: 2;
	width: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 40px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out}
.tvtab-featured-pagination-next-pre-btn .tvtab-featured-product-prev:hover i,
.tvtab-featured-pagination-next-pre-btn .tvtab-featured-product-next:hover i,
.tvtab-new-pagination-next-pre-btn .tvtab-new-product-prev:hover i,
.tvtab-new-pagination-next-pre-btn .tvtab-new-product-next:hover i,
.tvtab-best-seller-pagination-next-pre-btn .tvtab-best-seller-product-prev:hover i,
.tvtab-best-seller-pagination-next-pre-btn .tvtab-best-seller-product-next:hover i,
.tvcmsbest-seller-next-pre-btn .tvcmsbest-seller-prev:hover i,
.tvcmsbest-seller-next-pre-btn .tvcmsbest-seller-next:hover i,
.tvcmsspecial-next-pre-btn .tvcmsspecial-prev:hover i,
.tvcmsspecial-next-pre-btn .tvcmsspecial-next:hover i,
.tvfeatured-next-pre-btn .tvcmsfeatured-prev:hover i,
.tvfeatured-next-pre-btn .tvcmsfeatured-next:hover i,
.tvnew-next-pre-btn .tvnew-prev:hover i,
.tvnew-next-pre-btn .tvnew-next:hover i,
.tvcmscategory-next-pre-btn .tvcmscategory-prev:hover i,
.tvcmscategory-next-pre-btn .tvcmscategory-next:hover i,
.tvcmscross-selling-next-pre-btn .tvcmscross-selling-prev:hover i,
.tvcmscross-selling-next-pre-btn .tvcmscross-selling-next:hover i,
.tvcmslike-next-pre-btn .tvcmslike-prev:hover i,
.tvcmslike-next-pre-btn .tvcmslike-next:hover i,
.tvtab-special-pagination-next-pre-btn .tvtab-special-product-prev:hover i,
.tvtab-special-pagination-next-pre-btn .tvtab-special-product-next:hover i,
.tvcms-testimonial-pagination-btn .tvtestimonial-prev:hover i,
.tvcms-testimonial-pagination-btn .tvtestimonial-next:hover i,
.tvcms-brandlist-next-pre .tvcmsbrand-prev:hover i,
.tvcms-brandlist-next-pre .tvcmsbrand-next:hover i {
	color: #1c0303;
	background-color: #fec692}
#index #footer {	overflow: visible}
.tvcmsfooter .tvfooter-content-box::before {
	top: auto;
	bottom: 100%;
	background-image: url('https://www.laboutiqueduhamster.com/themes/ps_cake_149/assets/css/../img/themevolty/Round-Image-2.png')}
.swiper-slide {	
	background-size: cover;
	background-position: center 10%;
	padding-bottom: 0;
	/* max-height: 768px; */
	overflow: hidden;}
	
	@media (min-width: 1441px) {
		.swiper-slide {	max-height: 900px}
	}
	@media (max-width: 1440px) {
		.swiper-slide {	max-height: 768px}
	}
	@media (max-width: 1366px) {
		.swiper-slide {	max-height: 640px}
	}
	/* @media (max-width: 1280px) { */
		/* .swiper-slide {	max-height: 640px} */
	/* } */
	@media (max-width: 768px) {
		.swiper-slide {	max-height: 576px}
	}
	
.tvcmsmain-slider .tvmain-slider .tvmain-slider-img {	opacity: 0}
.tvmain-slider-offer-inner-box .tvmain-slider-next-pre-btn.hidden {	display: none}
.tvmain-slider-content-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%}
.tvcmsmain-slider .tvmain-slider-contant-center {
	position: initial;
	width: auto;
	max-width: 66%;
	-webkit-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
	background: #fff;
	padding: 0.25em 0.5em}
	
	
	
	
.tvmain-slider-content-wrapper .tvmain-slider-contant-center h1 {	margin: 0 0 0.25em}
.tvmain-slider-content-wrapper .tvmain-slider-contant-center > div p {	margin: 0 0}
.tvcmsmain-slider .tvmain-slider-title,
.tvcmsmain-slider .tvmain-slider-contant .tvmain-slider-info p {
	color: #1c0303;
	font: 600 48px/60px 'Akaya Kanadaka', cursive;
	text-transform: none;
	font-style: normal}
	
	@media(max-width: 990px){
		.tvcmsmain-slider .tvmain-slider-contant-center {	max-width: 96%}
		.tvcmsmain-slider .tvmain-slider-title,
		.tvcmsmain-slider .tvmain-slider-contant .tvmain-slider-info p {	font: 600 32px/42px 'Akaya Kanadaka', cursive}
	}
	
.tvcmsmain-slider .tvmain-slider-contant .tvmain-slider-info p {	font: 600 30px/42px 'Akaya Kanadaka', cursive}
.tvmain-slider-next-pre-btn .tvcmsmainslider-prev i,
.tvmain-slider-next-pre-btn .tvcmsmainslider-next i {
	font-size: 22px;
	color: #fff;
	background-color: #a0c4c2;
	border: none;
	height: 40px;
	position: relative;
	z-index: 2;
	width: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 40px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out}
.tvmain-slider-next-pre-btn .tvcmsmainslider-prev:hover i,
.tvmain-slider-next-pre-btn .tvcmsmainslider-next:hover i {
	color: #1c0303;
	background-color: #fec692}
.page_home {	margin-bottom: 0}
#index .tvfeatured-product-wrapper,
#index .tvnew-product-wrapper {
	padding: 0 1em;
	overflow: hidden}
.tvfeatured-product,
.tvnew-product {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: 0}
	
	@media (min-width: 768px) {
		.tvfeatured-product-content-box,
		.tvnew-product {
			margin-right: 0;
			margin-left: -0}
	}

.swiper-slide {	padding-bottom: 30px}
.tvcmsmain-slider-offer-banner .swiper-slide::before {
	content: "";
	background-image: url("https://www.laboutiqueduhamster.com/themes/ps_cake_149/assets/css/../img/themevolty/Round-Image-2.png");
	display: block;
	background-position: center;
	bottom: 0;
	position: absolute;
	width: 100%;
	height: 18px}
.tvproduct-slider .tvproduct-wrapper {
	min-height: 1px !important;
	border: 1px solid #a0c4c2}
.tvproduct-wrapper .tvproduct-price {
	border-top: 1px solid #a0c4c2;
	border-left: 1px solid #a0c4c2}
.tvproduct-wrapper .tvproduct-price::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 1px;
	z-index: 1;
	background: #fff}
.tvproduct-wrapper .tvall-product-balance {	border-top: 1px solid #a0c4c2}
.owl-carousel .tvproduct-wrapper .tvall-product-balance {	overflow: inherit}
.tvproduct-slider .tvproduct-wrapper:hover {	box-shadow: 0 10px 20px rgba(0,0,0,0.1)}
.tvproduct-info-box .tvproduct-title,
.tvproduct-wrapper .tvproduct-info-box .tvproduct-title a {
	margin: 0 0 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis}
#products .comments_note,
.featured-products .comments_note,
.product-accessories .comments_note,
.product-miniature .comments_note {
	position: absolute;
	left: -7px;
	bottom: 5px;
	padding: 1px 10px;
	color: #1c0303;
	background: #fec692;
	overflow: visible;
	border-top-right-radius: 990px;
	border-bottom-right-radius: 990px;
	border-top-left-radius: 990px;
	font: 400 15px/normal 'Signika', cursive}
#products .comments_note::before,
.featured-products .comments_note::before,
.product-accessories .comments_note::before,
.product-miniature .comments_note::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-top: 10px solid #e8b383;
	border-bottom: transparent;
	position: absolute;
	left: 0px;
	bottom: -10px;
	margin: auto;}
#products .comments_note i,
.featured-products .comments_note i,
.product-accessories .comments_note i,
.product-miniature .comments_note i {	font-size: 16px}
#product .tvcms-newslettr-outer-content, #category .tvcms-newslettr-outer-content {	display: block}
#index .tvcms-newslettr-outer-content,
.tvcms-newslettr-outer-content {
	background-size: cover;
	width: 100%;
	position: relative;
	padding: 138px 0;
	background-position: center 10%;
	margin-bottom: 0;
	z-index: 1}
/* body:not(#index) .tvcms-newslettr-outer-content {	margin-top: 4em} */
.tvcms-newslettr-outer-content::before {
	content: "";
	background-image: url("https://www.laboutiqueduhamster.com/themes/ps_cake_149/assets/css/../img/themevolty/Round-Image.png");
	display: block;
	background-position: center;
	top: 0;
	position: absolute;
	width: 100%;
	height: 18px}
#content-wrapper .ets_block_slider .owl-item {
	padding-bottom: 30px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0 15px 15px;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform}
#content-wrapper .ets_block_slider .owl-item > div {
	float: none;
	border: 1px solid #a0c4c2;
	width: 100%;
	padding: 0 0 0 0;
	overflow: inherit;r
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out}
#content-wrapper .ets_block_slider .owl-item > div > .img-and-flags {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 100%}
#content-wrapper .ets_block_slider .owl-item > div > .img-and-flags > a,
#content-wrapper .ets_block_slider .owl-item > div > .img-and-flags > a > img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	object-fit: cover}
#content-wrapper .ets_block_slider .owl-item > div .tvproduct-info-box p {
	margin: 0 0;
	font: 400 13px/normal 'Signika', cursive}
#content-wrapper .ets_block_slider .owl-item > div .more {
	display: none;
	position: absolute;
	left: -8px;
	padding: 1px 10px;
	color: #1c0303;
	background: #fec692;
	overflow: visible;
	font: 400 15px/normal 'Signika', cursive}
#content-wrapper .ets_block_slider .owl-item > div .more::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-top: 10px solid #e8b383;
	border-bottom: transparent;
	position: absolute;
	left: 0px;
	bottom: -10px;
	margin: auto}
#content-wrapper .ets_block_slider .owl-item > div .more a {
	color: #1c0303;
	font: 400 15px/normal 'Signika', cursive;
	text-transform: none}
#content-wrapper .ets_block_slider .owl-item > div .more a {	background: none}
#content-wrapper .ets_block_slider .owl-item > div.tvproduct-wrapper .tvproduct-price .tvnew-price.post-date {	font: 400 14px/normal 'Signika', cursive;}
#content-wrapper .ets_block_slider .owl-item > div.tvproduct-wrapper .tvproduct-info-box h4 {
	margin: 0 0 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis}
#content-wrapper .ets_block_slider .owl-item > div .short_description {	display: none}
.ets_block_slider .owl-controls,
.ets_blog_related_posts_type_carousel .owl-controls,
.ets_related_products_type_carousel .owl-controls {
	text-align: center;
	bottom: auto;
	margin-bottom: 0;
	min-height: inherit;
	min-width: inherit;
	position: inherit;
	right: auto}
.ets_block_slider .owl-controls .owl-prev,
.ets_block_slider .owl-controls .owl-next,
.ets_blog_related_posts_type_carousel .owl-controls .owl-prev,
.ets_blog_related_posts_type_carousel .owl-controls .owl-next,
.ets_related_products_type_carousel .owl-controls .owl-prev,
.ets_related_products_type_carousel .owl-controls .owl-next {
	display: inline-block;
	margin: 0 5px;
	background: none !important;
	border: none;
	border-radius: 0 !important;
	color: inherit !important;
	cursor: pointer;
	/* float: none; */
	font-size: inherit;
	height: inherit;
	line-height: inherit;
	padding: 0 !important;
	width: inherit}
body.page-index .ets_block_slider .owl-controls .owl-prev,
body.page-index .ets_block_slider .owl-controls .owl-next {	float: none}
.ets_block_slider .owl-nav > div:hover,
.ets_blog_related_posts_type_carousel .owl-nav > div:hover,
.ets_related_products_type_carousel .owl-nav > div:hover {
	background-color: inherit !important;
	color: inherit !important;}
.ets_block_slider .owl-prev::before,
.ets_block_slider .owl-next::before,
.ets_blog_related_posts_type_carousel .owl-prev::before,
.ets_blog_related_posts_type_carousel .owl-next::before,
.ets_related_products_type_carousel .owl-prev::before,
.ets_related_products_type_carousel .owl-next::before {
	display: block;
	font-size: 22px;
	color: #fff;
	background-color: #a0c4c2;
	border: none;
	height: 40px;
	position: relative;
	z-index: 2;
	width: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 40px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out}
body.page-index .tvcmsnew-product.tvcmshtml-blocks {	padding: 4em 0 4em}
.tvhtml-blocks-wrapper {
	background: #ffffff none repeat scroll 0 0;
	position: relative;
	padding: 0 0}
.tvhtml-blocks-wrapper::before {
	content: "";
	position: absolute;
	background: url("https://www.laboutiqueduhamster.com/themes/ps_cake_149/assets/img/themevolty/png-1.png") no-repeat;
	background-size: auto;
	background-position: right;
	background-size: contain;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0}
#index .tvhtml-blocks-wrapper .container div:first-child {
	float: left;
	width: 37%;
	padding: 0 4em 1em 0}
#index .tvhtml-blocks-wrapper .container div:nth-child(2) {
	position: relative;
	margin: 0 0 5em 37%;
	background: #fff;
	color: #1c0303;
	border: 1px solid #a0c4c2;
	padding: 1em}
#index .tvhtml-blocks-wrapper .container div:nth-child(3) {
	clear: both;
	margin: 0 0 3.5em 0;
	position: relative;
	text-align: center}
#index .tvhtml-blocks-wrapper .container div:nth-child(4) {
	clear: both;
	float: left;
	width: 33%;
	padding: 0 4em 1em 0;}
#index .tvhtml-blocks-wrapper .container div:nth-child(5) {
	position: relative;
	margin: 0 0 0 33%;
	background: #fff;
	color: #1c0303;
	border: 1px solid #a0c4c2;
	padding: 1em}
#index .tvhtml-blocks-wrapper .container div p:last-child {	margin-bottom: 0}
#index .tvhtml-blocks-wrapper .container div:first-child p,
#index .tvhtml-blocks-wrapper .container div:nth-child(4) p {
	margin: 0 0 0;
	line-height: 0}
#index .tvhtml-blocks-wrapper p img{
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	box-shadow: 0px 15px 25px rgba(0,0,0,0.15)}
#index .tvhtml-blocks-wrapper .container div h2 {
	margin: -1em 0 1em -5em;
	display: inline-block;
	background: #fff;
	color: #6f9d9b;
	padding: 0.33em 0.5em;
	border-radius: 990px}
#index .tvhtml-blocks-wrapper .container div a {
	margin: 0 15px 10px 0;
	display: inline-block;
	width: auto;
	color: #1c0303;
	background-color: #fec692;
	padding: 15px 20px;
	border-radius: 990px;
	font: 400 15px/normal 'Signika', cursive;
	text-transform: uppercase}
	
	@media (max-width: 991px){
		body.page-index .tvcmsnew-product.tvcmshtml-blocks {	padding: 2em 0 2em}
		#index .tvhtml-blocks-wrapper .container div:nth-child(2) {	margin: 0 0 3em 37%;}
	}
	@media (max-width: 768px) {
		#index .tvhtml-blocks-wrapper .container div:first-child,
		#index .tvhtml-blocks-wrapper .container div:nth-child(2),
		#index .tvhtml-blocks-wrapper .container div:nth-child(3),
		#index .tvhtml-blocks-wrapper .container div:nth-child(4),
		#index .tvhtml-blocks-wrapper .container div:nth-child(5) {
			float: none;
			width: 100%;
			margin: 0 0 0;
			padding: 0 0 0;
			border: none;
			z-index: 2;
			position: relative}
		#index .tvhtml-blocks-wrapper .container div:nth-child(n+2) {	margin-top: 15px}
		#index .tvhtml-blocks-wrapper .container div h2 {
			margin: 0 0 0 0;
			padding: 0 0 0 0}
		#index .tvhtml-blocks-wrapper p img {	box-shadow: none}
		#index .tvhtml-blocks-wrapper .container div a {
			padding: 7px 10px;
			font: 400 13px/normal 'Signika', cursive;}
	}
	
body:not(#index) #wrapper {
	position: relative;
	margin-top: 8em}
body:not(#index) #wrapper::before {
    content: "";
    position: absolute;
    background: url("https://www.laboutiqueduhamster.com/themes/ps_cake_149/assets/css/../img/themevolty/Png-4.png") no-repeat;
    background-position: top right;
    background-size: 33% auto;
	background-repeat: repeat-y;
    top: 0;
    right: 3%;
    bottom: 0;
    left: 0;
	z-index: 0}
body:not(#index) #wrapper::after {
    content: "";
    position: absolute;
    background: url("https://www.laboutiqueduhamster.com/themes/ps_cake_149/assets/css/../img/themevolty/Png-2.png") no-repeat;
    background-position: center left;
    background-size: 100% auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0}
body:not(#index) #wrapper::after {	background-position: top left}
body:not(#index) #wrapper .tv-details-box #content-wrapper {	padding-bottom: 2em}
 body:not(#index) #wrapper .container {
	z-index: 2;
    position: relative;}
.tvbanner-hover-wrapper img {	box-shadow: 0px 15px 25px rgba(0,0,0,0.15)}
body:not(.page-contact):not(#ets_blog_page) #left-column .block {	display: none}
.breadcrumb {
	z-index: 2;
	position: relative;
	background-color: #a0c4c2}
#wrapper .breadcrumb li a,
#wrapper .breadcrumb li a:hover,
#wrapper .breadcrumb ol li a span,
#wrapper .breadcrumb li:last-child span {
	font: 400 16px/normal 'Signika', cursive;
	color: #fff;}
#wrapper .breadcrumb li::after {	color: #fff}

	@media (max-width: 576px) {
		#wrapper .breadcrumb li a,
		#wrapper .breadcrumb li a:hover,
		#wrapper .breadcrumb ol li a span,
		#wrapper .breadcrumb li:last-child span {	font: 400 13px/normal 'Signika', cursive;}
	}
	@media (max-width: 384px) {
		#wrapper .breadcrumb li a,
		#wrapper .breadcrumb li a:hover,
		#wrapper .breadcrumb ol li a span,
		#wrapper .breadcrumb li:last-child span {	font: 400 11px/normal 'Signika', cursive;}
	}
	
body.page-category #left-column {	
	position: sticky;
	top: 8em;}
#left-column .tvcmsleft-offer-banner  {	margin-top: 2em}
body.page-search .page-content #left-column .tvcmsleft-offer-banner  {	margin-top: 0}

	@media(max-width: 767px){
		#left-column .tvcmsleft-offer-banner  {	display: none}
	}
	
#search_filters_wrapper {
	padding: 15px;
	background: #fff;
	color: #1c0303}
	
	@media(min-width: 768px){
		#search_filters_wrapper {	border: 1px solid #a0c4c2;}
	}
	
body.page-search .page-content #search_filters_wrapper {	display: none}
#search_filters, #search_filters_brands, #search_filters_suppliers {
	border: none;
	margin-bottom: 0;
	border-radius: 0}
#search_filters .facet .facet-title,
#search_filters_brands .facet .facet-title,
#search_filters_suppliers .facet .facet-title {
	font: 400 16px/normal 'Signika', cursive;
	color: #1c0303}
#search_filters .text-uppercase {	margin-bottom: 1rem}
/* #search_filters .facet .facet-title {	display: none} */
#search_filters .ui-widget-header {	background: #fec692}
#search_filters ul > li > p {	margin: 0 0 1em}
#search_filters .faceted-slider {	margin: 0 0 0.5em}
#search_filters .ui-slider .ui-slider-handle {
	background: #fec692;
	border: 1px solid #9d7b5b}
.ui-widget-content {	border: 1px solid #9d7b5b}
.products-selection {	margin-bottom: 2em}
.block-category {
	border: none;
	padding: 0 0;
	border: none;
	margin-bottom: 0}
.products-selection {
	border: none;
	padding: 0 0;
	font: 400 17px/normal 'Signika', cursive;
	margin-bottom: 0}
#products {	color: #1c0303}
#products .empty {	margin: 0 0 0}
body.page-category #main #products > div:first-child,
body.page-new-products .page-content #products > div:first-child,
body.page-search .page-content #products > div:first-child {
	-webkit-transition: border 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-top 0.3s ease-in-out;
	-o-transition: border 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-top 0.3s ease-in-out;
	-ms-transition: border 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-top 0.3s ease-in-out;
	-moz-transition: border 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-top 0.3s ease-in-out;
	transition: border 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-top 0.3s ease-in-out;
	margin-bottom: 2em}
body.page-category.scroll #main #products > div:first-child,
body.page-new-products.scroll #main #products > div:first-child,
body.page-search.scroll .page-content #products > div:first-child {
	position: sticky;
	top: 8em;
	background: #fff;
	padding: 10px;
	margin-left: -10px;
	margin-right: -10px;
	border: 1px solid #a0c4c2;
	z-index: 10}
	
	@media(max-width: 768px){
		body.page-category.scroll #main #products > div:first-child,
		body.page-new-products.scroll #main #products > div:first-child,
		body.page-search.scroll .page-content #products > div:first-child {    top: 5em}
	}
	
body #content-wrapper #js-product-list-top .tvcmsproduct-grid-list {	display: none}
#content-wrapper #js-product-list-top .total-products {	line-height: inherit}
#content-wrapper #js-product-list-top p {
	font: 400 17px/normal 'Signika', cursive;
	padding: 0 0;
	margin: 0 0 0}
body.page-category .products-sort-order .select-title,
body.page-new-products .products-sort-order .select-title,
body.page-search .page-content .products-sort-order .select-title {
	border: none;
	font: 400 17px/normal 'Signika', cursive;
	color: #1c0303;
	padding: 0 0 0}
.products-sort-order .dropdown-menu {
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	background: #fff;
	border: 1px solid #a0c4c2}
.products-sort-order .select-list {
	font: 400 16px/normal 'Signika', cursive;
	color: #1c0303;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;}
.products-sort-order .select-list:hover {
	color: #1c0303;
	background: #fec692;}
#search_filters .text-uppercase {	float: left}
#search_filters #_desktop_search_filters_clear_all {	float: right}
#search_filters .facet {	clear: both;}
#search_filters .facet ul li a {	font: 400 13px/normal 'Signika', cursive}
#search_filters .facet .facet-label .custom-checkbox,
#search_filters .facet .facet-label .custom-radio {	top: -5px}
#search_filters .facet .facet-label sup {
	display: inline-block;
	width: 1.3em;
	height: 1.3em;
	background: #1c0303;
	color: #fff;
	border-radius: 50%;
	padding: 0.65em 0.35em 0;
	position: inherit;
	vertical-align: top}
#search_filters .js-search-filters-clear-all {	
	font-size: 13px;
	color: #fff;
	background-color: #a0c4c2;
	margin: 0 0 0}
.active_filters {
	background: #fff;
	padding: 10px;
	margin: 0 0 1em;
	border: 1px solid #a0c4c2;}
.active_filters ul {	margin: 0 0 0}
.active_filters .filter-block {
	border: 1px solid #d3ecea;
	margin-bottom: 0}
#category .left-column.hide,
#category .page-content .col-md-11.hide {
	opacity: 0.2;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;}
	
	@media(max-width: 768px){
		#content-wrapper #js-product-list-top p,
		.products-selection .sort-by,
		body.page-category .products-sort-order .select-title,
		body.page-new-products .products-sort-order .select-title,
		body.page-search .page-content .products-sort-order .select-title,
		#category #search_filter_toggler {    font: 400 14px/14px 'Signika', cursive}
	}
	
.pagination {
	padding: 0;
	margin-bottom: 0;
	border: none}
.pagination > div:first-child {
	font: 400 17px/normal 'Signika', cursive;
	color: #1c0303;
	text-align: center}
.pagination .page-list {	float: none;}
.pagination .page-list li {	display: inline-block}
.pagination .page-list .tvpage-list-pagination a {
	border: none;
	font: 400 16px/33px 'Signika', cursive;
	color: #fff}
.pagination .page-list .tvpage-list-pagination a {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: #a0c4c2;
	border: 1px solid #a0c4c2}
.pagination .page-list .current a {
	background: #fff;
	color: #a0c4c2}
.pagination .page-list .tvpage-list-pagination a:hover {
	border: 1px solid #fec692;
	color: #1c0303;
	background: #fec692}
.tvproduct-wrapper .tvproduct-hover .tvproduct-cart-btn,
.tvproduct-wrapper .tvproduct-hover .tvcompare-wrapper,
.tvproduct-wrapper .tvproduct-hover .tvproduct-view,
.tvproduct-wrapper .tvproduct-hover .tvproduct-wishlist {
	border-radius: 50%;
	border: none;
	background: none;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out}
.tvproduct-wrapper .tvproduct-hover .tvproduct-cart-btn:hover,
.tvproduct-wrapper .tvproduct-hover .tvcompare-wrapper:hover,
.tvproduct-wrapper .tvproduct-hover .tvproduct-view:hover,
.tvproduct-wrapper .tvproduct-hover .tvproduct-wishlist:hover {
	border: none;
	color: #1c0303;
	background: none}
.tvproduct-wrapper .tvproduct-hover .tvproduct-cart-btn .btn,
.tvproduct-wrapper .tvproduct-hover .tvcompare-wrapper .btn,
.tvproduct-wrapper .tvproduct-hover .tvproduct-view .quick-view,
.tvproduct-wrapper .tvproduct-hover .tvproduct-wishlist .btn {	background: #a0c4c2;}

	@media (max-width: 576px){
		.tvproduct-wrapper .tvproduct-hover .tvproduct-cart-btn.disabled,
		.tvproduct-wrapper .tvproduct-hover .tvproduct-cart-btn .btn:disabled,
		.tvproduct-wrapper .tvproduct-hover .tvproduct-cart-btn .btn.disabled,
		.tvproduct-wrapper .tvproduct-hover .tvcompare-wrapper .btn:disabled,
		.tvproduct-wrapper .tvproduct-hover .tvcompare-wrapper .btn.disabled,
		.tvproduct-wrapper .tvproduct-hover .tvproduct-view .quick-view:disabled,
		.tvproduct-wrapper .tvproduct-hover .tvproduct-view .quick-view.disabled,
		.tvproduct-wrapper .tvproduct-hover .tvproduct-wishlist .btn:disabled,
		.tvproduct-wrapper .tvproduct-hover .tvproduct-wishlist .btn.disabled {	display: none}
	}
	
.tvproduct-wrapper .tvproduct-hover .tvproduct-cart-btn .btn:hover,
.tvproduct-wrapper .tvproduct-hover .tvcompare-wrapper .btn:hover,
.tvproduct-wrapper .tvproduct-hover .tvproduct-view .quick-view:hover,
.tvproduct-wrapper .tvproduct-hover .tvproduct-wishlist .btn:hover {	background: #fec692}
.tvproduct-wrapper .tvproduct-hover .tvproduct-cart-btn i,
.tvproduct-wrapper .tvproduct-hover .tvcompare-wrapper i,
.tvproduct-wrapper .tvproduct-hover .tvproduct-quick-view i,
.tvproduct-wrapper .tvproduct-hover .tvproduct-wishlist i {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: #fff}
.tvproduct-wrapper .tvproduct-hover .tvproduct-cart-btn:hover i,
.tvproduct-wrapper .tvproduct-hover .tvcompare-wrapper:hover i,
.tvproduct-wrapper .tvproduct-hover .tvproduct-quick-view:hover i,
.tvproduct-wrapper .tvproduct-hover .tvproduct-wishlist:hover i {	color: #1c0303}
.tvproduct-wrapper .tvproduct-hover .tvproduct-view {
	height: 40px;
	width: 40px}
.tvproduct-wrapper .tvproduct-hover .tvproduct-view .quick-view {
	height: 100%;
	width: 100%;
	cursor: pointer;
	overflow: hidden;
	margin: 0 0;
	display: block}
.tvproduct-wrapper .tvproduct-hover .quick-view span {	display: none}
	
	@media (max-width: 576px){
		.tvproduct-info-box .tvproduct-title,
		.tvproduct-wrapper .tvproduct-info-box .tvproduct-title a {	text-align: center}
	}
	
body.page-product .tvproduct-content-title {	margin-bottom: 1.5rem}
body.page-product .col-xs-2 .share-block {
	line-height: 60px;
	margin: 0 0 0}
body.page-product .col-xs-2 .share-block li {
	float: right;
	margin-left: 7px}
body.page-product .col-xs-2 .share-block li a {
	cursor: pointer;
	overflow: hidden;
	display: block}
body.page-product .col-xs-2 .share-block li a span::before {
	font-size: 18px;
	color: #fff;
	background-color: #a0c4c2;
	border: none;
	height: 30px;
	position: relative;
	z-index: 2;
	width: 30px;
	text-align: center;
	line-height: 30px;
	border-radius: 30px;
	display: block;
	border: 1px solid #a0c4c2;
	-webkit-transition: 0.36s ease-in-out;
	-o-transition: 0.36s ease-in-out;
	-ms-transition: 0.36s ease-in-out;
	-moz-transition: 0.36s ease-in-out;
	transition: 0.36s ease-in-out;}
body.page-product .col-xs-12 .share-block li a:hover span::before {
	color: #a0c4c2;
	background: #fff}
body.page-product .tvproduct-detail-popup-content .product-description-short {
	color: #1c0303;
	font: 400 17px/normal 'Signika', cursive;
	margin: 0 0 0}
body.page-product .tvproduct-detail-popup-content .product-description .iframe-container,
body.page-product .tvproduct-detail-popup-content .product-description .video-container {	position: relative}
body.page-product .tvproduct-detail-popup-content .product-description .iframe-container.portrait,
body.page-product .tvproduct-detail-popup-content .product-description .video-container.portrait {	padding-top: 126%}
body.page-product .tvproduct-detail-popup-content .product-description .iframe-container.landscape,
body.page-product .tvproduct-detail-popup-content .product-description .video-container .landscape,
body.page-product .tvproduct-detail-popup-content .product-description .video-container:not(.portrait):not(.landscape) {	padding-top: 56%}
body.page-product .tvproduct-detail-popup-content .product-description .iframe-container .absolute,
body.page-product .tvproduct-detail-popup-content .product-description .video-container .absolute {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0px 15px 25px rgba(0,0,0,0.1);
	border: 1px solid #a0c4c2}
body.page-product .price-and-add-to-cart {
	position: sticky;
	top: 8em;
	margin: 0 0;
	border: 1px solid transparent;
	-webkit-transition: 0.36s ease-in-out;
	-o-transition: 0.36s ease-in-out;
	-ms-transition: 0.36s ease-in-out;
	-moz-transition: 0.36s ease-in-out;
	transition: 0.36s ease-in-out;}
	
	@media (max-width: 768px) {
		body.page-product .tvproduct-content-title {	margin-bottom: 0}
		body.page-product .col-xs-2 .share-block {	line-height: 50px}
		body.page-product .price-and-add-to-cart {	margin: 0 0 30px}
		body.page-product.scroll .price-and-add-to-cart {
			top: 6em;
			z-index: 5;
			border: 1px solid #a0c4c2;
			background:  #fff;
			padding: 1em 15px}
	}
	
body.page-product .product-prices {
	margin: 0 0 1.5em;
	font: 400 17px/normal 'Signika', cursive}
body.page-product .product-price {
	display: block;
	margin: 0 0 0}
body.page-product .product-prices .current-price {
	font: 600 36px/44px 'Akaya Kanadaka', cursive;
	/* padding: 0 0.5em; */
	color: #1c0303}
body.page-product .product-information {
	color: #1c0303;
	font: 400 17px/normal 'Signika', cursive}
body.page-product .price-and-add-to-cart .product-actions {	margin: 0 0 0}
body.page-product .price-and-add-to-cart .product-reference {
	text-align: center;
	margin: 20px 0 0;
	font: 400 13px/normal 'Signika', cursive}
body.page-product .tvproduct-detail-popup-content .product-add-to-cart {	margin-top: 0}
body.page-product .tvproduct-detail-popup-content .product-add-to-cart .control-label {
	font: 400 17px/34px 'Signika', cursive;
	color: #1c0303;
	width: auto;
	float: none;
	display: inline-block;
	display: none}	
body.page-product .product-variants > .product-variants-item,
body.page-product .tvproduct-details-quantity {
	display: block;
	margin-bottom: 15px}	
body.page-product .product-variants > .product-variants-item .control-label {	margin-right: 5px}
body.page-product .tvproduct-detail-popup-content .product-variants-item .form-control-select,
body.page-product .tvproduct-detail-popup-content .product-variants-item .form-control-select option {	cursor: pointer}
body.page-product .product-quantity {
	width: auto;
	float: none;
	display: block;
	line-height: 0}
body.page-product .product-quantity.disabled {
	display: none;
	cursor: not-allowed}
body.page-product .product-quantity .qty {	float: none}
body.page-product .product-quantity.disabled #quantity_wanted,
body.page-product .product-quantity.disabled .btn-touchspin {
	display: none;
	background: #c0dbd9;
	cursor: not-allowed}
body.page-product .bootstrap-touchspin .input-group-btn-vertical,
body.page-cart .cart-item .product-line-grid-body .bootstrap-touchspin .input-group-btn-vertical {
	height: 40px;
	color: #1c0303}
body.page-cart .cart-item .product-line-grid-body .bootstrap-touchspin .input-group-btn-vertical {
	position: absolute;
	top: 0;
	right: 3px;
	height: 24px;
	z-index: 3}
body.page-product .tvproduct-detail-popup-content .tvproduct-view-content {
	width: auto;
	text-align: center;
	margin-top: 0;
	display: block;
	vertical-align: middle}
body.page-product .tvproduct-detail-popup-content .tvquick-view-add-to-cart {	float: none}
body.page-product .product-quantity .bootstrap-touchspin,
body.page-cart .cart-item .product-line-grid-body .bootstrap-touchspin {
	border:none;
	padding-left: 50%;
	background: #1c0303;
	border-radius: 990px;
	display: block;
	float: none;
	position: relative}
body.page-cart .cart-item .product-line-grid-body .bootstrap-touchspin {
	padding-left: 24px;
	background: #fff;
	height: 28px;
	max-width: 50%;
	display: inline-block}
body.page-product .product-quantity.disabled .bootstrap-touchspin {	background: #c0dbd9}
body.page-product .product-quantity .bootstrap-touchspin::before,
body.page-cart .cart-item .product-line-grid-body .bootstrap-touchspin::before {
	content: 'QUANTITÉ';
	font: 400 14px/normal 'Signika', cursive;
	color: #fff;
	position: absolute;
	left: 0.5em;
	top: 50%;
	transform: translateY(-50%)}
body.page-cart .cart-item .product-line-grid-body .bootstrap-touchspin::before {
	content: '×';
	color: #1c0303}
body.page-product .product-quantity.disabled .bootstrap-touchspin::before {	background: #c0dbd9}
body.page-product .product-quantity #quantity_wanted,
body.page-cart .cart-item .product-line-grid-body .js-cart-line-product-quantity {
	height: 40px;
	font: 400 17px/normal 'Signika', cursive;
	margin-top: 0;
	color: #fff;
	background: #1c0303;
	border: none;
	width: 70%;
	text-align: right;
	padding: 0 0.7rem;}
body.page-cart .cart-item .product-line-grid-body .js-cart-line-product-quantity {
	color: #1c0303;
	background: transparent;
	height: 26px;
	width: auto !important;
	display: inline-block !important;
	float: none;
	padding: 0 0 0;
	max-width: 100%;
	padding-right: 24px;
	border: 1px solid #d3ecea;
	border-radius: 990px;}
body.page-product .product-quantity .btn-touchspin,
body.page-cart .cart-item .product-line-grid-body .btn-touchspin {
	height: 1.18rem;
	background: #1c0303;
	color: #fff;
	border: none}
body.page-cart .cart-item .product-line-grid-body .btn-touchspin {
	color: #1c0303;
	background: transparent;
	height: 0.9rem;
	padding: 6px 10px;}
body.page-product .product-quantity .bootstrap-touchspin-up,
body.page-cart .cart-item .product-line-grid-body .bootstrap-touchspin-up {	border-top-right-radius: 990px;}
body.page-product .product-quantity .bootstrap-touchspin-down,
body.page-cart .cart-item .product-line-grid-body .bootstrap-touchspin-down {	border-bottom-right-radius: 990px;}
body.page-product .product-quantity .input-group-btn-vertical .btn i,
body.page-cart .cart-item .product-line-grid-body .input-group-btn-vertical .btn i {
	font-size: 1.5rem;
	top: 50%;
	transform: translateY(-50%)}
body.page-cart .cart-item .product-line-grid-body .input-group-btn-vertical .btn i {	font-size: 1rem}
body.page-cart .cart-detailed-actions-continue .promo-code {	margin-top: 10px}
body.page-cart .cart-detailed-actions-continue form .promo-input {
	color: #1c0303;
	background: transparent;
	height: 28px;
	width: auto !important;
	display: inline-block !important;
	vertical-align: middle;
	float: none;
	max-width: 50%;
	border: 1px solid #d3ecea;
	padding: .5rem 1rem;}
body.page-cart .cart-detailed-actions-continue form .btn {
	display: inline-block;
	color: #fff;
	background: #a0c4c2;
	border-radius: 0;
	padding: 5px 10px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	height: auto;
	overflow: hidden}
body.page-product .tvproduct-detail-popup-content .tvquick-view-add-to-cart button {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 15px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: 100%;
	height: 40px;
	overflow: hidden}
body.page-product .tvproduct-detail-popup-content .tvquick-view-add-to-cart button:hover {
	color: #fff;
	background: #1c0303;}
body.page-product .tvproduct-detail-popup-content .tvquick-view-add-to-cart button:disabled {
	display: none;
	background: #c0dbd9}
body.page-product .tvproduct-detail-popup-content .tvquick-view-add-to-cart button i {
	font-size: 18px;
	margin-left: 5px}
body.page-product .tvcmsproduct-tabs .product-description {
	color: #1c0303;
	font: 400 17px/normal 'Signika', cursive;}
body.page-product .tvcmsproduct-tabs .product-description * {
	color: #1c0303 !important;
	font: 400 17px/normal 'Signika', cursive !important}
body.page-product .tvcmsproduct-tabs .product-description p {	margin: 0 0 1em}
body.page-product .product-details {
	font: 400 13px/normal 'Signika', cursive;
	margin-top: 4em}
body.page-product .product-details h3 {	font: 600 18px/24px 'Akaya Kanadaka', cursive;}
body.page-product .product-details > .product-features  {	margin-top: 2em}
#product .product-features table .name {	font-weight: normal}
#product .product-features table tr:nth-child(2n) {	background-color: #fff}
#product .product-features table tr td {	border: 1px solid #d3ecea}
body.page-product .tvproduct-content.col-lg-7 {
	position: sticky;
	top: 8em}
	
	@media (max-width: 768px) {
		body.page-product .tvproduct-content.col-lg-7 {	position: initial}
		body.page-product.scroll .product-prices {	display: none}
		body.page-product .tvproduct-detail-popup-content .product-add-to-cart {
			width: 100%;
			float: left}
		body.page-product .tvproduct-details-quantity,
		body.page-product .tvproduct-detail-popup-content .tvproduct-view-content {
			float: left;
			width: 50%;
			margin: 0 0 0 0;
			padding: 0 15px 0 0}
		body.page-product .tvproduct-detail-popup-content .tvproduct-view-content {	padding: 0 0 0 15px}
		body.page-product .tvproduct-details-quantity {	margin-bottom: 0}
		body.page-product .page-content > .col-md-7 {	margin-bottom: 30px}
		body.page-product .product-details  {	margin-top: 30px}
	}
	@media (max-width: 384px) {
		body.page-product .tvproduct-details-quantity,
		body.page-product .product-quantity .qty,
		body.page-product .tvproduct-detail-popup-content .tvproduct-view-content {
			width: 100%;
			padding: 0 0 0 0}
		body.page-product .tvproduct-detail-popup-content .tvproduct-view-content {	margin: 15px 0 0 0}
	}
	
body.page-product .tvproduct-view-img-block {
	padding-right: 15px;
    padding-left: 15px;
	position: sticky;
	top: 8em}
body.page-product .zoomContainer {	z-index: 5}
body.page-product .zoomLens {	border: 1px solid #a0c4c2 !important}
body.page-product .zoomWindowContainer div {
	left: auto !important;
	right: 105% !important;
	border: 1px solid #a0c4c2 !important}
body.page-product .product-cover {
	margin: 0 0 0;
	box-shadow: 0px 15px 25px rgba(0,0,0,0.1)}
body.page-product .images-container .js-qv-mask {	overflow-x: visible}
body.page-product .product-images > li.thumb-container {
	-webkit-transition: 0.36s ease-in-out;
	-o-transition: 0.36s ease-in-out;
	-ms-transition: 0.36s ease-in-out;
	-moz-transition: 0.36s ease-in-out;
	transition: 0.36s ease-in-out}
body.page-product .product-images > li.thumb-container:nth-child(n+2) {	margin-top: 10px}
body.page-product .product-images > li.thumb-container:hover {	box-shadow: 0px 3px 7px rgba(0,0,0,0.1);}
body.page-product .product-images > li.thumb-container:nth-child(n+2) {	margin-top: 10px}
body.page-product .product-cover,
body.page-product .product-images > li.thumb-container > .thumb {	border: 1px solid #a0c4c2}
body.page-product .product-images > li.thumb-container > .thumb {
	margin: 0 0;
	width: 100%}
body.page-product .product-images > li.thumb-container > .thumb.selected,
body.page-product .product-images > li.thumb-container > .thumb:hover {
	margin: 0 0;
	width: 100%;
	border: 1px solid #fec692}
body.page-product .product-images > li.thumb-container {	display: block}
body.page-product .tvproduct-view-img-block .product-flags {
	left: 15px;
	right: 15px;
	width: auto;
	margin: 0 0}
body.page-product .tvproduct-view-img-block .product-flag {	left: -8px}
body.page-product .product-features {
	margin-top: 0;
	margin-left: 0}
body.page-product .tvReviews .btn {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	height: auto;
	min-width: 1px;
	width: auto;
	max-width: 100%}
body.page-product .tvReviews .btn:hover {
	color: #fff;
	background: #1c0303;}
body.page-product .comment + .pull-right{	margin-top: 10px}
body.page-product .comment .comment {
	border: 1px solid #d3ecea;
	padding: 10px;}
body.page-product #tvcmsproduct_comments_block_tab p {	margin-top: 0}
body.page-product .comment .align_center {	text-align: center}
body.page-product .tvcmscross-selling-product,
body.page-product .tvcmslike-product, .tvcmscategory-product {
	position: relative;
	z-index: 1}
body.page-product .container-fluid.tvcmscategory-crossselling {
	padding-top: 3em;
	padding-bottom: 2em;
	background: #c0dbd9}
body.page-product .container-fluid.tvcmscategory-crossselling::before {
    content: "";
    background-image:url("https://www.laboutiqueduhamster.com/themes/ps_cake_149/assets/img/themevolty/Round-Image.png");
    display: block;
    background-position: center;
    top: 0;
    position: absolute;
    width: 100%;
    height: 18px}
body.page-product .container-fluid.tvcmscategory-crossselling::after {
    content: "";
    background-image:url("https://www.laboutiqueduhamster.com/themes/ps_cake_149/assets/img/themevolty/Round-Image-2.png");
    display: block;
    background-position: center;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 18px;}
body.page-product .container-fluid.tvcmscategory-others {	display: none}
body.page-product .tvfeatured-product-wrapper {
	padding: 0 1em;
	overflow: hidden}
body.page-cart .tvcmscustomer-services {	padding: 4em 0 0}
	
	@media(max-width: 990px){
		body.page-cart .tvcmscustomer-services {	padding: 2em 0 0}
	}
	
body.page-product .tvcmscustomer-services .tvservices-img,
body.page-cart .tvcmscustomer-services .tvservices-img,
body.page-order .tvcmscustomer-services .tvservices-img {
	background-image:url("https://www.laboutiqueduhamster.com/themes/ps_cake_149/assets/img/themevolty/bg-icon-service.png"); 
	background-repeat: no-repeat;
	height: 150px;
	display: block;
	max-width: 100%;
	position: relative;
	background-position: center;
	display: -webkit-box !important;
	display: -ms-flexbox!important;
	display: flex!important;
	-ms-flex-wrap: wrap!important;
	flex-wrap: wrap!important;
	-webkit-box-align: center!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;}
body.page-product .tvcmscustomer-services .card-deck .card:first-child .tvservices-img .tvservice-bg-discount-img,
body.page-cart .tvcmscustomer-services .card-deck .card:first-child .tvservices-img .tvservice-bg-discount-img,
body.page-order .tvcmscustomer-services .card-deck .card:first-child .tvservices-img .tvservice-bg-discount-img {	background-position: -100px 0}
body.page-product .tvcmscustomer-services .card-deck .card:nth-child(2) .tvservices-img .tvservice-bg-discount-img,
body.page-cart .tvcmscustomer-services .card-deck .card:nth-child(2) .tvservices-img .tvservice-bg-discount-img,
body.page-order .tvcmscustomer-services .card-deck .card:nth-child(2) .tvservices-img .tvservice-bg-discount-img {	background-position: -200px 0}
body.page-product .tvcmscustomer-services .card-deck .card:nth-child(3) .tvservices-img .tvservice-bg-discount-img,
body.page-cart .tvcmscustomer-services .card-deck .card:nth-child(3) .tvservices-img .tvservice-bg-discount-img,
body.page-order .tvcmscustomer-services .card-deck .card:nth-child(3) .tvservices-img .tvservice-bg-discount-img {	background-position: -300px 0}
body.page-product .tvcmscustomer-services .card-deck .card:first-child:hover .tvservices-img .tvservice-bg-discount-img,
body.page-cart .tvcmscustomer-services .card-deck .card:first-child:hover .tvservices-img .tvservice-bg-discount-img,
body.page-order .tvcmscustomer-services .card-deck .card:first-child:hover .tvservices-img .tvservice-bg-discount-img {	background-position: -100px 100px}
body.page-product .tvcmscustomer-services .card-deck .card:nth-child(2):hover .tvservices-img .tvservice-bg-discount-img,
body.page-cart .tvcmscustomer-services .card-deck .card:nth-child(2):hover .tvservices-img .tvservice-bg-discount-img,
body.page-order .tvcmscustomer-services .card-deck .card:nth-child(2):hover .tvservices-img .tvservice-bg-discount-img {	background-position: -200px 100px}
body.page-product .tvcmscustomer-services .card-deck .card:nth-child(3):hover .tvservices-img .tvservice-bg-discount-img,
body.page-cart .tvcmscustomer-services .card-deck .card:nth-child(3):hover .tvservices-img .tvservice-bg-discount-img,
body.page-order .tvcmscustomer-services .card-deck .card:nth-child(3):hover .tvservices-img .tvservice-bg-discount-img {	background-position: -300px 100px}
body.page-product .tvcmscustomer-services .tvservices-info,
body.page-cart .tvcmscustomer-services .tvservices-info,
body.page-order .tvcmscustomer-services .tvservices-info {	text-align: center}
body.page-product .tvcmscustomer-services .tvservices-info p,
body.page-cart .tvcmscustomer-services .tvservices-info p,
body.page-order .tvcmscustomer-services .tvservices-info p {
	color: #1c0303;
	font: 400 16px/normal 'Signika', cursive}
body.page-cart .cart-item .product-line-grid-body .product-line-info a.label {
	text-transform: none;
	font: 600 24px/30px 'Akaya Kanadaka', cursive}
body.page-cart .cart-item {
	padding: 15px;
	background: #fff;
	border: 1px solid #a0c4c2}
body.page-cart .cart-item:nth-child(n+2) {	border-top: none}
body.page-cart .cart-item.no-items {	text-align: center}
body.page-cart .cart-item .cart-line-product-actions {	margin-top: 0.5em}
body.page-cart .cart-item .remove-from-cart {
	display: inline-block;
	color: #fff;
	background: #a0c4c2;
	border-radius: 990px;
	padding: 5px 10px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	height: auto;
	overflow: hidden}
body.page-cart .cart-item .remove-from-cart i {	font-size: 1rem}
body.page-cart .col-lg-5 {
	position: sticky;
	top: 8em}
body.page-cart .card.cart-summary {
	padding: 15px;
	background: #fff;
	border: 1px solid #a0c4c2;
	border-top: none}
body.page-cart .card.cart-summary .cart-detailed-totals .card-block .cart-summary-line {
	font: 400 15px/normal 'Signika', cursive;
	text-transform: uppercase;
	margin-bottom: 0.5em}
body.page-cart .card.cart-summary .cart-detailed-totals .card-block .cart-summary-line.vouchers {	font: 400 11px/normal 'Signika', cursive;}
body.page-cart .card.cart-summary .cart-detailed-totals .card-block .cart-summary-line.vouchers .label {	vertical-align: middle;}
body.page-cart .card.cart-summary .cart-detailed-totals .card-block .cart-summary-line .label > .label {
	display: inline-block;
	vertical-align: top;}
body.page-cart .cart-detailed-totals .label .btn-secondary {
	display: inline-block;
	color: #fff;
	background: #a0c4c2;
	border-radius: 990px;
	padding: 5px 10px;
	font: 400 11px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	height: auto;
	overflow: hidden}
body.page-cart .cart-detailed-totals .label .btn-secondary i {
	vertical-align: bottom;
	font-size: 0.8rem}
body.page-cart .card.cart-summary .cart-detailed-totals .card-block:last-child .cart-summary-line:last-child {	margin-bottom: 0}
body.page-cart .cart-detailed-actions.card-block,
body.page-cart .cart-detailed-actions-continue:nth-last-child(n+2),
body.page-pagenotfound .cart-detailed-actions:nth-last-child(n+2) {	margin-bottom: 1em}
body.page-cart .cart-detailed-actions .btn,
body.page-cart .cart-detailed-actions-continue .btn,
body.page-pagenotfound .cart-detailed-actions .btn,
body#module-paypal-error .cart-detailed-actions .btn {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 15px/26px 'Signika', cursive;
	text-transform: uppercase;
	width: 100%;
	height: 40px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%}
body.page-cart .cart-detailed-actions .btn:hover,
body.page-cart .cart-detailed-actions-continue .btn:hover,
body.page-pagenotfound .cart-detailed-actions .btn:hover {
	color: #fff;
	background: #1c0303;}
body.page-cart .cart-detailed-actions:not(.card-block) .btn,
body.page-cart .cart-detailed-actions-continue:not(.card-block) .btn {
	color: #fff;
	background: #a0c4c2}
body.page-cart .col-lg-3,
body.page-authentication .col-lg-3,
body.page-order .col-lg-3 {
	position: sticky;
	top: 8em}
	
	@media(max-width: 576px){
		.col-xs-0 {	display: none}
		.product-line-grid-body .col-md-10 .product-line-info,
		.product-line-grid-body .col-md-10 .qty {	text-align: center}
		.product-line-grid-body .col-md-10 .qty {	margin: 10px 0}
	}
	@media(max-width: 767px){
		body.page-cart .col-lg-3,
		body.page-authentication .col-lg-3,
		body.page-order .col-lg-3 {
			position: initial;
			margin-top: 30px}
	}
	
body.page-order .card.js-cart {
	padding: 15px;
	background: #fff;
	border: 1px solid #a0c4c2}
body.page-order .card.js-cart .card-block:first-child {	font: 400 13px/normal 'Signika', cursive}
body.page-order .card.js-cart .card-block:last-child {	margin-top: 15px}
body.page-order .col-lg-11.wow {	margin-bottom: 20px}
body.page-order .checkout-step {
	position: relative;
	padding: 15px;
	background: #fff;
	border: 1px solid #a0c4c2}
body.page-order .checkout-step:nth-child(n+2) {	border-top: none}
body.page-order .checkout-step:not(.js-current-step) {
	color: #a48383;
	padding: 5px 15px}
body.page-order .checkout-step:not(.js-current-step) h2 {	color: #a48383}
body.page-order .checkout-step h2 {
	text-transform: none;
	font: 600 20px/26px 'Akaya Kanadaka', cursive}
body.page-order .checkout-step.js-current-step h2 {	font: 600 32px/40px 'Akaya Kanadaka', cursive}
body.page-order .checkout-step.js-current-step h2 .done,
body.page-order .checkout-step.js-current-step h2 .step-edit {	display: none}
body.page-order .checkout-step h2 .done {
	margin-right: 0.33em;
	color: #a48383}
body.page-order .checkout-step h2 .step-edit {
	font: 400 11px/normal 'Signika', cursive;
	margin-left: 0.5em;
	text-transform: uppercase;
	color: #a48383}
body.page-order .checkout-step .btn,
body.page-order section.checkout-step .delete-address,
body.page-order section.checkout-step .edit-address {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	overflow: hidden}
body.page-order .checkout-step .btn:hover,
body.page-order section.checkout-step .delete-address:hover,
body.page-order section.checkout-step .edit-address:hover{
	color: #fff;
	background: #1c0303}
body.page-order .checkout-step .nav-item .btn:not(.active) {	opacity: 0.4}
body.page-order .checkout-step .btn-secondary,
body.page-order .checkout-step .tvlogin-from-btn,
body.page-order .checkout-step .tvlogin-from-btn .btn {
	color: #fff;
	background: #a0c4c2}
body.page-order .checkout-step .tvlogin-from-btn .btn {	border-radius: 0}
body.page-order .checkout-step .btn-primary i {
	font-size: 20px;
	vertical-align: bottom}
body.page-order .checkout-step input[name=birthday] + .form-control-comment {	display: none}
body.page-order .checkout-step .form-footer {	margin: 1em 0 0}
body.page-order section.checkout-step .address-item .address-footer {	margin-top: 0.5em}
body.page-order section.checkout-step .address-item .btn-secondary {
	color: #fff;
	background: #a0c4c2;
	padding: 5px 10px}
body.page-order .checkout-step .btn.cancel-address {	margin-right: .3125rem}
body.page-order .checkout-step .content {	margin-top: 1em}
body.page-order .checkout-step .js-address-form section p:first-child {	margin-top: 0}
body.page-order .checkout-step .custom-radio {	margin-top: 0.25em;}
body.page-order .checkout-step .delivery-option {
	margin-left: 0;
	margin-right: 0;
	border: 1px solid #d3ecea;
	padding: 10px}
body.page-order .checkout-step .delivery-option:nth-child(n+2) {	border-top: none}
body.page-order .checkout-step .delivery-option img {	max-height: 2em}
body.page-order .checkout-step .delivery-option .delivery-option-2 .col-lg-3 {	text-align: center}
body.page-order .checkout-step .order-options {	margin-top: 2em}
	
	@media(max-width: 767px){
		body.page-order .checkout-step .order-options {	margin-top: 15px}
	}
	
body.page-order .checkout-step textarea {	border: 1px solid #d3ecea}
body.page-order .checkout-step #conditions-to-approve ul li .float-xs-left {	margin-top: 0.1em}
body.page-order .checkout-step #conditions-to-approve ul li a {	font-weight: bold}
/* body.page-order .checkout-step #payment-confirmation, */
body.page-order .checkout-step #payment-confirmation .ps-shown-by-js {	text-align: right}
body.page-order .checkout-step #payment-confirmation button.btn {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 15px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	overflow: hidden}
body.page-order .checkout-step #payment-confirmation button.btn:hover{
	color: #fff;
	background: #1c0303}
	
	@media(max-width: 576px){
		body.page-order .checkout-step .form-footer {
			text-align: center;
			margin: 30px 0 0}
		body.page-order .checkout-step .form-footer#payment-confirmation {	margin: 15px 0 0}
		body#checkout section.checkout-step .form-footer .btn {
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
			max-width: 100%;
			margin: 0 0 10px;
			float: none !important}
		body#checkout section.checkout-step .form-footer .btn:last-child {	margin: 0 0 0}
	}
	
body.page-authentication .col-lg-11.wow {	margin-bottom: 20px}
body.page-authentication .tvall-inner-page-box {	padding-bottom: 4em}
body.page-authentication .tvall-inner-page-box .login-form,
body.page-authentication .tvall-inner-page-box .register-form {
	position: relative;
	padding: 15px;
	background: #fff;
	border: 1px solid #a0c4c2}
body.page-authentication .input-group .tvlogin-from-btn {
	color: #fff;
	background: #a0c4c2}
body.page-authentication .input-group .input-group-btn > .btn[data-action="show-password"] {
	padding: 7px 10px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	overflow: hidden;
	height: 100%;
	color: #fff;
	background: #a0c4c2}
body.page-authentication .tvlogin-btn .btn-primary {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	overflow: hidden}
body.page-authentication .tvlogin-btn .btn-primary:hover{
	color: #fff;
	background: #1c0303}
body.page-authentication .tvlogin-btn .btn-primary i {
	font-size: 20px;
	vertical-align: bottom}
body.page-authentication .tvlogin-btn .btn-secondary {
	color: #fff;
	background: #a0c4c2;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	overflow: hidden;}
body.page-authentication .tvlogin-btn .btn-secondary:hover{
	color: #fff;
	background: #1c0303}
body.page-authentication .col-md-3 .btn {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 15px/26px 'Signika', cursive;
	text-transform: uppercase;
	width: 100%;
	height: 40px;
	overflow: hidden}
body.page-authentication .col-md-3 .btn:hover{
	color: #fff;
	background: #1c0303}
body.page-contact  #left-column .tvmobile-view-left-col {
	padding: 15px;
	background: #fff;
	color: #1c0303;
	border: 1px solid #a0c4c2}
body.page-contact .contact-form,
body.page-cms .left-column,
body.page-sitemap .left-column {
	position: relative;
	padding: 15px;
	background: #fff;
	border: 1px solid #a0c4c2}
body.page-contact .notifications ul {	margin: 0 0 0}
body.page-contact .input-group-btn.group-span-filestyle {
	color: #fff;
	background: #a0c4c2}
body.page-contact .tvcontact-us-attachment .input-group-btn .btn {	
	padding: 7px 10px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	overflow: hidden;
	height: 100%;
	color: #fff;
	background: #a0c4c2}
body.page-contact .contact-form .tvcontact-us-button .btn {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 15px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	height: 40px;
	overflow: hidden}
body.page-contact .contact-form .tvcontact-us-button .btn:hover {
	color: #fff;
	background: #1c0303;}
body.page-my-account .container-fluid > .container > .row > .col-lg-3,
body.page-identity .container-fluid > .container > .row > .col-lg-3,
body.page-addresses .container-fluid > .container > .row > .col-lg-3,
body.page-address .container-fluid > .container > .row > .col-lg-3,
body.page-history .container-fluid > .container > .row > .col-lg-3,
body.page-order-detail .container-fluid > .container > .row > .col-lg-3,
body.page-order-slip .container-fluid > .container > .row > .col-lg-3,
body.page-discount .container-fluid > .container > .row > .col-lg-3,
body.page-contact .container-fluid > .container > .row > .col-lg-3 {
	position: sticky;
	top: 8em}
	
	@media (max-width: 767px) {
		body.page-my-account .container-fluid > .container > .row > .col-lg-3,
		body.page-identity .container-fluid > .container > .row > .col-lg-3,
		body.page-addresses .container-fluid > .container > .row > .col-lg-3,
		body.page-address .container-fluid > .container > .row > .col-lg-3,
		body.page-history .container-fluid > .container > .row > .col-lg-3,
		body.page-order-detail .container-fluid > .container > .row > .col-lg-3,
		body.page-order-slip .container-fluid > .container > .row > .col-lg-3,
		body.page-discount .container-fluid > .container > .row > .col-lg-3 {
			position: initial;
			margin-top: 30px}
		body.page-contact .container-fluid > .container > .row > .col-lg-3 {	position: initial}
		body.page-contact .container-fluid > .container > .row > .left-column {	margin-top: 30px}
	}

body.page-contact .contact-form .notifications {	float: none}
body.page-my-account .col-md-9 .col-lg-3 {	position: relative}
body.page-my-account .col-md-9 .col-lg-3:nth-child(n+5) {	margin-top: 20px}
	
	@media(max-width: 991px){
		body.page-my-account .col-md-9 .col-md-4:nth-child(n+4) {	margin-top: 20px}
	}
	@media(max-width: 767px){
		body.page-my-account .col-md-9 .col-sm-6:nth-child(n+3) {	margin-top: 20px}
	}
	@media(max-width: 576px){
		body.page-my-account .col-md-9 .col-xs-12:nth-child(n+2) {	margin-top: 20px}
	}
	
body.page-my-account .col-md-9 .col-lg-3 a {
	display: block;
	height: 100%;
	width: 100%;
	padding: 45px 15px;
	background: #fff;
	text-align: center;
	border: 1px solid #a0c4c2}
body.page-my-account .col-lg-3 .btn,
body.page-identity .col-lg-3 .btn,
body.page-addresses .col-lg-3 .btn,
body.page-address .col-lg-3 .btn,
body.page-history .col-lg-3 .btn,
body.page-order-detail .col-lg-3 .btn,
body.page-order-slip .col-lg-3 .btn,
body.page-discount .col-lg-3 .btn {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 15px/26px 'Signika', cursive;
	text-transform: uppercase;
	width: 100%;
	height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap}
body.page-my-account .col-lg-3 .btn:hover,
body.page-identity .col-lg-3 .btn:hover,
body.page-addresses .col-lg-3 .btn:hover,
body.page-address .col-lg-3 .btn:hover,
body.page-history .col-lg-3 .btn:hover,
body.page-order-detail .col-lg-3 .btn:hover,
body.page-order-slip .col-lg-3 .btn:hover,
body.page-discount .col-lg-3 .btn:hover {
	color: #fff;
	background: #1c0303;}
body.page-my-account .col-lg-3 .cart-detailed-actions,
body.page-identity .col-lg-3 .cart-detailed-actions,
body.page-addresses .col-lg-3 .cart-detailed-actions,
body.page-address .col-lg-3 .cart-detailed-actions,
body.page-history .col-lg-3 .cart-detailed-actions,
body.page-order-detail .col-lg-3 .cart-detailed-actions,
body.page-order-slip .col-lg-3 .cart-detailed-actions,
body.page-discount .col-lg-3 .cart-detailed-actions {	margin-bottom: 1em}
body.page-my-account .col-lg-3 .tvyour-account-btn .btn,
body.page-identity .col-lg-3 .tvyour-account-btn .btn,
body.page-addresses .col-lg-3 .tvyour-account-btn .btn,
body.page-address .col-lg-3 .tvyour-account-btn .btn,
body.page-history .col-lg-3 .tvyour-account-btn .btn,
body.page-order-detail .col-lg-3 .tvyour-account-btn .btn,
body.page-order-slip .col-lg-3 .tvyour-account-btn .btn,
body.page-discount .col-lg-3 .tvyour-account-btn .btn {
	color: #fff;
	background: #a0c4c2;
	border: 1px solid #a0c4c2}
body.page-my-account .col-lg-3 .tvyour-account-btn .btn:hover,
body.page-identity .col-lg-3 .tvyour-account-btn .btn:hover,
body.page-addresses .col-lg-3 .tvyour-account-btn .btn:hover,
body.page-address .col-lg-3 .tvyour-account-btn .btn:hover,
body.page-history .col-lg-3 .tvyour-account-btn .btn:hover,
body.page-order-detail .col-lg-3 .tvyour-account-btn .btn:hover,
body.page-order-slip .col-lg-3 .tvyour-account-btn .btn:hover,
body.page-discount .col-lg-3 .tvyour-account-btn .btn:hover {
	color: #a0c4c2;
	background: #fff}
body.page-identity .col-lg-9 .js-customer-form,
body.page-address .col-lg-9 .js-address-form {
	position: relative;
	padding: 15px;
	background: #fff;
	border: 1px solid #a0c4c2;}
body.page-identity .input-group-btn.tvlogin-from-btn,
body.page-address .input-group-btn.tvlogin-from-btn {
	color: #fff;
	background: #a0c4c2}
body.page-identity .tvlogin-from-btn .btn,
body.page-address .tvlogin-from-btn .btn {	
	padding: 7px 10px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	overflow: hidden;
	height: 100%;
	color: #fff;
	background: #a0c4c2;
	text-overflow: ellipsis;
	white-space: nowrap}
body.page-identity .js-customer-form .tvlogin-btn .btn,
body.page-address .js-address-form .tvlogin-btn .btn {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 15px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap}
body.page-identity .js-customer-form .tvlogin-btn .btn:hover,
body.page-address .js-address-form .tvlogin-btn .btn:hover {
	color: #fff;
	background: #1c0303;}
body.page-addresses .col-md-9 .col-lg-4 article {
	display: block;
	height: 100%;
	width: 100%;
	padding: 15px;
	background: #fff;
	text-align: center;
	border: 1px solid #a0c4c2}
body.page-addresses .col-md-9 .col-lg-4 article .btn-secondary,
body.page-history .col-md-9 table .btn-secondary {
	display: inline-block;
	color: #fff;
	background: #a0c4c2;
	padding: 5px 10px;
	border-radius: 990px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border: 1px solid #a0c4c2}
body.page-addresses .col-md-9 .col-lg-4 article .btn-secondary:hover,
body.page-history .col-md-9 table .btn-secondary:hover {
	color: #a0c4c2;
	background: #fff}
body.page-addresses .col-md-9 .col-lg-4 article .btn-secondary i,
body.page-history .col-md-9 table .btn-secondary i {
	vertical-align: bottom;
	font-size: 1rem}
body.page-history .col-md-9 table .btn-secondary {	width: 100%}
body.page-history .col-md-9 table .btn-secondary:nth-child(n+2) {	margin-top: 5px}
body.page-history .col-md-9 .orders .col-xs-4 a,
body.page-order-slip .col-md-9 .slips .col-xs-4 a {
	display: inline-block;
	color: #fff;
	background: #a0c4c2;
	padding: 3px 10px 5px 7px;
	border-radius: 990px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	width: auto;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border: 1px solid #a0c4c2;
	line-height: 30px;
	width: 40px;
	height: 40px}
body.page-order-detail .col-lg-9 .box {
	position: relative;
	padding: 15px;
	background: #fff;
	border: 1px solid #a0c4c2}
body.page-order-detail .col-lg-9 .box:nth-child(n+2) {	border-top: none}
body.page-order-detail .col-md-9 .btn-secondary {
	display: inline-block;
	color: #fff;
	background: #a0c4c2;
	padding: 5px 10px;
	border-radius: 990px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	max-width: 100%;
	width: auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border: 1px solid #a0c4c2}
body.page-order-detail .col-md-9 .btn-secondary:hover {
	color: #a0c4c2;
	background: #fff}
body.page-order-detail .col-md-9 .btn-secondary i {
	vertical-align: bottom;
	font-size: 1rem}
	
	@media (max-width: 1279px) {
		.page-addresses .address .address-footer .btn {	min-width: 51%}
		.page-addresses .address .address-footer .btn:nth-child(n+2) {
			margin-top: 15px}
	}
	@media (max-width: 576px) {
		body.page-addresses .col-md-9 .col-lg-4.col-xs-12:nth-child(n+2) {	margin-top: 30px}
	}
	
body.page-order-slip .slips .slip {
	border: 1px solid #d3ecea;
	padding: 10px 7px;
	background: #fff}
body.page-order-slip .slips .slip:nth-child(n+2){	border-top: none}
body.page-order-slip .slips .slip .label {
	display: inline-block;
	margin: .25rem 0;
	padding: .25rem .375rem;
	color: #fff;
	border-radius: 3px}
body.page-discount .discounts .discount {
	border: 1px solid #d3ecea;
	padding: 10px 7px;
	background: #fff}
body.page-discount .discounts .discount:nth-child(n+2){	border-top: none}
body.page-discount .discounts .discount .label {
	display: inline-block;
	margin: .25rem 0;
	padding: .25rem .375rem;
	color: #fff;
	border-radius: 3px}
body.page-order-confirmation .col-xl-12 .box {
	position: relative;
	padding: 15px;
	background: #fff;
	border: 1px solid #a0c4c2}
body.page-order-confirmation .col-xl-12 .box > div:nth-child(n+2) {	margin-top: 40px}
body.page-order-confirmation .col-xl-12 .box > div p:first-child {	margin-top: 0}
body.page-order-confirmation .col-xl-12 .box > div p:last-child {	margin-bottom: 0}
body.page-order-confirmation .col-xl-2 {
	position: sticky;
	top: 8em;
	z-index: 2}
body.page-order-confirmation .col-xl-2 .btn {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 15px/26px 'Signika', cursive;
	text-transform: uppercase;
	width: 100%;
	height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap}
	
	@media (max-width: 767px) {
		body#ets_blog_page #left-column .tvmobile-view-left-col {	display: none}
	}
	
body#ets_blog_page .page-content .container > .row .col-lg-3 .post-date {
	text-align: center;
	font: 400 13px/normal 'Signika', cursive;
	padding: 5px;
	background: #fff;
	color: #1c0303;
	margin-bottom: 15px;
	border: 1px solid #a0c4c2}
body#ets_blog_page .page-content .container > .row .col-xl-2 .post-date .be-label {
	display: inline;
	float: none;
	overflow: inherit;
	text-indent: 0;
	white-space: inherit;
	width: auto}
body#ets_blog_page .page-content .container > .row .col-lg-3 .post-date .be-label::before {	display: none}
/* body#ets_blog_page .page-content .container > .row .col-lg-3 .tvmobile-view-left-col {	padding-top: 2em} */
body#ets_blog_page .page-content .container > .row .col-lg-3 .tvmobile-view-left-col .block {
	padding: 15px 15px 15px 15px;
	background: #fff;
	color: #1c0303;
	border: 1px solid #a0c4c2}
body#ets_blog_page .page-content .container > .row .col-lg-3 .tvmobile-view-left-col .block:nth-child(n+2) {
	padding-top: 15px;
	border-top: none}
body#ets_blog_page .page-content .container > .row .col-lg-3 .tvmobile-view-left-col .block:last-child {	padding-bottom: 15px}
body#ets_blog_page .page-content .container > .row .col-lg-3 .tvmobile-view-left-col .block h3 {	font: 600 22px/28px 'Akaya Kanadaka', cursive;}
body#ets_blog_page .page-content .container > .row .ets_blog_img_wrapper_thumb {
	float: right;
	max-width: 33%;
	margin: 0 0 30px 30px;
	box-shadow: 0px 15px 25px rgba(0,0,0,0.15);
	line-height: 0}
	
	@media (max-width: 767px) {
		body#ets_blog_page .page-content .container > .row .ets_blog_img_wrapper_thumb {
			max-width: 50%;
			margin: 0 0 15px 30px}
	}
	@media (max-width: 576px) {
		body#ets_blog_page .page-content .container > .row .ets_blog_img_wrapper_thumb {
			max-width: 100%;
			margin: 0 0 15px 0}
	}
	
body#ets_blog_page .page-content .container > .row .col-lg-3 .ets_block_slider .owl-carousel.owl-hidden {	opacity: 1}
body#ets_blog_page .page-content .container > .row .col-lg-3 .ets_block_slider .owl-item > div {	border: 1px solid #d3ecea}
body#ets_blog_page .page-content .container > .row .col-lg-3 .ets_block_slider .owl-item > div > .tvall-product-balance {	padding: 10px}
body#ets_blog_page .page-content .container > .row .col-lg-3 .ets_block_slider .owl-item > div > .tvall-product-balance h4 a {	font: 600 16px/28px 'Akaya Kanadaka', cursive;}
body#ets_blog_page .page-content .container > .row .col-lg-3 .ets_block_slider .owl-item > div > .tvall-product-balance .description {	font: 400 13px/normal 'Signika', cursive}
body#ets_blog_page .page-content .container > .row .col-lg-3 .ets_block_slider .owl-item > div > .tvall-product-balance .description p {	margin: 0}
body#ets_blog_page .page-content .container > .row .col-lg-3 .ets_block_slider .owl-item > div > .tvall-product-balance .description p a {	display: block}
body#ets_blog_page .page-content .container > .row .col-lg-3 .ets_block_slider .owl-item > div > .tvall-product-balance .post-date {
	text-align: right;
	font: 400 11px/34px 'Signika', cursive;
	padding: 0;
	border: none}
body#ets_blog_page .page-content .container > .row .col-lg-3 .block .blog_view_all_button {	margin-top: 15px}
body#ets_blog_page .page-content .container > .row .col-lg-3 .block .btn-primary {
	color: #1c0303;
	background: #fec692;
	border-radius: 990px;
	padding: 7px 10px;
	font: 400 13px/normal 'Signika', cursive;
	text-transform: uppercase;
	height: auto;
	min-width: 1px;
	width: auto;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;}
body#ets_blog_page .page-content .container > .row .col-lg-3 .block .btn-primary:hover {
	color: #fff;
	background: #1c0303;}
body#ets_blog_page .page-content .container > .row .col-lg-3 .block ul.tree a sup {
	display: inline-block;
	width: 1.3em;
	height: 1.3em;
	background: #1c0303;
	color: #fff;
	border-radius: 50%;
	padding: 0.65em 0.35em 0;
	position: inherit;
	vertical-align: top}
body#ets_blog_page .page-content .container > .row .col-lg-3 .block ul.tree {
	margin-left: -15px;
	margin-right: -15px}
body#ets_blog_page .page-content .container > .row .col-lg-3 .block ul.tree li a {
	font: 400 13px/normal 'Signika', cursive;
	width: 100%;
	display: block;
	border: 1px solid #d3ecea;
	padding: 7px 10px}
body#ets_blog_page .page-content .container > .row .col-lg-3 .block ul.tree li:nth-child(n+2) a {	border-top: none}
body#ets_blog_page .page-content .ets-blog-wrapper-blog-list .ets-blog-list > li .post-wrapper {
	border: 1px solid #a0c4c2;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;}
body#ets_blog_page .page-content .ets-blog-wrapper-blog-list .ets-blog-list > li .post-wrapper:hover {  box-shadow: 0 10px 20px rgba(0,0,0,0.1)}
body#ets_blog_page .page-content .ets-blog-wrapper-blog-list .ets-blog-list > li .relative {
	padding-top: 100%;
	position: relative}
body#ets_blog_page .page-content .ets-blog-wrapper-blog-list .ets-blog-list > li .relative .read_more {
	border-top: 1px solid #a0c4c2;
	border-left: 1px solid #a0c4c2;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: #ffffff;
	padding: 5px 10px;
	font: 400 13px/normal 'Signika', cursive;}
body#ets_blog_page .page-content .ets-blog-wrapper-blog-list .ets-blog-list > li .relative .read_more::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 1px;
	z-index: 1;
	background: #fff}
body#ets_blog_page .page-content .ets-blog-wrapper-blog-list .ets-blog-list > li .ets-blog-wrapper-content {
	position: relative;
	text-align: left;
	overflow: hidden;
	background-color: #fff;
	border-top: 1px solid #a0c4c2}
body#ets_blog_page .page-content .ets-blog-wrapper-blog-list .ets-blog-list > li .ets-blog-wrapper-content .ets-blog-wrapper-content-main {	padding: 10px}
body#ets_blog_page .page-content .ets-blog-wrapper-blog-list .ets-blog-list > li .ets-blog-wrapper-content .ets-blog-wrapper-content-main h2,
body#ets_blog_page .page-content .ets-blog-wrapper-blog-list .ets-blog-list > li .ets-blog-wrapper-content .ets-blog-wrapper-content-main h2 a {	font: 600 22px/28px 'Akaya Kanadaka', cursive;}
body#ets_blog_page .page-content .ets-blog-wrapper-blog-list .ets-blog-list > li .ets-blog-wrapper-content .ets-blog-wrapper-content-main .blog_description p {	margin: 0 0 0}
body#ets_blog_page .page-content .ets-blog-wrapper-blog-list .ets-blog-list > li .ets-blog-wrapper-content .ets-blog-wrapper-content-main .blog_description a {	font: 400 13px/normal 'Signika', cursive;}

body.page-pagenotfound .container > .row > .col-md-9 > div,
body#module-paypal-error .container > .row > .col-md-9 > div {
	padding: 15px;
	background: #fff;
	border: 1px solid #a0c4c2}