/* MODEL MIXINS
================================================================== */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  font-family: "Calibri","Helvetica","Arial",sans-serif;*/
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
}

body,
div.container {
  width: 100%;
  margin: 0 auto;
}

/* -- FLEX PROPERTIES -- */
.flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
}

.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

/* -- JUSTIFY PROPERTIES -- */
.ju-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.ju-center,
.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ju-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.ju-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ju-space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.ju-space-evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.ju-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* -- ALING PROPERTIES -- */
.al-flex-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.al-center,
.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.al-flex-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.al-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* -- FLEX STATES -- */
.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-2 {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.flex-3 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

.flex-4 {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
}

.flex-5 {
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
}

.flex-6 {
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
}

/* -- WRAP PROPERTY -- */
.fl-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fl-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* -- COMMON SETTINGS -- */
.rr {
  margin: 0px;
  padding: 0px;
}

ul {
  padding: 0px;
}

ul li {
  list-style: none;
  padding: 0px;
}

a {
  text-decoration: none;
  font-style: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-family: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

i {
  text-decoration: none;
  font-style: normal;
}

.capitalize {
  text-transform: capitalize;
}

.floatr {
  float: right;
}

.floatl {
  float: left;
}

.clear {
  clear: both;
  flex-basis: 100%;
  height: 0;
}

/* SHOP PAGE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333333;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 1000;
}

.container {
  width: 100%;
}

.logo-holder div span {
  font-size: 14px;
  /*    border: 1px solid #333333;*/
  padding: 5px;
}

.link-holder {
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  padding: 20px 0 10px 0;
  width: 50%;
}

.link-holder p {
  font-weight: 700;
  font-size: 14px;
}

.link-holder p:hover {
  cursor: pointer;
  text-decoration: underline;
}

.link-holder p span {
  color: #3c763d;
  margin-right: 5px;
}

.input-holder {
  border-top: 1px solid lightgray;
  border-left: none;
  border-right: none;
  padding: 5px;
  width: 100%;
  /* margin: 10px auto; */
  box-shadow: 3px 3px 3px lightgrey;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.search {
  padding: 6px 12px;
  font-size: 14px;
  position: relative;
  line-height: 1.42857143;
  color: #555555;
  width: 100%;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.sort-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 5px;
}

.sort-holder .sort {
  min-width: 80px;
}

.sort-holder p,
.sort-holder-mob p,
.item-title {
  font-weight: 700;
  font-size: 14px;
  color: #333333;
  padding: 0 5px;
  text-align: center;
}

#sort-btn {
  margin: 3px;
  color: #1bb166;
  border: 2px solid #1bb166;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 17px;
  background: #fff;
}

#sort-btn:hover {
  background: #1bb166;
  color: #fff;
  cursor: pointer;
}

.item-opt li span {
  padding: 0 5px;
}

.item-title {
  padding-left: 20px !important;
}

.item-opt li input,
#quantityInput {
  background-color: #ffffff;
  border: 1px solid #c4cdd5;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-transition: border-color 150ms ease;
  transition: border-color 150ms ease;
  outline: none;
  padding: 8px 5px;
  font-size: 12px;
  color: #46515a;
  font-weight: 300;
  width: 15%;
  margin: 2px 2px;
}

#quantityInput {
  width: 20%;
  text-align: right;
}

.item-opt li:nth-child(2) {
  max-width: 125px;
}

.item-opt li:nth-child(2) input {
  width: 33%;
}

.sort-holder p span i,
.sort-holder-mob p span i {
  margin-right: 5px;
}

.header-filter {
  /*    width: 70%;*/
  background: #fff;
  /* min-width: 180px; */
}

#sortBy {
  padding: 0 10px;
}

.logo-holder img {
  max-width: 200px;
  margin: 20px 0 20px 20px;
}

.product-count {
  min-width: 100px;
}

.nav-cart {
  padding-right: 10px;
}

/** FOOTER **/

.c079,
.c081 {
  display: none;
}

.footer-bottom {
  background-color: #3282c3;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
  bottom: 0;
  width: 100%;
  position: fixed;
  z-index: 1000;
}

.footer-bottom div {
  margin: 0 auto;
}

.footer-bottom p {
  padding: 0 5px;
}

/** MOB ONLY HEADER ELEMENTS **/

.mob-button-holder {
  display: none;
  border-top: 1px solid lightgray;
  border-left: none;
  border-right: none;
  padding: 10px 5px;
  width: 98%;
  margin: 10px auto;
  margin-top: 15px;
  box-shadow: 3px 3px 3px lightgrey;
  /* justify-content: space-between; */
  align-items: center;
}

.mob-header-button {
  padding: 5px 0 5px 5px;
  border: 1px solid lightgray;
  border-radius: 4px;
  min-width: 100px;
}

.mob-header-button p span i {
  margin-right: 5px;
}

#filters-button {
  margin-left: 10px;
}

#filters-button p {
  padding-left: 20%;
}

#filter {
  display: none;
}

#sort {
  display: none;
}

.mob-filter {
  width: 98%;
  margin: 10px auto;
  border-color: grey;
  box-shadow: 4px 4px 4px grey;
}

.mob-filter-title {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  padding: 10px 15px;
  margin-bottom: -1px;
  border: 1px solid #ddd;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  font-weight: 700;
  position: fixed;
  width: 100%;
  max-width: 285px;
}

.mob-filter-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
  text-transform: capitalize;
}

#cats {
  padding-top: 45px;
}

.main {
  display: flex;
  margin-top: 80px;
}

.main-sidebar {
  position: fixed;
  overflow-y: auto;
  /*    max-height: 570px;*/
  height: 100%;
  overflow: hidden;
  padding-bottom: 25px;
}

.main-sidebar,
.marg {
  width: 30%;
  margin-right: 0px;
  max-width: 315px;
  margin-bottom: 70px;
}

