/* 	@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600|Oswald:400,500'); */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, figure, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  /* font-family: "Work Sans","HelveticaNeue","Helvetica Neue",sans-serif !important; */
  vertical-align: baseline;
}

header, section, footer, aside, nav, article {
  display: block
  /* block elements */
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

body {
 
 color: #3d4246;
  background: white;
}

ol, ul {
  list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

/* ============================ BASE ============================= */
html {
  font-size: 16px;
}

body {
  cursor: default;
}

.cards button {
  cursor: pointer;
}

/* ================================ HEADER ====================================== */
/* .header {
  
  background-color: #000;
  padding: 0 100px;
  height: 47px;
  padding-top: 28px;
} */

.nav__wrap,
.nav__linkWrap {
  float: left;
}

/* ============ items ============ */
.nav__linkWrap {
  padding-right: 50px;
}

.nav__hmbgr {
  display: none;
  color: #fff;
}

/* ============ icons ============ */
.nav__link, .nav__hmbgr {
 
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}

.icons {
  float: right;
}

.wishList, .cart {
  position: relative;
  display: block;
  margin-left: 30px;
  float: left;
  text-decoration: none;
}


.wishList {
  padding-top: 2px;
}

.wishList path {
  fill: #fff;
  fill-rule: evenodd;
}

.cart path {
  fill: #fff;
  fill-rule: evenodd;
}

/* ================================= CARDS =================================== */
.cards {
  padding: 0px 0;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
       
}

.cardItem {
  margin: 20px 10px;
  position: relative;
  width: 245px;
  /* height: 450px; */
  /* height: 402px; */
   /*    height: 367px; */
  box-shadow: none;
  -webkit-transition: box-shadow .5s ease, -webkit-transform .3s ease;
          transition: box-shadow .5s ease, transform .3s ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-perspective: 800px;
          perspective: 800px;
  -webkit-perspective-origin: 50%;
          perspective-origin: 50%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.rotate {
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.13);
  -webkit-transition: box-shadow .5s ease, -webkit-transform .3s ease;
          transition: box-shadow .5s ease, transform .3s ease;
  -webkit-transform: perspective(800px) rotateY(180deg);
          transform: perspective(800px) rotateY(180deg);
}

/* ======================== FRONT/TOP ================== */
.cardItem__frontSide {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFF;
  z-index: 0;
  height: auto;
  padding: 20px;
  width: 240px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.cardItem__imgWrap {
  position: relative;
  width: 240px;
  /* height: 321px; 
  height: 280px;*/
}

.cardItem__figure {
  width: 240px;
  /* height: 100%; */
}

.cardItem__figcaption, .idItemInfo {
  position: absolute;
  visibility: hidden;
}

.cardItem__imgLink {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: transparent;
  z-index: 1;
  -webkit-transition: background-color .2s ease;
          transition: background-color .2s ease;
}

.cardItem__img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}

.cardItem__button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -85px;
  margin-top: -25px;
  border: none;
  width: 170px;
  opacity: 0;
  height: auto;
  text-align: left;
  padding: 15px 0 15px 57px;
  background-color: black;
  font: 1rem 'Lato-Regular';
  color: #fff;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: opacity 1s ease;
          transition: opacity 1s ease;
}

.cardItem__button svg {
  position: absolute;
  width: 18px;
  height: 20px;
  left: 20px;
  fill: #fff;
}

.cardItem__imgWrap:hover .cardItem__button {
  opacity: .4;
  -webkit-transition: opacity 1s ease;
          transition: opacity 1s ease;
}

.cardItem__imgWrap .cardItem__button:hover {
  opacity: .8;
  -webkit-transition: opacity .4s ease 0s;
          transition: opacity .4s ease 0s;
}

.cardItem__imgLink:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.cardItem__heartIcon {
  padding: 0;
  border: none;
  background-color: transparent;
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 10px;
}

.cardItem__heartIcon svg {
  width: 20px;
  height: 17px;
}

.cardItem__heartIcon path {
  opacity: 0;
  fill: transparent;
  stroke: #999;
  stroke-width: 2px;
  -webkit-transition: all 1s ease;
          transition: all 1s ease;
}

.cardItem:hover .cardItem__heartIcon path {
  opacity: 1;
}

.cardItem__heartIcon:hover path {
  stroke: #d8827e;
  fill: #d8827e;
  -webkit-transition: all 1s ease;
          transition: all 1s ease;
}

.cardItem[data-liked-cust] .cardItem__heartIcon path {
  opacity: 1;
  fill: #d24a43;
  stroke: #d24a43;
  -webkit-transition: all .2s ease;
          transition: all .2s ease;
}

/* =================== FRONT / BOTTOM ===================== */
.cardItem__textWrap {
  position: relative;
  /* margin-top: 23px; */
  margin-top: 15px;
  width: 100%;
  height: auto;
}

.cardItem__textWrap-price {
  width: 85%;
  padding-bottom: 4px;
  margin-top: 8px;
}

.cardItem__currentPrice {
  font-size:16px;
  padding-right: 15px;
      color: #788188;
    font-weight: 400;
}

.cardItem__oldPrice {
  font-size:14px;
  color: #666;
  text-decoration: line-through;
}

/* ================= ICONS IN ITEMS ==================== */
.cardItem__cartIcon {
  position: absolute;
  top: -3px;
  right: 0;
  padding: 0;
  border: none;
  background-color: transparent;
}

.cardItem__cartIconHover {
  position: absolute;
}

.cardItem__cartIcon .cardItem__cartIconPressed path {
  opacity: 0;
}

.cardItem__cartIcon path {
  outline: 0px solid transparent;
  opacity: 0;
  fill: #999;
  -webkit-transition: all .5s ease;
          transition: all .5s ease;
}

.cardItem__cartIcon:hover path {
  fill: #666;
  -webkit-transition: all .5s ease;
          transition: all .5s ease;
}

.cardItem__cartIcon svg {
  width: 20px;
  height: 18px;
}

.cardItem:hover .cardItem__cartIcon .cardItem__cartIconHover path {
  opacity: 1;
}

.cardItem:hover .cardItem__cartIcon .cardItem__cartIconPressed path {
  opacity: 0;
}

.cardItem[data-carting] .cardItem__cartIcon .cardItem__cartIconHover path {
  opacity: 0;
  fill: #000;
  -webkit-transition: all .2s ease 0s;
          transition: all .2s ease 0s;
}

.cardItem[data-carting] .cardItem__cartIcon .cardItem__cartIconPressed path {
  opacity: 1;
  fill: #000;
  -webkit-transition: all .2s ease .1s;
          transition: all .2s ease .1s;
}

.cardItem__itemDiscriptionWrap {
  width: 100%;
  height: 37px;
  overflow: hidden;
}

.cardItem__itemDiscriptionLink {
  text-decoration: none;
  font: .9375rem 'Lato-Regular';
      color: #3d4246;
  -webkit-transition: color .2s ease;
          transition: color .2s ease;
}

.cardItem__itemDiscriptionLink:hover {
  /* color: #a11d29; */
  opacity: 0.6;
}

.cardItem__itemDiscriptionName {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =============================== BACK ============================== */
.cardItem__backSide {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  background-image: -webkit-radial-gradient(circle, #fff, #E9EAEE);
  background-image: radial-gradient(circle, #fff, #E9EAEE);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.cardItem__galleryWrap {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cardItem__backSide .cardItem__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cardItem__btnCloseGallery {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1000;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #a8a8aa;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: -webkit-transform 0s ease .2s;
          transition: transform 0s ease .2s;
}

.rotate .cardItem__btnCloseGallery {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0, 1.98, 0.42, 0.42) 0.3s;
          transition: transform 0.2s cubic-bezier(0, 1.98, 0.42, 0.42) 0.3s;
}

.cardItem__btnCloseGallery path {
  fill-rule: evenodd;
  fill: #b3b3b3;
  -webkit-transition: fill .2s ease;
          transition: fill .2s ease;
}

.cardItem__btnCloseGallery:hover path {
  fill-rule: evenodd;
  fill: #818181;
}

/* ================================= owl.theme.default =================================== */
.owl-carousel .owl-stage.owl-grab {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.owl-carousel .owl-stage {
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-stage-outer,
.owl-stage {
  height: 100%;
}
/* 
.owl-item,
.item {
  width: 100%;
  height: 100%;
} */

/* ===================== controls =================== */
/* ============ arrows ============== */
.owl-prev,
.owl-next {
  position: absolute;
  z-index: 1000;
  top: 50%;
  border: none;
  width: 30px;
  height: 50px;
  border-radius: 0px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: background .2s ease;
          transition: background .2s ease;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.owl-prev:hover,
.owl-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.owl-prev:active,
.owl-next:active {
  background: rgba(0, 0, 0, 0.2);
}

.owl-prev svg,
.owl-next svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.owl-prev .arrow,
.owl-next .arrow {
  fill: white;
}

.owl-next svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.owl-prev {
  left: 0;
}

.owl-next {
  right: 0;
}

/* ============ owl-dots ============== */
.owl-dots {
  position: absolute;
  z-index: 1000;
  width: 100%;
  bottom: 25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.owl-dot {
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  width: 7px;
  height: 16px;
  margin: 0 3.5px;
  opacity: 1;
  background: #b3b3b3;
  -webkit-transition: background .2s ease;
          transition: background .2s ease;
}

.owl-dot:hover {
  background: #6b6b6b;
}

/* fill-in selected dot */
.owl-dot.active {
  background: #6b6b6b;
}

/* ==================  

Speeds up repaint of page. Needs only when the wrapper background are changing, when any cards are opened  

==================*/
.cards {
  will-change: background-color;
}

.cardItem {
  will-change: auto;
}

.cardItem .owl-stage {
  will-change: auto;
}

.cardItem.rotate .owl-stage {
  will-change: transform;
}

/* ============================ custome styles =========================== */
/* display pictures in gallery ( contain / cover) */
.cardItem__backSide .cardItem__img {
  object-fit: cover;
}

.cardItem__cartIcon:focus::after, .cardItem__cartIcon:focus::before {
  opacity: 0;
}

/* needed to all content including top navigation is displayed on the entire height of the screen */
.cards {
 /* min-height: calc(100vh - 175px);*/
}

/* =============================== responsive styles ==================================== 

*/
/* =================================== to 1024px ================================== */
/* set control point for desctop devices */
@media screen and (max-width: 1024px) {
  /* ======================= header ======================== */
  .header {
    padding: 28px 30px 0;
  }

  /* ======================= CARDS ========================= */
  .cards {
    padding: 0;
  }

  /* ======================= cardItem ====================== */
  /* ======== cardItem__imgLink ======== */
  .cardItem__imgLink:hover {
    background-color: initial;
  }

  /* ======== cardItem__button ========== */
  /* .cardItem__buttonText {
    display: none;
  } */

  .cardItem__button {
    margin: 0;
    padding: 0;
    opacity: 1;
    width: 44px;
    height: 44px;
    background-color: initial;
    top: 45px;
    left: initial;
    right: 7px;
  }

  .cardItem__imgWrap:hover .cardItem__button {
    opacity: initial;
  }

  .cardItem__button svg {
    fill: #999;
    opacity: 1;
    left: 13px;
    top: 10px;
    -webkit-transition: fill .2s ease;
            transition: fill .2s ease;
  }

  .cardItem__button:hover svg {
    fill: #666;
  }

  /* ======== cardItem__icons ========== */
  .cardItem__heartIcon {
    width: 44px;
    height: 44px;
    background-color: initial;
    top: 0;
    right: 7px;
  }

  .cardItem__heartIcon svg {
    position: absolute;
    top: 16px;
    left: 13px;
    width: 21px;
    height: 19px;
  }

  .cardItem__heartIcon:hover path {
    fill: transparent;
    stroke: #999;
    -webkit-transition: all 1s ease;
            transition: all 1s ease;
  }

  .cardItem__heartIcon path,
  .cardItem__cartIcon path {
    opacity: 1;
  }

  /* ======== cardItem__btnCloseGallery ========== */
  .cardItem__btnCloseGallery {
    top: 3px;
    right: 3px;
    width: 44px;
    height: 44px;
    background-color: transparent;
  }

  /* hide tootik */
  .cardItem__cartIcon:after, .cardItem__cartIcon:before {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .cardItem:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.13);
    -webkit-transition: box-shadow .2s ease, -webkit-transform .3s ease;
            transition: box-shadow .2s ease, transform .3s ease;
    /* for optimization of page rendering */
    will-change: transform;
  }

  .cardItem.rotate:hover {
    box-shadow: none;
    -webkit-transition: box-shadow .2s ease, -webkit-transform .3s ease;
            transition: box-shadow .2s ease, transform .3s ease;
    will-change: transform;
  }
}
/* =================================== to 620px ================================== */
@media screen and (max-width: 620px) {
  /* ================ only header ======================== */
  .nav__linkWrap {
    display: none;
  }

  .nav__hmbgr {
    display: block;
  }
}
/* =================================== to 320px ================================== */
@media screen and (max-width: 415px) {
  .cardItem {
    margin: 10px 10px;
  }
  
   #catalougePanel .cardItem {
   		height: auto;
  }

  .cardItem__cartIcon:hover path {
    fill: #999;
    -webkit-transition: all .5s ease;
            transition: all .5s ease;
  }

  .cardItem__btnCloseGallery path {
    fill: #999;
  }
}
.cardItem__itemDiscriptionWrap h3{font-size:16px;line-height: 18px;color: #3d4246;}
.loginpanel label{
	white-space: normal !important;
}
.ragistar-checkbox-section label {
    white-space: normal !important;
    overflow:inherit !important;
    font-size: 14px !IMPORTANT;
    padding-left: 30px !important;
    align-items: center;
    position: relative;
}
.ragistar-checkbox-section label p{
	    line-height: 1.5;
    margin-bottom: 10px !IMPORTANT;
    position: relative;
    top: -1px;
}
.mb-15{
	margin-bottom: 15px;
}
.ragistar-checkbox-section{
	margin: 10px 0 !important;
}
.ragistar-checkbox-section [type="checkbox"].filled-in:checked + label:after {
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #0f4ca1;
    background-color: #0f4ca1;
    z-index: 0;
}
.display-flex{
	display: flex;
}
.align-center-items{
	    align-items: center;
}