-------------------------------- */
.cd-container {
  /* this class is used to horizontally align the gallery of items */
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  /* text-indent: 100%; */
  white-space: nowrap;
}



#logo {
  padding-top: 5px;
  /* delete this property if you don't want your logo to scale down on mobile devices */
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
@media only screen and (min-width: 1200px) {
  #logo {
    padding-top: 20px;
    position: absolute;
    /* logo left margin on Dekstop */
    left: 2.4em;
    top: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

#cd-hamburger-menu, #cd-cart-trigger {
  position: absolute;
  top: 0;
  height: 100%;
}
#cd-hamburger-menu a, #cd-cart-trigger a {
  width: 60px;
  height: 100%;
}

#cd-hamburger-menu {
  left: 0;
}
#cd-hamburger-menu a {
  background: #26292f url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-hamburger-menu.svg") no-repeat center center;
}
@media only screen and (min-width: 1200px) {
  #cd-hamburger-menu {
    display: none;
  }
}

#cd-cart-trigger {
  right: 0;
}
#cd-cart-trigger a {
  background: #26292f url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-cart.svg") no-repeat center center;
}
@media only screen and (min-width: 1200px) {
  #cd-cart-trigger {
    /* cart right margin on desktop */
    right: 0;
  }
  #cd-cart-trigger a {
    position: relative;
    width: 100px;
    border-left: none;
    background-color: #26292f;
  }
}

#main-nav, #cd-cart {
    position: fixed;
    top: 0;
    height: 100%;
    width: 260px;
    padding-top: 50px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    z-index: 3000;
}
@media only screen and (min-width: 768px) {
  #main-nav, #cd-cart {
    width: 350px;
  }
}
@media only screen and (min-width: 1200px) {
#main-nav, #cd-cart {
    width: 30%;
    padding-top: 13px;
    padding-bottom: 50px;
}
}

#main-nav {
  left: -100%;
  background: #FFF;
  -webkit-transition: left 0.3s;
  -moz-transition: left 0.3s;
  transition: left 0.3s;
}
#main-nav.speed-in {
  left: 0;
}
#main-nav ul a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 1em;
  border-bottom: 1px solid #e0e6ef;
}
#main-nav ul .current {
  box-shadow: inset 3px 0 #435779;
}
@media only screen and (min-width: 1200px) {
  #main-nav {
    /* reset main nav style */
    position: absolute;
    height: auto;
    width: auto;
    left: auto;
    right: 8em;
    padding-top: 0;
    top: 0;
    background: transparent;
    box-shadow: none;
    /* header height */
    line-height: 80px;
    z-index: 4;
  }
  #main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  #main-nav ul a {
    display: inline-block;
    height: auto;
    line-height: 1;
    padding: 1em 1.4em;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0.25em;
  }
  #main-nav ul a.current {
    box-shadow: none;
    background: #435779;
    color: #FFF;
  }
  .no-touch #main-nav ul a:hover {
    background: #435779;
    color: #FFF;
  }
}
.no-js #main-nav {
  position: fixed;
}

#cd-cart {
  right: -100%;
  background: #FFF;
  -webkit-transition: right 0.3s;
  -moz-transition: right 0.3s;
  transition: right 0.3s;
}
#cd-cart.speed-in {
  right: 0;
}
#cd-cart > * {
  padding: 0 1em;
}
#cd-cart h2 {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 1em 0;
    display: inline-block;
}
#cd-cart .cd-cart-items {
  padding: 0;
}
#cd-cart .cd-cart-items li {
    position: relative;
    border-top: 1px solid #e0e6ef;
    padding: 1em 2em;
    /* text-align: center; */
    display: -webkit-box;
    -webkit-box-pack: justify;
    display: -webkit-flex;
    webkit-justify-content: space-between;
    display: flex;
    justify-content: space-between;
    /* text-align: justify; */
    /* text-align-last: justify; */
}
#cd-cart .cd-cart-items li:last-child {
  border-bottom: 1px solid #e0e6ef;
}
#cd-cart .cd-qty, #cd-cart .cd-price {
    color: #456;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: center;
    width: 110px;
    text-align: right;
}
#cd-cart .cd-price {
    margin-top: 0.4em;
    font-weight: 700;
    font-size: 14px;
}
.cd-cart-items li:hover > .cd-price {
    display: none !important;
}
.cd-cart-items li:hover > .cd-item-remove {
    display: block !important;
}
#cd-cart .cd-item-remove {
    padding: 36px 4px 36px 0px;
    text-align: right;
    width: 92px;
    display: none;
    border-radius: 50%;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    color: #fe3d25;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    /* display: block; */
}
.t-two .order-price .val {
    /* float: right; */
    color: #f91155;
}
#cd-cart .cd-item-remove:hover {

}
.no-touch #cd-cart .cd-item-remove:hover {
  background-color: #e0e6ef;
}
#cd-cart .cd-cart-total {
    padding-top: 0;
    padding-bottom: 3px;
    max-height: 30px;
}
#cd-cart .cd-cart-total span {
    /* float: right; */
}
#cd-cart .cd-cart-total::after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}
#cd-cart .checkout-btn {
    height: 50px;
    line-height: 24px;
    color: #FFF;
    text-align: center;
    display: block;
    width: 100%;
    padding: 15px;
    background: #22b093;
    font-size: 18px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    max-width: 450px;
    margin: 0 auto;
    border: 0;
}
.no-touch #cd-cart .checkout-btn:hover {
  background: #a2dda8;
}
#cd-cart .cd-go-to-cart {
  text-align: center;
  margin: 1em 0;
}
#cd-cart .cd-go-to-cart a {
  text-decoration: underline;
}
@media only screen and (min-width: 1200px) {
  #cd-cart > * {
    padding: 0 2em;
  }