.desk-filter {
  margin: 15px;
  border-color: grey;
  box-shadow: 4px 4px 4px grey;
  overflow: auto;
  width: 96%;
  /*    height: 100%;*/
  max-height: 570px;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-left: 318px;
  /*    margin-bottom: 75px;*/
}

.product-box {
  width: 100%;
  max-width: 19%;
  box-shadow: 4px 4px 4px grey;
  padding: 15px 15px 13px 15px;
  margin-bottom: 20px;
  margin-top: 15px;
  line-height: 1.4;
  border: 1px solid #ddd;
  margin-right: 6px;
  height: -webkit-fill-available;
  height: fit-content;
}

.product-img {
  border-radius: 4px;
  border: 1px solid;
  border-color: lightgray;
  margin: 0px 8px;
  /*    height: 255px;*/
}

.product-img img {
  display: block;
  margin: auto;
  padding: 3px;
  max-height: 250px;
  max-width: 100%;
  height: auto;
}

.product-title,
.product-info {
  padding: 0px 9px;
  color: #333;
}

.product-title p a {
  color: #337ab7;
  text-decoration: none;
}

.product-info {
  line-height: 1.7;
  font-size: 14px;
  margin-top: 5px;
}

.pr-big {
  font-size: 1.5em;
  font-weight: bold;
}

.pr-small {
  font-size: 15px;
  font-weight: bold;
  line-height: 2.5em;
}

.pr-green {
  color: #3c763d;
}

.product-button {
  /*    margin-bottom: 20px;*/
  padding-top: 5px;
  /*    margin-left: 13px;*/
}

.product-button a {
  text-decoration: none;
  color: #fff;
}

.product-button a button {
  width: 47%;
  color: #000;
  background-color: #5cb85c;
  border-color: #4cae4c;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  touch-action: manipulation;
  cursor: pointer;
  border-radius: 4px;
  height: 65px;
  border: 1px solid transparent;
  float: left;
  margin: 0 2px;
}

.product-button a button span i {
  margin-right: 5px;
}

.divider {
  width: 0px;
  height: auto;
  display: inline-block;
}

/* .pr-big,
.pr-small {
  display: none;
} */

/** PRODUCT PAGE **/

.product-container {
  width: 100%;
  margin-top: 10px;
  border-top: 1px solid lightgray;
}

.product-main {
  margin: 10px 10px 0 10px;
}

.prodcut-main-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.prodcut-main-title a {
  color: #337ab7;
  text-decoration: none;
}

.product-main-content {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.product-main-img {
  width: 35%;
  box-shadow: 4px 4px 4px grey;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.product-main-img img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 450px;
  height: auto;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.product-main-info {
  width: 33.33%;
}

.product-main-info p {
  font-size: 14px;
}

.main-info-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-list {
  width: 100%;
  margin-top: 30px;
}

.info-list div {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #ddd;
  padding: 10px;
}

.info-list div:nth-child(odd) {
  background-color: #f9f9f9;
}

.info-list div p {
  width: 50%;
}

.product-order-info {
  width: 25%;
}

.product-button-blue {
  margin: 5px 0;
}

.product-button-blue a {
  text-decoration: none;
  color: #fff;
}

.product-button-blue a button {
  width: 100%;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  touch-action: manipulation;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid transparent;
  text-align: left;
}

.product-gallery {
  width: 98%;
  margin: 40px 0px 10px 25px;
}

.gallery-info {
  margin-bottom: 40px;
}

.gallery-info h3 {
  color: #31708f;
  font-weight: 700;
}

.gallery-info p {
  color: #777777;
  font-size: 14px;
}

.gallery-imgs {
  display: flex;
  flex-wrap: wrap;
}

.gallery-img {
  border-radius: 4px;
  border: 1px solid;
  border-color: lightgray;
  margin: 8px;
  height: auto;
  width: 100%;
  max-width: 250px;
  box-shadow: 4px 4px 4px grey;
  padding: 25px;
}

.gallery-img img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  margin: auto;
  padding: 3px;
  max-width: 150px;
  width: 100%;
  height: auto;
}

div.header form.search-box button.search-icon:after {
  content: "";
  cursor: pointer;
  width: 20px;
  height: 20px;
  opacity: 0.4;
}

.push {
  height:125px;
}

/*
.filters {
    width: 70%;
}
*/

/* ANIMATE
================================================================== */
/* Underline From Center */
.hvr-und {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-und:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #1bb166;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-und:hover:before,
.hvr-und:focus:before,
.hvr-und:active:before {
  left: 0;
  right: 0;
}

/* Icon Hang */
@-webkit-keyframes hang {
  from {
    -webkit-transform: translate(0px, 0px);
  }
  to {
    -webkit-transform: translate(0px, -4px);
  }
}

@-moz-keyframes hang {
  from {
    -moz-transform: translate(0px, 5px);
  }
  to {
    -moz-transform: translate(0px, -2px);
  }
}

.thold {
  margin-top: 15px;
  font-size: 18px;
}

.price_mp {
  font-size: 30px;
  font-weight: bold;
}

/* LOAD MORE START
===================================================================*/
.loadMore {
  max-width: initial;
  width: initial;
  display: initial;
  background: #63abff;
  border-radius: 100px;
  padding: 10px 40px;
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  margin: 15px auto;
  text-align: center;
  position: relative;
  transition: all 0.2s ease, background-color 0.01s ease, color 0.01s ease;
  z-index: 999;
  display: none;
  margin-left: 54%;
}

.loadMore.loading {
  animation: rotate 1.5s linear infinite;
  animation-delay: 0.2s;
  background-color: transparent;
  border: 0.3em solid #e1e1e1;
  border-radius: 1.5em;
  border-top-color: #378bff;
  box-sizing: border-box;
  height: 3em;
  color: transparent;
  padding: 0;
  pointer-events: none;
  width: 3em;
}

.loadMore:active {
  -webkit-animation: active 1200ms ease 1 alternate;
  animation: active 1200ms ease 1 alternate;
  background: #5f9be0;
}

/*Clicked loading state*/
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

/*Active state*/
@-webkit-keyframes active {
  0% {
    transform: scale(1, 1);
  }
  90% {
    transform: scale(0.9, 0.88);
  }
  100% {
    transform: scale(0.92, 0.9);
  }
}

keyframes active {
  0% {
    transform: scale(1, 1);
  }
  90% {
    transform: scale(0.9, 0.88);
  }
  100% {
    transform: scale(0.92, 0.9);
  }
}

@media screen and (max-width: 965px) {
  .loadMore {
    margin: 15px auto;
  }
}

/* LOAD MORE END
===================================================================*/
/*# sourceMappingURL=style.css.map */

/* SINGLE PRODUCT PAGE START
================================================================  */

.c236 {
  overflow: hidden;
  background: #ffffff;
  max-width: 1170px;
  margin-bottom: 15px;
  margin-left: 318px;
}

.c237 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1344px;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

.c237 h2 {
  font-size: 44px;
  text-align: center;
  font-weight: normal;
  margin: 7px auto;
  display: block;
  color: #000;
}

.slides-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}

.c237 div.ws_carousel-wrapp {
  display: inline-block;
  float: left;
  width: 49.5%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  position: relative;
  max-width: 530px;
  margin-right: 15px;
}

.ws_carousel {
  max-height: 600px;
  overflow: hidden;
}

.slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
}

