@charset "UTF-8";
/*

Animate.less
Cross-browser LESS animation library for Bootstrap
Licensed under the ☺ license (http://licence.visualidiot.com/)
Documenation: https://github.com/machito/animate.less
-------------------------------------------------------
Copyright © 2012 Michael Castilla
Email: yo@machito.co
Twitter: https://twitter.com/micr0bitz

*/
body {
  -webkit-backface-visibility: hidden;
}
.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}
@-o-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-30px);
  }
  60% {
    -o-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }
  70% {
    -moz-transform: scale(0.9);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.05);
  }
  70% {
    -o-transform: scale(0.9);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(30px);
  }
  80% {
    -moz-transform: translateY(-10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(30px);
  }
  80% {
    -o-transform: translateY(-10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }
  80% {
    -moz-transform: translateX(-10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(30px);
  }
  80% {
    -o-transform: translateX(-10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }
  80% {
    -moz-transform: translateX(10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(-30px);
  }
  80% {
    -o-transform: translateX(10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }
  80% {
    -moz-transform: translateY(10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }
  80% {
    -o-transform: translateY(10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -moz-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@-moz-keyframes bounceOut {
  0% {
    -moz-transform: scale(1);
  }
  25% {
    -moz-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
}
@-o-keyframes bounceOut {
  0% {
    -o-transform: scale(1);
  }
  25% {
    -o-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes bounceOutDown {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-o-keyframes bounceOutDown {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  -moz-animation-name: bounceOutDown;
  -o-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes bounceOutLeft {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-o-keyframes bounceOutLeft {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  -moz-animation-name: bounceOutLeft;
  -o-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes bounceOutRight {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes bounceOutRight {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  -moz-animation-name: bounceOutRight;
  -o-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -moz-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-o-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -moz-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}
@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
}
@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}
@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
}
@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-o-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -moz-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-moz-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-o-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  -moz-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@-moz-keyframes flip {
  0% {
    -moz-transform: perspective(400px) rotateY(0);
    -moz-animation-timing-function: ease-out;
  }
  40% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -moz-animation-timing-function: ease-out;
  }
  50% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -moz-animation-timing-function: ease-in;
  }
  80% {
    -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -moz-animation-timing-function: ease-in;
  }
  100% {
    -moz-transform: perspective(400px) scale(1);
    -moz-animation-timing-function: ease-in;
  }
}
@-o-keyframes flip {
  0% {
    -o-transform: perspective(400px) rotateY(0);
    -o-animation-timing-function: ease-out;
  }
  40% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -o-animation-timing-function: ease-out;
  }
  50% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -o-animation-timing-function: ease-in;
  }
  80% {
    -o-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -o-animation-timing-function: ease-in;
  }
  100% {
    -o-transform: perspective(400px) scale(1);
    -o-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) scale(1);
    animation-timing-function: ease-in;
  }
}
.flip {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInY {
  0% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInY {
  0% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutX {
  0% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutX {
  0% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutY {
  0% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutY {
  0% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}
@-moz-keyframes hinge {
  0% {
    -moz-transform: rotate(0);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -moz-transform: rotate(80deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  40% {
    -moz-transform: rotate(60deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  80% {
    -moz-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  100% {
    -moz-transform: translateY(700px);
    opacity: 0;
  }
}
@-o-keyframes hinge {
  0% {
    -o-transform: rotate(0);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -o-transform: rotate(80deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  40% {
    -o-transform: rotate(60deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  80% {
    -o-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  100% {
    -o-transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  -moz-animation-name: hinge;
  -o-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes lightSpeedIn {
  0% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -moz-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -moz-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@-o-keyframes lightSpeedIn {
  0% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -o-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -o-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  -moz-animation-name: lightSpeedIn;
  -o-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@-moz-keyframes lightSpeedOut {
  0% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@-o-keyframes lightSpeedOut {
  0% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  -moz-animation-name: lightSpeedOut;
  -o-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }
  50% {
    -o-transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}
@-moz-keyframes rollIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
}
@-o-keyframes rollIn {
  0% {
    opacity: 0;
    -o-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  -moz-animation-name: rollIn;
  -o-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}
@-moz-keyframes rollOut {
  0% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(100%) rotate(120deg);
  }
}
@-o-keyframes rollOut {
  0% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  -moz-animation-name: rollOut;
  -o-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateIn {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateIn {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  -moz-animation-name: rotateIn;
  -o-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -moz-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -moz-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -moz-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -moz-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOut {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(200deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOut {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  -moz-animation-name: rotateOut;
  -o-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  -moz-animation-name: rotateOutDownLeft;
  -o-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  -moz-animation-name: rotateOutDownRight;
  -o-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -transform-origin: left bottom;
    -transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  -moz-animation-name: rotateOutUpLeft;
  -o-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  -moz-animation-name: rotateOutUpRight;
  -o-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
  }
}
@-moz-keyframes shake {
  0%,
  100% {
    -moz-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -moz-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -moz-transform: translateX(10px);
  }
}
@-o-keyframes shake {
  0%,
  100% {
    -o-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -o-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -o-transform: translateX(10px);
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes swing {
  20% {
    -moz-transform: rotate(15deg);
  }
  40% {
    -moz-transform: rotate(-10deg);
  }
  60% {
    -moz-transform: rotate(5deg);
  }
  80% {
    -moz-transform: rotate(-5deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes swing {
  20% {
    -o-transform: rotate(15deg);
  }
  40% {
    -o-transform: rotate(-10deg);
  }
  60% {
    -o-transform: rotate(5deg);
  }
  80% {
    -o-transform: rotate(-5deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@-moz-keyframes tada {
  0% {
    -moz-transform: scale(1);
  }
  10%,
  20% {
    -moz-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -moz-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -moz-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -moz-transform: scale(1) rotate(0);
  }
}
@-o-keyframes tada {
  0% {
    -o-transform: scale(1);
  }
  10%,
  20% {
    -o-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -o-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -o-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -o-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}
@-moz-keyframes wiggle {
  0% {
    -moz-transform: skewX(9deg);
  }
  10% {
    -moz-transform: skewX(-8deg);
  }
  20% {
    -moz-transform: skewX(7deg);
  }
  30% {
    -moz-transform: skewX(-6deg);
  }
  40% {
    -moz-transform: skewX(5deg);
  }
  50% {
    -moz-transform: skewX(-4deg);
  }
  60% {
    -moz-transform: skewX(3deg);
  }
  70% {
    -moz-transform: skewX(-2deg);
  }
  80% {
    -moz-transform: skewX(1deg);
  }
  90% {
    -moz-transform: skewX(0deg);
  }
  100% {
    -moz-transform: skewX(0deg);
  }
}
@-o-keyframes wiggle {
  0% {
    -o-transform: skewX(9deg);
  }
  10% {
    -o-transform: skewX(-8deg);
  }
  20% {
    -o-transform: skewX(7deg);
  }
  30% {
    -o-transform: skewX(-6deg);
  }
  40% {
    -o-transform: skewX(5deg);
  }
  50% {
    -o-transform: skewX(-4deg);
  }
  60% {
    -o-transform: skewX(3deg);
  }
  70% {
    -o-transform: skewX(-2deg);
  }
  80% {
    -o-transform: skewX(1deg);
  }
  90% {
    -o-transform: skewX(0deg);
  }
  100% {
    -o-transform: skewX(0deg);
  }
}
@keyframes wiggle {
  0% {
    transform: skewX(9deg);
  }
  10% {
    transform: skewX(-8deg);
  }
  20% {
    transform: skewX(7deg);
  }
  30% {
    transform: skewX(-6deg);
  }
  40% {
    transform: skewX(5deg);
  }
  50% {
    transform: skewX(-4deg);
  }
  60% {
    transform: skewX(3deg);
  }
  70% {
    transform: skewX(-2deg);
  }
  80% {
    transform: skewX(1deg);
  }
  90% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
.wiggle {
  -webkit-animation-name: wiggle;
  -moz-animation-name: wiggle;
  -o-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%);
  }
  15% {
    -moz-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -moz-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -moz-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -moz-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -moz-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -moz-transform: translateX(0%);
  }
}
@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%);
  }
  15% {
    -o-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -o-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -o-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -o-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -o-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -o-transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  -moz-animation-name: wobble;
  -o-animation-name: wobble;
  animation-name: wobble;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost/Black/Jost-Black.woff2') format('woff2'), url('../fonts/Jost/Black/Jost-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost/ExtraBold/Jost-ExtraBold.woff2') format('woff2'), url('../fonts/Jost/ExtraBold/Jost-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost/Bold/Jost-Bold.woff2') format('woff2'), url('../fonts/Jost/Bold/Jost-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost/ExtraLight/Jost-ExtraLight.woff2') format('woff2'), url('../fonts/Jost/ExtraLight/Jost-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost/Light/Jost-Light.woff2') format('woff2'), url('../fonts/Jost/Light/Jost-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost/Medium/Jost-Medium.woff2') format('woff2'), url('../fonts/Jost/Medium/Jost-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost/Regular/Jost-Regular.woff2') format('woff2'), url('../fonts/Jost/Regular/Jost-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost/SemiBold/Jost-SemiBold.woff2') format('woff2'), url('../fonts/Jost/SemiBold/Jost-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost/Thin/Jost-Thin.woff2') format('woff2'), url('../fonts/Jost/Thin/Jost-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
.catalog-product-view .breadcrumbs,
.catalog-category-view .breadcrumbs,
.catalogsearch-result-index .breadcrumbs {
  background: none !important;
  padding: 0;
}
.catalog-product-view .breadcrumbs .breadcrumbs-content,
.catalog-category-view .breadcrumbs .breadcrumbs-content,
.catalogsearch-result-index .breadcrumbs .breadcrumbs-content {
  margin: 0;
  width: 100%;
  border: none;
  text-align: left;
  padding: 0 10%;
}
.catalog-product-view .breadcrumbs .breadcrumbs-content h1,
.catalog-category-view .breadcrumbs .breadcrumbs-content h1,
.catalogsearch-result-index .breadcrumbs .breadcrumbs-content h1 {
  display: none;
}
.catalog-product-view .breadcrumbs .breadcrumbs-content .breadcrumb,
.catalog-category-view .breadcrumbs .breadcrumbs-content .breadcrumb,
.catalogsearch-result-index .breadcrumbs .breadcrumbs-content .breadcrumb {
  margin: 0;
  padding: 10px 0;
}
.catalog-product-view .breadcrumbs-catalog,
.catalog-category-view .breadcrumbs-catalog,
.catalogsearch-result-index .breadcrumbs-catalog {
  padding: 0 10%;
  width: 100%;
  text-align: left;
}
.catalog-product-view .breadcrumbs-catalog .breadcrumbs-content,
.catalog-category-view .breadcrumbs-catalog .breadcrumbs-content,
.catalogsearch-result-index .breadcrumbs-catalog .breadcrumbs-content {
  width: 100%;
  border: none;
  padding: 10px;
}
.catalog-product-view .product-details-view .product-info-main .product-top-info ~ .product-add-form #product_addtocart_form .stock.unavailable,
.catalog-category-view .product-details-view .product-info-main .product-top-info ~ .product-add-form #product_addtocart_form .stock.unavailable,
.catalogsearch-result-index .product-details-view .product-info-main .product-top-info ~ .product-add-form #product_addtocart_form .stock.unavailable {
  top: 0;
  left: -125px;
  display: none;
}
.catalog-product-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .stock.unavailable,
.catalog-category-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .stock.unavailable,
.catalogsearch-result-index .product-details-view .product-info-main .product-add-form #product_addtocart_form .stock.unavailable {
  position: absolute;
  top: -30px;
  left: 30px;
  padding: 2px 10px;
  background: #f39268;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
}
.catalog-product-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .stock.unavailable i,
.catalog-category-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .stock.unavailable i,
.catalogsearch-result-index .product-details-view .product-info-main .product-add-form #product_addtocart_form .stock.unavailable i {
  display: none;
}
.catalog-product-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social,
.catalog-category-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social,
.catalogsearch-result-index .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.catalog-product-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social span,
.catalog-category-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social span,
.catalogsearch-result-index .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social span {
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
}
.catalog-product-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social .st-btn,
.catalog-category-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social .st-btn,
.catalogsearch-result-index .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social .st-btn {
  display: inline-block !important;
}
.catalog-product-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social .sharethis-inline-share-buttons,
.catalog-category-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social .sharethis-inline-share-buttons,
.catalogsearch-result-index .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .share-social .sharethis-inline-share-buttons {
  z-index: 1 !important;
}
.catalog-product-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .btn-addto,
.catalog-category-view .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .btn-addto,
.catalogsearch-result-index .product-details-view .product-info-main .product-add-form #product_addtocart_form .product-addto .btn-addto {
  text-align: left;
}
.catalog-product-view .product.info.detailed .data.title,
.catalog-category-view .product.info.detailed .data.title,
.catalogsearch-result-index .product.info.detailed .data.title {
  position: relative;
}
.catalog-product-view .product.info.detailed .data.title a,
.catalog-category-view .product.info.detailed .data.title a,
.catalogsearch-result-index .product.info.detailed .data.title a {
  display: block;
  width: 100%;
  border-bottom: none !important;
}
.catalog-product-view .product.info.detailed .data.title:after,
.catalog-category-view .product.info.detailed .data.title:after,
.catalogsearch-result-index .product.info.detailed .data.title:after {
  position: absolute;
  right: 10px;
  top: 12px;
  z-index: 1;
  font-weight: bold;
}
.sale-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
}
.sale-label > .sale-labels {
  padding: 5px 15px;
  color: #000;
  background: #FFCB01;
  font-weight: 500;
}
.sale-label > .sale-percents {
  padding: 5px 20px;
  color: #fff;
  background: #60B237;
  border-radius: 0 0 0 10px;
}
.product-details-view .product-info-main .product-detail-name .box-label {
  flex-direction: row-reverse;
  justify-content: end;
}
.product-details-view .product-info-main .product-detail-name .box-label .product-label.sale-label {
  margin-left: 0.5rem;
}
.product-label.new-label > .news-label {
  margin-left: 0.5rem;
  color: #fff;
  background-color: blue;
  padding: 5px 15px;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
}
.product-label.free-label > .frees-label {
  color: #fff;
  padding: 5px 15px;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-left: 0.5rem;
  float: right;
}
.cms-home .box-label,
.page-products .box-label,
.mpanel-product-view .box-label {
  right: 5px;
  top: 10px;
  width: 200px;
  display: flex;
  justify-content: end;
  flex-direction: row-reverse;
  position: absolute;
}
.cms-home .box-label .sale-label,
.page-products .box-label .sale-label,
.mpanel-product-view .box-label .sale-label,
.cms-home .box-label .stock,
.page-products .box-label .stock,
.mpanel-product-view .box-label .stock {
  top: unset;
  right: unset;
}
.cms-home .product-label.new-label,
.page-products .product-label.new-label,
.mpanel-product-view .product-label.new-label,
.cms-home .product-label.free-label,
.page-products .product-label.free-label,
.mpanel-product-view .product-label.free-label {
  margin-right: 0.5rem;
  z-index: 4;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .page-products .products.list .product-top-right .sale-label,
  .page-products .stock {
    top: unset;
    right: unset;
  }
  .product-detail-name .box-label {
    display: flex;
  }
}
.page-products .product-label.new-label {
  top: 0;
}
.product-top-right .stock.unavailable,
.box-label .stock.unavailable {
  padding: 0.7rem;
  background: #f39268;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.4rem;
}
.product-top-right a.towishlist,
.box-label a.towishlist {
  font-size: 22px;
  color: #295135;
  background: transparent;
  width: auto;
  height: auto;
  position: absolute;
  bottom: 10px;
  right: 0;
  margin-right: 1rem;
  z-index: 3;
  border: none;
}
.products-list .product-top-right a.towishlist,
.products-list .box-label a.towishlist {
  bottom: 15px;
  top: auto;
  right: 0;
}
.product-top-right a.towishlist:hover,
.box-label a.towishlist:hover,
.product-top-right a.towishlist:focus,
.box-label a.towishlist:focus,
.product-top-right a.towishlist:active,
.box-label a.towishlist:active {
  color: #cf2a27;
}
.product-top-right a.towishlist:hover .ion-android-favorite-outline:before,
.box-label a.towishlist:hover .ion-android-favorite-outline:before,
.product-top-right a.towishlist:focus .ion-android-favorite-outline:before,
.box-label a.towishlist:focus .ion-android-favorite-outline:before,
.product-top-right a.towishlist:active .ion-android-favorite-outline:before,
.box-label a.towishlist:active .ion-android-favorite-outline:before {
  content: "\f141";
}
.box-label .stock.unavailable {
  display: inline-block;
  vertical-align: middle;
}
.wishlist-index-index .product-items .product-image-wrapper {
  height: auto;
}
.wishlist-index-index .product-items .product-item-actions {
  margin-top: 10px;
}
.wishlist-index-index .product-items .product-item-inner .product-item-actions {
  margin-top: 10px;
  text-align: left !important;
}
.checkout-cart-index #shopping-cart-table .actions-toolbar .towishlist {
  display: none;
}
.checkout-cart-index #shopping-cart-table .product-item-code {
  display: flex;
  flex-wrap: wrap;
}
.checkout-cart-index #shopping-cart-table .message.error {
  margin-top: 10px;
}
.checkout-cart-index #shopping-cart-table .message.error ~ .error {
  display: none;
}
.customer-account-login .login-container .block-title h3 {
  margin-bottom: 0;
}
.customer-account-login .form-login .actions-toolbar {
  margin-top: 0;
}
.customer-account-login .create.account .customer-name .label {
  display: none;
}
.customer-account-login .create.account .title {
  margin-bottom: 10px;
}
.customer-account-login .create.account .checkbox.choice.newsletter {
  margin-top: 0;
  margin-bottom: 0;
}
.customer-account-forgotpassword .field.note {
  margin-bottom: 20px;
}
.customer-account-forgotpassword .form.password.forget {
  margin-bottom: 10px;
}
.customer-account-forgotpassword .actions-toolbar {
  margin-top: 15px;
}
.customer-account-forgotpassword .actions-toolbar .primary {
  margin-bottom: 10px;
}
.mgs-brand-widget .block-content {
  height: auto;
}
.mgs-brand-widget .owl-carousel .owl-stage {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
}
.mgs-brand-widget .owl-carousel .owl-item {
  height: auto !important;
}
.mgs-brand-widget .owl-carousel .owl-item .item {
  height: 100%;
  width: 90%;
  margin: auto;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-items: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
}
.mgs-brand-widget .owl-carousel .owl-item .item .image {
  display: block;
  align-items: center;
  height: auto;
  margin: auto;
}
.mgs-brand-widget .owl-carousel .owl-item .item img {
  height: auto !important;
}
.footer .block-contact .block-content .block-social {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.footer .block-contact .block-content .block-social p {
  margin: 0;
}
.footer .block-contact .block-content .block-social ul {
  display: flex;
  margin-left: 10px;
}
.footer .block-contact .block-content .block-social ul li {
  margin-right: 10px;
}
.footer .block-contact .block-content .block-social {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.footer .block-contact .block-content .block-social p {
  margin: 0;
}
.footer .block-contact .block-content .block-social ul {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  margin-left: 10px;
}
.footer .block-contact .block-content .block-social ul li {
  margin-right: 10px;
}
.stock.unavailable {
  color: #cf2a27;
  font-size: 1.4rem;
}
.new_section .nav-tabs a.show-all {
  float: right;
}
.new_section .block-tab-products .nav-tabs,
.new_arrival .block-tab-products .nav-tabs {
  text-align: left;
}
.new_section .nav-tabs a.show-all {
  float: right;
}
.new_section .block-tab-products .nav-tabs,
.new_arrival .block-tab-products .nav-tabs {
  text-align: left;
}
.customer-account-forgotpassword .page-main,
.customer-account-login .page-main {
  margin-top: 50px;
}
.img-responsive {
  margin: auto;
}
@media (max-width: 640px) {
  body.wide main .breadcrumbs {
    margin-top: 0;
  }
  body.wide main .breadcrumbs ~ .container {
    padding-top: 20px;
  }
  body.wide main .container {
    margin-top: 0;
  }
  body.wide.checkout-cart-index main .breadcrumbs ~ .container {
    padding-top: 0;
  }
  .block-tab-products .tabbable .nav-tabs {
    margin-bottom: 0;
  }
  .block-tab-products .products-grid.productv3 .product-item .product-item-info {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .mgs-filter .block-filter-content .item {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
  }
  .mgs-filter .block-filter-content .item .mgs-ajax-layer-item {
    padding-left: 5px;
  }
  .block-cart-header .actions .primary #top-cart-btn-checkout {
    margin-right: 0;
  }
  .customer-account-forgotpassword .breadcrumbs-content {
    border: none;
  }
}
@media (max-width: 991px) {
  .customer-account-login .login-container {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .product-details-view .product-info-main .product-top-info ~ .product-add-form #product_addtocart_form .stock.unavailable {
    left: 7px;
    top: -45px;
  }
}
@media (min-width: 640px) and (max-width: 1024px) {
  .mgs-filter dt.filter-options-title {
    padding-right: 0;
  }
  .mgs-filter .catalog-category-view {
    padding-left: 5px;
  }
  .mgs-filter .filter-options-content .mgs-ajax-layer-item {
    padding-left: 0;
  }
  .mgs-filter .filter-options-content .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .mgs-filter .filter-options-content .items .item {
    width: calc(100% / 3);
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    padding-right: 10px;
    box-sizing: border-box;
  }
  .mgs-filter dt.filter-options-title {
    padding-right: 0;
  }
  .mgs-filter .catalog-category-view {
    padding-left: 5px;
  }
  .mgs-filter .filter-options-content .mgs-ajax-layer-item {
    padding-left: 0;
  }
  .mgs-filter .filter-options-content .items {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .mgs-filter .filter-options-content .items .item {
    width: calc(100% / 3);
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    padding-right: 2rem;
    box-sizing: border-box;
  }
}
@media (max-width: 992px) {
  .navigation #mainMenu li.dropdown > .dropdown-menu {
    display: none;
  }
}
@media (min-width: 768px) {
  .stock.unavailable {
    font-size: 2rem;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .header .middle-header-container {
    z-index: 200;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  .header .middle-header-container.sticky-header {
    position: fixed;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: all;
    background-color: white;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }
  body.wide main .container.page-main {
    margin-top: 105px;
  }
  body.wide main .container.page-main.page-main {
    margin-top: 0;
  }
  body.wide main .section-catalog .container,
  body.wide main .new_section .container {
    margin-top: 0;
  }
  .new_section .title-block {
    padding-top: 0;
    text-align: left;
  }
  .new_section .title-block h2:after {
    left: 0;
    transform: translateX(0%);
  }
  .new_arrival .title-block {
    padding-top: 0;
    text-align: right;
  }
  .new_arrival .title-block h2:after {
    right: 0;
    left: unset;
    text-align: right;
    transform: translateX(0);
  }
  .catalog-product-view #product_addtocart_form .product-options-bottom .fieldset {
    display: flex;
    justify-content: space-between;
  }
  .catalog-product-view #product_addtocart_form .product-options-bottom .fieldset .field.qty {
    max-width: 240px;
  }
  .catalog-product-view #product_addtocart_form .product-options-bottom .fieldset .field.qty .control .edit-qty {
    height: 40px;
    font-size: 30px;
    line-height: 40px;
  }
  .catalog-product-view #product_addtocart_form .product-options-bottom .fieldset .field.qty .control .edit-qty .qty {
    height: 40px;
    font-size: 24px;
  }
  .catalog-product-view #product_addtocart_form .product-options-bottom .fieldset .actions {
    max-width: 240px;
  }
  .catalog-product-view #product_addtocart_form .product-options-bottom .fieldset .actions .btn-primary {
    font-size: 14px;
    font-weight: 400;
    line-height: initial;
  }
  .product-details-view .product-info-main .product-add-form #product_addtocart_form .box-tocart .fieldset {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1024px + 1px) {
  .page-main section {
    padding: 0 7rem;
  }
}
@media (min-width: 1024px) and (max-width: 1423px) {
  .catalog-product-view .container {
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .mgs-filter .filter-options-content .mgs-ajax-layer-item {
    padding-left: 0;
  }
  .mgs-filter .filter-options-content .items {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .mgs-filter .filter-options-content .items .item {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    padding-right: 3rem;
    box-sizing: border-box;
  }
}
@media (min-width: 1440px) {
  .catalog-product-view #product_addtocart_form .product-options-bottom {
    width: 80%;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .mgs-filter .block-filter-content .filter-options-content .filter-heading h3:after {
    margin-left: 5px;
  }
}
body {
  font-family: 'Jost', sans-serif, Helvetica, Arial;
  font-weight: normal;
}
.navigation li.level0 a.level-top,
.navigation ul.container .level0 > a {
  font-family: 'Jost', sans-serif, Helvetica, Arial;
}
.clearfix {
  clear: both;
}
.base-color {
  color: #295135;
}
.mage-error {
  color: red;
}
#maincontent {
  min-height: 500px;
}
* {
  outline: none;
}
section:after,
section:before {
  content: "";
  display: table;
  clear: both;
}
.modal-popup {
  position: fixed;
  z-index: 900 !important;
  opacity: 0;
}
.modal-popup._show {
  opacity: 1;
}
.modal-popup .modal-inner-wrap {
  box-sizing: border-box;
  height: auto;
  left: 0;
  margin: 10rem auto;
  max-width: 50rem;
  right: 0;
  transform: translateY(-200%);
  -webkit-transform: translateY(-200%);
  -moz-transform: translateY(-200%);
  -o-transform: translateY(-200%);
  transition-duration: .2s;
  -webkit-transition-property: -webkit-transform, visibility;
  transition-property: transform, visibility;
  transition-timing-function: ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: auto;
  background-color: #fff;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.35);
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
  max-height: 600px;
  overflow: auto;
  min-width: 300px;
}
.modal-popup._show {
  visibility: visible;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  z-index: 99999 !important;
}
.modal-popup._show .modal-inner-wrap {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
}
.modal-popup .modal-header {
  padding: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  display: block;
  border: none;
}
.modal-popup .action-close {
  color: #736963;
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 1;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  border-color: #adadad;
}
.modal-popup .action-close:before {
  content: "\f00d";
  transition: color .1s linear;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  line-height: 40px;
  font-style: normal;
  font-weight: normal;
  speak: none;
}
.modal-popup .action-close > span {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  display: none;
  visibility: hidden;
}
.modal-popup .modal-content {
  padding: 15px 3rem;
  border: none;
  box-shadow: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
}
.modal-popup .modal-footer {
  text-align: center;
  margin-top: auto;
  padding: 20px 3rem;
  flex-grow: 0;
  flex-shrink: 0;
  border: none;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.modal-popup .modal-footer .action-secondary {
  border: 1px solid #295135;
  background: transparent;
  color: #295135;
  border-radius: 20px;
  font-weight: 700;
  margin-left: 10px;
  padding: 6px 20px;
  text-transform: uppercase;
  order: 1;
}
.modal-popup .modal-footer .action-secondary:hover {
  background: #295135;
  color: #fff;
}
.modal-popup .modal-footer .action-primary {
  background: transparent;
  border: 1px solid #295135;
  border-radius: 20px;
  font-weight: 700;
  padding: 6px 20px;
  color: #295135;
  text-transform: uppercase;
}
.modal-popup .modal-footer .action-primary:hover {
  background: #295135;
  color: #fff;
}
.modals-overlay {
  background: rgba(0, 0, 0, 0.35) none repeat scroll 0 0;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000 !important;
}
html {
  overflow-x: hidden;
}
body {
  line-height: 1.8;
  font-size: 14px;
  font-weight: 400;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.boxed > .page-wrapper {
  background: #fff none repeat scroll 0 0;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
  width: 1200px;
}
body.boxed.width1024 > .page-wrapper {
  width: 1024px;
}
body.boxed.width1366 > .page-wrapper {
  width: 1366px;
}
body.boxed.fullwidth > .page-wrapper {
  width: 100%;
}
body.boxed .container {
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  body.boxed > .page-wrapper {
    width: 750px;
  }
  body.boxed .container {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.boxed > .page-wrapper {
    width: 970px;
  }
  body.boxed .container {
    width: 100%;
  }
}
@media (max-width: 767px) {
  body.boxed > .page-wrapper {
    width: 100%;
  }
}
body.wide .container {
  max-width: 1360px;
  width: auto;
  margin-top: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  body.wide .container {
    width: 750px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.wide .container {
    width: 970px;
  }
}
@media (max-width: 767px) {
  body.wide .container {
    width: 100%;
  }
}
body.wide.fullwidth .container:not(.no-full) {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  body.wide.fullwidth .container:not(.no-full) {
    padding-left: 40px;
    padding-right: 40px;
  }
}
body.wide.fullwidth .container.page-main > .row {
  margin: 0 -20px !important;
}
body.wide.fullwidth .container.page-main > .row > .column.main,
body.wide.fullwidth .container.page-main > .row > .sidebar {
  padding: 0 20px !important;
}
body.wide.fullwidth.page-layout-1column .container.page-main > .row {
  margin: 0 !important;
  width: 100%;
}
body.wide.fullwidth.page-layout-1column .container.page-main > .row > .column.main,
body.wide.fullwidth.page-layout-1column .container.page-main > .row > .sidebar {
  padding: 0 !important;
}
body.wide.width1366 .container {
  width: 1366px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  body.wide.width1366 .container {
    width: 1170px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.wide.width1366 .container {
    width: 970px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.wide.width1366 .container {
    width: 750px;
  }
}
@media (max-width: 767px) {
  body.wide.width1366 .container {
    width: 100%;
  }
}
body.wide.width1024 .container {
  width: 1024px;
}
@media (min-width: 768px) and (max-width: 991px) {
  body.wide.width1024 .container {
    width: 750px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.wide.width1024 .container {
    width: 970px;
  }
}
@media (max-width: 767px) {
  body.wide.width1024 .container {
    width: 100%;
  }
}
.cms-index-index #maincontent {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.cms-index-index #maincontent > .row {
  margin: 0;
}
.cms-index-index #maincontent > .row > .column.main {
  margin: 0;
  padding: 0;
}
.cms-index-index .footer {
  margin: 0 !important;
}
.footer {
  margin: 0;
}
.footer .block-contact ul li > em[class*="ion-"] {
  font-size: 18px;
  color: #ababab;
}
.cms-index-index #maincontent > .row,
.cms-index-index #maincontent > .row > .column.main {
  margin: 0;
  padding: 0;
}
.no-padding {
  padding: 0;
}
.no-display {
  display: none;
}
.parallax {
  background-attachment: fixed !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
a {
  cursor: pointer;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.margin-left15 {
  margin-left: 15px;
}
.margin-top30 {
  margin-top: 30px;
}
.margin-bottom20 {
  margin-bottom: 20px;
}
.padding-top10 {
  padding-top: 10px;
}
.margin-bottom35 {
  margin-bottom: 35px;
}
.label {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  display: block;
  margin-bottom: 5px;
  text-align: left;
}
p.required {
  color: red;
}
@media (min-width: 1200px) {
  .col-lg-custom-5 {
    width: 20%;
    float: left;
    padding: 0 15px;
  }
  .col-lg-custom-7 {
    width: 14.28%;
    float: left;
    padding: 0 15px;
  }
  .col-lg-custom-8 {
    width: 12.5%;
    float: left;
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .col-md-custom-5 {
    width: 20%;
    float: left;
    padding: 0 15px;
  }
  .col-md-custom-7 {
    width: 14.28%;
    float: left;
    padding: 0 15px;
  }
  .col-md-custom-8 {
    width: 12.5%;
    float: left;
    padding: 0 15px;
  }
}
.visible-xlg {
  display: none;
}
@media (min-width: 1600px) {
  .visible-xlg {
    display: block;
  }
}
@media (max-width: 480px) {
  .col-mobile-12 {
    width: 100%;
    float: none;
  }
}
.visible-mobile {
  display: none;
}
@media (max-width: 480px) {
  .visible-mobile {
    display: block;
  }
}
::-moz-selection {
  background-color: #295135;
  color: #fff;
}
::selection {
  background-color: #295135;
  color: #fff;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a:focus,
a:active,
select:focus,
select:active,
input:focus,
input:active,
textarea:focus,
textarea:active,
button:focus,
button:active {
  outline: none !important;
}
h1,
.h1 {
  font-size: 40px;
}
h2,
.h2 {
  font-size: 34px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 16px;
}
h6,
.h6 {
  font-size: 14px;
}
a {
  color: #295135;
  transition: all 0.4s;
}
a:hover,
a:focus {
  color: #ff9900;
  text-decoration: none;
}
.btn {
  border-radius: 23.5px;
  -webkit-border-radius: 23.5px;
  -moz-border-radius: 23.5px;
  -o-border-radius: 23.5px;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px;
  line-height: 1;
  word-spacing: 4px;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.btn:hover,
.btn:active,
.btn:focus,
.btn.active {
  box-shadow: none;
}
.btn-default,
.btn-primary,
.btn-secondary {
  background-color: #fff;
  color: #295135;
  border: 1px solid #295135;
  border-radius: 2px;
}
.btn-default:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-default:active,
.btn-primary:active,
.btn-secondary:active,
.btn-default:focus,
.btn-primary:focus,
.btn-secondary:focus {
  background-color: #295135;
  color: #fff;
  border-color: #295135;
}
.btn-third,
.block-newsletter-ft .action.subscribe {
  background-color: #295135;
  color: #fff;
  border: 1px solid #295135;
}
.btn-third:hover,
.btn-third:active,
.btn-third:focus,
.block-newsletter-ft .action.subscribe:hover,
.block-newsletter-ft .action.subscribe:active,
.block-newsletter-ft .action.subscribe:focus {
  background-color: #fff;
  color: #295135;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary.active[disabled],
fieldset[disabled] .btn-primary.active,
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  opacity: .5;
  background-color: #295135;
  color: #fff;
  border-color: #295135;
}
.btn-fourth {
  background-color: #696969;
  color: #fff;
  border: 1px solid #696969;
}
.btn-fourth:hover,
.btn-fourth:focus,
.btn-fourth:active {
  background-color: #295135;
  border-color: #295135;
  color: #fff;
}
.btn-full {
  width: 100%;
}
.btn-lg {
  font-size: 16px;
  padding: 14px 38px 15px;
  letter-spacing: 0.08em;
}
.btn-sm {
  padding: 9px 20px;
  margin-bottom: 10px;
}
.form-control {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  padding: 10px 20px;
  border: 1px solid #f4f1e3;
  margin-bottom: 10px;
  width: 100%;
  box-shadow: none;
}
.form-control:focus {
  border-color: #295135;
  box-shadow: none;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input.form-control {
  font-size: 14px;
  color: #333;
  background-color: transparent;
  line-height: 1;
  font-weight: 400;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  padding: 10px 20px 10px 10px;
  border: 1px solid #f4f1e3;
  height: 40px;
  margin-bottom: 20px;
  width: 100%;
  display: block;
}
input:focus {
  border-color: #295135;
}
input::-webkit-input-placeholder,
input::-moz-placeholder,
input::-ms-input-placeholder,
input::-moz-placeholder {
  color: #ababab;
}
input.form-control.input-lg {
  height: 47px;
  line-height: 48px;
  padding: 0 20px;
}
input.form-control.input-sm {
  height: 34px;
  line-height: 34px;
  padding: 0 20px;
}
input.mage-error {
  border-color: red;
}
input.mage-error:focus {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(241, 0, 34, 0.6);
}
select,
select.form-control {
  font-size: 14px;
  color: #333;
  line-height: 18px;
  line-height: 2rem;
  font-weight: 400;
  padding: 6px 20px 6px 10px;
  border: 1px solid #f4f1e3;
  height: 40px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('../images/icon-dropdown.png');
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-color: #fff;
  margin-bottom: 20px;
  cursor: pointer;
}
select option,
select.form-control option {
  padding: 5px 10px;
  min-height: 28px;
  color: #ababab;
}
select::-ms-expand {
  display: none;
}
.customer-dob select,
.contact_number select,
.customer-dob select.form-control,
.contact_number select.form-control {
  background-image: url('../images/chevron-down-outline.svg');
  background-size: 14px;
}
select.multiselect,
select.multiple {
  background-image: none;
  background-color: #fff;
  min-height: 100px;
}
textarea {
  border: 1px solid #f4f1e3;
  min-height: 100px;
  width: 100%;
  padding: 12px 10px;
  line-height: 1.2;
}
textarea.mage-error {
  border-color: red;
}
.fieldset > .field.required > .label > span:before,
.fieldset > .fields > .field.required > .label > span:before,
.fieldset > .field._required > .label > span:before,
.fieldset > .fields > .field._required > .label > span:before {
  content: "*";
  color: #cf2a27;
  margin: 0 0 0 3px;
  font-weight: 400;
}
.field.choice {
  width: 100%;
  margin-bottom: 10px;
}
.field.choice input {
  margin: 0;
  margin-right: 20px;
}
.field.choice input label {
  font-weight: 700;
  color: #333;
}
.margin-bottom10 {
  margin-bottom: 10px;
}
.loading-mask {
  position: fixed;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.5);
}
.loading-mask .loader > img {
  bottom: 0;
  left: 0;
  margin: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}
.loading-mask .loader p {
  display: none;
}
.message {
  border-style: solid;
  border-radius: 4px;
  border-width: 1px;
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
  min-height: 24px;
  padding: 15px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.message:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 24px;
  margin-right: 15px;
  vertical-align: middle;
  line-height: 10px;
  float: left;
}
.message.success {
  border-color: #d6e9c6;
  background-color: #dff0d8;
  color: #3c763d;
}
.message.success:before {
  content: "\f00c";
}
.message.notice {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.message.notice:before {
  content: '\f12a';
}
.message.error,
.message.warning {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.message.error:before,
.message.warning:before {
  content: '\f12a';
}
.message.empty {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc;
}
.message.empty:before {
  content: '\f12a';
}
.price-box {
  font-size: 14px;
  line-height: 1;
}
.price-box .price-wrapper {
  color: #696969;
}
.price-box .old-price {
  margin-right: 1rem;
  display: inline-block;
  vertical-align: top;
  order: -1;
  text-decoration: line-through;
}
.price-box .old-price .price-wrapper {
  font-weight: 400;
  text-decoration: line-through;
}
.price-box .old-price .price-wrapper span {
  color: #a7a7a7;
}
.price-box .price-as-configured .old-price {
  margin-right: 0;
  margin-left: 10px;
}
.price-label {
  display: none;
}
.product-price-container .price-box .price-label {
  display: none;
}
.products-grid {
  text-align: center;
}
.products-grid .price-final_price .price-label {
  display: none;
}
.swatch-attribute-label {
  min-width: 50px;
  display: inline-block;
}
.rating-summary {
  position: relative;
  line-height: 1;
}
.rating-summary .label {
  display: none;
}
.rating-summary p {
  font-size: 14px;
  color: #ababab;
}
.rating-summary .rating-result {
  display: inline-block;
  height: 19px;
  position: relative;
  width: 80px;
  line-height: 0;
  overflow: hidden;
  text-indent: -999em;
  font-size: 0;
  line-height: 1;
}
.rating-summary .rating-result:after {
  position: absolute;
  width: 100%;
  left: 0;
  top: 6px;
  content: "\f4b2" "\f4b2" "\f4b2" "\f4b2" "\f4b2";
  font-family: "Ionicons";
  z-index: 1;
  letter-spacing: 5px;
  color: #ababab;
  font-size: 13px;
}
.rating-summary .rating-result > span {
  position: relative;
  float: left;
  height: 19px;
  overflow: hidden;
}
.rating-summary .rating-result > span:after {
  position: absolute;
  width: 100%;
  left: 0;
  top: 6px;
  font-size: 13px;
  letter-spacing: 5px;
  color: #f5cc26;
  font-family: "Ionicons";
  content: "\f4b3" "\f4b3" "\f4b3" "\f4b3" "\f4b3";
  z-index: 9;
}
.product-reviews-summary.short .reviews-actions {
  display: none;
}
.owl-carousel .owl-item img {
  max-width: 100%;
  width: auto;
  transform-style: inherit !important;
}
.owl-carousel .owl-nav [class*="owl-"] {
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  line-height: 50px;
  font-size: 48px;
  color: #392a25;
  background: transparent;
  position: absolute;
  top: 50%;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  opacity: 0;
  visibility: hidden;
  transform-origin: 0 0 0;
  text-align: center;
  cursor: pointer;
}
.owl-carousel .owl-nav [class*="owl-"].disabled {
  opacity: 0.3 !important;
  cursor: auto;
  pointer-events: none;
}
.owl-carousel .owl-nav [class*="owl-"]:hover {
  color: #295135;
}
.owl-carousel .owl-nav .owl-prev {
  left: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
}
.owl-carousel .owl-nav .owl-next {
  right: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.owl-carousel .owl-nav.disabled {
  display: none;
}
.owl-carousel .owl-dots {
  margin-top: 1rem;
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: .25;
  background-color: #295135;
  margin-left: 0;
  margin-right: 7.5px;
  border: 1px solid transparent;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  display: inline-block;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  opacity: 1;
}
.owl-carousel .owl-dots.disabled {
  margin: 0;
  display: none;
}
.owl-carousel:hover .owl-nav [class*="owl-"] {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
.slider_mgs_carousel {
  width: 100%;
  display: inline-block;
}
.slider_mgs_carousel.owl-carousel .owl-item img {
  width: 100%;
}
.slider_mgs_carousel.owl-carousel .owl-nav [class*="owl-"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 100px;
  margin: 0;
  color: #333;
  letter-spacing: 0.2em;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.slider_mgs_carousel.owl-carousel .owl-nav [class*="owl-"]:hover {
  background-color: #333;
  color: #fff;
}
.slider_mgs_carousel.owl-carousel .owl-nav [class*="owl-"]:before {
  display: none;
}
.slider_mgs_carousel.owl-carousel .owl-nav .owl-prev {
  left: 15px;
  right: auto;
}
.slider_mgs_carousel.owl-carousel .owl-nav .owl-next {
  right: 15px;
  left: auto;
}
.slider_mgs_carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
.slider_mgs_carousel.owl-carousel .owl-dots .owl-dot span {
  background-color: #696969;
}
.slider_mgs_carousel.owl-carousel .owl-dots .owl-dot.active span,
.slider_mgs_carousel.owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #295135;
}
@media (max-width: 768px) {
  .owl-carousel .owl-nav .owl-next {
    right: 20px;
  }
  .owl-carousel .owl-nav .owl-prev {
    left: 20px;
  }
}
.dropdown-menu {
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  min-width: 165px;
}
.navigation {
  width: 100%;
}
.navigation .nav-main {
  width: 100%;
  display: inline-block;
  text-align: left;
  padding-left: 5px;
}
.navigation .nav-main > li {
  float: none;
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 0;
}
.navigation .nav-main > li a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
  padding: 41px 5px 43px;
  background: none;
}
.navigation .nav-main > li a span.icon-next {
  margin-left: 5px;
}
.navigation .nav-main > li a em {
  font-size: 1rem;
}
.navigation .nav-main > li + li {
  margin: 0;
}
.navigation .nav-main li.active a,
.navigation .nav-main li.active a:hover {
  color: #295135;
  background: none;
}
.navigation .nav-main li a:hover {
  color: #295135;
}
.navigation .nav-main li.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  border: none;
  border-radius: 0;
  border-top: 2px solid #295135;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.175);
  padding: 0;
  margin: 0;
  min-width: 260px;
  visibility: hidden;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -o-transform: translateY(20px);
  display: block;
  opacity: 0;
}
.navigation .nav-main li.dropdown .dropdown-menu li ul li {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  display: block;
  min-width: 100%;
}
.navigation .nav-main li.dropdown .dropdown-menu li ul li a {
  padding: 12px 15px;
  font-size: 13px;
  color: #696969;
  border-bottom: 1px solid #f4f4f4;
  font-weight: 400;
  text-transform: none;
  display: inline-block;
  width: 100%;
  text-transform: capitalize;
  position: relative;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.navigation .nav-main li.dropdown .dropdown-menu li ul li a:hover {
  color: #295135;
}
.navigation .nav-main li.dropdown .dropdown-menu li ul li:last-child a {
  border-bottom: none;
}
.navigation .nav-main li.dropdown .dropdown-menu li ul li .dropdown-menu {
  position: absolute;
  left: 100%;
  top: 15px;
}
.navigation .nav-main li.dropdown .dropdown-menu li ul li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  padding-left: 0;
  max-width: 300px;
}
.navigation .nav-main li.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
}
.navigation .nav-main li.mega-menu-fullwidth {
  position: relative;
}
.navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content .sub-menu li.level1 > a {
  text-transform: capitalize;
  color: #696969;
  font-weight: 400;
  padding: .5rem;
}
.navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content .sub-menu li.level1 > a:hover,
.navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content .sub-menu li.level1 > a:active,
.navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content .sub-menu li.level1 > a:focus {
  padding-left: 30px;
  color: #295135;
  padding-right: 0;
}
.navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content .sub-menu .sub-menu li a {
  border: none;
  padding: 10px 0;
  position: relative;
}
.navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content li a {
  border: none;
  padding: 10px 0;
  position: relative;
}
.block-cart-header {
  position: relative;
}
.block-cart-header .showcart .box-shopbag .title-cart {
  display: none;
}
.block-cart-header .showcart .box-shopbag .icon-cart {
  display: inline-block;
  position: relative;
}
.block-cart-header .showcart .box-shopbag .icon-cart [class*="ion"] {
  font-size: 30px;
  color: #333;
}
.block-cart-header .showcart .box-shopbag .icon-cart .count {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #295135;
  position: absolute;
  top: -5px;
  right: -11px;
  line-height: 1;
  border-radius: 50%;
  padding: 2.5px 5.5px 3.5px;
}
.block-cart-header .showcart .box-shopbag .icon-cart .count .counter-number.firstload {
  display: none;
}
.block-cart-header .showcart .box-shopbag .icon-cart .count.empty .counter-number.loaded {
  display: none;
}
.block-cart-header .showcart .box-shopbag .icon-cart .count.empty .counter-number.firstload {
  display: block;
}
.block-cart-header .dropdown-menu {
  min-width: 320px;
  border-radius: 0;
  border: none;
  padding: 20px;
  margin: 0;
  border-top: 1px solid #295135;
  right: 0;
  left: auto;
}
.block-cart-header .dropdown-menu .block-content button.close {
  display: none;
}
.block-cart-header .dropdown-menu .block-content .subtitle.empty {
  font-size: 11px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  display: block;
  margin: auto;
}
.block-cart-header .minicart-items-wrapper {
  max-height: 400px;
  overflow: auto;
  height: auto !important;
}
.block-cart-header .minicart-items-wrapper .minicart-items {
  height: auto !important;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item-photo {
  display: block;
  font-size: 0;
  text-align: center;
  border: solid 1px #f4f1e3;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f4f1e2;
  position: relative;
  display: inline-block;
  width: 100%;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-left {
  display: inline-block;
  float: left;
  max-width: 80px;
  margin-right: 15px;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details {
  display: inline-block;
  float: left;
  width: calc(100% - 100px);
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product-item-name a {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product-item-name a:hover {
  color: #295135;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product.options .toggle:after {
  content: "\f0dd";
  display: inline-block;
  font-family: 'FontAwesome';
  font-size: inherit;
  margin-left: 10px;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product.options .toggle.active:after {
  content: "\f0de";
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product.options .content .list {
  display: inline-block;
  width: 100%;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product.options .content .list .label {
  text-align: left;
  float: left;
  line-height: 1.4;
  white-space: unset;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product.options .content .list .label:after {
  content: ":";
  display: inline-block;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product.options .content .list .values {
  float: left;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product-item-pricing {
  font-size: 14px;
  color: #696969;
  font-weight: 700;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product-item-pricing .price-container {
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product-item-pricing .details-qty {
  display: inline-flex;
  display: -webkit-inline-flex;
  text-align: center;
  vertical-align: middle;
  background-color: #f8f7f7;
  border-radius: 2px;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product-item-pricing .details-qty .edit-qty {
  width: 38px;
  display: inline-block;
  cursor: pointer;
  line-height: 4rem;
  font-size: 2.8rem;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product-item-pricing .details-qty .edit-qty.disabled {
  pointer-events: none;
  color: #ddd;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product-item-pricing .details-qty .edit-qty:hover {
  color: #295135;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .product-item-details .product-item-pricing .details-qty .item-qty {
  text-align: center;
  margin: 0 auto;
  background-color: #f8f7f7;
  color: #333;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
  font-weight: 700;
  width: 31px;
  padding: 0;
  line-height: 40px;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .actions {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 20px;
  color: #333;
  width: auto;
  margin-top: 5px;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item .actions:hover {
  color: #295135;
}
.block-cart-header .minicart-items-wrapper .minicart-items .product-item:hover .product-left .product-image-photo {
  border-color: #295135;
}
.block-cart-header .subtotal {
  padding-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3f2f1;
  display: inline-block;
  margin-bottom: 20px;
  width: 100%;
}
.block-cart-header .subtotal .label {
  color: #696969;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  text-align: left;
  display: block;
  float: left;
}
.block-cart-header .subtotal .amount.price-container {
  display: inline-block;
  text-align: right;
  float: right;
  line-height: 1;
}
.block-cart-header .subtotal .amount.price-container .price {
  font-size: 16px;
  font-weight: 700;
}
.block-cart-header .actions {
  float: left;
  width: 50%;
}
.block-cart-header .actions .primary,
.block-cart-header .actions .secondary {
  width: 100%;
}
.block-cart-header .actions .primary .action,
.block-cart-header .actions .secondary .action {
  width: 100%;
}
.block-cart-header .actions .primary {
  padding-right: 1rem;
}
.block-cart-header .actions .secondary {
  padding-left: 1rem;
}
.block-cart-header .loading-mask .loader img {
  width: 20px;
}
.nav-toggle {
  cursor: pointer;
}
.nav-toggle [class*="ion"] {
  font-size: 30px;
  color: #333;
}
.nav-toggle:hover [class*="ion"] {
  color: #295135;
}
.block-search .minisearch {
  position: relative;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #d8d5d5;
}
.block-search .minisearch .ion-ios-search-strong {
  display: none;
}
.block-search .minisearch .search-select,
.block-search .minisearch input.input-text,
.block-search .minisearch button {
  display: inline-block;
}
.block-search .minisearch .search-select {
  min-width: 150px;
  text-align: left;
  color: #696969;
  position: relative;
}
.block-search .minisearch .search-select > a {
  padding: 12.5px 10px;
  display: inline-block;
  width: 100%;
  position: relative;
  line-height: 1;
}
.block-search .minisearch .search-select > a:after {
  content: "";
  height: 15px;
  width: 1px;
  background-color: #f4f4f4;
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.block-search .minisearch .search-select #select-cat-dropdown {
  position: absolute;
  top: 100%;
  width: 100%;
  border: 1px solid #dadada;
  background-color: #fff;
  margin-top: 1px;
  padding: 5px 10px;
  font-size: 13px;
  text-transform: capitalize;
  max-height: 350px;
  overflow: auto;
  z-index: 99;
}
.block-search .minisearch .search-select #select-cat-dropdown span {
  cursor: pointer;
  display: block;
  padding: 5px 0;
  width: 100%;
}
.block-search .minisearch .search-select #select-cat-dropdown span:hover {
  color: #295135;
}
.block-search .minisearch .search-select.no-display {
  display: none;
}
.block-search .minisearch .input-text.form-control {
  border: none;
  box-shadow: none;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0;
}
.block-search .minisearch .btn-primary {
  background: none;
  border: none;
  color: #333;
  font-size: 18px;
  width: 30px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  margin: 0;
}
.block-search .minisearch .btn-primary:hover {
  color: #295135;
}
.block-search .minisearch .search-autocomplete {
  top: 100%;
  left: 0;
  width: 100% !important;
  background-color: #fff;
  padding: 5px 15px;
  min-height: 50px;
  margin-top: -14px;
}
.block-search .minisearch .search-autocomplete li {
  cursor: pointer;
}
.block-search .minisearch .search-autocomplete .amount {
  margin-left: 10px;
  color: #295135;
}
.block-search .btn-open-search {
  font-size: 24px;
  width: 30px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  color: #333;
  margin: 0;
  background: none;
  border: none;
}
.block-search .btn-open-search:hover {
  color: #295135;
}
.header .header-center {
  position: static;
}
.header .middle-header-container {
  position: relative;
}
.header .ui-widget-content.dropdown-menu {
  z-index: 1002;
}
.header .language,
.header .currency {
  display: inline-block;
  float: left;
}
.header .language .toggle,
.header .currency .toggle {
  display: inline-block;
  color: #ababab;
  font-size: 11px;
  text-transform: uppercase;
  padding: 10px 15px;
  cursor: pointer;
}
.header .language .toggle img,
.header .currency .toggle img {
  margin-right: 5px;
}
.header .language .toggle [class*="ion-"],
.header .currency .toggle [class*="ion-"] {
  margin-left: 5px;
}
.header .language .toggle:hover,
.header .currency .toggle:hover {
  color: #295135;
}
.header .language .toggle.active,
.header .currency .toggle.active {
  color: #295135;
}
.header .language .dropdown-menu,
.header .currency .dropdown-menu {
  border-top: 1px solid #295135;
  padding: 10px 15px;
}
.header .language .dropdown-menu ul li,
.header .currency .dropdown-menu ul li {
  padding: 5px 0;
  display: inline-block;
  float: left;
  width: 100%;
}
.header .language .dropdown-menu ul li a,
.header .currency .dropdown-menu ul li a {
  color: #696969;
  display: block;
  width: 100%;
}
.header .language .dropdown-menu ul li a:hover,
.header .currency .dropdown-menu ul li a:hover {
  color: #295135;
}
.header .language .dropdown-menu ul li.active a,
.header .currency .dropdown-menu ul li.active a {
  color: #295135;
}
.header .language .dropdown-menu a img,
.header .currency .dropdown-menu a img {
  margin-right: 10px;
}
.header .block-phone {
  max-width: 155px;
  margin-top: 8px;
}
.header .block-phone .phone-left,
.header .block-phone .icon-phone {
  display: inline-block;
}
.header .block-phone .phone-left {
  text-align: right;
  margin-right: 15px;
}
.header .block-phone .phone-left p:first-child {
  font-size: 12px;
  text-transform: uppercase;
  color: #696969;
  word-spacing: 0.2em;
  margin-bottom: 0;
}
.header .block-phone .phone-left p.h4 {
  font-size: 16px;
  color: #295135;
  font-weight: 700;
  margin-top: 2px;
}
.header .block-phone .icon-phone {
  font-size: 35px;
  color: #696969;
  line-height: 1.3;
  float: right;
  margin-right: 13px;
}
.top-bar-abs {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  z-index: 1000;
  display: block;
  background: #fff;
  padding: 40px 40px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -o-transform: translateX(100%);
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.top-bar-abs .nav-toggle-close {
  font-size: 30px;
  text-align: center;
  margin: 0 auto 0;
  display: block;
  width: 50px;
  cursor: pointer;
  color: #333;
}
.top-bar-abs .nav-toggle-close:hover {
  color: #295135;
}
.top-bar-abs button.nav-toggle-close {
  display: none;
}
.top-bar-abs .welcome {
  background: url('../images/bg-wellcome.png') no-repeat scroll center center;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 0 auto 30px;
  padding: 30px 0 30px;
}
.top-bar-abs .welcome span {
  max-width: 25px;
  margin: 0 auto;
}
.top-bar-abs .language-current {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
.top-bar-abs .language-current .language,
.top-bar-abs .language-current .currency {
  float: none;
}
.top-bar-abs .top-links {
  text-align: left;
}
.top-bar-abs .top-links li {
  width: 100%;
}
.top-bar-abs .top-links li a {
  display: inline-block;
  width: 100%;
  padding: 7px 10px;
  font-size: 14px;
  color: #ababab;
  font-weight: 700;
  text-transform: uppercase;
}
.top-bar-abs .top-links li a:hover {
  color: #295135;
}
.top-bar-abs .top-links li.compare .counter {
  display: none;
}
.top-bar-abs .block-search {
  margin-top: 30px;
  text-align: center;
}
.top-bar-abs .block-search .minisearch {
  width: 100%;
  border-bottom: 1px solid #eee;
  text-align: center;
  margin: 0 auto;
}
.top-bar-abs .block-search .minisearch .search-select {
  width: 100%;
  border-bottom: 1px solid #eee;
}
.top-bar-abs .block-search .minisearch .form-group {
  width: 100%;
}
.top-bar-abs .block-search .minisearch input.form-control {
  height: 40px;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: calc(100% - 30px);
  float: left;
  font-size: 24px;
  color: #ababab;
}
.top-bar-abs .block-search .minisearch .btn-primary {
  font-size: 30px;
  background: none;
  width: 30px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  margin: 0;
  border: none;
}
.top-bar-abs .block-search .minisearch .search-autocomplete {
  margin-bottom: 10px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.175);
}
.top-bar-abs.show {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.header1 .navigation .nav-main > li a,
.header5 .navigation .nav-main > li a,
.header6 .navigation .nav-main > li a {
  padding-top: 2.9rem;
  padding-bottom: 2.9rem;
}
.header1 .middle-header-container,
.header5 .middle-header-container,
.header6 .middle-header-container {
  width: 100%;
  background-color: #fff;
}
.header1 .middle-header-container .container-fluid,
.header5 .middle-header-container .container-fluid,
.header6 .middle-header-container .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
.header1 .logo,
.header5 .logo,
.header6 .logo {
  padding: 1.5rem;
  text-align: left;
  display: block;
}
.header1 .box-topbar,
.header5 .box-topbar,
.header6 .box-topbar {
  float: right;
}
.header1 .box-topbar .block-cart-header,
.header5 .box-topbar .block-cart-header,
.header6 .box-topbar .block-cart-header,
.header1 .box-topbar .nav-toggle,
.header5 .box-topbar .nav-toggle,
.header6 .box-topbar .nav-toggle {
  display: inline-block;
  float: right;
  line-height: 1;
  margin-left: 20px;
}
.header1 .box-topbar .block-cart-header .showcart,
.header5 .box-topbar .block-cart-header .showcart,
.header6 .box-topbar .block-cart-header .showcart {
  padding-top: 25px;
  padding-bottom: 25px;
  display: block;
}
.header1 .box-topbar .nav-toggle,
.header5 .box-topbar .nav-toggle,
.header6 .box-topbar .nav-toggle {
  padding-top: 25px;
  padding-bottom: 25px;
}
.header1 .currency .dropdown-menu,
.header5 .currency .dropdown-menu,
.header6 .currency .dropdown-menu {
  right: 0;
  left: auto;
}
.header1.header-sticky-menu .logo img,
.header5.header-sticky-menu .logo img,
.header6.header-sticky-menu .logo img {
  height: auto;
  width: 100%;
}
.header1.header-sticky-menu .middle-header-container,
.header5.header-sticky-menu .middle-header-container,
.header6.header-sticky-menu .middle-header-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.175);
}
.header1.header-sticky-menu .middle-header-container .logo,
.header5.header-sticky-menu .middle-header-container .logo,
.header6.header-sticky-menu .middle-header-container .logo {
  padding: 10px 0;
}
.header1.header-sticky-menu .middle-header-container .navigation .nav-main > li > a,
.header5.header-sticky-menu .middle-header-container .navigation .nav-main > li > a,
.header6.header-sticky-menu .middle-header-container .navigation .nav-main > li > a {
  padding: 18px 15px 17px;
}
.header1.header-sticky-menu .middle-header-container .box-topbar .block-cart-header .showcart,
.header5.header-sticky-menu .middle-header-container .box-topbar .block-cart-header .showcart,
.header6.header-sticky-menu .middle-header-container .box-topbar .block-cart-header .showcart,
.header1.header-sticky-menu .middle-header-container .box-topbar .nav-toggle,
.header5.header-sticky-menu .middle-header-container .box-topbar .nav-toggle,
.header6.header-sticky-menu .middle-header-container .box-topbar .nav-toggle {
  padding-top: 15px;
  padding-bottom: 14px;
}
.header1 .top-header-links span.h4,
.header5 .top-header-links span.h4,
.header6 .top-header-links span.h4,
.header1 .box-social-header span.h4,
.header5 .box-social-header span.h4,
.header6 .box-social-header span.h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: 15px;
  margin-left: -40px;
  border-left: 2px solid #295135;
  padding-left: 42px;
  color: #333;
  line-height: 1;
  display: block;
}
.header1 .top-header-links,
.header5 .top-header-links,
.header6 .top-header-links {
  padding-bottom: 20px;
}
.header1 .box-social-header,
.header5 .box-social-header,
.header6 .box-social-header {
  margin: 0 -40px;
  border-top: 1px solid #f4f4f4;
  padding: 30px 0;
  margin-bottom: 30px;
}
.header1 .box-social-header span.h4,
.header5 .box-social-header span.h4,
.header6 .box-social-header span.h4 {
  padding: 0 42px 0 40px;
  margin: 0;
  margin-bottom: 30px;
}
.header1 .box-social-header .block-social-header,
.header5 .box-social-header .block-social-header,
.header6 .box-social-header .block-social-header {
  padding: 0 40px;
}
.header1 .box-social-header .block-social-header ul li,
.header5 .box-social-header .block-social-header ul li,
.header6 .box-social-header .block-social-header ul li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.header1 .box-social-header .block-social-header ul li a,
.header5 .box-social-header .block-social-header ul li a,
.header6 .box-social-header .block-social-header ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  display: inline-block;
  padding-left: 3px;
  border: 1px solid #f4f4f4;
  border-radius: 50%;
  text-align: center;
  color: #696969;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.header1 .box-social-header .block-social-header ul li a:hover,
.header5 .box-social-header .block-social-header ul li a:hover,
.header6 .box-social-header .block-social-header ul li a:hover {
  color: #fff;
  background-color: #295135;
  border-color: #295135;
}
.header1 .box-social-header .block-social-header ul li:hover a,
.header5 .box-social-header .block-social-header ul li:hover a,
.header6 .box-social-header .block-social-header ul li:hover a {
  background-color: #295135;
  color: #fff;
}
.header .logo-sticky {
  display: none;
}
.header.header-sticky-menu .hidden-logo {
  display: none;
}
.header.header-sticky-menu .logo-sticky {
  display: block;
  padding: 0;
}
.header.header-sticky-menu .logo-sticky img {
  max-height: 49px;
  width: auto !important;
}
.header:not(.header1) .navigation .nav-main > li > a {
  padding: 16px 26px 16px;
  letter-spacing: 0.04em;
}
.header:not(.header1) .navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content {
  padding: 20px 30px 30px;
}
.header:not(.header1).header-sticky-menu .logo {
  position: fixed;
  top: 0;
  z-index: 1000;
}
.header:not(.header1).header-sticky-menu .logo img {
  max-height: 50px;
  width: auto !important;
}
.header2 .middle-header-container {
  padding-top: 50px;
  padding-bottom: 34px;
  border-bottom: 1px solid #f4f4f4;
  text-align: center;
}
.header2 .middle-header-container .logo {
  display: inline-block;
  float: none;
  width: 100%;
}
.header2 .nav-header-container {
  position: relative;
  text-align: center;
}
.header2 .nav-header-container .navigation,
.header2 .nav-header-container .block-search,
.header2 .nav-header-container .block-cart-header,
.header2 .nav-header-container .account-dropdown,
.header2 .nav-header-container .language {
  display: inline-block;
  float: none;
  width: auto;
}
.header2 .nav-header-container .nav-header-content {
  position: relative;
  max-height: 60px;
}
.header2 .block-cart-header {
  position: relative;
}
.header2 .block-cart-header .showcart .box-shopbag .icon-cart {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.header2 .block-cart-header .showcart .box-shopbag .icon-cart [class*="ion"] {
  font-size: 18px;
  line-height: 1;
}
.header2 .block-cart-header .dropdown-menu {
  right: 0;
  left: auto;
}
.header2 .language:before,
.header2 .block-cart-header:before,
.header2 .account-dropdown:before,
.header2 .currency:before {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  background-color: #eeeff0;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.header2 .currency {
  float: none;
}
.header2.header-sticky-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  box-shadow: 6px 0 12px rgba(0, 0, 0, 0.175);
}
.header2.header-sticky-menu .middle-header-container {
  position: fixed;
  top: 0;
  padding: 0;
  width: auto;
  border: none;
}
.header2.header-sticky-menu .middle-header-container .logo {
  position: absolute;
  left: 0 !important;
}
.header2.header-sticky-menu .nav-header-container .language,
.header2.header-sticky-menu .nav-header-container .currency,
.header2.header-sticky-menu .nav-header-container .account-dropdown {
  display: none;
}
.header2 .navigation .nav-main > li > a {
  color: #696969;
}
.header2 .navigation .nav-main > li > a:hover {
  color: #295135;
}
.header2 .block-search,
.header3 .block-search,
.header4 .block-search {
  position: relative;
}
.header2 .block-search .btn-open-search,
.header3 .block-search .btn-open-search,
.header4 .block-search .btn-open-search {
  display: inline-block;
  height: 58px;
  line-height: 54px;
  z-index: 10;
  text-align: left;
}
.header2 .block-search .dropdown-menu,
.header3 .block-search .dropdown-menu,
.header4 .block-search .dropdown-menu {
  margin: 0;
  right: 0;
  left: auto;
  width: 360px;
  border-top: 1px solid #295135;
}
.header2 .block-search .minisearch,
.header3 .block-search .minisearch,
.header4 .block-search .minisearch {
  display: inline-block;
  width: 100%;
  z-index: 9;
  background-color: #fff;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  padding: 15px;
  width: 360px;
}
.header2 .block-search .minisearch .form-search,
.header3 .block-search .minisearch .form-search,
.header4 .block-search .minisearch .form-search {
  border: 1px solid #d5d5d5;
}
.header2 .block-search .minisearch .search-select,
.header3 .block-search .minisearch .search-select,
.header4 .block-search .minisearch .search-select {
  width: 100%;
  border-bottom: 1px solid #f4f4f4;
}
.header2 .block-search .minisearch .search-select > a:after,
.header3 .block-search .minisearch .search-select > a:after,
.header4 .block-search .minisearch .search-select > a:after {
  display: none;
}
.header2 .block-search .minisearch .input-text,
.header3 .block-search .minisearch .input-text,
.header4 .block-search .minisearch .input-text {
  width: 100%;
}
.header2 .block-search .minisearch .btn-primary,
.header3 .block-search .minisearch .btn-primary,
.header4 .block-search .minisearch .btn-primary {
  position: absolute;
  right: 20px;
  bottom: 15px;
}
.header2 .account-dropdown,
.header4 .account-dropdown {
  position: relative;
}
.header2 .account-dropdown .top-links-trigger,
.header4 .account-dropdown .top-links-trigger {
  font-size: 18px;
  color: #696969;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 12px;
  margin-bottom: 16px;
  display: block;
}
.header2 .account-dropdown .top-links-trigger:hover,
.header4 .account-dropdown .top-links-trigger:hover {
  color: #295135;
}
.header2 .account-dropdown .dropdown-menu,
.header4 .account-dropdown .dropdown-menu {
  border-top: 1px solid #295135;
  padding: 10px 15px;
  right: 0;
  left: auto;
}
.header2 .account-dropdown .dropdown-menu li a,
.header4 .account-dropdown .dropdown-menu li a {
  padding: 5px 0;
  display: inline-block;
  width: 100%;
}
.header2 .language,
.header4 .language,
.header2 .currency,
.header4 .currency {
  position: relative;
}
.header2 .language .toggle,
.header4 .language .toggle,
.header2 .currency .toggle,
.header4 .currency .toggle {
  padding-top: 18px;
  padding-bottom: 19px;
}
.header2 .language .toggle .text,
.header4 .language .toggle .text,
.header2 .currency .toggle .text,
.header4 .currency .toggle .text {
  display: none;
}
.header2 .language .toggle img,
.header4 .language .toggle img,
.header2 .currency .toggle img,
.header4 .currency .toggle img {
  margin-top: -6px;
  margin-right: 0;
}
.header2 .language .dropdown-menu,
.header4 .language .dropdown-menu,
.header2 .currency .dropdown-menu,
.header4 .currency .dropdown-menu {
  right: 0;
  left: auto;
}
.header3 .top-bar {
  background-color: #444;
  color: #ababab;
  max-height: 40px;
  font-size: 14px;
  line-height: 1;
}
.header3 .top-bar .container-fluid {
  padding-left: 100px;
  padding-right: 100px;
}
.header3 .top-bar .language,
.header3 .top-bar .currency,
.header3 .top-bar .top-links {
  display: inline-block;
  float: right;
}
.header3 .top-bar .language .toggle,
.header3 .top-bar .currency .toggle {
  font-size: 14px;
  line-height: 1;
  padding: 12px 7px 14px;
  text-transform: none;
}
.header3 .top-bar .language .toggle [class*="ion-"],
.header3 .top-bar .currency .toggle [class*="ion-"] {
  margin-left: 0;
  margin-right: 5px;
}
.header3 .top-bar .language .dropdown-menu ul li,
.header3 .top-bar .currency .dropdown-menu ul li {
  padding: 5px 0;
}
.header3 .top-bar .currency .toggle {
  font-weight: bold;
}
.header3 .top-bar .currency .toggle:before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 3px;
  height: 3px;
  background-color: #ccc;
  border-radius: 50%;
  margin-bottom: 2px;
}
.header3 .top-bar .top-links {
  position: relative;
  margin-left: 7px;
}
.header3 .top-bar .top-links:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #696969;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.header3 .top-bar .top-links li {
  display: inline-block;
  float: right;
}
.header3 .top-bar .top-links li.compare,
.header3 .top-bar .top-links li.wishlist {
  display: none;
}
.header3 .top-bar .top-links li a {
  color: #ababab;
  padding: 12px 7px 14px;
  line-height: 1;
  display: inline-block;
}
.header3 .top-bar .top-links li a:after {
  content: "";
  display: inline-block;
  margin-left: 12px;
  width: 3px;
  height: 3px;
  background-color: #ccc;
  border-radius: 50%;
}
.header3 .top-bar .top-links li a:hover {
  color: #295135;
}
.header3 .top-bar .top-links li a.my-account {
  padding-right: 0;
}
.header3 .top-bar .top-links li a.my-account:after {
  display: none;
}
.header3 .top-bar .top-links li:last-child a {
  padding-left: 15px;
}
.header3 .middle-header-container {
  padding: 48px 0 34px;
  border-bottom: 1px solid #f4f4f4;
}
.header3 .nav-header-container {
  text-align: center;
}
.header3 .nav-header-container .navigation,
.header3 .nav-header-container .block-search {
  display: inline-block;
  width: auto;
}
.header3.header-sticky-menu .nav-header-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  box-shadow: 6px 0 12px rgba(0, 0, 0, 0.175);
}
.header3.header-sticky-menu .nav-header-container .block-search {
  display: none;
}
.header3.header-sticky-menu .middle-header-container .block-cart-header {
  position: fixed;
  z-index: 1001;
  top: 0;
}
.header3 .box-shopbag {
  max-height: 60px;
}
.header3 .block-cart-header,
.header4 .block-cart-header {
  float: right;
}
.header3 .block-cart-header .showcart .box-shopbag .icon-cart,
.header4 .block-cart-header .showcart .box-shopbag .icon-cart {
  margin-right: 20px;
}
.header3 .block-cart-header .showcart .box-shopbag .icon-cart [class*="ion"],
.header4 .block-cart-header .showcart .box-shopbag .icon-cart [class*="ion"] {
  font-size: 35px;
  color: #696969;
}
.header3 .block-cart-header .showcart .box-shopbag .icon-cart .count,
.header4 .block-cart-header .showcart .box-shopbag .icon-cart .count {
  top: 13px;
  right: -10px;
}
.header3 .block-cart-header .showcart .box-shopbag .title-cart,
.header4 .block-cart-header .showcart .box-shopbag .title-cart {
  display: inline-block;
}
.header3 .block-cart-header .showcart .box-shopbag .title-cart span,
.header4 .block-cart-header .showcart .box-shopbag .title-cart span {
  display: block;
  line-height: 1.6;
}
.header3 .block-cart-header .showcart .box-shopbag .title-cart .text,
.header4 .block-cart-header .showcart .box-shopbag .title-cart .text {
  font-size: 12px;
  text-transform: uppercase;
  color: #696969;
  line-height: 1;
}
.header3 .block-cart-header .showcart .box-shopbag .title-cart .price,
.header4 .block-cart-header .showcart .box-shopbag .title-cart .price {
  font-size: 16px;
  color: #696969;
  font-weight: 700;
}
.header3 .nav-header-container,
.header4 .nav-header-container {
  position: relative;
}
.header3 .nav-header-container .row > .col-md-12,
.header4 .nav-header-container .row > .col-md-12 {
  position: static;
}
.top-links li.compare .counter,
.top-links li.wishlist .counter {
  font-size: 12px;
}
.top-links li.compare .counter:after,
.top-links li.wishlist .counter:after {
  content: " )";
  display: inline-block;
}
.top-links li.compare .counter:before,
.top-links li.wishlist .counter:before {
  content: "( ";
  display: inline-block;
}
.header4 {
  z-index: 2;
}
.header4 .account-dropdown .top-links-trigger {
  padding-top: 1px;
  margin-bottom: 14px;
}
.header4 .currency .toggle img {
  margin-top: -7px;
}
.header4 .middle-header-container {
  padding: 45px 0 40px;
}
.header4 .nav-header-container .nav-header-content {
  background-color: #333;
  text-align: center;
  max-height: 60px;
  position: relative;
}
.header4 .navigation {
  width: auto;
  display: inline-block;
  float: none;
}
.header4 .navigation .nav-main > li > a {
  color: #fff;
}
.header4 .navigation .nav-main > li > a:hover {
  color: #295135;
}
.header4 .block-search,
.header4 .account-dropdown,
.header4 .language,
.header4 .currency {
  display: inline-block;
  float: none;
  width: auto;
}
.header4 .language .toggle {
  padding-bottom: 17px;
}
.header4 .currency .toggle {
  padding-bottom: 16px;
}
.header4 .block-search .btn-open-search {
  color: #fff;
  height: 55px;
  line-height: 52px;
}
.header4 .block-search .btn-open-search:hover {
  color: #295135;
}
.header4 .block-search .dropdown-menu {
  border-top: 1px solid #295135;
}
.header4 .block-search .minisearch {
  top: 100%;
  padding: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  width: 360px;
  right: 0;
}
.header4 .account-dropdown .top-links-trigger {
  color: #fff;
}
.header4 .currency .toggle span {
  font-size: 14px;
}
.header4 .block-phone {
  padding-top: 11px;
  margin-left: 20px;
}
.header4 .block-cart-header {
  float: none;
  text-align: center;
  padding-left: 23px;
}
.header4 .block-cart-header .showcart .box-shopbag {
  padding-top: 25px;
}
.header4 .block-cart-header .showcart .box-shopbag .icon-cart {
  line-height: 1;
  margin-top: 0;
  margin-right: 12px;
}
.header4 .block-cart-header .showcart .box-shopbag .icon-cart .count {
  top: -2px;
  right: -11px;
}
.header4.header-sticky-menu .middle-header-container {
  height: 0;
  padding: 0;
}
.header4.header-sticky-menu .nav-header-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.175);
  z-index: 1001;
  background-color: #fff;
}
.header4.header-sticky-menu .nav-header-container .nav-header-content {
  background-color: #fff;
}
.header4.header-sticky-menu .block-search,
.header4.header-sticky-menu .account-dropdown,
.header4.header-sticky-menu .language,
.header4.header-sticky-menu .currency,
.header4.header-sticky-menu .block-phone {
  display: none;
}
.header4.header-sticky-menu .navigation .nav-main > li > a {
  color: #333;
}
.header4.header-sticky-menu .navigation .nav-main > li > a:hover {
  color: #295135;
}
.header4.header-sticky-menu .block-cart-header {
  position: fixed;
  top: 0;
  z-index: 1002;
}
.header4.header-sticky-menu .block-cart-header .showcart .box-shopbag {
  padding-top: 0;
}
.header4.header-sticky-menu .block-cart-header .showcart .box-shopbag .icon-cart [class*="ion-"] {
  line-height: 54px;
}
.header4.header-sticky-menu .block-cart-header .showcart .box-shopbag .icon-cart .count {
  top: 10px;
}
.header5 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header5 .top-bar-abs .language-current .account-dropdown {
  display: inline-block;
  position: relative;
}
.header5 .top-bar-abs .language-current .account-dropdown .top-links-trigger {
  display: inline-block;
  padding: 10px 15px;
  color: #696969;
}
.header5 .top-bar-abs .language-current .account-dropdown .top-links-trigger:hover {
  color: #295135;
}
.header5 .top-bar-abs .language-current .account-dropdown .dropdown-menu {
  border-top: 1px solid #295135;
  padding: 10px 15px;
  right: 0;
  left: auto;
}
.header5 .top-bar-abs .language-current .account-dropdown .dropdown-menu ul li {
  display: inline-block;
  float: left;
  padding: 5px 0;
  width: 100%;
}
.header5 .top-bar-abs .language-current .account-dropdown .dropdown-menu ul li a {
  color: #696969;
  display: block;
  width: 100%;
  text-transform: none;
  font-weight: 400;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.header5 .top-bar-abs .language-current .account-dropdown .dropdown-menu ul li a:hover {
  color: #295135;
}
.header5 .top-bar-abs .navigation {
  padding: 0;
}
.header5 .top-bar-abs .navigation .nav-main {
  text-align: left;
}
.header5 .top-bar-abs .navigation .nav-main > li {
  float: left;
  width: 100%;
  position: relative;
}
.header5 .top-bar-abs .navigation .nav-main > li a {
  padding: 5px !important;
  position: relative;
  color: #ababab;
}
.header5 .top-bar-abs .navigation .nav-main > li a:hover {
  color: #295135;
}
.header5 .top-bar-abs .navigation .nav-main > li a.level0 .icon-next {
  display: none;
}
.header5 .top-bar-abs .navigation .nav-main > li .toggle-menu a {
  color: #333;
}
.header5 .top-bar-abs .navigation .nav-main > li .toggle-menu a:hover {
  color: #295135;
}
.header5 .top-bar-abs .navigation .nav-main > li > a {
  color: #333;
}
.header5 .top-bar-abs .navigation .nav-main > li > a:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1px;
  vertical-align: middle;
  margin-right: 10px;
  background-color: #333;
}
.header5 .top-bar-abs .navigation .nav-main > li > a:hover:before {
  background-color: #295135;
}
.header5 .top-bar-abs .navigation .nav-main li.dropdown .dropdown-menu {
  position: relative;
  opacity: 1;
  visibility: visible;
  display: none;
  border-top: none;
  box-shadow: none;
  float: left;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transition-property: none;
  -webkit-transition-property: none;
  -moz-transition-property: none;
  -ms-transition-property: none;
  padding-left: 20px;
  min-width: 100%;
}
.header5 .top-bar-abs .navigation .nav-main li.dropdown .dropdown-menu:hover {
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
}
.header5 .top-bar-abs .navigation .nav-main li.dropdown .dropdown-menu li ul li {
  float: left;
  width: 100%;
}
.header5 .top-bar-abs .navigation .nav-main li.dropdown .dropdown-menu li ul li a {
  padding: 5px 0;
  border: none;
}
.header5 .top-bar-abs .navigation .nav-main li.dropdown .dropdown-menu li ul li a:before,
.header5 .top-bar-abs .navigation .nav-main li.dropdown .dropdown-menu li ul li a:after {
  display: none !important;
}
.header5 .top-bar-abs .navigation .nav-main li.dropdown .dropdown-menu li ul li .dropdown-menu {
  position: relative;
  left: 0;
  display: none;
  top: 0;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transition-property: none;
  padding-left: 10px;
}
.header5 .top-bar-abs .navigation .nav-main li.dropdown .dropdown-menu li ul li .toggle-menu a {
  font-size: 14px;
  color: #333;
  padding: 0;
  width: 40px;
  height: 35px;
  line-height: 35px;
  text-align: right;
  padding-left: 30px !important;
}
.header5 .top-bar-abs .navigation .nav-main li.dropdown .dropdown-menu li ul li .toggle-menu a:hover {
  color: #295135;
}
.header5 .top-bar-abs .navigation .nav-main li.mega-menu-fullwidth {
  position: relative;
}
.header5 .top-bar-abs .navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content {
  padding: 0 15px !important;
}
.header5 .top-bar-abs .navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content [class*="col-"] {
  width: 100%;
  float: left;
  padding: 0;
}
.header5 .top-bar-abs .navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content .sub-menu img {
  max-width: 100%;
}
.header5 .top-bar-abs .navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content .sub-menu li.level1 > a {
  font-size: 13px;
  font-weight: 600;
}
.header5 .top-bar-abs .navigation .nav-main li.mega-menu-fullwidth .dropdown-menu .mega-menu-content .sub-menu .sub-menu {
  display: none;
}
.header5 .top-bar-abs .navigation .nav-main .toggle-menu {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block !important;
}
.header5 .top-bar-abs .navigation .nav-main .toggle-menu a {
  width: 40px;
  height: 35px;
  padding: 0 !important;
  text-align: right;
  display: inline-block;
  line-height: 35px;
  font-size: 13px;
}
.header5 .top-bar-abs .navigation .nav-main .toggle-menu a .fa-minus {
  display: none;
}
.header5 .top-bar-abs .navigation .nav-main .toggle-menu a.active .fa-minus {
  display: inline-block;
}
.header5 .top-bar-abs .navigation .nav-main .toggle-menu a.active .fa-plus {
  display: none;
}
.header5 .middle-header-container {
  background: transparent;
}
.header5.header-sticky-menu .middle-header-container {
  background-color: #fff;
}
.header5.header-sticky-menu .logo {
  left: auto !important;
}
.header5 .block-cart-header .showcart .box-shopbag .icon-cart .count {
  top: 0;
}
.cms-home .header5:not(.header-sticky-menu) .middle-header-container .navigation {
  display: none;
}
body:not(.cms-home) .header.header5:not(.header-sticky-menu) {
  position: relative;
}
body:not(.cms-home) .header.header5:not(.header-sticky-menu) .navigation .nav-main > li > a {
  padding-top: 40px;
  padding-bottom: 35px;
}
.top-panel .btn-group {
  z-index: 1200;
}
.block-newsletter-ft {
  position: relative;
  display: block;
}
.block-newsletter-ft img {
  max-width: inherit;
}
.block-newsletter-ft .box-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.block-newsletter-ft .box-text h4 {
  font-size: 34px;
  line-height: 1.4;
  color: #333;
  font-weight: 700;
  margin-top: 13px;
}
.block-newsletter-ft .box-text .subscribe {
  display: inline-block;
  width: 100%;
  border-radius: 5px;
  line-height: 45px;
  padding: 0;
  text-align: center;
}
.block-newsletter-ft .box-text .subscribe .field,
.block-newsletter-ft .box-text .subscribe .actions {
  display: inline-block;
  float: left;
}
.block-newsletter-ft .box-text .subscribe .actions {
  width: 200px;
  margin-left: 0;
}
.block-newsletter-ft .box-text .subscribe .field {
  width: calc(100% - 200px);
  display: inline-block;
  position: inherit;
}
.block-newsletter-ft .box-text .subscribe .field .input-text {
  width: 100%;
  box-shadow: none;
  border: 1px solid #fff;
  -webkit-box-shadow: none;
  transition: all 0.4s ease 0s;
  margin-bottom: 20px;
  background-color: #fff;
}
.block-newsletter-ft .box-text .subscribe .field .input-text .mage-error {
  border-color: red;
}
.block-newsletter-ft .box-text .subscribe .field .input-text .mage-error:focus {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(241, 0, 34, 0.6);
}
.block-newsletter-ft .box-text .subscribe .field .input-text:placeholder {
  color: #ababab;
}
.block-newsletter-ft .box-text .subscribe .field .input-text::-webkit-input-placeholder {
  color: #ababab;
}
.block-newsletter-ft .box-text .subscribe .field .input-text::-moz-placeholder {
  color: #ababab;
}
.block-newsletter-ft .box-text .subscribe .field #newsletter-error {
  position: absolute;
  bottom: 0;
  line-height: 1;
  font-size: 14px;
}
.block-newsletter-ft .box-text .content {
  padding-top: 40px;
}
.block-newsletter-ft .box-text .subscribe .field .input-text::placeholder {
  color: #ababab;
}
.block-newsletter-ft .box-text .subscribe .field .input-text::-webkit-input-placeholder {
  color: #ababab;
}
.block-newsletter-ft .box-text .subscribe .field .input-text::-ms-input-placeholder {
  color: #ababab;
}
.color-default {
  color: #295135;
}
.footer .block-contact {
  margin-bottom: 0;
}
.footer .block-contact ul li {
  font-size: 14px;
  color: #696969;
  display: inline-block;
  width: 100%;
  line-height: 1.2;
  margin: 10px 0;
  position: relative;
  padding-left: 35px;
}
.footer .block-contact ul li span {
  display: inline-block;
}
.footer .block-contact ul li > span:first-child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
  display: inline-block;
}
.footer .block-contact ul li > span:first-child [class*="ion-"] {
  font-size: 18px;
  color: #ababab;
  margin-right: 20px;
}
.footer .block-contact ul li:last-child {
  padding-top: 0;
}
.footer .block-contact a {
  color: #696969;
}
.footer .block-contact a:hover {
  color: #295135;
}
.footer .block-contact .color-default {
  color: #295135;
}
.footer .block-contact .color-default:hover {
  color: #333;
}
.footer .block-info ul li,
.footer .block-account ul li,
.footer .block-location ul li {
  display: inline-block;
  width: 100%;
}
.footer .block-info ul li a,
.footer .block-account ul li a,
.footer .block-location ul li a {
  color: #696969;
  font-size: 14px;
  padding: 10px 0;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  display: inline-block;
  width: 100%;
  position: relative;
  line-height: 1.15;
}
.footer .block-info ul li a:before,
.footer .block-account ul li a:before,
.footer .block-location ul li a:before {
  content: "";
  display: inline-block;
  width: 7px;
  background: #696969;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  position: absolute;
  left: 0;
  top: 50%;
}
.footer .block-info ul li a:hover,
.footer .block-account ul li a:hover,
.footer .block-location ul li a:hover {
  padding-left: 20px;
  color: #295135;
}
.footer .block-info ul li a:hover:before,
.footer .block-account ul li a:hover:before,
.footer .block-location ul li a:hover:before {
  opacity: 1;
  visibility: visible;
}
.footer .block-info ul li:first-child,
.footer .block-account ul li:first-child,
.footer .block-location ul li:first-child {
  padding-top: 0;
}
.footer .block-info ul li:last-child,
.footer .block-account ul li:last-child,
.footer .block-location ul li:last-child {
  padding-bottom: 0;
}
.footer .block-social ul li {
  display: inline-block;
  margin-right: 8px;
  position: relative;
}
.footer .block-social ul li:last-child {
  margin-right: 0;
}
.footer .block-social ul li a {
  background-color: transparent;
  height: 50px;
  width: 50px;
  line-height: 0;
  font-size: 0;
  color: #333;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.footer .block-social ul li a:hover {
  background-color: #295135;
  color: #fff;
  border-color: #295135;
}
.footer .block-social ul li a .ion-social-facebook {
  font-size: 16px;
}
.footer .block-social ul li a em:before {
  font-size: 30px;
  line-height: 50px;
}
footer h4 {
  color: #333;
  text-transform: capitalize;
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.footer1 .top-footer {
  display: block;
}
.footer1 .middle-footer {
  padding-top: 7px;
  padding-bottom: 12px;
}
.footer1 .bottom-footer .bottom-ft-container {
  border-top: 2px solid #f4f4f4;
  padding-top: 15px;
  padding-bottom: 15px;
}
address {
  margin: 0;
  line-height: 1.8;
}
.footer-links {
  float: right;
}
.footer-links li {
  display: inline-block;
  text-align: left;
}
.footer-links li a {
  text-transform: capitalize;
  color: #696969;
  margin-left: 10px;
  letter-spacing: 0.05em;
}
.footer-links li a:hover {
  color: #295135;
}
.footer-links li:first-child a {
  margin-left: 0;
}
.block-flickr a {
  display: inline-block;
  float: left;
  margin-left: 15px;
  margin-bottom: 15px;
}
.block-flickr a.last {
  margin-left: 0;
  clear: left;
}
.block-flickr a:hover {
  opacity: 0.5;
}
@media (min-width: 1200px) {
  .footer1 .block-flickr {
    padding-left: 98px;
  }
}
body:not(.cms-home):not(.checkout-index-index) .block-newsletter-ft {
  margin-top: 90px;
}
body:not(.cms-home):not(.checkout-index-index) .footer2 {
  padding-top: 100px;
}
.footer2 address {
  color: #696969;
  line-height: 1.2;
}
.footer2 .top-footer {
  background-color: #333;
  color: #fff;
  padding-top: 35px;
  padding-bottom: 25px;
}
.footer2 .block-follow-instagram p {
  font-size: 18px;
  text-transform: uppercase;
  opacity: 0.6;
  letter-spacing: 0.3em;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 15px;
}
.footer2 .block-follow-instagram a.user-instagram {
  opacity: 1;
  font-size: 18px;
  text-transform: none;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: 300;
  color: #fff;
}
.footer2 .block-follow-instagram a.user-instagram:hover {
  color: #295135;
}
.footer2 .middle-footer {
  background: url('../images/bg-flower.png') no-repeat scroll top center;
}
.footer2 .middle-footer .middle-footer-content {
  border-bottom: 2px solid #f4f4f4;
}
.footer2 .middle-footer .block-newsletter-flower {
  padding-top: 329px;
  padding-bottom: 110px;
  display: block;
  text-align: center;
}
.footer2 .middle-footer .block-newsletter-flower .title-block {
  padding: 0;
  margin: 0;
  background: none;
}
.footer2 .middle-footer .block-newsletter-flower .title-block h4 {
  font-size: 24px;
  color: #333;
  margin-bottom: 37px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.footer2 .middle-footer .block-newsletter-flower .form.subscribe .input-text {
  max-width: 570px;
  margin: 0 auto 13px;
  background-color: #f8f7f7;
  color: #ababab;
  text-align: center;
  box-shadow: none;
  border: none;
}
.footer2 .middle-footer .block-newsletter-flower .form.subscribe button.btn {
  margin-top: 18px;
}
.footer2 .bottom-footer .block-social ul {
  float: right;
}
.footer2 .bottom-footer {
  padding-top: 40px;
  padding-bottom: 45px;
}
.header.header6 .block-social-header-2 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.header.header6 .block-social-header-2 ul li {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
}
.header.header6 .block-social-header-2 ul li a {
  font-size: 20px;
  color: #ccc;
  display: block;
}
.header.header6 .block-social-header-2 ul li a:hover {
  color: #295135;
}
.header.header6 .middle-header-container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header.header6 .middle-header-container .container-fluid {
  padding-left: 100px;
  padding-right: 100px;
}
.header.header6 .middle-header-container .header-center {
  position: relative;
}
.header.header6 .middle-header-container .logo {
  text-align: center;
}
.header.header6 .middle-header-container .logo img {
  margin: 0 auto;
}
.header.header6 .middle-header-container .col-md-5 {
  position: static;
}
.header.header6 .main-menu-left.navigation .nav-main > li {
  float: right;
}
.header.header6 .main-menu-left.navigation .nav-main > li:first-child a {
  padding-right: 23px;
}
.header.header6 .main-menu-right.navigation .nav-main > li {
  float: left;
}
.header.header6 .main-menu-right.navigation .nav-main > li:first-child a {
  padding-left: 23px;
}
.header.header6 .navigation {
  display: flex;
}
.header.header6 .navigation .nav-main > li > a {
  padding: 40px 23px 35px;
  color: #fff;
}
.header.header6 .navigation .nav-main > li > a:hover {
  color: #295135;
}
.header.header6 .block-cart-header .showcart .box-shopbag .icon-cart [class*="ion"] {
  color: #fff;
}
.header.header6 .block-cart-header .showcart .box-shopbag .icon-cart [class*="ion"]:hover {
  color: #295135;
}
.header.header6 .nav-toggle [class*="ion"] {
  color: #fff;
}
.header.header6 .nav-toggle [class*="ion"]:hover {
  color: #295135;
}
.header.header6.header-sticky-menu .middle-header-container {
  background-color: #fff;
}
.header.header6.header-sticky-menu .logo {
  padding: 0;
}
.header.header6.header-sticky-menu .navigation {
  display: flex;
}
.header.header6.header-sticky-menu .navigation .nav-main > li > a {
  color: #333;
  padding-left: 23px;
  padding-right: 23px;
}
.header.header6.header-sticky-menu .navigation .nav-main > li > a:hover {
  color: #295135;
}
.header.header6.header-sticky-menu .logo {
  left: 0 !important;
  position: relative;
}
.header.header6.header-sticky-menu .block-social-header-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.header.header6.header-sticky-menu .nav-toggle [class*="ion"] {
  color: #333;
}
.header.header6.header-sticky-menu .block-cart-header .showcart .box-shopbag .icon-cart [class*="ion"] {
  color: #333;
}
body:not(.cms-home) .header.header6 .logo {
  display: none;
}
body:not(.cms-home) .header.header6 .logo-sticky {
  display: block;
  padding: 20px 0;
}
body:not(.cms-home) .header.header6 .navigation {
  display: table;
}
body:not(.cms-home) .header.header6 .navigation .nav-main > li > a {
  color: #333;
}
body:not(.cms-home) .header.header6 .navigation .nav-main > li > a:hover {
  color: #295135;
}
body:not(.cms-home) .header.header6 .nav-toggle [class*="ion"] {
  color: #333;
}
body:not(.cms-home) .header.header6 .block-cart-header .showcart .box-shopbag .icon-cart [class*="ion"] {
  color: #333;
}
body:not(.cms-home) .header.header6.header-sticky-menu .logo-sticky {
  padding: 0;
}
.scroll-to-top {
  position: fixed;
  background: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #295135;
  color: #295135;
  right: 20px;
  text-align: center;
  font-size: 18px;
  line-height: 50px;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  z-index: 99;
}
.scroll-to-top:hover {
  background-color: #295135;
  color: #fff;
}
.title-block {
  display: inline-block;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 12px;
  margin-bottom: 2rem;
  text-align: center;
  z-index: -1;
  position: relative;
}
.title-block:after {
  margin-left: 4px;
}
.title-block:before {
  margin-right: 4px;
}
.title-block > h2,
.title-block > h3 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  color: #295135;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 0.1em;
}
.title-block p.h4 {
  font-size: 14px;
  margin: 0;
  line-height: 1;
  color: #333;
}
.title-block p.h4:before,
.title-block p.h4:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1px;
  vertical-align: middle;
  background-color: #295135;
  margin: 0 4px;
}
@media (max-width: 768px) {
  .title-block {
    display: inline-block;
    width: 100%;
    padding-top: 0;
    padding-bottom: 12px;
    margin-bottom: 0;
    text-align: center;
    z-index: -1;
    position: relative;
  }
  .title-block:after {
    margin-left: 4px;
  }
  .title-block:before {
    margin-right: 4px;
  }
  .title-block > h2,
  .title-block > h3 {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.15;
    color: #295135;
    text-transform: uppercase;
    margin: 0 0 8px;
    letter-spacing: 0.1em;
  }
  .title-block p.h4 {
    font-size: 14px;
    margin: 0;
    line-height: 2rem;
    color: #333;
  }
  .title-block p.h4:before,
  .title-block p.h4:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 1px;
    vertical-align: middle;
    background-color: #295135;
    margin: 0 4px;
  }
}
.title-farm .title-block {
  margin-bottom: 1rem;
}
.block-services {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.block-services a img {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.block-services .box-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  margin: 0 auto;
  display: inline-block;
  left: 0;
  right: 0;
  text-align: center;
}
.block-services .box-text h4 {
  letter-spacing: 0.05em;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 0;
}
.block-services .box-text h4:after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: #333;
  margin: 0 auto;
  margin-top: 17px;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.block-services .box-text p {
  font-size: 14px;
  color: #696969;
  letter-spacing: 0.1em;
  margin: 0;
}
.block-services:hover a img {
  transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
}
.block-services:hover h4:after {
  width: 60px;
}
.block-tab-products .tab-pane {
  text-align: center;
}
.block-tab-products .nav-tabs {
  border-bottom: none;
  margin-bottom: 2rem;
}
.block-tab-products .nav-tabs li {
  float: none;
  display: inline-block;
  margin-bottom: 0;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
}
.block-tab-products .nav-tabs li a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  padding: 7px 15px 7px;
  color: #696969;
  border: 1px solid #f4f1e3;
  max-height: 30px;
  text-align: center;
  border-radius: 15px;
}
.block-tab-products .nav-tabs li.active a,
.block-tab-products .nav-tabs li a:hover {
  color: #fff;
  border-color: #295135;
  background-color: #295135;
}
.block-tab-products .nav-tabs li:last-child {
  margin-right: 0;
}
.block-tab-products .nav-tabs li:first-child {
  margin-left: 0;
}
.btn-addto {
  width: 48px;
  height: 48px;
  display: block;
  text-align: center;
  line-height: 48px;
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 18px;
  background-color: #696969;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  box-shadown: none;
  border: none;
  border-radius: 50%;
}
.btn-addto:hover,
.btn-addto:focus,
.btn-addto:active {
  background-color: #295135;
  color: #fff;
}
.btn-addto-default {
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  margin: 0;
  color: #295135;
  font-size: 16px;
  background-color: #fff;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  box-shadow: none;
  border-radius: 50%;
  border: 1px solid #295135;
}
.btn-addto-default:hover,
.btn-addto-default:active,
.btn-addto-default:focus {
  background-color: #295135;
  color: #fff;
}
.product-top-right {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  padding-bottom: 100%;
  height: 22px;
  width: 100%;
}
.product-top-right .towishlist {
  display: inline-block;
  vertical-align: middle;
  line-height: 12px;
  margin-right: 1.5rem;
  margin-top: 1rem;
}
.product-top-right .sale-label,
.product-top-right .stock {
  margin-right: 0.5rem;
  position: relative;
  z-index: 3;
  line-height: 1.4rem;
  top: 10px;
  right: 5px;
  display: inline-block;
}
.product-top-right .stock {
  margin-right: 0.5rem;
}
.products-list .product-top-right {
  right: 15px;
  padding-bottom: calc(100% - 30px);
  width: calc(100% - 30px);
}
.price-box .price {
  font-size: 14px;
  color: black;
}
.product-image-photo {
  margin: 0 auto;
}
.products-grid .product-item .product-item-info {
  border: 1px solid #f3f0e2;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.products-grid .product-item .product-item-info .product-top {
  position: relative;
  margin-bottom: 10px;
  text-align: center;
}
.products-grid .product-item .product-item-info .product-top .product-item-photo {
  display: inline-block;
  width: 100%;
  position: relative;
}
.products-grid .product-item .product-item-info .product-top .product-item-photo:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.products-grid .product-item .product-item-info .product-top .product-image-photo {
  margin: 0 auto;
  transform-style: inherit;
  -moz-transform-style: inherit;
  -webkit-transform-style: inherit;
  -ms-transform-style: inherit;
  position: relative;
  border: none;
}
.products-grid .product-item .product-item-info .product-top .product-item-inner {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.products-grid .product-item .product-item-info .product-top .product-item-inner .product-item-actions {
  display: inline-flex;
  display: -webkit-inline-flex;
}
.products-grid .product-item .product-item-info .product-top .product-item-inner .btn-addto,
.products-grid .product-item .product-item-info .product-top .product-item-inner form {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.products-grid .product-item .product-item-info .product-top .product-item-inner .btn-addto {
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.products-grid .product-item .product-item-info .product-top .btn {
  padding: 12px 0;
}
.products-grid .product-item .product-item-info .product-top .btn.btn-buy {
  display: none;
}
.products-grid .product-item .product-item-info .product-item-name h4 {
  line-height: 1.2;
  margin-bottom: 17px;
  margin-top: 0;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}
.products-grid .product-item .product-item-info .product-item-name:after {
  content: "";
  width: 32px;
  height: 1px;
  background-color: #e7e5e4;
  display: block;
  margin: 17px auto 0;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}
.products-grid .product-item .product-item-info:hover {
  border-color: #295135;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.175);
}
.products-grid .product-item .product-item-info:hover .product-top .product-item-photo:after {
  opacity: 1;
  visibility: visible;
}
.products-grid .product-item .product-item-info:hover .product-top .product-item-inner .btn-addto {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
}
.products-grid .product-item .product-item-info:hover .product-item-name:after {
  width: 60px;
  border-color: #295135;
}
.products-grid .product-item .product-item-info .product-item-details {
  padding-left: 10px;
  padding-right: 10px;
}
.products-grid.productv2 .product-item .product-item-info {
  border: none;
}
.products-grid.productv2 .product-item .product-item-info .product-top {
  margin-bottom: 0;
}
.products-grid.productv2 .product-item .product-item-info .product-top .product-item-photo {
  background-color: #f8f7f7;
  display: inline-block;
  width: 100%;
}
.products-grid.productv2 .product-item .product-item-info .product-item-details {
  position: relative;
  padding-top: 47px;
}
.products-grid.productv2 .product-item .product-item-info .product-item-details .product-item-name {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  top: -20px;
  margin: 0 auto;
}
.products-grid.productv2 .product-item .product-item-info .product-item-details .product-item-name h4 {
  font-size: 24px;
}
.products-grid.productv2 .product-item .product-item-info .product-item-details .product-item-name h4:after {
  background-color: #ababab;
}
.products-grid.productv2 .product-item .product-item-info .product-item-details .price-box .price {
  font-size: 18px;
  line-height: 1.3;
}
.products-grid.productv2 .product-item .product-item-info:hover {
  border: none;
  box-shadow: none;
}
.products-grid.productv3 .product-item .product-item-info {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 100%;
  position: relative;
}
.products-grid.productv3 .product-item .product-item-info .product-top .product-item-photo {
  background-color: transparent;
}
.products-grid.productv3 .product-item .product-item-info .product-top .product-item-photo:hover {
  color: #295135;
}
.products-grid.productv3 .product-item .product-item-info .product-top .product-item-photo:after {
  background-color: transparent;
}
.products-grid.productv3 .product-item .product-item-info .product-item-name {
  margin-top: 16px;
  margin-bottom: 26px;
  position: relative;
  max-width: 100%;
  word-break: break-word;
}
.products-grid.productv3 .product-item .product-item-info .product-item-name h4 {
  font-size: 14px;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  -ms-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products-grid.productv3 .product-item .product-item-info .product-item-name:after {
  background-color: #f39268;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.products-grid.productv3 .product-item .product-item-info:hover {
  box-shadow: none;
}
.products-grid .row-custom-8.owl-carousel .owl-item:last-child,
.products-grid .row-custom-7.owl-carousel .owl-item:last-child {
  margin: 0 !important;
}
.btn-loadmore {
  margin: 0 auto;
  margin-bottom: 20px;
}
.btn-loadmore span {
  width: 15px;
  height: 15px;
  line-height: 15px;
  display: none;
}
body.ajax-loading .btn-loadmore .loading {
  background: url('../images/loader.gif') no-repeat center center scroll;
  background-size: 15px;
  display: inline-block;
}
.list-block-products .content-heading,
.portfolio-block-list .content-heading {
  padding-right: 60px;
  text-align: left;
  margin: 0;
}
.list-block-products .content-heading:before,
.portfolio-block-list .content-heading:before {
  display: none;
}
.list-block-products .content-heading .title,
.portfolio-block-list .content-heading .title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #333;
  margin: 0 0 40px;
  text-transform: uppercase;
}
.list-block-products .owl-carousel .owl-nav [class*="owl-"],
.portfolio-block-list .owl-carousel .owl-nav [class*="owl-"] {
  width: 25px;
  height: 25px;
  line-height: 22px;
  font-size: 14px;
  opacity: 1;
  visibility: visible;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  right: 0;
  left: auto;
  top: -50px;
}
.list-block-products .owl-carousel .owl-nav .owl-prev,
.portfolio-block-list .owl-carousel .owl-nav .owl-prev {
  left: auto;
  right: 30px;
}
.list-products .price-final_price .price-label {
  display: none;
}
.list-products .product-items .product-item {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.list-products .product-items .product-item:before,
.list-products .product-items .product-item:after {
  content: "";
  display: table;
  clear: both;
}
.list-products .product-items .product-item .product-top,
.list-products .product-items .product-item .product-item-details {
  display: inline-block;
  float: left;
}
.list-products .product-items .product-item .product-top {
  width: 120px;
  margin-right: 30px;
  position: relative;
}
.list-products .product-items .product-item .product-top .product-item-photo {
  display: block;
  width: 100%;
  position: relative;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.list-products .product-items .product-item .product-top .product-item-photo img {
  border: 1px solid #f4f1e3;
}
.list-products .product-items .product-item .product-top .product-item-photo:before,
.list-products .product-items .product-item .product-top .product-item-photo:after {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  width: 100%;
  opacity: 0;
  visibility: visible;
}
.list-products .product-items .product-item .product-top .product-item-photo:before {
  border-bottom: 1px solid #295135;
  border-top: 1px solid #295135;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform-origin: 0 0 0;
  z-index: 100;
}
.list-products .product-items .product-item .product-top .product-item-photo:after {
  border-left: 1px solid #295135;
  border-right: 1px solid #295135;
  transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform-origin: 100% 0 0;
  z-index: 100;
}
.list-products .product-items .product-item .product-top .product-item-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 100;
}
.list-products .product-items .product-item .product-top .product-item-inner .btn-cart {
  font-size: 18px;
  color: #fff;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background-color: #295135;
  opacity: 0;
  visibility: visible;
  padding: 0;
  margin: 0;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -o-transform: translateY(10px);
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
}
.list-products .product-items .product-item .product-top .product-item-inner .btn-cart:hover {
  background-color: #696969;
  border-color: #696969;
}
.list-products .product-items .product-item .product-item-details {
  width: calc(100% -  150px);
}
.list-products .product-items .product-item .product-item-details .product-item-name h4 {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-top: 15px;
  margin-bottom: 20px;
  font-weight: 700;
}
.list-products .product-items .product-item .product-item-details .product-item-name h4:after {
  content: "";
  display: block;
  height: 1px;
  width: 32px;
  background-color: #e7e5e4;
  margin-top: 17px;
}
.list-products .product-items .product-item .product-item-details .price-box {
  margin-bottom: 10px;
}
.list-products .product-items .product-item .product-item-details .product-box-label {
  position: relative;
  line-height: 1;
}
.list-products .product-items .product-item .product-item-details .box-meta .price-box {
  margin-bottom: 14px;
}
.list-products .product-items .product-item .product-item-details .box-meta .product-box-label {
  padding-top: 20px;
  margin-left: 4px;
}
.list-products .product-items .product-item .product-item-details .box-meta .product-box-label .product-label {
  right: auto;
}
.list-products .product-items .product-item .product-item-details .meta-box .product-reviews-summary {
  float: left;
  min-width: 90px;
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 5px;
}
.list-products .product-items .product-item .product-item-details .meta-box .product-box-label {
  display: block;
  float: left;
  padding: 7px;
}
.list-products .product-items .product-item .product-item-details .meta-box .product-box-label .product-label {
  bottom: inherit;
}
.list-products .product-items .product-item:hover .product-top .product-item-photo:before,
.list-products .product-items .product-item:hover .product-top .product-item-photo:after {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
}
.list-products .product-items .product-item:hover .product-top .product-item-photo img {
  opacity: 0.3;
}
.list-products .product-items .product-item:hover .product-top .product-item-inner .btn-cart {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
}
.list-products .product-items .product-item:last-child {
  margin-bottom: 0;
}
.organie3-block-life {
  padding-top: 65px;
}
.organie3-block-life .item-block {
  display: block;
  margin-bottom: 80px;
}
.organie3-block-life .item-block:last-child {
  margin-bottom: 0;
}
.organie3-block-life .item-block [class*="icon-"] {
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  line-height: 70px;
  font-size: 30px;
  color: #295135;
  background-color: #f8f7f7;
  padding-left: 15px;
  display: inline-block;
  float: left;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.organie3-block-life .item-block .icon-lemon {
  font-size: 25px;
}
.organie3-block-life .item-block .content-text h3 {
  font-size: 18px;
  color: #333;
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 3px;
}
.organie3-block-life .item-block .content-text p {
  margin: 0;
  font-size: 15px;
  line-height: 25px;
}
.organie3-block-life .item-block:hover [class*="icon-"] {
  background-color: #295135;
  color: #fff;
}
.organie3-block-life.icon-left .item-block .content-text {
  margin-left: 100px;
}
.organie3-block-life.icon-right .item-block .content-text {
  margin-right: 100px;
  text-align: right;
}
.organie3-block-life.icon-right .item-block [class*="icon-"] {
  float: right;
}
.organie3-block-step {
  display: inline-block;
  text-align: center;
  position: relative;
  width: 100%;
}
.organie3-block-step img {
  margin: 0 auto;
}
.organie3-block-step .box-text {
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
  -webkit-transform: translateY(-65%);
  -moz-transform: translateY(-65%);
  -o-transform: translateY(-65%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.organie3-block-step .box-text .title-block {
  width: 266px;
  height: 260px;
  margin: 0 auto;
  text-align: center;
  padding-top: 95px;
}
.organie3-block-step .box-text .bg-border {
  background: url('../images/bg-border.png') no-repeat scroll center center;
  max-width: 266px;
  max-height: 260px;
  margin: 0 auto;
}
.organie3-block-step .box-text .title-farm .title-block {
  padding-top: 95px;
}
.line-block span {
  padding-top: 3px;
  padding-bottom: 3px;
  min-height: 1px;
  width: 100%;
  display: block;
  background: url('../images/line.png') repeat-x scroll center center;
}
.border-title-farm .title-block h2 {
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.border-title-farm .title-block h2 span {
  display: inline-block;
  position: relative;
}
.border-title-farm .title-block h2 span:after,
.border-title-farm .title-block h2 span:before {
  content: "";
  display: inline-block;
  height: 7px;
  position: absolute;
  width: 999px;
  background: url('../images/line.png') repeat-x scroll center center;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 8;
  margin-top: 7px;
}
.border-title-farm .title-block h2 span:after {
  right: 100%;
  margin-right: 40px;
}
.border-title-farm .title-block h2 span:before {
  left: 100%;
  margin-left: 40px;
}
.mgs-blog-lastest-posts .post-meta .h6 {
  font-size: 14px;
  color: #ababab;
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1;
}
.mgs-blog-lastest-posts .read-more {
  margin-top: 25px;
  line-height: 1;
}
.mgs-blog-lastest-posts .read-more a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #696969;
  position: relative;
}
.mgs-blog-lastest-posts .read-more a:hover {
  color: #295135;
}
.mgs-blog-lastest-posts .read-more a:before {
  content: "/";
  display: inline-block;
  padding-right: 5px;
}
.mgs-blog-lastest-posts .short-content {
  font-size: 15px;
  line-height: 1.73;
}
.mgs-blog-lastest-posts .item:hover .image img {
  opacity: 0.7;
}
.mgs-blog-lastest-posts .item .post-content {
  padding-top: 24px;
}
.mgs-blog-lastest-posts .item .post-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}
.mgs-blog-lastest-posts .item .post-content .short-content {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 25px;
}
.mgs-blog-lastest-posts .item .post-tag {
  display: none;
}
.mgs-blog-lastest-posts .item .post-meta .day:after {
  content: ",";
  display: inline-block;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item-first .post-top .image {
  margin-top: 20px;
  position: relative;
  display: block;
  margin-right: 30px;
  margin-bottom: 0;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item-first .post-top .image:after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  border-right: 5px solid #f4f1e3;
  border-bottom: 5px solid #f4f1e3;
  position: absolute;
  right: -30px;
  top: -20px;
  z-index: 90;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item-first .post-top .image:before {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  border-left: 5px solid #f4f1e3;
  border-top: 5px solid #f4f1e3;
  position: absolute;
  left: 30px;
  top: -20px;
  z-index: 90;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item-first .post-top .image img {
  z-index: 100;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item-first .post-bottom {
  padding-top: 22px;
  max-width: 470px;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item-first .post-bottom .post-meta .h6 {
  font-size: 14px;
  color: #ababab;
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: 15px;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item-first .post-bottom .title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 25px;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item {
  margin-bottom: 30px;
  padding-top: 20px;
  line-height: 1;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item:before,
.blog-grid-list-block .mgs-blog-lastest-posts .item:after {
  content: "";
  display: table;
  clear: both;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item .post-left {
  display: inline-block;
  max-width: 270px;
  margin-right: 30px;
  float: left;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item .post-right {
  display: inline-block;
  width: calc(100% - 300px);
}
.blog-grid-list-block .mgs-blog-lastest-posts .item .post-right .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item .post-right .read-more {
  margin-top: 22px;
}
.blog-grid-list-block .mgs-blog-lastest-posts .item:last-child {
  margin-bottom: 0;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item {
  display: block;
  position: relative;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item .post-tag {
  display: block;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item .post-content {
  margin-bottom: 20px;
  padding-left: 115px;
  position: relative;
  padding-top: 28px;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item .post-content h3 {
  font-size: 24px;
  margin-top: 15px;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item .post-tag {
  margin-bottom: 10px;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item .post-tag a {
  color: #ababab;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item .post-tag a:hover {
  color: #295135;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item .post-meta .date {
  position: absolute;
  width: 85px;
  height: 85px;
  border: 2px solid #e0e0e0;
  padding: 10px 15px;
  left: 0;
  top: 30px;
  border-radius: 50%;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item .post-meta .date .month {
  bottom: 10px;
  position: absolute;
  text-align: center;
  left: 26px;
  letter-spacing: 0.2em;
  color: #333;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item .post-meta .date .day {
  font-size: 34px;
  font-style: normal;
  font-weight: bold;
  left: 20px;
  letter-spacing: 0.2em;
  line-height: 1;
  padding-bottom: 0;
  top: 0;
  color: #295135;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item .post-meta .date .day:after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin: 4px auto;
  line-height: 1;
  vertical-align: baseline;
  background-color: #e0e0e0;
}
.custom-style-blog-cake .mgs-blog-lastest-posts .item .post-meta .date .year {
  display: none;
}
.promobanner img {
  margin: 0 auto;
}
.banner-nature {
  padding-right: 45px;
  text-align: right;
}
.banner-nature h3 {
  font-size: 40px;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 900;
  margin-top: 5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-right: -15px;
}
.banner-nature h6 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 3px 6px;
  background-color: #333;
  margin: 0;
  float: right;
  margin-right: -10px;
  line-height: 1;
}
.banner-strawberry {
  text-align: center;
  margin-right: 20px;
}
.banner-strawberry h3 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 7px;
  margin-bottom: 0;
  color: #333;
}
.banner-strawberry p {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0;
  color: #696969;
  font-size: 14px;
  margin-top: 4px;
}
.block-newsletter-2 {
  position: relative;
  display: block;
}
.block-newsletter-2 .box-text {
  position: absolute;
  top: 50%;
  max-width: 570px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: inline-block;
  float: none;
  width: 100%;
}
.block-newsletter-2 .box-text h4 {
  font-size: 24px;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
  margin-top: 5px;
  font-weight: bold;
  line-height: 1;
}
.block-newsletter-2 .box-text input.form-control {
  box-shadown: none;
  border: none;
  background-color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.block-layer-abs {
  position: relative;
  display: block;
}
.block-layer-abs .layer-left {
  position: absolute;
  left: 0;
  top: -458px;
  z-index: 999;
}
.block-layer-abs .layer-right {
  position: absolute;
  right: 0;
  top: -255px;
  z-index: 999;
}
.block-layer-abs .layer-center {
  padding-top: 140px;
  padding-bottom: 150px;
}
.block-layer-abs .layer-center .layer-img1 {
  display: inline-block;
  position: relative;
  margin-right: 40px;
}
.block-layer-abs .layer-center .layer-img1:before {
  border: 3px solid #333;
  bottom: -40px;
  content: "";
  display: block;
  left: 30px;
  position: absolute;
  right: -30px;
  top: 40px;
  z-index: 0;
}
.block-layer-abs .layer-center .layer-img1 img {
  position: relative;
  z-index: 2;
}
.block-layer-abs .layer-center .layer-img2 {
  position: absolute;
  top: -220px;
  z-index: 9;
}
.block-layer-abs .layer-center .about-text {
  padding-top: 343px;
  position: relative;
  padding-bottom: 125px;
}
.block-layer-abs .layer-center .about-text .text {
  color: #333;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 0;
  margin-left: 10px;
  margin-top: 10px;
}
.block-layer-abs .layer-center .about-text .layer-img3 {
  position: absolute;
  bottom: 0;
  left: -200px;
  z-index: -1;
}
.block-layer-abs .layer-bottom {
  position: absolute;
  bottom: -170px;
  right: 0;
  z-index: 9;
}
.title-cake .title-block {
  background: none;
}
.title-cake .title-block h3 {
  color: #333;
  font-size: 48px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  font-weight: 400;
}
.title-cake .title-block h3:before {
  content: "#";
  display: inline-block;
  margin-right: 0;
}
.block-shop-by-cate {
  position: relative;
}
.block-shop-by-cate .title-block {
  position: absolute;
  top: -235px;
  left: 0;
  max-width: 390px;
  padding: 0;
  margin: 0;
  background: none;
}
.block-shop-by-cate .title-block h3 {
  padding: 0;
  margin: 0;
  line-height: 1.65;
}
.block-shop-by-cate .button-cate {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  font-size: 14px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  height: 48px;
  width: 152px;
  line-height: 48px;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  background-color: #fff;
  text-align: center;
}
.block-shop-by-cate .button-cate:hover,
.block-shop-by-cate .button-cate:focus,
.block-shop-by-cate .button-cate:active {
  color: #fff;
  background-color: #295135;
}
.block-shop-by-cate .img-top {
  margin-bottom: 30px;
}
.block-shop-by-cate .img-top,
.block-shop-by-cate .img-bottom,
.block-shop-by-cate .img-center {
  position: relative;
  display: block;
  overflow: hidden;
}
.block-shop-by-cate .img-top img,
.block-shop-by-cate .img-bottom img,
.block-shop-by-cate .img-center img {
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.block-shop-by-cate .img-top:hover img,
.block-shop-by-cate .img-bottom:hover img,
.block-shop-by-cate .img-center:hover img {
  opacity: 0.3;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.block-shop-by-cate:after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background-color: #333;
  position: absolute;
  bottom: -152px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}
.block-cake-banner {
  text-align: center;
  max-width: 770px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 56px 125px 45px;
}
.block-cake-banner p {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 1.4;
  font-weight: 700;
}
.block-cake-banner h3 {
  font-size: 40px;
  letter-spacing: 0.1em;
  margin: 0;
  margin-bottom: 32px;
  color: #333;
  line-height: 1.2;
  text-transform: capitalize;
}
.block-cake-banner a.btn {
  padding-left: 27px;
  padding-right: 27px;
  letter-spacing: 0.1em;
}
.custom-style-blog-cake {
  padding-top: 10px;
}
.block-content {
  width: 100%;
  display: inline-block;
}
.block-content.no-display {
  display: none;
}
.top-toolbar {
  margin-bottom: 50px;
}
.top-toolbar .pages {
  display: none;
}
.bottom-toolbar .toolbar-box {
  display: none;
}
.toolbar-amount {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0;
  line-height: 26px;
}
.toolbar-amount .toolbar-number {
  color: #295135;
}
.modes,
.sorter,
.limiter {
  display: inline-block;
  float: right;
}
.modes {
  margin-left: 30px;
  margin-top: -2px;
}
.modes .modes-mode {
  width: 30px;
  height: 30px;
  font-size: 18px;
  color: #295135;
  line-height: 28px;
  padding: 0;
  text-align: center;
  border: 1px solid #295135;
  border-radius: 4px;
  display: inline-block;
}
.modes .modes-mode span {
  opacity: 0.7;
}
.modes .modes-mode.mode-grid {
  margin-right: 10px;
}
.modes .modes-mode.active,
.modes .modes-mode:hover,
.modes .modes-mode:active {
  color: #fff;
  background-color: #295135;
}
.sorter label,
.limiter label {
  display: none;
}
.sorter select,
.limiter select {
  min-width: 175px;
  background-color: transparent;
  border-radius: 0;
  font-size: 13px;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  border: solid 1px #9c9b9b;
  color: #9c9b9b;
  height: 26px;
  cursor: pointer;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  padding-right: 25px;
}
.sorter {
  display: inline-flex;
  display: -webkit-inline-flex;
}
.sorter .sorter-action {
  line-height: 40px;
  margin-left: 10px;
}
.limiter {
  margin-right: 1rem;
}
.bottom-toolbar {
  margin-top: 33px;
  margin-bottom: 30px;
}
.pages {
  margin: 0;
}
.pages .pagination {
  padding: 0;
  margin: 0;
  border: none;
}
.pages .pagination .item {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-left: 5px;
  margin-right: 5px;
  display: inline-block;
}
.pages .pagination .item a {
  padding: 0 1.5rem;
  min-height: 40px;
  min-width: 40px;
  margin: 0;
  font-size: 14px;
  color: #696969;
  border: none;
  line-height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.pages .pagination .item a:focus {
  background-color: #295135;
  border-radius: 50%;
  border: none;
  color: #fff;
}
.pages .pagination .item span:focus {
  background-color: #295135;
  border-radius: 50%;
  border: none;
  color: #fff;
}
.pages .pagination .item.current a,
.pages .pagination .item:hover a {
  background-color: #295135;
  border-radius: 50%;
  border: none;
  color: #fff;
}
.pages .pagination .item[class*='pages-item-'] {
  border: none;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  background: none;
}
.pages .pagination .item[class*='pages-item-']:hover a,
.pages .pagination .item[class*='pages-item-']:active a,
.pages .pagination .item[class*='pages-item-']:hover span,
.pages .pagination .item[class*='pages-item-']:active span {
  background: none;
  color: #295135;
}
.one-column-filter .filter-title {
  margin-bottom: 20px;
}
.one-column-filter .filter-content {
  margin-bottom: 20px;
}
.one-column-filter .filter-content .block-sub-title {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #333;
}
.one-column-filter .filter-content select {
  background: url('../images/icon-dropdown.png') no-repeat scroll calc(100% - 20px) center;
}
.one-column-filter .filter-current .filter-current-subtitle {
  color: #333;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.one-column-filter .filter-current .items {
  margin: 0;
}
.one-column-filter .filter-current .items .item {
  display: inline-flex;
  display: -webkit-inline-flex;
  padding: 5px 5px;
}
.one-column-filter .filter-current .items .item .filter-label {
  font-weight: 700;
  min-width: 60px;
}
.one-column-filter .filter-current .items .item .filter-label:after {
  content: ":";
}
.one-column-filter .filter-current .items .item .filter-value {
  line-height: 1.8;
  margin: 0;
}
.one-column-filter .filter-current .items .item .filter-value.h6 {
  font-size: 15px;
  margin: 0;
  margin-right: 10px;
}
.one-column-filter .filter-current .items .item .action.remove {
  margin-right: 5px;
  color: #295135;
}
.one-column-filter .filter-current .items .item .action.remove:hover {
  color: #696969;
}
.one-column-filter .filter-clear {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
}
.one-column-filter .filter-clear a {
  color: #295135;
}
.one-column-filter .filter-clear a:hover,
.one-column-filter .filter-clear a:active {
  color: #696969;
}
body.catalog-category-page.ajax-loading:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  z-index: 1009;
}
body.catalog-category-page .ajax-loading {
  position: fixed;
  z-index: 1100;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  top: 50%;
}
body.catalog-category-page:not(.cms-home) footer .top-footer .block-newsletter-ft {
  padding-top: 90px;
}
.category-image {
  display: none;
}
.category-description blockquote {
  border-left-color: #295135;
}
.products-grid .product-items.row-col-lg-2 .product-item .product-item-info .product-top .product-item-inner,
.products-grid .product-items.row-col-lg-custom-7 .product-item .product-item-info .product-top .product-item-inner,
.products-grid .product-items.row-col-lg-custom-8 .product-item .product-item-info .product-top .product-item-inner,
.products-grid .product-items.row-custom-8 .product-item .product-item-info .product-top .product-item-inner,
.products-grid .product-items.row-custom-7 .product-item .product-item-info .product-top .product-item-inner,
.products-grid .product-items.row-custom-2 .product-item .product-item-info .product-top .product-item-inner {
  left: 10px;
  right: auto;
  top: 0;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
}
.products-grid .product-items.row-col-lg-2 .product-item .product-item-info .product-top .product-item-inner .product-item-actions,
.products-grid .product-items.row-col-lg-custom-7 .product-item .product-item-info .product-top .product-item-inner .product-item-actions,
.products-grid .product-items.row-col-lg-custom-8 .product-item .product-item-info .product-top .product-item-inner .product-item-actions,
.products-grid .product-items.row-custom-8 .product-item .product-item-info .product-top .product-item-inner .product-item-actions,
.products-grid .product-items.row-custom-7 .product-item .product-item-info .product-top .product-item-inner .product-item-actions,
.products-grid .product-items.row-custom-2 .product-item .product-item-info .product-top .product-item-inner .product-item-actions {
  display: block;
}
.products-grid .product-items.row-col-lg-2 .product-item .product-item-info .product-top .product-item-inner .btn-addto,
.products-grid .product-items.row-col-lg-custom-7 .product-item .product-item-info .product-top .product-item-inner .btn-addto,
.products-grid .product-items.row-col-lg-custom-8 .product-item .product-item-info .product-top .product-item-inner .btn-addto,
.products-grid .product-items.row-custom-8 .product-item .product-item-info .product-top .product-item-inner .btn-addto,
.products-grid .product-items.row-custom-7 .product-item .product-item-info .product-top .product-item-inner .btn-addto,
.products-grid .product-items.row-custom-2 .product-item .product-item-info .product-top .product-item-inner .btn-addto,
.products-grid .product-items.row-col-lg-2 .product-item .product-item-info .product-top .product-item-inner form,
.products-grid .product-items.row-col-lg-custom-7 .product-item .product-item-info .product-top .product-item-inner form,
.products-grid .product-items.row-col-lg-custom-8 .product-item .product-item-info .product-top .product-item-inner form,
.products-grid .product-items.row-custom-8 .product-item .product-item-info .product-top .product-item-inner form,
.products-grid .product-items.row-custom-7 .product-item .product-item-info .product-top .product-item-inner form,
.products-grid .product-items.row-custom-2 .product-item .product-item-info .product-top .product-item-inner form {
  display: block;
  margin: 5px 0;
}
.products-grid .product-items.row-col-lg-custom-8 .product-item .product-item-info .product-item-name h4,
.products-grid .product-items.row-custom-8 .product-item .product-item-info .product-item-name h4 {
  font-size: 15px;
}
.products-grid .product-items.row-col-lg-custom-8 .product-item .product-item-info .product-top .product-item-inner,
.products-grid .product-items.row-custom-8 .product-item .product-item-info .product-top .product-item-inner {
  z-index: 100;
}
.products-grid .product-items.row-col-lg-custom-8 .product-item .product-item-info .product-top .product-item-inner .btn-addto,
.products-grid .product-items.row-custom-8 .product-item .product-item-info .product-top .product-item-inner .btn-addto {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.swatch-attribute .swatch-attribute-options {
  margin-top: 0;
}
.block.filter .filter-options .filter-option {
  display: block;
  margin-bottom: 50px;
}
.block.filter .filter-options .filter-option .filter-heading h3 {
  position: relative;
  cursor: pointer;
  padding-right: 15px;
}
.block.filter .filter-options .filter-option .filter-heading h3:after {
  content: "\f126";
  font-family: "Ionicons";
  display: inline-block;
  font-size: 15px;
  color: #333;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  cursor: pointer;
}
.block.filter .filter-options .filter-option.active .filter-heading h3:after {
  content: "\f123";
}
.block.filter .filter-options .filter-option .filter-body .items li.item {
  display: inline-block;
  width: 100%;
  margin-bottom: 18px;
}
.block.filter .filter-options .filter-option .filter-body .items li.item a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  color: #000;
}
.block.filter .filter-options .filter-option .filter-body .items li.item a:after {
  display: inline-block;
  width: 999px;
  height: 1px;
  background-color: #f4f4f4;
  margin-left: 14px;
  position: absolute;
  bottom: 9px;
  z-index: -1;
}
.block.filter .filter-options .filter-option .filter-body .items li.item a:hover {
  color: #295135;
}
.block.filter .filter-options .filter-option .filter-body .items li.item a .count {
  font-size: 15px;
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 14px;
  background-color: transparent;
}
.block.filter .filter-options .filter-option .filter-body .items li.item:last-child {
  margin-bottom: 0;
}
.block.filter .filter-options .filter-option:last-child {
  margin-bottom: 0;
}
.block.filter .filter-current .block-content .items .item {
  display: inline-flex;
  display: -webkit-inline-flex;
  padding: 5px;
}
.block.filter .filter-current .block-content .items .item .filter-label {
  font-weight: 700;
  min-width: 60px;
}
.block.filter .filter-current .block-content .items .item .filter-label:after {
  content: ":";
}
.block.filter .filter-current .block-content .items .item .filter-value {
  font-size: 15px;
  margin: 5px 0;
  margin-right: 10px;
}
.sidebar .block {
  margin-bottom: 50px;
}
.sidebar .block h3 {
  color: #333;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: 30px;
}
.sidebar .block-compare .product-items .product-item {
  display: inline-block;
  width: 100%;
  padding: 5px 0;
}
.sidebar .block-compare .product-items .product-item a.action {
  font-size: 14px;
  color: #295135;
  margin-right: 10px;
}
.sidebar .block-compare .product-items .product-item a.action:hover {
  color: #696969;
}
.sidebar .block-compare .actions-toolbar {
  display: inline-flex;
  display: -webkit-inline-flex;
  padding-top: 15px;
  float: right;
  margin: 0;
}
.sidebar .block-compare .actions-toolbar .secondary {
  margin-right: 30px;
}
.sidebar .block-compare .actions-toolbar .secondary a {
  color: #295135;
  line-height: 33px;
}
.sidebar .block-compare .actions-toolbar .secondary a:hover {
  color: #696969;
}
.sidebar .block-wishlist .block-content .product-items {
  display: inline-block;
  width: 100%;
}
.sidebar .block-wishlist .block-content .product-items .product-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f8f7f7;
  width: 100%;
  position: relative;
}
.sidebar .block-wishlist .block-content .product-items .product-item .product-item-info {
  display: inline-flex;
  display: -webkit-inline-flex;
}
.sidebar .block-wishlist .block-content .product-items .product-item .product-item-info .product-item-photo .product-image-wrapper {
  padding: 0 !important;
  border: 1px solid #eee;
  position: relative;
  display: inline-block;
}
.sidebar .block-wishlist .block-content .product-items .product-item .product-item-info .product-item-photo .product-image-wrapper:before,
.sidebar .block-wishlist .block-content .product-items .product-item .product-item-info .product-item-photo .product-image-wrapper:after {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  visibility: hidden;
  width: 100%;
}
.sidebar .block-wishlist .block-content .product-items .product-item .product-item-info .product-item-photo .product-image-wrapper:before {
  border-bottom: 1px solid #295135;
  border-top: 1px solid #295135;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform-origin: 0 0 0;
  z-index: 100;
}
.sidebar .block-wishlist .block-content .product-items .product-item .product-item-info .product-item-photo .product-image-wrapper:after {
  border-left: 1px solid #295135;
  border-right: 1px solid #295135;
  transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform-origin: 100% 0 0;
  z-index: 100;
}
.sidebar .block-wishlist .block-content .product-items .product-item .product-item-info .product-item-details {
  margin-left: 20px;
}
.sidebar .block-wishlist .block-content .product-items .product-item .product-item-info .product-item-details .product-item-name {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}
.sidebar .block-wishlist .block-content .product-items .product-item .product-item-info .product-item-actions .actions-secondary {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  margin-top: -20px;
}
.sidebar .block-wishlist .block-content .product-items .product-item .product-item-info:hover .product-item-photo .product-image-wrapper:before,
.sidebar .block-wishlist .block-content .product-items .product-item .product-item-info:hover .product-item-photo .product-image-wrapper:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
}
.sidebar .block-wishlist .actions-toolbar {
  margin: 0;
  text-align: right;
}
.sidebar .account-nav {
  display: inline-block;
  width: 100%;
}
.sidebar .account-nav .item {
  width: 100%;
}
.sidebar .account-nav .item strong,
.sidebar .account-nav .item a {
  width: 100%;
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  line-height: 1;
  color: #696969;
}
.sidebar .account-nav .item strong:before,
.sidebar .account-nav .item a:before {
  content: "";
  width: 7px;
  height: 1px;
  background-color: #696969;
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.sidebar .account-nav .item strong:hover,
.sidebar .account-nav .item a:hover {
  padding-left: 20px;
  color: #295135;
}
.sidebar .account-nav .item strong:hover:before,
.sidebar .account-nav .item a:hover:before {
  opacity: 1;
  visibility: visible;
}
.sidebar .account-nav .item strong {
  padding-left: 20px;
  color: #295135;
  font-weight: 400;
}
.sidebar .account-nav .item strong:before {
  opacity: 1;
  visibility: visible;
}
.sidebar .account-nav .item.current strong {
  color: #295135;
}
.sidebar .account-nav .item.current strong:before {
  content: normal;
}
.sidebar .block-brand .brand-list li.item {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
}
.sidebar .block-brand .brand-list li.item a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.sidebar .block-brand .brand-list li.item a:after {
  content: "";
  display: inline-block;
  width: 999px;
  height: 1px;
  background-color: #f4f4f4;
  margin-left: 14px;
  position: absolute;
  bottom: 9px;
  z-index: -1;
}
.sidebar .block-brand .brand-list li.item a .count {
  font-size: 15px;
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 14px;
  background-color: #fff;
}
.sidebar .block-brand .view-all {
  color: #295135;
  text-align: right;
}
.sidebar .block-brand .view-all:hover {
  color: #696969;
}
.sidebar .block-reorder .subtitle {
  display: none;
}
.sidebar .block-reorder .actions-toolbar {
  text-align: right;
  margin-top: 0;
  margin-bottom: 0;
}
.sidebar .block-reorder .product-items {
  display: inline-block;
  width: 100%;
}
.sidebar .block-reorder .product-items .product-item {
  display: inline-flex;
  display: -webkit-inline-flex;
  margin-bottom: 5px;
  margin-top: 5px;
  width: 100%;
}
.sidebar .block-reorder .product-items .product-item .choice {
  width: auto;
}
.sidebar .block-reorder .product-items .product-item .choice label {
  display: none;
}
.sidebar .block-reorder .product-items .product-item .choice input {
  margin-right: 10px;
  margin-top: 4px;
}
.catalog-category-view .main.col-md-9 .products-grid .row-col-lg-custom5 .product-item .product-item-info .product-top .product-item-inner {
  left: auto;
  right: 10px;
  top: 0;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  z-index: 100;
}
.catalog-category-view .main.col-md-9 .products-grid .row-col-lg-custom5 .product-item .product-item-info .product-top .product-item-inner .product-item-actions {
  display: block;
}
.catalog-category-view .main.col-md-9 .products-grid .row-col-lg-custom5 .product-item .product-item-info .product-top .product-item-inner .btn-addto {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.catalog-category-view .main.col-md-9 .products-grid .row-col-lg-custom5 .product-item .product-item-info .product-top .product-item-inner .btn-addto,
.catalog-category-view .main.col-md-9 .products-grid .row-col-lg-custom5 .product-item .product-item-info .product-top .product-item-inner form {
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}
.catalog-category-view .main.col-md-9 .products-grid .row-col-lg-2 .product-item .product-item-info .product-top .product-item-inner {
  z-index: 100;
}
.catalog-category-view .main.col-md-9 .products-grid .row-col-lg-2 .product-item .product-item-info .product-top .product-item-inner .btn-addto {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .catalog-category-view .main.col-md-9 .products-grid .col-md-custom-5 {
    width: 33.333%;
  }
  .catalog-category-view .main.col-md-9 .products-grid .col-md-custom-5.row-sm-first {
    clear: left;
  }
  .catalog-category-view .main.col-md-9 .products-grid .col-md-2 {
    width: 33.333%;
  }
  .catalog-category-view .main.col-md-9 .products-grid .col-md-2.row-sm-first {
    clear: left;
  }
}
.products-list {
  margin-bottom: 30px;
}
.products-list .product-item {
  padding-top: 30px;
  padding-bottom: 44px;
  border-bottom: 1px solid #f4f4f4;
}
.products-list .product-item .product-item-details .label-box {
  position: relative;
  min-height: 15px;
  line-height: 1;
}
.products-list .product-item .product-item-details .label-box .product-label {
  right: auto;
}
.products-list .product-item .product-item-details .product-item-name h4 {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.products-list .product-item .product-item-details .product-item-name h4:after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: #e7e5e4;
  margin-top: 20px;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.products-list .product-item .product-item-details .product-item-description {
  font-size: 15px;
  margin-bottom: 25px;
}
.products-list .product-item .product-item-details .product-item-inner .product-item-actions {
  display: inline-flex;
  display: -webkit-inline-flex;
}
.products-list .product-item .product-item-details .product-item-inner .product-item-actions .btn-addto {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: none;
  border: 1px solid #295135;
  color: #295135;
}
.products-list .product-item .product-item-details .product-item-inner .product-item-actions .btn-addto:hover {
  background-color: #295135;
  color: #fff;
}
.products-list .product-item .product-item-details .product-reviews-summary .rating-summary {
  text-align: right;
}
.products-list .product-item .product-item-details .product-reviews-summary .rating-summary p {
  color: #ababab;
  margin-top: 3px;
  margin-bottom: 0;
}
.products-list .product-item .product-item-details .product-reviews-summary:not(.empty) .reviews-actions {
  display: none;
}
.products-list .product-item:first-child {
  padding-top: 0;
}
.products-list .product-item:hover .product-item-details .product-item-name h4:after {
  width: 50px;
  background-color: #295135;
}
.fotorama__fullscreen-icon:focus:after,
.fotorama__zoom-out:focus:after,
.fotorama__zoom-in:focus:after,
.fotorama__arr:focus:after,
.fotorama__stage__shaft:focus:after,
.fotorama__nav__frame--thumb:focus .fotorama__thumb:after,
.fotorama__nav__frame--dot:focus .fotorama__dot:after {
  box-shadow: none !important;
}
.fotorama__caption,
.action-skip-wrapper {
  display: none;
}
.catalog-product-view .breadcrumbs > div ul > li {
  display: inline-block;
}
.catalog-product-view .breadcrumbs > div ul > li + li:before {
  content: "/";
  display: inline-block;
}
.catalog-product-view .breadcrumbs > div ul > li strong {
  font-weight: 400;
  color: #295135;
}
.product-details-view {
  margin-bottom: 4rem;
}
.product-details-view .product-addto {
  text-align: left;
  padding-top: 5px;
}
.product-details-view .product-addto .btn-addto {
  width: auto;
  height: auto;
  line-height: 40px;
  border: none;
  background-color: transparent;
  color: #333;
  margin-left: 0;
  font-size: 14px;
  text-transform: unset;
  word-spacing: 1px;
}
.product-details-view .product-addto .btn-addto i {
  display: inline-block;
  vertical-align: top;
}
.product-details-view .product-addto .btn-addto i:before {
  content: "\f141";
  color: #cf2a27;
  font-size: 20px;
  margin-left: 5px;
}
.product-details-view .product-addto .btn-addto:hover,
.product-details-view .product-addto .btn-addto:focus,
.product-details-view .product-addto .btn-addto:active {
  color: #295135;
}
.product-details-view .product-addto .btn-addto:hover i:before,
.product-details-view .product-addto .btn-addto:focus i:before,
.product-details-view .product-addto .btn-addto:active i:before {
  color: #295135;
}
.product-details-view .product-info-main .product-top-info {
  width: 100%;
}
.product-details-view .product-info-main .product-top-info .product-reviews-summary {
  text-align: right;
  float: right;
}
.product-details-view .product-info-main .product-top-info .product-reviews-summary .rating-summary p {
  margin-bottom: 0;
}
.product-details-view .product-info-main .product-top-info .product-reviews-summary .reviews-actions a.view {
  display: none;
}
.product-details-view .product-info-main .product-top-info .product-reviews-summary .reviews-actions a {
  font-size: 14px;
  color: #ababab;
  display: block;
}
.product-details-view .product-info-main .product-top-info .product-reviews-summary .reviews-actions a:hover {
  color: #295135;
}
.product-details-view .product-info-main .box-label {
  position: absolute;
  top: 0;
  left: -170px;
}
.product-details-view .product-info-main .box-label .product-label {
  left: 0;
  right: auto;
  text-align: center;
}
.product-details-view .product-info-main .product-name .product-title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #333;
  position: relative;
  margin-bottom: 15px;
  display: block;
  margin-top: 3px;
  text-transform: uppercase;
}
.product-details-view .product-info-main .price-box .price {
  font-size: 24px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #696969;
  line-height: 1;
}
.product-details-view .product-info-main .price-box .old-price .price {
  font-size: 20px !important;
  color: #ababab;
  margin-right: 20px;
}
.product-details-view .product-info-main .price-box.price-final_price {
  font-style: normal;
  -webkit-display: inline-flex;
  -moz-display: inline-flex;
  -ms-display: inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.product-details-view .product-info-main .short_description {
  line-height: 26px;
  color: #aaa;
}
.product-details-view .product-info-main .short_description p {
  margin: 0;
}
.product-details-view .product-info-main .product-info-stock-sku {
  line-height: 1;
  position: relative;
  font-size: 12px;
  margin-top: 20px;
}
.product-details-view .product-info-main .product-info-stock-sku:after {
  content: "";
  display: block;
  height: 2px;
  width: 100px;
  background-color: #295135;
  margin-top: 10px;
}
.product-details-view .product-info-main .product-info-stock-sku ul li {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}
.product-details-view .product-info-main .product-info-stock-sku ul li:last-child {
  margin-bottom: 0;
}
.product-details-view .product-info-main .product-info-stock-sku ul li:first-child {
  margin-top: 0;
}
.product-details-view .product-info-main .product-info-stock-sku ul li .label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 0;
  margin: 0 10px 0 0;
  display: inline-block;
  float: left;
}
.product-details-view .product-info-main .product-info-stock-sku ul li .value {
  text-transform: capitalize;
  line-height: 1;
  display: inline-block;
  width: calc(100% - 85px);
  font-weight: 300;
}
.product-details-view .product-info-main .product-info-stock-sku ul li .value a {
  color: #295135;
}
.product-details-view .product-info-main .product-info-stock-sku ul li .value a:hover {
  color: #696969;
}
.product-details-view .product-info-main .product-add-form {
  padding-top: 20px;
}
.product-details-view .product-info-main .product-add-form .product-addto {
  text-align: left;
  padding-top: 5px;
}
.product-details-view .product-info-main .product-add-form .product-addto .btn-addto {
  width: auto;
  height: auto;
  line-height: 40px;
  border: none;
  background-color: transparent;
  color: #333;
  margin-left: 0;
  font-size: 14px;
  text-transform: unset;
  word-spacing: 1px;
}
.product-details-view .product-info-main .product-add-form .product-addto .btn-addto i {
  display: inline-block;
  vertical-align: top;
}
.product-details-view .product-info-main .product-add-form .product-addto .btn-addto i:before {
  content: "\f141";
  color: #cf2a27;
  font-size: 20px;
  margin-left: 5px;
}
.product-details-view .product-info-main .product-add-form .product-addto .btn-addto:hover,
.product-details-view .product-info-main .product-add-form .product-addto .btn-addto:focus,
.product-details-view .product-info-main .product-add-form .product-addto .btn-addto:active {
  color: #295135;
}
.product-details-view .product-info-main .product-add-form .product-addto .btn-addto:hover i:before,
.product-details-view .product-info-main .product-add-form .product-addto .btn-addto:focus i:before,
.product-details-view .product-info-main .product-add-form .product-addto .btn-addto:active i:before {
  color: #295135;
}
.product-details-view .product-info-main .product-add-form .sharethis-inline-share-buttons:empty {
  background: url(../images/bg_social.jpg) left top no-repeat;
  height: 32px;
  width: 192px;
  background-size: cover;
}
.product-details-view .product-info-main .available.stock {
  display: none;
}
.product-details-view .product-info-main .product-brand {
  margin-top: 20px;
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.product-details-view .product-info-main .product-brand .brand-name {
  color: #696969;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  width: 155px;
  line-height: 1;
  vertical-align: top;
}
.product-details-view .product-info-main .product-brand .brand-name a {
  color: #696969;
}
.product-details-view .product-info-main .product-brand .brand-name a:hover {
  color: #295135;
}
.product-details-view .product-info-main .product-brand .brand-image {
  display: inline-block;
}
.product-details-view .product-info-main .product-brand .brand-image img {
  max-width: 70px;
}
.product-details-view .product.media .fotorama__thumb__arr--left .fotorama__thumb--icon {
  background: none !important;
  width: 60px;
  padding: 0;
  text-align: center;
}
.product-details-view .product.media .fotorama__thumb__arr--left .fotorama__thumb--icon:before {
  content: "\f3d2";
  display: inline-block;
  font-family: "Ionicons";
  font-size: 34px;
  color: #696969;
}
.product-details-view .product.media .fotorama__thumb__arr--right .fotorama__thumb--icon {
  background: none !important;
  text-align: center;
  padding: 0;
}
.product-details-view .product.media .fotorama__thumb__arr--right .fotorama__thumb--icon:before {
  content: "\f3d3";
  display: inline-block;
  font-family: "Ionicons";
  font-size: 34px;
  color: #696969;
}
.product-details-view .product.media .fotorama__thumb-border {
  border: 1px solid #295135;
}
.box-tocart .field.qty {
  display: inline-block;
  width: 100%;
}
.box-tocart .field.qty .control {
  width: 100%;
  display: inline-flex;
  display: -webkit-inline-flex;
  background-color: #f8f7f7;
  border-radius: 4px;
  margin-bottom: 15px;
}
.box-tocart .field.qty .control .edit-qty {
  width: 37px;
  text-align: center;
  height: 40px;
  color: #ababab;
  font-size: 18px;
  line-height: 40px;
  cursor: pointer;
}
.box-tocart .field.qty .control .edit-qty:hover {
  color: #295135;
}
.box-tocart .field.qty .control .input-text.qty {
  width: calc(100% - 74px);
  background-color: transparent;
  border: none;
  text-align: center;
  font-size: 15px;
  color: #696969;
  margin: 0;
}
.box-tocart .field.qty .available.stock {
  display: none;
  font-size: 15px;
  color: #ababab;
  line-height: 40px;
}
.box-tocart .field.qty .available.stock [class*='ion-'] {
  color: #295135;
  font-size: 16px;
  margin-right: 10px;
}
.box-tocart .actions .btn-primary {
  width: 100%;
  border-radius: 2px;
}
.page-product-grouped .product-details-view table.grouped {
  margin-bottom: 40px;
}
.page-product-grouped .product-details-view table.grouped caption {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  margin-top: 10px;
  text-align: left;
  text-transform: uppercase;
}
.page-product-grouped .product-details-view table.grouped > thead > tr > th {
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #333;
  font-weight: 700;
}
.page-product-grouped .product-details-view table.grouped > tbody > tr > td {
  padding: 15px 10px;
  text-align: center;
  vertical-align: middle;
}
.page-product-grouped .product-details-view table.grouped > tbody > tr > td h4.product-item-name {
  color: #333;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
}
.page-product-grouped .product-details-view table.grouped > tbody > tr > td.price .price-box {
  margin-bottom: 0;
}
.page-product-grouped .product-details-view table.grouped > tbody > tr > td.price .price-box .old-price {
  margin-right: 10px;
}
.page-product-grouped .product-details-view table.grouped > tbody > tr > td.price .price-box .old-price .price {
  margin: 0;
}
.page-product-grouped .product-details-view table.grouped > tbody > tr > td.qty .input-text {
  max-width: 60px;
  margin: 0 auto;
  text-align: center;
}
.product.info.detailed {
  display: inline-block;
  width: 100%;
}
.product.info.detailed .items {
  display: block;
  float: left;
  width: 100%;
  text-align: left;
}
.product.info.detailed .items > .item.title {
  position: relative;
  font-size: 2rem;
  letter-spacing: 0.05em;
  padding: 0 2rem 0 0;
  margin: 0 50% 1rem 0;
  display: inline-block;
  width: auto;
  float: none;
  text-transform: uppercase;
  color: #295135;
}
.product.info.detailed .items > .item.title a {
  font-size: 2rem;
  margin: 0;
  padding: 2rem 1rem 0 0;
  color: inherit;
}
.product.info.detailed .items > .item.title a:after {
  content: '';
  width: 50%;
  height: 2px;
  display: block;
  margin-top: 1rem;
  background-color: #295135;
}
.product.info.detailed .items > .item.title:after {
  content: '\f3d0';
  font-family: 'Ionicons';
  font-size: 15px;
  display: inline-block;
  text-align: right;
  float: right;
  font-style: normal;
  margin-top: 5px;
}
.product.info.detailed .items > .item.title.active:after {
  content: '\f3d8';
}
.product.info.detailed .items > .item.title#tab-label-reviews a .counter:before {
  content: "(";
  display: inline-block;
}
.product.info.detailed .items > .item.title#tab-label-reviews a .counter:after {
  content: ")";
  display: inline-block;
}
.product.info.detailed .items > .item.content {
  display: block;
  width: 100%;
  line-height: 26px;
  font-size: 14px;
  box-shadow: none;
  background-color: #fff;
  text-align: left;
}
.product.info.detailed .items > .item.content#reivews {
  padding-left: 30px;
  padding-right: 30px;
}
.product.info.detailed .additional-attributes-wrapper table {
  max-width: 400px;
}
.product.info.detailed .additional-attributes-wrapper table tbody tr th,
.product.info.detailed .additional-attributes-wrapper table tbody tr td {
  width: 50%;
  padding: 10px 20px;
}
.review-control-vote {
  margin-top: 10px;
  margin-bottom: 48px;
  overflow: hidden;
}
.review-control-vote:before {
  content: "\f4b2" "\f4b2" "\f4b2" "\f4b2" "\f4b2";
  font-size: 30.75px;
  font-family: 'Ionicons';
  display: inline-block;
  color: #ababab;
  vertical-align: top;
  display: block;
  position: absolute;
  z-index: 1;
  letter-spacing: 10px;
  line-height: 30px;
  height: 30px;
}
.review-control-vote input[type="radio"] {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  vertical-align: top;
}
.review-control-vote label {
  cursor: pointer;
  display: block;
  position: absolute;
}
.review-control-vote label:before {
  font-size: 30px;
  height: 30px;
  line-height: 30px;
  letter-spacing: 10px;
  font-family: 'Ionicons';
  vertical-align: top;
  opacity: 0;
  color: #f5cc26;
}
.review-control-vote label span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.review-control-vote label:hover:before {
  opacity: 1;
}
.review-control-vote input[type="radio"]:focus + label:before,
.review-control-vote input[type="radio"]:checked + label:before {
  opacity: 1;
}
.review-control-vote .rating-1 {
  z-index: 6;
}
.review-control-vote .rating-1:before {
  content: "\f4b3";
}
.review-control-vote .rating-2 {
  z-index: 5;
}
.review-control-vote .rating-2:before {
  content: "\f4b3" "\f4b3";
}
.review-control-vote .rating-3 {
  z-index: 4;
}
.review-control-vote .rating-3:before {
  content: "\f4b3" "\f4b3" "\f4b3";
}
.review-control-vote .rating-4 {
  z-index: 3;
}
.review-control-vote .rating-4:before {
  content: "\f4b3" "\f4b3" "\f4b3" "\f4b3";
}
.review-control-vote .rating-5 {
  z-index: 2;
}
.review-control-vote .rating-5:before {
  content: "\f4b3" "\f4b3" "\f4b3" "\f4b3" "\f4b3";
}
.review-add,
.review-list {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.review-add .block-title h4,
.review-list .block-title h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 27px;
  display: inline-block;
  letter-spacing: 0.05em;
}
.review-add .block-title .count,
.review-list .block-title .count {
  color: #295135;
}
.review-add .review-form input,
.review-add .review-form textarea {
  margin-bottom: 10px;
}
.review-add .review-form .field {
  margin-bottom: 20px;
}
.review-add .review-field-rating .label {
  color: #696969;
  font-size: 15px;
  line-height: 45px;
  margin: 0 20px 0 0;
}
.review-list {
  margin-bottom: 55px;
}
.review-list .review-items .review-item {
  display: inline-flex;
  display: -webkit-inline-flex;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f4f4f4;
}
.review-list .review-items .review-item .review-left {
  width: 60px;
}
.review-list .review-items .review-item .review-left span {
  font-size: 35px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 1px solid #696969;
  text-align: center;
  border-radius: 50%;
}
.review-list .review-items .review-item .review-right {
  text-align: left;
  padding-left: 40px;
  width: 100%;
}
.review-list .review-items .review-item .review-right .meta-box {
  margin-bottom: 10px;
}
.review-list .review-items .review-item .review-right .meta-box .review-details-value,
.review-list .review-items .review-item .review-right .meta-box .review-ratings {
  display: inline-block;
}
.review-list .review-items .review-item .review-right .meta-box .author {
  color: #333;
  text-transform: uppercase;
}
.review-list .review-items .review-item .review-right .meta-box time {
  color: #ababab;
  margin-left: 20px;
}
.review-list .review-items .review-item .review-right .meta-box time:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #ababab;
  border-radius: 50%;
  margin-right: 20px;
}
.review-list .review-items .review-item .review-right .meta-box .rating-summary .rating-result {
  width: 80px;
}
.review-list .review-toolbar .limiter {
  display: none;
}
.product-options-wrapper .fieldset > .field {
  border-bottom: 1px solid #eee;
}
.product-options-wrapper .fieldset .field {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.product-options-wrapper .fieldset .field.choice {
  width: auto;
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 0;
}
.product-options-wrapper .fieldset .field.date {
  margin-bottom: 0;
  padding-bottom: 0;
}
.product-options-wrapper .fieldset .field .label {
  color: #333;
  font-size: 15px;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  display: block;
  white-space: unset;
}
.product-options-wrapper .fieldset .field .control .nested .qty-holder {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
}
.product-options-wrapper .fieldset .field .control .nested .qty-holder .label {
  font-size: 12px;
  color: #696969;
  padding: 0;
  margin-bottom: 5px;
  display: inline-block;
}
.product-options-wrapper .fieldset .field .control .nested .qty-holder .label:after {
  content: ": ";
}
.product-options-wrapper .fieldset .field .control .nested .qty-holder .control {
  display: inline-block;
  max-width: 50px;
  margin-left: 10px;
}
.product-options-wrapper .fieldset .field .control .nested .qty-holder .control input.qty {
  max-width: 50px;
  text-align: center;
}
.product-options-wrapper .fieldset .field select.multiselect {
  margin-bottom: 20px;
}
.product-options-wrapper .fieldset .field select option {
  color: #333;
  font-weight: 700;
}
.product-options-wrapper .fieldset .field:not(.choice) {
  border: none;
}
.bundle-options-container {
  display: inline-block;
  width: 100%;
}
.bundle-options-container .product-add-form {
  display: none;
}
.bundle-options-container .bundle-options-wrapper,
.bundle-options-container .block-bundle-summary {
  display: inline-block;
  float: left;
  width: 50%;
}
.bundle-options-container .bundle-options-wrapper {
  padding-right: 15px;
}
.bundle-options-container .bundle-options-wrapper .fieldset-bundle-options > .title {
  font-size: 18px;
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
}
.bundle-options-container .block-bundle-summary {
  padding-left: 15px;
}
.bundle-options-container .block-bundle-summary > .title {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  text-transform: uppercase;
}
.bundle-options-container .block-bundle-summary .bundle-info {
  display: inline-flex;
  display: -webkit-inline-flex;
  width: 100%;
  margin-bottom: 20px;
}
.bundle-options-container .block-bundle-summary .bundle-info .product-image-container {
  margin-right: 20px;
}
.bundle-options-container .block-bundle-summary .bundle-info .product-details .product.name {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}
.bundle-options-container .block-bundle-summary .bundle-info .product-details p.available {
  display: none;
}
.bundle-options-container .block-bundle-summary .bundle-info .product-details .product-addto {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}
.bundle-options-container .block-bundle-summary .bundle-info .product-details .product-addto a {
  display: inline-block;
  margin-right: 10px;
}
.bundle-options-container .block-bundle-summary .bundle-info .product-details .product-addto .btn-addto {
  border: 1px solid #295135;
  background-color: #fff;
  color: #295135;
}
.bundle-options-container .block-bundle-summary .bundle-info .product-details .product-addto .btn-addto:hover {
  background-color: #295135;
  color: #fff;
}
.bundle-options-container .block-bundle-summary .bundle-info .product-details .price-box .price {
  font-size: 24px;
}
.bundle-options-container .block-bundle-summary .bundle-summary.empty {
  display: none;
}
.bundle-options-container .block-bundle-summary .bundle-summary .subtitle {
  font-size: 15px;
  text-transform: uppercase;
  color: #333;
  font-weight: 700;
}
.bundle-options-container .block-bundle-summary .bundle-summary .items li .label {
  color: #333;
  font-size: 14px;
  display: block;
  text-align: left;
  padding: 0;
  margin-bottom: 5px;
}
body.page-layout-2columns-right .product.info.detailed .items,
body.page-layout-2columns-left .product.info.detailed .items {
  text-align: left;
}
body.page-layout-2columns-right .product.info.detailed .items.item.content#reviews,
body.page-layout-2columns-left .product.info.detailed .items.item.content#reviews {
  padding-left: 30px;
  padding-right: 30px;
}
body.page-layout-1column .product.info.detailed .items {
  text-align: left;
}
body.page-layout-1column .product.info.detailed .items.item.content#reviews {
  padding-left: 0;
  padding-right: 0;
}
body.page-layout-1column .product.info.detailed .items.item.content .product.description {
  text-align: center;
  margin: 0 auto;
  max-width: 770px;
}
body.page-layout-1column #reviews .review-add,
body.page-layout-1column #reviews .review-list {
  max-width: 770px;
  margin: 0 auto;
}
body.page-layout-1column .upsell .block-title h3,
body.page-layout-1column .brand-related-products .block-title h3 {
  text-align: center;
}
.block.upsell,
.block.crosssell {
  display: inline-block;
  width: 100%;
}
.block.upsell .block-title h3,
.block.crosssell .block-title h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 30px;
}
.block.upsell .owl-carousel .owl-nav [class*="owl-"],
.block.crosssell .owl-carousel .owl-nav [class*="owl-"] {
  top: -65px;
  opacity: 1;
  visibility: visible;
  right: 0;
}
.block.upsell .owl-carousel .owl-nav .owl-prev,
.block.crosssell .owl-carousel .owl-nav .owl-prev {
  right: 50px;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  left: auto;
}
.block.upsell .owl-carousel .owl-nav .owl-next,
.block.crosssell .owl-carousel .owl-nav .owl-next {
  right: 0;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
}
.block.upsell .owl-carousel:hover .owl-nav .owl-prev,
.block.crosssell .owl-carousel:hover .owl-nav .owl-prev,
.block.upsell .owl-carousel:hover .owl-nav .owl-next,
.block.crosssell .owl-carousel:hover .owl-nav .owl-next {
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
}
.block.related .block-actions {
  margin-bottom: 15px;
}
.block.related .block-actions button.select {
  background-color: #f4f1e3;
  color: #696969;
}
.block.related .block-actions button.select:hover,
.block.related .block-actions button.select:focus,
.block.related .block-actions button.select:active {
  background-color: #295135;
  color: #fff;
}
.block.related .product-item-info .meta-box .box-label {
  position: relative;
  min-height: 15px;
}
.block.related .product-item-info .meta-box .box-label .product-label {
  text-align: left;
}
.block.related .product-item-info .related.choice input {
  display: inline-block;
  float: left;
}
.block.related .product-item-info .related.choice .label {
  color: #696969;
  font-size: 13px;
}
.block.related .owl-carousel .owl-nav [class*="owl-"] {
  top: -45px;
  width: 30px;
  height: 30px;
  left: auto;
  right: auto;
  line-height: 30px;
  opacity: 1;
  visibility: visible;
}
.block.related .owl-carousel .owl-nav .owl-prev {
  left: auto;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  right: 40px;
}
.block.related .owl-carousel .owl-nav .owl-next {
  right: 0;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
}
.block.related .owl-carousel:hover .owl-nav .owl-prev,
.block.related .owl-carousel:hover .owl-nav .owl-next {
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
}
.block.upsell,
.block.crosssell,
.block.related {
  margin-bottom: 1rem;
}
.brand-related-products {
  margin-top: 50px;
}
.brand-related-products .block-title h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
.brand-related-products .owl-carousel .owl-nav [class*="owl-"] {
  top: -65px;
  opacity: 1;
  visibility: visible;
  right: 0;
}
.brand-related-products .owl-carousel .owl-nav .owl-prev {
  right: 50px;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  left: auto;
}
.brand-related-products .owl-carousel .owl-nav .owl-next {
  right: 0;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
}
.brand-related-products .owl-carousel:hover .owl-nav .owl-prev,
.brand-related-products .owl-carousel:hover .owl-nav .owl-next {
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
}
.account .block-title h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #333;
  margin-bottom: 30px;
  margin-top: 0;
  display: inline-block;
}
.account .block-title a.action {
  color: #295135;
  margin-left: 10px;
}
.account .block-title a.action:hover {
  color: #696969;
}
.account h4 {
  color: #333;
  margin-bottom: 20px;
}
.account .field {
  margin-bottom: 0;
}
.account .field.note {
  margin-bottom: 15px;
}
.account .field.captcha {
  margin-bottom: 25px;
}
.account .field.captcha .input-text {
  margin-bottom: 25px;
}
.account .field.captcha .nested .captcha-reload {
  margin-left: 15px;
}
.account.customer-account-index .main > .block {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f4f4f4;
}
.account.customer-account-index .block-reviews-dashboard .block-title h3 {
  display: inline-block;
}
.account.customer-account-index .block-reviews-dashboard .block-title a.action {
  margin-right: 10px;
}
.account.customer-account-index .block-reviews-dashboard .block-content .items .item {
  padding: 5px 0;
}
.account.customer-account-index .block-reviews-dashboard .block-content .items .item .product-name {
  color: #333;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}
.account .actions-toolbar {
  margin-top: 25px;
  margin-bottom: 30px;
}
.account .table > thead > tr > th {
  border-color: #f4f4f4;
  border-bottom-width: 1px;
  text-align: center;
  color: #333;
  text-transform: uppercase;
  padding: 10px;
}
.account .table > thead > tr > th.subtotal {
  text-align: right;
  padding-right: 3rem;
}
.account .table > thead > tr > th.name {
  text-align: left;
}
.account .table > tbody > tr > td {
  border-color: #f4f4f4;
  padding: 20px 10px;
  vertical-align: middle;
  text-align: center;
}
.account .table > tbody > tr > td.shipping {
  max-width: 20rem;
}
.account .table > tbody > tr > td.subtotal {
  text-align: right;
  padding-right: 3rem;
}
.account .table > tbody > tr > td.name {
  text-align: left;
}
.account .table > tbody + tbody {
  border-top: solid 1px #ddd;
}
.account .table > tfoot > tr > td,
.account .table > tfoot > tr > th {
  text-align: right;
  padding-right: 3rem;
  background: transparent;
  border: none;
}
.account .toolbar .pager .toolbar-amount {
  text-align: left;
}
.account .toolbar .pager .limiter {
  display: none;
}
.account.wishlist-index-index .products-grid .product-item {
  position: relative;
}
.account.wishlist-index-index .products-grid .product-item .product-item-info {
  position: relative;
}
.account.wishlist-index-index .products-grid .product-item .product-item-photo .img-thumbnail {
  border: none;
}
.account.wishlist-index-index .products-grid .product-item .product-item-name {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner {
  padding-left: 10px;
  padding-right: 10px;
  display: block;
  position: absolute;
  border: 1px solid #f3f0e2;
  border-top: none;
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.176);
  background-color: #fff;
  left: -1px;
  z-index: 2;
  right: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transform: translateY(-10%);
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -o-transform: translateY(-10%);
  padding-bottom: 30px;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .comment-box {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .comment-box .label {
  display: none;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .comment-box textarea {
  height: 50px;
  width: 100%;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .box-tocart .fieldset {
  width: 100%;
  display: inline-flex;
  display: -webkit-inline-flex;
  text-align: center;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .box-tocart .fieldset .qty,
.account.wishlist-index-index .products-grid .product-item .product-item-inner .box-tocart .fieldset .product-item-actions {
  display: inline-block;
  width: auto;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .box-tocart .fieldset .qty {
  margin: 0;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .box-tocart .fieldset .qty .control {
  margin: 0;
  margin-right: 10px;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .box-tocart .fieldset .qty .label {
  display: none;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .box-tocart .fieldset .qty input-text.qty {
  width: 50px;
  margin: 0;
  margin-right: 10px;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .box-tocart .fieldset .product-item-actions .actions-primary {
  float: left;
  display: inline-block;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .product-item-actions {
  width: 100%;
  text-align: center;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .product-item-actions a {
  display: inline-block;
  color: #295135;
  margin: 0 5px;
}
.account.wishlist-index-index .products-grid .product-item .product-item-inner .product-item-actions a:hover {
  color: #696969;
}
.account.wishlist-index-index .products-grid .product-item:hover .product-item-inner {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
}
.account.wishlist-index-index .actions-toolbar button.action {
  margin-bottom: 15px;
}
.account .box-actions {
  margin-top: 25px;
}
#shopping-cart-table {
  margin-bottom: 30px;
}
#shopping-cart-table thead tr {
  border-radius: 4px;
}
#shopping-cart-table thead tr th {
  border: none;
  padding: 24px 10px 21px 30px;
  text-align: left;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: #f8f7f7;
}
#shopping-cart-table thead tr th.products {
  padding-left: 30px;
}
#shopping-cart-table thead tr th.qty {
  text-align: center;
}
#shopping-cart-table tbody tr td {
  padding: 30px 10px;
  border-top: none;
  vertical-align: middle;
  margin: 0;
  text-align: left;
}
#shopping-cart-table tbody tr td.item {
  font-size: 0;
}
#shopping-cart-table tbody tr td.item .product-item-photo {
  display: inline-block;
  width: 120px;
  font-size: 0;
  margin-right: 20px;
  padding: 1px;
}
#shopping-cart-table tbody tr td.item .product-item-photo .product-image-photo {
  border-radius: 0;
  padding: 0;
  border: none;
  bottom: 0;
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  z-index: 0;
}
#shopping-cart-table tbody tr td.item .product-item-photo span {
  display: block;
}
#shopping-cart-table tbody tr td.item .product-item-details {
  width: calc(100% - 195px);
  display: inline-block;
  vertical-align: top;
  font-size: 1.3rem;
}
#shopping-cart-table tbody tr td.item .product-item-details .product-item-name {
  font-size: 1.5rem;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  margin-top: 2px;
  font-weight: bold;
}
#shopping-cart-table tbody tr td.item .product-item-details .item-options {
  display: flex;
  align-items: baseline;
}
#shopping-cart-table tbody tr td .cart-price .price {
  font-size: 18px;
  line-height: 30px;
  padding-top: 20px;
  display: block;
}
#shopping-cart-table tbody tr td.qty {
  text-align: center;
}
#shopping-cart-table tbody tr td.qty .field.qty .label {
  display: none;
}
#shopping-cart-table tbody tr td.qty .field.qty .control.qty {
  display: inline-flex;
  display: -webkit-inline-flex;
  text-align: center;
  vertical-align: middle;
  background-color: #f8f7f7;
  border-radius: 2px;
}
#shopping-cart-table tbody tr td.qty .field.qty .control.qty .edit-qty {
  width: 38px;
  display: inline-block;
  cursor: pointer;
  line-height: 4rem;
  font-size: 2.8rem;
}
#shopping-cart-table tbody tr td.qty .field.qty .control.qty .edit-qty.disabled {
  color: #ddd;
  pointer-events: none;
}
#shopping-cart-table tbody tr td.qty .field.qty .control.qty .edit-qty:hover {
  color: #295135;
}
#shopping-cart-table tbody tr td.qty .field.qty .control.qty .input-text {
  text-align: center;
  margin: 0 auto;
  background-color: #f8f7f7;
  color: #333;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
  font-weight: 700;
  width: 31px;
  padding: 0;
  line-height: 40px;
}
#shopping-cart-table tbody tr td.price .price {
  color: #333;
}
#shopping-cart-table tbody tr td.price .old-price {
  color: #a7a7a7;
}
#shopping-cart-table tbody tr td .actions-toolbar {
  text-align: center;
}
#shopping-cart-table tbody tr td .actions-toolbar > .action-edit {
  display: none;
}
#shopping-cart-table tbody tr td .actions-toolbar > .action-delete {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  background-color: #f8f7f7;
  font-size: 12px;
  color: #696969;
  display: block;
  line-height: 32px;
}
#shopping-cart-table tbody tr td .actions-toolbar > .action-delete:hover {
  color: #fff;
  background-color: #295135;
}
#shopping-cart-table tbody tr td .actions-toolbar .gift-options-cart-item {
  text-align: right;
  display: inline-block;
  width: 100%;
}
#shopping-cart-table tbody tr td .actions-toolbar .gift-options-cart-item .gift-content {
  display: none;
}
#shopping-cart-table tbody tr td .actions-toolbar .gift-options-cart-item .gift-content._active {
  display: block;
}
#shopping-cart-table tbody tr td .actions-toolbar .gift-options-cart-item .gift-content .gift-options-content .field {
  text-align: left;
}
#shopping-cart-table tbody tr td .actions-toolbar .gift-options-cart-item .gift-content .gift-options-content .field .label {
  text-align: left;
}
#shopping-cart-table tbody tr td .actions-toolbar .gift-options-cart-item .gift-content .actions-toolbar button {
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 10px;
  float: right;
}
#shopping-cart-table tbody tr td .actions-toolbar .gift-options-cart-item .action-gift {
  color: #295135;
}
#shopping-cart-table tbody tr td .actions-toolbar .gift-options-cart-item .action-gift:after {
  content: "\f107";
  font-family: 'FontAwesome';
  font-size: 14px;
  display: inline-block;
  margin-left: 5px;
  color: #696969;
}
#shopping-cart-table tbody tr td .actions-toolbar .gift-options-cart-item .action-gift._active:after {
  content: "\f106";
}
.cart-container {
  padding-bottom: 100px;
}
.cart-container .cart.actions {
  border-bottom: 1px solid #f4f4f4;
  display: inline-block;
  width: 100%;
}
.cart-container .cart.actions button,
.cart-container .cart.actions .btn {
  margin-bottom: 30px;
}
.cart-container .cart.actions button.clear.btn {
  background-color: transparent;
  font-weight: 700;
  color: #ababab;
  max-height: 40px;
  padding: 0 23px;
  line-height: 34px;
}
.cart-container .cart.actions button.clear.btn [class*='ion-ios-'] {
  font-size: 18px;
  color: #295135;
  margin-right: 10px;
}
.cart-container .cart.actions button.clear.btn:hover,
.cart-container .cart.actions button.clear.btn:focus,
.cart-container .cart.actions button.clear.btn.active {
  color: #295135;
}
.cart-container .shopping-cart-bottom {
  margin-top: 35px;
}
.cart-container .shopping-cart-bottom .summary.title {
  display: none;
}
.cart-container .shopping-cart-bottom .block-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 30px;
}
.cart-container .shopping-cart-bottom .discount .block-title h3 span:after,
.cart-container .shopping-cart-bottom .shipping .block-title h3 span:after {
  content: "\f123";
  font-family: 'Ionicons';
  display: inline-block;
  font-size: inherit;
  margin-left: 10px;
  font-size: 14px;
  float: right;
}
.cart-container .shopping-cart-bottom .discount.active .block-title h3 span:after,
.cart-container .shopping-cart-bottom .shipping.active .block-title h3 span:after {
  content: "\f126";
  float: right;
}
.cart-container .shopping-cart-bottom .discount {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: solid 2px #333;
}
.cart-container .shopping-cart-bottom .discount .content .coupon {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cart-container .shopping-cart-bottom .discount .content .coupon label {
  font-weight: 400;
  margin-bottom: 14px;
  padding-right: 30px;
}
.cart-container .shopping-cart-bottom .discount .content .coupon .input-text {
  padding-right: 137px;
  font-size: 14px;
  border-radius: 4px;
  overflow: hidden;
  height: 48px;
  width: calc(100% - 130px);
  vertical-align: top;
}
.cart-container .shopping-cart-bottom .discount .content .coupon .control {
  position: relative;
  font-size: 0;
}
.cart-container .shopping-cart-bottom .discount .content .coupon .actions-toolbar {
  width: 130px;
  text-align: center;
  display: inline-block;
  margin-left: -1px;
  vertical-align: top;
}
.cart-container .shopping-cart-bottom .discount .content .coupon .actions-toolbar button.action {
  padding: 0 16.5px;
  text-align: center;
  background-color: #f4f1e3;
  height: 48px;
  line-height: 48px;
  margin: 0;
  border-radius: 2px;
}
.cart-container .shopping-cart-bottom .discount .content .coupon .actions-toolbar button.action:hover,
.cart-container .shopping-cart-bottom .discount .content .coupon .actions-toolbar button.action:focus,
.cart-container .shopping-cart-bottom .discount .content .coupon .actions-toolbar button.action:active {
  background-color: #295135;
  color: #fff;
}
.cart-container .shopping-cart-bottom .shipping .content .fieldset > legend,
.cart-container .shopping-cart-bottom .shipping .content .fieldset br {
  display: none;
}
.cart-container .shopping-cart-bottom .shipping .content .fieldset .note {
  margin-bottom: 20px;
}
.cart-container .shopping-cart-bottom .shipping .content .fieldset .field:not(.note) {
  margin-bottom: 20px;
}
.cart-container .shopping-cart-bottom .shipping .content .fieldset .field:not(.note) .label {
  text-align: left;
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
}
.cart-container .shopping-cart-bottom .shipping .content #co-shipping-method-form .items {
  display: inline-block;
  margin: 15px 0;
  width: 100%;
}
.cart-container .shopping-cart-bottom .shipping .content #co-shipping-method-form .items .item-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}
.cart-container .shopping-cart-bottom .shipping .content #co-shipping-method-form .items .item-options .field.choice {
  display: inline-flex;
  width: 100%;
  margin-bottom: 10px;
}
.cart-container .shopping-cart-bottom .shipping .content #co-shipping-method-form .items .item-options .field.choice input {
  margin: 0;
  margin-right: 20px;
}
.cart-container .shopping-cart-bottom .shipping .content #co-shipping-method-form .items:first-child {
  margin-top: 0;
}
.cart-container .shopping-cart-bottom .shipping .content #co-shipping-method-form .items:last-child {
  margin-bottom: 0;
}
.cart-container .shopping-cart-bottom .cart-totals {
  text-align: right;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals caption {
  display: none;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr.totals-tax {
  display: none;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr th {
  text-align: right;
  border: none;
  font-weight: 400;
  padding: 10px 0;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr th.mark {
  background: none;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr th .label {
  text-align: right;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr td {
  text-align: right;
  border: none;
  background: transparent;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr td.order {
  padding-top: 0;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr.totals {
  font-size: 0;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr.totals th {
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: unset;
  width: calc(100% - 145px);
  font-size: 1.4rem;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr.totals th:after {
  display: inline-block;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr.totals td {
  width: 145px;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr.totals td .price {
  font-weight: normal;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr.order th strong {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 15px 0;
  line-height: 1.6;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr.order th strong:after {
  content: ":";
  display: inline-block;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr.order td .price {
  font-weight: bold;
}
.cart-container .shopping-cart-bottom .cart-totals .content table.totals tbody tr.order td .excl .price {
  font-weight: normal;
}
.cart-container .shopping-cart-bottom .checkout-methods-items {
  text-align: right;
}
.cart-container .shopping-cart-bottom .checkout-methods-items .multicheckout {
  margin-top: 20px;
  color: #295135;
  display: block;
}
.cart-container .shopping-cart-bottom .checkout-methods-items .multicheckout:hover {
  color: #696969;
}
.checkout-index-index .modal-popup .modal-inner-wrap {
  padding: 20px 0;
  max-width: 800px;
}
.checkout-index-index .modal-popup .modal-inner-wrap h1 {
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
}
.checkout-index-index .modal-popup .modal-inner-wrap .modal-content .fieldset .field {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.checkout-index-index .modal-popup .modal-inner-wrap .modal-content .fieldset .field .label {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
  border: none;
}
.checkout-index-index .modal-popup .modal-inner-wrap .modal-content .fieldset .field.choice {
  display: inline-flex;
}
.checkout-index-index .modal-popup .modal-footer {
  padding-top: 0;
}
.checkout-index-index .modal-popup .modal-footer button {
  padding: 12px 23px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: transparent;
  border: 1px solid #295135;
  border-radius: 22.5px;
  max-height: 40px;
  margin: 0;
  margin-right: 10px;
  line-height: 1;
}
.checkout-index-index .modal-popup .modal-footer button:hover,
.checkout-index-index .modal-popup .modal-footer button:active {
  background-color: #295135;
  color: #fff;
}
.checkout-index-index .modal-popup .modal-footer button.primary {
  background-color: #295135;
  color: #fff;
}
.checkout-index-index .modal-popup .modal-footer button.primary:hover {
  background-color: #696969;
  border-color: #696969;
}
.checkout-index-index .page-header {
  margin: 0;
  padding: 0;
  border: none;
}
.checkout-index-index .header.content {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .checkout-index-index .header.content {
    width: 750px;
  }
  .checkout-index-index .authentication-wrapper {
    width: 33.333333%;
    text-align: right;
  }
}
@media (min-width: 992px) {
  .checkout-index-index .header.content {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .checkout-index-index .header.content {
    width: 1200px;
  }
}
.checkout-index-index .authentication-wrapper {
  float: right;
  max-width: 470px;
  position: relative;
  z-index: 1;
}
.checkout-index-index .authentication-wrapper .action-auth-toggle {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  margin: 0;
  color: #295135;
}
.checkout-index-index .authentication-wrapper .action-auth-toggle:hover,
.checkout-index-index .authentication-wrapper .action-auth-toggle:active,
.checkout-index-index .authentication-wrapper .action-auth-toggle:focus {
  background: none;
  border: none;
  color: #333;
}
.checkout-index-index .authentication-wrapper .authentication-dropdown {
  background-color: #fff;
  border: 1px solid #f4f4f4;
  transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  transition: all 0.1 linear 0s;
  -webkit-transition: all 0.1 linear 0s;
  -moz-transition: all 0.1 linear 0s;
  -o-transition: all 0.1 linear 0s;
  position: absolute;
  text-align: left;
  top: 100%;
  visibility: hidden;
  width: 100%;
  opacity: 0;
}
.checkout-index-index .authentication-wrapper .authentication-dropdown._show {
  z-index: 100;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  visibility: visible;
  opacity: 1;
}
.checkout-index-index .authentication-wrapper .authentication-dropdown .modal-inner-wrap {
  padding: 25px;
}
.checkout-index-index .authentication-wrapper .authentication-dropdown .modal-header {
  border: none;
  padding: 0;
  min-height: auto;
}
.checkout-index-index .authentication-wrapper .authentication-dropdown .action-close {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 25px;
  font-weight: 400;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  color: #333;
}
.checkout-index-index .authentication-wrapper .authentication-dropdown .action-close:before {
  content: "\f129";
  display: inline-block;
  font-family: "Ionicons";
  font-size: 16px;
  margin: 0;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
}
.checkout-index-index .authentication-wrapper .authentication-dropdown .action-close > span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  padding: 0;
}
.checkout-index-index .authentication-wrapper .authentication-dropdown .action-close:hover {
  color: #295135;
}
.checkout-index-index .authentication-wrapper .authentication-dropdown .modal-content {
  border-radius: 0;
  box-shadow: none;
  border: none;
}
.checkout-index-index .block-authentication .block-title {
  font-size: 24px;
  border-bottom: none;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #333;
}
.checkout-index-index .block-authentication .block-title strong {
  font-weight: 400;
}
.checkout-index-index .block-authentication .block-content .fieldset {
  margin-bottom: 20px;
  padding: 0;
  border: none;
}
.checkout-index-index .block-authentication .block-content .fieldset > .field {
  margin-bottom: 18px;
  width: 100%;
  display: inline-block;
}
.checkout-index-index .block-authentication .block-content .field .label {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: left;
}
.checkout-index-index .block-authentication .block-content .control.captcha-image {
  margin-top: 10px;
}
.checkout-index-index .block-authentication .block-content .control.captcha-image button {
  margin-top: 10px;
}
.checkout-index-index .block-authentication .actions-toolbar {
  margin-bottom: 5px;
}
.checkout-index-index .block-authentication .actions-toolbar > .primary {
  display: inline;
  float: right;
  margin-right: 0;
}
.checkout-index-index .block-authentication .actions-toolbar > .secondary {
  float: left;
  text-align: left;
}
.checkout-container .btn {
  border-radius: 2px;
  min-width: 225px;
}
.checkout-container .abutton {
  margin-left: 15px;
}
.checkout-container button {
  display: block;
  padding: 12px 23px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  background-color: #fff;
  color: #295135;
  border: 1px solid #295135;
  font-weight: 700;
  margin-bottom: 20px;
}
.checkout-container button:hover,
.checkout-container button:active,
.checkout-container button:focus {
  background-color: #295135;
  color: #fff;
}
.checkout-container button.btn-link {
  color: #adadad;
  border-color: #adadad;
  text-transform: none;
}
.checkout-container button.checkout {
  background-color: #cf2a27;
  color: #fff;
  border-color: #cf2a27;
}
.checkout-container button.checkout:hover {
  background-color: transparent;
  color: #cf2a27;
}
.checkout-container .opc-wrapper {
  display: inline-block;
  float: left;
  width: calc(100% - 410px);
  padding-right: 30px;
  order: 1;
}
.checkout-container .opc-wrapper .step-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 13px;
  margin-bottom: 30px;
}
.checkout-container .opc-wrapper .step-title:after {
  content: '';
  width: 80px;
  height: 2px;
  display: block;
  text-align: center;
  position: absolute;
  left: 0;
  background-color: #295135;
  bottom: 0;
}
.checkout-container .opc-wrapper .step-content {
  margin: 0;
}
.checkout-container .opc-wrapper .step-content .fieldset {
  margin-bottom: 20px;
}
.checkout-container .opc-wrapper .step-content .fieldset .legend {
  display: none;
}
.checkout-container .opc-wrapper .step-content .fieldset.checkout-agreements {
  margin-bottom: 0;
}
.checkout-container .opc-wrapper .step-content .fieldset p {
  margin-bottom: 2rem;
}
.checkout-container .opc-wrapper .step-content fieldset.field {
  margin-bottom: 0;
}
.checkout-container .opc-wrapper .step-content .form-login .field {
  margin-bottom: 2rem;
  width: 100%;
}
.checkout-container .opc-wrapper .step-content .form-login .actions-toolbar .primary {
  float: left;
  width: auto;
  min-width: auto;
}
.checkout-container .opc-wrapper .step-content .opc-payment-additional.discount-code .field {
  margin-bottom: 1rem;
}
.checkout-container .opc-wrapper .step-content .opc-payment-additional.discount-code .action-toggle {
  font-size: 16px;
  color: #333;
}
.checkout-container .opc-wrapper .step-content .opc-payment-additional.discount-code .action-toggle:after {
  content: "\f123";
  font-size: 16px;
  display: inline-block;
  font-family: "Ionicons";
  margin-left: 5px;
}
.checkout-container .opc-wrapper .step-content .opc-payment-additional.discount-code .form-discount {
  position: relative;
}
.checkout-container .opc-wrapper .step-content .opc-payment-additional.discount-code .form-discount .label {
  display: none;
}
.checkout-container .opc-wrapper .step-content .opc-payment-additional.discount-code .form-discount .actions-toolbar {
  position: absolute;
  top: 0;
  right: 0;
}
.checkout-container .opc-wrapper .step-content .opc-payment-additional.discount-code .form-discount .actions-toolbar button {
  padding: 0 23px;
  height: 40px;
  line-height: 40px;
  background-color: #f4f1e3;
  color: #696969;
  border: 0;
  border-radius: 2px;
}
.checkout-container .opc-wrapper .step-content .opc-payment-additional.discount-code .form-discount .actions-toolbar button:hover {
  background-color: #295135;
  color: #fff;
}
.checkout-container .opc-wrapper .step-content .opc-payment .payment-methods .payment-method {
  padding-top: 1rem;
  display: inline-block;
  width: 100%;
}
.checkout-container .opc-wrapper .step-content .opc-payment .payment-methods .payment-method .payment-method-title {
  display: inline-flex;
  margin-bottom: 10px;
}
.checkout-container .opc-wrapper .step-content .opc-payment .payment-methods .payment-method .payment-method-title input {
  margin: 0;
  margin-right: 10px;
}
.checkout-container .opc-wrapper .step-content .opc-payment .payment-methods .payment-method .payment-method-title .label span {
  margin-bottom: 0;
}
.checkout-container .opc-wrapper .step-content .opc-payment .payment-methods .payment-method .payment-method-content {
  display: none;
}
.checkout-container .opc-wrapper .step-content .opc-payment .payment-methods .payment-method .payment-method-content > .field.choice {
  margin-bottom: 10px;
}
.checkout-container .opc-wrapper .step-content .opc-payment .payment-methods .payment-method .payment-method-content .actions-toolbar .primary {
  float: right;
  min-width: auto;
  margin-bottom: 0;
}
.checkout-container .opc-wrapper .step-content .opc-payment .payment-methods .payment-method._active .payment-method-content {
  display: block;
}
.checkout-container .opc-wrapper .shipping-address-item {
  width: 33.3333%;
  display: inline-block;
  font-size: 14px;
  margin: 0 0 20px;
  padding: 20px 35px 20px 20px;
  position: relative;
  vertical-align: top;
  border: 2px solid transparent;
}
.checkout-container .opc-wrapper .shipping-address-item:after {
  background-color: #295135;
  content: "\f3fd";
  font-family: 'Ionicons';
  height: 27px;
  width: 29px;
  font-size: 32px;
  line-height: 21px;
  padding-top: 2px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  color: #fff;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
.checkout-container .opc-wrapper .shipping-address-item .edit-address-link {
  padding: 9px 20px;
}
.checkout-container .opc-wrapper .shipping-address-item .action-select-shipping-item {
  padding: 0;
  border: none;
  background: none !important;
  color: #295135;
  margin: 10px 0;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}
.checkout-container .opc-wrapper .shipping-address-item.selected-item {
  border-color: #295135;
}
.checkout-container .opc-wrapper .shipping-address-item.selected-item:after {
  visibility: visible;
}
.checkout-container .opc-wrapper .shipping-address-item.selected-item .action-select-shipping-item {
  visibility: hidden;
}
.checkout-container .opc-sidebar {
  display: inline-block;
  float: left;
  width: 410px;
}
.checkout-container .table-checkout-shipping-method thead th {
  display: none;
}
.checkout-container .table-checkout-shipping-method tbody td {
  padding-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #f4f4f4;
}
.checkout-container .opc-block-summary > .title {
  font-weight: 700;
  font-size: 1.8rem;
  margin: 10px auto 0;
  text-align: center;
  width: 100%;
  display: inline-block;
  line-height: 1;
  text-transform: uppercase;
}
.checkout-container .opc-block-summary > .title:after {
  content: '';
  width: 120px;
  height: 2px;
  display: block;
  text-align: center;
  margin: 10px auto 0;
  background-color: #295135;
}
.checkout-container .items-in-cart > .title strong {
  color: #333;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  margin-bottom: 7px;
}
.checkout-container .items-in-cart .minicart-items {
  display: block;
  padding: 10px 0 0;
}
.checkout-container .items-in-cart .minicart-items .minicart-items-wrapper {
  max-height: 475px;
  overflow-y: auto;
}
.checkout-container .items-in-cart .minicart-items .product-item .product-item-details .product-item-name-block .product-item-name {
  font-weight: 400;
}
.checkout-container .items-in-cart .minicart-items .product-item .product-item-details .details-qty {
  margin-left: 3px;
  font-weight: 700;
  display: inline-flex;
  color: #fff;
}
.checkout-container .items-in-cart .minicart-items .product-item .product-item-details .details-qty .label {
  margin: 0;
  line-height: 1.8;
  color: #333;
}
.checkout-container .items-in-cart .minicart-items .product-item .product-item-details .subtotal {
  display: inline-block;
  float: right;
  text-align: right;
}
.checkout-container .opc-sidebar .modal-header {
  display: none;
}
.checkout-container .opc-sidebar .modal-content {
  box-shadow: none;
  border: none;
}
.checkout-container .checkout-payment-method .action-edit,
.checkout-container .opc-sidebar .action-edit {
  padding: 0;
  margin: 0;
  background: none !important;
  border: none;
  float: right;
  color: inherit;
  font-weight: 400;
}
.checkout-container .checkout-payment-method .action-edit:hover,
.checkout-container .opc-sidebar .action-edit:hover {
  color: #295135;
}
.checkout-container .checkout-payment-method .action-edit:before,
.checkout-container .opc-sidebar .action-edit:before {
  content: "\e925";
  font-family: "OrganieFarm";
  display: inline-block;
  font-size: 18px;
  text-align: right;
  float: right;
}
.checkout-container .checkout-payment-method .action-edit span,
.checkout-container .opc-sidebar .action-edit span {
  display: none;
}
.checkout-container .checkout-payment-method .shipping-information-title,
.checkout-container .opc-sidebar .shipping-information-title,
.checkout-container .checkout-payment-method .billing-information-title,
.checkout-container .opc-sidebar .billing-information-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 18px;
  text-transform: capitalize;
}
.checkout-container .checkout-payment-method [class*="opc-block-"] .block,
.checkout-container .opc-sidebar [class*="opc-block-"] .block {
  padding: 20px 0 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  width: 100%;
}
.checkout-container .payment-method-billing-address .fieldset .field-select-billing .label {
  text-transform: none;
  font-size: 14px;
}
.checkout-container .payment-method-billing-address .fieldset .actions-toolbar .primary {
  float: right;
}
.checkout-container .payment-method-billing-address .fieldset .actions-toolbar .action-cancel {
  border: none;
  text-transform: none;
  color: #696969;
}
.checkout-container .payment-method-billing-address .fieldset .actions-toolbar .action-cancel:hover,
.checkout-container .payment-method-billing-address .fieldset .actions-toolbar .action-cancel:active,
.checkout-container .payment-method-billing-address .fieldset .actions-toolbar .action-cancel:focus {
  background: none;
  color: #295135;
}
.opc-progress-bar {
  margin: 0 0 40px ;
  display: block;
  font-size: 0;
  counter-reset: i;
}
.opc-progress-bar .opc-progress-bar-item {
  margin: 0 0 10px;
  width: 185px;
  display: inline-block;
  position: relative;
  text-align: center;
  vertical-align: top;
}
.opc-progress-bar .opc-progress-bar-item:before {
  background-color: #ddd;
  top: 19px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.opc-progress-bar .opc-progress-bar-item:first-child:before {
  border-radius: 6px 0 0 6px;
}
.opc-progress-bar .opc-progress-bar-item:last-child:before {
  border-radius: 0 6px 6px 0;
}
.opc-progress-bar .opc-progress-bar-item > span {
  display: inline-block;
  padding-top: 45px;
  width: 100%;
  word-wrap: break-word;
  color: #ccc;
  font-size: 14px;
}
.opc-progress-bar .opc-progress-bar-item > span:before {
  height: 38px;
  margin-left: -19px;
  width: 38px;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 50%;
  background-color: #333;
}
.opc-progress-bar .opc-progress-bar-item > span:after {
  background: #fff;
  height: 26px;
  width: 26px;
  top: 6px;
  margin-left: -13px;
  content: counter(i, decimal);
  counter-increment: i;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50%;
  left: 50%;
  position: absolute;
  line-height: 26px;
}
.opc-progress-bar .opc-progress-bar-item._active:before,
.opc-progress-bar .opc-progress-bar-item._complete:before {
  background-color: #295135;
}
.opc-progress-bar .opc-progress-bar-item._active > span,
.opc-progress-bar .opc-progress-bar-item._complete > span {
  color: #333;
}
.opc-progress-bar .opc-progress-bar-item._active > span:after,
.opc-progress-bar .opc-progress-bar-item._complete > span:after {
  font-family: "Ionicons";
  content: "\f121";
  display: inline-block;
  background-color: transparent;
}
.opc-progress-bar .opc-progress-bar-item._active > span:before,
.opc-progress-bar .opc-progress-bar-item._complete > span:before {
  background-color: #295135;
}
[class*="multishipping-checkout-"] .page-main .form-address-edit .fieldset {
  margin-top: 0;
}
[class*="multishipping-checkout-"] .page-main .form-address-edit .fieldset .field {
  margin-bottom: 20px;
}
[class*="multishipping-checkout-"] .page-main .form-address-edit .fieldset .block-title .title {
  color: #333;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 0;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address .title {
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table caption {
  display: none;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table thead tr th {
  text-align: left;
  padding: 15px 10px;
  border-bottom: none;
  background-color: #f8f7f7;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  vertical-align: middle;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table thead tr th.qty {
  text-align: center;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table thead tr th.product {
  padding-left: 20px;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table tbody tr td {
  border-top: none;
  border-bottom: 1px solid #f4f4f4;
  vertical-align: middle;
  padding: 30px 10px;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table tbody tr td.qty .field .label {
  display: none;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table tbody tr td.qty .field .control {
  max-width: 60px;
  text-align: center;
  margin: 0 auto;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table tbody tr td.qty .field .control input {
  padding: 0;
  height: 40px;
  line-height: 40px;
  margin: 0;
  text-align: center;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table tbody tr td.address .label {
  display: none;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table tbody tr td.address .control select {
  margin: 0;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table tbody tr td.actions .action {
  text-align: center;
  position: relative;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table tbody tr td.actions .action:before {
  content: "\f253";
  font-family: "Ionicons";
  display: inline-block;
  font-size: 16px;
  color: #333;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address #multiship-addresses-table tbody tr td.actions .action > span {
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  position: absolute;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address .actions-toolbar .primary {
  display: inline-block;
  margin-bottom: 10px;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address .actions-toolbar .secondary .action {
  margin-right: 20px;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.address .actions-toolbar .secondary .action.back {
  float: left;
  width: 100%;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f4f4f4;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content {
  margin: 0 -15px;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box {
  display: inline-block;
  width: 33.3333%;
  padding: 0 15px;
  float: left;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .box-title {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #333;
  display: block;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .box-title .action {
  color: #295135;
  text-transform: none;
  float: right;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .box-content br {
  display: none;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .box-content legend {
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f4f4f4;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .box-content .item-title {
  color: #333;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .box-content .item-content {
  margin-bottom: 20px;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .gift-message .order-options .items {
  display: inline-block;
  width: 100%;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .gift-message .order-options .items .item {
  display: inline-block;
  width: 100%;
  margin: 10px 0;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .gift-message .order-options .items .item .product {
  display: inline-block;
  width: 100%;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .gift-message .order-options .items .item .product .number {
  color: #333;
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .gift-message .order-options .items .item .product .number .photo,
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .gift-message .order-options .items .item .product .number .product-name {
  display: inline-block;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .gift-message .order-options .items .item .product .number .photo.container {
  width: auto;
  padding: 0;
  float: left;
  margin-right: 15px;
}
[class*="multishipping-checkout-"] .page-main .multicheckout.shipping .block-shipping .block-content .box .gift-message .order-options .items .item .product .number .product-name {
  color: #333;
}
@font-face {
  font-family: 'OrganieFarm';
  src: url('../fonts/OrganieFarm.eot?5pu6sd');
  src: url('../fonts/OrganieFarm.eot?5pu6sd#iefix') format('embedded-opentype'), url('../fonts/OrganieFarm.ttf?5pu6sd') format('truetype'), url('../fonts/OrganieFarm.woff?5pu6sd') format('woff'), url('../fonts/OrganieFarm.svg?5pu6sd#OrganieFarm') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="farm icon-"],
[class*=" farm icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'OrganieFarm' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.farm.icon-apple:before {
  content: "\e900";
}
.farm.icon-banana:before {
  content: "\e901";
}
.farm.icon-basket:before {
  content: "\e902";
}
.farm.icon-blender:before {
  content: "\e903";
}
.farm.icon-bread:before {
  content: "\e904";
}
.farm.icon-broccoli:before {
  content: "\e905";
}
.farm.icon-carrot:before {
  content: "\e906";
}
.farm.icon-coconut:before {
  content: "\e907";
}
.farm.icon-corn:before {
  content: "\e908";
}
.farm.icon-cucumber:before {
  content: "\e909";
}
.farm.icon-delivery:before {
  content: "\e90a";
}
.farm.icon-droplets:before {
  content: "\e90b";
}
.farm.icon-eco-bag:before {
  content: "\e90c";
}
.farm.icon-egg:before {
  content: "\e90d";
}
.farm.icon-egg-plant:before {
  content: "\e90e";
}
.farm.icon-grain:before {
  content: "\e90f";
}
.farm.icon-grape:before {
  content: "\e910";
}
.farm.icon-home:before {
  content: "\e911";
}
.farm.icon-honey:before {
  content: "\e912";
}
.farm.icon-jam:before {
  content: "\e913";
}
.farm.icon-leaf:before {
  content: "\e914";
}
.farm.icon-lemon:before {
  content: "\e915";
}
.farm.icon-lettuce:before {
  content: "\e916";
}
.farm.icon-map:before {
  content: "\e917";
}
.farm.icon-milk:before {
  content: "\e918";
}
.farm.icon-organie:before {
  content: "\e919";
}
.farm.icon-smoothie:before {
  content: "\e91a";
}
.farm.icon-tomato:before {
  content: "\e91b";
}
.farm.icon-tractor:before {
  content: "\e91c";
}
@font-face {
  font-family: 'OrganiePlant';
  src: url('../fonts/OrganiePlant.eot?5kccg4');
  src: url('../fonts/OrganiePlant.eot?5kccg4#iefix') format('embedded-opentype'), url('../fonts/OrganiePlant.ttf?5kccg4') format('truetype'), url('../fonts/OrganiePlant.woff?5kccg4') format('woff'), url('../fonts/OrganiePlant.svg?5kccg4#OrganiePlant') format('svg');
  font-weight: normal;
  font-style: normal;
}
.plant[class*='icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'OrganiePlant' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-plant:before {
  content: "\e900";
}
.icon-plant-1:before {
  content: "\e901";
}
.icon-plant-2:before {
  content: "\e902";
}
.icon-plant-3:before {
  content: "\e903";
}
.icon-plant-4:before {
  content: "\e904";
}
.icon-plant-5:before {
  content: "\e905";
}
.custom-deal-single {
  position: relative;
  min-height: 610px;
}
.custom-deal-single .title-block {
  background: none;
  left: 50%;
  margin: 0;
  margin-left: 5px;
  padding: 0;
  position: absolute;
  text-align: left;
  top: 120px;
  width: auto;
}
.custom-deal-single .title-block h2 {
  line-height: 1;
}
.deal-timer {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 0;
}
.deal-timer .countdown {
  display: inline-block;
  width: 100%;
}
.deal-timer .countdown span {
  display: inline-block;
  text-align: center;
  width: 25%;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  color: #295135;
}
.deal-timer .countdown span b {
  display: block;
  position: relative;
  line-height: 1;
}
.deal-timer .countdown span .timer {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #797575;
}
.deal-timer .countdown span b:not(.timer) {
  margin-bottom: 12px;
}
.deal-timer .countdown span b:not(.timer):after {
  content: ":";
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  top: 20px;
  right: 0;
}
.deal-timer .countdown span.secs b:not(.timer):after {
  display: none;
}
.single-deal-grid .product-item {
  display: inline-block;
  width: 100%;
  float: left;
}
.single-deal-grid .product-item .product-photo,
.single-deal-grid .product-item .product-item-details {
  display: inline-block;
  float: left;
  position: relative;
  width: 50%;
}
.single-deal-grid .product-item .product-photo {
  text-align: center;
}
.single-deal-grid .product-item .product-photo img {
  margin: 0 auto;
  max-height: 610px;
  z-index: 2;
}
.single-deal-grid .product-item .box-deal-label {
  background-color: #295135;
  border-radius: 50%;
  color: #fff;
  height: 140px;
  left: 0;
  padding: 30px;
  position: absolute;
  text-align: center;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 140px;
  z-index: 1;
}
.single-deal-grid .product-item .box-deal-label span.text {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  margin-top: 10px;
  margin-left: 5px;
}
.single-deal-grid .product-item .box-deal-label .price-box {
  line-height: 1;
}
.single-deal-grid .product-item .box-deal-label .price-box .old-price {
  display: none;
}
.single-deal-grid .product-item .box-deal-label .price-box .price {
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
}
.single-deal-grid .product-item .product-item-name {
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-top: 170px;
  margin-bottom: 25px;
}
.single-deal-grid .product-item .product-item-name a {
  color: #295135;
}
.single-deal-grid .product-item .product-item-name a:hover {
  color: #696969;
}
.single-deal-grid .product-item .short-description {
  margin-bottom: 34px;
  line-height: 1.7;
}
.single-deal-grid .product-item .deal-timer {
  margin-bottom: 18px;
}
.single-deal-grid .product-item .deal-timer .countdown span {
  font-size: 48px;
}
.single-deal-grid .product-item .product-item-actions {
  display: inline-flex;
}
.single-deal-grid .product-item .product-item-actions .btn-cart {
  display: inline-block;
  margin-right: 20px;
}
.single-deal-grid .product-item .product-item-actions .btn-addto-default {
  display: inline-block;
  margin-right: 20px;
}
.single-deal-grid .product-item .box-attribute {
  display: inline-block;
  width: 100%;
  float: left;
}
.single-deal-grid .product-item .box-attribute dl {
  display: inline-flex;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.single-deal-grid .product-item .box-attribute dl dt {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #696969;
  min-width: 134px;
  text-transform: uppercase;
}
.single-deal-grid .product-item .box-attribute dl dd {
  display: inline-block;
}
.single-deal-grid .product-item .box-attribute dl:first-child {
  margin-top: 0;
}
.single-deal-grid .product-item .box-attribute dl:last-child {
  margin-bottom: 0;
}
.custom-deal-layout1 .single-deal-grid .product-item .product-item-details {
  padding-right: 100px;
}
.custom-deal-layout1 .single-deal-grid .product-item .deal-timer {
  margin-bottom: 38px;
}
.custom-deal-layout1 .single-deal-grid .product-item .deal-timer .countdown {
  margin-left: -13px;
}
.custom-deal-layout1 .single-deal-grid .product-item .box-attribute {
  display: none;
}
.custom-deal-layout1 .single-deal-grid .product-item .product-photo:after {
  content: "";
  display: block;
  width: 472px;
  height: 600px;
  border: 8px solid rgba(255, 255, 255, 0.83);
  position: absolute;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
  top: 20px;
  left: 30px;
  z-index: 0;
}
.custom-deal-layout1 .single-deal-grid .product-item .short-desciption {
  margin-bottom: 35px;
}
.deal-products-grid .product-item .product-photo {
  display: inline-block;
  width: 100%;
  position: relative;
  float: left;
  text-align: center;
}
.deal-products-grid .product-item .product-photo .box-deal-label {
  margin: 0;
  padding: 10px 0;
  width: 80px;
  height: 80px;
  font-size: 15px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  background-color: #295135;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 12px;
}
.deal-products-grid .product-item .product-photo .box-deal-label .price-box {
  line-height: 1;
  margin-top: 5px;
}
.deal-products-grid .product-item .product-photo .box-deal-label .price-box .old-price {
  display: none;
}
.deal-products-grid .product-item .product-photo .box-deal-label .price-box .price {
  color: #fff;
  font-size: 27px;
}
.deal-products-grid .product-item .product-photo .product-item-inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.deal-products-grid .product-item .product-photo .product-item-inner .product-item-actions {
  display: inline-flex;
}
.deal-products-grid .product-item .product-photo .product-item-inner .btn-addto {
  display: inline-block;
  margin-left: 2.5px;
  margin-right: 2.5px;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.deal-products-grid .product-item .product-item-details {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}
.deal-products-grid .product-item .product-item-details .product-item-name {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.deal-products-grid .product-item .deal-timer .countdown span .timer {
  font-size: 12px;
}
.deal-products-grid .product-item:hover .product-photo .product-item-inner .btn-addto {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
}
.single-product .mgs-product .product-item-info {
  margin: 0 -15px;
}
.single-product .mgs-product .product-item-info .product-image,
.single-product .mgs-product .product-item-info .product-item-details {
  width: 50%;
  display: inline-block;
  float: left;
  padding: 0 15px;
}
.single-product .mgs-product .product-item-info .product-image .product-item-photo {
  display: inline-block;
  border: 1px solid #295135;
  border-radius: 2px;
}
.single-product .mgs-product .product-item-info .product-label {
  top: 0;
  left: 0;
  right: auto;
}
.single-product .mgs-product .product-item-info .product-label span {
  width: 30px;
  height: 30px;
  padding: 0;
  line-height: 30px;
  border-radius: 50%;
  background-color: #295135;
  text-align: center;
}
.single-product .mgs-product .product-item-info .product-item-details .product-item-name h4 {
  margin: 0;
  margin-bottom: 20px;
  color: #295135;
  font-size: 16px;
}
.single-product .mgs-product .product-item-info .product-item-details .product-item-name h4:hover {
  color: #333;
}
.single-product .mgs-product .product-item-info .product-item-details .price-box {
  margin-bottom: 10px;
}
.single-product .mgs-product .product-item-info .product-item-details .price-box .price {
  font-size: 20px;
}
.single-product .mgs-product .product-item-info .product-item-details .categories-link {
  display: inline-flex;
  margin-bottom: 20px;
  width: 100%;
}
.single-product .mgs-product .product-item-info .product-item-details .categories-link .label {
  font-size: 14px;
  text-transform: uppercase;
  min-width: 100px;
}
.single-product .mgs-product .product-item-info .product-item-details .categories-link .value a {
  color: #295135;
}
.single-product .mgs-product .product-item-info .product-item-details .categories-link .value a:hover {
  color: #333;
}
.single-product .mgs-product .product-item-info .product-item-details .product-item-actions .btn {
  display: inline-block;
  margin-right: 10px;
}
.single-product .mgs-product .product-item-info .product-item-details .product-item-actions form {
  display: inline;
}
.single-product .mgs-product .product-item-info .product-item-details .product-item-actions .btn-addto {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  color: #295135;
  border: 1px solid #295135;
}
.single-product .mgs-product .product-item-info .product-item-details .product-item-actions .btn-addto:hover,
.single-product .mgs-product .product-item-info .product-item-details .product-item-actions .btn-addto:active,
.single-product .mgs-product .product-item-info .product-item-details .product-item-actions .btn-addto:focus {
  background-color: #295135;
}
.portfolio-list-block .item .portfolio-top-content {
  position: relative;
}
.portfolio-list-block .item .portfolio-top-content .hover-info {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  transform: -50%;
  -webkit-transform: -50%;
  -moz-transform: -50%;
  -o-transform: -50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.portfolio-list-block .item .portfolio-top-content .hover-info span {
  display: inline-block;
  width: 100%;
}
.portfolio-list-block .item .portfolio-top-content .hover-info span.fa {
  font-size: 18px;
  color: #295135;
  margin-bottom: 10px;
}
.portfolio-list-block .item .portfolio-top-content .hover-info span .categories a {
  color: #295135;
}
.portfolio-list-block .item .portfolio-top-content .hover-info span .categories a:hover {
  color: #333;
}
.portfolio-list-block .item .portfolio-top-content:hover img {
  opacity: 0.4;
}
.portfolio-list-block .item .portfolio-top-content:hover .hover-info {
  opacity: 1;
  visibility: visible;
}
.mgs-quickview-catalog-product-view .scroll-to-top {
  display: none;
}
.mgs-quickview-catalog-product-view .product-details-view .product-info-main .product-add-form .product-addto {
  display: none;
}
.modal_newsletter-popup.modal-popup .action-close,
.modal_coupon-popup.modal-popup .action-close {
  right: 0;
  background-color: orange;
  color: white;
}
.modal_newsletter-popup.modal-popup .action-close:before,
.modal_coupon-popup.modal-popup .action-close:before {
  line-height: 1.5;
}
.modal_newsletter-popup.modal-popup .modal-content,
.modal_coupon-popup.modal-popup .modal-content {
  padding: 0;
}
.modal_newsletter-popup.modal-popup .modal-content .form-group,
.modal_coupon-popup.modal-popup .modal-content .form-group {
  margin-bottom: 10px;
}
.modal_newsletter-popup.modal-popup .modal-header,
.modal_coupon-popup.modal-popup .modal-header {
  min-height: 0px;
  padding: 0;
}
.modal_newsletter-popup.modal-popup._show .modal-inner-wrap,
.modal_coupon-popup.modal-popup._show .modal-inner-wrap {
  transform: translateY(-50%);
}
.modal_newsletter-popup.modal-popup .modal-inner-wrap,
.modal_coupon-popup.modal-popup .modal-inner-wrap {
  position: absolute;
  top: 50%;
  margin: 0 auto;
  right: 0;
  max-width: 100rem;
  width: max-content;
}
@media (max-width: 769px) {
  .modal_newsletter-popup.modal-popup .modal-inner-wrap,
  .modal_coupon-popup.modal-popup .modal-inner-wrap {
    max-width: 70rem;
  }
}
@media (max-width: 480px) {
  .modal_newsletter-popup.modal-popup .modal-inner-wrap,
  .modal_coupon-popup.modal-popup .modal-inner-wrap {
    max-width: 30rem;
  }
}
.modal_newsletter-popup.modal-popup #newsletter-popup,
.modal_coupon-popup.modal-popup #newsletter-popup,
.modal_newsletter-popup.modal-popup #coupon-popup,
.modal_coupon-popup.modal-popup #coupon-popup {
  max-width: 1000px;
  max-height: 580px;
}
@media (max-width: 480px) {
  .modal_newsletter-popup.modal-popup #newsletter-popup,
  .modal_coupon-popup.modal-popup #newsletter-popup,
  .modal_newsletter-popup.modal-popup #coupon-popup,
  .modal_coupon-popup.modal-popup #coupon-popup {
    width: 300px;
    height: 175px;
  }
}
.modal_newsletter-popup.modal-popup #newsletter-popup #dont_show,
.modal_coupon-popup.modal-popup #newsletter-popup #dont_show,
.modal_newsletter-popup.modal-popup #coupon-popup #dont_show,
.modal_coupon-popup.modal-popup #coupon-popup #dont_show {
  margin-top: 7px;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .block-popup-subscribe,
.modal_coupon-popup.modal-popup #newsletter-popup .block-popup-subscribe,
.modal_newsletter-popup.modal-popup #coupon-popup .block-popup-subscribe,
.modal_coupon-popup.modal-popup #coupon-popup .block-popup-subscribe {
  display: none;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top,
.modal_coupon-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top,
.modal_newsletter-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top,
.modal_coupon-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top {
  padding-top: 100px;
  width: 50%;
  margin-left: 50%;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content,
.modal_coupon-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content,
.modal_newsletter-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content,
.modal_coupon-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content {
  margin-bottom: 100px;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content h3,
.modal_coupon-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content h3,
.modal_newsletter-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content h3,
.modal_coupon-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content h3 {
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  font-size: 35px;
  margin: 0 0 30px;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content p,
.modal_coupon-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content p,
.modal_newsletter-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content p,
.modal_coupon-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-content p {
  color: #333;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form,
.modal_coupon-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form,
.modal_newsletter-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form,
.modal_coupon-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form {
  display: inline-block;
  width: 100%;
  position: relative;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form #newsletter-popup-email,
.modal_coupon-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form #newsletter-popup-email,
.modal_newsletter-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form #newsletter-popup-email,
.modal_coupon-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form #newsletter-popup-email {
  background-color: #fff;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .newletter,
.modal_coupon-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .newletter,
.modal_newsletter-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .newletter,
.modal_coupon-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .newletter {
  display: inline-block;
  width: 100%;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .actions,
.modal_coupon-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .actions,
.modal_newsletter-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .actions,
.modal_coupon-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .actions {
  position: absolute;
  right: 0;
  top: 0;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .actions .btn-primary,
.modal_coupon-popup.modal-popup #newsletter-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .actions .btn-primary,
.modal_newsletter-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .actions .btn-primary,
.modal_coupon-popup.modal-popup #coupon-popup .block-popup-subscribe .block-popup-top .newsletter-popup-form .form .actions .btn-primary {
  border-radius: 2px;
}
.modal_newsletter-popup.modal-popup #newsletter-popup {
  position: relative;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  top: 50px;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .title > h4 {
  font-size: 34px;
  line-height: 1.4;
  color: #333;
  font-weight: 700;
  margin-top: 13px;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .block-popup-subscribe {
  display: block;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .block-popup-subscribe .block-popup-top {
  padding-top: unset;
  margin: auto;
  width: 75%;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .block-popup-subscribe .block-popup-top .form.subscribe {
  padding-top: 40px;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .block-popup-subscribe .block-popup-top .form.subscribe .actions {
  top: 40px;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .block-popup-subscribe .block-popup-top .action.subscribe.btn-primary {
  background-color: #295135;
  color: #fff;
}
.modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .block-popup-subscribe .block-popup-top .checkbox {
  display: none;
}
@media (max-width: 480px) {
  .modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail {
    top: 20px;
  }
  .modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .title > h4 {
    font-size: 20px;
    margin: 10px 0 0;
  }
  .modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .title > p {
    font-size: 13px;
  }
  .modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .block-popup-subscribe .block-popup-top .form.subscribe {
    padding-top: 0;
  }
  .modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .block-popup-subscribe .block-popup-top .form.subscribe #newsletter-popup-email {
    font-size: 10px;
    height: 25px;
  }
  .modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .block-popup-subscribe .block-popup-top .form.subscribe .actions {
    top: -2px;
    height: 25px;
  }
  .modal_newsletter-popup.modal-popup #newsletter-popup .subscribe-detail .block-popup-subscribe .block-popup-top .form.subscribe .actions .action.subscribe.btn.btn-primary {
    font-size: 10px;
    padding: 6px;
  }
}
.block-abs-top30 {
  margin-top: -30px;
}
.promo-birthday-flowers {
  padding: 0 25px;
  padding-bottom: 15px;
}
.promo-birthday-flowers h4 {
  font-weight: 700;
  color: #333;
  letter-spacing: 0.4em;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}
.promo-birthday-flowers p {
  font-weight: 900;
  color: #fff;
  padding: 3px 10px;
  letter-spacing: 0.3em;
  margin-left: 36px;
  background-color: #000;
  line-height: 1;
  font-size: 18px;
}
.promo-flowers-party {
  text-align: center;
  padding-top: 56px;
}
.promo-flowers-party h6 {
  color: #fff;
  letter-spacing: 0.2em;
  padding: 6px 10px 7px;
  background-color: #000;
  margin-top: 0;
  margin-bottom: 15px;
  display: inline-block;
  margin: 0 auto;
  width: auto;
  text-transform: capitalize;
}
.promo-flowers-party span {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 10px;
  display: inline-block;
}
.promo-gift-flowers {
  margin-top: 128px;
  text-align: center;
}
.promo-gift-flowers .h2 {
  font-size: 18px;
  color: #333;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 17px;
  display: block;
  margin-left: 8px;
}
.promo-gift-flowers .h6 {
  font-size: 14px;
  color: #696969;
  letter-spacing: 0.2em;
  margin: 0;
  padding: 0;
  display: block;
  margin-left: 8px;
}
.custom-border-promo .promobanner .text {
  width: 100%;
}
.custom-border-promo .promobanner > a {
  display: block;
  position: relative;
  width: 100%;
}
.custom-border-promo .promobanner > a:after {
  content: "";
  display: inline-block;
  border: 1px solid #696969;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: 20px;
}
.promo-flowers-wedding {
  text-align: center;
}
.promo-flowers-wedding h6 {
  padding: 0;
  margin-top: 5px;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 18px;
}
.promo-flowers-wedding span {
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  max-width: 220px;
  line-height: 1.3;
}
.promo-flowers-valentine {
  font-weight: bold;
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
  padding: 30px;
  padding-bottom: 32px;
  background-color: #fff;
  display: inline-block;
  min-width: 212px;
  text-align: center;
  letter-spacing: 0.2em;
}
.margin-bottom30 .promobanner {
  margin-bottom: 30px;
}
.flower-block-about {
  text-align: center;
}
.flower-block-about .block-about-title {
  text-align: center;
}
.flower-block-about .block-about-title h2 {
  font-weight: 900;
  font-size: 34px;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 0.2em;
  margin-top: 0;
  margin-bottom: 21px;
  line-height: 1;
}
.flower-block-about .block-about-title .h4 {
  font-size: 16px;
  color: #696969;
  margin: 0;
  padding: 0;
  letter-spacing: 0.2em;
}
.flower-block-about .block-about-title .img-icon {
  margin: 0 auto;
}
.flower-block-about .block-about-title .img-icon img {
  margin: 0 auto;
  max-width: 100%;
}
.flower-block-about .subtitle {
  font-size: 24px;
  color: #333;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 68px;
  margin-bottom: 126px;
  line-height: 2;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}
.flower-block-about .box-item {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.flower-block-about .box-item img {
  margin: 0 auto;
}
.flower-block-about .box-item h4 {
  font-size: 24px;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 44px 0 24px;
}
.flower-block-about .box-item p {
  margin-bottom: 14px;
}
.flower-block-about .box-item a.read-more {
  font-weight: 700;
  font-size: 14px;
  color: #696969;
  text-decoration: underline;
  letter-spacing: 0.1em;
  margin: 0;
}
.flower-block-about .box-item a.read-more:hover {
  color: #295135;
}
.testimonial-block .owl-carousel .testimonial-item {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-block .owl-carousel .testimonial-item .img-author {
  display: block;
  margin-bottom: 40px;
  text-align: center;
}
.testimonial-block .owl-carousel .testimonial-item .img-author img {
  margin: 0 auto;
  border-radius: 50%;
}
.testimonial-block .owl-carousel .testimonial-item .content p.h5 {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 36px;
}
.testimonial-block .owl-carousel .testimonial-item .content .author {
  margin-top: 40px;
}
.testimonial-block .owl-carousel .testimonial-item .content .author strong {
  font-size: 14px;
  text-transform: uppercase;
  margin-right: 10px;
  letter-spacing: 0.05em;
  color: #333;
}
.testimonial-block .owl-carousel .testimonial-item .content .author .h6 {
  letter-spacing: 0.05em;
}
.testimonial-block .owl-carousel .testimonial-item .content .author .h6 span {
  margin-right: 10px;
}
.testimonial-block .owl-carousel .owl-nav [class*="owl-"] {
  opacity: 1;
  visibility: visible;
  font-size: 48px;
  border: none;
  width: auto;
  height: auto;
  line-height: 1;
  transform: translate(0, -50%) !important;
  -webkit-transform: translate(0, -50%) !important;
  -moz-transform: translate(0, -50%) !important;
  -o-transform: translate(0, -50%) !important;
  color: #392a25;
  opacity: 0.7;
}
.testimonial-block .owl-carousel .owl-nav [class*="owl-"]:hover {
  background: none;
  color: #295135;
}
.icon-bg-testimonial {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}
.icon-bg-testimonial img {
  margin: 0 auto;
  text-align: center;
}
.instagram-block .block-content ul {
  display: inline-flex;
}
.instagram-block .block-content ul li {
  display: inline-block;
}
.instagram-block .block-content ul li img {
  opacity: 0.5;
  margin: 0 auto;
  max-width: 100%;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.instagram-block .block-content ul li:hover img {
  opacity: 1;
}
.social-tweet .tweet-container {
  display: inline-flex;
  width: 100%;
  margin-bottom: 30px;
}
.social-tweet .tweet-container:last-child {
  margin-bottom: 0;
}
.social-tweet .tweet-container .icon {
  font-size: 40px;
  margin-right: 20px;
  vertical-align: middle;
}
.social-tweet .tweet-container .tweet-content a {
  color: #295135;
}
.social-tweet .tweet-container .tweet-content a:hover {
  color: #696969;
}
.social-tweet .tweet-container .tweet-content .times {
  font-size: 12px;
}
.social-tweet .tweet-container .tweet-content .times a {
  color: #333;
}
.social-tweet .tweet-container .tweet-content .times a:hover {
  color: #295135;
}
.title-flower .title-block p.h4 {
  padding-bottom: 20px;
}
.text-center .mgs-blog-lastest-posts .item .image img {
  margin: 0 auto;
}
.text-center .mgs-blog-lastest-posts .item .post-content {
  padding-top: 30px;
}
.text-center .mgs-blog-lastest-posts .item .post-content h3 {
  margin-top: 0;
  margin-bottom: 20px;
}
.custom-line-after {
  position: relative;
}
.custom-line-after:after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  position: absolute;
  bottom: -40px;
  background-color: #333;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0 auto;
}
.swatch-option.text {
  line-height: 12px !important;
}
.fotorama__nav-wrap.fotorama__nav-wrap--horizontal {
  margin-top: 20px;
}
.header2.header-sticky-menu .slider_mgs_carousel,
.header3.header-sticky-menu .slider_mgs_carousel {
  display: none;
}
@media (min-width: 1500px) {
  .section100 .slider_mgs_carousel.owl-carousel .owl-nav .owl-prev {
    left: -50px;
  }
  .section100 .slider_mgs_carousel.owl-carousel .owl-nav .owl-next {
    right: -50px;
  }
}
@media (min-width: 1400px) {
  .section100 {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .center-sm .promobanner .text {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    left: 50%;
  }
}
.first-item {
  clear: left;
}
.weed-6 {
  padding-top: 30px;
  padding-left: 30px;
}
@media (min-width: 992px) {
  .weed-6 {
    padding-left: 150px;
    padding-top: 80px;
  }
  .first-item-md {
    clear: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .first-item-sm {
    clear: left;
  }
}
@media (max-width: 767px) {
  .first-item-xs {
    clear: left;
  }
}
.col-static {
  position: relative;
}
.col-static .panel-block-row,
.col-static div[class^="col-"],
.col-static .builder-container {
  position: static;
}
.abs-top {
  position: absolute;
  top: -300px;
  right: 0;
  z-index: 9;
  max-width: 30vw;
}
.abs-top img {
  max-width: 100%;
}
.abs-bottom {
  position: absolute;
  bottom: -110px;
  left: 0;
  z-index: 9;
  max-width: 30vw;
}
.abs-bottom img {
  max-width: 100%;
}
.get-app h2 {
  font-size: 40px;
  color: #333333;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 35px 0;
}
.get-app p {
  color: #fff;
}
.get-app .btn-app {
  margin-top: 30px;
}
.get-app .btn-app a {
  margin-top: 10px;
  margin-right: 15px;
  display: inline-block;
}
.get-app .btn-app a + a {
  margin-right: 0;
}
.insight-accordion .title {
  background: #f8f7f7;
  color: #333;
  font-weight: 700;
  padding: 15px 30px;
  position: relative;
  cursor: pointer;
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
}
.insight-accordion .title .icon {
  float: right;
}
.insight-accordion .title:hover,
.insight-accordion .title.active {
  background-color: #295135;
  color: #fff;
}
.insight-accordion .item {
  background: #f8f7f7;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}
.insight-accordion .item + .item .content {
  display: none;
}
.insight-accordion .content {
  padding: 20px 30px;
  line-height: 1.6;
}
.insight-accordion .btn {
  margin-top: 30px;
}
.simple-title .title-block {
  margin-bottom: 20px;
  background: none;
}
.simple-title .title-block > h2,
.simple-title .title-block > h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: unset;
  text-align: left;
}
.custom-boxshadown {
  box-shadow: 0 10px 0 #fafafa inset;
}
.block-about {
  text-align: center;
  display: block;
  width: 100%;
}
.block-about .block-title-about img {
  margin: 0 auto;
}
.block-about .block-title-about .h3 {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #333;
  font-weight: 400;
  margin-top: 62px;
  margin-bottom: 130px;
  max-width: 725px;
  margin-left: auto;
  margin-right: auto;
}
.block-about .box-item {
  margin-bottom: 30px;
  text-align: center;
}
.block-about .box-item img {
  margin: 0 auto;
}
.block-about .box-item h4 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 25px;
  margin-bottom: 25px;
  color: #333;
}
.block-about .box-item p {
  line-height: 25px;
  margin-bottom: 25px;
}
.block-about .box-item .btn {
  padding-left: 25.5px;
  padding-right: 25.5px;
}
.block-about .box-item.box-item2 img {
  margin-left: 100px;
}
.block-about .box-item.box-item3 img {
  margin-left: 86px;
}
.custom-layer-abs {
  position: relative;
}
.custom-layer-abs:after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background-color: #295135;
  position: absolute;
  bottom: -40px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.block-delivery-process [class*='layer-'] {
  position: absolute;
  display: block;
  max-width: 100%;
  z-index: 2;
}
.block-delivery-process .layer-left {
  left: 0;
  bottom: -200px;
}
.block-delivery-process .layer-right {
  right: 0;
  top: -138px;
}
.block-delivery-process .block-content {
  display: inline-block;
  width: 100%;
  float: left;
  text-align: center;
  padding-top: 44px;
}
.block-delivery-process .block-content .step-content [class*='step-'] {
  display: inline-block;
  width: 25%;
  text-align: center;
  float: left;
}
.block-delivery-process .block-content .step-content [class*='step-'] .box-content {
  position: relative;
}
.block-delivery-process .block-content .step-content [class*='step-'] .box-content h5 {
  font-size: 18px;
  color: #333;
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}
.block-delivery-process .block-content .step-content [class*='step-'] .box-icon {
  display: block;
  margin: 0 auto;
  width: 126px;
  height: 123px;
  background: url('../images/border-img.png') center center no-repeat scroll;
  padding-top: 4px;
}
.block-delivery-process .block-content .step-content [class*='step-'] .box-icon .farm {
  text-align: center;
  width: 115px;
  height: 115px;
  line-height: 115px;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  border-radius: 50%;
  color: #295135;
  display: block;
  margin: 0 auto;
  font-size: 0;
}
.block-delivery-process .block-content .step-content [class*='step-'] .box-icon .farm:before {
  font-size: 56px;
}
.block-delivery-process .block-content .step-content [class*='step-'] .box-icon .farm.icon-organie:before {
  font-size: 50px;
}
.block-delivery-process .block-content .step-content [class*='step-'] .box-icon:after {
  content: "";
  background: url('../images/arrow-delivery.png') scroll no-repeat;
  display: inline-block;
  width: 133px;
  height: 92px;
  position: absolute;
  top: -79px;
  right: -59px;
  opacity: 0.5;
}
.block-delivery-process .block-content .step-content [class*='step-'] .box-icon:hover .farm {
  background-color: #295135;
  color: #fff;
}
.block-delivery-process .block-content .step-content .step-1 {
  margin-top: 175px;
}
.block-delivery-process .block-content .step-content .step-4 {
  margin-top: 231px;
}
.block-delivery-process .block-content .step-content .step-4 .box-content {
  margin-left: 12px;
}
.block-delivery-process .block-content .step-content .step-4 .box-icon:after {
  display: none;
}
.block-delivery-process .block-content .step-content .setting-img {
  margin-top: -255px;
  display: inline-flex;
}
.block-delivery-process .block-content .step-content .step-2 .box-content {
  margin-right: 21px;
}
.block-delivery-process .block-content .step-content .step-2 .box-icon:after {
  transform: rotateX(180deg) rotate(30deg);
  -webkit-transform: rotateX(180deg) rotate(30deg);
  -moz-transform: rotateX(180deg) rotate(30deg);
  -ms-transform: rotateX(180deg) rotate(30deg);
  bottom: 57px;
  top: auto;
  right: -104px;
}
.block-delivery-process .block-content .step-content .step-3 .box-content {
  margin-left: 80px;
}
.block-delivery-process .block-content .step-content .step-3 .box-icon:after {
  transform: rotate(80deg);
  -webkit-transform: rotate(80deg);
  -moz-transform: rotate(80deg);
  -o-transform: rotate(80deg);
  bottom: -10px;
  top: auto;
  right: -120px;
}
.custom-title-bottom .title-block {
  margin-bottom: 65px;
}
.block-welcome-organie {
  text-align: center;
}
.block-welcome-organie .tool-tip {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333;
  max-width: 730px;
  line-height: 2;
  margin: 20px auto 105px;
}
.block-welcome-organie .block-content {
  padding-left: 110px;
  padding-right: 120px;
}
.block-welcome-organie .block-content.no-padding {
  padding: 0;
}
.block-welcome-organie .block-content.no-padding .box-cate-item {
  max-width: 100%;
}
.block-welcome-organie .box-cate-item {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 25px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 170px;
  margin: 0 auto;
}
.block-welcome-organie .box-cate-item .box-top {
  width: 100%;
  position: relative;
}
.block-welcome-organie .box-cate-item .box-top img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.block-welcome-organie .box-cate-item .box-top .farm {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 45px;
  color: #fff;
  padding-left: 20px;
}
.block-welcome-organie .box-cate-item h5 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
  margin-top: 32px;
  margin-bottom: 17px;
  text-transform: capitalize;
  display: block;
}
.block-welcome-organie .box-cate-item h5:after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: #e7e5e4;
  margin: 0 auto;
  margin-top: 17px;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
}
.block-welcome-organie .box-cate-item p.h6 {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #696969;
  margin-bottom: 0;
}
.block-welcome-organie .box-cate-item:hover h5:after {
  width: 45px;
  background-color: #295135;
}
.block-welcome-organie [class*='col-md'] {
  padding-left: 10px;
  padding-right: 10px;
}
.custom-block-why-choose {
  position: relative;
  max-height: 615px;
}
.block-why-choose-organie .box-left-abs {
  position: absolute;
  bottom: -100px;
  left: 0;
  z-index: 2;
}
.block-why-choose-organie .box-right-abs {
  position: absolute;
  right: 0;
  top: -355px;
  z-index: 2;
}
.block-why-choose-organie .block-content .box-center img {
  margin: 0 auto;
}
.block-why-choose-organie .block-content [class*='box-item'] {
  display: inline-block;
  width: 100%;
  padding: 10px 25px;
}
.block-why-choose-organie .block-content [class*='box-item'] h5 {
  font-weight: 700;
  color: #333;
  text-transform: capitalize;
  margin-top: 5px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  font-size: 18px;
}
.block-why-choose-organie .block-content [class*='box-item'] p {
  position: relative;
  z-index: 2;
  margin: 0;
}
.block-why-choose-organie .block-content .box-left {
  padding-top: 130px;
}
.block-why-choose-organie .block-content .box-left .box-item-1 {
  margin-bottom: 80px;
}
.block-why-choose-organie .block-content .box-right {
  padding-top: 130px;
}
.block-why-choose-organie .block-content .box-right .box-item-2 {
  margin-bottom: 80px;
}
.block-why-choose-organie .block-content .box-item-1 {
  position: relative;
}
.block-why-choose-organie .block-content .box-item-1:before {
  content: "";
  background-color: #fff;
  border-radius: 45px;
  bottom: -20px;
  left: -25px;
  padding: 0;
  position: absolute;
  right: 0;
  top: -15px;
  transform: perspective(800px) rotateY(-25deg);
  -webkit-transform: perspective(800px) rotateY(-25deg);
  -moz-transform: perspective(800px) rotateY(-25deg);
  -mz-transform: perspective(800px) rotateY(-25deg);
}
.block-why-choose-organie .block-content .box-item-2 {
  position: relative;
}
.block-why-choose-organie .block-content .box-item-2:before {
  background-color: #fff;
  border-radius: 45px;
  bottom: -20px;
  content: "";
  left: -5px;
  padding: 0;
  position: absolute;
  right: -20px;
  top: -15px;
  transform: perspective(800px) rotateY(25deg);
  -webkit-transform: perspective(800px) rotateY(25deg);
  -moz-transform: perspective(800px) rotateY(25deg);
  -mz-transform: perspective(800px) rotateY(25deg);
}
.promobanner .text {
  color: #000;
}
.promobanner h2,
.promobanner h3,
.promobanner h4 {
  font-weight: 700;
}
.promobanner.border-zoom:before {
  top: 30px;
  bottom: 30px;
  right: 30px;
  left: 30px;
  border-width: 2px;
  transform: scale(1.4);
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -o-transform: scale(1.4);
}
.promobanner .banner-summer {
  padding-left: 58px;
  padding-bottom: 34px;
}
.promobanner .banner-summer .h4 {
  font-size: 34px;
  color: #333;
  letter-spacing: 0.2em;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 12px;
}
.promobanner .banner-summer h3 {
  font-size: 100px;
  font-weight: 900;
  letter-spacing: 0.4em;
  color: #fff;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.promobanner .banner-summer .sale-code {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.23em;
  line-height: 1;
  color: #696969;
  padding-top: 6px;
  padding-bottom: 4px;
  margin-left: 5px;
}
.promobanner .banner-summer .sale-code .code {
  background-color: #fff;
  padding-left: 8px;
  padding-right: 10px;
  margin-left: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.promobanner .banner-organie {
  margin-top: 20px;
  margin-left: -5px;
}
.promobanner .banner-organie .h4 {
  font-size: 24px;
  letter-spacing: 0.2em;
  color: #333;
  margin-top: 0;
  margin-bottom: 5px;
  text-transform: uppercase;
  display: block;
  margin-left: 13px;
}
.promobanner .banner-organie h3 {
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 8px;
  color: #fff;
}
.promobanner .banner-organie .sale-code {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #696969;
  text-align: right;
  margin-right: 25px;
}
.margin-bottom-blog .blog-block .title-block {
  margin-bottom: 95px;
}
.block-story {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 120px;
  padding-bottom: 125px;
}
.block-story .layer-top {
  position: absolute;
  top: -145px;
  left: 0;
  z-index: -1;
}
.block-story .layer-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
}
.block-story .block-content .col-md-4 {
  position: relative;
}
.block-story .block-content .box-left,
.block-story .block-content .box-right {
  z-index: -1;
}
.block-story .block-content .box-center {
  background-color: #fff;
  width: 570px;
  height: 700px;
  padding: 62px 65px 75px;
  position: absolute;
  top: 0;
  z-index: 1;
  left: -85px;
  display: block;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  margin-top: 70px;
}
.block-story .block-content .box-center:before {
  content: "";
  display: block;
  border: 1px solid #f4f1e3;
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  bottom: 15px;
}
.block-story .block-content .box-left {
  margin-top: 70px;
}
.block-story .block-content .box-left .img-left-1 {
  float: right;
  margin-right: -30px;
  margin-top: 54px;
}
.block-story .block-content .box-left .img-left-2 {
  margin-top: 56px;
}
.block-story .block-content .box-right .img-right-1 {
  margin-left: 34px;
}
.block-story .block-content .box-right .img-right-2 {
  position: absolute;
  left: -57%;
  top: 100%;
  z-index: -1;
  margin-top: -103px;
}
.block-story .block-content .author {
  margin-top: 36px;
  display: inline-flex;
}
.block-story .block-content .author img {
  margin-right: 28px;
}
.block-story .block-content .author strong {
  text-transform: uppercase;
  display: block;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  color: #333;
  margin-top: 17px;
}
.block-story .block-content .author .info-author {
  display: inline-block;
}
.block-story .block-content .author .info {
  letter-spacing: 0.05em;
}
.block-story .title-block {
  margin-bottom: 33px;
}
.custom-block-product-slider {
  padding-left: 75px;
  padding-right: 75px;
}
.fullwidth-product-custom-col .products-grid .product-items.row-custom-2 .product-item .product-item-info .product-top .product-item-inner,
.fullwidth-product-custom-col .products-grid .product-items.row-custom-8 .product-item .product-item-info .product-top .product-item-inner,
.fullwidth-product-custom-col .products-grid .product-items.row-custom-7 .product-item .product-item-info .product-top .product-item-inner {
  left: 0;
  right: 0;
  top: 50%;
  transform: tramslateY(-50%);
  -webkit-transform: tramslateY(-50%);
  -moz-transform: tramslateY(-50%);
  -o-transform: tramslateY(-50%);
}
.fullwidth-product-custom-col .products-grid .product-items.row-custom-2 .product-item .product-item-info .product-top .product-item-inner .product-item-actions,
.fullwidth-product-custom-col .products-grid .product-items.row-custom-8 .product-item .product-item-info .product-top .product-item-inner .product-item-actions,
.fullwidth-product-custom-col .products-grid .product-items.row-custom-7 .product-item .product-item-info .product-top .product-item-inner .product-item-actions {
  display: inline-flex;
}
.fullwidth-product-custom-col .products-grid .product-items.row-custom-2 .product-item .product-item-info .product-top .product-item-inner .form,
.fullwidth-product-custom-col .products-grid .product-items.row-custom-8 .product-item .product-item-info .product-top .product-item-inner .form,
.fullwidth-product-custom-col .products-grid .product-items.row-custom-7 .product-item .product-item-info .product-top .product-item-inner .form,
.fullwidth-product-custom-col .products-grid .product-items.row-custom-2 .product-item .product-item-info .product-top .product-item-inner .btn-addto,
.fullwidth-product-custom-col .products-grid .product-items.row-custom-8 .product-item .product-item-info .product-top .product-item-inner .btn-addto,
.fullwidth-product-custom-col .products-grid .product-items.row-custom-7 .product-item .product-item-info .product-top .product-item-inner .btn-addto {
  display: inline-block;
  margin: 0 5px;
}
.block-farm-services .title-block {
  margin-bottom: 30px;
}
.block-farm-services .block-content {
  text-align: center;
}
.block-farm-services .block-content img {
  margin: 0 auto;
}
.block-farm-services .block-content .img-main img {
  max-width: 100%;
}
.block-farm-services .block-content .farm_services_item .farm {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 30px;
  color: #295135;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  margin: 20px auto 0;
  display: block;
}
.block-farm-services .block-content .farm_services_item h3 {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-top: 26px;
  margin-bottom: 10px;
  color: #333;
  text-transform: capitalize;
}
.block-farm-services .block-content .farm_services_item h3:after {
  content: "";
  display: block;
  margin: 20px auto 0;
  width: 32px;
  height: 1px;
  background-color: #e7e5e4;
}
.block-farm-services .block-content .farm_services_item p {
  margin-bottom: 5px;
  line-height: 1.7;
}
.block-farm-services .block-content .farm_services_item a {
  font-weight: 700;
  text-decoration: underline;
  color: #696969;
  letter-spacing: 0.1em;
}
.block-farm-services .block-content .farm_services_item a:hover {
  color: #295135;
}
.block-farm-services .block-content .img-main {
  margin-top: 60px;
}
.custom-deal-layout2 .deal-product-cat-block {
  margin-top: -130px;
  display: block;
  background-color: #fff;
  width: 100%;
  padding-top: 100px;
  position: relative;
  float: left;
}
.custom-deal-layout2 .title-block {
  background: none;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 156px;
  margin-left: 15px;
  width: auto;
  text-align: left;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-photo {
  padding-left: 100px;
  padding-right: 85px;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-photo .product-item-photo {
  display: block;
  width: 100%;
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
  z-index: 3;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-photo .product-item-photo:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 30px);
  height: calc(100% - 40px);
  border: 5px solid #dde8cd;
  top: 40px;
  left: 30px;
  z-index: -1;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-photo .box-deal-label {
  z-index: 5;
  left: 0;
  top: 40%;
  margin-top: -10px;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-name {
  margin-top: 18px;
  margin-bottom: 92px;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-details {
  padding-right: 100px;
  padding-left: 15px;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-details .short-description {
  margin-bottom: 20px;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-details .box-attribute {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-details .box-attribute dl {
  display: inline-flex;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-details .box-attribute dl:last-child {
  margin-bottom: 0;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-details .box-attribute dl:first-child {
  margin-top: 0;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-details .box-attribute dl dt {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #696969;
  letter-spacing: 0.05em;
  min-width: 135px;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-details .box-attribute dl dd {
  color: #696969;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-details .box-attribute dl dd a {
  color: #696969;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-details .box-attribute dl dd a:hover {
  color: #295135;
}
.custom-deal-layout2 .single-deal-grid .product-item .product-item-actions .btn-cart,
.custom-deal-layout2 .single-deal-grid .product-item .product-item-actions .btn-addto-default {
  margin-right: 10px;
}
.block-testimonial-bg {
  position: relative;
  padding-top: 90px;
  padding-bottom: 100px;
}
.block-testimonial-bg .box-left {
  position: absolute;
  left: 0;
  bottom: -190px;
}
.block-testimonial-bg .box-right {
  position: absolute;
  right: 0;
  bottom: -152px;
}
.custom-title-bottom80 .title-block {
  margin-bottom: 80px;
}
.mgs-blog-lastest-posts .owl-carousel .item .post-content {
  padding-top: 28px;
}
.mgs-blog-lastest-posts .owl-carousel .item .post-content h3 {
  margin-top: 18px;
  margin-bottom: 20px;
}
.block-plant-about .col-1 img {
  margin-left: 65px;
}
.block-plant-about .col-1 .content-box {
  padding-top: 100px;
}
.block-plant-about .col-1 .box-item {
  display: inline-block;
  width: 100%;
  float: left;
  margin-top: 15px;
  margin-bottom: 15px;
}
.block-plant-about .col-1 .box-item:first-child {
  margin-top: 0;
}
.block-plant-about .col-1 .box-item:last-child {
  margin-bottom: 0;
}
.block-plant-about .col-1 .box-item .plant {
  width: 98px;
  display: inline-block;
  text-align: left;
  font-size: 65px;
  line-height: 1;
  color: #ccc;
  float: left;
}
.block-plant-about .col-1 .box-item .text {
  display: inline-block;
  width: calc(100% - 100px);
  position: relative;
  max-width: 345px;
}
.block-plant-about .col-1 .box-item .text .h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 14px;
  letter-spacing: 0.2em;
  color: #333;
  display: block;
  position: relative;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.block-plant-about .col-1 .box-item .text .h2:before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 30px;
  position: absolute;
  left: -18px;
  top: 50%;
  vertical-align: middle;
  background-color: #295135;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.block-plant-about .col-1 .box-item .text p {
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}
.block-plant-about .col-1 .box-item:hover .text .h2 {
  color: #295135;
  padding-left: 30px;
}
.block-plant-about .col-1 .box-item:hover .text .h2:before {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
}
.block-plant-about .title-about {
  padding-left: 97px;
  margin-top: 97px;
  margin-bottom: 103px;
  max-width: 553px;
  display: block;
}
.block-plant-about .title-about h4 {
  font-size: 18px;
  letter-spacing: 0.1em;
  display: block;
  text-align: left;
  color: #333;
  line-height: 36px;
  margin-bottom: 35px;
}
.block-plant-about .title-about .author strong {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #333;
  margin-right: 10px;
}
.block-plant-about .title-about .author .h6 {
  letter-spacing: 0.05em;
  color: #696969;
  margin: 0;
}
.block-plant-about .box-img-2 {
  padding-left: 20px;
  position: relative;
  display: block;
}
.block-plant-about .box-img-2:before {
  content: "";
  display: inline-block;
  width: 185px;
  height: 290px;
  border: 8px solid #e8f0de;
  position: absolute;
  left: -4px;
  bottom: -60px;
  z-index: -1;
}
.block-counter {
  display: inline-block;
  float: left;
  width: 100%;
}
.block-counter .counter-number {
  display: inline-block;
  width: 25%;
  float: left;
  text-align: center;
  border-left: 1px solid #e0e0e0;
  padding: 30px 0;
}
.block-counter .counter-number span {
  display: block;
}
.block-counter .counter-number .counter {
  font-size: 40px;
  font-weight: 700;
  color: #295135;
  margin-top: 0;
  margin-bottom: 15px;
  position: relative;
  line-height: 1;
}
.block-counter .counter-number .text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #333;
}
.block-counter .counter-number:first-child {
  border-left: 0;
}
.block-counter .counter-number.number-2 .counter:after,
.block-counter .counter-number.number-4 .counter:after {
  content: "+";
  display: inline-block;
  font-size: 40px;
  line-height: 1;
  position: absolute;
  font-size: 25px;
}
.background-center {
  background-position: center center;
}
.title-plant .title-block {
  background: url('../images/bg-title-plant.png') no-repeat top center scroll;
  padding-top: 83px;
  padding-bottom: 22px;
}
.block-organie-video {
  width: 100%;
  max-width: 790px;
  float: right;
  text-align: center;
  position: relative;
}
.block-organie-video .title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.8em;
  color: #295135;
  margin-bottom: 30px;
  margin-top: 2px;
  line-height: 1;
}
.block-organie-video h3 {
  font-size: 80px;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5em;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 35px;
}
.block-organie-video .video-info {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #333;
  padding-left: 25px;
}
.block-organie-video .video-info a {
  margin-left: 20px;
  margin-right: 20px;
  font-size: 11px;
  color: #fff;
  display: inline-block;
  position: relative;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
}
.block-organie-video .video-info a .fa {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 51%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  padding-left: 10px;
  font-size: 8px;
}
.block-organie-video .video-info a:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.block-organie-video .box-abs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.mfp-video-popup button.mfp-close {
  color: #fff !important;
  top: 0 !important;
  right: 0 !important;
  opacity: 1 !important;
}
.mfp-video-popup .mfp-ifarme {
  border: 30px solid rgba(0, 0, 0, 0.9);
}
.block-organie-app .title {
  text-align: left;
  margin-bottom: 60px;
}
.block-organie-app .title h2 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #333;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 7px;
}
.block-organie-app .title .h4 {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #295135;
  margin: 0;
}
.block-organie-app .block-content .box-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
.block-organie-app .block-content .box-item .item-title {
  display: inline-block;
  width: 100%;
}
.block-organie-app .block-content .box-item .item-title h6 {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 17px 14px 17px 30px;
  line-height: 1;
  border-radius: 3px;
  background-color: #f8f7f7;
  color: #333;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  cursor: pointer;
}
.block-organie-app .block-content .box-item .item-title h6 span {
  text-align: right;
  color: #295135;
  font-size: 17px;
  float: right;
}
.block-organie-app .block-content .box-item .item-content {
  padding: 27px 30px 28px;
  background-color: #f8f7f7;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  line-height: 1.65;
}
.block-organie-app .block-content .box-item .item-title:hover h6 {
  color: #fff;
  background-color: #295135;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.block-organie-app .block-content .box-item .item-title:hover h6 span {
  color: #fff;
}
.block-organie-app .block-content .box-item.active .item-title h6 {
  color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #295135;
}
.block-organie-app .block-content .box-item.active .item-title h6 span {
  color: #fff;
}
.block-organie-app .block-content .box-item.active .item-title h6 span:before {
  content: "\f207";
}
.block-plant-about-2 .box-layer-left,
.block-plant-about-2 .box-layer-right {
  position: absolute;
  z-index: 100;
}
.block-plant-about-2 .box-layer-left {
  left: 0;
  top: 295px;
}
.block-plant-about-2 .box-layer-right {
  right: 0;
  top: 130px;
}
.block-plant-about-2 .block-content {
  text-align: center;
}
.block-plant-about-2 .block-content .title-about h3 {
  font-size: 120px;
  font-weight: 900;
  color: #295135;
  letter-spacing: 0.1em;
  margin: 0;
  display: inline-block;
  line-height: 1;
}
.block-plant-about-2 .block-content .title-about h3 span {
  display: inline-block;
  float: left;
  color: #333;
  font-weight: 400;
  font-size: 72px;
  margin-left: 110px;
  width: 100%;
  letter-spacing: 0.1em;
}
.block-plant-about-2 .block-content .desc {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  max-width: 720px;
  display: block;
  margin: 60px auto 55px;
}
.block-plant-about-2 .block-content .h2 {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
  line-height: 1.2;
  color: #333;
}
.block-plant-about-2 .block-content .section-1 {
  padding-bottom: 90px;
  display: block;
  position: relative;
}
.block-plant-about-2 .block-content .section-1:after {
  content: "";
  width: 1px;
  height: 100px;
  background-color: #333;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -55px;
}
.block-plant-about-2 .block-content .section-2 {
  background-color: #f8f7f7;
  padding: 125px 0 95px;
}
.block-plant-about-2 .block-content .section-2 .item {
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
}
.block-plant-about-2 .block-content .section-2 .item .plant {
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #fff;
  color: #295135;
  font-size: 72px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  line-height: 150px;
  padding-left: 30px;
}
.block-plant-about-2 .block-content .section-2 .item h4 {
  font-size: 24px;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 43px;
  margin-bottom: 24px;
}
.block-plant-about-2 .block-content .section-2 .item p {
  margin-bottom: 14px;
}
.block-plant-about-2 .block-content .section-2 .item a {
  font-weight: 700;
  font-size: 14px;
  color: #696969;
  letter-spacing: 0.1em;
  text-decoration: underline;
  margin: 0;
  line-height: 1;
}
.block-plant-about-2 .block-content .section-2 .item a:hover {
  color: #295135;
}
.title-no-bg .title-block {
  background: none;
  margin-bottom: 50px;
}
.custom-testimonial-layout1 .testimonial-block {
  max-width: 965px;
  width: 100%;
  float: right;
  text-align: center;
  margin: 0 auto;
}
.custom-testimonial-layout1 .testimonial-block .mgs-testimonial {
  padding-left: 90px;
  padding-right: 90px;
}
.custom-testimonial-layout1 .testimonial-block .mgs-testimonial .owl-carousel .testimonial-item {
  background-color: #fff;
  padding: 50px 35px;
  min-height: 421px;
}
.custom-testimonial-layout1 .testimonial-block .mgs-testimonial .owl-carousel .testimonial-item .img-author {
  margin-top: 0;
  margin-bottom: 24px;
}
.custom-testimonial-layout1 .testimonial-block .mgs-testimonial .owl-carousel .testimonial-item .content p.h5 {
  margin-top: 0;
  letter-spacing: 0.05em;
  line-height: 30px;
}
.custom-testimonial-layout1 .testimonial-block .owl-carousel .owl-nav .owl-prev {
  left: -90px;
}
.custom-testimonial-layout1 .testimonial-block .owl-carousel .owl-nav .owl-next {
  right: -90px;
}
.block-flower-collection {
  padding-top: 102px;
  padding-bottom: 80px;
  display: block;
  width: 100%;
  position: relative;
}
.block-flower-collection:before {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background-color: #333;
  position: absolute;
  top: -50px;
  margin: 0 auto;
  z-index: 3;
  left: 0;
  right: 0;
}
.block-flower-collection a.btn {
  width: 148px;
}
.block-flower-collection .box-text-spring {
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 45px;
  padding-bottom: 112px;
}
.block-flower-collection .box-text-spring .sub-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  display: block;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 17px;
}
.block-flower-collection .box-text-spring h3 {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #333;
  line-height: 48px;
  margin-bottom: 35px;
  margin-top: 0;
  text-transform: capitalize;
}
.block-flower-collection .box-text-spring p {
  max-width: 500px;
  margin: 0 auto 35px;
}
.block-flower-collection .box-img-1 {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.block-flower-collection .box-img-1 h4 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #333;
  max-width: 215px;
  position: absolute;
  bottom: 87px;
  left: 0;
  z-index: 2;
}
.block-flower-collection .box-img-1 img {
  position: relative;
  left: -50px;
  z-index: 1;
}
.block-flower-collection .box-img-1 span {
  display: inline-block;
  position: relative;
}
.block-flower-collection .box-img-1 span:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #333;
  position: absolute;
  top: 30px;
  right: 10px;
  max-width: 370px;
  max-height: 540px;
  z-index: 0;
}
.block-flower-collection .box-img-2 {
  text-align: right;
}
.block-flower-collection .box-img-2 h4 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333;
  max-width: 210px;
  margin: 0 auto;
  text-align: left;
  z-index: 2;
  position: relative;
  line-height: 56px;
  padding-left: 25px;
}
.block-flower-collection .box-img-2 img {
  margin-top: -23px;
  z-index: 1;
  margin-left: auto;
}
.block-flower-collection .box-text-organie {
  display: block;
  width: 100%;
  padding-top: 168px;
  text-align: center;
}
.block-flower-collection .box-text-organie .h4 {
  margin-top: 0;
  font-size: 18px;
  letter-spacing: 0.2em;
  margin-bottom: 33px;
  z-index: 2;
  line-height: 1;
  display: block;
}
.block-flower-collection .box-text-organie h2 {
  font-weight: 900;
  color: #333;
  letter-spacing: 0.2em;
  line-height: 62px;
  margin-top: 0;
  margin-bottom: 42px;
  font-size: 72px;
  text-transform: uppercase;
  padding-left: 15px;
  float: left;
  width: 100%;
}
.block-flower-collection .box-text-organie h2 span {
  font-size: 40px;
  width: 100%;
  float: left;
  padding-top: 12px;
  letter-spacing: 0.2em;
}
.block-flower-collection .box-text-organie p {
  max-width: 500px;
  margin: 0 auto 35px;
}
.custom-col-flower .col-md-5 {
  width: 45.3%;
}
.custom-col-flower .col-md-7 {
  width: 54.7%;
}
.block-deal-flower {
  padding-left: 100px;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.block-deal-flower img {
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.block-deal-flower .box-content {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.block-deal-flower .box-text {
  position: absolute;
  left: 50%;
  margin: 0 auto;
  z-index: 2;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  text-align: center;
}
.block-deal-flower .box-text h2 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 900;
  color: #333;
  margin-top: 0;
  margin-bottom: 40px;
  line-height: 1;
  letter-spacing: 0.2em;
}
.block-deal-flower .box-text .sale {
  font-size: 72px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  margin-bottom: 38px;
  display: block;
  margin-top: 0;
}
.block-deal-flower .box-text p {
  letter-spacing: 0.2em;
  color: #696969;
  margin: 0;
  text-transform: uppercase;
}
.block-deal-flower .box-text a {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.2em;
  padding: 7px 8px;
  max-width: 130px;
  background-color: #333;
}
.block-deal-flower .box-text a:hover {
  background-color: #295135;
}
.block-deal-flower .box-text .box-abs {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  padding: 75px 20px 90px;
}
.block-deal-flower .box-text .box-abs a {
  bottom: 90px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 10;
}
.block-deal-flower .box-text .box-abs:after {
  content: "";
  display: block;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid #696969;
  position: absolute;
  z-index: 9;
  top: 20px;
}
.block-deal-flower:hover .box-content > img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .product-photo {
  display: none;
}
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .product-item-details {
  width: 100%;
  padding: 0;
}
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .product-item-details .product-item-name,
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .product-item-details .short-description,
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .product-item-details .box-attribute,
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .product-item-details .product-item-inner {
  display: none;
}
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .deal-timer {
  margin-top: 36px;
  margin-bottom: 0;
  margin-left: 52px;
  text-align: center;
}
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .deal-timer .countdown {
  max-width: 464px;
  margin: 0 auto;
}
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .deal-timer .countdown span {
  color: #333;
  margin-bottom: 0;
}
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .deal-timer .countdown span b:not(.timer) {
  margin-bottom: 10px;
}
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .deal-timer .countdown span b:not(.timer):after {
  top: 22px;
}
.deal-desc-hidden .deal-product-cat-block .single-deal-grid .product-item .deal-timer .countdown span .timer {
  color: #295135;
}
.title-flower2 .title h3 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 70px;
  color: #333;
  text-transform: capitalize;
  letter-spacing: 0.1em;
}
.custom-box-product-bg .content-block {
  background-color: #f8f7f7;
  padding: 100px 70px 35px;
}
.custom-box-product-bg .products-grid .owl-carousel .owl-nav [class*='owl-'] {
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  visibility: visible;
}
.custom-box-product-bg .products-grid .owl-carousel .owl-nav [class*='owl-']:hover {
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
}
.custom-box-product-bg .products-grid .owl-carousel .owl-nav .owl-prev {
  left: -60px;
  margin-top: -90px;
}
.custom-box-product-bg .products-grid .owl-carousel .owl-nav .owl-next {
  right: -60px;
  margin-top: -90px;
}
.container-panel .sort-block-container {
  display: inline-block;
  width: 100%;
}
.custom-title-top .title-flower2 {
  position: relative;
  top: 82px;
  left: 96px;
  z-index: 9;
}
.custom-trending.custom-title-top .title-flower2 {
  top: 62px;
}
.custom-trending.custom-title-top .title-flower2 h3 {
  margin-bottom: 50px;
}
.box-text-flower {
  padding-top: 44px;
  padding-bottom: 32px;
  text-align: center;
}
.box-text-flower .sub-title {
  font-weight: 900;
  letter-spacing: 0.5em;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #333;
  margin: 0 auto 37px;
  display: block;
}
.box-text-flower h3 {
  font-size: 80px;
  margin: 0 auto 20px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #333;
  margin-left: 30px;
}
.box-text-flower p {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.7em;
  color: #333;
  text-transform: uppercase;
}
.box-text-flower .box-abs {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  max-width: 720px;
}
.block-fresh-spring {
  padding-right: 100px;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.block-fresh-spring .box-content {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.block-fresh-spring .box-content img {
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.block-fresh-spring h6 {
  margin: 0;
  line-height: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}
.block-fresh-spring h6.first {
  top: 12.5%;
  margin-top: -2px;
}
.block-fresh-spring h6.last {
  bottom: 12.5%;
  margin-bottom: -3px;
}
.block-fresh-spring h6.last a {
  color: #fff;
}
.block-fresh-spring h6.last a:hover {
  color: #295135;
}
.block-fresh-spring .box-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
  right: 0;
  max-width: 660px;
  margin: 0 auto;
}
.block-fresh-spring .box-text .box-bg-white {
  background-color: #fff;
  max-width: 660px;
  padding-top: 95px;
  padding-bottom: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.block-fresh-spring .box-text .box-bg-white img {
  margin: 0 auto;
  max-width: 100%;
}
.block-fresh-spring .box-text .box-bg-white h3 {
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  width: auto;
  margin: 0 auto;
  text-align: center;
}
.block-fresh-spring .box-text .box-bg-white h3 span {
  background: url('../images/bg-fresh.jpg') center center scroll no-repeat;
  width: auto;
  display: inline-block;
}
.block-fresh-spring .box-text .box-bg-white h4 {
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 0.43em;
  color: #333;
  margin-top: 26px;
  line-height: 1;
  margin-bottom: 0;
  margin-left: 13px;
}
.block-fresh-spring .box-text .box-bg-white:after {
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  top: 20px;
  border: 1px solid #e0e0e0;
}
.block-fresh-spring:hover .box-content > img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.footer2 address {
  font-size: 15px;
}
.border-title .title-flower2 .title {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.border-title .title-flower2 .title h3 {
  width: auto;
  position: relative;
  display: inline-block;
  margin-bottom: 73px;
}
.border-title .title-flower2 .title h3:after,
.border-title .title-flower2 .title h3:before {
  content: "";
  width: 999px;
  height: 1px;
  background-color: #696969;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: 3px;
}
.border-title .title-flower2 .title h3:after {
  left: 100%;
  margin-left: 53px;
}
.border-title .title-flower2 .title h3:before {
  right: 100%;
  margin-right: 55px;
}
.pagination-white .slider_mgs_carousel.owl-carousel .owl-dots .owl-dot span {
  background-color: #fff;
  border: 1px solid #fff;
}
.pagination-white .slider_mgs_carousel.owl-carousel .owl-dots .owl-dot:hover span,
.pagination-white .slider_mgs_carousel.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
  border: 1px solid #fff;
}
.block-about-flower3 .box-img-main {
  display: inline-block;
  width: 100%;
  position: relative;
}
.block-about-flower3 .box-img-main .img-1 {
  position: relative;
  display: table;
}
.block-about-flower3 .box-img-main .img-1:before {
  content: "";
  display: block;
  width: 200px;
  height: 205px;
  border: 10px solid #295135;
  position: absolute;
  bottom: -155px;
  left: 72px;
}
.block-about-flower3 .box-img-main .img-1:after {
  content: "";
  display: block;
  width: 200px;
  height: 205px;
  border: 5px solid #efefef;
  position: absolute;
  top: 50px;
  right: -56px;
}
.block-about-flower3 .box-img-main .img-2 {
  position: absolute;
  top: 194px;
  right: 64px;
}
.block-about-flower3 .title {
  margin-top: 30px;
  margin-bottom: 90px;
}
.block-about-flower3 .title img {
  margin-left: 86px;
}
.block-about-flower3 .title h5 {
  margin: 0;
  font-size: 18px;
  color: #333;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: -80px;
}
.block-about-flower3 .item-about {
  display: inline-block;
  width: 100%;
  max-width: 380px;
  margin-bottom: 46px;
}
.block-about-flower3 .item-about .h2 {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-top: 0;
  margin-bottom: 13px;
  color: #333;
  text-transform: uppercase;
}
.block-about-flower3 .item-about p {
  margin: 0;
  line-height: 24px;
}
.custom-title-top-center .title-flower2 .title h3 {
  margin-top: -30px;
  text-align: center;
  margin-bottom: 122px;
}
.custom-promo-button .promobanner .top-middle {
  top: 40%;
  margin-top: -35px;
}
.custom-promo-button .promobanner .btn-promo-banner {
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.4em;
  font-weight: bold;
  text-transform: none;
  line-height: 1;
  border: none;
  background-color: #333;
  padding: 0 0 1px;
  border-radius: 0;
  width: 146px;
  text-align: right;
  margin-top: 5px;
}
.custom-promo-button .promobanner .btn-promo-banner:hover {
  background-color: #295135;
}
.block-img-deal {
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
}
.block-img-deal img {
  margin: 0 auto;
}
.block-img-deal h3 {
  font-size: 48px;
  color: #333;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-left: 15px;
}
.block-img-deal p.h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #295135;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-left: 16px;
}
.fotorama--fullscreen {
  z-index: 1201 !important;
}
.custom-deal-layout-3 .single-deal-grid .product-item {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  text-align: center;
}
.custom-deal-layout-3 .single-deal-grid .product-item .box-content {
  background-color: #f8f7f7;
  padding: 68px 50px 72px;
}
.custom-deal-layout-3 .single-deal-grid .product-item .box-attribute {
  margin-bottom: 28px;
}
.custom-deal-layout-3 .single-deal-grid .product-item .box-attribute dl {
  margin-bottom: 5px;
  margin-top: 6px;
}
.custom-deal-layout-3 .single-deal-grid .product-item .box-attribute dl dt,
.custom-deal-layout-3 .single-deal-grid .product-item .box-attribute dl dd {
  width: 50%;
}
.custom-deal-layout-3 .single-deal-grid .product-item .box-attribute dl dd {
  padding-left: 10px;
  text-align: left;
}
.custom-deal-layout-3 .single-deal-grid .product-item .box-attribute dl dd .price-box .price {
  font-size: 16px;
}
.custom-deal-layout-3 .single-deal-grid .product-item .box-attribute dl dd .price-box .old-price {
  display: none;
}
.custom-deal-layout-3 .single-deal-grid .product-item .box-attribute dl dd .price-box .special-price .price {
  color: #295135;
}
.custom-deal-layout-3 .single-deal-grid .product-item .box-attribute dl dt {
  padding-right: 20px;
  text-align: right;
}
.custom-deal-layout-3 .single-deal-grid .product-item .box-attribute dl:first-child {
  margin-top: 0;
}
.custom-deal-layout-3 .single-deal-grid .product-item .short-description {
  line-height: 26px;
  margin-bottom: 42px;
}
.custom-deal-layout-3 .single-deal-grid .product-item .deal-timer {
  margin-top: 16px;
  margin-bottom: 0;
}
.custom-deal-layout-3 .single-deal-grid .product-item .deal-timer .countdown {
  max-width: 450px;
}
.custom-deal-layout-3 .single-deal-grid .product-item .deal-timer .countdown span {
  color: #333;
}
.custom-deal-layout-3 .single-deal-grid .product-item .deal-timer .countdown span b:not(.timer):after {
  top: 23px;
}
.custom-deal-layout-3 .single-deal-grid .product-item .deal-timer .countdown span .timer {
  color: #295135;
}
.custom-deal-layout-3 .single-deal-grid .product-item .product-item-actions .btn-cart {
  margin: 0 auto;
}
.background-bottom-center {
  background-position: bottom center;
}
.custom-deal-layout3 .deal-product-cat-block {
  width: 100%;
  float: right;
  display: inline-block;
  max-width: 500px;
}
.custom-title-top-deal .title-flower2 {
  position: relative;
  bottom: -64px;
  z-index: 4;
  float: right;
  width: 100%;
  max-width: 500px;
  text-align: center;
}
.custom-title-top-deal .title-flower2 .title h3 {
  margin-bottom: 46px;
  padding-left: 5px;
  text-transform: none;
}
.block-flower-summer {
  width: 100%;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.block-flower-summer .sub-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 30px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.block-flower-summer h3 {
  font-size: 40px;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  color: #333;
  line-height: 48px;
  margin-bottom: 54px;
  margin-top: 0;
}
.block-flower-summer .btn-default {
  border: none;
  background-color: #fff;
  color: #295135;
  width: 148px;
}
.block-flower-summer .btn-default:hover {
  color: #fff;
  background-color: #295135;
}
.block-spring-flower {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 270px 0 100px;
  position: relative;
}
.block-spring-flower img {
  margin: 0 auto;
}
.block-spring-flower h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: #696969;
  margin: 0 auto 35px;
}
.block-spring-flower h3 {
  font-size: 48px;
  letter-spacing: 0.2em;
  color: #333;
  text-transform: uppercase;
  margin: 0 auto;
}
.block-spring-flower a {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.block-spring-flower .text {
  position: absolute;
  top: 180px;
  bottom: 34px;
  left: 0;
  right: 0;
}
.no-padding-right {
  padding-right: 0 !important;
}
.no-padding-left {
  padding-left: 0 !important;
}
.block-flower-about {
  width: 100%;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.block-flower-about img {
  margin: 0 auto;
  max-width: 100%;
}
.block-flower-about h3 {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #333;
  margin: 0 auto;
  margin-top: 28px;
}
.custom-promobanner .promobanner {
  margin-bottom: 0;
}
.custom-promobanner .promobanner img {
  width: 100%;
}
.promobanner .box-white {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #333;
  background-color: #fff;
  line-height: 1;
  padding: 35px 0;
  width: 212px;
  text-align: center;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.promobanner .box-white:hover {
  background-color: #295135;
  color: #fff;
}
.promobanner .banner-fresh {
  padding: 46px 0;
  text-align: center;
}
.promobanner .banner-fresh .sub-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #333;
  margin-bottom: 120px;
  display: block;
}
.promobanner .banner-fresh h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: #333;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  margin-bottom: 5px;
  margin-left: 20px;
}
.promobanner .banner-fresh p {
  font-size: 24px;
  color: #333;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 100px;
  white-space: nowrap;
  margin-left: 10px;
}
.promobanner .banner-fresh a {
  font-size: 18px;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.promobanner .banner-wedding {
  padding-right: 38px;
  padding-bottom: 25px;
}
.promobanner .banner-wedding h3 {
  font-size: 40px;
  font-weight: 900;
  color: #333;
  letter-spacing: 0.15em;
  margin: 0;
  margin-bottom: 10px;
  line-height: 0.8;
  padding-left: 10px;
}
.promobanner .banner-wedding p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0;
  color: #696969;
}
.promobanner .banner-beautiful {
  padding-right: 37px;
}
.promobanner .banner-beautiful h3 {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  color: #333;
  padding-top: 5px;
  margin-right: -5px;
}
.promobanner .banner-beautiful .h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-left: 10px;
  padding-right: 5px;
  line-height: 20px;
  min-height: 20px;
  background-color: #fff;
  margin: 0;
  color: #696969;
  float: right;
}
.block-amazing-services .block-content {
  display: inline-block;
  width: 100%;
  padding-top: 20px;
}
.block-amazing-services .block-content .col-md-4 .box-item-services:first-child {
  margin-top: 68px;
}
.block-amazing-services .block-content .box-item-services {
  display: inline-block;
  width: 100%;
  margin-bottom: 87px;
}
.block-amazing-services .block-content .box-item-services .icon-flower {
  display: inline-block;
  width: 70px;
  height: 70px;
  background-color: #fff;
  padding: 14px 0;
  text-align: center;
  margin-right: 30px;
  border-radius: 50%;
  float: left;
}
.block-amazing-services .block-content .box-item-services .icon-flower img {
  margin: 0 auto;
}
.block-amazing-services .block-content .box-item-services .text {
  display: inline-block;
  width: calc(100% - 100px);
}
.block-amazing-services .block-content .box-item-services .text h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333;
  margin-top: 0;
  margin-bottom: 12px;
}
.block-amazing-services .block-content .box-item-services .text p {
  line-height: 24px;
}
.block-amazing-services .block-content .box-item-services.icon-right .icon-flower {
  margin-left: 30px;
  float: right;
  margin-right: 0;
}
.block-amazing-services .block-content .icon-right {
  text-align: right;
  float: right;
}
.block-amazing-services .block-content .main-content {
  text-align: center;
  width: 100%;
  display: block;
}
.block-amazing-services .block-content .main-content img {
  margin: 0 auto;
}
.title-bottom62 .title-block {
  margin-bottom: 62px;
}
.title-bottom70 .title-block {
  margin-bottom: 70px;
}
.mgs-blog-lastest-posts .owl-carousel .owl-nav .owl-next {
  right: -16px;
}
.mgs-blog-lastest-posts .owl-carousel .owl-nav .owl-prev {
  left: -16px;
}
.no-margin .promobanner {
  margin: 0 !important;
}
.custom-banner .promobanner {
  display: flex;
  justify-content: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  width: 100%;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  display: -webkit-flex;
}
.custom-banner .promobanner img {
  height: 100%;
  max-width: 1000px;
}
.onepage-slider .page {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.block-custom-product {
  display: flex;
  width: 100%;
  position: relative;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-direction: column;
  -moz-box-flex: 1;
  -webkit-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -moz-box-pack: center;
  text-align: center;
  display: -webkit-flex;
  height: 100%;
}
.block-custom-product img {
  max-width: 100%;
}
.block-custom-product .box-price {
  font-size: 18px;
  font-weight: 900;
  color: #696969;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-bottom: 28px;
}
.block-custom-product h3 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #333;
  text-transform: capitalize;
  margin: 0 auto 15px;
}
.block-custom-product a {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 auto;
  display: table;
}
.block-custom-product a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #295135;
  opacity: 0;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
}
.block-custom-product a:hover:after {
  opacity: 1;
}
.home-content {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.onepage-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 0;
  -webkit-transform-style: preserve-3d;
}
.onepage-wrapper .section {
  width: 100%;
  height: 100%;
}
span.floor::before {
  border: 1px solid black;
  width: 10px;
  height: 10px;
  content: " ";
}
span.building::before {
  border: 1px solid black;
  width: 10px;
  height: 10px;
  content: " ";
}
.onepage-pagination {
  position: absolute;
  right: 40px;
  top: 50%;
  z-index: 5;
  list-style: none;
  margin: 0;
  padding: 0;
}
.onepage-pagination li {
  padding: 0;
  text-align: center;
}
.onepage-pagination li a {
  padding: 15px;
  width: 8px;
  height: 8px;
  display: block;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.onepage-pagination li a:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #ababab;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.onepage-pagination li a.active:before {
  width: 12px;
  height: 12px;
  background: none;
  border: 1px solid #333;
  margin-top: -4px;
  left: 13px;
}
.disabled-onepage-scroll,
.disabled-onepage-scroll .wrapper {
  overflow: auto;
}
.disabled-onepage-scroll .onepage-wrapper .section {
  position: relative !important;
  top: auto !important;
  left: auto !important;
}
.disabled-onepage-scroll .onepage-wrapper {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  transform: none !important;
  -ms-transform: none !important;
  min-height: 100%;
}
.disabled-onepage-scroll .onepage-pagination {
  display: none;
}
body.disabled-onepage-scroll,
.disabled-onepage-scroll .onepage-wrapper,
html {
  position: inherit;
}
@media (min-width: 769px) {
  .products-grid.productv3 .product-item .product-item-info .product-top .product-item-inner .btn-addto {
    transform: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -o-transform: unset;
  }
}
.cms-home .carousel-container > #banner-slider-carousel .owl-nav {
  display: block;
}
.cms-home .carousel-container > #banner-slider-carousel .owl-nav.disabled {
  display: block;
}
.blog-post-list .breadcrumbs {
  padding: 20px 0 0;
}
.blog-post-list .column.main {
  margin-top: 0;
}
.note.wrap-word {
  resize: auto;
  cursor: text;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  column-count: initial !important;
}
/*FAREASTFLO-735*/
form.form-create-account label[for="dob"],
form.form-edit-account label[for="dob"],
#customer_account_create label[for="dob"] {
  float: left;
  margin-top: 13px;
}
form.form-create-account .field.customer-dob,
form.form-edit-account .field.customer-dob,
#customer_account_create .field.customer-dob {
  margin-left: 105px;
}
form.form-create-account .field.customer-dob .date-time,
form.form-edit-account .field.customer-dob .date-time,
#customer_account_create .field.customer-dob .date-time {
  display: flex;
  flex-wrap: nowrap;
}
form.form-create-account .field.customer-dob .date-time > *,
form.form-edit-account .field.customer-dob .date-time > *,
#customer_account_create .field.customer-dob .date-time > * {
  width: 110px;
  position: relative;
  padding: 0 30px 0 0;
}
form.form-create-account .field.customer-dob .date-time > *:not(:last-child):after,
form.form-edit-account .field.customer-dob .date-time > *:not(:last-child):after,
#customer_account_create .field.customer-dob .date-time > *:not(:last-child):after {
  margin-left: -20px;
  content: ' \002F';
  position: absolute;
  left: 100%;
  top: 0;
  font-size: 30px;
  line-height: 40px;
  font-weight: 300;
  color: #ddd;
}
form.form-create-account .field.customer-dob .date-time select,
form.form-edit-account .field.customer-dob .date-time select,
#customer_account_create .field.customer-dob .date-time select,
form.form-create-account .field.customer-dob .date-time input.input-text,
form.form-edit-account .field.customer-dob .date-time input.input-text,
#customer_account_create .field.customer-dob .date-time input.input-text {
  border-color: #ddd;
}
form.form-create-account .field.customer-dob + .row,
form.form-edit-account .field.customer-dob + .row,
#customer_account_create .field.customer-dob + .row {
  clear: both;
  margin-left: 0;
  margin-right: 0;
}
form.form-create-account .field.customer-dob + .row .offset3.contact_number .form-group,
form.form-edit-account .field.customer-dob + .row .offset3.contact_number .form-group,
#customer_account_create .field.customer-dob + .row .offset3.contact_number .form-group {
  margin-bottom: 0;
}
form.form-create-account .field.customer-dob + .row .offset3.contact_number .label,
form.form-edit-account .field.customer-dob + .row .offset3.contact_number .label,
#customer_account_create .field.customer-dob + .row .offset3.contact_number .label {
  float: left;
  margin-top: 13px;
}
form.form-create-account .field.customer-dob + .row .offset3.contact_number .controls,
form.form-edit-account .field.customer-dob + .row .offset3.contact_number .controls,
#customer_account_create .field.customer-dob + .row .offset3.contact_number .controls {
  margin-left: 130px;
}
form.form-create-account .field.customer-dob + .row .offset3.contact_number .input-append,
form.form-edit-account .field.customer-dob + .row .offset3.contact_number .input-append,
#customer_account_create .field.customer-dob + .row .offset3.contact_number .input-append {
  display: flex;
  flex-wrap: nowrap;
}
form.form-create-account .field.customer-dob + .row .offset3.contact_number .input-append select,
form.form-edit-account .field.customer-dob + .row .offset3.contact_number .input-append select,
#customer_account_create .field.customer-dob + .row .offset3.contact_number .input-append select,
form.form-create-account .field.customer-dob + .row .offset3.contact_number .input-append input.input-text,
form.form-edit-account .field.customer-dob + .row .offset3.contact_number .input-append input.input-text,
#customer_account_create .field.customer-dob + .row .offset3.contact_number .input-append input.input-text {
  border-color: #ddd;
}
form.form-create-account .field.customer-dob + .row .offset3.contact_number .input-append select,
form.form-edit-account .field.customer-dob + .row .offset3.contact_number .input-append select,
#customer_account_create .field.customer-dob + .row .offset3.contact_number .input-append select {
  width: 75px;
}
form.form-create-account .field.customer-dob + .row .offset3.contact_number .input-append input.input-text,
form.form-edit-account .field.customer-dob + .row .offset3.contact_number .input-append input.input-text,
#customer_account_create .field.customer-dob + .row .offset3.contact_number .input-append input.input-text {
  width: 200px;
  border-left: 0;
}
.checkout-index-index #customer_account_create .field.customer-dob + .row .offset3.contact_number .input-append input.input-text {
  width: calc(100% - 75px);
}
.customer-account-login .create.account .checkbox.choice.newsletter {
  margin-bottom: 10px;
}
.customer-account-login .create.account .checkbox.choice.term-policy {
  margin-top: 0;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .customer-account-login .login-container .col-sm-6 {
    width: 100%;
  }
  form.form-create-account label[for="dob"],
  form.form-edit-account label[for="dob"],
  #customer_account_create label[for="dob"] {
    float: none;
    margin-top: 0;
  }
  form.form-create-account .field.customer-dob,
  form.form-edit-account .field.customer-dob,
  #customer_account_create .field.customer-dob {
    margin-left: 0;
  }
  form.form-create-account .field.customer-dob + .row .offset3.contact_number .label,
  form.form-edit-account .field.customer-dob + .row .offset3.contact_number .label,
  #customer_account_create .field.customer-dob + .row .offset3.contact_number .label {
    float: none;
    margin-top: 0;
  }
  form.form-create-account .field.customer-dob + .row .offset3.contact_number .controls,
  form.form-edit-account .field.customer-dob + .row .offset3.contact_number .controls,
  #customer_account_create .field.customer-dob + .row .offset3.contact_number .controls {
    margin-left: 0;
  }
}
.customer-account-login .create.account .customer-name .label {
  display: block;
}
.tooltip-text {
  display: none;
}
.tooltip-icon {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 0;
}
.tooltip-icon:before {
  font-family: "FontAwesome";
  color: #ababab;
  cursor: pointer;
}
.tooltip-icon:hover .tooltip-text {
  display: block;
  background: #fff;
  border: 1px solid #333;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  top: 20px;
  z-index: 10;
  padding: 10px;
  text-align: center;
  white-space: normal;
}
.tooltip-icon:hover .tooltip-text p {
  margin-bottom: 0;
}
.tooltip-icon:hover .tooltip-text:before,
.tooltip-icon:hover .tooltip-text:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  right: calc(50% - 4px);
}
.tooltip-icon:hover .tooltip-text:before {
  border-bottom: 4px solid #333;
  top: -5px;
}
.tooltip-icon:hover .tooltip-text:after {
  border-bottom: 4px solid #fff;
  top: -4px;
}
.account.customer-account-login .fieldset.info input[type="checkbox"],
.checkout-index-index #customer_account_create .fieldset.info input[type="checkbox"],
.account.customer-account-login .fieldset input[type="checkbox"],
.checkout-index-index #customer_account_create .fieldset input[type="checkbox"] {
  display: block;
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}
.account.customer-account-login .fieldset.info input[type="checkbox"] + label,
.checkout-index-index #customer_account_create .fieldset.info input[type="checkbox"] + label,
.account.customer-account-login .fieldset input[type="checkbox"] + label,
.checkout-index-index #customer_account_create .fieldset input[type="checkbox"] + label {
  font-weight: 400;
}
#dob-validate {
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
}
.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.repot .options-list .field.choice input[type="radio"] + label:before {
  content: '';
  margin-right: 8px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: transparent;
  border: solid 1px #000000;
  box-sizing: border-box;
  position: absolute;
  border-radius: 2px;
  transform: none;
}
.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.repot .options-list .field.choice input[type="radio"]:checked + label:before {
  border-color: #295135;
  background: #295135;
}
.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.repot .options-list .field.choice input[type="radio"] + label:after {
  font-family: 'Ionicons';
  position: absolute;
  background: transparent;
  font-size: 14px;
  color: #ffffff;
  transform: none;
}
.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.repot .options-list .field.choice input[type="radio"]:checked + label:after {
  content: "\f122";
}
.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.repot .catalog-product-view .block.add-on#block-add-on {
  clear: both;
}
html body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.required .control .nested.options-list > .bundle-option-slider .slick-list.draggable .field.choice > input[data-in-stock="false"] + label.label {
  pointer-events: none;
}
html body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.required .control .nested.options-list > .bundle-option-slider .slick-list.draggable .field.choice > input[data-in-stock="false"] + label.label .bundle-option-image {
  border: 2px solid #999999;
}
html body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.required .control .nested.options-list > .bundle-option-slider .slick-list.draggable .field.choice > input[data-in-stock="false"] + label.label .bundle-option-image:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right bottom, #ffffff, #ffffff 49%, #999999 50%, #999999 50%, #ffffff 51%, #ffffff) !important;
  opacity: 0.5;
}
html body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.required .control .nested.options-list > .bundle-option-slider .slick-list.draggable .field.choice > input[data-in-stock="false"] + label.label .bundle-option-image:before {
  content: 'Out of Stock';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  z-index: 10;
  white-space: nowrap;
}
body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.non-repot .label .product-name {
  display: inline-block;
}
body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.non-repot .nested.options-list {
  margin-bottom: 20px;
}
body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.non-repot .nested.options-list > .field.choice {
  display: block;
  position: relative;
  margin-left: 0;
}
body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.non-repot .nested.options-list > .field.choice input[type="checkbox"]:disabled + label {
  color: rgba(43, 43, 43, 0.5);
}
body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.non-repot .nested.options-list > .field.choice input[type="checkbox"]:disabled + label:before {
  cursor: auto;
}
body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.non-repot .nested.options-list > .field.choice input[type="checkbox"]:disabled + label .product-name {
  color: rgba(43, 43, 43, 0.5);
}
body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.non-repot .nested.options-list > .field.choice > .label {
  position: static;
  transform: scale(0.85);
  transform-origin: 0 0;
}
body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.non-repot .nested.options-list > .field.choice > .label:before {
  left: 0;
}
body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.non-repot .nested.options-list > .field.choice > .label:after {
  left: 5px;
}
body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.non-repot .nested.options-list > .field.choice > .label .product-name {
  margin-left: 20px;
}
body.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.non-repot .nested.options-list > .field.choice .repot-fee {
  display: none;
}
.page-product-bundle .bundle-options-container .product-add-form .bundle-options-overview-container .bundle-options-wrapper .fieldset .fieldset.fieldset-bundle-options .field.option.repot .nested.options-list > .label {
  display: none;
}
.checkout-cart-index .loading-mask {
  position: fixed !important;
}