#cd-cart .cd-cart-items li {
    padding: 0em 0em;
}
  #cd-cart .cd-item-remove {
    right: 2em;
  }
}

/* -------------------------------- 

xgallery 

-------------------------------- */
main {
  position: relative;
  min-height: 100%;
  background: #eeeff7;
  padding-top: 70px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  main {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 1200px) {
  main {
    padding-top: 120px;
  }
}

#cd-gallery-items li {
  margin-bottom: 1.5em;
}
#cd-gallery-items li img {
  width: 100%;
  display: block;
  border-radius: 0.25em;
}
@media only screen and (min-width: 768px) {
  #cd-gallery-items li {
    width: 48%;
    float: left;
    margin-bottom: 2em;
    margin-right: 4%;
  }
  #cd-gallery-items li:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #cd-gallery-items li {
    width: 31%;
    float: left;
    margin-bottom: 2.5em;
    margin-right: 3.5%;
  }
  #cd-gallery-items li:nth-child(2n) {
    margin-right: 3.5%;
  }
  #cd-gallery-items li:nth-child(3n) {
    margin-right: 0;
  }
}

#cd-shadow-layer {
    position: fixed;
    min-height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(67, 87, 121, 0.6);
    cursor: pointer;
    z-index: 2000;
    display: none;
}
#cd-shadow-layer.is-visible {
  display: block;
  -webkit-animation: cd-fade-in 0.3s;
  -moz-animation: cd-fade-in 0.3s;
  animation: cd-fade-in 0.3s;
}

/* -------------------------------- 

xkeyframes 

-------------------------------- */
@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cd-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 12px;
}
.cd-image {
    /* width: 64px; */
    /* height: 64px; */
    /* text-align: center; */
    /* display: inline-flex; */
    /* align-items: center; */
    /* justify-content: center; */
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    text-align: center;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
}
.cd-image img {
    /* max-width: 30px; */
    /* display: block; */
    /* margin: 0 auto; */
    max-width: 100%;
    /* max-width: inherit; */
    max-height: inherit;
    vertical-align: middle;
}
.cd-tn {
    display: flex;
    flex: 1;
    cursor: pointer;
    padding: 16px 9px;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}
.cd-qty input {
    border: 0;
    color: #a5aebc;
    max-width: 30px;
    text-align: center;
}
.cd-qty b {

}
.cd-cart-close {
    border: 1px solid #e0e6ef;
    width: auto;
    display: inline-block;
    vertical-align: top;
    height: 30px;
    text-transform: uppercase;
    border-radius: 5px;
    line-height: 2;
    color: inherit;
    font-weight: 700;
    cursor: pointer;
    float: right;
    margin-right: 27px;
    margin-top: 8px;
}
.cd-cart-close:hover {
    background: #22b093;
    color: #fff;
}
.cd-name p {
    line-height: 20px;
    word-break: break-word;
    font-size: 14px;
    text-align: left;
}
.cart__group_mini {
	
}
.cart__group-title_mini {
    font-weight: 700;
}
.cart__group-text_mini {
	
}
.cd-cart-total {
	
}
.cd-cart-total .title {
	display: inline-block;
}
.cd-cart-total .text {
    display: inline-block;
    float: right;
}
.cd-cart-total .order-price {
	
}
.order-price .val {
    font-weight: 600;
}
#cd-cart .cd-qty {
    color: #a5aebc;
    width: 75px;
    -webkit-flex: 0 0 110px;
    -ms-flex: 0 0 110px;
    flex: 0 0 110px;
    width: 110px;
    text-align: right;
    display: block;
    margin-top: 31px;
}
.quantity {
    position: relative;
    padding: 28px 0px;
    max-width: 50px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}

input[type=number]
{
  -moz-appearance: textfield;
}

.quantity input {
    width: 45px;
    height: 42px;
    line-height: 1.65;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 0;
    text-align: center;
    border: 1px solid #eee;
    padding-right: 18px;
}

.quantity input:focus {
  outline: 0;
}

.quantity-nav {
  float: left;
  position: relative;
  height: 42px;
}

.quantity-button {
  position: relative;
  cursor: pointer;
  border-left: 1px solid #eee;
  width: 20px;
  text-align: center;
  color: #333;
  font-size: 13px;
  font-family: "Trebuchet MS", Helvetica, sans-serif !important;
  line-height: 1.7;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.quantity-button.quantity-up {
  position: absolute;
  height: 50%;
  top: 0;
  border-bottom: 1px solid #eee;
}

.quantity-button.quantity-up:hover {
    background-color: #22b093;
    border-color: #22b093;
    color: #fff;
}

.quantity-button.quantity-down {
  position: absolute;
  bottom: -1px;
  height: 50%;
}
.cart__item_new.is-removed {
	filter: grayscale(1);
}
.cd-price {
	
}
.price-block-new {
	
}
.price-block-new .price-old {
    color: #808d9a;
    text-decoration: line-through;
    font-size: 13px;
}
.price-block-new .price-discount {
    margin-left: 10px;
    color: #f91155;
    font-size: 11px;
}
.cart__item-price-unit-new {
    float: left;
    font-size: 12px;
    width: 100%;
}
.cart__item-price-unit-new.is-visible{
	
}