.slick-prev,
.slick-next {
  cursor: pointer;
  outline: none;
  font-size: 20px;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
  padding: 5px;
}

.c236 .c207 {
  display: inline-block;
  width: 49.5%;
  float: right;
  color: #000;
}

.c236 .c243 {
  color: #ff6575;
  font-weight: 900;
  margin-bottom: 15px;
  font-size: 17px;
}

.c236 .c247 img {
  margin-right: 8px;
}

.c236 .c249 {
  font-weight: 700;
  font-size: 18px;
  margin-top: 12px;
  margin-bottom: 12px;
  margin-top: 5px;
}

.c236 .c249 span {
  font-size: 18px;
  font-weight: 700;
}

ul.c301 {
  font-size: 18px;
  margin-left: 20px;
}

ul.c301 li {
  line-height: 26px;
  list-style: disc;
}

.c250 {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.c236 .c250 img {
  width: 180px;
  position: relative;
  margin: 0 3px 0 0;
}

.c236 .c250 span {
  font-weight: bold;
}

.c236 .c253 {
  padding: 20px 0 0;
  overflow: hidden;
}

.c236 .c049 {
  display: inline-block;
  width: 50%;
  float: left;
}

.c003 {
  clear: both;
}

input,
textarea,
select {
  font-family: Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  border-radius: 0;
}

.c236 .c213 {
  display: inline-block;
  width: 49%;
  float: right;
}

#price-calculation .price1 {
  width: 100%;
}

div.c236 p.c251 {
  color: silver;
  font-size: 25px;
}

.c251 span:nth-child(1) {
  color: silver !important;
  font-weight: normal;
  font-size: 25px;
  padding-right: 0px !important;
}

.c251 span:nth-child(2) {
  color: #ff3124 !important;
  font-weight: bold;
  font-size: 35px;
}

.c283 {
  display: inline-block;
  text-transform: uppercase;
  font-size: 27px;
  font-weight: 700;
  padding: 0 8px;
  border-radius: 3px;
  vertical-align: text-bottom;
  color: #3bbe52;
  border: 2px solid #3bbe52;
}

.c236 .c244 {
  color: #000;
  font-size: 25px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 7px;
  padding-top: 2px;
  height: 58px;
  width: 100%;
  background-color: #ffbf00;
  background-image: url(../images/aaa.png);
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 20px;
  border: none;
}

.c244 .c335 {
  font-size: 34px;
}

.c284 {
  color: #ff3124 !important;
  font-weight: bold;
}

.c258 {
  overflow: hidden;
  max-width: 599px;
}

.c236 .c259 {
  display: inline-block;
  width: 69%;
  float: left;
}

.c236 .c259 img {
  width: 100%;
}

.seperator {
  margin-top: 80px;
}

.mob-seperator {
  display: none;
}

.mob-seperator.active {
  display: block;
}

.slick-next {
  right: 10px;
}

.slick-prev {
  left: 10px;
}

svg {
  max-width: 35px;
  width: 100%;
  /*    display: none;*/
  margin: 0px;
  margin-right: 7px;
  /* margin: -44px -42px 9px 45px; */
  position: absolute;
  top: 8px;
  left: 5px;
}

/*
select.selectBox[name="quantity "] {
    float: left;
    display: block!important;
}
*/

.c051 select {
  border-radius: 3px;
  box-shadow: none;
  vertical-align: top;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  color: #363636;
  cursor: pointer;
  display: block;
  font-size: 24px;
  outline: 0;
  padding: 15px 30px 15px 10px;
  position: relative;
}

.slick-carousel-cell,
.slick-carousel-cell img {
  outline: none;
  width: 100%;
}

div.c253 {
  /*    display: none;*/
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

p.umanual {
  margin: 10px 0px;
  font-size: 18px;
}

i.usermanual:before {
  content: "\f1c1";
  font-size: 32px;
  font-family: FontAwesome !important;
  margin-left: 10px;
}

img.um-icon {
  margin-left: 10px;
  max-width: 30px;
  width: 100%;
}

.mob-login {
  display: none;
}
.small-login {
  display: none;
}

/** MOB ELEMENTS MEDIA QUERIES  **/

@media screen and (max-width: 1610px) {
  .product-box {
    max-width: 24%;
  }
}

@media screen and (max-width: 1360px) {
  .product-box {
    width: 100%;
    max-width: 32%;
  }
}

@media screen and (max-width: 965px) {
  .link-holder {
    width: 100%;
  }
  .input-holder {
    justify-content: space-between;
  }
  .search {
    margin: 0;
  }
  .search {
    width: 100%;
  }
  .mob-button-holder {
    display: flex;
  }
  .main-sidebar {
    transform: translateX(-800px);
    position: absolute;
    left: -180px;
    max-width: 100%;
    width: 100%;
    z-index: 9999999999;
  }
  .filters {
    transform: translateY(-800px);
    position: absolute;
    top: -180px;
    max-width: 100%;
    width: 100%;
    z-index: 9999999999;
    background-color: #fff;
  }

  form#filtesForm {
    background: #fff;
    z-index: 9999999;
  }

  div.desk-filter {
    margin: 0px;
  }
  .main-content {
    width: 100%;
  }
  .product-box {
    width: 100%;
    max-width: 32%;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 2px 2px 2px grey;
  }

  .main-sidebar {
    margin-bottom: 0px;
  }

  .product-button a button {
    /*    width: 48%;*/
    font-size: 13px;
  }

  /** PRODUCT PAGE **/
  .product-main-content {
    flex-direction: column;
  }

  .product-main-img {
    width: 100%;
    margin: 20px 0;
  }

  .product-main-img img {
    transform: none;
  }

  .product-main-info {
    width: 100%;
    margin: 20px 0;
  }
  .product-order-info {
    width: 100%;
    margin: 20px 0;
  }

  .product-button {
    padding: 10px 0 0 0;
    margin-bottom: 0;
  }

  .product-button-blue {
    padding: 0 12px;
  }

  .product-button a button,
  .product-button-blue a button {
    padding: 10px 12px;
  }

  .product-gallery {
    margin-left: 10px;
  }
  .gallery-img {
    max-width: 225px;
  }

  .main-content {
    margin-left: 0;
  }
  /* .main {
    margin-top: 200px;
  } */
  .desk-filter {
    width: 100%;
  }
  .mob-filter-title {
    max-width: 100%;
  }
  .main-sidebar.active,
  .filters.active {
    position: fixed;
  }

  .main-sidebar.active {
    max-height: 535px;
  }
  .c236 {
    margin-left: 0;
  }
  /* .c237 {
    margin-top: 150px;
  } */
}

@media screen and (max-width: 879px) {
  /* .main {
    margin-top: 235px;
  } */
  .main-sidebar.active {
    max-height: 502px;
  }
}

@media screen and (max-width: 750px) {
  /*
    .product-box{
        max-width: 32%;
    }
    .gallery-img{
        max-width: 97%;
    }
    .product-gallery{
        margin: 40px auto 10px auto;
    }
*/

  /*
}

@media screen and (max-width: 500px){
*/
  .link-holder {
    display: none;
  }
  .input-holder {
    margin-top: 15px;
  }
  .product-box {
    max-width: 48%;
    box-shadow: none;
  }

  .input-holder {
    margin: 0 auto;
  }

  .footer-bottom {
    font-size: 15px;
  }
}

@media screen and (max-width: 500px) {
  .product-button a button {
    font-size: 12px;
  }
  .product-box {
    padding: 15px 10px 13px 10px;
  }
  .logo-holder img {
    width: 70%;
    margin: 0;
  }
}

@media screen and (max-width: 475px) {
  .main {
    margin-top: 252px;
  }
  .main-sidebar.active {
    max-height: 490px;
  }
}

@media screen and (max-width: 380px) {
  .product-box {
    max-width: 100%;
  }
}

/* -- SVG START -- */
/*
svg {
  max-width: 35px;
  width: 100%;
  display: none;
  margin: 0px;
  margin-right: 7px;
margin: -44px -42px 9px 45px;
    position: absolute;

}
*/

svg .circle {
  stroke: #1bb166;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  stroke: #1bb166;
}
.path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
}
.path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}
.path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
  animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
/* -- SVG END -- */

@media (max-width: 1379px) {
  .c236 .c207 {
    margin-right: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .slick-prev,
  .slick-next {
    top: 50%;
  }
}

@media screen and (min-width: 1000px) {
  strong.c283 {
    font-size: 24px;
  }
}

@media screen and (max-width: 1023px) {
  .slides-wrapper {
    flex-flow: column;
  }

  .c237 div.ws_carousel-wrapp,
  .c236 .c207 {
    width: 95%;
    max-width: initial;
    margin: 0px;
  }
}

@media screen and (max-width: 360px) {
  div.c250 {
    flex-flow: column;
  }
}

/* SINGLE PRODUCT PAGE END
================================================================  */

/* CART PAGE START
================================================================  */

div.cart-wrapp {
  position: relative;
  cursor: pointer;

  max-width: 1063px;
  width: 100%;
  margin: 0 auto;
}

.ws_breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 85%;
  max-width: 800px;
  margin: 2em auto 20px;
  cursor: initial;
}

.ws_breadcrumbs .ws_breadcrumbs-step {
  width: 120px;
  text-align: center;
  padding: 0 1em;
  position: relative;
}

.ws_breadcrumbs .ws_breadcrumbs-step .circle.active {
  background-color: #337ab7;
  color: #fff;
  font-weight: 500;
}

.ws_breadcrumbs .ws_breadcrumbs-step .circle {
  height: 25px;
  width: 25px;
  background-color: #dadada;
  border-radius: 50%;
  color: #fff;
  margin: auto auto 5px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.ws_breadcrumbs .ws_breadcrumbs-step span.active {
  color: #403f3f;
}

.ws_breadcrumbs .ws_breadcrumbs-step span {
  position: absolute;
  font-size: 9px;
  color: #d4d4d4;
  width: inherit;
  top: 30px;
  left: -12px;
  width: 90px;
}

.ws_breadcrumbs .line {
  width: 90%;
  height: 1px;
  margin-top: -5px;
  background-color: #d4d4d4;
}

.ws_breadcrumbs .step-two {
  position: relative;
}

.ws_breadcrumbs .ws_breadcrumbs-step {
  width: 120px;
  text-align: center;
  padding: 0 1em;
  position: relative;
}

.ws_breadcrumbs .step-three span,
.ws_breadcrumbs .step-two span {
  color: #d4d4d4;
}

.container.wrapper {
  height: 65%;
}

.w100 {
  width: 100% !important;
  max-width: initial !important;
}

.cart-container {
  width: 100%;
  margin-top: 20px;
  cursor: initial;
}

.cart-table {
  width: 100%;
  font-size: 14px;
  line-height: 28px;
  color: #2e2e2e;
  font-weight: 600;
  border: 1px solid #eee;
}

table {
  background-color: transparent;
  border-spacing: 0;
  border-collapse: collapse;
}

.cart-table th {
  max-width: 1024px;
  vertical-align: middle;
  padding: 10px 10px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  background: #337ab7;
  text-align: center;
}

/*
.cart-table tr th:nth-child(4) {
    display: none;
}
*/

.cart-table td:first-child {
  padding-left: 0 !important;
}

.cart-line-items td {
  vertical-align: middle;
}

.cart-table td {
  border: none;
  text-align: center;
}

.cart-table td {
  padding: 8px 5px 9px 11px;
  background: #fff;
  font-weight: normal;
}

.cart-line-items tr td:nth-child(2) {
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 85%;
  padding: 10px 0px !important;
  box-sizing: border-box;
  overflow: hidden;
  line-height: 20px;
  margin: 0 auto;
  margin-left: 0px;
  margin-top: 5px;
}

.cart-line-items button {
  height: 35px;
  width: 35px;
  font-weight: 400;
  font-size: 19px !important;
  background: #fff;
  border: 1px #d1d1d1 solid;
  margin-left: -1px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  color: #4c4c4c;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.cart-line-items tr td:nth-child(4) {
  display: none;
}

.cart-line-items tr td:nth-child(5) {
  display: none;
}

.cart-line-items tr td.instantRemove {
  color: transparent;
  font-weight: bold;
  font-size: 18px !important;
  padding: 0px 5px !important;
  cursor: pointer;
}

.cart-wrapp p {
  margin: 0px;
}

.cart-is-empty {
  padding: 0px 10px;
}

div.button-box {
  cursor: initial;
}

.button-box .tot {
  font-size: 26px;
  text-align: right;
  padding-left: 0px;
  margin: 25px 0;
  width: 100%;
}

.button-box span {
  font-weight: 400;
  font-size: 22px;
  padding-right: 5px;
}

.cart-total {
  max-width: 260px;
  width: 100%;
  padding: 16px;
  background-color: #337ab7 !important;
  color: #fff !important;
  text-align: left;
  margin-right: 15px;
}

.button-box span {
  font-weight: 400;
  font-size: 22px;
  padding-right: 5px;
}

.button-box .tot {
  font-size: 26px;
  text-align: right;
  padding-left: 0px;
  margin: 25px 0;
}

a.cart-to-shop-link,
a.cart-to-checkout-link {
  padding: 0px !important;
  margin: 0px !important;
  padding-bottom: 15px !important;
}

a.cart-to-checkout-link {
  margin: 0px !important;
}

p.cart-to-checkout-btn,
p.cart-to-shop-btn {
  width: 100%;
  max-width: initial;
  min-width: initial;
  margin: 0px;
  padding: 0px 41px;
  font-size: 26px;
  position: relative;
  display: block;
  font-weight: 500;
}

.button-box p {
  text-align: center;
}

p.cart-to-checkout-btn:before {
  content: "";
  display: inline-block;
  color: #fff;
  position: relative;
  top: 0px;
  vertical-align: middle;
  width: 85px;
  height: 81px;
  padding: 0;
  left: -41px;
  float: left;
}

p.cart-to-checkout-btn span,
p.cart-to-shop-btn span {
  line-height: 81px;
  font-size: 24px;
  color: #000;
}

.button_color {
  background: #5cb85c;
}

.button-box {
  background: transparent;
  float: right;
  max-width: 508px;
  width: 100%;
}

div.form-wrapp div#newform .button-contact {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.button-contact {
  clear: both;
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.button-contact {
  padding: 0px;
  font-size: 21px;
  height: auto;
  border-radius: 4px;
  border: none;
  box-shadow: none;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 2px;
}

div.form-wrapp div#newform #btn25 {
  background: #f3d17e;
  border-radius: 3px;
  display: inline-block;
  cursor: pointer;
  padding: 0px;
  text-decoration: none;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 700;
  color: #333 !important;
  box-shadow: none;
  font-family: Calibri, Helvetica, Arial, sans-serif;
  line-height: 81px;
}

div.form-wrapp div#newform #btn25:before {
  content: "";
  display: inline-block;
  color: #fff;
  position: relative;
  top: 0px;
  vertical-align: middle;
  width: 85px;
  height: 81px;
  padding: 0;
  left: 0px;
  float: left;
}

.contact-form-content p {
  clear: both;
}

.info-text {
  padding: 10px 0;
}

.contact-form-content .payment,
.contact-form-content .sales,
.contact-form-content .sigurno {
  display: none;
}

.about,
.payment,
.delivery {
  width: 33%;
  float: left;
  text-align: center;
}

.input_wrapper_komentar {
  margin-top: 10px;
  padding-right: 5px;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 2.5em;
  color: #000;
  overflow: hidden;
  text-align: right;
  margin: 5px 0px !important;
  float: none !important;
  width: 100% !important;
}

form#forma1 div.input_wrapper label,
form#forma1 div.input_wrapper_komentar label[class*="label_"] {
  color: #919293;
  box-sizing: border-box;
  display: block !important;
  font-size: 11px;
  line-height: 1;
  opacity: 0;
  overflow: hidden;
  padding: 5px 13px 0;
  pointer-events: none;
  position: absolute;
  text-overflow: ellipsis;
  top: 0;
  text-align: left;
  text-align: left;
  transform: translateY(3px);
  transition: all 0.2s ease-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  z-index: 6 !important;
  text-transform: uppercase;
}

form#forma1 div.input_wrapper_komentar label {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #8c8d8e;
  font: 400 13.3333px Arial;
}

form#forma1 div.input_wrapper_komentar label {
  opacity: 1 !important;
}

form#forma1 div.input_wrapper input,
form#forma1 div.input_wrapper select,
form#forma1 div.input_wrapper_komentar textarea {
  max-width: initial;
  width: 100% !important;
  display: block;
  float: none;
  margin: 0;
  padding-top: 3px;
  font: 400 13.3333px Arial;
}

.input_wrapper input,
.input_wrapper select,
textarea#komentar {
  background-color: #fff !important;
  border-color: #c9c9c9 !important;
  border: 1px solid #ccc !important;
  box-shadow: none !important;
  border-radius: 4px !important;
  font-weight: 400 !important;
  color: #8c8d8e;
  text-transform: uppercase;
  font-size: 15px !important;
  min-height: 54px;
  width: 85% !important;
}

.input_wrapper input,
#komentar {
  padding: 6px 12px;
}

form#forma1 div.input_wrapper_komentar textarea {
  resize: vertical;
  max-height: 150px;
}

.customBg {
  color: #f8f8f8;
}

.cart-empty-wrapp {
  max-width: 1063px;
  margin: 0 auto;
}

.return-to-shop {
  color: #000;
  font-weight: bold;
  font-size: 18px;
  padding: 16px;
  width: initial;
  max-width: 200px;
  margin-left: 20px;
  text-align: center;
}

.return-to-shop:hover {
  background-color: #d5d5d5;
  border-color: #d5d5d5;
}

@media screen and (max-width: 1023px) {
  .checkout-outer-wrap {
    flex-flow: column;
  }
}

@media (min-width: 992px) {
  .contact-form-content p {
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  p.cart-to-checkout-btn span,
  p.cart-to-shop-btn span {
    font-size: calc(14px + (24 - 14) * (100vw - 320px) / (575 - 320));
  }
}

/* -------------------------------------------------- */
/* --------------- CART SUPLJAK START --------------- */
/* -------------------------------------------------- */
@media screen and (max-width: 768px) {
  table,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  tbody {
    display: block;
    width: 95%;
    margin: 0 auto;
  }

  tr {
    position: relative;
  }

  td {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  td.instantRemove {
    position: absolute;
    top: 0px;
    right: 0px;
    width: initial;
  }

  thead {
    display: none;
  }

  .cart-line-items tr {
    margin-bottom: 10px;
  }

  .cart-line-items tr td:nth-child(2) {
    width: 100%;
  }

  .cart-line-items tr td.item-name,
  .cart-line-items tr td.control-buttons,
  .cart-line-items tr td.item-price {
    text-align: right !important;
    display: block !important;
    max-width: initial !important;
    font-size: 16px !important;
  }

  td.item-image img {
    width: 88px !important;
  }

  .item-name-append,
  .control-buttons-append {
    font-size: 16px;
    float: left;
    font-weight: bold;
  }

  .cart-line-items tr td.item-price span {
    display: inline-block;
  }
  .item-price-append {
    display: inline-block;
    max-width: initial !important;
    font-size: 18px !important;
    width: initial !important;
    float: left !important;
    font-weight: bold;
  }

  .cart-line-items tr td:nth-last-child(1) {
    background-size: 33px;
  }

  td.item-image img {
    width: 88px !important;
  }
}
/* ------------------------------------------------ */
/* --------------- CART SUPLJAK END --------------- */
/* ------------------------------------------------ */

/* CART PAGE END
================================================================  */

/* CHECKOUT PAGE START
================================================================  */
.reserved-order {
  background-color: #bae2ff;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  margin-bottom: 20px;
}

.reserved-order p {
  margin: 0;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.4;
}

.checkout-countdown {
  display: inline-block;
  font-weight: 700;
  margin-left: 2px;
  padding: 3px 5px;
  background-color: #f20a0a;
  color: #fff200;
  border-radius: 2px;
}

.checkout-outer-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: row;
}

.form-outer-wrap,
.checkout-wrap {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: flex-start;
  flex-flow: column;
}

.formTitle {
  text-align: left;
  font-weight: 500;
  color: #000;
}

.order-heading {
  text-align: left;
  border-bottom: 2px solid #ddd;
  padding-bottom: 11px;
  color: #000;
  font-size: 28px;
  margin-bottom: 30px;
  margin-top: 20px;
  font-weight: 500;
}

.confirm {
  text-align: left;
  border-bottom: 2px solid #ddd;
  padding-bottom: 11px;
  color: #000;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.1;
}

.bg-blue {
  background-color: #bae2ff;
}

.checkout-order-table {
  position: relative;
}

.checkout-order-table p {
  font-size: 17px;
  padding-top: 0.875em;
  padding: 1em;
}

.align-center {
  align-items: center;
  align-self: center;
  align-content: center;
}

.border-1 {
  border: 1px solid #c9c9c9;
  border-top: none;
}

.cell-bg {
  background-color: #fdfdfd;
}

.cell-bg-1 {
  background-color: #f8f8f8;
}

#ime3 {
  display: none;
}

.copy-btn-wrap {
  position: absolute;
  right: -30px;
  top: -30px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-flow: row;
}

.copy-btn-wrap .arrow {
  animation: arrow 700ms linear infinite;
  right: -100px;
  position: absolute;
}

.shake {
  animation: shake 1s linear both 1s;
}

@keyframes shake {
  0% {
    transform: translateY(0dpx);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(2px);
  }
  75% {
    transform: translate7(0px);
  }
}

.save-btn {
  background: #52be7f;
  display: flex;
  width: 75px;
  height: 75px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #fff;
  cursor: pointer;
}

.save-btn:hover img {
  opacity: 0;
  transform: translate(0px, 0px) scale(1, 1);
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
}

/* ---- COPY PROMPT POPUP ---- */
.request_message_outside {
  background: rgb(46, 204, 113);
  z-index: 2147483647;
  opacity: 1;
  display: none;
  padding: 0.8%;
  text-align: center;
  color: white;
  position: fixed;
  top: 0px;
  width: 100%;
  left: 0px;
}

.request_message_outside p {
  font-size: 17px;
}

div.form {
  position: relative;
}

div.form-arrow-icon {
  position: absolute;
  top: 41%;
  left: 0%;
  transform: translate(-83%, -50%);
  cursor: pointer;
  z-index: 9999;
  display: none;
}

div.form-arrow-icon .form-arrow {
  animation: arrow 700ms linear infinite;
}

@media screen and (max-width: 1023px) {
  .request_message_outside {
    padding: 10px 0px !important;
  }

  div.form-arrow-icon {
    left: 0%;
    transform: translate(-13%, -42%);
  }
}

@media screen and (max-width: 768px) {
  .checkout-outer-wrap {
    flex-flow: column;
  }

  .formTitle {
    text-align: center;
  }

  .form-outer-wrap,
  .checkout-wrap {
    flex: initial;
    width: 100%;
    margin: 0 auto;
  }

  body div.ws_breadcrumbs {
    margin: 2em auto 20px;
  }

  .clipboard-icon {
    position: fixed;
    top: initial;
    bottom: 53px;
    right: 6px;
  }

  div.copy-btn-wrap {
    right: 10px;
    bottom: 10px;
    top: initial;
    z-index: 1;
  }

  div.copy-btn-wrap div.arrow {
    transform: rotate(180deg);
    position: fixed;
    bottom: 51px;
    right: 85px;
  }
}

@media screen and (max-width: 520px) {
  .order-heading {
    font-size: calc(20px + (28 - 20) * (100vw - 320px) / (520 - 320));
  }
}
.ft_l1_main_wrap {
  display: none !important;
}
.search-box {
  width: 12%;
  position: relative;
  max-width: 700px;
}
.search-icon {
  position: absolute;
  right: 5px;
  top: 0px;
  opacity: 0.6;
  width: 30px;
  height: 100%;
  background: none;
  outline: none;
  border: none;
}

.filters {
  max-width: 1100px;
}

@media screen and (max-width: 1700px) {
  .desk-login {
    display: none;
  }
  .mob-login {
    display: inline-flex;
  }
  .input-holder {
    justify-content: flex-end;
  }
  .logo-holder {
    margin-right: auto;
    max-width: 270px;
  }
  .filters {
    margin: 0 auto;
    max-width: 100%;
  }
  .search-box {
    max-width: 440px;
    width: 35%;
  }
  .main-sidebar {
    margin-top: 40px;
  }
  .main-content {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1610px) {
  .search-box {
    width: 50%;
  }
}

@media screen and (max-width: 1200px) {
  /* .main-content {
    margin-top: 95px;
  } */
  /* .main-sidebar {
    margin-top: 85px;
  } */
  .product-box {
    padding: 15px 5px 13px 5px;
  }
  .c236 {
    padding-top: 40px;
  }
}

@media screen and (max-width: 965px) {
  .main-sidebar {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .main-sidebar,
  .main-content {
    margin-top: 80px;
  }
}

@media screen and (max-width: 475px) {
  .main-content {
    margin-top: 140px;
  }
  /* .c237 {
    margin-top: 165px;
  } */
  .main {
    margin-top: 30px;
  }
  .main-sidebar {
    margin-top: 140px;
  }
}

.product-box {
  position: relative;
}
.product-box.onSale:before {
content: ' ';
position: absolute;
top: 0; 
left: 0px; 
height: 50px; 
width: 50px;  
background-image: url('/images/sale-label.png');
background-size: 50px 50px; 
background-repeat: no-repeat;
font-size: 14px; 
}

/* CHECKOUT PAGE END
================================================================  */
/*# sourceMappingURL=style.css.map */

.desk-filter-onSale{
  margin: 2px 15px;
border-color: grey;
box-shadow: 4px 4px 4px grey;
width: 92%;
max-height: 570px;
}
form#onSaleForm label.checked:before{
  content: "\2713";
background: #337ab7;
padding-top: 2px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #fff;
font-weight: bold;
font-size: 14px;
}
form#onSaleForm label{
  display: block;
text-align: left;
position: relative;
padding-left: 30px;
line-height: 20px;
cursor: pointer;
}
form#onSaleForm label:before{
  content: "";
position: absolute;
left: 0;
top: 0;
height: 20px;
width: 20px;
background-color: #ffffff;
border: 1px solid #c4cdd5;
border-radius: 5px;
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
-webkit-transition: border-color 150ms ease;
transition: border-color 150ms ease; 
}
form#onSaleForm label:hover:before{

box-shadow: 0 0 4px 0 #337ab7;
}
.desk-filter{
  margin: 2px 15px;
}
@media screen and (max-width: 965px) {
.desk-filter-onSale{

width: 100%;
margin: 0;
}

}

form#filtesForm label {
  display: block;
  text-align: left;
  position: relative;
  padding-left: 30px;
  line-height: 20px;
  cursor: pointer;
}

form#filtesForm label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background-color: #ffffff;
  border: 1px solid #c4cdd5;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-transition: border-color 150ms ease;
  transition: border-color 150ms ease;
}

form#filtesForm label:hover:before {
  -webkit-box-shadow: 0 0 4px 0 #337ab7;
  box-shadow: 0 0 4px 0 #337ab7;
}

form#filtesForm label.checked:before {
  content: "\2713";
  background: #337ab7;
  padding-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

form#filtesForm input[type="text"] {
  background-color: #ffffff;
  border: 1px solid #c4cdd5;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-transition: border-color 150ms ease;
  transition: border-color 150ms ease;
  outline: none;
  padding: 8px 5px;
  font-size: 12px;
  color: #46515a;
  font-weight: 300;
  width: 100%;
  margin: 2px 2px;
}

form#filtesForm .item {
  padding: 10px 10px;
}

.logo-holder {
  display: flex;
  flex-flow: row;
  position: relative;
  justify-content: space-between;
  max-width: 190px;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

.m-logo {
  display: none;
}

.m-logo img {
  width: 50%;
}

/*
div.register-form, div.login-form {
  display:none;
}
*/

div.login-btn,
div.register-btn {
  border-radius: 4px;
  padding: 0px 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0px;
  /**  height: 100%; */
  margin-left: 5px;
}

div.login-btn {
  border: 1px solid #4cae4c;
  background: #5cb85c;
  color: #fff;
}

div.register-btn {
  border: 1px solid #337ab7;
  background: #fff;
  color: #337ab7;
  display: none;
}

div.register-btn:hover,
div.register-btn:active,
div.register-btn:focus {
  background: #337ab7;
  color: #fff;
}

div.login-buttons {
  display: none;

  justify-content: center;
  align-items: center;
  flex-flow: row;
  margin-left: auto;
  padding: 10px;
}

.login-form,
.log-info,
.register-form {
  position: absolute;
}

div.login-form,
div.register-form {
  background: #fff;
  z-index: 9999;
  padding: 15px 20px;
  border-radius: 3px;
  border: 1px solid #5cb85c;
  position: absolute;
  right: -160px;
  top: 220px;
  transform: translate(-50%, -50%);
  max-width: 350px;
  width: 100%;
  display: none;
}

div.register-form {
  border: 1px solid #337ab7;
}

div.login-form form,
div.register-form form {
  display: flex;
  flex-flow: column;
}

div.login-form form input,
div.register-form form input {
  outline: none;
  box-shadow: none;
  border: 1px solid gray;
  border-radius: 4px;
  padding: 8px 5px;
}

div.login-form form input[name="email"],
div.register-form input[name="email"] {
  margin-bottom: 5px;
}

div.login-form form #loginBtn,
div.register-form form #registerBtn {
  border: 1px solid #4cae4c;
  background: #5cb85c;
  color: #fff;
  margin-top: 15px;
  border-radius: 3px;
  padding: 8px 5px;
  font-size: 19px;
}

div.register-form form #registerBtn {
  background: #337ab7;
  color: #fff;
}

div.log-info {
  right: 0px;
  position: relative;
}

div.log-info form#logoutForm #loginBtn {
  border: 1px solid #4cae4c;
  background: #5cb85c;
  color: #fff;
  border-radius: 4px;
  padding: 3px 15px;
  cursor: pointer;
  height: 100%;
  margin-top: 5px;
}

.main-sidebar.active {
  transform: translateX(0px);
  left: 0;
}

.filters.active {
  transform: translateY(0px);
  top: 0;
  min-height: 55px;
  margin-right: -5px;
}

#login_failed p,
#register_failed p {
  position: fixed;
  top: 0;
  background: #ff0000;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 9999;
}

#login_success p,
#register_success p {
  position: fixed;
  top: 0;
  background: #5cb85c;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 9999;
}

#login_success,
#login_failed,
#register_failed,
#register_success {
  height: 10px;
}

/*Modal*/

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.modal-content img {
  padding: 20px 0 30px 0;
  margin: 0 auto;
  display: block;
}

.mcq {
  display: none;
}

/* @media screen and (max-width: 1500px) {
  .search-box {
    min-width: 100%;
  }
} */

/* @media screen and (max-width: 1200px) {
  .sort {
    min-width: 100%;
  }
} */

@media screen and (max-width: 768px) {
  .mob-login {
    display: none;
  }
  .small-login {
    display: inline-flex;
    width: 28%;
    vertical-align: middle;
  }
  .m-logo {
    display: inline-flex;
    width: 70%;
    vertical-align: middle;
  }
  .d-logo {
    display: none;
  }
  .m-logo img {
    width: 50%;
    display: block;
    margin: 0 auto;
    padding: 10px 0;
    margin-left: 5%;
  }
  .logo-holder {
    justify-content: flex-end;
  }
  .search-box {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .m-logo img {
    width: 70%;
  }
  #sort-btn {
    width: 100%;
    margin: 0 50%;
  }
  .mob-seperator {
    height: 55px;
  }
}

.selectBox {
  display: none !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.main-sidebar ::-webkit-scrollbar {
  width: 12px;
}

.main-sidebar ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.main-sidebar ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

/*
#toggleButton {
    height: 52px;
}*/

.c079,
.c080,
.c081 {
  display: none;
}

.ws_carousel-wrapp {
  position: relative;
}
.ws_carousel-wrapp.onSale:before {
content: ' ';
z-index: 3432423;
position: absolute;
top: 0; 
left: 0px; 
height: 70px; 
width: 70px;  
background-image: url('/images/sale-label.png');
background-size: 70px 70px; 
background-repeat: no-repeat;
font-size: 14px; 
 
}.title-sku {
  text-align: center;
    line-height: 25px;
}

.sku {
  color: #808080;
  font-size: 13px;
}

.fullSku {
  margin: 10px 0!important;
}

.fullSku span:nth-child(2) {
  padding-left: 20px;
}

.c075 video {
  width: 100%;
  max-width: 600px;
    max-height: 600px;
}

.backToShopWrap {
  display:none;
}

/* wholesale catalog css */
.monthlyBalance {
  clear:both;
  float:right;
  font-size: 12px;;
  }