@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
* {
	font-size: 1rem !important;
}

.backBtn {
	font-size: 1.5rem !important;
	font-weight: 700 !important;
}
a:hover {
	color: #000 !important;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-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;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-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);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}



@font-face {
	font-family: 'themify';
	src:url('/fonts/themify.eot?-fvbane');
	src:url('/fonts/themify.eot?#iefix-fvbane') format('embedded-opentype'),
		url('/fonts/themify.woff?-fvbane') format('woff'),
		url('/fonts/themify.ttf?-fvbane') format('truetype'),
		url('/fonts/themify.svg?-fvbane#themify') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="ti-"], [class*=" ti-"] {
	font-family: 'themify';
	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;
}

.ti-wand:before {
	content: "\e600";
}
.ti-volume:before {
	content: "\e601";
}
.ti-user:before {
	content: "\e602";
}
.ti-unlock:before {
	content: "\e603";
}
.ti-unlink:before {
	content: "\e604";
}
.ti-trash:before {
	content: "\e605";
}
.ti-thought:before {
	content: "\e606";
}
.ti-target:before {
	content: "\e607";
}
.ti-tag:before {
	content: "\e608";
}
.ti-tablet:before {
	content: "\e609";
}
.ti-star:before {
	content: "\e60a";
}
.ti-spray:before {
	content: "\e60b";
}
.ti-signal:before {
	content: "\e60c";
}
.ti-shopping-cart:before {
	content: "\e60d";
}
.ti-shopping-cart-full:before {
	content: "\e60e";
}
.ti-settings:before {
	content: "\e60f";
}
.ti-search:before {
	content: "\e610";
}
.ti-zoom-in:before {
	content: "\e611";
}
.ti-zoom-out:before {
	content: "\e612";
}
.ti-cut:before {
	content: "\e613";
}
.ti-ruler:before {
	content: "\e614";
}
.ti-ruler-pencil:before {
	content: "\e615";
}
.ti-ruler-alt:before {
	content: "\e616";
}
.ti-bookmark:before {
	content: "\e617";
}
.ti-bookmark-alt:before {
	content: "\e618";
}
.ti-reload:before {
	content: "\e619";
}
.ti-plus:before {
	content: "\e61a";
}
.ti-pin:before {
	content: "\e61b";
}
.ti-pencil:before {
	content: "\e61c";
}
.ti-pencil-alt:before {
	content: "\e61d";
}
.ti-paint-roller:before {
	content: "\e61e";
}
.ti-paint-bucket:before {
	content: "\e61f";
}
.ti-na:before {
	content: "\e620";
}
.ti-mobile:before {
	content: "\e621";
}
.ti-minus:before {
	content: "\e622";
}
.ti-medall:before {
	content: "\e623";
}
.ti-medall-alt:before {
	content: "\e624";
}
.ti-marker:before {
	content: "\e625";
}
.ti-marker-alt:before {
	content: "\e626";
}
.ti-arrow-up:before {
	content: "\e627";
}
.ti-arrow-right:before {
	content: "\e628";
}
.ti-arrow-left:before {
	content: "\e629";
}
.ti-arrow-down:before {
	content: "\e62a";
}
.ti-lock:before {
	content: "\e62b";
}
.ti-location-arrow:before {
	content: "\e62c";
}
.ti-link:before {
	content: "\e62d";
}
.ti-layout:before {
	content: "\e62e";
}
.ti-layers:before {
	content: "\e62f";
}
.ti-layers-alt:before {
	content: "\e630";
}
.ti-key:before {
	content: "\e631";
}
.ti-import:before {
	content: "\e632";
}
.ti-image:before {
	content: "\e633";
}
.ti-heart:before {
	content: "\e634";
}
.ti-heart-broken:before {
	content: "\e635";
}
.ti-hand-stop:before {
	content: "\e636";
}
.ti-hand-open:before {
	content: "\e637";
}
.ti-hand-drag:before {
	content: "\e638";
}
.ti-folder:before {
	content: "\e639";
}
.ti-flag:before {
	content: "\e63a";
}
.ti-flag-alt:before {
	content: "\e63b";
}
.ti-flag-alt-2:before {
	content: "\e63c";
}
.ti-eye:before {
	content: "\e63d";
}
.ti-export:before {
	content: "\e63e";
}
.ti-exchange-vertical:before {
	content: "\e63f";
}
.ti-desktop:before {
	content: "\e640";
}
.ti-cup:before {
	content: "\e641";
}
.ti-crown:before {
	content: "\e642";
}
.ti-comments:before {
	content: "\e643";
}
.ti-comment:before {
	content: "\e644";
}
.ti-comment-alt:before {
	content: "\e645";
}
.ti-close:before {
	content: "\e646";
}
.ti-clip:before {
	content: "\e647";
}
.ti-angle-up:before {
	content: "\e648";
}
.ti-angle-right:before {
	content: "\e649";
}
.ti-angle-left:before {
	content: "\e64a";
}
.ti-angle-down:before {
	content: "\e64b";
}
.ti-check:before {
	content: "\e64c";
}
.ti-check-box:before {
	content: "\e64d";
}
.ti-camera:before {
	content: "\e64e";
}
.ti-announcement:before {
	content: "\e64f";
}
.ti-brush:before {
	content: "\e650";
}
.ti-briefcase:before {
	content: "\e651";
}
.ti-bolt:before {
	content: "\e652";
}
.ti-bolt-alt:before {
	content: "\e653";
}
.ti-blackboard:before {
	content: "\e654";
}
.ti-bag:before {
	content: "\e655";
}
.ti-move:before {
	content: "\e656";
}
.ti-arrows-vertical:before {
	content: "\e657";
}
.ti-arrows-horizontal:before {
	content: "\e658";
}
.ti-fullscreen:before {
	content: "\e659";
}
.ti-arrow-top-right:before {
	content: "\e65a";
}
.ti-arrow-top-left:before {
	content: "\e65b";
}
.ti-arrow-circle-up:before {
	content: "\e65c";
}
.ti-arrow-circle-right:before {
	content: "\e65d";
}
.ti-arrow-circle-left:before {
	content: "\e65e";
}
.ti-arrow-circle-down:before {
	content: "\e65f";
}
.ti-angle-double-up:before {
	content: "\e660";
}
.ti-angle-double-right:before {
	content: "\e661";
}
.ti-angle-double-left:before {
	content: "\e662";
}
.ti-angle-double-down:before {
	content: "\e663";
}
.ti-zip:before {
	content: "\e664";
}
.ti-world:before {
	content: "\e665";
}
.ti-wheelchair:before {
	content: "\e666";
}
.ti-view-list:before {
	content: "\e667";
}
.ti-view-list-alt:before {
	content: "\e668";
}
.ti-view-grid:before {
	content: "\e669";
}
.ti-uppercase:before {
	content: "\e66a";
}
.ti-upload:before {
	content: "\e66b";
}
.ti-underline:before {
	content: "\e66c";
}
.ti-truck:before {
	content: "\e66d";
}
.ti-timer:before {
	content: "\e66e";
}
.ti-ticket:before {
	content: "\e66f";
}
.ti-thumb-up:before {
	content: "\e670";
}
.ti-thumb-down:before {
	content: "\e671";
}
.ti-text:before {
	content: "\e672";
}
.ti-stats-up:before {
	content: "\e673";
}
.ti-stats-down:before {
	content: "\e674";
}
.ti-split-v:before {
	content: "\e675";
}
.ti-split-h:before {
	content: "\e676";
}
.ti-smallcap:before {
	content: "\e677";
}
.ti-shine:before {
	content: "\e678";
}
.ti-shift-right:before {
	content: "\e679";
}
.ti-shift-left:before {
	content: "\e67a";
}
.ti-shield:before {
	content: "\e67b";
}
.ti-notepad:before {
	content: "\e67c";
}
.ti-server:before {
	content: "\e67d";
}
.ti-quote-right:before {
	content: "\e67e";
}
.ti-quote-left:before {
	content: "\e67f";
}
.ti-pulse:before {
	content: "\e680";
}
.ti-printer:before {
	content: "\e681";
}
.ti-power-off:before {
	content: "\e682";
}
.ti-plug:before {
	content: "\e683";
}
.ti-pie-chart:before {
	content: "\e684";
}
.ti-paragraph:before {
	content: "\e685";
}
.ti-panel:before {
	content: "\e686";
}
.ti-package:before {
	content: "\e687";
}
.ti-music:before {
	content: "\e688";
}
.ti-music-alt:before {
	content: "\e689";
}
.ti-mouse:before {
	content: "\e68a";
}
.ti-mouse-alt:before {
	content: "\e68b";
}
.ti-money:before {
	content: "\e68c";
}
.ti-microphone:before {
	content: "\e68d";
}
.ti-menu:before {
	content: "\e68e";
}
.ti-menu-alt:before {
	content: "\e68f";
}
.ti-map:before {
	content: "\e690";
}
.ti-map-alt:before {
	content: "\e691";
}
.ti-loop:before {
	content: "\e692";
}
.ti-location-pin:before {
	content: "\e693";
}
.ti-list:before {
	content: "\e694";
}
.ti-light-bulb:before {
	content: "\e695";
}
.ti-Italic:before {
	content: "\e696";
}
.ti-info:before {
	content: "\e697";
}
.ti-infinite:before {
	content: "\e698";
}
.ti-id-badge:before {
	content: "\e699";
}
.ti-hummer:before {
	content: "\e69a";
}
.ti-home:before {
	content: "\e69b";
}
.ti-help:before {
	content: "\e69c";
}
.ti-headphone:before {
	content: "\e69d";
}
.ti-harddrives:before {
	content: "\e69e";
}
.ti-harddrive:before {
	content: "\e69f";
}
.ti-gift:before {
	content: "\e6a0";
}
.ti-game:before {
	content: "\e6a1";
}
.ti-filter:before {
	content: "\e6a2";
}
.ti-files:before {
	content: "\e6a3";
}
.ti-file:before {
	content: "\e6a4";
}
.ti-eraser:before {
	content: "\e6a5";
}
.ti-envelope:before {
	content: "\e6a6";
}
.ti-download:before {
	content: "\e6a7";
}
.ti-direction:before {
	content: "\e6a8";
}
.ti-direction-alt:before {
	content: "\e6a9";
}
.ti-dashboard:before {
	content: "\e6aa";
}
.ti-control-stop:before {
	content: "\e6ab";
}
.ti-control-shuffle:before {
	content: "\e6ac";
}
.ti-control-play:before {
	content: "\e6ad";
}
.ti-control-pause:before {
	content: "\e6ae";
}
.ti-control-forward:before {
	content: "\e6af";
}
.ti-control-backward:before {
	content: "\e6b0";
}
.ti-cloud:before {
	content: "\e6b1";
}
.ti-cloud-up:before {
	content: "\e6b2";
}
.ti-cloud-down:before {
	content: "\e6b3";
}
.ti-clipboard:before {
	content: "\e6b4";
}
.ti-car:before {
	content: "\e6b5";
}
.ti-calendar:before {
	content: "\e6b6";
}
.ti-book:before {
	content: "\e6b7";
}
.ti-bell:before {
	content: "\e6b8";
}
.ti-basketball:before {
	content: "\e6b9";
}
.ti-bar-chart:before {
	content: "\e6ba";
}
.ti-bar-chart-alt:before {
	content: "\e6bb";
}
.ti-back-right:before {
	content: "\e6bc";
}
.ti-back-left:before {
	content: "\e6bd";
}
.ti-arrows-corner:before {
	content: "\e6be";
}
.ti-archive:before {
	content: "\e6bf";
}
.ti-anchor:before {
	content: "\e6c0";
}
.ti-align-right:before {
	content: "\e6c1";
}
.ti-align-left:before {
	content: "\e6c2";
}
.ti-align-justify:before {
	content: "\e6c3";
}
.ti-align-center:before {
	content: "\e6c4";
}
.ti-alert:before {
	content: "\e6c5";
}
.ti-alarm-clock:before {
	content: "\e6c6";
}
.ti-agenda:before {
	content: "\e6c7";
}
.ti-write:before {
	content: "\e6c8";
}
.ti-window:before {
	content: "\e6c9";
}
.ti-widgetized:before {
	content: "\e6ca";
}
.ti-widget:before {
	content: "\e6cb";
}
.ti-widget-alt:before {
	content: "\e6cc";
}
.ti-wallet:before {
	content: "\e6cd";
}
.ti-video-clapper:before {
	content: "\e6ce";
}
.ti-video-camera:before {
	content: "\e6cf";
}
.ti-vector:before {
	content: "\e6d0";
}
.ti-themify-logo:before {
	content: "\e6d1";
}
.ti-themify-favicon:before {
	content: "\e6d2";
}
.ti-themify-favicon-alt:before {
	content: "\e6d3";
}
.ti-support:before {
	content: "\e6d4";
}
.ti-stamp:before {
	content: "\e6d5";
}
.ti-split-v-alt:before {
	content: "\e6d6";
}
.ti-slice:before {
	content: "\e6d7";
}
.ti-shortcode:before {
	content: "\e6d8";
}
.ti-shift-right-alt:before {
	content: "\e6d9";
}
.ti-shift-left-alt:before {
	content: "\e6da";
}
.ti-ruler-alt-2:before {
	content: "\e6db";
}
.ti-receipt:before {
	content: "\e6dc";
}
.ti-pin2:before {
	content: "\e6dd";
}
.ti-pin-alt:before {
	content: "\e6de";
}
.ti-pencil-alt2:before {
	content: "\e6df";
}
.ti-palette:before {
	content: "\e6e0";
}
.ti-more:before {
	content: "\e6e1";
}
.ti-more-alt:before {
	content: "\e6e2";
}
.ti-microphone-alt:before {
	content: "\e6e3";
}
.ti-magnet:before {
	content: "\e6e4";
}
.ti-line-double:before {
	content: "\e6e5";
}
.ti-line-dotted:before {
	content: "\e6e6";
}
.ti-line-dashed:before {
	content: "\e6e7";
}
.ti-layout-width-full:before {
	content: "\e6e8";
}
.ti-layout-width-default:before {
	content: "\e6e9";
}
.ti-layout-width-default-alt:before {
	content: "\e6ea";
}
.ti-layout-tab:before {
	content: "\e6eb";
}
.ti-layout-tab-window:before {
	content: "\e6ec";
}
.ti-layout-tab-v:before {
	content: "\e6ed";
}
.ti-layout-tab-min:before {
	content: "\e6ee";
}
.ti-layout-slider:before {
	content: "\e6ef";
}
.ti-layout-slider-alt:before {
	content: "\e6f0";
}
.ti-layout-sidebar-right:before {
	content: "\e6f1";
}
.ti-layout-sidebar-none:before {
	content: "\e6f2";
}
.ti-layout-sidebar-left:before {
	content: "\e6f3";
}
.ti-layout-placeholder:before {
	content: "\e6f4";
}
.ti-layout-menu:before {
	content: "\e6f5";
}
.ti-layout-menu-v:before {
	content: "\e6f6";
}
.ti-layout-menu-separated:before {
	content: "\e6f7";
}
.ti-layout-menu-full:before {
	content: "\e6f8";
}
.ti-layout-media-right-alt:before {
	content: "\e6f9";
}
.ti-layout-media-right:before {
	content: "\e6fa";
}
.ti-layout-media-overlay:before {
	content: "\e6fb";
}
.ti-layout-media-overlay-alt:before {
	content: "\e6fc";
}
.ti-layout-media-overlay-alt-2:before {
	content: "\e6fd";
}
.ti-layout-media-left-alt:before {
	content: "\e6fe";
}
.ti-layout-media-left:before {
	content: "\e6ff";
}
.ti-layout-media-center-alt:before {
	content: "\e700";
}
.ti-layout-media-center:before {
	content: "\e701";
}
.ti-layout-list-thumb:before {
	content: "\e702";
}
.ti-layout-list-thumb-alt:before {
	content: "\e703";
}
.ti-layout-list-post:before {
	content: "\e704";
}
.ti-layout-list-large-image:before {
	content: "\e705";
}
.ti-layout-line-solid:before {
	content: "\e706";
}
.ti-layout-grid4:before {
	content: "\e707";
}
.ti-layout-grid3:before {
	content: "\e708";
}
.ti-layout-grid2:before {
	content: "\e709";
}
.ti-layout-grid2-thumb:before {
	content: "\e70a";
}
.ti-layout-cta-right:before {
	content: "\e70b";
}
.ti-layout-cta-left:before {
	content: "\e70c";
}
.ti-layout-cta-center:before {
	content: "\e70d";
}
.ti-layout-cta-btn-right:before {
	content: "\e70e";
}
.ti-layout-cta-btn-left:before {
	content: "\e70f";
}
.ti-layout-column4:before {
	content: "\e710";
}
.ti-layout-column3:before {
	content: "\e711";
}
.ti-layout-column2:before {
	content: "\e712";
}
.ti-layout-accordion-separated:before {
	content: "\e713";
}
.ti-layout-accordion-merged:before {
	content: "\e714";
}
.ti-layout-accordion-list:before {
	content: "\e715";
}
.ti-ink-pen:before {
	content: "\e716";
}
.ti-info-alt:before {
	content: "\e717";
}
.ti-help-alt:before {
	content: "\e718";
}
.ti-headphone-alt:before {
	content: "\e719";
}
.ti-hand-point-up:before {
	content: "\e71a";
}
.ti-hand-point-right:before {
	content: "\e71b";
}
.ti-hand-point-left:before {
	content: "\e71c";
}
.ti-hand-point-down:before {
	content: "\e71d";
}
.ti-gallery:before {
	content: "\e71e";
}
.ti-face-smile:before {
	content: "\e71f";
}
.ti-face-sad:before {
	content: "\e720";
}
.ti-credit-card:before {
	content: "\e721";
}
.ti-control-skip-forward:before {
	content: "\e722";
}
.ti-control-skip-backward:before {
	content: "\e723";
}
.ti-control-record:before {
	content: "\e724";
}
.ti-control-eject:before {
	content: "\e725";
}
.ti-comments-smiley:before {
	content: "\e726";
}
.ti-brush-alt:before {
	content: "\e727";
}
.ti-youtube:before {
	content: "\e728";
}
.ti-vimeo:before {
	content: "\e729";
}
.ti-twitter:before {
	content: "\e72a";
}
.ti-time:before {
	content: "\e72b";
}
.ti-tumblr:before {
	content: "\e72c";
}
.ti-skype:before {
	content: "\e72d";
}
.ti-share:before {
	content: "\e72e";
}
.ti-share-alt:before {
	content: "\e72f";
}
.ti-rocket:before {
	content: "\e730";
}
.ti-pinterest:before {
	content: "\e731";
}
.ti-new-window:before {
	content: "\e732";
}
.ti-microsoft:before {
	content: "\e733";
}
.ti-list-ol:before {
	content: "\e734";
}
.ti-linkedin:before {
	content: "\e735";
}
.ti-layout-sidebar-2:before {
	content: "\e736";
}
.ti-layout-grid4-alt:before {
	content: "\e737";
}
.ti-layout-grid3-alt:before {
	content: "\e738";
}
.ti-layout-grid2-alt:before {
	content: "\e739";
}
.ti-layout-column4-alt:before {
	content: "\e73a";
}
.ti-layout-column3-alt:before {
	content: "\e73b";
}
.ti-layout-column2-alt:before {
	content: "\e73c";
}
.ti-instagram:before {
	content: "\e73d";
}
.ti-google:before {
	content: "\e73e";
}
.ti-github:before {
	content: "\e73f";
}
.ti-flickr:before {
	content: "\e740";
}
.ti-facebook:before {
	content: "\e741";
}
.ti-dropbox:before {
	content: "\e742";
}
.ti-dribbble:before {
	content: "\e743";
}
.ti-apple:before {
	content: "\e744";
}
.ti-android:before {
	content: "\e745";
}
.ti-save:before {
	content: "\e746";
}
.ti-save-alt:before {
	content: "\e747";
}
.ti-yahoo:before {
	content: "\e748";
}
.ti-wordpress:before {
	content: "\e749";
}
.ti-vimeo-alt:before {
	content: "\e74a";
}
.ti-twitter-alt:before {
	content: "\e74b";
}
.ti-tumblr-alt:before {
	content: "\e74c";
}
.ti-trello:before {
	content: "\e74d";
}
.ti-stack-overflow:before {
	content: "\e74e";
}
.ti-soundcloud:before {
	content: "\e74f";
}
.ti-sharethis:before {
	content: "\e750";
}
.ti-sharethis-alt:before {
	content: "\e751";
}
.ti-reddit:before {
	content: "\e752";
}
.ti-pinterest-alt:before {
	content: "\e753";
}
.ti-microsoft-alt:before {
	content: "\e754";
}
.ti-linux:before {
	content: "\e755";
}
.ti-jsfiddle:before {
	content: "\e756";
}
.ti-joomla:before {
	content: "\e757";
}
.ti-html5:before {
	content: "\e758";
}
.ti-flickr-alt:before {
	content: "\e759";
}
.ti-email:before {
	content: "\e75a";
}
.ti-drupal:before {
	content: "\e75b";
}
.ti-dropbox-alt:before {
	content: "\e75c";
}
.ti-css3:before {
	content: "\e75d";
}
.ti-rss:before {
	content: "\e75e";
}
.ti-rss-alt:before {
	content: "\e75f";
}

@font-face {
  font-family: 'Linearicons';
  src:  url('/fonts/Linearicons.eot?4t1dgh');
  src:  url('/fonts/Linearicons.eot?4t1dgh#iefix') format('embedded-opentype'),
  url('/fonts/Linearicons.ttf?4t1dgh') format('truetype'),
  url('/fonts/Linearicons.woff?4t1dgh') format('woff'),
  url('/fonts/Linearicons.svg?4t1dgh#Linearicons') format('svg');
  font-weight: normal;
  font-style: normal;

  src: url(/fonts/Linearicons.eot); /* For IE6-8 */
  src: local('Linearicons'),
  local('Linearicons'),
  url('/fonts/Linearicons.woff') format('woff'),
  url('/fonts/Linearicons.ttf') format('truetype');
}

.linearicons,

[class^="linearicons-"], [class*=" linearicons-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Linearicons' !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;
}

.linearicons-home:before {
  content: "\e900";
}
.linearicons-home2:before {
  content: "\e901";
}
.linearicons-home3:before {
  content: "\e902";
}
.linearicons-home4:before {
  content: "\e903";
}
.linearicons-home5:before {
  content: "\e904";
}
.linearicons-home6:before {
  content: "\e905";
}
.linearicons-bathtub:before {
  content: "\e906";
}
.linearicons-toothbrush:before {
  content: "\e907";
}
.linearicons-bed:before {
  content: "\e908";
}
.linearicons-couch:before {
  content: "\e909";
}
.linearicons-chair:before {
  content: "\e90a";
}
.linearicons-city:before {
  content: "\e90b";
}
.linearicons-apartment:before {
  content: "\e90c";
}
.linearicons-pencil:before {
  content: "\e90d";
}
.linearicons-pencil2:before {
  content: "\e90e";
}
.linearicons-pen:before {
  content: "\e90f";
}
.linearicons-pencil3:before {
  content: "\e910";
}
.linearicons-eraser:before {
  content: "\e911";
}
.linearicons-pencil4:before {
  content: "\e912";
}
.linearicons-pencil5:before {
  content: "\e913";
}
.linearicons-feather:before {
  content: "\e914";
}
.linearicons-feather2:before {
  content: "\e915";
}
.linearicons-feather3:before {
  content: "\e916";
}
.linearicons-pen2:before {
  content: "\e917";
}
.linearicons-pen-add:before {
  content: "\e918";
}
.linearicons-pen-remove:before {
  content: "\e919";
}
.linearicons-vector:before {
  content: "\e91a";
}
.linearicons-pen3:before {
  content: "\e91b";
}
.linearicons-blog:before {
  content: "\e91c";
}
.linearicons-brush:before {
  content: "\e91d";
}
.linearicons-brush2:before {
  content: "\e91e";
}
.linearicons-spray:before {
  content: "\e91f";
}
.linearicons-paint-roller:before {
  content: "\e920";
}
.linearicons-stamp:before {
  content: "\e921";
}
.linearicons-tape:before {
  content: "\e922";
}
.linearicons-desk-tape:before {
  content: "\e923";
}
.linearicons-texture:before {
  content: "\e924";
}
.linearicons-eye-dropper:before {
  content: "\e925";
}
.linearicons-palette:before {
  content: "\e926";
}
.linearicons-color-sampler:before {
  content: "\e927";
}
.linearicons-bucket:before {
  content: "\e928";
}
.linearicons-gradient:before {
  content: "\e929";
}
.linearicons-gradient2:before {
  content: "\e92a";
}
.linearicons-magic-wand:before {
  content: "\e92b";
}
.linearicons-magnet:before {
  content: "\e92c";
}
.linearicons-pencil-ruler:before {
  content: "\e92d";
}
.linearicons-pencil-ruler2:before {
  content: "\e92e";
}
.linearicons-compass:before {
  content: "\e92f";
}
.linearicons-aim:before {
  content: "\e930";
}
.linearicons-gun:before {
  content: "\e931";
}
.linearicons-bottle:before {
  content: "\e932";
}
.linearicons-drop:before {
  content: "\e933";
}
.linearicons-drop-crossed:before {
  content: "\e934";
}
.linearicons-drop2:before {
  content: "\e935";
}
.linearicons-snow:before {
  content: "\e936";
}
.linearicons-snow2:before {
  content: "\e937";
}
.linearicons-fire:before {
  content: "\e938";
}
.linearicons-lighter:before {
  content: "\e939";
}
.linearicons-knife:before {
  content: "\e93a";
}
.linearicons-dagger:before {
  content: "\e93b";
}
.linearicons-tissue:before {
  content: "\e93c";
}
.linearicons-toilet-paper:before {
  content: "\e93d";
}
.linearicons-poop:before {
  content: "\e93e";
}
.linearicons-umbrella:before {
  content: "\e93f";
}
.linearicons-umbrella2:before {
  content: "\e940";
}
.linearicons-rain:before {
  content: "\e941";
}
.linearicons-tornado:before {
  content: "\e942";
}
.linearicons-wind:before {
  content: "\e943";
}
.linearicons-fan:before {
  content: "\e944";
}
.linearicons-contrast:before {
  content: "\e945";
}
.linearicons-sun-small:before {
  content: "\e946";
}
.linearicons-sun:before {
  content: "\e947";
}
.linearicons-sun2:before {
  content: "\e948";
}
.linearicons-moon:before {
  content: "\e949";
}
.linearicons-cloud:before {
  content: "\e94a";
}
.linearicons-cloud-upload:before {
  content: "\e94b";
}
.linearicons-cloud-download:before {
  content: "\e94c";
}
.linearicons-cloud-rain:before {
  content: "\e94d";
}
.linearicons-cloud-hailstones:before {
  content: "\e94e";
}
.linearicons-cloud-snow:before {
  content: "\e94f";
}
.linearicons-cloud-windy:before {
  content: "\e950";
}
.linearicons-sun-wind:before {
  content: "\e951";
}
.linearicons-cloud-fog:before {
  content: "\e952";
}
.linearicons-cloud-sun:before {
  content: "\e953";
}
.linearicons-cloud-lightning:before {
  content: "\e954";
}
.linearicons-cloud-sync:before {
  content: "\e955";
}
.linearicons-cloud-lock:before {
  content: "\e956";
}
.linearicons-cloud-gear:before {
  content: "\e957";
}
.linearicons-cloud-alert:before {
  content: "\e958";
}
.linearicons-cloud-check:before {
  content: "\e959";
}
.linearicons-cloud-cross:before {
  content: "\e95a";
}
.linearicons-cloud-crossed:before {
  content: "\e95b";
}
.linearicons-cloud-database:before {
  content: "\e95c";
}
.linearicons-database:before {
  content: "\e95d";
}
.linearicons-database-add:before {
  content: "\e95e";
}
.linearicons-database-remove:before {
  content: "\e95f";
}
.linearicons-database-lock:before {
  content: "\e960";
}
.linearicons-database-refresh:before {
  content: "\e961";
}
.linearicons-database-check:before {
  content: "\e962";
}
.linearicons-database-history:before {
  content: "\e963";
}
.linearicons-database-upload:before {
  content: "\e964";
}
.linearicons-database-download:before {
  content: "\e965";
}
.linearicons-server:before {
  content: "\e966";
}
.linearicons-shield:before {
  content: "\e967";
}
.linearicons-shield-check:before {
  content: "\e968";
}
.linearicons-shield-alert:before {
  content: "\e969";
}
.linearicons-shield-cross:before {
  content: "\e96a";
}
.linearicons-lock:before {
  content: "\e96b";
}
.linearicons-rotation-lock:before {
  content: "\e96c";
}
.linearicons-unlock:before {
  content: "\e96d";
}
.linearicons-key:before {
  content: "\e96e";
}
.linearicons-key-hole:before {
  content: "\e96f";
}
.linearicons-toggle-off:before {
  content: "\e970";
}
.linearicons-toggle-on:before {
  content: "\e971";
}
.linearicons-cog:before {
  content: "\e972";
}
.linearicons-cog2:before {
  content: "\e973";
}
.linearicons-wrench:before {
  content: "\e974";
}
.linearicons-screwdriver:before {
  content: "\e975";
}
.linearicons-hammer-wrench:before {
  content: "\e976";
}
.linearicons-hammer:before {
  content: "\e977";
}
.linearicons-saw:before {
  content: "\e978";
}
.linearicons-axe:before {
  content: "\e979";
}
.linearicons-axe2:before {
  content: "\e97a";
}
.linearicons-shovel:before {
  content: "\e97b";
}
.linearicons-pickaxe:before {
  content: "\e97c";
}
.linearicons-factory:before {
  content: "\e97d";
}
.linearicons-factory2:before {
  content: "\e97e";
}
.linearicons-recycle:before {
  content: "\e97f";
}
.linearicons-trash:before {
  content: "\e980";
}
.linearicons-trash2:before {
  content: "\e981";
}
.linearicons-trash3:before {
  content: "\e982";
}
.linearicons-broom:before {
  content: "\e983";
}
.linearicons-game:before {
  content: "\e984";
}
.linearicons-gamepad:before {
  content: "\e985";
}
.linearicons-joystick:before {
  content: "\e986";
}
.linearicons-dice:before {
  content: "\e987";
}
.linearicons-spades:before {
  content: "\e988";
}
.linearicons-diamonds:before {
  content: "\e989";
}
.linearicons-clubs:before {
  content: "\e98a";
}
.linearicons-hearts:before {
  content: "\e98b";
}
.linearicons-heart:before {
  content: "\e98c";
}
.linearicons-star:before {
  content: "\e98d";
}
.linearicons-star-half:before {
  content: "\e98e";
}
.linearicons-star-empty:before {
  content: "\e98f";
}
.linearicons-flag:before {
  content: "\e990";
}
.linearicons-flag2:before {
  content: "\e991";
}
.linearicons-flag3:before {
  content: "\e992";
}
.linearicons-mailbox-full:before {
  content: "\e993";
}
.linearicons-mailbox-empty:before {
  content: "\e994";
}
.linearicons-at-sign:before {
  content: "\e995";
}
.linearicons-envelope:before {
  content: "\e996";
}
.linearicons-envelope-open:before {
  content: "\e997";
}
.linearicons-paperclip:before {
  content: "\e998";
}
.linearicons-paper-plane:before {
  content: "\e999";
}
.linearicons-reply:before {
  content: "\e99a";
}
.linearicons-reply-all:before {
  content: "\e99b";
}
.linearicons-inbox:before {
  content: "\e99c";
}
.linearicons-inbox2:before {
  content: "\e99d";
}
.linearicons-outbox:before {
  content: "\e99e";
}
.linearicons-box:before {
  content: "\e99f";
}
.linearicons-archive:before {
  content: "\e9a0";
}
.linearicons-archive2:before {
  content: "\e9a1";
}
.linearicons-drawers:before {
  content: "\e9a2";
}
.linearicons-drawers2:before {
  content: "\e9a3";
}
.linearicons-drawers3:before {
  content: "\e9a4";
}
.linearicons-eye:before {
  content: "\e9a5";
}
.linearicons-eye-crossed:before {
  content: "\e9a6";
}
.linearicons-eye-plus:before {
  content: "\e9a7";
}
.linearicons-eye-minus:before {
  content: "\e9a8";
}
.linearicons-binoculars:before {
  content: "\e9a9";
}
.linearicons-binoculars2:before {
  content: "\e9aa";
}
.linearicons-hdd:before {
  content: "\e9ab";
}
.linearicons-hdd-down:before {
  content: "\e9ac";
}
.linearicons-hdd-up:before {
  content: "\e9ad";
}
.linearicons-floppy-disk:before {
  content: "\e9ae";
}
.linearicons-disc:before {
  content: "\e9af";
}
.linearicons-tape2:before {
  content: "\e9b0";
}
.linearicons-printer:before {
  content: "\e9b1";
}
.linearicons-shredder:before {
  content: "\e9b2";
}
.linearicons-file-empty:before {
  content: "\e9b3";
}
.linearicons-file-add:before {
  content: "\e9b4";
}
.linearicons-file-check:before {
  content: "\e9b5";
}
.linearicons-file-lock:before {
  content: "\e9b6";
}
.linearicons-files:before {
  content: "\e9b7";
}
.linearicons-copy:before {
  content: "\e9b8";
}
.linearicons-compare:before {
  content: "\e9b9";
}
.linearicons-folder:before {
  content: "\e9ba";
}
.linearicons-folder-search:before {
  content: "\e9bb";
}
.linearicons-folder-plus:before {
  content: "\e9bc";
}
.linearicons-folder-minus:before {
  content: "\e9bd";
}
.linearicons-folder-download:before {
  content: "\e9be";
}
.linearicons-folder-upload:before {
  content: "\e9bf";
}
.linearicons-folder-star:before {
  content: "\e9c0";
}
.linearicons-folder-heart:before {
  content: "\e9c1";
}
.linearicons-folder-user:before {
  content: "\e9c2";
}
.linearicons-folder-shared:before {
  content: "\e9c3";
}
.linearicons-folder-music:before {
  content: "\e9c4";
}
.linearicons-folder-picture:before {
  content: "\e9c5";
}
.linearicons-folder-film:before {
  content: "\e9c6";
}
.linearicons-scissors:before {
  content: "\e9c7";
}
.linearicons-paste:before {
  content: "\e9c8";
}
.linearicons-clipboard-empty:before {
  content: "\e9c9";
}
.linearicons-clipboard-pencil:before {
  content: "\e9ca";
}
.linearicons-clipboard-text:before {
  content: "\e9cb";
}
.linearicons-clipboard-check:before {
  content: "\e9cc";
}
.linearicons-clipboard-down:before {
  content: "\e9cd";
}
.linearicons-clipboard-left:before {
  content: "\e9ce";
}
.linearicons-clipboard-alert:before {
  content: "\e9cf";
}
.linearicons-clipboard-user:before {
  content: "\e9d0";
}
.linearicons-register:before {
  content: "\e9d1";
}
.linearicons-enter:before {
  content: "\e9d2";
}
.linearicons-exit:before {
  content: "\e9d3";
}
.linearicons-papers:before {
  content: "\e9d4";
}
.linearicons-news:before {
  content: "\e9d5";
}
.linearicons-reading:before {
  content: "\e9d6";
}
.linearicons-typewriter:before {
  content: "\e9d7";
}
.linearicons-document:before {
  content: "\e9d8";
}
.linearicons-document2:before {
  content: "\e9d9";
}
.linearicons-graduation-hat:before {
  content: "\e9da";
}
.linearicons-license:before {
  content: "\e9db";
}
.linearicons-license2:before {
  content: "\e9dc";
}
.linearicons-medal-empty:before {
  content: "\e9dd";
}
.linearicons-medal-first:before {
  content: "\e9de";
}
.linearicons-medal-second:before {
  content: "\e9df";
}
.linearicons-medal-third:before {
  content: "\e9e0";
}
.linearicons-podium:before {
  content: "\e9e1";
}
.linearicons-trophy:before {
  content: "\e9e2";
}
.linearicons-trophy2:before {
  content: "\e9e3";
}
.linearicons-music-note:before {
  content: "\e9e4";
}
.linearicons-music-note2:before {
  content: "\e9e5";
}
.linearicons-music-note3:before {
  content: "\e9e6";
}
.linearicons-playlist:before {
  content: "\e9e7";
}
.linearicons-playlist-add:before {
  content: "\e9e8";
}
.linearicons-guitar:before {
  content: "\e9e9";
}
.linearicons-trumpet:before {
  content: "\e9ea";
}
.linearicons-album:before {
  content: "\e9eb";
}
.linearicons-shuffle:before {
  content: "\e9ec";
}
.linearicons-repeat-one:before {
  content: "\e9ed";
}
.linearicons-repeat:before {
  content: "\e9ee";
}
.linearicons-headphones:before {
  content: "\e9ef";
}
.linearicons-headset:before {
  content: "\e9f0";
}
.linearicons-loudspeaker:before {
  content: "\e9f1";
}
.linearicons-equalizer:before {
  content: "\e9f2";
}
.linearicons-theater:before {
  content: "\e9f3";
}
.linearicons-3d-glasses:before {
  content: "\e9f4";
}
.linearicons-ticket:before {
  content: "\e9f5";
}
.linearicons-presentation:before {
  content: "\e9f6";
}
.linearicons-play:before {
  content: "\e9f7";
}
.linearicons-film-play:before {
  content: "\e9f8";
}
.linearicons-clapboard-play:before {
  content: "\e9f9";
}
.linearicons-media:before {
  content: "\e9fa";
}
.linearicons-film:before {
  content: "\e9fb";
}
.linearicons-film2:before {
  content: "\e9fc";
}
.linearicons-surveillance:before {
  content: "\e9fd";
}
.linearicons-surveillance2:before {
  content: "\e9fe";
}
.linearicons-camera:before {
  content: "\e9ff";
}
.linearicons-camera-crossed:before {
  content: "\ea00";
}
.linearicons-camera-play:before {
  content: "\ea01";
}
.linearicons-time-lapse:before {
  content: "\ea02";
}
.linearicons-record:before {
  content: "\ea03";
}
.linearicons-camera2:before {
  content: "\ea04";
}
.linearicons-camera-flip:before {
  content: "\ea05";
}
.linearicons-panorama:before {
  content: "\ea06";
}
.linearicons-time-lapse2:before {
  content: "\ea07";
}
.linearicons-shutter:before {
  content: "\ea08";
}
.linearicons-shutter2:before {
  content: "\ea09";
}
.linearicons-face-detection:before {
  content: "\ea0a";
}
.linearicons-flare:before {
  content: "\ea0b";
}
.linearicons-convex:before {
  content: "\ea0c";
}
.linearicons-concave:before {
  content: "\ea0d";
}
.linearicons-picture:before {
  content: "\ea0e";
}
.linearicons-picture2:before {
  content: "\ea0f";
}
.linearicons-picture3:before {
  content: "\ea10";
}
.linearicons-pictures:before {
  content: "\ea11";
}
.linearicons-book:before {
  content: "\ea12";
}
.linearicons-audio-book:before {
  content: "\ea13";
}
.linearicons-book2:before {
  content: "\ea14";
}
.linearicons-bookmark:before {
  content: "\ea15";
}
.linearicons-bookmark2:before {
  content: "\ea16";
}
.linearicons-label:before {
  content: "\ea17";
}
.linearicons-library:before {
  content: "\ea18";
}
.linearicons-library2:before {
  content: "\ea19";
}
.linearicons-contacts:before {
  content: "\ea1a";
}
.linearicons-profile:before {
  content: "\ea1b";
}
.linearicons-portrait:before {
  content: "\ea1c";
}
.linearicons-portrait2:before {
  content: "\ea1d";
}
.linearicons-user:before {
  content: "\ea1e";
}
.linearicons-user-plus:before {
  content: "\ea1f";
}
.linearicons-user-minus:before {
  content: "\ea20";
}
.linearicons-user-lock:before {
  content: "\ea21";
}
.linearicons-users:before {
  content: "\ea22";
}
.linearicons-users2:before {
  content: "\ea23";
}
.linearicons-users-plus:before {
  content: "\ea24";
}
.linearicons-users-minus:before {
  content: "\ea25";
}
.linearicons-group-work:before {
  content: "\ea26";
}
.linearicons-woman:before {
  content: "\ea27";
}
.linearicons-man:before {
  content: "\ea28";
}
.linearicons-baby:before {
  content: "\ea29";
}
.linearicons-baby2:before {
  content: "\ea2a";
}
.linearicons-baby3:before {
  content: "\ea2b";
}
.linearicons-baby-bottle:before {
  content: "\ea2c";
}
.linearicons-walk:before {
  content: "\ea2d";
}
.linearicons-hand-waving:before {
  content: "\ea2e";
}
.linearicons-jump:before {
  content: "\ea2f";
}
.linearicons-run:before {
  content: "\ea30";
}
.linearicons-woman2:before {
  content: "\ea31";
}
.linearicons-man2:before {
  content: "\ea32";
}
.linearicons-man-woman:before {
  content: "\ea33";
}
.linearicons-height:before {
  content: "\ea34";
}
.linearicons-weight:before {
  content: "\ea35";
}
.linearicons-scale:before {
  content: "\ea36";
}
.linearicons-button:before {
  content: "\ea37";
}
.linearicons-bow-tie:before {
  content: "\ea38";
}
.linearicons-tie:before {
  content: "\ea39";
}
.linearicons-socks:before {
  content: "\ea3a";
}
.linearicons-shoe:before {
  content: "\ea3b";
}
.linearicons-shoes:before {
  content: "\ea3c";
}
.linearicons-hat:before {
  content: "\ea3d";
}
.linearicons-pants:before {
  content: "\ea3e";
}
.linearicons-shorts:before {
  content: "\ea3f";
}
.linearicons-flip-flops:before {
  content: "\ea40";
}
.linearicons-shirt:before {
  content: "\ea41";
}
.linearicons-hanger:before {
  content: "\ea42";
}
.linearicons-laundry:before {
  content: "\ea43";
}
.linearicons-store:before {
  content: "\ea44";
}
.linearicons-haircut:before {
  content: "\ea45";
}
.linearicons-store-24:before {
  content: "\ea46";
}
.linearicons-barcode:before {
  content: "\ea47";
}
.linearicons-barcode2:before {
  content: "\ea48";
}
.linearicons-barcode3:before {
  content: "\ea49";
}
.linearicons-cashier:before {
  content: "\ea4a";
}
.linearicons-bag:before {
  content: "\ea4b";
}
.linearicons-bag2:before {
  content: "\ea4c";
}
.linearicons-cart:before {
  content: "\ea4d";
}
.linearicons-cart-empty:before {
  content: "\ea4e";
}
.linearicons-cart-full:before {
  content: "\ea4f";
}
.linearicons-cart-plus:before {
  content: "\ea50";
}
.linearicons-cart-plus2:before {
  content: "\ea51";
}
.linearicons-cart-add:before {
  content: "\ea52";
}
.linearicons-cart-remove:before {
  content: "\ea53";
}
.linearicons-cart-exchange:before {
  content: "\ea54";
}
.linearicons-tag:before {
  content: "\ea55";
}
.linearicons-tags:before {
  content: "\ea56";
}
.linearicons-receipt:before {
  content: "\ea57";
}
.linearicons-wallet:before {
  content: "\ea58";
}
.linearicons-credit-card:before {
  content: "\ea59";
}
.linearicons-cash-dollar:before {
  content: "\ea5a";
}
.linearicons-cash-euro:before {
  content: "\ea5b";
}
.linearicons-cash-pound:before {
  content: "\ea5c";
}
.linearicons-cash-yen:before {
  content: "\ea5d";
}
.linearicons-bag-dollar:before {
  content: "\ea5e";
}
.linearicons-bag-euro:before {
  content: "\ea5f";
}
.linearicons-bag-pound:before {
  content: "\ea60";
}
.linearicons-bag-yen:before {
  content: "\ea61";
}
.linearicons-coin-dollar:before {
  content: "\ea62";
}
.linearicons-coin-euro:before {
  content: "\ea63";
}
.linearicons-coin-pound:before {
  content: "\ea64";
}
.linearicons-coin-yen:before {
  content: "\ea65";
}
.linearicons-calculator:before {
  content: "\ea66";
}
.linearicons-calculator2:before {
  content: "\ea67";
}
.linearicons-abacus:before {
  content: "\ea68";
}
.linearicons-vault:before {
  content: "\ea69";
}
.linearicons-telephone:before {
  content: "\ea6a";
}
.linearicons-phone-lock:before {
  content: "\ea6b";
}
.linearicons-phone-wave:before {
  content: "\ea6c";
}
.linearicons-phone-pause:before {
  content: "\ea6d";
}
.linearicons-phone-outgoing:before {
  content: "\ea6e";
}
.linearicons-phone-incoming:before {
  content: "\ea6f";
}
.linearicons-phone-in-out:before {
  content: "\ea70";
}
.linearicons-phone-error:before {
  content: "\ea71";
}
.linearicons-phone-sip:before {
  content: "\ea72";
}
.linearicons-phone-plus:before {
  content: "\ea73";
}
.linearicons-phone-minus:before {
  content: "\ea74";
}
.linearicons-voicemail:before {
  content: "\ea75";
}
.linearicons-dial:before {
  content: "\ea76";
}
.linearicons-telephone2:before {
  content: "\ea77";
}
.linearicons-pushpin:before {
  content: "\ea78";
}
.linearicons-pushpin2:before {
  content: "\ea79";
}
.linearicons-map-marker:before {
  content: "\ea7a";
}
.linearicons-map-marker-user:before {
  content: "\ea7b";
}
.linearicons-map-marker-down:before {
  content: "\ea7c";
}
.linearicons-map-marker-check:before {
  content: "\ea7d";
}
.linearicons-map-marker-crossed:before {
  content: "\ea7e";
}
.linearicons-radar:before {
  content: "\ea7f";
}
.linearicons-compass2:before {
  content: "\ea80";
}
.linearicons-map:before {
  content: "\ea81";
}
.linearicons-map2:before {
  content: "\ea82";
}
.linearicons-location:before {
  content: "\ea83";
}
.linearicons-road-sign:before {
  content: "\ea84";
}
.linearicons-calendar-empty:before {
  content: "\ea85";
}
.linearicons-calendar-check:before {
  content: "\ea86";
}
.linearicons-calendar-cross:before {
  content: "\ea87";
}
.linearicons-calendar-31:before {
  content: "\ea88";
}
.linearicons-calendar-full:before {
  content: "\ea89";
}
.linearicons-calendar-insert:before {
  content: "\ea8a";
}
.linearicons-calendar-text:before {
  content: "\ea8b";
}
.linearicons-calendar-user:before {
  content: "\ea8c";
}
.linearicons-mouse:before {
  content: "\ea8d";
}
.linearicons-mouse-left:before {
  content: "\ea8e";
}
.linearicons-mouse-right:before {
  content: "\ea8f";
}
.linearicons-mouse-both:before {
  content: "\ea90";
}
.linearicons-keyboard:before {
  content: "\ea91";
}
.linearicons-keyboard-up:before {
  content: "\ea92";
}
.linearicons-keyboard-down:before {
  content: "\ea93";
}
.linearicons-delete:before {
  content: "\ea94";
}
.linearicons-spell-check:before {
  content: "\ea95";
}
.linearicons-escape:before {
  content: "\ea96";
}
.linearicons-enter2:before {
  content: "\ea97";
}
.linearicons-screen:before {
  content: "\ea98";
}
.linearicons-aspect-ratio:before {
  content: "\ea99";
}
.linearicons-signal:before {
  content: "\ea9a";
}
.linearicons-signal-lock:before {
  content: "\ea9b";
}
.linearicons-signal-80:before {
  content: "\ea9c";
}
.linearicons-signal-60:before {
  content: "\ea9d";
}
.linearicons-signal-40:before {
  content: "\ea9e";
}
.linearicons-signal-20:before {
  content: "\ea9f";
}
.linearicons-signal-0:before {
  content: "\eaa0";
}
.linearicons-signal-blocked:before {
  content: "\eaa1";
}
.linearicons-sim:before {
  content: "\eaa2";
}
.linearicons-flash-memory:before {
  content: "\eaa3";
}
.linearicons-usb-drive:before {
  content: "\eaa4";
}
.linearicons-phone:before {
  content: "\eaa5";
}
.linearicons-smartphone:before {
  content: "\eaa6";
}
.linearicons-smartphone-notification:before {
  content: "\eaa7";
}
.linearicons-smartphone-vibration:before {
  content: "\eaa8";
}
.linearicons-smartphone-embed:before {
  content: "\eaa9";
}
.linearicons-smartphone-waves:before {
  content: "\eaaa";
}
.linearicons-tablet:before {
  content: "\eaab";
}
.linearicons-tablet2:before {
  content: "\eaac";
}
.linearicons-laptop:before {
  content: "\eaad";
}
.linearicons-laptop-phone:before {
  content: "\eaae";
}
.linearicons-desktop:before {
  content: "\eaaf";
}
.linearicons-launch:before {
  content: "\eab0";
}
.linearicons-new-tab:before {
  content: "\eab1";
}
.linearicons-window:before {
  content: "\eab2";
}
.linearicons-cable:before {
  content: "\eab3";
}
.linearicons-cable2:before {
  content: "\eab4";
}
.linearicons-tv:before {
  content: "\eab5";
}
.linearicons-radio:before {
  content: "\eab6";
}
.linearicons-remote-control:before {
  content: "\eab7";
}
.linearicons-power-switch:before {
  content: "\eab8";
}
.linearicons-power:before {
  content: "\eab9";
}
.linearicons-power-crossed:before {
  content: "\eaba";
}
.linearicons-flash-auto:before {
  content: "\eabb";
}
.linearicons-lamp:before {
  content: "\eabc";
}
.linearicons-flashlight:before {
  content: "\eabd";
}
.linearicons-lampshade:before {
  content: "\eabe";
}
.linearicons-cord:before {
  content: "\eabf";
}
.linearicons-outlet:before {
  content: "\eac0";
}
.linearicons-battery-power:before {
  content: "\eac1";
}
.linearicons-battery-empty:before {
  content: "\eac2";
}
.linearicons-battery-alert:before {
  content: "\eac3";
}
.linearicons-battery-error:before {
  content: "\eac4";
}
.linearicons-battery-low1:before {
  content: "\eac5";
}
.linearicons-battery-low2:before {
  content: "\eac6";
}
.linearicons-battery-low3:before {
  content: "\eac7";
}
.linearicons-battery-mid1:before {
  content: "\eac8";
}
.linearicons-battery-mid2:before {
  content: "\eac9";
}
.linearicons-battery-mid3:before {
  content: "\eaca";
}
.linearicons-battery-full:before {
  content: "\eacb";
}
.linearicons-battery-charging:before {
  content: "\eacc";
}
.linearicons-battery-charging2:before {
  content: "\eacd";
}
.linearicons-battery-charging3:before {
  content: "\eace";
}
.linearicons-battery-charging4:before {
  content: "\eacf";
}
.linearicons-battery-charging5:before {
  content: "\ead0";
}
.linearicons-battery-charging6:before {
  content: "\ead1";
}
.linearicons-battery-charging7:before {
  content: "\ead2";
}
.linearicons-chip:before {
  content: "\ead3";
}
.linearicons-chip-x64:before {
  content: "\ead4";
}
.linearicons-chip-x86:before {
  content: "\ead5";
}
.linearicons-bubble:before {
  content: "\ead6";
}
.linearicons-bubbles:before {
  content: "\ead7";
}
.linearicons-bubble-dots:before {
  content: "\ead8";
}
.linearicons-bubble-alert:before {
  content: "\ead9";
}
.linearicons-bubble-question:before {
  content: "\eada";
}
.linearicons-bubble-text:before {
  content: "\eadb";
}
.linearicons-bubble-pencil:before {
  content: "\eadc";
}
.linearicons-bubble-picture:before {
  content: "\eadd";
}
.linearicons-bubble-video:before {
  content: "\eade";
}
.linearicons-bubble-user:before {
  content: "\eadf";
}
.linearicons-bubble-quote:before {
  content: "\eae0";
}
.linearicons-bubble-heart:before {
  content: "\eae1";
}
.linearicons-bubble-emoticon:before {
  content: "\eae2";
}
.linearicons-bubble-attachment:before {
  content: "\eae3";
}
.linearicons-phone-bubble:before {
  content: "\eae4";
}
.linearicons-quote-open:before {
  content: "\eae5";
}
.linearicons-quote-close:before {
  content: "\eae6";
}
.linearicons-dna:before {
  content: "\eae7";
}
.linearicons-heart-pulse:before {
  content: "\eae8";
}
.linearicons-pulse:before {
  content: "\eae9";
}
.linearicons-syringe:before {
  content: "\eaea";
}
.linearicons-pills:before {
  content: "\eaeb";
}
.linearicons-first-aid:before {
  content: "\eaec";
}
.linearicons-lifebuoy:before {
  content: "\eaed";
}
.linearicons-bandage:before {
  content: "\eaee";
}
.linearicons-bandages:before {
  content: "\eaef";
}
.linearicons-thermometer:before {
  content: "\eaf0";
}
.linearicons-microscope:before {
  content: "\eaf1";
}
.linearicons-brain:before {
  content: "\eaf2";
}
.linearicons-beaker:before {
  content: "\eaf3";
}
.linearicons-skull:before {
  content: "\eaf4";
}
.linearicons-bone:before {
  content: "\eaf5";
}
.linearicons-construction:before {
  content: "\eaf6";
}
.linearicons-construction-cone:before {
  content: "\eaf7";
}
.linearicons-pie-chart:before {
  content: "\eaf8";
}
.linearicons-pie-chart2:before {
  content: "\eaf9";
}
.linearicons-graph:before {
  content: "\eafa";
}
.linearicons-chart-growth:before {
  content: "\eafb";
}
.linearicons-chart-bars:before {
  content: "\eafc";
}
.linearicons-chart-settings:before {
  content: "\eafd";
}
.linearicons-cake:before {
  content: "\eafe";
}
.linearicons-gift:before {
  content: "\eaff";
}
.linearicons-balloon:before {
  content: "\eb00";
}
.linearicons-rank:before {
  content: "\eb01";
}
.linearicons-rank2:before {
  content: "\eb02";
}
.linearicons-rank3:before {
  content: "\eb03";
}
.linearicons-crown:before {
  content: "\eb04";
}
.linearicons-lotus:before {
  content: "\eb05";
}
.linearicons-diamond:before {
  content: "\eb06";
}
.linearicons-diamond2:before {
  content: "\eb07";
}
.linearicons-diamond3:before {
  content: "\eb08";
}
.linearicons-diamond4:before {
  content: "\eb09";
}
.linearicons-linearicons:before {
  content: "\eb0a";
}
.linearicons-teacup:before {
  content: "\eb0b";
}
.linearicons-teapot:before {
  content: "\eb0c";
}
.linearicons-glass:before {
  content: "\eb0d";
}
.linearicons-bottle2:before {
  content: "\eb0e";
}
.linearicons-glass-cocktail:before {
  content: "\eb0f";
}
.linearicons-glass2:before {
  content: "\eb10";
}
.linearicons-dinner:before {
  content: "\eb11";
}
.linearicons-dinner2:before {
  content: "\eb12";
}
.linearicons-chef:before {
  content: "\eb13";
}
.linearicons-scale2:before {
  content: "\eb14";
}
.linearicons-egg:before {
  content: "\eb15";
}
.linearicons-egg2:before {
  content: "\eb16";
}
.linearicons-eggs:before {
  content: "\eb17";
}
.linearicons-platter:before {
  content: "\eb18";
}
.linearicons-steak:before {
  content: "\eb19";
}
.linearicons-hamburger:before {
  content: "\eb1a";
}
.linearicons-hotdog:before {
  content: "\eb1b";
}
.linearicons-pizza:before {
  content: "\eb1c";
}
.linearicons-sausage:before {
  content: "\eb1d";
}
.linearicons-chicken:before {
  content: "\eb1e";
}
.linearicons-fish:before {
  content: "\eb1f";
}
.linearicons-carrot:before {
  content: "\eb20";
}
.linearicons-cheese:before {
  content: "\eb21";
}
.linearicons-bread:before {
  content: "\eb22";
}
.linearicons-ice-cream:before {
  content: "\eb23";
}
.linearicons-ice-cream2:before {
  content: "\eb24";
}
.linearicons-candy:before {
  content: "\eb25";
}
.linearicons-lollipop:before {
  content: "\eb26";
}
.linearicons-coffee-bean:before {
  content: "\eb27";
}
.linearicons-coffee-cup:before {
  content: "\eb28";
}
.linearicons-cherry:before {
  content: "\eb29";
}
.linearicons-grapes:before {
  content: "\eb2a";
}
.linearicons-citrus:before {
  content: "\eb2b";
}
.linearicons-apple:before {
  content: "\eb2c";
}
.linearicons-leaf:before {
  content: "\eb2d";
}
.linearicons-landscape:before {
  content: "\eb2e";
}
.linearicons-pine-tree:before {
  content: "\eb2f";
}
.linearicons-tree:before {
  content: "\eb30";
}
.linearicons-cactus:before {
  content: "\eb31";
}
.linearicons-paw:before {
  content: "\eb32";
}
.linearicons-footprint:before {
  content: "\eb33";
}
.linearicons-speed-slow:before {
  content: "\eb34";
}
.linearicons-speed-medium:before {
  content: "\eb35";
}
.linearicons-speed-fast:before {
  content: "\eb36";
}
.linearicons-rocket:before {
  content: "\eb37";
}
.linearicons-hammer2:before {
  content: "\eb38";
}
.linearicons-balance:before {
  content: "\eb39";
}
.linearicons-briefcase:before {
  content: "\eb3a";
}
.linearicons-luggage-weight:before {
  content: "\eb3b";
}
.linearicons-dolly:before {
  content: "\eb3c";
}
.linearicons-plane:before {
  content: "\eb3d";
}
.linearicons-plane-crossed:before {
  content: "\eb3e";
}
.linearicons-helicopter:before {
  content: "\eb3f";
}
.linearicons-traffic-lights:before {
  content: "\eb40";
}
.linearicons-siren:before {
  content: "\eb41";
}
.linearicons-road:before {
  content: "\eb42";
}
.linearicons-engine:before {
  content: "\eb43";
}
.linearicons-oil-pressure:before {
  content: "\eb44";
}
.linearicons-coolant-temperature:before {
  content: "\eb45";
}
.linearicons-car-battery:before {
  content: "\eb46";
}
.linearicons-gas:before {
  content: "\eb47";
}
.linearicons-gallon:before {
  content: "\eb48";
}
.linearicons-transmission:before {
  content: "\eb49";
}
.linearicons-car:before {
  content: "\eb4a";
}
.linearicons-car-wash:before {
  content: "\eb4b";
}
.linearicons-car-wash2:before {
  content: "\eb4c";
}
.linearicons-bus:before {
  content: "\eb4d";
}
.linearicons-bus2:before {
  content: "\eb4e";
}
.linearicons-car2:before {
  content: "\eb4f";
}
.linearicons-parking:before {
  content: "\eb50";
}
.linearicons-car-lock:before {
  content: "\eb51";
}
.linearicons-taxi:before {
  content: "\eb52";
}
.linearicons-car-siren:before {
  content: "\eb53";
}
.linearicons-car-wash3:before {
  content: "\eb54";
}
.linearicons-car-wash4:before {
  content: "\eb55";
}
.linearicons-ambulance:before {
  content: "\eb56";
}
.linearicons-truck:before {
  content: "\eb57";
}
.linearicons-trailer:before {
  content: "\eb58";
}
.linearicons-scale-truck:before {
  content: "\eb59";
}
.linearicons-train:before {
  content: "\eb5a";
}
.linearicons-ship:before {
  content: "\eb5b";
}
.linearicons-ship2:before {
  content: "\eb5c";
}
.linearicons-anchor:before {
  content: "\eb5d";
}
.linearicons-boat:before {
  content: "\eb5e";
}
.linearicons-bicycle:before {
  content: "\eb5f";
}
.linearicons-bicycle2:before {
  content: "\eb60";
}
.linearicons-dumbbell:before {
  content: "\eb61";
}
.linearicons-bench-press:before {
  content: "\eb62";
}
.linearicons-swim:before {
  content: "\eb63";
}
.linearicons-football:before {
  content: "\eb64";
}
.linearicons-baseball-bat:before {
  content: "\eb65";
}
.linearicons-baseball:before {
  content: "\eb66";
}
.linearicons-tennis:before {
  content: "\eb67";
}
.linearicons-tennis2:before {
  content: "\eb68";
}
.linearicons-ping-pong:before {
  content: "\eb69";
}
.linearicons-hockey:before {
  content: "\eb6a";
}
.linearicons-8ball:before {
  content: "\eb6b";
}
.linearicons-bowling:before {
  content: "\eb6c";
}
.linearicons-bowling-pins:before {
  content: "\eb6d";
}
.linearicons-golf:before {
  content: "\eb6e";
}
.linearicons-golf2:before {
  content: "\eb6f";
}
.linearicons-archery:before {
  content: "\eb70";
}
.linearicons-slingshot:before {
  content: "\eb71";
}
.linearicons-soccer:before {
  content: "\eb72";
}
.linearicons-basketball:before {
  content: "\eb73";
}
.linearicons-cube:before {
  content: "\eb74";
}
.linearicons-3d-rotate:before {
  content: "\eb75";
}
.linearicons-puzzle:before {
  content: "\eb76";
}
.linearicons-glasses:before {
  content: "\eb77";
}
.linearicons-glasses2:before {
  content: "\eb78";
}
.linearicons-accessibility:before {
  content: "\eb79";
}
.linearicons-wheelchair:before {
  content: "\eb7a";
}
.linearicons-wall:before {
  content: "\eb7b";
}
.linearicons-fence:before {
  content: "\eb7c";
}
.linearicons-wall2:before {
  content: "\eb7d";
}
.linearicons-icons:before {
  content: "\eb7e";
}
.linearicons-resize-handle:before {
  content: "\eb7f";
}
.linearicons-icons2:before {
  content: "\eb80";
}
.linearicons-select:before {
  content: "\eb81";
}
.linearicons-select2:before {
  content: "\eb82";
}
.linearicons-site-map:before {
  content: "\eb83";
}
.linearicons-earth:before {
  content: "\eb84";
}
.linearicons-earth-lock:before {
  content: "\eb85";
}
.linearicons-network:before {
  content: "\eb86";
}
.linearicons-network-lock:before {
  content: "\eb87";
}
.linearicons-planet:before {
  content: "\eb88";
}
.linearicons-happy:before {
  content: "\eb89";
}
.linearicons-smile:before {
  content: "\eb8a";
}
.linearicons-grin:before {
  content: "\eb8b";
}
.linearicons-tongue:before {
  content: "\eb8c";
}
.linearicons-sad:before {
  content: "\eb8d";
}
.linearicons-wink:before {
  content: "\eb8e";
}
.linearicons-dream:before {
  content: "\eb8f";
}
.linearicons-shocked:before {
  content: "\eb90";
}
.linearicons-shocked2:before {
  content: "\eb91";
}
.linearicons-tongue2:before {
  content: "\eb92";
}
.linearicons-neutral:before {
  content: "\eb93";
}
.linearicons-happy-grin:before {
  content: "\eb94";
}
.linearicons-cool:before {
  content: "\eb95";
}
.linearicons-mad:before {
  content: "\eb96";
}
.linearicons-grin-evil:before {
  content: "\eb97";
}
.linearicons-evil:before {
  content: "\eb98";
}
.linearicons-wow:before {
  content: "\eb99";
}
.linearicons-annoyed:before {
  content: "\eb9a";
}
.linearicons-wondering:before {
  content: "\eb9b";
}
.linearicons-confused:before {
  content: "\eb9c";
}
.linearicons-zipped:before {
  content: "\eb9d";
}
.linearicons-grumpy:before {
  content: "\eb9e";
}
.linearicons-mustache:before {
  content: "\eb9f";
}
.linearicons-tombstone-hipster:before {
  content: "\eba0";
}
.linearicons-tombstone:before {
  content: "\eba1";
}
.linearicons-ghost:before {
  content: "\eba2";
}
.linearicons-ghost-hipster:before {
  content: "\eba3";
}
.linearicons-halloween:before {
  content: "\eba4";
}
.linearicons-christmas:before {
  content: "\eba5";
}
.linearicons-easter-egg:before {
  content: "\eba6";
}
.linearicons-mustache2:before {
  content: "\eba7";
}
.linearicons-mustache-glasses:before {
  content: "\eba8";
}
.linearicons-pipe:before {
  content: "\eba9";
}
.linearicons-alarm:before {
  content: "\ebaa";
}
.linearicons-alarm-add:before {
  content: "\ebab";
}
.linearicons-alarm-snooze:before {
  content: "\ebac";
}
.linearicons-alarm-ringing:before {
  content: "\ebad";
}
.linearicons-bullhorn:before {
  content: "\ebae";
}
.linearicons-hearing:before {
  content: "\ebaf";
}
.linearicons-volume-high:before {
  content: "\ebb0";
}
.linearicons-volume-medium:before {
  content: "\ebb1";
}
.linearicons-volume-low:before {
  content: "\ebb2";
}
.linearicons-volume:before {
  content: "\ebb3";
}
.linearicons-mute:before {
  content: "\ebb4";
}
.linearicons-lan:before {
  content: "\ebb5";
}
.linearicons-lan2:before {
  content: "\ebb6";
}
.linearicons-wifi:before {
  content: "\ebb7";
}
.linearicons-wifi-lock:before {
  content: "\ebb8";
}
.linearicons-wifi-blocked:before {
  content: "\ebb9";
}
.linearicons-wifi-mid:before {
  content: "\ebba";
}
.linearicons-wifi-low:before {
  content: "\ebbb";
}
.linearicons-wifi-low2:before {
  content: "\ebbc";
}
.linearicons-wifi-alert:before {
  content: "\ebbd";
}
.linearicons-wifi-alert-mid:before {
  content: "\ebbe";
}
.linearicons-wifi-alert-low:before {
  content: "\ebbf";
}
.linearicons-wifi-alert-low2:before {
  content: "\ebc0";
}
.linearicons-stream:before {
  content: "\ebc1";
}
.linearicons-stream-check:before {
  content: "\ebc2";
}
.linearicons-stream-error:before {
  content: "\ebc3";
}
.linearicons-stream-alert:before {
  content: "\ebc4";
}
.linearicons-communication:before {
  content: "\ebc5";
}
.linearicons-communication-crossed:before {
  content: "\ebc6";
}
.linearicons-broadcast:before {
  content: "\ebc7";
}
.linearicons-antenna:before {
  content: "\ebc8";
}
.linearicons-satellite:before {
  content: "\ebc9";
}
.linearicons-satellite2:before {
  content: "\ebca";
}
.linearicons-mic:before {
  content: "\ebcb";
}
.linearicons-mic-mute:before {
  content: "\ebcc";
}
.linearicons-mic2:before {
  content: "\ebcd";
}
.linearicons-spotlights:before {
  content: "\ebce";
}
.linearicons-hourglass:before {
  content: "\ebcf";
}
.linearicons-loading:before {
  content: "\ebd0";
}
.linearicons-loading2:before {
  content: "\ebd1";
}
.linearicons-loading3:before {
  content: "\ebd2";
}
.linearicons-refresh:before {
  content: "\ebd3";
}
.linearicons-refresh2:before {
  content: "\ebd4";
}
.linearicons-undo:before {
  content: "\ebd5";
}
.linearicons-redo:before {
  content: "\ebd6";
}
.linearicons-jump2:before {
  content: "\ebd7";
}
.linearicons-undo2:before {
  content: "\ebd8";
}
.linearicons-redo2:before {
  content: "\ebd9";
}
.linearicons-sync:before {
  content: "\ebda";
}
.linearicons-repeat-one2:before {
  content: "\ebdb";
}
.linearicons-sync-crossed:before {
  content: "\ebdc";
}
.linearicons-sync2:before {
  content: "\ebdd";
}
.linearicons-repeat-one3:before {
  content: "\ebde";
}
.linearicons-sync-crossed2:before {
  content: "\ebdf";
}
.linearicons-return:before {
  content: "\ebe0";
}
.linearicons-return2:before {
  content: "\ebe1";
}
.linearicons-refund:before {
  content: "\ebe2";
}
.linearicons-history:before {
  content: "\ebe3";
}
.linearicons-history2:before {
  content: "\ebe4";
}
.linearicons-self-timer:before {
  content: "\ebe5";
}
.linearicons-clock:before {
  content: "\ebe6";
}
.linearicons-clock2:before {
  content: "\ebe7";
}
.linearicons-clock3:before {
  content: "\ebe8";
}
.linearicons-watch:before {
  content: "\ebe9";
}
.linearicons-alarm2:before {
  content: "\ebea";
}
.linearicons-alarm-add2:before {
  content: "\ebeb";
}
.linearicons-alarm-remove:before {
  content: "\ebec";
}
.linearicons-alarm-check:before {
  content: "\ebed";
}
.linearicons-alarm-error:before {
  content: "\ebee";
}
.linearicons-timer:before {
  content: "\ebef";
}
.linearicons-timer-crossed:before {
  content: "\ebf0";
}
.linearicons-timer2:before {
  content: "\ebf1";
}
.linearicons-timer-crossed2:before {
  content: "\ebf2";
}
.linearicons-download:before {
  content: "\ebf3";
}
.linearicons-upload:before {
  content: "\ebf4";
}
.linearicons-download2:before {
  content: "\ebf5";
}
.linearicons-upload2:before {
  content: "\ebf6";
}
.linearicons-enter-up:before {
  content: "\ebf7";
}
.linearicons-enter-down:before {
  content: "\ebf8";
}
.linearicons-enter-left:before {
  content: "\ebf9";
}
.linearicons-enter-right:before {
  content: "\ebfa";
}
.linearicons-exit-up:before {
  content: "\ebfb";
}
.linearicons-exit-down:before {
  content: "\ebfc";
}
.linearicons-exit-left:before {
  content: "\ebfd";
}
.linearicons-exit-right:before {
  content: "\ebfe";
}
.linearicons-enter-up2:before {
  content: "\ebff";
}
.linearicons-enter-down2:before {
  content: "\ec00";
}
.linearicons-enter-vertical:before {
  content: "\ec01";
}
.linearicons-enter-left2:before {
  content: "\ec02";
}
.linearicons-enter-right2:before {
  content: "\ec03";
}
.linearicons-enter-horizontal:before {
  content: "\ec04";
}
.linearicons-exit-up2:before {
  content: "\ec05";
}
.linearicons-exit-down2:before {
  content: "\ec06";
}
.linearicons-exit-left2:before {
  content: "\ec07";
}
.linearicons-exit-right2:before {
  content: "\ec08";
}
.linearicons-cli:before {
  content: "\ec09";
}
.linearicons-bug:before {
  content: "\ec0a";
}
.linearicons-code:before {
  content: "\ec0b";
}
.linearicons-file-code:before {
  content: "\ec0c";
}
.linearicons-file-image:before {
  content: "\ec0d";
}
.linearicons-file-zip:before {
  content: "\ec0e";
}
.linearicons-file-audio:before {
  content: "\ec0f";
}
.linearicons-file-video:before {
  content: "\ec10";
}
.linearicons-file-preview:before {
  content: "\ec11";
}
.linearicons-file-charts:before {
  content: "\ec12";
}
.linearicons-file-stats:before {
  content: "\ec13";
}
.linearicons-file-spreadsheet:before {
  content: "\ec14";
}
.linearicons-link:before {
  content: "\ec15";
}
.linearicons-unlink:before {
  content: "\ec16";
}
.linearicons-link2:before {
  content: "\ec17";
}
.linearicons-unlink2:before {
  content: "\ec18";
}
.linearicons-thumbs-up:before {
  content: "\ec19";
}
.linearicons-thumbs-down:before {
  content: "\ec1a";
}
.linearicons-thumbs-up2:before {
  content: "\ec1b";
}
.linearicons-thumbs-down2:before {
  content: "\ec1c";
}
.linearicons-thumbs-up3:before {
  content: "\ec1d";
}
.linearicons-thumbs-down3:before {
  content: "\ec1e";
}
.linearicons-share:before {
  content: "\ec1f";
}
.linearicons-share2:before {
  content: "\ec20";
}
.linearicons-share3:before {
  content: "\ec21";
}
.linearicons-magnifier:before {
  content: "\ec22";
}
.linearicons-file-search:before {
  content: "\ec23";
}
.linearicons-find-replace:before {
  content: "\ec24";
}
.linearicons-zoom-in:before {
  content: "\ec25";
}
.linearicons-zoom-out:before {
  content: "\ec26";
}
.linearicons-loupe:before {
  content: "\ec27";
}
.linearicons-loupe-zoom-in:before {
  content: "\ec28";
}
.linearicons-loupe-zoom-out:before {
  content: "\ec29";
}
.linearicons-cross:before {
  content: "\ec2a";
}
.linearicons-menu:before {
  content: "\ec2b";
  color:white;
}
.linearicons-list:before {
  content: "\ec2c";
}
.linearicons-list2:before {
  content: "\ec2d";
}
.linearicons-list3:before {
  content: "\ec2e";
}
.linearicons-menu2:before {
  content: "\ec2f";
}
.linearicons-list4:before {
  content: "\ec30";
}
.linearicons-menu3:before {
  content: "\ec31";
}
.linearicons-exclamation:before {
  content: "\ec32";
}
.linearicons-question:before {
  content: "\ec33";
}
.linearicons-check:before {
  content: "\ec34";
}
.linearicons-cross2:before {
  content: "\ec35";
}
.linearicons-plus:before {
  content: "\ec36";
}
.linearicons-minus:before {
  content: "\ec37";
}
.linearicons-percent:before {
  content: "\ec38";
}
.linearicons-chevron-up:before {
  content: "\ec39";
}
.linearicons-chevron-down:before {
  content: "\ec3a";
}
.linearicons-chevron-left:before {
  content: "\ec3b";
}
.linearicons-chevron-right:before {
  content: "\ec3c";
}
.linearicons-chevrons-expand-vertical:before {
  content: "\ec3d";
}
.linearicons-chevrons-expand-horizontal:before {
  content: "\ec3e";
}
.linearicons-chevrons-contract-vertical:before {
  content: "\ec3f";
}
.linearicons-chevrons-contract-horizontal:before {
  content: "\ec40";
}
.linearicons-arrow-up:before {
  content: "\ec41";
}
.linearicons-arrow-down:before {
  content: "\ec42";
}
.linearicons-arrow-left:before {
  content: "\ec43";
}
.linearicons-arrow-right:before {
  content: "\ec44";
}
.linearicons-arrow-up-right:before {
  content: "\ec45";
}
.linearicons-arrows-merge:before {
  content: "\ec46";
}
.linearicons-arrows-split:before {
  content: "\ec47";
}
.linearicons-arrow-divert:before {
  content: "\ec48";
}
.linearicons-arrow-return:before {
  content: "\ec49";
}
.linearicons-expand:before {
  content: "\ec4a";
}
.linearicons-contract:before {
  content: "\ec4b";
}
.linearicons-expand2:before {
  content: "\ec4c";
}
.linearicons-contract2:before {
  content: "\ec4d";
}
.linearicons-move:before {
  content: "\ec4e";
}
.linearicons-tab:before {
  content: "\ec4f";
}
.linearicons-arrow-wave:before {
  content: "\ec50";
}
.linearicons-expand3:before {
  content: "\ec51";
}
.linearicons-expand4:before {
  content: "\ec52";
}
.linearicons-contract3:before {
  content: "\ec53";
}
.linearicons-notification:before {
  content: "\ec54";
}
.linearicons-warning:before {
  content: "\ec55";
}
.linearicons-notification-circle:before {
  content: "\ec56";
}
.linearicons-question-circle:before {
  content: "\ec57";
}
.linearicons-menu-circle:before {
  content: "\ec58";
}
.linearicons-checkmark-circle:before {
  content: "\ec59";
}
.linearicons-cross-circle:before {
  content: "\ec5a";
}
.linearicons-plus-circle:before {
  content: "\ec5b";
}
.linearicons-circle-minus:before {
  content: "\ec5c";
}
.linearicons-percent-circle:before {
  content: "\ec5d";
}
.linearicons-arrow-up-circle:before {
  content: "\ec5e";
}
.linearicons-arrow-down-circle:before {
  content: "\ec5f";
}
.linearicons-arrow-left-circle:before {
  content: "\ec60";
}
.linearicons-arrow-right-circle:before {
  content: "\ec61";
}
.linearicons-chevron-up-circle:before {
  content: "\ec62";
}
.linearicons-chevron-down-circle:before {
  content: "\ec63";
}
.linearicons-chevron-left-circle:before {
  content: "\ec64";
}
.linearicons-chevron-right-circle:before {
  content: "\ec65";
}
.linearicons-backward-circle:before {
  content: "\ec66";
}
.linearicons-first-circle:before {
  content: "\ec67";
}
.linearicons-previous-circle:before {
  content: "\ec68";
}
.linearicons-stop-circle:before {
  content: "\ec69";
}
.linearicons-play-circle:before {
  content: "\ec6a";
}
.linearicons-pause-circle:before {
  content: "\ec6b";
}
.linearicons-next-circle:before {
  content: "\ec6c";
}
.linearicons-last-circle:before {
  content: "\ec6d";
}
.linearicons-forward-circle:before {
  content: "\ec6e";
}
.linearicons-eject-circle:before {
  content: "\ec6f";
}
.linearicons-crop:before {
  content: "\ec70";
}
.linearicons-frame-expand:before {
  content: "\ec71";
}
.linearicons-frame-contract:before {
  content: "\ec72";
}
.linearicons-focus:before {
  content: "\ec73";
}
.linearicons-transform:before {
  content: "\ec74";
}
.linearicons-grid:before {
  content: "\ec75";
}
.linearicons-grid-crossed:before {
  content: "\ec76";
}
.linearicons-layers:before {
  content: "\ec77";
}
.linearicons-layers-crossed:before {
  content: "\ec78";
}
.linearicons-toggle:before {
  content: "\ec79";
}
.linearicons-rulers:before {
  content: "\ec7a";
}
.linearicons-ruler:before {
  content: "\ec7b";
}
.linearicons-funnel:before {
  content: "\ec7c";
}
.linearicons-flip-horizontal:before {
  content: "\ec7d";
}
.linearicons-flip-vertical:before {
  content: "\ec7e";
}
.linearicons-flip-horizontal2:before {
  content: "\ec7f";
}
.linearicons-flip-vertical2:before {
  content: "\ec80";
}
.linearicons-angle:before {
  content: "\ec81";
}
.linearicons-angle2:before {
  content: "\ec82";
}
.linearicons-subtract:before {
  content: "\ec83";
}
.linearicons-combine:before {
  content: "\ec84";
}
.linearicons-intersect:before {
  content: "\ec85";
}
.linearicons-exclude:before {
  content: "\ec86";
}
.linearicons-align-center-vertical:before {
  content: "\ec87";
}
.linearicons-align-right:before {
  content: "\ec88";
}
.linearicons-align-bottom:before {
  content: "\ec89";
}
.linearicons-align-left:before {
  content: "\ec8a";
}
.linearicons-align-center-horizontal:before {
  content: "\ec8b";
}
.linearicons-align-top:before {
  content: "\ec8c";
}
.linearicons-square:before {
  content: "\ec8d";
}
.linearicons-plus-square:before {
  content: "\ec8e";
}
.linearicons-minus-square:before {
  content: "\ec8f";
}
.linearicons-percent-square:before {
  content: "\ec90";
}
.linearicons-arrow-up-square:before {
  content: "\ec91";
}
.linearicons-arrow-down-square:before {
  content: "\ec92";
}
.linearicons-arrow-left-square:before {
  content: "\ec93";
}
.linearicons-arrow-right-square:before {
  content: "\ec94";
}
.linearicons-chevron-up-square:before {
  content: "\ec95";
}
.linearicons-chevron-down-square:before {
  content: "\ec96";
}
.linearicons-chevron-left-square:before {
  content: "\ec97";
}
.linearicons-chevron-right-square:before {
  content: "\ec98";
}
.linearicons-check-square:before {
  content: "\ec99";
}
.linearicons-cross-square:before {
  content: "\ec9a";
}
.linearicons-menu-square:before {
  content: "\ec9b";
}
.linearicons-prohibited:before {
  content: "\ec9c";
}
.linearicons-circle:before {
  content: "\ec9d";
}
.linearicons-radio-button:before {
  content: "\ec9e";
}
.linearicons-ligature:before {
  content: "\ec9f";
}
.linearicons-text-format:before {
  content: "\eca0";
}
.linearicons-text-format-remove:before {
  content: "\eca1";
}
.linearicons-text-size:before {
  content: "\eca2";
}
.linearicons-bold:before {
  content: "\eca3";
}
.linearicons-italic:before {
  content: "\eca4";
}
.linearicons-underline:before {
  content: "\eca5";
}
.linearicons-strikethrough:before {
  content: "\eca6";
}
.linearicons-highlight:before {
  content: "\eca7";
}
.linearicons-text-align-left:before {
  content: "\eca8";
}
.linearicons-text-align-center:before {
  content: "\eca9";
}
.linearicons-text-align-right:before {
  content: "\ecaa";
}
.linearicons-text-align-justify:before {
  content: "\ecab";
}
.linearicons-line-spacing:before {
  content: "\ecac";
}
.linearicons-indent-increase:before {
  content: "\ecad";
}
.linearicons-indent-decrease:before {
  content: "\ecae";
}
.linearicons-text-wrap:before {
  content: "\ecaf";
}
.linearicons-pilcrow:before {
  content: "\ecb0";
}
.linearicons-direction-ltr:before {
  content: "\ecb1";
}
.linearicons-direction-rtl:before {
  content: "\ecb2";
}
.linearicons-page-break:before {
  content: "\ecb3";
}
.linearicons-page-break2:before {
  content: "\ecb4";
}
.linearicons-sort-alpha-asc:before {
  content: "\ecb5";
}
.linearicons-sort-alpha-desc:before {
  content: "\ecb6";
}
.linearicons-sort-numeric-asc:before {
  content: "\ecb7";
}
.linearicons-sort-numeric-desc:before {
  content: "\ecb8";
}
.linearicons-sort-amount-asc:before {
  content: "\ecb9";
}
.linearicons-sort-amount-desc:before {
  content: "\ecba";
}
.linearicons-sort-time-asc:before {
  content: "\ecbb";
}
.linearicons-sort-time-desc:before {
  content: "\ecbc";
}
.linearicons-sigma:before {
  content: "\ecbd";
}
.linearicons-pencil-line:before {
  content: "\ecbe";
}
.linearicons-hand:before {
  content: "\ecbf";
}
.linearicons-pointer-up:before {
  content: "\ecc0";
}
.linearicons-pointer-right:before {
  content: "\ecc1";
}
.linearicons-pointer-down:before {
  content: "\ecc2";
}
.linearicons-pointer-left:before {
  content: "\ecc3";
}
.linearicons-finger-tap:before {
  content: "\ecc4";
}
.linearicons-fingers-tap:before {
  content: "\ecc5";
}
.linearicons-reminder:before {
  content: "\ecc6";
}
.linearicons-fingers-crossed:before {
  content: "\ecc7";
}
.linearicons-fingers-victory:before {
  content: "\ecc8";
}
.linearicons-gesture-zoom:before {
  content: "\ecc9";
}
.linearicons-gesture-pinch:before {
  content: "\ecca";
}
.linearicons-fingers-scroll-horizontal:before {
  content: "\eccb";
}
.linearicons-fingers-scroll-vertical:before {
  content: "\eccc";
}
.linearicons-fingers-scroll-left:before {
  content: "\eccd";
}
.linearicons-fingers-scroll-right:before {
  content: "\ecce";
}
.linearicons-hand2:before {
  content: "\eccf";
}
.linearicons-pointer-up2:before {
  content: "\ecd0";
}
.linearicons-pointer-right2:before {
  content: "\ecd1";
}
.linearicons-pointer-down2:before {
  content: "\ecd2";
}
.linearicons-pointer-left2:before {
  content: "\ecd3";
}
.linearicons-finger-tap2:before {
  content: "\ecd4";
}
.linearicons-fingers-tap2:before {
  content: "\ecd5";
}
.linearicons-reminder2:before {
  content: "\ecd6";
}
.linearicons-gesture-zoom2:before {
  content: "\ecd7";
}
.linearicons-gesture-pinch2:before {
  content: "\ecd8";
}
.linearicons-fingers-scroll-horizontal2:before {
  content: "\ecd9";
}
.linearicons-fingers-scroll-vertical2:before {
  content: "\ecda";
}
.linearicons-fingers-scroll-left2:before {
  content: "\ecdb";
}
.linearicons-fingers-scroll-right2:before {
  content: "\ecdc";
}
.linearicons-fingers-scroll-vertical3:before {
  content: "\ecdd";
}
.linearicons-border-style:before {
  content: "\ecde";
}
.linearicons-border-all:before {
  content: "\ecdf";
}
.linearicons-border-outer:before {
  content: "\ece0";
}
.linearicons-border-inner:before {
  content: "\ece1";
}
.linearicons-border-top:before {
  content: "\ece2";
}
.linearicons-border-horizontal:before {
  content: "\ece3";
}
.linearicons-border-bottom:before {
  content: "\ece4";
}
.linearicons-border-left:before {
  content: "\ece5";
}
.linearicons-border-vertical:before {
  content: "\ece6";
}
.linearicons-border-right:before {
  content: "\ece7";
}
.linearicons-border-none:before {
  content: "\ece8";
}
.linearicons-ellipsis:before {
  content: "\ece9";
}


@font-face {
  font-family: "Flaticon";
  src: url("/fonts/Flaticon.eot");
  src: url("/fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
       url("/fonts/Flaticon.woff2") format("woff2"),
       url("/fonts/Flaticon.woff") format("woff"),
       url("/fonts/Flaticon.ttf") format("truetype"),
       url("/fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("/fonts/Flaticon.svg#Flaticon") format("svg");
  }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
	font-family: "Flaticon";
	font-style: normal;
}

.flaticon-shipped:before { content: "\f100"; }
.flaticon-money-back:before { content: "\f101"; }
.flaticon-support:before { content: "\f102"; }
.flaticon-woman:before { content: "\f103"; }
.flaticon-boss:before { content: "\f104"; }
.flaticon-friendship:before { content: "\f105"; }
.flaticon-sunglasses:before { content: "\f106"; }
.flaticon-jacket:before { content: "\f107"; }
.flaticon-sneakers:before { content: "\f108"; }
.flaticon-watch:before { content: "\f109"; }
.flaticon-necklace:before { content: "\f10a"; }
.flaticon-herbal:before { content: "\f10b"; }
.flaticon-ball:before { content: "\f10c"; }
.flaticon-pijamas:before { content: "\f10d"; }
.flaticon-scarf:before { content: "\f10e"; }
.flaticon-vintage:before { content: "\f10f"; }
.flaticon-pregnant:before { content: "\f110"; }
.flaticon-lock:before { content: "\f111"; }
.flaticon-bed:before { content: "\f112"; }
.flaticon-table:before { content: "\f113"; }
.flaticon-armchair:before { content: "\f114"; }
.flaticon-desk-lamp:before { content: "\f115"; }
.flaticon-sofa:before { content: "\f116"; }
.flaticon-chair:before { content: "\f117"; }
.flaticon-tv:before { content: "\f118"; }
.flaticon-responsive:before { content: "\f119"; }
.flaticon-camera:before { content: "\f11a"; }
.flaticon-plugins:before { content: "\f11b"; }
.flaticon-headphones:before { content: "\f11c"; }
.flaticon-console:before { content: "\f11d"; }
.flaticon-music-system:before { content: "\f11e"; }
.flaticon-monitor:before { content: "\f11f"; }
.flaticon-printer:before { content: "\f120"; }
.flaticon-fax:before { content: "\f121"; }
.flaticon-mouse:before { content: "\f122"; }
/* http://graphicburger.com/simple-line-icons-webfont/ */
@font-face {
	font-family: 'Simple-Line-Icons';

	src:url('/fonts/Simple-Line-Icons.eot');
	src:url('/fonts/Simple-Line-Icons.eot?#iefix') format('embedded-opentype'),
		url('/fonts/Simple-Line-Icons.woff2') format('woff2'),
		url('/fonts/Simple-Line-Icons.woff') format('woff'),
		url('/fonts/Simple-Line-Icons.ttf') format('truetype'),
		url('/fonts/Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
	font-weight: normal;
	font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	@font-face {
		font-family: 'Simple-Line-Icons';
		src: url('/fonts/Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
	}
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'Simple-Line-Icons';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-user-female, .icon-user-follow, .icon-user-following, .icon-user-unfollow, .icon-trophy, .icon-screen-smartphone, .icon-screen-desktop, .icon-plane, .icon-notebook, .icon-moustache, .icon-mouse, .icon-magnet, .icon-energy, .icon-emoticon-smile, .icon-disc, .icon-cursor-move, .icon-crop, .icon-credit-card, .icon-chemistry, .icon-user, .icon-speedometer, .icon-social-youtube, .icon-social-twitter, .icon-social-tumblr, .icon-social-facebook, .icon-social-dropbox, .icon-social-dribbble, .icon-shield, .icon-screen-tablet, .icon-magic-wand, .icon-hourglass, .icon-graduation, .icon-ghost, .icon-game-controller, .icon-fire, .icon-eyeglasses, .icon-envelope-open, .icon-envelope-letter, .icon-bell, .icon-badge, .icon-anchor, .icon-wallet, .icon-vector, .icon-speech, .icon-puzzle, .icon-printer, .icon-present, .icon-playlist, .icon-pin, .icon-picture, .icon-map, .icon-layers, .icon-handbag, .icon-globe-alt, .icon-globe, .icon-frame, .icon-folder-alt, .icon-film, .icon-feed, .icon-earphones-alt, .icon-earphones, .icon-drop, .icon-drawer, .icon-docs, .icon-directions, .icon-direction, .icon-diamond, .icon-cup, .icon-compass, .icon-call-out, .icon-call-in, .icon-call-end, .icon-calculator, .icon-bubbles, .icon-briefcase, .icon-book-open, .icon-basket-loaded, .icon-basket, .icon-bag, .icon-action-undo, .icon-action-redo, .icon-wrench, .icon-umbrella, .icon-trash, .icon-tag, .icon-support, .icon-size-fullscreen, .icon-size-actual, .icon-shuffle, .icon-share-alt, .icon-share, .icon-rocket, .icon-question, .icon-pie-chart, .icon-pencil, .icon-note, .icon-music-tone-alt, .icon-music-tone, .icon-microphone, .icon-loop, .icon-logout, .icon-login, .icon-list, .icon-like, .icon-home, .icon-grid, .icon-graph, .icon-equalizer, .icon-dislike, .icon-cursor, .icon-control-start, .icon-control-rewind, .icon-control-play, .icon-control-pause, .icon-control-forward, .icon-control-end, .icon-calendar, .icon-bulb, .icon-bar-chart, .icon-arrow-up, .icon-arrow-right, .icon-arrow-left, .icon-arrow-down, .icon-ban, .icon-bubble, .icon-camcorder, .icon-camera, .icon-check, .icon-clock, .icon-close, .icon-cloud-download, .icon-cloud-upload, .icon-doc, .icon-envelope, .icon-eye, .icon-flag, .icon-folder, .icon-heart, .icon-info, .icon-key, .icon-link, .icon-lock, .icon-lock-open, .icon-magnifier, .icon-magnifier-add, .icon-magnifier-remove, .icon-paper-clip, .icon-paper-plane, .icon-plus, .icon-pointer, .icon-power, .icon-refresh, .icon-reload, .icon-settings, .icon-star, .icon-symbol-female, .icon-symbol-male, .icon-target, .icon-volume-1, .icon-volume-2, .icon-volume-off, .icon-users {
	font-family: 'Simple-Line-Icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}
.icon-user-female:before {
	content: "\e000";
}
.icon-user-follow:before {
	content: "\e002";
}
.icon-user-following:before {
	content: "\e003";
}
.icon-user-unfollow:before {
	content: "\e004";
}
.icon-trophy:before {
	content: "\e006";
}
.icon-screen-smartphone:before {
	content: "\e010";
}
.icon-screen-desktop:before {
	content: "\e011";
}
.icon-plane:before {
	content: "\e012";
}
.icon-notebook:before {
	content: "\e013";
}
.icon-moustache:before {
	content: "\e014";
}
.icon-mouse:before {
	content: "\e015";
}
.icon-magnet:before {
	content: "\e016";
}
.icon-energy:before {
	content: "\e020";
}
.icon-emoticon-smile:before {
	content: "\e021";
}
.icon-disc:before {
	content: "\e022";
}
.icon-cursor-move:before {
	content: "\e023";
}
.icon-crop:before {
	content: "\e024";
}
.icon-credit-card:before {
	content: "\e025";
}
.icon-chemistry:before {
	content: "\e026";
}
.icon-user:before {
	content: "\e005";
}
.icon-speedometer:before {
	content: "\e007";
}
.icon-social-youtube:before {
	content: "\e008";
}
.icon-social-twitter:before {
	content: "\e009";
}
.icon-social-tumblr:before {
	content: "\e00a";
}
.icon-social-facebook:before {
	content: "\e00b";
}
.icon-social-dropbox:before {
	content: "\e00c";
}
.icon-social-dribbble:before {
	content: "\e00d";
}
.icon-shield:before {
	content: "\e00e";
}
.icon-screen-tablet:before {
	content: "\e00f";
}
.icon-magic-wand:before {
	content: "\e017";
}
.icon-hourglass:before {
	content: "\e018";
}
.icon-graduation:before {
	content: "\e019";
}
.icon-ghost:before {
	content: "\e01a";
}
.icon-game-controller:before {
	content: "\e01b";
}
.icon-fire:before {
	content: "\e01c";
}
.icon-eyeglasses:before {
	content: "\e01d";
}
.icon-envelope-open:before {
	content: "\e01e";
}
.icon-envelope-letter:before {
	content: "\e01f";
}
.icon-bell:before {
	content: "\e027";
}
.icon-badge:before {
	content: "\e028";
}
.icon-anchor:before {
	content: "\e029";
}
.icon-wallet:before {
	content: "\e02a";
}
.icon-vector:before {
	content: "\e02b";
}
.icon-speech:before {
	content: "\e02c";
}
.icon-puzzle:before {
	content: "\e02d";
}
.icon-printer:before {
	content: "\e02e";
}
.icon-present:before {
	content: "\e02f";
}
.icon-playlist:before {
	content: "\e030";
}
.icon-pin:before {
	content: "\e031";
}
.icon-picture:before {
	content: "\e032";
}
.icon-map:before {
	content: "\e033";
}
.icon-layers:before {
	content: "\e034";
}
.icon-handbag:before {
	content: "\e035";
}
.icon-globe-alt:before {
	content: "\e036";
}
.icon-globe:before {
	content: "\e037";
}
.icon-frame:before {
	content: "\e038";
}
.icon-folder-alt:before {
	content: "\e039";
}
.icon-film:before {
	content: "\e03a";
}
.icon-feed:before {
	content: "\e03b";
}
.icon-earphones-alt:before {
	content: "\e03c";
}
.icon-earphones:before {
	content: "\e03d";
}
.icon-drop:before {
	content: "\e03e";
}
.icon-drawer:before {
	content: "\e03f";
}
.icon-docs:before {
	content: "\e040";
}
.icon-directions:before {
	content: "\e041";
}
.icon-direction:before {
	content: "\e042";
}
.icon-diamond:before {
	content: "\e043";
}
.icon-cup:before {
	content: "\e044";
}
.icon-compass:before {
	content: "\e045";
}
.icon-call-out:before {
	content: "\e046";
}
.icon-call-in:before {
	content: "\e047";
}
.icon-call-end:before {
	content: "\e048";
}
.icon-calculator:before {
	content: "\e049";
}
.icon-bubbles:before {
	content: "\e04a";
}
.icon-briefcase:before {
	content: "\e04b";
}
.icon-book-open:before {
	content: "\e04c";
}
.icon-basket-loaded:before {
	content: "\e04d";
}
.icon-basket:before {
	content: "\e04e";
}
.icon-bag:before {
	content: "\e04f";
}
.icon-action-undo:before {
	content: "\e050";
}
.icon-action-redo:before {
	content: "\e051";
}
.icon-wrench:before {
	content: "\e052";
}
.icon-umbrella:before {
	content: "\e053";
}
.icon-trash:before {
	content: "\e054";
}
.icon-tag:before {
	content: "\e055";
}
.icon-support:before {
	content: "\e056";
}
.icon-size-fullscreen:before {
	content: "\e057";
}
.icon-size-actual:before {
	content: "\e058";
}
.icon-shuffle:before {
	content: "\e059";
}
.icon-share-alt:before {
	content: "\e05a";
}
.icon-share:before {
	content: "\e05b";
}
.icon-rocket:before {
	content: "\e05c";
}
.icon-question:before {
	content: "\e05d";
}
.icon-pie-chart:before {
	content: "\e05e";
}
.icon-pencil:before {
	content: "\e05f";
}
.icon-note:before {
	content: "\e060";
}
.icon-music-tone-alt:before {
	content: "\e061";
}
.icon-music-tone:before {
	content: "\e062";
}
.icon-microphone:before {
	content: "\e063";
}
.icon-loop:before {
	content: "\e064";
}
.icon-logout:before {
	content: "\e065";
}
.icon-login:before {
	content: "\e066";
}
.icon-list:before {
	content: "\e067";
}
.icon-like:before {
	content: "\e068";
}
.icon-home:before {
	content: "\e069";
}
.icon-grid:before {
	content: "\e06a";
}
.icon-graph:before {
	content: "\e06b";
}
.icon-equalizer:before {
	content: "\e06c";
}
.icon-dislike:before {
	content: "\e06d";
}
.icon-cursor:before {
	content: "\e06e";
}
.icon-control-start:before {
	content: "\e06f";
}
.icon-control-rewind:before {
	content: "\e070";
}
.icon-control-play:before {
	content: "\e071";
}
.icon-control-pause:before {
	content: "\e072";
}
.icon-control-forward:before {
	content: "\e073";
}
.icon-control-end:before {
	content: "\e074";
}
.icon-calendar:before {
	content: "\e075";
}
.icon-bulb:before {
	content: "\e076";
}
.icon-bar-chart:before {
	content: "\e077";
}
.icon-arrow-up:before {
	content: "\e078";
}
.icon-arrow-right:before {
	content: "\e079";
}
.icon-arrow-left:before {
	content: "\e07a";
}
.icon-arrow-down:before {
	content: "\e07b";
}
.icon-ban:before {
	content: "\e07c";
}
.icon-bubble:before {
	content: "\e07d";
}
.icon-camcorder:before {
	content: "\e07e";
}
.icon-camera:before {
	content: "\e07f";
}
.icon-check:before {
	content: "\e080";
}
.icon-clock:before {
	content: "\e081";
}
.icon-close:before {
	content: "\e082";
}
.icon-cloud-download:before {
	content: "\e083";
}
.icon-cloud-upload:before {
	content: "\e084";
}
.icon-doc:before {
	content: "\e085";
}
.icon-envelope:before {
	content: "\e086";
}
.icon-eye:before {
	content: "\e087";
}
.icon-flag:before {
	content: "\e088";
}
.icon-folder:before {
	content: "\e089";
}
.icon-heart:before {
	content: "\e08a";
}
.icon-info:before {
	content: "\e08b";
}
.icon-key:before {
	content: "\e08c";
}
.icon-link:before {
	content: "\e08d";
}
.icon-lock:before {
	content: "\e08e";
}
.icon-lock-open:before {
	content: "\e08f";
}
.icon-magnifier:before {
	content: "\e090";
}
.icon-magnifier-add:before {
	content: "\e091";
}
.icon-magnifier-remove:before {
	content: "\e092";
}
.icon-paper-clip:before {
	content: "\e093";
}
.icon-paper-plane:before {
	content: "\e094";
}
.icon-plus:before {
	content: "\e095";
}
.icon-pointer:before {
	content: "\e096";
}
.icon-power:before {
	content: "\e097";
}
.icon-refresh:before {
	content: "\e098";
}
.icon-reload:before {
	content: "\e099";
}
.icon-settings:before {
	content: "\e09a";
}
.icon-star:before {
	content: "\e09b";
}
.icon-symbol-female:before {
	content: "\e09c";
}
.icon-symbol-male:before {
	content: "\e09d";
}
.icon-target:before {
	content: "\e09e";
}
.icon-volume-1:before {
	content: "\e09f";
}
.icon-volume-2:before {
	content: "\e0a0";
}
.icon-volume-off:before {
	content: "\e0a1";
}
.icon-users:before {
	content: "\e001";
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.2
*/

.owl-theme .owl-controls{
display: none!important;
margin-top: 10px;
text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: none;
	width: 6px;
	height: 6px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family:"Calibri",sans-serif; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }




.delivery_address_button {
	text-align: center;
}

@media all and (max-width: 900px) {
	
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset "UTF-8";
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family:"Calibri",sans-serif;
    font-weight: normal;
    font-style: normal;

    src: url('/fonts/slick.eot');
    src: url('/fonts/slick.eot?#iefix') format('embedded-opentype'), url('/fonts/slick.woff') format('woff'), url('/fonts/slick.ttf') format('truetype'), url('/fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family:"Calibri",sans-serif;
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family:"Calibri",sans-serif;
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/*=========================================================
Author       : Bestwebcreator.
Template Name: Shopwise - eCommerce Bootstrap 5 HTML Template
Version      : 1.4
==============================================================*/

/*=============================================================
    CSS INDEX
    =============================
    01.GENERAL STYLE (body, link color, section-title, buttons, overlay, section-padding etc...)
    02.START HEADER STYLE
	03.START BANNER,SLIDER STYLE
	04.START SHOP BANNER STYLE
	05.START CATEGORIES STYLE
	06.START ICON BOX STYLE
	07.START PORTFOLIO STYLE
	08.START TESTIMONIAL STYLE
	09.START BLOG STYLE
	10.START NEWLETTER STYLE
	11.START FOOTER STYLE
	12.START MAP STYLE
	13.START TEAM STYLE
	14.START CLIENT LOGO STYLE
	15.START BREADCRUMB STYLE
	16.START CONTACT STYLE
	17.START DIVIDER STYLE
	18.START ACCORDION STYLE
	19.START 404 ERROR STYLE
	20.START LOGIN REGISTER STYLE
	21.START COMMING SOON STYLE
	22.START DEAL OF THE DAY STYLE
	23.START SHOP DESIGN
	24.START ELEMENT DESIGN
		
*=============================================================*/

/*===================================*
  01.GENERAL STYLE
*===================================*/
html, body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}
body {
	background: #ffffff none repeat scroll 0 0;
    color: #687188;
    font-family:"Calibri",sans-serif;
    font-size: 16px;
}
h1,h2,h3,h4,h5,h6 {
	color: #292b2c;
	font-family:"Calibri",sans-serif;
}
/*p {
	color:#687188;
	line-height: 28px;
	margin-bottom: 25px;
}*/
.product_search_form {
	max-width: 100%;
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -80px;
	z-index: 9;
	right: 0;
	width: 100%;
	padding: 15px 15px;
	background-color: #fff;
	transform: translateX(23%) !important;
}
	.product_search_form.show {
		display: block;
		box-shadow: 12px 16px 42px rgba(0, 0, 0, 1);
	}

.product_search_form {
	max-width: 70%;
}
.table-danger {
	--bs-table-color: #000;
	--bs-table-bg: #af97975c;
	--bs-table-border-color: #c6acae;
	--bs-table-striped-bg: #eccccf;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #dfc2c4;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #e5c7ca;
	--bs-table-hover-color: #000;
	color: var(--bs-table-color);
	border-color: var(--bs-table-border-color);
}
a {
	color: #292b2c;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}
a:hover {
	/*color: #8f9090;*/
	text-decoration: none;
}
a:focus {
	outline: none;
}
img {
	max-width: 100%;
}
button {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all .3s ease-in-out;
}
ul,li,ol {
	margin: 0;
	padding: 0;
}
fieldset {
	border: 0 none;
	margin: 0 auto;
	padding: 0;
}
label {
	color: #6c757d;
}
input:focus,
textarea:focus {
	outline: none;
	box-shadow: none;
}
iframe {
	border: 0;
	display: block;
}
video {
	width: 100%;
}
.section {
	padding: 40px 0;
	position:relative;
}
.section.small_pt,
.footer_top.small_pt {
	padding-top: 30px;
}
.section.small_pb,
.footer_top.small_pb {
	padding-bottom: 50px;
}
.section.pb_20, .pb_20,
.footer_top.pb_20 {
	padding-bottom: 20px;
}
.section.pb_70, .pb_70,
.footer_top.pb_70  {
	padding-bottom: 70px;
}
.section.pb_85, .pb_85,
.footer_top.pb_85  {
	padding-bottom: 85px;
}
div.banner_large_pad {
	padding: 200px 0;
}
.small_padding {
    padding: 30px;
}
.medium_padding {
    padding: 50px;
}
.large_padding {
    padding: 100px;
}
.small_divider {
	height: 30px;
}
.medium_divider {
	height: 50px;
}
.large_divider {
	height: 100px;
}
.padding_eight_all {
	padding: 8%;
}
.padding_eight_lr {
	padding: 0 8%;
}
.padding_eight_tb {
	padding: 8% 0;
}
.list_none li {
	list-style:none;
}
.order_list,
.disc_list {
	padding-left: 15px;
}
.btn:focus,.btn:hover,.btn.active {
	box-shadow: none;
	outline: medium none;
	border-color:inherit;
}
button:focus {
	outline:none;
}
button:focus:not(:focus-visible) {
	outline: 0;
	box-shadow: none;
}
.border-2 {
	border-width: 2px !important;
}
.btn {
	border-width: 1px;
	cursor: pointer;
	line-height: normal;
	padding: 12px 35px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}
.btn.active:focus, .btn:active:focus {
	box-shadow: none !important;
}
.btn-fill-out {
	background-color: #8f9090 !important;
	border: 1px solid #8f9090;
	color: #fff;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
	.btn-fill-out::before,
	.btn-fill-out::after {
		content: "";
		color: Black;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		background-color: #8f9090 !important;
		z-index: -1;
		transition: all 0.3s ease-in-out;
		width: 51%;
	}
.btn-fill-out::after {
	right: 0;
	left: auto;
}
.btn-fill-out:hover:before,
.btn-fill-out:hover:after {
	width: 0;
}
.btn-fill-out:hover {
	color: #fff!important;
}
.btn-fill-line {
	background-color: transparent;
	border: 1px solid #333;
	overflow: hidden;
	position: relative;
	color: #fff !important;
	transition: all 0.8s ease 0s;
	z-index: 1;
}
.btn-fill-line:before, .btn-fill-line:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #333;
	z-index: -1;
	transition: all 0.3s ease-in-out;
	width: 51%;
}
.btn-fill-line::after {
	right: 0;
	left: auto;
}
.btn-fill-line:hover:before,
.btn-fill-line:hover:after {
	width: 0;
}
.btn-fill-line:hover {
	color: #333;
}
.btn-border-fill {
	border: 1px solid #8f9090;
	color: #8f9090;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-border-fill::before,
.btn-border-fill::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #8f9090;
	z-index: -1;
	transition: all 0.3s ease-in-out;
	width: 0;
}
.btn-border-fill::after {
	right: 0;
	left: auto;
}
.btn-border-fill:hover:before,
.btn-border-fill:hover:after {
	width: 50%;
}
.btn-border-fill:hover {
	color: #fff !important;
}
.btn-white {
	background-color: transparent;
	border: 1px solid #fff;
	color: #292b2c !important;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-white::before,
.btn-white::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #fff;
	z-index: -1;
	transition: all 0.5s ease-in-out;
	width: 50%;
}
.btn-white::after {
	right: 0;
	left: auto;
}
.btn-white:hover:before,
.btn-white:hover:after {
	width: 0;
}
.btn-white:hover {
	color: #fff !important;
}
.btn-fill-out-dark {
	background-color: transparent;
	border: 1px solid #333;
	color: #fff !important;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-fill-out-dark:hover {
	color: #333 !important;
}
.btn-fill-out-dark::before {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	z-index: -1;
	content: '';
	background-color: #333;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.btn-line-fill {
	border: 1px solid #333;
	overflow: hidden;
	position: relative;
	color: #333 !important;
	transition: all 0.8s ease 0s;
	z-index: 1;
}
.btn-line-fill:hover {
	color: #fff !important;
}
@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 450px;
    height: 450px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 450px;
    height: 450px;
  }
}
.btn-line-fill:before, .btn-line-fill:after {
	position: absolute;
	top: 50%;
	content: '';
	width: 20px;
	height: 20px;
	background-color: #333;
	border-radius: 50%;
	z-index: -1;
}
.btn-line-fill:before {
	left: -20px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.btn-line-fill:after {
	right: -20px;
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
}
.btn-line-fill:hover:before {
	-webkit-animation: criss-cross-left 0.7s both;
	animation: criss-cross-left 0.7s both;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}
.btn-line-fill:hover:after {
	-webkit-animation: criss-cross-right 0.7s both;
	animation: criss-cross-right 0.7s both;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}
.btn-line-white {
	border: 1px solid #fff;
	color: #fff !important;
}
.btn-line-white:hover {
	color: #333 !important;
}
.btn-line-fill.btn-line-white:before, .btn-line-fill.btn-line-white:after {
	background-color: #fff;
}
.btn-tran-light {
	background-color: rgba(255,255,255,0.2);
	color: #fff;
}
.btn-tran-light:hover {
	background-color: #fff;
}
.btn-radius {
	border-radius: 40px;
}
.btn + .btn {
	margin-left: 10px;
}
.btn i {
	font-size: 16px;
	margin-right: 5px;
	vertical-align: middle;
	line-height: 1;
}
.btn span {
	vertical-align: middle;
}
.btn-group-sm > .btn, .btn-sm {
    padding: 8px 25px;
}
.btn-group-lg > .btn, .btn-lg {
    padding: 16px 45px;
}
.btn-xs {
    padding: 4px 20px;
    font-size: 12px;
}
.btn-md {
    padding: 12px 35px;
    font-size: 16px;
}
.btn.btn-xs i {
    font-size: 10px;
}
.btn.btn-sm i {
    font-size: 12px;
}
.btn.btn-lg i {
    font-size: 22px;
}	
.btn-ripple {
	padding-right: 0 !important;
	border: 0;
}
.btn-link {
	position: relative;
	z-index: 2;
	text-decoration: none;
}
.btn-link:hover {
	text-decoration: none;
}
.btn-link::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
	height: 1px;
	background-color: #8f9090;
	z-index: -1;
}
.text_white * {
	color: #fff;
}
.text_dark * {
	color: #333;
}
.text_default {
	color: #8f9090 !important;
}
.primaryColor {
	color: #a57d40 !important;
}
.bg_primaryColor {
	background-color: #a57d40 !important;
}

.bg_default {
	background-color: #8f9090 !important;
}
.bg_gray {
	background-color: #8f9090 !important;
}
.bg_light_blue {
	background-color: #EBF5FF !important;
}
.bg_light_blue2 {
	background-color: #F4F9FC !important;
}
.bg_blue {
	background-color: #4382FF !important;
}
.bg_linen {
	background-color: #F9F5F0 !important;
}
.bg_redon {
	background-color: #FFF1F1 !important;
}
.bg_dark {
	background-color: #1D2224 !important;
}
.bg_dark2 {
	background-color: #131d24 !important;
}
.bg_dark3 {
	background-color: #233645 !important;
}
.bg_dark4 {
	background-color: #1B1E20 !important;
}
.bg_apricot {
	background-color: #fde0ca !important;
}

.radius_all_5,
.radius_all_5:before,
.radius_all_5:after {
	border-radius: 5px;
}
.radius_all_10,
.radius_all_10:before,
.radius_all_10:after {
	border-radius: 10px;
}
.radius_lb_10,
.radius_lb_10:after,
.radius_lb_10:before {
	border-radius: 10px 0 0 10px;
}
.radius_rb_10,
.radius_rb_10:before,
.radius_rb_10:after  {
	border-radius: 0 10px 10px 0;
}
.radius_lbrb_10,
.radius_lbrb_10:before,
.radius_lbrb_10:after {
	border-radius: 0 0 10px 10px;
}
.radius_ltrt_10,
.radius_ltrt_10:before,
.radius_ltrt_10:after {
	border-radius: 10px 10px 0 0;
}
.scrollup {
	background-color: #171717;
	bottom: 20px;
	color: #ffffff;
	font-size: 24px;
	height: 40px;
	line-height: 40px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 40px;
	z-index: 99;
}
.scrollup:hover {
	background-color: #8f9090;
	color:#fff;
}
.scrollup:focus {
	color:#fff;
}
.scrollup_style1 {
	background-color: #8f9090;
}
.scrollup.scrollup_style1:hover {
	background-color: #333;
}
.background_bg {
	background-position: center center;
	background-size: cover;
}
.bg_size_auto {
    background-size: auto !important;
}
.bg_size_contain {
	background-size: contain !important;
}
.bg_norepeat {
    background-repeat: no-repeat !important;
}
.position_top_center {
    background-position: top center !important;
}
.position_center_bottom {
    background-position: center bottom !important;
}
.position_right_center {
    background-position: right center !important;
}
.position_right_bottom {
    background-position: right bottom !important;
}
.fixed_bg {
    background-attachment: fixed !important;
}
[class*=overlay_bg_] {
	position: relative;
}
[class*=overlay_bg_]::before {
	background-color: #000;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
[class*=overlay_bg_default_]::before {
	background-color: #8f9090;
}
[class*=overlay_bg_blue_]::before {
	background-color: #031B4E;
}
[class*=overlay_bg_white_]::before {
	background-color: #fff;
}
.overlay_bg_90::before,
.overlay_bg_default_90::before,
.overlay_bg_blue_90::before,
.overlay_bg_white_90::before {
	opacity: 0.9;
}
.overlay_bg_80::before,
.overlay_bg_default_80::before,
.overlay_bg_blue_80::before,
.overlay_bg_white_80::before {
	opacity: 0.8;
}
.overlay_bg_70::before,
.overlay_bg_default_70::before,
.overlay_bg_blue_70::before,
.overlay_bg_white_70::before {
	opacity: 0.7;
}
.overlay_bg_60::before,
.overlay_bg_default_60::before,
.overlay_bg_blue_60::before,
.overlay_bg_white_60::before {
	opacity: 0.6;
}
.overlay_bg_50::before,
.overlay_bg_default_50::before,
.overlay_bg_blue_50::before,
.overlay_bg_white_50::before {
	opacity: 0.5;
}
.overlay_bg_40::before,
.overlay_bg_default_40::before,
.overlay_bg_blue_40::before,
.overlay_bg_white_40::before {
	opacity: 0.4;
}
.overlay_bg_30::before,
.overlay_bg_default_30::before,
.overlay_bg_blue_30::before,
.overlay_bg_white_30::before {
	opacity: 0.3;
}
.overlay_bg_20::before,
.overlay_bg_default_20::before,
.overlay_bg_blue_20::before,
.overlay_bg_white_20::before {
	opacity: 0.2;
}
.overlay_bg_10::before,
.overlay_bg_default_10::before,
.overlay_bg_blue_10::before,
.overlay_bg_white_10::before {
	opacity: 0.1;
}
.ripple {
	background-color: #8f9090;
	border-radius: 100%;
	color: #fff;
	position: relative;
	display: inline-block;
	margin-right: 25px;
	line-height: 50px;
	font-size: 22px !important;
	vertical-align: middle;
	margin-left: -15px;
	height: 50px;
	width: 50px;
	text-align: center;
}
.ripple i {
	margin-right: 0;
	margin-left: 3px;
	font-size: 22px;
}
.ripple::before,.ripple::after {
	 -webkit-animation: ripple 1.8s infinite ;
    -moz-animation: ripple 1.8s infinite ;
    -o-animation: ripple 1.8s infinite ;
    -ms-transition:ripple 1.8s infinite ;
	animation: ripple 1.8s infinite ;
	background-color: #8f9090;
	border-radius: 100%;
	margin: -20px;
	bottom: 0px;
	content: "";
	display: block;
	left: 0px;
	opacity: 0;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index:-1;
}
.ripple::before {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	-o-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.ripple::after {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
}
@-webkit-keyframes ripple{
    0%{
        opacity:0;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    50%{
        opacity:0.5;
    }
	100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
@keyframes ripple{
    0%{
        opacity:0;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    50%{
        opacity:0.5;
    }
	100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
.btn-ripple-white .ripple::before,
.btn-ripple-white .ripple::after,
.btn-ripple-white .ripple {
	background-color: #fff;
}
.btn-ripple-white .ripple {
	color: #8f9090;
}

.bg_transparent_20 {
	background-color: rgba(0,0,0,0.2);
}
.box_shadow1 {
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.border-top-tran {
	border-top: 1px solid rgba(255,255,255,0.1);
}
.border_bottom_tran {
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

/*Title Css*/
.heading_s1 {
	margin-bottom: 25px;
}
.heading_s1 h1, .heading_s1 h2, .heading_s1 h3, .heading_s1 h4, .heading_s1 h5, .heading_s1 h6 {
	font-weight: 700;
	margin: 0;
	text-transform: capitalize;
}
.heading_s2 {
	position: relative;
}
.heading_s2 h1, .heading_s2 h2, .heading_s2 h3, .heading_s2 h4, .heading_s2 h5, .heading_s2 h6,
.heading_s3 h1, .heading_s3 h2, .heading_s3 h3, .heading_s3 h4, .heading_s3 h5, .heading_s3 h6 {
	font-weight: 700;
	margin: 0;
	text-transform: capitalize;
}
.heading_s2 h1,
.heading_s2 h2,
.heading_s2 h3,
.heading_s2 h4,
.heading_s2 h5,
.heading_s2 h6 {
	position: relative;
	z-index: 9;
}
.heading_s2 .sub_heading {
	font-size: 100px;
	font-weight: bold;
	padding: 0;
	margin-bottom: -15px;
	z-index: 0;
	position: relative;
	line-height: 100px;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(255,255,255,0.1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(255,255,255,0.1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(255,255,255,0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#1affffff',GradientType=0 );
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.heading_s2.heading_light .sub_heading {
	background: -moz-linear-gradient(top, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.01) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0.1) 0%,rgba(0,0,0,0.01) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.01) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4dffffff', endColorstr='#1a000000',GradientType=0 );
	background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
}
.heading_s3 {
	margin-bottom: 15px;
	padding-bottom: 15px;
	position: relative;
}
.heading_s3::before {
	content: "";
	position: absolute;
	left: 0;
	width: 50px;
	height: 1px;
	background-color: #8f9090;
	bottom: 0;
	right: 0;
}
.heading_light.heading_s3::before {
	background-color: #fff;
}
.heading_s3.text-center::before {
	margin: 0 auto;
}
.heading_s3.text-right::before {
	left: auto;
	right: 0;
}
.heading_s4 {
	margin-bottom: 15px;
}
.heading_s4 h1, .heading_s4 h2, .heading_s4 h3, .heading_s4 h4, .heading_s4 h5, .heading_s4 h6 {
	font-weight: 700;
	margin: 0;
	text-transform: capitalize;
	line-height: normal;
}
.heading_s4 .heading_icon i {
	color: #20E076;
	font-size: 30px;
	position: relative;
	z-index: 3;
	width: 50px;
	display: block;
	height: 50px;
	line-height: 50px;
}
.heading_icon {
	display: inline-block;
	position: relative;
	z-index: 2;
	padding: 0 30px;
	text-align: center;
}
.heading_icon::after {
	content: "";
	position: absolute;
	right: 0;
	width: 30px;
	top: 50%;
	border-top: 1px solid #999;
	z-index: -1;
	border-bottom: 1px solid #999;
	height: 5px;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.heading_icon::before {
	content: "";
	position: absolute;
	left: 0;
	width: 30px;
	top: 50%;
	border-top: 1px solid #999;
	z-index: -1;
	border-bottom: 1px solid #999;
	height: 5px;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.heading_light .heading_icon i {
	color: #fff !important;
}
.heading_uppercase h1,
.heading_uppercase h2,
.heading_uppercase h3,
.heading_uppercase h4,
.heading_uppercase h5,
.heading_uppercase h6 {
	text-transform: uppercase;
}
.heading_light * {
	color: #fff;
}
.sub_heading {
	color: #8f9090;
	margin-bottom: 10px;
	display: block;
}
.highlight_text {
	font-size: 20px;
	color: #333;
	font-weight: 600;
	margin-bottom: 15px;
	display: block;
}
.leads {
	margin-bottom: 30px;
}

/*Loader Css*/
.preloader {
	background-color: #0000007d !important;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}
.lds-ellipsis {
	margin: 0 auto;
	position: relative;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 64px;
	text-align: center;
	z-index: 9999;
}
.lds-ellipsis span {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #000;
	-webkit-animation: ball-pulse-sync .6s 0s infinite ease-in-out;
	animation: ball-pulse-sync .6s 0s infinite ease-in-out;
}
.lds-ellipsis span:nth-child(1) {
	-webkit-animation:ball-pulse-sync .6s -.14s infinite ease-in-out;
	animation:ball-pulse-sync .6s -.14s infinite ease-in-out
}
.lds-ellipsis span:nth-child(2) {
	-webkit-animation:ball-pulse-sync .6s -70ms infinite ease-in-out;
	animation:ball-pulse-sync .6s -70ms infinite ease-in-out
}
@-webkit-keyframes ball-pulse-sync {
	33% {
		-webkit-transform:translateY(10px);
		transform:translateY(10px)
 }
	66% {
		-webkit-transform:translateY(-10px);
		transform:translateY(-10px)
	}
	100% {
		-webkit-transform:translateY(0);
		transform:translateY(0)
	}
}
@keyframes ball-pulse-sync {
	33% {
		-webkit-transform:translateY(10px);
		transform:translateY(10px)
	}
	66% {
		-webkit-transform:translateY(-10px);
		transform:translateY(-10px)
	}
	100% {
		-webkit-transform:translateY(0);
		transform:translateY(0)
	}
}
.custom-container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
/*===================================*
  01.END GENERAL STYLE
*===================================*/

/*===================================*
  02.START HEADER STYLE
*===================================*/
.navbar-brand {
	padding: 10px 0;
	vertical-align: top;
	margin: 0;
	display:inline-block;
}
.dark_skin .logo_light, .dark_skin .logo_default,
.light_skin .logo_default, .light_skin .logo_dark,
.logo_light,.logo_dark {
	display: none;
}
.dark_skin .logo_dark,
.light_skin .logo_light {
	display: block;
}
.light_skin .navbar-nav a,
.light_skin .navbar-toggler,
.light_skin .navbar a.pr_search_trigger {
	color: #ffffff;
}
.middle-header {
	padding: 0px 0;
	margin: -5px 0;
	position: relative;
}
.navbar {
	padding: 0;
}
.header_wrap {
	transition: all 0.5s ease 0s;
}
.header_wrap:not([class*="bg_"]):not([class*="bg-"]) {
	background-color: #fff;
}
.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header {
	background-color: transparent;
}
.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.nav-fixed {
	background-color: #fff;
}
.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.light_skin.nav-fixed,
.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.nav-fixed .light_skin {
	background-color: #1D2224;
}
.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.sticky_dark_skin.nav-fixed,
.light_skin .sidetoggle_icon::after,
.light_skin .sidetoggle_icon::before,
.light_skin .toggle_center_line {
	background-color: #fff;
}
.navbar .navbar-nav li {
	position: relative;
	list-style: none;
	transition: all 0.3s ease 0s;
}
.navbar-nav .dropdown-menu {
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
	min-width: 14rem;
}
.navbar-nav .dropdown-menu {
	background-color: #252A2C;
}
.light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu, 
.light_skin .navbar-nav .dropdown-menu .dropdown-menu {
	background-color: #303537;
}
.dark_skin .navbar-nav .dropdown-menu {
	background-color: #fff;
	box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
}
.dark_skin .mega-menu-col,
.dark_skin .cart_list li {
	border-color: #ddd;
}
.dark_skin .navbar .navbar-nav .dropdown-menu li a.active, 
.dark_skin .navbar .navbar-nav .dropdown-menu li a:hover, 
.dark_skin .navbar .navbar-nav .dropdown-menu > ul > li:hover > a, 
.dark_skin .navbar .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a {
	color: #8f9090;
}
.dark_skin .navbar .navbar-nav li > .dropdown-item, 
.dark_skin .navbar .navbar-nav .dropdown-header,
.dark_skin .cart_quantity,
.dark_skin .cart_total {
	color: #333333;
}
.dropdown-toggle::after, .dropdown-toggler::after {
	border: 0 none;
	content: "\f3d0";
	font-family: "Ionicons";
	margin-left: 5px;
	vertical-align: middle;
}
.dropdown-toggler::after {
	-moz-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.dropdown-menu .dropdown-toggler::after {
	position: absolute;
	right: 15px;
	top: 10px;
}
.navbar .navbar-nav > li > .nav-link {
	font-weight: 500;
	padding: 22px 10px;
	text-transform: capitalize;
	font-size: 14px;
}
.navbar .navbar-nav > li > a.active,
.navbar .navbar-nav > li:hover > a,
.light_skin.transparent_header.nav-fixed .navbar .navbar-nav > li > a.active,
.light_skin.transparent_header.nav-fixed .navbar .navbar-nav > li:hover > a,
.transparent_header.nav-fixed .light_skin .navbar .navbar-nav > li > a.active,
.transparent_header.nav-fixed .light_skin .navbar .navbar-nav > li:hover > a {
	color: #a57d40;
}
.light_skin .navbar .navbar-nav .dropdown-item,
.light_skin .navbar .navbar-nav .dropdown-header {
	color: #fff;
}
.light_skin .item_remove {
	color: #fff !important;
}
.light_skin .mega-menu-col {
	border-right: 1px solid #3f3f3f;
}
.navbar .navbar-nav .dropdown-item {
	padding: 8px 20px 8px 20px;
	color: #333;
	font-size: 14px;
	text-transform: capitalize;
}
.navbar .navbar-nav .dropdown-item.dropdown-toggler {
	padding-right: 30px;
}
.navbar .navbar-nav .dropdown-header {
    color: #333;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
}
.navbar-nav.attr-nav {
	-ms-flex-direction: row;
	flex-direction: row;
}
.navbar-nav.attr-nav li .nav-link {
	padding: 20px 10px;
	position: relative;
	white-space: nowrap;
}
.navbar .attr-nav li.nav-btn {
	margin-left: 10px;
}
.navbar-nav.attr-nav li .nav-link i {
	font-size: 20px;
}
.hover_menu_style2 .navbar .navbar-nav.attr-nav > li > .nav-link {
	margin: 0;
	padding: 20px 10px;
}
.dropdown-item:focus, .dropdown-item:hover,
.dropdown-item.active, .dropdown-item:active {
	background-color: transparent;
}
.navbar .navbar-nav.attr-nav .dropdown-menu li a.active, 
.navbar .navbar-nav.attr-nav .dropdown-menu li a:hover, 
.navbar .navbar-nav.attr-nav .dropdown-menu > ul > li:hover > a {
	background-color: rgba(0,0,0,0);
}
.navbar .navbar-nav .dropdown-menu li a.active, 
.navbar .navbar-nav .dropdown-menu li a:hover, 
.navbar .navbar-nav .dropdown-menu > ul > li:hover > a, 
.navbar .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a, 
.sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-item:hover {
	color: #8f9090;
}
.sticky_dark_skin.nav-fixed .logo_light {
    display: none;
}
.sticky_dark_skin.nav-fixed .logo_dark {
	display: block;
}
.sticky_dark_skin.nav-fixed .navbar-nav li > a,
.sticky_dark_skin.nav-fixed .navbar-toggler,
.sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-item,
.sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-header,
.sticky_dark_skin.nav-fixed .cart_quantity, .sticky_dark_skin.nav-fixed .cart_total {
	color: #333;
}
.sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-item.active {
	color: #8f9090;
}
.sticky_dark_skin.nav-fixed .item_remove {
	color: #333 !important;
}
.sticky_dark_skin.nav-fixed .navbar-nav .dropdown-menu, 
.sticky_dark_skin.nav-fixed .navbar-nav .dropdown-menu .dropdown-menu {
	background-color: #fff;
	box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
}
.sticky_dark_skin.nav-fixed .mega-menu-col,
.sticky_dark_skin.nav-fixed .cart_list li {
	border-color: #ddd;
}
.sticky_dark_skin.nav-fixed.header_wrap[class*="bg_"], .sticky_dark_skin.nav-fixed.header_wrap[class*="bg-"] {
	background-color: #fff !important;
}
.sticky_light_skin.nav-fixed .logo_dark {
    display: none;
}
.sticky_light_skin.nav-fixed .logo_light {
	display: block;
}
.sticky_light_skin.nav-fixed.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header,
.sticky_light_skin.nav-fixed.header_wrap:not([class*="bg_"]):not([class*="bg-"]) {
	background-color: #1D2224;
}
.sticky_light_skin.nav-fixed.header_wrap[class*="bg_"], .sticky_light_skin.nav-fixed.header_wrap[class*="bg-"] {
	background-color: #1D2224 !important;
}
.sticky_light_skin.nav-fixed .navbar-nav a,
.sticky_light_skin.nav-fixed .navbar-toggler,
.sticky_light_skin.nav-fixed .navbar .navbar-nav .dropdown-item,
.sticky_light_skin.nav-fixed .navbar .navbar-nav .dropdown-header,
.sticky_light_skin.nav-fixed .cart_quantity, .sticky_light_skin.nav-fixed .cart_total {
	color: #fff;
}
.sticky_light_skin.nav-fixed .item_remove {
	color: #fff !important;
}
.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu {
	background-color: #252A2C;
	border-color: #252A2C;
}
.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu, 
.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu .dropdown-menu {
	background-color: #303537;
}
.sticky_light_skin.nav-fixed .mega-menu-col {
	border-right: 1px solid #3f3f3f;
}
.sticky_light_skin.nav-fixed .cart_list li {
	border-color: #3f3f3f;
}
.sticky_dark_skin.nav-fixed .btn-tran-light {
	background-color: #333;
	color: #fff !important;
}
.sticky_dark_skin.nav-fixed .btn-tran-light:hover {
	background-color: transparent;
	color: #333 !important;
	border-color: #333;
}
.search_overlay {
	content: "";
	background-color: #000;
	height: 100%;
	top: 0;
	position: fixed;
	text-align: center;
	opacity: 0.5;
	right: 0;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	width: 0;
	z-index: 99;
}
.search_overlay.open {
	left: 0;
	right: auto;
	width: 100%;
}
.search-overlay.open {
    visibility: visible;
    opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
    transform: scale(1);
}
.search_trigger.open i::before {
	content: "\f129";
	font-family: "Ionicons";
}
.search_wrap {
	position: fixed;
	left: 0;
	right: 0;
	max-width: 800px;
	margin: 0 auto;
	padding: 80px 0;
	z-index: 9999;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-ms-flex-align: center;
	align-items: center;
}
.search_wrap.open {
	opacity: 1;
	visibility: visible;
	-webkit-animation: slideInLeft 1s both;
	animation: slideInLeft 1s both;
}
.search_wrap form {
	position: relative;
	width: 100%;
}
.search_wrap .form-control:focus {
	color: #fff;
}
.search_icon {
	font-size: 24px;
	position: absolute;
	right: 5px;
	top: 5px;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	padding: 0;
	color: #fff;
}
.search_wrap .form-control {
	background-color: transparent;
	border-bottom: 2px solid #fff;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
	padding: 10px 0;
	color: #fff;
}
.search_wrap .form-control::-webkit-input-placeholder {
	color:#ffffff;
}
.search_wrap .form-control::-moz-placeholder {
	color:#ffffff;
}
.search_wrap .form-control:-ms-input-placeholder {
	color:#ffffff;
}
.search_wrap .form-control::-ms-input-placeholder {
	color:#ffffff;
}
.search_wrap .form-control::placeholder {
	color:#ffffff;
}
.close-search {
	font-size: 40px;
	color: #fff;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 25%;
}
.navbar .attr-nav li .search_trigger i {
	font-size: 20px;
	vertical-align: middle;
	line-height: normal;
}
.navbar .attr-nav li.cart_wrap .nav-link i {
	font-size: 20px;
}
.navbar .attr-nav li.cart_wrap .nav-link {
	padding: 35px 5px;
}
.navbar .attr-nav li .nav-link.sidetoggle i {
	font-size: 28px;
}
.pr_search_icon {
	float: right;
}
.pr_search_trigger.show i::before {
	content: "\ec2a";
}
.pr_search_trigger {
	padding: 17px 10px;
	font-size: 20px;
}
.header_wrap.fixed-top {
	position: relative;
	padding-right: 0 !important;
	z-index:1 !important;
}
.header_wrap.transparent_header {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1030;
}
.header_wrap.nav-fixed {
	box-shadow:  0 0 5px rgba(0,0,0,0.15);
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	z-index: 1041;
	-webkit-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	-o-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-animation-fill-mode: none;
	-moz-animation-fill-mode: none;
	-o-animation-fill-mode: none;
	animation-fill-mode: none;
}
.nav-fixed.border_bottom_tran {
	border: 0;
}
.header_wrap.fixed-top.transparent_header.nav-fixed.no-sticky {
	position: absolute;
}
.header_wrap.fixed-top.nav-fixed.no-sticky {
	position: relative;
}
.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.nav-fixed.no-sticky {
	background-color: transparent;
	box-shadow: none;
}
.mega-menu {
	display: table;
	padding: 15px 0;
	width: 100%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.mega-menu ul {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.navbar .navbar-nav li.dropdown-mega-menu {
	position: static;
}
.navbar .navbar-nav li.dropdown-mega-menu .dropdown-menu {
	right: 0;
	padding-left: 0;
	padding-right: 0;
}
.mega-menu-col {
	border-right: 1px solid #ddd;
	padding: 0;
}
.mega-menu-col:last-child {
	border-right: 0 !important;
}
.dropdown-menu li a i {
    font-size: 14px;
    width: 20px;
    display: inline-block;
	vertical-align: middle;
}
.navbar .navbar-nav > li > .nav-link.cart_trigger i {
	font-size: 20px;
}
.cart_list li {
	list-style: outside none none;
}
.cart_count, .wishlist_count {
	position: relative;
	top: -3px;
	left: 0;
	font-size: 11px;
	background-color: #a57d40;
	border-radius: 50px;
	height: 16px;
	line-height: 16px;
	/* color: #fff; */
	color: black;
	min-width: 16px;
	text-align: center;
	padding: 0 5px;
	display: inline-block;
	vertical-align: top;
	margin-left: -5px;
	margin-right: -5px;
}
.cart_trigger .amount {
	margin-left: 8px;
	font-weight: 600;
	vertical-align: top;
	margin-right: -10px;
}
.navbar-nav .dropdown-menu.cart_box {
	width: 320px;
	position: absolute !important;
	-webkit-transform: scale(0) !important;
	transform: scale(0) !important;
	-webkit-transform-origin: -webkit-calc(100% - 30px) 0;
	transform-origin: calc(100% - 30px) 0;
	display: block;
	transition: all 0.25s ease-in-out;
	padding: 0;
	top: 100% !important;
	left: auto !important;
	right: 0;
	z-index: 999 !important;
}
.navbar-nav .dropdown-menu.cart_box.show {
	-webkit-transform: scale(1) !important;
	transform: scale(1) !important;
}
.cart_list li {
	border-bottom: 1px solid #3f3f3f;
	padding: 15px;
	width: 100%;
}
.item_remove {
	float: right;
	margin-left: 5px;
	color: #333 !important;
}
.cart_list img {
	border: 1px solid #ddd
	background-color: #ffffff;
	float: left;
	margin-right: 10px;
	max-width: 80px;
}
.cart_list a {
	font-size: 14px;
	vertical-align: top;
	padding: 0 !important;
	text-transform: capitalize;
	font-weight: 600;
}
.cart_quantity {
	color: #ffffff;
	display: table;
	margin-top: 5px;
	font-weight: 500;
}
.cart_total .cart_amount {
	float: right;
	color: #F32B56;
}
.cart_box .cart_list {
	width: 100%;
	padding: 0 !important;
	max-height: 242px;
	overflow-y: auto;
}
.cart_list li {
	display: inline-block;
	width: 100%;
}
.dropdown-menu .cart_list li a i {
	width: auto;
}
.cart_total {
	color: #ffffff;
	margin: 0;
	padding: 10px 15px;
	font-weight: 600;
	text-align: right;
}
.cart_total strong {
	float: left;
	font-weight: 600;
}
.cart_buttons {
	margin: 0;
	padding: 10px 15px 20px;
	text-align: center;
}
.cart_buttons .view-cart, .cart_buttons .checkout {
	padding: 8px 20px !important;
}
.top-header {
	border-bottom: 1px solid #eee;
}
.top-header.light_skin {
	border-color: rgba(255,255,255,0.2);
}
.top-header {
    padding: 10px 0;
	transition: all 0.5s ease-in-out;
}
.top-header[class*="bg_"], .top-header[class*="bg-"] {
	border: 0;
}
.top-header span {
	font-size: 14px;
	vertical-align: middle;
}
.header_wrap .social_icons li {
	padding-bottom: 0;
}
.social_icons, .contact_detail {
	font-size: 0;
}
.contact_detail > li:last-child,
.header_list > li:last-child {
	padding-right: 0;
}
.social_icons li {
	display: inline-block;
	padding: 0px 5px 5px 0;
}
.social_icons li a {
	font-size: 18px;
	color: #687188;
	height: 36px;
	width: 36px;
	line-height: 36px;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
}
.social_icons li a:hover, 
.header_wrap .social_icons li a:hover {
	color: #8f9090;
}
.social_icons.social_small li a {
	height: 25px;
	width: 25px;
	line-height: 26px;
	font-size: 16px;
}
.social_white .social_icons li a, .social_white.social_icons li a,
.header_wrap .social_white .social_icons li a, .header_wrap .social_white.social_icons li a {
	color: #fff;
	border-color: #fff;
}
.social_white .social_icons li a:hover, .social_white.social_icons li a:hover {
	color: #8f9090;
}
.border_social .social_icons li a:hover, .border_social.social_icons li a:hover {
	background-color: #8f9090;
	border-color: #8f9090;
	color: #fff;
}
.border_social.social_white .social_icons li a:hover, .social_white.border_social.social_icons li a:hover {
	color: #fff;
}
.border_social li a {
	border: 1px solid #687188;
	line-height: 35px;
}
.social_icons li:last-child a {
	margin-right: 0px;
}
.radius_social li a {
	border-radius: 5px;
}
.rounded_social li a {
	border-radius: 50px;
}
.social_icons.social_style1 li a {
	background-color: #fff;
	color: #8f9090;
}
.social_icons.social_style1 li a:hover {
	background-color: #8f9090;
	color: #fff !important;
}
.social_style2 li a {
	background-color: #FFF;
	box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.3);
}
.social_style3 li a {
	background-color: #F6F8F9;
	color: #B2B2B7;
	font-size: 20px;
	height: 50px;
	width: 50px;
	line-height: 50px;
}
.social_style4 li a {
	background-color: #fff;
	color: #8f9090;
}
.social_style4 li a:hover {
	background-color: #8f9090;
	color: #fff;
}
.social_style4 li a:hover {
	background-color: #8f9090;
	color: #fff !important;
}
.vertical_social li {
	display: block;
}
.header_wrap .social_icons li a {
	color: #333;
}
.contact_detail i {
	margin-right: 10px;
	vertical-align: middle;
	font-size: 16px;
}
.contact_detail span {
	vertical-align: middle;
}
.contact_detail > li,
.header_list > li {
	color: #333;
	font-size: 14px;
	vertical-align: middle;
	display: inline-block;
	padding: 2px 15px 2px 0;
}
.header_list > li i {
	margin-right: 6px;
	vertical-align: middle;
}
.icon_list > li {
	color: #333;
	vertical-align: middle;
	display: inline-block;
	padding: 2px 10px 2px 0;
}
.icon_list > li > i {
	font-size: 16px;
}
.icon_list > li a {
	color: #bfbfbf;
}
.header_list > li .dropdown-item:hover,
.custome_dropdown .ddChild li:hover,
.contact_detail > li a:hover {
	color: #F32B56;
}
.header_dropdown .dropdown-menu {
	border-radius: 0;
	padding: 0;
	margin-top: 0px;
	border: 0;
	transform: none !important;
	top: 100% !important;
	will-change: auto !important;
}
.header_dropdown .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="top"] {
	right: 0;
	left: auto !important;
}
.header_dropdown .dropdown-item {
	padding: 5px 10px;
	border-bottom: 1px solid #e6e6e6;
	text-transform: capitalize;
}
.contact_detail li:first-child {
	margin-left: 0px;
}
.contact_detail li a span {
	vertical-align: middle;
}
.top-header.light_skin .contact_detail li,
.top-header.light_skin .contact_detail li a,
.top-header.light_skin .widget_text span {
	color: #fff;
}
.top-header.dark_skin .contact_detail li {
	color: #000;
}
.nav-fixed .top-header,
.nav-fixed .middle-header {
	display: none !important;
}
.navbar-toggler {
	float: right;
	margin: 13px 0 0 3px;
	font-size: 28px;
	color: #333;
	transition: all 0.5s ease 0s;
	border-radius: 0;
	height: 35px;
	width: 35px;
	padding: 0;
	line-height: 36px;
	transition: none;
}
.navbar-toggler[aria-expanded="true"] span::before {
    content: "\f129";
    font-size: 16px;
}
.navbar-toggler[aria-expanded="true"] {
	line-height: 32px;
	font-size: 20px;
}
header .attr-nav + .social_icons {
	border-left: 1px solid #333;
	margin-left: 5px;
	padding-left: 5px;
}
header .attr-nav + .social_icons li {
	padding: 0;
}
header.light_skin .attr-nav + .social_icons {
	border-color: #fff;
}
header.light_skin.nav-fixed .attr-nav + .social_icons {
	border-color: #333;
}
header.light_skin.nav-fixed .social_icons li a {
	color: #000;
}
header.light_skin.nav-fixed .social_icons li a:hover {
    color: #0E93D8;
}
.search_box {
	position: relative;
}
.search_box input {
	padding-right: 30px;
}
.search_box button {
	border: 0;
	padding: 0 10px;
	background-color: transparent;
	font-size: 22px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	cursor: pointer;
}
.top-header.light_skin .header_list li a,
.top-header.light_skin .ddArrow::before,
.top-header.light_skin .ddcommon .ddTitle .ddlabel,
.light_skin.top-header span,
.light_skin .icon_list > li a {
	color: #fff;
}
.top-header.light_skin .header_list > li::before {
	background-color: #fff;
}
.top-header .custome_dropdown .ddChild {
	background-color: #fff;
	border: 0 !important;
	min-width: 10rem;
	left: -10px;
}
.top-header.light_skin .header_list li a:hover, 
.top-header.light_skin .contact_detail li a:hover, 
.top-header.light_skin .header_list li a:hover span {
	color: #8f9090;
}
.main_menu_uppercase .navbar-nav > li > .nav-link {
	text-transform: capitalize;
}
.main_menu_weight_100 .navbar .navbar-nav > li > .nav-link {
	font-weight: 100;
}
.main_menu_weight_200 .navbar .navbar-nav > li > .nav-link {
	font-weight: 200;
}
.main_menu_weight_300 .navbar .navbar-nav > li > .nav-link {
	font-weight: 300;
}
.main_menu_weight_400 .navbar .navbar-nav > li > .nav-link {
	font-weight: 400;
}
.main_menu_weight_500 .navbar .navbar-nav > li > .nav-link {
	font-weight: 500;
}
.main_menu_weight_600 .navbar .navbar-nav > li > .nav-link {
	font-weight: 600;
}
.main_menu_weight_700 .navbar .navbar-nav > li > .nav-link {
	font-weight: 700;
}
.main_menu_weight_800 .navbar .navbar-nav > li > .nav-link {
	font-weight: 800;
}
.main_menu_weight_900 .navbar .navbar-nav > li > .nav-link {
	font-weight: 900;
}
.main_menu_size_16 .navbar .navbar-nav > li > .nav-link,
.dd_menu_size_16 .navbar .navbar-nav .dropdown-item,
.dd_menu_size_16 .cart_list a {
	font-size: 16px;
}
.header_banner_wrap {
	padding: 15px;
	height: 100%;
}
.header-banner2 {
	margin: 0 15px;
}
.header-banner,
.header-banner2 {
	display: block;
	position: relative;
	margin-bottom: 15px;
}
.header-banner img {
	width: 100%;
}
.banne_info {
	position: absolute;
	right: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 15px;
}
.banne_info a {
	text-transform: capitalize;
	position: relative;
	padding-bottom: 3px;
	color: #292b2c !important;
}
.banne_info a:hover {
	color: #8f9090 !important;
}
.banne_info a::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	width: 50%;
	background-color: #292B2C;
	transition: all 0.5s ease-in-out;
}
.banne_info a:hover::before {
	width: 100%;
}
.header_banner {
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	padding: 15px;
}
.header_banner_wrap .header_banner {
	-ms-flex-align: center;
	align-items: center;
}
.header_banner_content {
	position: relative;
}
.header_banner_text {
	color: #fff;
}
.header_banner_title {
	font-weight: bold;
	color: #fff;
	margin-bottom: 15px;
}
.banner_img {
	position: relative;
}
.shop_bn_content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	z-index: 1; 
}
.shop_bn_content2 {
	position: absolute;
	bottom: 20px;
	left: 20px;
}
.shop_bn_content * {
	color: #fff;
}
.shop_title {
	font-weight: bold;
	margin-bottom: 10px;
}
.shop_banner {
	position: relative;
	display: table;
	margin: 0 auto;
}
.shop_banner2 {
	margin-bottom: 30px;
	height: 235px;
	overflow: hidden;
}
.el_banner1 {
	background-color: #FDBB99;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.el_img {
	text-align: center;
	width: 100%;
}
.shop_banner2 a {
	position: relative;
	z-index: 9;
	padding: 15px;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-line-pack: justify;
	align-content: space-between;
}
.el_title {
	width: 100%;
}
.el_banner1::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -80px;
	background-color: rgba(255,255,255,0.2);
	width: 250px;
	height: 250px;
	border-radius: 100%;
	z-index: -1;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.el_banner2::before {
	content: "";
	position: absolute;
	right: -50px;
	bottom: -50px;
	background-color: rgba(255,255,255,0.15);
	width: 250px;
	height: 250px;
	border-radius: 100%;
	z-index: -1;
}
.el_banner2 .el_title h6 {
	font-weight: 600;
	font-size: 18px;
}
.el_banner1 .el_title span {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 600;
}
.el_banner1 .el_img img {
	max-width: 180px;
	margin-top: 20px;
	width: 100%;
}
.el_banner2 {
	background-color: #53C0E9;
	text-align: right;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.shop_banner2:last-child {
	margin-bottom: 0;
}
.el_banner2 .el_img img {
	max-width: 165px;
	width: 100%;
}
.sidebar_menu {
	padding: 50px 30px 30px;
	position: fixed;
	top: 0;
	z-index: 99;
	background-color: #fff;
	box-shadow: -3px 0 3px rgba(0,0,0,.04);
	bottom: 0;
	width: 400px;
	overflow-y: auto;
	right: -400px;
	visibility: hidden;
	height: 100vh;
	transition: all 0.5s ease;
	z-index: 99999;
}
.sidebar_menu.active {
	right: 0;
	visibility: visible;
}
.side_panel_close {
	position: absolute;
	right: 30px;
	top: 30px;
}
.side_panel_close i {
	font-size: 24px;
}
.sidebar_menu .widget {
	margin-bottom: 20px;
	display: inline-block;
	width: 100%;
}
.sidebar_left .sidebar_menu,
.sidebar_left_push .sidebar_menu {
	right: auto;
	left: -400px;
}
.sidebar_left .sidebar_menu.active,
.sidebar_left_push .sidebar_menu.active {
	left: 0;
}
.sidebar_left_push.sidetoggle_active {
	overflow-y: hidden;
	left: 400px;
}


.modal.form-modal {
	background: #0000007d !important;
}

/*.form-modal .modal-dialog .modal-content {
	position: relative !important;
	transform: translate(0, 32%) !important;
}*/

.sidebar_left_push {
	overflow-x: hidden;
	position: relative;
	transition: all 0.5s ease;
	left: 0;
}
.sidebar_left_push.sidetoggle_active .header_wrap.nav-fixed {
	left: 400px;
	right: -400px;
}
.sidebar_right_push.sidetoggle_active {
	overflow-y: hidden;
	right: 400px;
}
.sidebar_right_push {
	overflow-x: hidden;
	position: relative;
	transition: all 0.5s ease;
	right: 0;
}
.sidebar_right_push.sidetoggle_active .header_wrap.nav-fixed {
	left: -400px;
	right: 400px;
}
.sidebar_dark {
	background-color: #222;
}
.sidebar_dark .sidemenu_close,
.sidebar_dark p {
	color: #fff;
}
.header-overlay {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	top: 0;
	transition: all 0.5s ease-in-out;
	cursor: url("../images/close.png"), pointer;
}
body.active {
	overflow: hidden;
	padding-right: 17px;
}
.sidetoggle_icon {
	width: 22px;
	display: block;
	margin: 10px 0;
	position: relative;
	transition: all 0.5s ease-in-out;
	height: 1px;
}
.sidetoggle_icon::before {
	content: "";
	background-color: #333;
	display: block;
	height: 1px;
	width: 100%;
	position: absolute;
	top: -7px;
	right: 0;
	transition-duration: .3s,.3s;
	transition-delay: .3s,0s;
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
.sidetoggle_icon::after {
	content: "";
	background-color: #333;
	display: block;
	height: 1px;
	width: 15px;
	position: absolute;
	bottom: -7px;
	right: 0;
	transition-duration: .3s,.3s;
	transition-delay: .3s,0s;
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
.sidetoggle.open .sidetoggle_icon::before {
	top: 0;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition-property: top,transform;
	transition-delay: 0s,.3s;
}
.sidetoggle.open .sidetoggle_icon::after {
	bottom: 0;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	transition-delay: 0s,.3s;
	transition-property: bottom,transform;
	width: 100%;
}
.toggle_center_line {
	background-color: #333;
	height: 1px;
	width: 100%;
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transition: all 0.6s ease-in-out;
}
.sidetoggle.open .toggle_center_line {
	opacity: 0;
}
.sidetoggle_icon:hover:after {
	width: 22px;
}
.widget_text p:last-child {
	margin-bottom: 0;
}
.widget_contact_info .contact_wrap li:last-child {
	margin-bottom: 0;
}
.hover_menu_style1 .navbar-collapse .navbar-nav > li > a {
	position: relative;
	padding: 30px 0px;
	margin: 0 10px;
}
.hover_menu_style1.nav-fixed .navbar .navbar-collapse .navbar-nav > li > .nav-link {
	padding: 20px 0px;
}
.hover_menu_style1 .navbar-collapse .navbar-nav > li > a::before {
	display: block;
	position: absolute;
	bottom: 20px;
	right: 0px;
	height: 2px;
	width: 0;
	z-index: 0;
	content: '';
	background-color: #8f9090;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.hover_menu_style1.nav-fixed .navbar-collapse .navbar-nav > li > a::before {
	bottom: 10px;
}
.hover_menu_style1 .navbar-collapse .navbar-nav > li:hover > a::before,
.hover_menu_style1 .navbar-collapse .navbar-nav > li > a.active::before {
	left: 0;
	right: auto;
	width: 100%;
}
input.text {
	display: none;
}
.dd.ddcommon {
	cursor: pointer;
	padding-right: 10px;
	position: relative;
	width: auto !important;
	outline: none;
}
.ddcommon .ddTitleText img {
	border-radius: 100%;
	height: 16px;
	width: 16px;
	margin-right: 6px;
}
.ddcommon .ddTitleText {
	padding: 5px 7px 5px 10px;
	display: inline-block;
	text-transform: uppercase;
}
.ddcommon .ddlabel {
	text-transform: capitalize;
	font-size: 14px;
	color: #333;
	white-space: nowrap;
	vertical-align: middle;
}
.ddcommon .ddChild li .ddlabel {
	color: #333;
}
.ddArrow::before {
	content: "\f3d0";
	color: #878787;
	font-family: ionicons;
	position: absolute;
	right: 0;
	top: 6px;
}
.ddcommon .ddChild {
	background-color: #fff;
	height: auto !important;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	display: block !important;
	opacity: 0;
	visibility: hidden !important;
	left: 0;
}
.ddcommon.borderRadiusTp .ddChild {
	opacity: 1;
	visibility: visible !important;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}
.ddcommon .ddChild li {
	cursor: pointer;
	line-height: normal;
	list-style: outside none none;
	padding: 5px 10px 5px 10px;
	position: relative;
}
.lng_dropdown .ddcommon .ddChild li {
	padding-left: 33px;
}
.ddcommon .ddChild li img {
	position: absolute;
	left: 10px;
	border-radius: 100%;
	max-width: 16px;
	top: 12px;
}
.nav_block {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.categories_wrap {
	position: relative;
}
.categories_btn i {
	font-size: 24px;
	vertical-align: middle;
	margin-right: 10px;
}
.categories_menu i {
	margin-right: 0;
	float: right;
}
.categories_btn.categories_menu {
	padding: 12px 15px;
	border-radius: 4px;
}
.categories_btn span {
	vertical-align: middle;
	text-transform: capitalize;
	font-weight: 500;
	display:inline;
	color:white;
}
.categories_btn {
	/*background-color: #8f9090;*/
	border: 1px solid #8f9090;
	padding: 20px 15px;
	/* color: #fff; */
	color: black;
	text-align: left;
	background: linear-gradient(to bottom, #ababab, #E0E0E0);
	width: 100%;
}
#navCatContent li {
	list-style: none;
}
#navCatContent {
	background-color: #fff;
	position: absolute;
	padding: 5px 0px 0;
	top: 100%;
	width: 100%;
	left: 0;
	right: 0;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
	z-index: 99;
}
.nav_cat {
	display: block;
	height: auto !important;
}
.nav_cat.collapse:not(.show) {
	display: block;
}
#navCatContent ul {
	width: 100%;
}
#navCatContent li a {
	text-transform: capitalize;
	font-size: 14px;
}
#navCatContent li a i {
	font-size: 22px;
	vertical-align: middle;
	margin-right: 10px;
	line-height: 30px;
}
#navCatContent li a span {
	vertical-align: middle;
}
#navCatContent li a:hover {
	color: #8f9090;
}
#navCatContent li a.dropdown-toggler::after {
	position: absolute;
	right: 15px;
	top: 15px;
}
#navCatContent ul li .dropdown-menu {
	left: 100%;
	top: 0;
	margin: 0;
	border: 0;
	min-width: 800px;
	width: 100%;
	right: 0;
	box-shadow: 10px 16px 49px 0px rgba(38,42,46,0.05);
	border-radius: 0;
	padding: 0;
}
#navCatContent ul li .dropdown-menu .dropdown-header {
	color: #333;
	padding: 10px 15px;
	text-transform: uppercase;
	font-weight: bold;
}
#navCatContent .mega-menu-col {
	border: 0;
}
#navCatContent li {
	position: relative;
}
#navCatContent .dropdown-menu li a.dropdown-toggler::after {
	top: 10px;
}
#navCatContent ul li .dropdown-menu .dropdown-menu {
	min-width: 12rem;
	width: 100%;
}
.more_categories {
	padding: 12px 15px;
	display: block;
	font-size: 16px;
	color: #8f9090;
	border-top: 1px solid #ddd;
	margin-top: 5px;
	position: relative;
	cursor: pointer;
	width: 100%;
}
.more_categories::before {
	content: "\ec36";
	position: absolute;
	right: 15px;
	top: 50%;
	font-family: Linearicons;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.more_categories.show::before {
	content: "\ec37";
}
.product_search_form {
	/*position: relative;
	max-width: 600px;*/
	width: 100%;
}
.product_search_form input {
	height: 50px;
	padding-right: 60px !important;
}
.search_form_btn .form-control {
	padding-right: 120px !important;
}
.search_btn {
	position: absolute;
	right: 1px;
	background-color: #fff;
	border: 0;
	padding: 0px 15px;
	font-size: 20px;
	top: 1px;
	bottom: 1px;
	z-index: 9;
}
.search_btn2 {
	position: absolute;
	right: 5px;
	background-color: #8f9090;
	border: 0;
	border-radius: 100%;
	font-size: 14px;
	top: 5px;
	color: #fff;
	z-index: 9;
	width: 40px;
	height: 40px;
	z-index: 9;
}
.search_btn3 {
	background-color: #8f9090;
	color: #fff;
	border: 0;
	padding: 10px 30px;
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 9;
}
.search_btn3:hover {
	background-color: #333;
}
.search_btn:hover {
	color: #8f9090;
}
.search_btn i {
	vertical-align: middle;
}
.product_search_form select {
	max-width: 160px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.product_search_form.rounded_input select {
	border-radius: 30px 0 0 30px;
	padding: 8px 35px 8px 15px;
}
.product_search_form.rounded_input input {
	border-radius: 0 30px 30px 0 !important;
}
.product_search_form.radius_input {
	border-radius: 4px;
	overflow: hidden;
}
.product_search_form.radius_input select {
	border-radius: 4px 0 0 4px;
}
.product_search_form.radius_input input {
	border-radius: 0 4px 4px 0 !important;
}
.header_offer {
	margin-right: 12px;
	padding-right: 12px;
	border-right: 1px solid #ddd;
}
.contact_phone span, .contact_phone i {
	vertical-align: middle;
}
.contact_phone i {
	font-size: 30px;
	margin-right: 10px;
	color: #8f9090;
}
.contact_phone span {
	color: #16181b;
}
.banner_content_inner {
	padding: 50px;
}
.header_topbar_info {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
}
.download_wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
/*===================================*
  02.END HEADER STYLE
*===================================*/

/*===================================*
  03.START BANNER,SLIDER STYLE
*===================================*/
.banner_section {
	position: relative;
}
.banner_content_wrap {
	position: relative;
	z-index: 1;
}
.banner_half_content {
	padding: 100px 0 80px; 
	z-index: 0;
}
.full_screen.banner_half_content {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}
.banner_section:not(.full_screen), 
.banner_section:not(.full_screen) .carousel-item, 
.banner_section:not(.full_screen) .banner_content_wrap, 
.banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
	height: auto;
}
.full_screen, .full_screen .carousel-item {
	height: 100vh;
	min-height: 45rem;
}
.banner_section.slide_medium, 
.banner_section.slide_medium .carousel-item, 
.banner_section.slide_medium .banner_content_wrap, 
.banner_section.slide_medium .banner_content_wrap .carousel-item,
.banner_section.shop_el_slider, 
.banner_section.shop_el_slider .carousel-item, 
.banner_section.shop_el_slider .banner_content_wrap, 
.banner_section.shop_el_slider .banner_content_wrap .carousel-item {
	height: auto;
}
.banner_section.slide_wrap, 
.banner_section.slide_wrap .carousel-item, 
.banner_section.slide_wrap .banner_content_wrap, 
.banner_section.slide_wrap .banner_content_wrap .carousel-item {
	height: 650px;
}
.banner_section .banner_slide_content {
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
}
.carousel-item img {
	position: relative;
	z-index: -1;
	width: 100%;
}
.carousel-control-next, .carousel-control-prev {
	background-color: rgba(0,0,0,0.5);
	font-size: 18px;
	height: 50px;
	opacity: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50px;
	transition: all 0.3s ease-in-out;
}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
	opacity: 0;
}
.carousel:hover .carousel-control-next, .carousel:hover .carousel-control-prev {
	opacity: 1;
}
.carousel-control-next {
	right: 20px;
}
.carousel-control-prev {
	left: 20px;
}
.carousel_style1 .carousel-control-next, .carousel_style1 .carousel-control-prev {
	border-radius: 100%;
}
.carousel_style2 .carousel-control-next, .carousel_style2 .carousel-control-prev {
	font-size: 16px;
	border-radius: 4px;
	height: 40px;
	width: 40px;
}
.light_arrow .carousel-control-next, .light_arrow .carousel-control-prev {
	background-color:#fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	color: #000;
}
.carousel-control-next:hover, .carousel-control-prev:hover,
.light_arrow .carousel-control-next:hover, .light_arrow .carousel-control-prev:hover{
	background-color: #8f9090;
	color: #fff;
}
.carousel .indicators_style1,
.carousel .indicators_style2,
.carousel .indicators_style3 {
	margin-bottom: 15px;
}
.carousel .indicators_style1 li {
	width: 10px;
	height: 10px;
	background-color: #333;
	border: 0;
	margin: 8px;
	position: relative;
}
.carousel .indicators_style1 li::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	border: 2px solid #333;
	margin: -4px;
}
.carousel .indicators_style2 li {
	background-color: #333;
	border-radius: 100%;
	width: 10px;
	height: 10px;
	background-clip: inherit;
	border: 0;
	margin: 8px;
	position: relative;
}
.carousel .indicators_style2 li::before {
	content: "";
	position: absolute;
	border-radius: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	border: 2px solid #333;
	margin: -4px;
}
.carousel .indicators_style3 li {
	background-color: #333;
	border-radius: 100%;
	width: 10px;
	height: 10px;
	background-clip: inherit;
	border: 0;
	margin: 5px;
	position: relative;
}
.carousel .indicators_style1 li.active,
.carousel .indicators_style2 li.active {
	background-color: #8f9090;
}
.carousel .indicators_style2 li.active:before,
.carousel .indicators_style1 li.active:before {
	border-color: #8f9090;
}
.carousel .indicators_style4 li {
	background-color: #fff;
	border-radius: 100%;
	width: 15px;
	height: 15px;
	background-clip: inherit;
	border: 0;
	margin: 5px;
	position: relative;
}
.banner_content .carousel-item {
	padding: 100px 0;
}
.banner_content h2 {
	font-size: 60px;
	margin-bottom: 20px;
	font-weight: 600;
	text-transform: capitalize;
}
.banner_content p,
.banner_content2 p {
	margin-bottom: 30px;
}
.banner_content2 h2 {
	font-size: 70px;
	margin-bottom: 20px;
	font-weight: 600;
	text-transform: capitalize;
}
.banner_content3 h2 {
	font-size: 40px;
	margin-bottom: 20px;
	font-weight: 600;
	text-transform: capitalize;
}
.banner_shape {
	position: absolute;
	right: 0;
	top: 0;
	width: 70%;
	z-index: -1;
}
.banner_shape img {
	width: 100%;
}
.wave_shape_bottom::before {
	background-image: url("../images/wave_shape.png");
	display: block;
	height: 100%;
	content: "";
	background-position: bottom center;
	position: absolute;
	bottom: 0;
	background-size: contain;
	background-repeat: no-repeat;
	left: 0;
	right: 0;
}
.banner_content1 h2 {
	font-size: 78px;
	margin-bottom: 20px;
	font-weight: 600;
	text-transform: capitalize;
}
.background_shape {
	position: absolute;
	width: 200px;
	height: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	left: 35%;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#1affffff',GradientType=0 );
	-moz-transform: skewX(30deg);
	-webkit-transform: skewX(30deg);
	transform: skewX(30deg);
	transform-origin: left bottom;
	pointer-events: none;
}
.background_shape:before {
	content: "";
	position: absolute;
	width: 200px;
	height: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	left: 100%;
	background: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
	background: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
	background: linear-gradient(to top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#1affffff',GradientType=0 );
}
.banner_center_content {
	margin-top: -70px;
}
.carousel-indicators li::marker{
	content:"";
}
.carousel-indicators.vertical_center_right {
	display: block;
	right: 40px;
	top: 50%;
	margin: 0;
	left: auto;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	bottom: auto;
}
.carousel .indicators_style2.vertical_center_right li {
	margin: 15px 0;
}
.banner_content_border {
	border: 10px solid #8f9090;
	padding: 50px;
	position:relative;
}
.slide_banner_img {
	height: 100%;
	position: relative;
	z-index: -1;
}
.zoom-in {
	-webkit-animation: zoomin 5s;
	-moz-animation: zoomin 5s;
	-o-animation: zoomin 5s;
	animation: zoomin 5s;
}
@keyframes zoomin {
  0% {
    -moz-transform: scale(1.2) rotate(3deg);
	-webkit-transform: scale(1.2) rotate(3deg);
	transform: scale(1.2) rotate(3deg);
  }
  100% {
   -moz-transform: scale(1) rotate(0deg);
	-webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

.header_with_topbar.transparent_header + .banner_section .banner_slide_content {
	margin-top: 45px;
}
.bg_strip {
	background-color: #8f9090;
	color: #fff;
	display: inline-block;
	padding: 8px 0px;
	position: relative;
	white-space: nowrap;
	font-size: 20px;
	height: 40px;
}
.bg_strip::before {
	content: '';
	position: absolute;
	z-index: -1;
	right: 100%;
	top: 0;
	display: block;
	width: 0;
	height: 0px;
	border: 20px solid #8f9090;
	border-bottom-color: #8f9090;
	border-left-color: transparent;
}
.bg_strip::after {
	content: '';
	position: absolute;
	z-index: -1;
	left: 100%;
	top: 0;
	display: block;
	width: 0;
	height: 0px;
	border: 20px solid #8f9090;
	border-bottom-color: #8f9090;
	border-right-color: transparent;
}
/*===================================*
  03.END BANNER,SLIDER STYLE
*===================================*/

/*===================================*
  04.START SHOP BANNER STYLE
*===================================*/
.single_banner {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}
.single_banner_info {
	position: absolute;
	right: 0;
	top: 50%;
	padding: 20px;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50%;
}
.single_bn_title {
	font-weight: bold;
	font-size: 32px;
}
.single_bn_link {
	position: relative;
}
.single_bn_link::before {
	content: "";
	position: absolute;
	bottom: 3px;
	height: 7px;
	background-color: rgba(255,50,77,0.2);
	width: 100%;
	z-index: -1;
}
.single_banner:hover img {
	-moz-transform: scale(1.06);
	-webkit-transform: scale(1.06);
	transform: scale(1.06);
}
.single_banner img {
	transition: all 0.3s ease-in-out;
	width: 100%;
}
.sale_banner {
	padding: 0 10px;
	position: relative;
	margin-bottom: 30px;
}
.sale_banner img {
	width: 100%;
}
.hover_effect1 {
	overflow: hidden;
	position: relative;
	display: block;
}
.hover_effect1::before, .hover_effect1::after {
	background-color: rgba(255, 255, 255, 0.6);
	content: "";
	height: 100%;
	left: 0;
	opacity: 1;
	position: absolute;
	top: 0;
	transition: all 0.9s ease 0s;
	width: 100%;
	z-index: 1;
}
.hover_effect1::before {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    -moz-transform: translate(105%, 0%);
	-webkit-transform: translate(105%, 0%);
	transform: translate(105%, 0%);
}
.hover_effect1::after {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    -moz-transform: translate(-105%, 0%);
	-webkit-transform: translate(-105%, 0%);
	transform: translate(-105%, 0%);
}
.hover_effect1:hover:before, .hover_effect1:hover:after {
	opacity: 0;
	-moz-transform: translate(0px, 0px);
	-webkit-transform: translate(0px, 0px);
	transform: translate(0px, 0px);
}
.fb_info {
	position: absolute;
	top: 15px;
	padding: 15px;
	left: 15px;
	z-index: 9;
}
.fb_info2 {
	position: absolute;
	top: 50%;
	padding: 15px;
	left: 35px;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 9;
	width: 40%;
}
.furniture_banner .single_bn_title1 {
	font-size: 80px;
	margin-bottom: 15px;
}
.sale-banner img {
	width: 100%;
}
/*===================================*
  04.END SHOP BANNER STYLE
*===================================*/

/*===================================*
  05.START CATEGORIES STYLE
*===================================*/
.categories_box {
	text-align: center;
}
.categories_box a {
	display: block;
	padding: 35px 20px;
	background-color: #f7f7f7;
}
.categories_box i {
	font-size: 40px;
	display: block;
}
.categories_box span {
	text-transform: capitalize;
	margin-top: 5px;
	display: block;
}
.cat_overlap {
	position: relative;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	padding: 30px;
	z-index: 1;
	margin-top: -70px;
}
.cat_style1 .categories_box a {
	background-color: transparent;
	padding: 0px;
}
.cat_style1 .categories_box span {
	margin-top: 10px;
}
/*===================================*
  05.END CATEGORIES STYLE
*===================================*/

/*===================================*
  06.START ICON BOX STYLE
*===================================*/
.icon_box {
	margin-bottom: 30px;
}
.icon {
	margin-bottom: 15px;
}
.icon_box_content h1,
.icon_box_content h2,
.icon_box_content h3,
.icon_box_content h4,
.icon_box_content h5,
.icon_box_content h6 {
	text-transform: capitalize;
}
.icon i {
	font-size: 30px;
}
.icon_box p:last-child {
	margin: 0;
}
.icon_box_content .link i {
	vertical-align: middle;
	margin-left: 2px;
}
.box_img {
	margin-bottom: 15px;
}
.icon_box_style1 {
	text-align: center;
	padding: 0 40px;
	position: relative;
}
.icon_box_style1 .icon i {
	font-size: 46px;
	line-height: 1;
}
.icon_box_style1::before {
	content: "";
	position: absolute;
	right: 0;
	top: 15%;
	bottom: 15%;
	width: 1px;
	background-color: #ddd;
}
[class*="col-"]:last-child .icon_box_style1::before {
	content: normal;
}
.icon_box_style2 .icon {
	background-color: #fff;
	max-width: 78px;
	text-align: center;
	float: left;
	height: 78px;
	border-radius: 100%;
	line-height: 78px;
	position: relative;
	margin: 0px 20px 0px 0px;
	box-shadow: 0 2px 0 rgba(0,0,0,0.05);
	-ms-flex: 0 0 78px;
	flex: 0 0 78px;
}
.icon_box_style2:hover .icon {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: swing;
	animation-name: swing;
}
.icon_box_style2 .icon i {
	font-size: 40px;
	color: #8f9090;
	line-height: 78px;
}
.shopping_info {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.shopping_info .icon_box {
	margin-top: 0;
	padding-top: 30px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.icon_box.icon_box_style3 {
	border: 1px solid #ddd;
	padding: 30px;
	margin-left: -1px;
	margin-top: -1px;
	margin-bottom: 0;
}
.icon_box_style3 .icon {
	float: left;
	margin-right: 20px;
	margin-bottom: 0;
}
.icon_box_style3 .icon_box_content {
	overflow: hidden;
}
.icon_box_style3 .icon i {
	font-size: 36px;
	color: #8f9090;
	line-height: normal;
}
.icon_box_style3 .icon_box_content p {
	font-size: 14px;
	line-height: normal;
}
.icon_box_style4 {
	background-color: #fff;
	padding: 20px;
	text-align: center;
}
.icon_box_style4 .icon i {
	background-color: #8f9090;
	color: #fff;
	width: 60px;
	height: 60px;
	display: inline-block;
	line-height: 60px;
	border-radius: 100%;
	font-size: 24px;
}
/*===================================*
  06.END ICON BOX STYLE
*===================================*/

/*===================================*
  07.START PORTFOLIO STYLE
*===================================*/
.carousel_slider li {
	list-style: none;
}
.grid_filter {
	margin-bottom: 30px;
}
.grid_filter li {
    display: inline-block;
}
.grid_filter li a {
	padding: 5px 15px;
    display: block;
	font-size: 16px;
    text-transform: capitalize;
}
.grid_filter li a.current {
	color: #8f9090;
}
.grid_filter.filter_style1 li a {
	padding: 5px 20px;
}
.grid_filter.filter_style1 li a.current {
	color: #fff;
	background-color: #8f9090;
}
.grid_filter.filter_style2 li a {
	border-bottom: 1px solid transparent;
}
.grid_filter.filter_style2 li a.current {
	border-bottom-color: #8f9090;
}
.grid_container > li {
	list-style: none;
}
.gutter_small {
    margin: 0 -7.5px 0px -7.5px;
}
.gutter_small > li {
    padding: 0 7.5px 0px 7.5px;
}
.gutter_medium {
    margin: 0 -15px 0px -15px;
}
.gutter_medium > li {
	padding: 0px 15px 0px 15px;
}
.gutter_medium > li .portfolio_item,
.gutter_medium > li .image_gallery_item {
	margin-bottom: 30px;
}
.gutter_small > li .portfolio_item,
.gutter_small > li .image_gallery_item {
	margin-bottom: 15px;
}
.grid_col2 > li {
	width: 50%;
	float: left;
}
.grid_col3 > li {
	width: 33.33%;
	float: left;
}
.grid_col4 > li {
    width: 25%;
	float: left;
}
.loadmore > li {
	transition: all 0.5s ease-in-out;
}
/*===================================*
  07.END PORTFOLIO STYLE
*===================================*/

/*===================================*
  08.START TESTIMONIAL STYLE
*===================================*/
.author_img img {
	max-width: 100px;
}
.author_name {
	overflow: hidden;
}
.author_name h6 {
	margin-bottom: 5px;
}
.author_name span {
	color: #8f9090;
}
.testimonial_box.box_shadow1 {
	margin: 10px;
}
.testimonial_desc p:last-child {
	margin-bottom: 0;
}
.testimonial_style1 .author_img {
	margin-right: 15px;
}
.testimonial_style1 .author_img img {
	max-width: 60px;
}
.testimonial_style1 .testimonial_desc {
	display: inline-block;
	width: 100%;
	text-align: center;
	margin-bottom: 25px;
}
.testimonial_style1 .testimonial_box {
	position: relative;
	z-index: 1;
}
.author_wrap {
	margin: 0 auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.testimonial_style1 .author_wrap {
	-ms-flex-pack: center;
	justify-content: center;
}
.testimonial_wrap {
	padding: 0 60px;
}
/*===================================*
  08.END TESTIMONIAL STYLE
*===================================*/

/*===================================*
  09.START BLOG STYLE
*===================================*/
.blog_post {
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out;
}
.blog_content {
	padding-top: 15px;
}
.blog_post .blog_img a {
	display: block;
	overflow: hidden;
}
.blog_img {
	position: relative;
	overflow: hidden;
}
.blog_img img {
	width: 100%;
	transition: all 0.5s ease-in-out;
}
.blog_meta {
	display: inline-block;
	margin-bottom: 5px;
	width: 100%;
}
.blog_meta li {
	float: left;
	margin-right: 15px;
}
.blog_meta li:last-child {
	margin-right: 0;
}
.blog_meta li a {
	text-transform: capitalize;
}
.blog_meta li a i {
	margin-right: 5px;
	vertical-align: middle;
	color: #8f9090;
}
.blog_title {
	line-height: 30px;
	margin-bottom: 15px;
	font-weight: 600;
}
h6.blog_title {
	line-height: 24px;
}
.blog_text p {
	margin-bottom: 15px;
}
.blog_text p:last-child {
	margin: 0;
}
.fit-videos {
	background-color: #000000;
}
.blog_style1 {
	border-radius: 10px;
}
.blog_style1 .blog_content {
	padding: 15px 20px;
	border-radius: 10px;
}
.blog_style1 .blog_img + .blog_content {
	border-radius: 0 0 10px 10px;
}
.blog_style1 .blog_img {
	border-radius: 10px 10px 0 0;
}
.blog_style1 .blog_img img {
	border-radius: 10px 10px 0 0;
	width: 100%;
}
.blog_style1:hover .blog_img img,
.blog_style2:hover .blog_img img {
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.blog_style1.radius_all_5 {
	border-radius: 5px;
}
.blog_style1.radius_all_5 .blog_img,
.blog_style1.radius_all_5 .blog_img img {
	border-radius: 5px 5px 0 0;
}
.blog_style1.radius_all_5 .blog_content {
	border-radius: 0 0 5px 5px;
}
.blog_style2 .blog_content {
	padding: 15px;
}
.blog_post.blog_style3 {
	position: relative;
}
.blog_style3 .blog_content {
	position: absolute;
	bottom: 0;
	padding: 15px;
	left: 0;
	right: 0;
	z-index: 2;
}
.blog_style3 .blog_img img {
	transition: all 0.5s ease-in-out;
	width: 100%;
}
.blog_style3 .blog_img::before {
	background: -moz-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0.0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,0.0)), color-stop(100%, rgba(0,0,0,0.7)));
	background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0.0) 100%);
	background: -o-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0.0) 100%);
	background: -ms-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0.0) 100%);
	background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0.0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#000000',GradientType=0 );
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	top: 0;
	z-index: 1;
}
.post_date {
	position: absolute;
	left: 15px;
	top: 15px;
	width: 30px;
	text-align: center;
	background-color: #8f9090;
	min-width: 60px;
	padding: 8px 10px;
	color: #ffffff;
	z-index: 2;
}
.blog_post.blog_style3 .blog_content a:hover {
	color: #8f9090;
}
.post_date strong {
	font-size: 30px;
	line-height: 1;
}
.blog_post.blog_style3 .blog_content a {
	color: #fff;
}
.blog_style4 .blog_title {
	margin-bottom: 10px;
}
.blog_img .owl-dots {
	position: absolute;
	top: 0;
	right: 15px;
}
.blog_thumbs .blog_post {
	display: inline-block;
	width: 100%;
	padding-bottom: 30px;
	border-bottom: 1px solid #ddd;
}
.single_post .blog_content {
	padding-top: 20px;
}
.single_post .blog_title {
	font-size: 30px;
	line-height: normal;
	margin-bottom: 20px;
}
.single_post .blog_meta {
	padding-bottom: 20px;
	margin-bottom: 0;
	width: 100%;
}
.post_author .author_img {
	float: left;
	padding-right: 15px;
}
.author_info {
	overflow: hidden;
}
.author_info .author_name {
	font-weight: 600;
}
.author_info p {
	font-size: 14px;
	line-height: 26px;
}
.author_info p:last-child {
	margin-bottom: 0;
}
.post_author {
	margin-top: 40px;
	margin-bottom: 40px;
}
.post_nav_home {
	display: table;
	margin: 0 auto;
	font-size: 20px;
}
.post_nav .nav_meta {
	text-transform: capitalize;
	display: block;
	font-size: 14px;
	color: #687188;
}
.post_nav {
	text-transform: capitalize;
}
.post_nav_prev {
	padding-left: 30px;
	position: relative;
}
.post_nav_next {
	padding-right: 30px;
	position: relative;
	text-align: right;
}
.post_nav_next i {
	right: 0;
	left: auto;
}
.post_nav i {
	position: absolute;
	left: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.content_title * {
	margin-bottom: 30px;
	font-weight: 600;
}
.comment_user img {
    height: auto;
    max-width: 80px;
}
.comment_content .meta_data h6 {
	font-size: 16px;
}
.comment_info {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
}
.comment_info:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.comment_content p:last-child {
	margin-bottom: 0;
}
.children {
	border-top: 1px solid #ddd;
	margin-top: 20px;
	padding-top: 20px;
	margin-left: 60px;
}
.comment_content {
    padding-left: 20px;
}
.comment-time {
	font-size: 14px;
	line-height: normal;
	margin-bottom: 8px;
	text-transform: uppercase;
	font-style: italic;
}
.comment-reply i {
    margin-right: 5px;
}
.comment-area .comment_list {
    margin-bottom: 40px;
}
.comment-area {
	padding-top: 10px;
}
/*===================================*
  09.END BLOG STYLE
*===================================*/

/*===================================*
  10.START NEWLETTER STYLE
*===================================*/
.newsletter_small {
	padding: 70px 0;
}
.newsletter_form form,
.newsletter_form2 form {
	position: relative;
}
.rounded-input {
	border-radius: 50px;
}
.newsletter_form input,
.newsletter_form input:focus,
.newsletter_form2 input,
.newsletter_form2 input:focus {
	border: 0;
}
.newsletter_form input.form-control-sm {
	height: 50px;
	padding: 10px 140px 10px 20px;
}
.newsletter_form button {
	position: absolute;
	right: 0px;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.newsletter_form2 input,
.newsletter_form2 input:focus {
	height: 59px;
	padding: 10px 140px 10px 20px;
}
.newsletter_form2 button {
	position: absolute;
	right: 5px;
	top: 4px;
}
.newsletter_box {
	padding: 70px 50px;
	background-color: #fff;
	position: relative;
}
.newsletter_box::before {
	content: "";
	position: absolute;
	left: 10px;
	right: 0px;
	bottom: 0px;
	top: 10px;
	box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
	z-index: 0;
}
.newsletter_wrap {
	position: relative;
	margin: 30px 0;
}
.newsletter_wrap::before {
	content: "";
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: -15px;
	top: -15px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	z-index: -1;
	background-color: #fff;
}
.newsletter_wrap::after {
	content: "";
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: -30px;
	top: -30px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	z-index: -2;
	background-color: #fff;
}
.newsletter_form .btn-send {
	background-color: #8f9090;
	color: #fff;
	font-size: 20px;
	right: 5px;
	border: 0;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	padding: 0;
	line-height: 40px;
}
.newsletter_form .btn-send2 {
	background-color: transparent;
	color: #8f9090;
	font-size: 20px;
	right: 5px;
	width: 50px;
	height: 40px;
	line-height: 40px;
	border-left: 1px solid #ddd;
	border-top: 0;
	border-bottom: 0;
	border-right: 0;
	padding: 0 0 0 5px;
}
.input_tran_white input, .input_tran_white input:focus {
	background-color: rgba(255,255,255,0.1);
	color: #fff;
	box-shadow: none;
}
.input_tran_white input::-webkit-input-placeholder {
	color:#ffffff;
	opacity:1
}
.input_tran_white input::-moz-placeholder {
	color:#ffffff;
	opacity:1
}
.input_tran_white input:-ms-input-placeholder {
	color:#ffffff;
	opacity:1
}
.input_tran_white input::-ms-input-placeholder {
	color:#ffffff;
	opacity:1
}
.input_tran_white input::placeholder {
	color:#ffffff;
	opacity:1
}
.newsletter_text {
	position: relative;
	padding-left: 80px;
}
.newsletter_text p:last-child {
	margin: 0;
}
.newsletter_text::before {
	content: "\e999";
	position: absolute;
	left: 0;
	color: #fff;
	font-family: linearicons;
	font-size: 65px;
	line-height: normal;
	opacity: 0.4;
}
/*===================================*
  10.END NEWLETTER STYLE
*===================================*/

/*===================================*
  11.START FOOTER STYLE
*===================================*/
footer {
	overflow: hidden;
}
.footer_dark {
	background-color: #202325;
	position: relative;
}
.footer_top {
	padding: 20px 0 0px;
}
.footer_logo {
	margin-bottom: 20px;
	max-width: 200px;
}
footer p {
	font-size: 14px;
}
footer .widget {
	margin-bottom: 30px;
}
footer .widget_title {
	text-transform: capitalize;
	margin-top: 10px;
	margin-bottom: 56px;
	font-size: 18px;
}
.widget_links li {
	list-style: none;
	padding-bottom: 10px;
}
.widget_links li:last-child {
	padding-bottom: 0;
}
.widget_links li a {
	font-size: 14px;
	color: #687188;
}
.contact_info > li {
	margin-bottom: 15px;
	list-style: none;
}
.contact_info > li:last-child {
	margin-bottom: 0px;
}
.contact_info li i {
	display: inline-block;
	margin-right: 10px;
	margin-top: 4px;
	font-size: 18px;
	vertical-align: top;
}
.contact_info li span {
	float: left;
	margin-right: 10px;
	max-width: 70px;
	width: 100%;
	color: #292b2c;
}
.contact_info span + * {
	overflow: hidden;
	color: #687188;
	margin: 0;
	font-size: 14px;
	line-height: 26px;
}
.contact_info i + * {
	overflow: hidden;
	font-size: 14px;
	color: #687188;
	line-height: 26px;
	margin: 0;
	vertical-align: middle;
	/*max-width: 78%;*/
	display: inline-block;
}
.contact_info_light li i {
	border-color: #fff;
	color: #fff;
}
.contact_info_light li span,
.contact_info_light li a {
	color: #fff;
}
.contact_info_style2 i + * {
	font-size: 18px;
}
.contact_info_style2 li i {
	margin-right: 8px;
	margin-top: 2px;
	font-size: 22px;
	color: #8f9090;
}
.bottom_footer {
	padding: 10px 0;
	position: relative;
}
.footer_link li {
	display: inline-block;
	position: relative;
}
.footer_link li a {
	font-size: 14px;
	padding: 0 5px;
	color: #687188;
}
.footer_dark h1, .footer_dark h2, .footer_dark h3, .footer_dark h4, .footer_dark h5, .footer_dark h6, .footer_dark p, .footer_dark a, .footer_dark .widget_links li a, .footer_dark .footer_link li a, .footer_dark .post_content a {
	color: #fff;
}
	.footer_dark a:hover, .footer_dark .widget_links li a:hover, .widget_links li a:hover, .footer_dark .footer_link li a:hover, .footer_link li a:hover {
		color: #a57d40 !important;
	}
.widget_contact_form {
	background-color: #fff;
	padding: 20px 30px 30px;
	margin-top: -190px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.bottom_footer .social_icons li {
	padding-bottom: 0;
}
.footer_payment li,
.app_list li {
	display: inline-block;
	list-style: none;
}
.footer_call {
	border-radius: 40px;
	padding: 15px;
	text-align: center;
	background-color: rgba(0,0,0,0.2);
}
.footer_call * {
	margin: 0;
	font-size: 22px;
}
.footer_call i {
	margin-right: 10px;
}

/*===================================*
  11.END FOOTER STYLE
*===================================*/

/*===================================*
  12.START MAP STYLE
*===================================*/
.map iframe {
	height: 460px;
	width: 100%;
	border: 0;
	display: block;
}
.contact_map {
	height:400px;
}
.contact_map2 {
	height: 100%;
}
.map1 {
	height: 460px;
}
/*===================================*
  12.END MAP STYLE
*===================================*/

/*===================================*
  13.START TEAM STYLE
*===================================*/
.team_img img {
	width: 100%;
}
.team_box {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}
.team_style1 .team_img {
	position: relative;
}
.team_style1 .team_img::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	transition: all 0.5s ease-in-out;
	opacity: 0;
	z-index: 1;
}
.team_style1:hover .team_img::before {
	opacity: 1;
}
.team_style1 .social_icons + .team_title {
	margin-top: 10px;
}
.team_style1 .team_content {
	padding-top: 15px;
}
.team_title h1,
.team_title h2,
.team_title h3,
.team_title h4,
.team_title h5,
.team_title h6 {
	font-weight: 600;
}
.team_style1 .team_title span {
	display: block;
}
.team_single_img {
	margin-bottom: 30px;
}
.team_single_info .team_title h3 {
	font-weight: 600;
}
.team_single_content {
	padding-left: 30px;
	border-left: 1px solid #eeeeee;
}
.team_single_info .contact_info {
	margin: 20px 0;
}
.team_email {
	font-size: 20px;
	display: inline-block;
}
.team_style1 .social_icons {
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    text-align: center;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
	z-index: 1;
}
.team_style1:hover .social_icons {
    top: 50%;
    opacity: 1;
}
/*===================================*
  13.END TEAM STYLE
*===================================*/

/*===================================*
  14.START CLIENT LOGO STYLE
*===================================*/
.client_logo .cl_logo img {
	opacity: 0.7;
	width: 163px;
	margin: 0 auto;
	transition: all 0.5s ease-in-out;
}
.client_logo .cl_logo:hover img {
	opacity: 1;
}
.client_logo.cl_logo_style1 .cl_logo img {
	opacity: 1;
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.client_logo.cl_logo_style1 .cl_logo:hover img {
	-webkit-filter: grayscale(0);
    filter: grayscale(0);
}
/*===================================*
  14.END CLIENT LOGO STYLE
*===================================*/

/*===================================*
  15.START BREADCRUMB STYLE
*===================================*/
.breadcrumb_section {
	padding: 150px 0;
	width: 100%;
}
.breadcrumb_section.page-title-mini {
	padding: 35px 0;
}
.page-title-mini .page-title h1 {
	font-size: 28px;
}
.page-title-mini .breadcrumb li {
	font-size: 14px;
}
.header_wrap.transparent_header  + .breadcrumb_section {
	padding-top: 200px;
}
.header_wrap.transparent_header.header_with_topbar + .breadcrumb_section {
	padding-top: 250px;
}
.page-title h1 {
	margin: 0;
	text-transform: capitalize;
	font-weight: bold;
	line-height: normal;
}
.page_title_light *, .page_title_light .breadcrumb-item, .page_title_light .breadcrumb-item::before {
	color: #fff;
}
.breadcrumb {
	background-color: transparent;
	margin: 0;
	padding: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: "/";
	font-family: "Ionicons";
	vertical-align: middle;
}
.page-title + .breadcrumb {
	margin-top: 15px;
}
.page-title + span {
	margin-top: 15px;
	display: inline-block;
	width: 100%;
}
.page_title_video {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	overflow: hidden;
}
.page_title_video video {
	object-fit: cover;
	width: 100%;
}
.breadcrumb-item a i {
	font-size: 26px;
	line-height: 1;
	vertical-align: middle;
	margin-right: 5px;
	margin-top: -5px;
	display: inline-block;
}
.page-title-video {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: -3;
}
.page-title-video video {
	object-fit: cover;
	width: 100%;
}
/*===================================*
  15.END BREADCRUMB STYLE
*===================================*/

/*===================================*
  16.START CONTACT STYLE
*===================================*/
.contact_wrap li {
	list-style: none;
}
.contact_wrap li {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	margin-bottom: 25px;
	-ms-flex-align: center;
	align-items: center;
}
.contact_icon {
	margin-right: 20px;
}
.contact_icon i {
	font-size: 34px;
	color: #8f9090;
}
.contact_text span {
	color: #333;
	font-weight: 600;
	display: block;
	margin-bottom: 3px;
}
.contact_text p:last-child {
	margin-bottom: 0;
}
.contact_text a {
	color: #687188;
	line-height: 28px;
}
.contact_text a:hover {
	color: #8f9090;
}
.contact_style1 {
	text-align: center;
	padding: 20px;
	border: 2px solid #eee;
	margin-bottom: 30px;
}
.contact_style1 .contact_text span {
	margin-bottom: 5px;
}
.contact_style1 .contact_icon {
	margin-right: 0;
	margin-bottom: 10px;
}
.contact_style2 {
	text-align: center;
	margin-bottom: 30px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	padding: 40px 20px;
	border-radius: 10px;
}
.contact_style2 .contact_icon {
	background-color: #DFFFED;
	margin: 0 0 5px;
	height: 90px;
	width: 90px;
	text-align: center;
	display: inline-block;
	overflow: hidden;
	border-radius: 100%;
	position: relative;
	z-index: 1;
}
.contact_style2 .contact_icon i {
	line-height: 90px;
}
.contact_style3 {
	text-align: center;
	margin-bottom: 30px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	padding: 40px 20px;
	border-radius: 10px;
}
.contact_style3 .contact_icon {
	border: 1px solid #8f9090;
	margin: 0 0 5px;
	height: 80px;
	width: 80px;
	text-align: center;
	display: inline-block;
	overflow: hidden;
	border-radius: 100%;
	position: relative;
	z-index: 1;
}
.contact_style3 .contact_icon i {
	line-height: 78px;
	transition: all 0.5s ease-in-out;
}
.contact_style3 .contact_icon::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #8f9090;
	z-index: ;
	transition: all 0.5s ease-in-out;
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	border-radius: 100%;
	z-index: -1;
}
.contact_style3:hover .contact_icon::before {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.contact_style3:hover .contact_icon i {
	color: #fff;
}
.contact_box {
	position: relative;
	padding: 50px 0px;
	display: table;
	width: 100%;
}
.contact_form {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	border-radius: 10px;
	max-width: 500px;
	background-color: #fff;
	padding: 30px;
	float: right;
	margin-right: 30px;
	position: relative;
	z-index: 9;
}
.contact_box .map {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
}
.contact_box .map iframe {
	height: 100%;
}
/*===================================*
  16. END CONTACT STYLE
*===================================*/

/*===================================*
  17.START DIVIDER STYLE
*===================================*/
.divider {
	position: relative;
	overflow: hidden;
	height: 4px;
	z-index: 0;
}
.divider.center_icon,
.divider.left_icon,
.divider.right_icon,
.divider.text_divider {
	height: auto;
}
.divider.left_icon i {
	padding-left: 0;
	padding-right: 20px;
}
.divider.center_icon {
	text-align: center;
}
.divider.right_icon i {
	padding-right: 0;
	padding-left: 20px;
}
.divider.right_icon {
	text-align: right;
}
.divider.text_divider {
	text-align: center;
}
.divider.text_divider span {
	background-color: #fff;
	position: relative;
	z-index: 1;
	font-size: 30px;
	padding: 0 30px;
}
.divider.divider_style1 .divider_icon {
	padding-right: 10px;
	background-color: #fff;
	display: inline-block;
	position: relative;
	z-index: 9;
}
.divider.divider_style1.center_icon .divider_icon {
	padding-left: 10px;
}
.divider.divider_style1.right_icon .divider_icon {
	padding-right: 0px;
	padding-left: 10px;
}
.divider.divider_style1 i {
	background-color: #8f9090;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	font-size: 18px;
	display: block;
	padding: 0;
	text-align: center;
	line-height: 40px;
	color: #fff;
}
.divider:before,
.divider:after {
	content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0px;
    height: 0;
    border-top: 1px solid #dddddd;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.divider::before {
	margin-top: -1px;
}
.divider::after {
	margin-top: 1px;
}
.divider i {
	background-color: #fff;
	color: #d9d9d9;
	position: relative;
	z-index: 1;
	font-size: 30px;
	padding: 0 40px;
}
/*===================================*
  17.END DIVIDER STYLE
*===================================*/

/*===================================*
  18.START ACCORDION STYLE
*===================================*/
.accordion .card .card-header {
	background-color: transparent;
	padding: 0px;
	margin: 0;
}
.accordion .card-header a {
	padding: 15px 40px 15px 15px;
	display: block;
	line-height: normal;
}
.accordion .card-body p:last-child {
	margin: 0;
}
.card-body p {
	margin-bottom: 15px;
}
.accordion_style1.accordion .card {
	background-color: transparent;
	margin-bottom: 15px;
	border-radius: 0;
	border: 0;
}
.accordion_style1.accordion .card:last-child {
	margin-bottom: 0;
}
.accordion_style1 .card-body {
	padding: 15px 0 10px 0;
}
.accordion.accordion_style1 .card-header a {
	padding-left: 0;
	padding-top: 0;
	font-weight: 600;
}
.accordion_style1 .card-header a::after {
	content: "\f208";
	font-family: "Ionicons";
	font-size: 16px;
	font-weight: normal;
	position: absolute;
	right: 15px;
	top: 0px;
}
.accordion_style1 .card-header a[aria-expanded="false"]::after {
	content: "\f217";
}
.accordion_style2 .card-header {
	border: 0;
	background-color: transparent;
	padding: 0px;
}
.accordion_style2 .card-header a {
	padding: 15px 40px 15px 15px;
	display: block;
	font-weight: 600;
}
.accordion_style2 .card-body {
	padding: 0 15px 15px 15px;
}
.accordion_style2 .card-header a::after {
	content: "\f126";
	font-family: "Ionicons";
	font-size: 16px;
	font-weight: normal;
	position: absolute;
	right: 15px;
	top: 15px;
}
.accordion_style2 .card-header a.collapsed:after {
    content: "\f123";
}
.accordion_style3.accordion .card {
	background-color: transparent;
	margin-bottom: 15px;
	border-radius: 0;
}
.accordion.accordion_style3 .card-header {
	border: 0;
}
.accordion.accordion_style3 .card-header a {
	font-weight: 600;
}
.accordion.accordion_style3.accordion > .card  {
	border: 1px solid rgba(0,0,0,.125);
}
.accordion.accordion_style3.accordion .card-body {
	border-top: 1px solid rgba(0,0,0,.125);
}
.accordion_style3 .card-header a::after {
	content: "\f208";
	font-family: "Ionicons";
	font-size: 16px;
	font-weight: normal;
	position: absolute;
	right: 15px;
	top: 16px;
}
.accordion_style3 .card-header a[aria-expanded="false"]::after {
	content: "\f217";
}
.accordion_style4 .card-header a {
	padding: 20px 20px 20px 50px;
	font-weight: 600;
	display: inline-block;
	width: 100%;
}
.accordion_style4 .card-header a::after {
	content: "\f126";
	font-family: "Ionicons";
	font-size: 14px;
	font-weight: normal;
	position: absolute;
	left: 20px;
	top: 25px;
}
.accordion_style4 .card-header a.collapsed::after {
	content: "\f123";
}
.accordion_style4 > .card .card-header {
	margin-bottom: -1px;
}
/*===================================*
  18.END ACCORDION STYLE
*===================================*/

/*===================================*
  19.START 404 ERROR STYLE
*===================================*/
.error_wrap {
	width: 100%;
}
.error_txt {
	color: #333;
	font-size: 150px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1;
}
.search_form form {
	position: relative;
}
.search_form form input {
	height: 50px;
	padding: 5px 60px 5px 20px;
}
.search_form form input:focus {
	height: 50px;
}
.search_form .icon_search {
	position: absolute;
	right: 18px;
	top: 50%;
	padding: 0;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border:0;
	border-left: 1px solid #ddd;
	border-radius: 0;
	padding-left: 15px;
}
.search_form .icon_search i {
	font-size: 24px;
	margin-right: 0;
}
.form-note {
	margin-top: 20px;
}
/*===================================*
  19.END 404 ERROR STYLE
*===================================*/

/*===================================*
  20.START LOGIN REGISTER STYLE
*===================================*/
.login_wrap {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.login_register_wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.login_footer {
	margin-bottom: 20px;
	margin-top: 5px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}
.login_footer a {
	color: #687188;
}
.different_login {
	text-align: center;
	position: relative;
	margin: 20px 0;
}
.different_login span {
	background-color: #fff;
	padding: 0 15px;
	position: relative;
	text-transform: uppercase;
}
.different_login::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	right: 0;
	border-top: 1px solid #ddd;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.btn-login li {
	margin: 0px 5px 0;
	display: inline-block;
}
.btn-login li a {
	border-radius: 5px;
	padding: 10px 20px;
	color: #fff;
	display: block;
}
.btn-login li a i {
	margin-right: 10px;
	font-size: 18px;
	margin-left: 0;
}
.btn-facebook {
	background: #3b5998;
	border-color: #3b5998;
}
.btn-facebook:hover {
	color: #fff;
	background: #344e86;
	border-color: #344e86;
}
.btn-google {
	background: #d85040;
	border-color: #d85040;
}
.btn-google:hover {
	color: #fff;
	background: #d33d2b;
	border-color: #d33d2b;
}
/*===================================*
  20.END LOGIN REGISTER STYLE
*===================================*/

/*===================================*
  21.START COMMING SOON STYLE
*===================================*/
.cs_wrap {
	min-height: 100vh;
	position: relative;
	padding: 30px 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.countdown_time {
	display: table;
	width: 100%;
}
.countdown_time .countdown_box {
	float: left;
	width: 25%;
	font-family:"Calibri",sans-serif;
	padding: 0 15px;
}
.countdown-wrap {
	display: inline-block;
	text-align: center;
}
.countdown_time .cd_text {
	display: block;
}
.countdown_box .countdown {
	color: #292b2c;
	font-size: 40px;
}
.countdown_white .countdown_box .countdown, .countdown_white .countdown_box .cd_text {
    color: #fff;
}
.countdown_style1 .countdown_box {
    position: relative;
	text-align: center;
}
.countdown_style1 .countdown_box::before {
    content: ":";
    font-size: 40px;
    font-weight: bold;
    color: #000;
    position: absolute;
    right: -6px;
}
.countdown_style1.countdown_white .countdown_box::before {
	color: #fff;
}
.countdown_style1 .countdown_box:last-child:before {
	content: normal;
}
.cs_logo {
	margin-bottom: 30px;
	display: block;
}
.cs_title {
	line-height: 44px;
	margin-bottom: 20px;
}
.cs_content .countdown_time,
.cs_content .newsletter_form {
	margin-bottom: 30px;
}
.countdown_style2,
.countdown_style3 {
	margin-left: -15px;
	margin-right: -15px;
	width: auto;
	display: -ms-flexbox;
	display: flex;
}
.countdown_style2 .countdown_box .countdown-wrap {
	text-align: center;
	border: 1px solid #ddd;
	width: 100%;
	padding: 10px;
}
.countdown_style3 .countdown-wrap {
	width: 100%;
	background-color: #fff;
	padding: 15px;
	box-shadow: 0 0 5px rgba(0,0,0,0.03);
}
.countdown_time.countdown_style4 {
	margin: 0 -2px;
	width: auto;
	display: block;
}
.countdown_time.countdown_style4 .countdown_box {
	padding: 0 2px;
}
.countdown_style4 .countdown_box .countdown-wrap {
	text-align: center;
	background-color: #f2f2f2;
	width: 100%;
	padding: 10px;
}
/*===================================*
  21.END COMMING SOON STYLE
*===================================*/

/*===================================*
  22.START DEAL OF THE DAY STYLE
*===================================*/
/*.deal_timer .countdown_time .countdown_box:first-child,*/
.deal_timer .countdown_time .countdown_box .cd_text {
	display: none;
}
.deal_timer {
	position: relative;
	padding-left: 15px;
}
.deal_timer::before {
	content: "\e72b";
	position: absolute;
	left: 0;
	top: 3px;
	font-family: 'themify';
	font-size: 20px;
	color: #8f9090;
}
.deal_timer .countdown_style1 .countdown_box::before {
	font-size: 24px;
	font-weight: normal;
	right: -10px;
}
.deal_timer .countdown_box .countdown {
	font-size: 24px;
}
.deal_timer .countdown_box {
	width: auto;
	padding-right: 0;
}
.deal_wrap {
	border: 2px solid #8f9090;
	border-radius: 20px;
	overflow: hidden;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.deal_wrap .product_img {
	max-width: 300px;
	width: 100%;
}
.deal_content {
	width: 100%;
	padding: 30px 30px 30px 0;
}
.deal_content .product_info {
	padding: 0;
}
.deal_wrap .countdown_style1 .countdown_box::before {
	font-size: 24px;
	font-weight: normal;
	right: -10px;
}
.deal_wrap .countdown_box .countdown {
	font-size: 24px;
}
.deal_wrap .countdown_time .cd_text {
	font-size: 13px;
}
.deal_progress {
	padding-top: 5px;
	display: block;
}
.stock-available {
	float: right;
}
.deal_progress .progress {
	margin-top: 5px;
	margin-bottom: 20px;
	border-radius: 20px;
}
.deal_progress .progress-bar {
	background-color: #8f9090;
	text-indent: -99999px;
}
/*===================================*
  22.END DEAL OF THE DAY STYLE
*===================================*/

/*===================================*
  23.START SHOP DESIGN
*===================================*/
.shorting_icon {
	font-size: 18px;
	margin-right: 10px;
	height: 45px;
	width: 45px;
	float: left;
	text-align: center;
	line-height: 45px;
	border: 1px solid #CED4DA;
	border-radius: 4px;
}
.shorting_icon .ti-layout-list-thumb {
	font-size: 24px;
	line-height: 45px;
}
	.shorting_icon.active {
		background-color: #a57d40;
		color: #fff;
		border-color: #a57d40;
	}
.result_count {
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
}
.product_header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
}
.product_header_right {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.products_view {
	display: inline-block;
	vertical-align: middle;
}
.product,
.product_wrap {
	background-color: #fff;
	position: relative;
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out;
	box-shadow: 0 0 7px rgba(0,0,0,0.1);
}
.product_box {
	margin-bottom: 30px;
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
}
.product_box .product_info {
	position: relative;
}
.product_box .add-to-cart {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	background-color: #fff;
	padding: 10px 15px 15px 15px;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	visibility: hidden;
}
.product_box:hover .add-to-cart {
	bottom: 0px;
	opacity: 1;
	visibility: visible;
}
.product_box .pr_action_btn li a {
	border-radius: 100%;
	width: 45px;
	height: 45px;
	line-height: 45px;
}
.product_wrap .pr_action_btn li a {
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	border-radius: 100%;
	width: 35px;
	height: 35px;
	line-height: 35px;
}
.product_wrap .pr_action_btn li a i {
	line-height: 35px;
	font-size: 16px;
}
.carousel_slider .product, 
.carousel_slider .product_wrap {
	margin: 5px;
}
.product_img img {
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.product_img .product_hover_img {
	opacity: 0;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	-moz-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
}
.product:hover .product_img .product_hover_img,
.product_box:hover .product_img .product_hover_img,
.product_wrap:hover .product_img .product_hover_img {
	opacity: 1;
	z-index: 0;
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.pr_desc {
	display: none;
}
.pr_flash {
	background-color: #FF9F00;
	position: absolute;
	left: 10px;
	top: 10px;
	text-transform: uppercase;
	color: #fff;
	padding: 2px 8px;
	font-size: 13px;
	z-index: 1;
}
.product_info {
	padding: 15px;
}
.price {
	color: #8f9090;
	font-weight: 600;
}
.product_price del {
	font-size: 14px;
	margin-right: 5px;
	margin-left: 3px;
}
.product-price del {
	margin-left: 5px;
	color: #919191;
}
.on_sale {
	display: inline-block;
	color: #388e3c;
	font-size: 14px;
}
.product_price {
	margin-bottom: 5px;
}
.product .rating_wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.product.text-center .rating_wrap {
	-ms-flex-pack: center;
	justify-content: center;
}
.rating_num {
    font-size: 14px;
    margin-left: 5px;
    vertical-align: middle;
    display: inline-block;
}
.rating_wrap .rating {
    overflow: hidden;
    position: relative;
    height: 20px;
    font-size: 12px;
    width: 70px;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    vertical-align: middle;
}
.rating::before {
	font-size: 12px;
	content: "\f005\f005\f005\f005\f005";
	top: 0;
	position: absolute;
	left: 0;
	float: left;
	color: #F6BC3E;
}
.product_rate {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
	color: #F6BC3E;
}
.product_rate::before {
	font-size: 12px;
	content: "\f005\f005\f005\f005\f005";
	top: 0;
	position: absolute;
	left: 0;
	font-weight: 900;
}
.product_action_box {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
	right: 0;
	text-align: center;
	padding-top: 0;
	transition: all .5s ease-in-out;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.pr_action_btn {
	display: table;
	margin: 0 auto;
}
.product_img {
	position: relative;
	overflow: hidden;
}
.product_img::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(0,0,0,0.2);
	opacity: 0;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}
.product:hover .product_img:before,
.product_box:hover .product_img:before {
	opacity: 1;
}
.pr_action_btn li {
	position: relative;
	margin: 0px 5px;
	display: inline-block;
}
.product_wrap .pr_action_btn li {
	display: block;
	margin: 10px 0;
}
.product_wrap .pr_action_btn {
	margin: 0 0 0 10px;
}
.product_action_box li {
	-webkit-transform: translate(0, 15px);
	-ms-transform: translate(0, 15px);
	-o-transform: translate(0, 15px);
	transform: translate(0, 15px);
	opacity: 0;
}
.product_action_box li:nth-child(1) {
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}
.product_action_box li:nth-child(2) {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.product_action_box li:nth-child(3) {
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.product_action_box li:nth-child(4) {
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.product:hover .product_action_box li,
.product_box:hover .product_action_box li,
.product_wrap:hover .product_action_box li {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	opacity: 1;
}
.pr_action_btn li a {
	background-color: #fff;
	font-size: 0;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	width: 37px;
	height: 37px;
	padding: 0;
	display: block;
	text-align: center;
}
.pr_action_btn li a i {
	vertical-align: middle;
	line-height: 37px;
	font-size: 18px;
}
.pr_action_btn li a:hover {
	background-color: #8f9090;
	color: #fff;
}
.product .product_title,
.product_box .product_title,
.product_wrap .product_title {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	text-transform: capitalize;
}
.product_color_switch span {
	height: 15px;
	width: 15px;
	display: inline-block;
	vertical-align: middle;
	margin: 5px;
	position: relative;
	cursor: pointer;
	border-radius: 100%;
}
.product .product_color_switch span {
	-webkit-transform: translateY(15px);
	-ms-transform: translateY(15px);
	-o-transform: translateY(15px);
	transform: translateY(15px);
	opacity: 0;
}
.product_color_switch span.active::before {
	content: "";
	border: 2px solid #fff;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: -3px;
	border-radius: 100%;
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.product .pr_switch_wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	padding: 7px 15px;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
}
.product:hover .pr_switch_wrap {
	opacity: 1;
	visibility: visible;
}
.product:hover .product_color_switch span {
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
}
.product_color_switch span:first-child {
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}
.product_color_switch span:nth-child(2) {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.product_color_switch span:nth-child(3) {
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.product_color_switch span:nth-child(4) {
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.product_color_switch span:nth-child(5) {
	-webkit-transition: all 0.6s ease 0s;
	-o-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}
.product_color_switch span:nth-child(6) {
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
}
.product_color_switch span:nth-child(7) {
	-webkit-transition: all 0.75s ease 0s;
	-o-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
}
.product_list .product,
.product_list .product_wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px;
	margin-bottom: 30px;
}
.product_list .product_img {
	max-width: 30%;
	-ms-flex: 0 0 30%;
	flex: 0 0 30%;
	width: 100%;
}
.product_list .product_info {
	padding: 0px 0 0 15px;
	text-align: left;
	max-width: 70%;
	-ms-flex: 0 0 70%;
	flex: 0 0 70%;
}
.product_list .product_img::before {
	content: normal;
}
.mfp-ajax-holder .mfp-content .ajax_quick_view {
	max-width: 980px;
	background-color: #fff;
	margin: 6px auto;
	padding: 30px;
	position: relative;
}
.mfp-close {
	width: 30px;
	height: 30px;
	line-height: normal;
}
.product-image {
    position: relative;
}
.pr_detail .pr_desc {
    display: inline-block;
}
.pr_detail .pr_desc p {
    margin-bottom: 15px;
}
.pr_detail .rating_wrap {
    float: right;
	margin-top: 7px;
}
/*.pr_detail .product_price {
    float: left;
}*/
.pr_detail .price {
    vertical-align: middle;
    font-size: 26px;
}
.cart-product-quantity {
	margin: 7px 10px 7px 0;
	display: table;
}
.quantity {
	display: table;
}
.quantity .minus, .quantity .plus {
	background-color: #eee;
	display: block;
	float: left;
	border-radius: 50px;
	cursor: pointer;
	border: 0;
	padding: 0;
	width: 34px;
	height: 34px;
	line-height: 36px;
	text-align: center;
	font-size: 20px;
	margin: 4px;
}
.quantity .minus {
    padding-left: 4px;
}
.quantity .qty {
	float: left;
	width: 55px;
	height: 36px;
	border: 1px solid #ddd;
	background-color: transparent;
	text-align: center;
	padding: 0;
	margin: 3px;
}
.qty.border-none {
	border: none !important;
}
.cart_extra {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
}

.zoomContainer {
	z-index: 99;
}
.zoom_image .zoomContainer {
	z-index: 1043;
}
.zoom_gallery_image .zoomContainer {
	z-index: 0;
}
.switch_lable {
    float: left;
    margin-right: 10px;
}
.pr_detail .pr_switch_wrap {
    margin-bottom: 10px;
}
/*.product_size_switch span {
	cursor: pointer;
	text-transform: uppercase;
	width: 32px;
	display: inline-block;
	border: 2px solid #ddd;
	text-align: center;
	height: 32px;
	line-height: 28px;
	font-size: 14px;
	margin-bottom: 3px;
}*/
.product_size_switch span {
	cursor: pointer;
	text-transform: uppercase;
	/* width: 32px; */
	display: inline-block;
	border: 2px solid #ddd;
	text-align: center;
	/* height: 32px; */
	line-height: 28px;
	font-size: 14px;
	margin-bottom: 3px;
	padding: 2px 10px;
	margin: 0px 5px;
}
.product_size_switch span.active {
	border-color: #8f9090;
	background-color: #8f9090;
	color: #fff;
}
.list_brand li {
	list-style: none;
	margin-bottom: 10px;
}
.list_brand li:last-child {
	margin-bottom: 0;
}
.list_brand .custome-checkbox .form-check-label {
	color: #292b2c;
}
.cart_btn .add_wishlist, .cart_btn .add_compare {
    font-size: 20px;
    display: inline-block;
    margin-left: 15px;
	vertical-align: middle;
}
.product_gallery_item a {
	border: 1px solid #ddd;
	display: block;
	padding: 5px;
}
.product-meta li {
    list-style: none;
	margin-top: 10px;
}
.slick-vertical .slick-slide {
	border: 0;
}
.slick-list {
	padding: 0 !important;
}
.product_gallery_item.slick-slider .slick-slide {
	margin-right: 5px;
	margin-left: 5px;
}
.product-image .slick-list {
	margin-right: -5px;
	margin-left: -5px;
}
.product_gallery_item a.active {
    border-color: #8f9090;
}
.vertical_gallery #pr_item_gallery {
	width: 15%;
	float: left;
	margin-right: 10px;
}
.vertical_gallery .slick-list {
	margin-right: 0;
	margin-left: 0;
}
.vertical_gallery .product_gallery_item.slick-slider .slick-slide {
	margin-bottom: 12px;
	margin-right: 0;
	margin-left: 0;
}
.vertical_gallery .slick-prev, .vertical_gallery .slick-next {
    height: 40px;
    width: 100%;
}
.vertical_gallery .slick-prev {
	border-radius: 0 0 5px 5px;
	left: 0;
	right: 0;
	top: -40px;
	margin: 0 auto;
	transform: none;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.vertical_gallery .slick-next {
	border-radius: 5px 5px 0 0;
	right: 0;
	left:0;
	bottom: -40px;
	top: auto;
	margin: 0 auto;
	transform: none;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.vertical_gallery .slick-prev:before {
	content: "\f10e"
}
.vertical_gallery .slick-next:before {
	content: "\f105"
}
.vertical_gallery .slick_slider:hover .slick-prev {
	top: 0;
}
.vertical_gallery .slick_slider:hover .slick-next {
	bottom: 0px;
	right: 0;
}
.product_img_box {
    padding: 8px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    overflow: hidden;
	position: relative;
}
.product_img_zoom {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 999;
	font-size: 18px;
	background-color: #FAFAFA;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 100%;
}
.product_share {
    margin-top: 15px;
}
.product_share > span {
	margin-right: 10px;
}
.product_share > span, .product_share .social_icons {
    vertical-align: middle;
    display: inline-block;
}
.product_share .social_icons li {
	padding-bottom: 0;
}
.product_sort_info {
	margin-bottom: 15px;
}
.product_sort_info li {
	font-size: 14px;
	color: #292B2C;
	padding-bottom: 10px;
	list-style: none;
	padding-left: 22px;
	position: relative;
}
.product_sort_info li i {
	color: #8f9090;
	position: absolute;
	font-size: 16px;
	left: 0;
	top: 3px;
}
.filter_price .ui-widget.ui-widget-content {
	border: 0;
	border-radius: 0;
	background-color: #ddd;
	height: 4px;
	margin-bottom: 20px;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.filter_price .ui-slider .ui-slider-range {
	background-color: #8f9090;
	border-radius: 0;
}
.filter_price .ui-slider .ui-slider-handle {
	cursor: pointer;
	background-color: #fff;
	border-radius: 100%;
	border: 0;
	height: 18px;
	top: -8px;
	width: 18px;
	margin: 0;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.price_range {
	color: #292b2c;
}
#flt_price {
	margin-left: 5px;
	font-weight: 600;
}
.shop_container {
	position: relative;
}
.loading_pr {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 9;
}
.shop_container .loading_pr {
	top: -7px;
}
.shop_container .mfp-preloader {
	top: 100px;
}
.shop_container:not(.list) .list_product_action_box,
.shop_container.list .product_action_box {
	display: none;
}
.shop_container.list .product_img::before {
	content: normal;
}
.shop_container.list [class*="col-"] {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
.shop_container.list .grid_item {
	position: static !important;
	transform: none !important;
}
.shop_container.list .product {
	display: inline-block;
	width: 100%;
}
.shop_container.list .product_img {
	float: left;
	width: 100%;
	max-width: 280px;
}
.shop_container.list .product .product_title {
	font-size: 20px;
	margin-bottom: 15px;
}
.shop_container.list .product_info {
	overflow: hidden;
	text-align: left;
	padding: 15px 30px;
}
.shop_container.list .product_price {
	float: left;
}
.shop_container.list .product .rating_wrap {
	display: block;
	float: right;
}
.shop_container.list .pr_desc {
	display: block;
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
/*	min-height: 58px;
	max-height: 84px;*/
}
.shop_container.list .pr_desc p {
	margin-bottom: 0px;
}
.shop_container.list .product_action_box,
.shop_container.list .product .pr_switch_wrap,
.shop_container.list .product .pr_switch_wrap {
	position: static;
}
.shop_container.list  .product .pr_switch_wrap {
	padding: 0;
	opacity: 1;
	visibility: visible;
	margin-bottom: 10px;
}
.shop_container.list .product .product_color_switch span {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}
.shop_container.list .product_action_box li {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    opacity: 1;
    filter: alpha(opacity=1);
}
.shop_container.list .pr_action_btn {
	display: block;
	margin: 0;
}
.shop_container.list .pr_action_btn li {
	margin: 0 5px 0 0;
	display: inline-block;
	vertical-align: middle;
}
.shop_container.list .pr_action_btn li a {
	box-shadow: none;
}
.shop_container.list .pr_action_btn li a:hover {
	background-color: transparent;
	color: #8f9090;
}
.shop_container.list .list_product_action_box .pr_action_btn li.add-to-cart a {
	font-size: 16px;
	width: auto;
	height: auto;
	padding: 4px 8px;
	background-color: #8f9090;
	border: 1px solid #8f9090;
	color: #fff;
	border-radius: 4px;
}
.shop_container.list .pr_action_btn li.add-to-cart a:hover {
	background-color: transparent;
	/*color: #8f9090;*/
}
.shop_container.list .pr_action_btn li.add-to-cart a i {
	line-height: normal;
	margin-right: 5px;
}
#Additional-info table td:first-child {
	width: 25%;
}
.product_tab_title span {
	font-weight: 600;
}
.tab-content.shop_info_tab {
	margin-top: 40px;
}
.comment_list {
	margin-bottom: 20px;
}
.comments li {
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}
.comment_img {
	float: left;
}
.comment_img img {
	border-radius: 100%;
	max-width: 100px;
}
.comment_block {
	padding-left: 120px;
}
.customer_meta {
	margin-bottom: 5px;
}
.comment_block .rating_wrap {
	float: right;
}
.description p:last-child {
	margin: 0;
}
.review_author {
	display: block;
	color: #292b2c;
	font-weight: 500;
}
.comment-date {
	font-style: italic;
}
.star_rating > span {
	color: #F6BC3E;
}
.star_rating span {
	cursor: pointer;
	display: inline-block;
}
.star_rating span i {
	font-size: 20px;
}
.star_rating > span.selected i::before {
	font-weight: 900;
}
.releted_product_slider .item {
	margin: 10px 0px 0px;
}
.releted_product_slider .product {
	margin-bottom: 15px;
}
.mfp-ajax-holder .compare_box {
	width: 90%;
	margin: 6px auto;
	background-color: #fff;
	position: relative;
	padding: 30px;
}
.compare_box .table {
	margin: 0;
	display: block;
}
.compare_box table tr td {
	vertical-align: middle;
	width: 27%;
}
.compare_box table tr td.product_name {
	text-transform: capitalize;
}
.compare_box table tr td.row_title {
	width: 270px;
	text-transform: uppercase;
	font-weight: 600;
}
.row_remove a, .row_remove a:hover {
	color: #FF0000;
}
.in-stock {
	color: #388e3c;
}
.out-stock {
	color: #dc3545;
}
.product_name a {
	font-weight: 600;
}
.row_color .product_color_switch span {
	pointer-events: none;
}
.product-thumbnail img {
	max-width: 100px;
}
.shop_cart_table th, .shop_cart_table td,
.wishlist_table th, .wishlist_table td {
	vertical-align: middle;
	text-align: center;
}
.shop_cart_table th.product-name, .shop_cart_table td.product-name,
.wishlist_table th.product-name, .wishlist_table td.product-name {
	text-align: left;
	text-transform: capitalize;
}
.shop_cart_table .quantity {
	margin: 0 auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
}
.product-remove a i {
	height: 30px;
	width: 30px;
	color: #292b2c;
	display: inline-block;
	line-height: 30px;
	text-align: center;
	border-radius: 100%;
	font-size: 14px;
}
	.product-remove a i:hover {
		background-color: #a57d40;
		color: #fff;
	}
/*.product-remove a i:hover {
	background-color: #F00;
	color: #fff;
}*/
.shop_cart_table td.product-price,
.shop_cart_table td.product-subtotal {
	font-weight: 600;
}
.shop_cart_table .table {
	margin: 0;
}
.toggle_info {
	padding: 20px;
	background-color: #F7F7F7;
}
.toggle_info span {
	padding-left: 25px;
	display: inline-block;
	width: 100%;
	position: relative;
}
.toggle_info i {
	margin-right: 10px;
	color: #8f9090;
	position: absolute;
	left: 0;
	top: 5px;
}
.login_form .panel-body, .coupon_form .panel-body {
	border: 1px solid #ddd;
	padding: 30px;
	margin-top: 30px;
}
label.label_info {
	color: #292b2c !important;
	font-weight: 600;
}
.ship_detail {
	margin-bottom: 10px;
	display: inline-block;
	width: 100%;
}
.product-qty {
	font-weight: 600;
}
.product-subtotal {
	font-weight: 600;
}
.order_review {
	background-color: #f7f8fb;
	padding: 30px;
}
.order_table thead th {
	border-bottom-width: 1px;
	font-weight: 600;
}
.order_table tfoot th {
	font-weight: 600;
}
.order_table tbody td {
	border: 0;
}
.payment_method {
	margin-bottom: 30px;
	display: inline-block;
	width: 100%;
}
.payment_option .custome-radio {
	margin-bottom: 10px;
}
.payment-text {
	display: none;
	margin-top: 5px;
	margin-bottom: 0;
}
.payment_option .custome-radio:first-child .payment-text {
	display: block;
}
.payment_option .custome-radio .form-check-label {
	color: #292b2c;
	font-weight: 600;
}
.wishlist_table .table td {
	border-bottom: 1px solid #dee2e6;
}
.wishlist_table .badge {
	line-height: normal;
	vertical-align: middle;
	padding: 2px 10px;
}
#load-more {
	transition: none;
}
.grid_item_hide .product,
.grid_item_hide .blog_post {
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
}
.grid_item_hide {
	opacity: 0;
	visibility: hidden;
	height: 0;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	transform: scale(0);
}
.loading {
	background: url('../images/loading.gif') center center no-repeat;
	font-size: 0 !important;
	background-color: #000 !important;
	border: 0;
	height: 51px;
	width: 50px;
	padding: 0;
}
.loading::after, .loading::before {
	content: normal;
}
.load_more_wrap {
	margin-top: 20px;
}
.load_more_wrap span {
	display: inline-block;
	margin: 0;
	line-height: 1;
	font-size: 14px;
}
.order_complete i {
	color: #8f9090;
	font-size: 80px;
	margin-bottom: 20px;
}
.empty_icon {
	background-color: #DFFFED;
	display: inline-block;
	height: 100px;
	width: 100px;
	line-height: 100px;
	border-radius: 100%;
	margin-bottom: 25px;
}
.card-body .comments {
	margin-top: 5px;
}
/*===================================*
  23.END SHOP DESIGN
*===================================*/

/*===================================*
  24.START ELEMENT DESIGN
*===================================*/
.form-control {
	color: #000;
	box-shadow: none;
	height: 50px;
	padding: 8px 15px;
}
.form-control:focus,
.custom-file-input:focus ~ .custom-file-label {
	color: #000;
	box-shadow: none;
	height: 50px;
}
textarea.form-control, textarea.form-control:focus {
	height: auto;
	padding: 12px 15px;
}
.form-control-sm,
.form-control-sm:focus,
.custom_select select.form-control-sm,
.custom_select select.form-control-sm:focus {
	height: 45px;
}
select.not_chosen, 
select.first_null option:first-child, 
select.not_chosen:focus, 
select.form-control.not_chosen, 
select.form-control.first_null option:first-child, 
select.not_chosen.form-control:focus {
	color: #6c757d;
}
select option {
	color: #000;
}
.custom_select {
	position: relative;
}
.custom_select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #ced4da;
	padding: 8px 35px 8px 15px;
	width: 100%;
	height: 50px;
}
.custom_select::before {
	content: "\e64b";
	font-family: 'themify';
	position: absolute;
	display: block;
	color: #848484;
	top: 50%;
	right: 15px;
	font-weight: 900;
	pointer-events: none;
	font-size: 12px;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.custom-file-label::after {
	height: 48px;
	border: 0;
	line-height: 40px;
	border-radius: 0;
}
.custom-file-label, .custom-file, .custom-file-input {
	height: 50px;
	line-height: 38px;
}
.rounded_input .form-control,
.rounded_input input {
	border-radius: 30px;
	padding: 10px 20px;
}
.rounded_input .custom_select select {
	padding-right: 40px;
}
.rounded_input .custom_select::before {
	right: 20px;
}
.rounded_input textarea.form-control, .rounded_input textarea.form-control:focus {
	padding: 15px 20px;
}
.input_group {
	position: relative;
}
.input_icon {
	position: absolute;
	right: 20px;
	top: 14px;
	pointer-events: none;
	color: #848484;
}
.rounded_input .input_icon {
	top: 12px;
}
.pagination .page-item a {
	color: #0E93D8;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	padding: 0px;
	z-index: 1;
}
.page-link:focus {
	box-shadow: none;
}
.pagination_style1 li,
.pagination_style2 li,
.pagination_style3 li,
.pagination_style4 li {
	margin-right: 5px;
}
.pagination_style1 .page-item a {
	border: 2px solid #dee2e6;
	border-radius: 0 !important;
	color: #687188;
	margin-left: 0px;
	line-height: 36px;
}
.pagination_style1 .page-item a i {
	line-height: 36px;
}
.pagination_style1 .page-item.disabled .page-link,
.pagination_style3 .page-item.disabled .page-link {
	color: #c6c6c6;
	pointer-events: none;
	background-color: #fff;
	border-color: #f4f4f4;
}
.pagination_style1 .page-item.active .page-link,
.pagination_style1 .page-item .page-link:hover {
	background-color: #a57d40;
	border-color: #a57d40;
	color: #fff;
}
.mfp-preloader {
	color: #ccc;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	background: url("../images/loading.gif") center center no-repeat;
	text-align: center;
	margin-top: -12px;
	margin-left: -12px;
	z-index: 1044;
	text-indent: -9999px;
	background-color: #000;
	padding: 25px;
	border-radius: 5px;
}
.widget_title {
	margin-bottom: 25px;
	text-transform: capitalize;
	font-weight: 600;
	letter-spacing: 0.3px;
}
.widget_categories li,
.widget_archive li {
	padding-bottom: 10px;
	list-style: none;
}
.widget_categories li a,
.widget_archive li a {
	position: relative;
}
/*.widget_categories li a::before,
.widget_archive li a:before {
	content: "\f3d1";
	font-family: "Ionicons";
	height: auto;
	line-height: normal;
	margin-right: 10px;
}*/
.widget_categories li:last-child,
.widget_archive li:last-child {
	padding-bottom: 0;
}
.widget_categories .categories_num,
.widget_archive .archive_num {
	float: right;
	font-size: 14px;
}
.sidebar .widget + .widget {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 30px;
}
.widget_newsletter p {
	font-size: 14px;
	line-height: normal;
}
.widget_newsletter button {
	padding: 5px 12px;
}
.widget_newsletter button i, .widget_newsletter .btn i {
	font-size: 18px;
}
.widget_recent_post li, 
.widget_course li {
	list-style: none;
	margin-bottom: 15px;
	width: 100%;
	display: inline-block;
}
.widget_course li {
	display: table;
}
.post_footer {
	display: inline-block;
	vertical-align: top;
}
.widget_recent_post li:last-child,
.widget_course li:last-child {
	margin-bottom: 0px;
}
footer .widget_recent_post .post_img img {
	border: 0;
}
.post_img,
.widget_course li .course_img {
	float: left;
	margin-right: 10px;
}
.post_img img {
	width: 80px;
}
.post_content,
.widget_course li .course_content {
	overflow: hidden;
}
.post_content h6 {
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 0;
}
.post_content .product_title {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 14px;
	margin-bottom: 5px;
}
.post_content .product_price {
	margin-bottom: 0px;
}
.tags a {
	background-color: #f7f7f7;
	font-size: 14px;
	padding: 8px 15px;
	display: inline-block;
	margin-bottom: 5px;
	color: #333;
}
.tags a:hover {
	background-color: #8f9090;
	color: #fff;
}
.tags_style1 a {
	border-radius: 40px;
}
.widget_tweet_feed li {
	list-style: none;
	position: relative;
	font-size: 14px;
	padding-bottom: 15px;
	padding-left: 25px;
}
.widget_tweet_feed li::before {
	content: "\e74b";
	font-family: 'themify';
	position: absolute;
	left: 0;
	top: 0;
	color: #292B2C;
}
.widget_tweet_feed a {
	color: #8f9090;
}
.widget_tweet_feed li:last-child {
	padding-bottom: 0px;
}
.widget_instafeed {
	margin: -2px;
	display: table;
}
.widget_instafeed li {
	list-style: none;
	float: left;
	width: 33.33%;
	padding: 2px;
	position: relative;
}
.instafeed_col4 li {
	width: 25%;
}
.widget_instafeed li a {
	display: block;
	position: relative;
	overflow: hidden;
}
.widget_instafeed li a::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	opacity: 0;
	background-color: rgba(0,0,0,0.8);
	transition: all 0.5s ease-in-out;
	z-index: 1;
}
.widget_instafeed img {
	width: 100%;
}
.insta_icon {
	color: #fff;
	font-size: 16px;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	opacity: 0;
	text-align: center;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.5s ease-in-out;
	z-index: 2;
}
.widget_instafeed li:hover a::before, .widget_instafeed li:hover .insta_icon {
	opacity: 1;
}
.insta_img {
	position: relative;
}
.instagram_icon {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	-moz-transform: translateY(-50%) rotate(30deg) scale(1.8);
	-webkit-transform: translateY(-50%) rotate(30deg) scale(1.8);
	transform: translateY(-50%) rotate(30deg) scale(1.8);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}
.instagram_icon i {
	color: #fff;
	font-size: 50px;
}
.insta_img::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}
.insta_img:hover:before { 
	opacity: 1;
	visibility: visible;
}
.insta_img:hover .instagram_icon  {
	opacity: 1;
	visibility: visible;
	-moz-transform: translateY(-50%) rotate(0deg) scale(1);
	-webkit-transform: translateY(-50%) rotate(0deg) scale(1);
	transform: translateY(-50%) rotate(0deg) scale(1);
}
.follow_box {
	position: absolute;
	top: 50%;
	z-index: 9;
	text-align: center;
	right: 0;
	left: 0;
	max-width: 400px;
	background-color: rgba(255,255,255,01);
	margin: 0 auto;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 25px;
	border-radius: 80px;
}
.follow_box i {
	position: absolute;
	font-size: 80px;
	left: 0;
	right: 0;
	z-index: -1;
	opacity: 0.1;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.instafeed_box {
	overflow: hidden;
}
.instafeed_box a {
	position: relative;
	display: block;
}
.instafeed_box a::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	opacity: 0;
	background-color: rgba(0,0,0,0.4);
	z-index: 1;
	display: block;
	transition: all 0.5s ease-in-out;
}
.instafeed_box a:hover:before {
	opacity: 1;
}
.instafeed_box a img {
	transition: all 0.5s ease-in-out;
}
.instafeed_box a:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.nav-tabs li.nav-item a {
	background-color: transparent;
	border: 0;
	font-weight: 500;
	text-align: center;
	text-transform: capitalize;
	padding: 5px 20px;
}
.tab-content {
	margin-top: 25px;
}
.tab-style1 .nav-tabs,
.tab-style2 .nav-tabs {
	border-bottom: 0;
}
.tab-style1 .nav-tabs li.nav-item a.active, .tab-style1 .nav-tabs li.nav-item a.active:hover,
.tab-style2 .nav-tabs li.nav-item a.active, .tab-style2 .nav-tabs li.nav-item a.active:hover {
	color: #8f9090;
}
.tab-style2 .nav-tabs li.nav-item a {
	padding: 0px 15px;
}
.tab-style2 .nav-tabs li.nav-item:last-child a {
	padding-right: 0;
}
.tab-style3 .nav-tabs li.nav-item a {
	background-color: transparent;
	display: block;
	padding: .5rem 1rem;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 2px solid rgba(0,0,0,0);
	text-align: center;
	text-transform: uppercase;
}
.tab-style3 .nav-tabs .nav-item a.active {
	border-bottom-color: #8f9090;
	color: #8f9090;
}
.tab_slider > .tab-pane {
	display: block;
	height: 0;
}
.tab_slider .tab-pane.active {
	height: auto;
	display: block;
	-webkit-animation-name: moveUp;
	animation-name: moveUp;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-timing-function: cubic-bezier(.26,.69,.37,.96);
	animation-timing-function: cubic-bezier(.26,.69,.37,.96);
	-webkit-animation-play-state: running;
	animation-play-state: running;
}
@-webkit-keyframes moveUp {
	0% {
		opacity:0;
		-webkit-transform:translateY(25px);
		transform:translateY(25px)
	}
	100% {
		opacity:1;
		-webkit-transform:translateY(0);
		transform:translateY(0)
	}
}
@keyframes moveUp {
	0% {
		opacity:0;
		-webkit-transform:translateY(25px);
		transform:translateY(25px)
	}
	100% {
		opacity:1;
		-webkit-transform:translateY(0);
		transform:translateY(0)
	}
}
.heading_tab_header {
	padding-bottom: 15px;
	border-bottom: 1px solid #ddd;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
    align-items: center;
	width: 100%;
	margin-bottom: 30px;
	position: relative;
}
.heading_tab_header [class*="heading_"] {
	float: left;
}
.view_all i, .view_all span {
	vertical-align: middle;
}
.custome-checkbox .form-check-label {
	position: relative;
	cursor: pointer;
	color: #687188;
	padding: 0;
	vertical-align: middle;
}
.custome-checkbox .form-check-input {
	display: none;
}
.custome-checkbox .form-check-label span {
	vertical-align: middle;
}
.custome-checkbox .form-check-label::before {
	content: "";
	border: 2px solid #ced4da;
	height: 17px;
	width: 17px;
	margin: 0px 8px 0 0;
	display: inline-block;
	vertical-align: middle;
}
.custome-checkbox input[type="checkbox"]:checked + .form-check-label::after {
	opacity: 1;
}
.custome-checkbox input[type="checkbox"] + .form-check-label::after {
	content: "";
	width: 11px;
	position: absolute;
	top: 50%;
	left: 3px;
	opacity: 0;
	height: 6px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-moz-transform: translateY(-65%) rotate(-45deg);
	-webkit-transform: translateY(-65%) rotate(-45deg);
	transform: translateY(-65%) rotate(-45deg);
}
.custome-checkbox input[type="checkbox"]:checked + .form-check-label::before {
	background-color: #8f9090;
	border-color: #8f9090;
}
.custome-radio .form-check-input, .custome-checkbox .form-check-input {
	display: none;
}
.custome-radio .form-check-label::before {
	content: "";
	border: 1px solid #908f8f;
	height: 16px;
	width: 16px;
	display: inline-block;
	border-radius: 100%;
	vertical-align: middle;
	margin-right: 8px;
}
.custome-radio input[type="radio"] + .form-check-label::after {
	content: "";
	background-color: #a57d40;
	height: 10px;
	width: 10px;
	border-radius: 100%;
	position: absolute;
	top: 0.567rem;
	left: 3px;
	opacity: 0;
}

.btn:hover {
	color: #000 !important;
	
}
.custome-radio .form-check-label, .custome-checkbox .form-check-label {
	position: relative;
	cursor: pointer;
}
.custome-radio input[type="radio"]:checked + .form-check-label::before {
	border-color: #8f9090;
}
.custome-radio input[type="radio"]:checked + .form-check-label::after {
	opacity: 1;
}
.custome-checkbox input[disabled] + .form-check-label,
.custome-radio input[disabled] + .form-check-label {
	color: #d0d0d0;
}
.custome-checkbox input[disabled] + .form-check-label::before,
.custome-radio input[disabled] + .form-check-label::before {
	border-color: #e8e8e8;
}
.owl-theme .owl-nav {
	margin-top: 0;
}
body .owl-theme .owl-nav [class*="owl-"] {
	background-color: #fff;
	color: #222;
	font-size: 26px;
	line-height: 50px;
	transition: all 0.3s ease-in-out;
	height: 50px;
	padding: 0;
	margin: 0;
	width: 50px;
	text-align: center;
	display:none;
}
.owl-theme .owl-nav [class*="owl-"] i {
	line-height: normal;
}
.owl-theme .owl-dots {
	font-size: 0;
	margin-top: 15px;
}
	.owl-theme .owl-dots .owl-dot span {
		background-color: transparent;
		border: 1px solid #a57d40;
		cursor: pointer;
		margin: 3px;
		opacity: 1;
		transition: all 0.3s ease-in-out;
	}
	.owl-theme .owl-dots .owl-dot.active span,
	.owl-theme .owl-dots .owl-dot:hover span {
		background-color: #a57d40;
	}
.dot_style1.owl-theme .owl-dots .owl-dot.active span {
	width: 30px;
}
.nav_style1.owl-theme .owl-nav [class*="owl-"],
.nav_style5.owl-theme .owl-nav [class*="owl-"] {
	position: absolute;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkittransform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 0;
	width: 30px;
}
.nav_style1.owl-theme .owl-nav [class*="owl-"]:hover {
	background-color: #fff;
	color: #555;
}
.nav_style1.owl-theme .owl-nav .owl-prev {
	/*left: -50px;*/
	left: -40px;
}
.nav_style1.owl-theme .owl-nav .owl-next {
	right: -50px;
}
.nav_style2.owl-theme .owl-nav [class*="owl-"] {
	background-color: transparent;
	position: absolute;
	bottom: 10px;
}
.nav_style2.owl-theme .owl-nav [class*="owl-"]:hover,
.nav_style3.owl-theme .owl-nav [class*="owl-"]:hover,
.nav_style4.owl-theme .owl-nav [class*="owl-"]:hover {
	color: #555;
}
.nav_style2.owl-theme .owl-nav .owl-prev,
.nav_style5.owl-theme .owl-nav .owl-prev {
	left: 0px;
}
.nav_style2.owl-theme .owl-nav .owl-next,
.nav_style5.owl-theme .owl-nav .owl-next {
	right: 0px;
}
.nav_style3.owl-theme .owl-nav [class*="owl-"],
.nav_style4.owl-theme .owl-nav [class*="owl-"] {
	position: absolute;
	top: -90px;
	border-radius: 0;
	right: 0;
	height: auto;
	width: auto;
	background-color: transparent;
}
.nav_style3.owl-theme .owl-nav .owl-prev {
	right: 40px;
}
.nav_style4.owl-theme .owl-nav .owl-prev {
	left: 0px;
	right: auto;
}
.nav_style4.owl-theme .owl-nav .owl-prev i::before {
	content: "\ec43";
	font-family: 'Linearicons';
}
.nav_style4.owl-theme .owl-nav .owl-next i::before {
	content: "\ec44";
	font-family: 'Linearicons';
}
.nav_style5.owl-theme .owl-nav .owl-prev, .nav_style5.owl-theme .owl-nav .owl-next {
	opacity: 0;
	border-radius: 4px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.nav_style5.owl-theme .owl-nav .owl-prev:hover, .nav_style5.owl-theme .owl-nav .owl-next:hover {
	background-color: #8f9090;
	color: #fff;
}
.nav_style5.owl-theme:hover .owl-nav .owl-prev {
	left: 20px;
	opacity: 1;
}
.nav_style5.owl-theme:hover .owl-nav .owl-next {
	right: 20px;
	opacity: 1;
}
.dot_white.owl-theme .owl-dots .owl-dot span {
	border-color: #fff;
}
.dot_white.owl-theme .owl-dots .owl-dot.active span, .dot_white.owl-theme .owl-dots .owl-dot:hover span {
	background-color: #fff;
}
.slick-prev.slick-disabled::before, .slick-next.slick-disabled::before {
	opacity: 1;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
	background-color: #fff;
}
.slick-prev {
	left: -50px;
	border-radius: 0 5px 5px 0;
	opacity: 0;
}
.slick-next {
	right: -50px;
	border-radius: 5px 0 0 5px;
	opacity: 0;
}
.slick-prev::before {
	content: "\f108";
	font-family: "Ionicons";
	color: #333;
	opacity: 1;
	display: block;
	font-size: 22px;
}
.slick-next::before {
	content: "\f10b";
	font-family: "Ionicons";
	color: #333;
	opacity: 1;
	display: block;
	font-size: 22px;
}
.slick-prev, .slick-next {
	height: 50px;
	width: 40px;
	box-shadow: 0 1px 4px rgba(0,0,0,.1);
	background-color: #fff;
	z-index: 9;
	transition: all 0.5s ease-in-out;
}
.slick-prev:hover, .slick-next:hover {
	background-color: #8f9090;
}
.slick-prev:hover:before, .slick-next:hover:before {
	color: #fff;
}
.slick_slider:hover .slick-prev {
	opacity: 1;
	left: 0;
}
.slick_slider:hover .slick-next {
	opacity: 1;
	right: -2px;
}
.social_icons [class*="sc_"] {
	color: #fff !important;
}
.social_icons [class*="sc_"] i {
    transition: all 0.3s ease-in-out;
    display: block;
	line-height: 36px;
}
.social_icons [class*="sc_"]:hover i {
    -webkit-animation: toLeftFromRight 0.3s forwards;
	-moz-animation: toLeftFromRight 0.3s forwards;
	animation: toLeftFromRight 0.3s forwards;
}
.sc_facebook {
	background-color: #3b5998 !important;
	border-color: #3b5998 !important;
}
.sc_gplus,
.sc_google {
	background-color:#dd4b39 !important;
	border-color: #dd4b39 !important;
}
.sc_linkedin {
	background-color:#0e76a8 !important;
	border-color: #0e76a8 !important;
}
.sc_rss {
	background-color:#ee802f !important;
	border-color: #ee802f !important;
}
.sc_skype {
	background-color:#00aff0 !important;
	border-color: #00aff0 !important;
}
.sc_twitter {
	background-color:#00acee !important;
	border-color: #00acee !important;
}
.sc_youtube {
	background-color:#c4302b !important;
	border-color: #c4302b !important;
}
.sc_vimeo {
	background-color:#86c9ef !important;
	border-color: #86c9ef !important;
}
.sc_yahoo {
	background-color:#720e9e !important;
	border-color: #720e9e !important;
}
.sc_tumblr {
	background-color:#34526f !important;
	border-color: #34526f !important;
}
.sc_instagram {
	background-color:#3f729b !important;
	border-color: #3f729b !important;
}
.sc_pinterest {
	background-color:#c8232c !important;
	border-color: #c8232c !important;
}
.sc_dribbble {
	background-color:#EA4C89 !important;
	border-color: #EA4C89 !important;
}
.sc_reddit {
	background-color: #C6C6C6 !important;
	border-color: #C6C6C6 !important;
}
.sc_github {
	background-color: #171515 !important;
	border-color: #171515 !important;
}
.sc_android {
	background-color: #A4C639 !important;
	border-color: #A4C639 !important;
}
.sc_windows {
	background-color: #00A7E7 !important;
	border-color: #00A7E7 !important;
}
.sc_tux {
	background-color: #C1C1C1 !important;
	border-color: #C1C1C1 !important;
}
.sc_delicious {
    background-color: #205cc0!important;
	border-color: #205cc0 !important;
}
.sc_paypal {
    background-color: #00588b!important;
	border-color: #00588b !important;
}
.sc_blogger {
    background-color: #fc4f08!important;
	border-color: #fc4f08!important;
}
.sc_flickr {
    background-color: #ff0084!important;
	border-color: #ff0084!important;
}
.sc_yahoo {
    background-color: #720e9e!important;
	border-color: #720e9e!important;
}
.sc_dropbox {
    background-color: #3d9ae8!important;
	border-color: #3d9ae8!important;
}
.sc_ebay {
    background-color: #89c507!important;
	border-color: #89c507!important;
}
.sc_wordpress {
    background-color: #1e8cbe!important;
	border-color: #1e8cbe !important;
}
.sc_yelp {
    background-color: #c41200!important;
}

blockquote {
	font-size: 20px;
	line-height: 34px;
}
blockquote p {
	line-height: 34px;
}
blockquote p:last-child {
	margin: 0;
}
.blockquote_style1 {
	padding-left: 20px;
	border-left: 3px solid #ddd;
	margin: 30px 0;
}
.blockquote_style1 p {
	color: #292B2C;
}
.blockquote_style2 {
	background-color: #8f9090;
	padding: 20px;
	position: relative;
}
.blockquote_style2 * {
	color: #fff;
	font-size: 16px;
	line-height: 28px;
}
.blockquote_style2::before {
	content: "\f10e";
	position: absolute;
	left: 20px;
	top: 10px;
	color: #fff;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 70px;
	opacity: 0.3;
	line-height: normal;
}
.blockquote_style3 {
	background-color: #FAFAFA;
	padding: 20px;
	border-left: 2px solid #8f9090;
	margin-bottom: 25px;
	font-size: 16px;
	line-height: 28px;
	margin-top: 5px;
	display: inline-block;
	width: 100%;
	position: relative;
}
.blockquote_style3::before {
	content: "\f10e";
	position: absolute;
	left: 20px;
	top: 10px;
	color: #000;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 70px;
	opacity: 0.05;
	line-height: normal;
	pointer-events: none;
}
.blockquote_style3 p {
	line-height: 28px;
}
.blockquote_style4 {
	text-align: center;
	padding: 20px;
	background-color: #f7f7f7;
	margin-bottom: 20px;
	font-size: 18px;
	position: relative;
}
.blockquote_style4::before {
	content: "\f10d";
	position: absolute;
	left: 50px;
	top: 10px;
	color: #000;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 70px;
	opacity: 0.05;
	line-height: normal;
}
.blockquote_style4,
.blockquote_style4 p {
	color: #222;
}
.blog_post_footer {
	padding-bottom: 30px;
	padding-top: 15px;
}
.mdtp__wrapper {
	bottom: auto;
	top: 50%;
	-moz-transform: translateX(-50%) translateY(-50%) scale(1);
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1);
	transform: translateX(-50%) translateY(-50%) scale(1);
}
.modal {
	padding-right: 0 !important;
}
.page_soon {
	font-size: 10px;
	color: #fff;
	padding: 0px 5px;
	border-radius: 20px;
	background-color: #28A745;
	text-transform: uppercase;
	font-weight: 600;
}
.alert .close {
	font-weight: normal;
	margin-left: 10px;
}	
.alert_style1 {
	border-radius: 0;
	border-left: 3px solid;
	padding: 20px;
	position: relative;
	border-top: 0;
	border-bottom: 0;
	border-right: 0;
}
.alert > i {
	margin-right: 5px;
	font-size: 18px;
	vertical-align: middle;
}
.alert_style2 {
	border-radius: 20px;
	padding: 20px 20px;
	background-color: #fff;
	border-left: 3px solid;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	border-top: 0;
	border-bottom: 0;
	border-right: 3px solid;;
}
.button_group .btn {
	margin-bottom: 20px;
}
.trading_img {
	margin-top: -40px;
}
.term_conditions h6 {
	margin-bottom: 15px;
}
.term_conditions ul,
.term_conditions ol {
	padding-left: 15px;
}
.term_conditions p,
.term_conditions li {
	font-size: 14px;
	margin-bottom: 15px;
	line-height: 28px;
}
.subscribe_popup .modal-body {
	padding: 0;
}
.subscribe_popup .modal-content {
	border: 0;
	border-radius: 0;
}
.popup_content {
	padding: 50px;
	text-align: center;
}
.subscribe_popup .close {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 9;
	opacity: 1;
	text-shadow: none;
	width: 40px;
	height: 40px;
	padding: 0;
	box-shadow: none;
	background-color: transparent;
	border: 0;
}
.subscribe_popup .close i {
	font-size: 40px;
}
.modal {
	z-index: 99999;
}
.modal-backdrop {
	z-index: 9999;
}
.dashboard_menu {
	box-shadow: 0 0px 4px 0 #e9e9e9;
}
.dashboard_menu .nav-tabs li.nav-item a {
	text-align: left;
	padding: 12px 20px;
	border-radius: 0;
	border-bottom: 1px solid #efefef;
	color: #2b2f4c;
}
	.dashboard_menu .nav-tabs li.nav-item a.active {
		background-color: #a57d40 !important;
		color: #fff;
	}
.dashboard_menu .nav-tabs li.nav-item a i {
	margin-right: 8px;
	vertical-align: middle;
}
.dashboard_content {
	margin: 0;
}
.dashboard_content .card-header {
	background-color: transparent;
	border-color: #f0f0f0;
}
.dashboard_content .card-header * {
	margin: 0;
}
.dashboard_content .card {
	border-radius: 0;
	border: 0;
	box-shadow: 0 0px 4px 0 #e9e9e9;
}
.dashboard_content .card-body p:last-child {
	margin: 0;
}
.dashboard_content .table {
	margin: 0;
}
.dashboard_content .table thead th {
	border: 0;
	padding-top: 0;
	font-weight: 600;
}
.dashboard_content .table tbody tr:last-child td {
	padding-bottom: 0;
}
.dashboard_content .table tbody tr td {
	vertical-align: middle;
	white-space: nowrap;
}
.dashboard_content label {
	color: #333;
}
.dashboard_content label .required {
	color: #ff0000;
}
/*===================================*
  24.END ELEMENT DESIGN
*===================================*/

/*Migrating to v5*/
.btn-block {
    display: block;
    width: 100%;
}
.nav-link {
    color: #292b2c;
}
	 .nav-link:hover {
		color: #a57d40 !important;
	}
    .nav-link.active:hover {
        color: #fff!important;
    }
.text-color-black {
    color: #000 !important;
}
.input-group-append {
	margin-left: -1px;
}
.input-group-append, .input-group-prepend {
    display: -ms-flexbox;
    display: flex;
}
.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown-menu {
	left:0;
}
.input-group > .input-group-append > .btn {
	height: 100%;
}
/* -------------------------------------------------
  (min-width: 990px)
---------------------------------------------------*/
@media only screen and (min-width: 990px) {
	.delivery_address_button {
		display: none;
	}

}
	/* -------------------------------------------------
  (min-width: 1680px)
---------------------------------------------------*/
	@media only screen and (min-width: 1680px) {
		.custom-container {
			max-width: 1650px;
			padding-right: 15px;
			padding-left: 15px;
			margin-right: auto;
			margin-left: auto;
		}
	}

	@media only screen and (min-width: 1400px) {
		.container {
			max-width: 1140px;
		}
	}

	/* -------------------------------------------------
  (max-width: 1250px)
---------------------------------------------------*/
	@media only screen and (max-width: 1250px) {
		.nav_style1.owl-theme .owl-nav .owl-next {
			right: -40px;
		}

		.nav_style1.owl-theme .owl-nav .owl-prev {
			left: -40px;
		}
	}

	/* -------------------------------------------------
  (min-width: 991px) and (max-width: 1199px)
---------------------------------------------------*/
	@media only screen and (min-width: 991px) and (max-width: 1199px) {
		.nav_cat > ul > li > a, .nav_cat > ul > li > ul > li > a {
			font-size: 14px;
			padding: 5px 10px;
		}

		.countdown_style4 .countdown_box .countdown-wrap {
			padding: 5px;
		}

		.deal_wrap .countdown_time .cd_text {
			font-size: 12px;
		}
	}

	/* -------------------------------------------------
  (min-width: 767px) and (max-width: 1199px)
---------------------------------------------------*/
	@media only screen and (min-width: 767px) and (max-width: 1199px) {
		.shopping_info .icon_box_style2 {
			text-align: center;
			display: block;
		}

			.shopping_info .icon_box_style2 .icon {
				float: none;
				margin: 0 auto 10px;
			}
	}

	/* -------------------------------------------------
  (min-width: 767px) and (max-width: 991px)
---------------------------------------------------*/
	@media only screen and (min-width: 767px) and (max-width: 991px) {
		.fb_info {
			top: 5px;
			left: 5px;
		}

		.fb_info2 {
			left: 15px;
		}
	}

	/* -------------------------------------------------
  max-width: 1199px
---------------------------------------------------*/
	@media only screen and (max-width: 1199px) {
		.h1, h1 {
			font-size: 34px;
		}

		.h2, h2 {
			font-size: 30px;
		}

		.h3, h3 {
			font-size: 26px;
		}

		.h4, h4 {
			font-size: 22px;
		}

		.h5, h5 {
			font-size: 18px;
		}

		.section {
			padding: 80px 0;
		}

			.section.small_pt, .footer_top.small_pt {
				padding-top: 40px;
			}

			.section.small_pb, .footer_top.small_pb {
				padding-bottom: 40px;
			}

			.section.pb_70, .pb_70 {
				padding-bottom: 50px;
			}

			.section.pb_85, .pb_85 {
				padding-bottom: 65px;
			}

			.section.pb_20, .pb_20, .footer_top.pb_20 {
				padding-bottom: 10px;
			}

		.large_divider {
			height: 80px;
		}

		.medium_divider {
			height: 40px;
		}

		.small_divider {
			height: 20px;
		}

		.shop_title {
			font-size: 32px;
		}

		.banner_half_content {
			padding: 100px 0 80px;
		}

		.banner_section:not(.full_screen),
		.banner_section:not(.full_screen) .carousel-item,
		.banner_section:not(.full_screen) .banner_content_wrap,
		.banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
			height: auto;
		}

		.banner_section.slide_medium,
		.banner_section.slide_medium .carousel-item,
		.banner_section.slide_medium .banner_content_wrap,
		.banner_section.slide_medium .banner_content_wrap .carousel-item,
		.banner_section.shop_el_slider,
		.banner_section.shop_el_slider .carousel-item,
		.banner_section.shop_el_slider .banner_content_wrap,
		.banner_section.shop_el_slider .banner_content_wrap .carousel-item {
			height: auto;
		}

		.banner_content h2 {
			font-size: 52px;
		}

		.banner_content1 h2 {
			font-size: 64px;
		}

		.banner_content2 h2 {
			font-size: 60px;
		}

		.header_wrap.transparent_header + .breadcrumb_section {
			padding-top: 150px;
		}

		.header_wrap.transparent_header.header_with_topbar + .breadcrumb_section {
			padding-top: 200px;
		}

		.breadcrumb_section {
			padding: 100px 0;
		}

		.footer_top {
			padding: 20px 0 10px;
		}

		.blog_meta li {
			margin-right: 10px;
		}

		.blog_meta a {
			font-size: 14px;
		}

		.blog_title {
			line-height: 26px;
		}

		.newsletter_small {
			padding: 60px 0;
		}

		.pr_content {
			padding: 0 30px;
		}

		.widget_contact_form {
			margin-top: -160px;
		}

		.icon_box_style4 {
			padding: 30px;
		}

		.compare_box table {
			width: 1050px;
		}

		.shop_bn_content {
			padding: 30px 25px;
		}

			.shop_bn_content .btn {
				padding: 8px 25px;
			}

		.tab-content.shop_info_tab {
			margin-top: 30px;
		}

		.single_post .blog_title {
			font-size: 26px;
		}

		.icon_box_style1 {
			padding: 0 20px;
		}


		#navCatContent {
			padding: 0;
		}

			#navCatContent li a i {
				font-size: 20px;
				line-height: 28px;
			}

		.more_categories {
			padding: 10px 15px;
			margin-top: 0;
		}

		.nav_style1.owl-theme .owl-nav .owl-next {
			right: 0;
		}

		.nav_style1.owl-theme .owl-nav .owl-prev {
			left: 0px;
		}

		.icon_box.icon_box_style3 {
			padding: 15px;
		}

		.icon_box_style3 .icon {
			margin-right: 15px;
		}

			.icon_box_style3 .icon i {
				font-size: 32px;
			}

		.furniture_banner .single_bn_title1 {
			font-size: 70px;
		}

		/*.shop_container.list .pr_desc {
			min-height: 56px;
			max-height: 56px;
		}*/

		.add-to-cart .btn {
			padding: 10px 20px;
		}

		.shop_banner2 {
			height: 185px;
		}

		.el_banner2 .el_img img {
			max-width: 100px;
		}

		.el_banner1 .el_title h6 {
			font-size: 14px;
			margin-bottom: 5px;
		}

		.el_banner1 .el_title span {
			font-size: 20px;
		}

		.el_banner2 .el_title h6 {
			font-size: 14px;
			margin-bottom: 0;
		}

		.el_banner2 .el_title span {
			font-size: 12px;
		}

		.deal_wrap .product_img {
			max-width: 200px;
		}

		.deal_content {
			padding: 20px 20px 20px 0;
		}

		#navCatContent ul li .dropdown-menu {
			min-width: 750px;
		}

		.mfp-ajax-holder .compare_box {
			width: 100%;
			padding: 30px 20px;
		}
	}

	/* -------------------------------------------------
  min-width: 992px
---------------------------------------------------*/
	@media only screen and (min-width: 992px) {
		.navbar-toggler {
			display: none;
		}
		

		.navbar .navbar-nav li > .dropdown-menu,
		#navCatContent ul > li .dropdown-menu {
			display: block;
			opacity: 0;
			visibility: hidden;
			transition: all 0.1s ease-in-out;
			margin-top: 20px;
			pointer-events: none;
		}

		.navbar .navbar-nav li:hover > .dropdown-menu,
		#navCatContent ul > li:hover > .dropdown-menu {
			display: block;
			opacity: 1;
			visibility: visible;
			margin-top: 0px;
			pointer-events: auto;
			box-shadow: -2px 20px 79px rgba(0, 0, 0, 1);
		}

		.cart_dropdown:hover > .dropdown-menu {
			display: block !important;
			opacity: 1 !important;
			visibility: visible !important;
			margin-top: 0px !important;
		}

			.cart_dropdown:hover > .dropdown-menu.cart_box {
				-webkit-transform: scale(1) !important;
				transform: scale(1) !important;
				z-index: 999 !important;
			}

		.navbar .navbar-nav li:hover > .dropdown-menu .mega-menu ul li .dropdown-menu {
			margin-top: 10px;
		}

		.navbar .navbar-nav .dropdown-menu .dropdown-menu {
			left: 100%;
			top: 0;
		}

		.navbar .navbar-nav .dropdown-menu.dropdown-reverse .dropdown-menu {
			left: auto;
			right: 100%;
			margin-left: 0;
		}

		.navbar .navbar-nav .dropdown-menu.dropdown-reverse li:hover > .dropdown-item::after {
			-moz-transform: rotate(90deg);
			-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
		}

		.dropdown-menu.dropdown-reverse {
			left: auto;
			right: 0;
		}

		.dd_dark_skin .navbar .navbar-nav .dropdown-item,
		.dd_dark_skin .navbar .navbar-nav .dropdown-header,
		.sticky_dd_dark_skin.header_wrap.nav-fixed .navbar-nav .dropdown-menu li a,
		.sticky_dd_dark_skin.header_wrap.nav-fixed .navbar-nav .dropdown-header,
		.dd_dark_skin .cart_list a, .dd_dark_skin .cart_quantity, .dd_dark_skin .cart_total,
		.sticky_dd_dark_skin.header_wrap.nav-fixed .cart_list a, .sticky_dd_dark_skin.header_wrap.nav-fixed .cart_quantity, .sticky_dd_dark_skin.header_wrap.nav-fixed .cart_total {
			color: #333;
		}

		.dd_dark_skin .item_remove,
		.sticky_dd_dark_skin.header_wrap.nav-fixed .item_remove {
			color: #333 !important;
		}

		.dd_dark_skin .navbar-nav .dropdown-menu,
		.dd_dark_skin .navbar-nav .dropdown-menu .dropdown-menu,
		.dd_dark_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
		.sticky_dd_dark_skin.header_wrap.nav-fixed .navbar-nav .dropdown-menu,
		.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_dd_dark_skin.nav-fixed .navbar-nav .dropdown-menu,
		.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_dd_dark_skin.nav-fixed .navbar-nav .dropdown-menu .dropdown-menu,
		.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_dd_dark_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu {
			background-color: #fff;
			box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
		}

		.dd_dark_skin .mega-menu-col,
		.sticky_dd_dark_skin.nav-fixed .mega-menu-col,
		.sticky_dd_dark_skin.nav-fixed .navbar-nav .mega-menu-col,
		.dd_dark_skin .cart_list li,
		.sticky_dd_dark_skin.nav-fixed .cart_list li {
			border-color: #ddd;
		}

		.dd_light_skin .navbar .navbar-nav li > .dropdown-item,
		.dd_light_skin .navbar .navbar-nav .dropdown-header,
		.sticky_dd_light_skin.header_wrap.nav-fixed .navbar-nav .dropdown-menu li a,
		.sticky_dd_light_skin.header_wrap.nav-fixed .navbar-nav .dropdown-header,
		.dd_light_skin .cart_list a, .dd_light_skin .cart_quantity, .dd_light_skin .cart_total,
		.sticky_dd_light_skin.header_wrap.nav-fixed .cart_list a, .sticky_dd_light_skin.header_wrap.nav-fixed .cart_quantity, .sticky_dd_light_skin, .sticky_dd_light_skin.header_wrap.nav-fixed .cart_total {
			color: #fff;
		}

			.dd_light_skin .item_remove,
			.sticky_dd_light_skin.header_wrap.nav-fixed .item_remove {
				color: #fff !important;
			}

			.dd_light_skin .cart_list li,
			.sticky_dd_light_skin.nav-fixed .cart_list li {
				border-color: #3f3f3f;
			}

			.dd_light_skin .navbar-nav .dropdown-menu,
			.sticky_dd_light_skin.nav-fixed .navbar-nav .dropdown-menu {
				background-color: #252A2C;
				border-color: #252A2C;
			}

				.dd_light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
				.dd_light_skin .navbar-nav .dropdown-menu .dropdown-menu,
				.sticky_dd_light_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu {
					background-color: #303537;
				}

			.dd_light_skin .mega-menu-col,
			.sticky_dd_light_skin.nav-fixed .mega-menu-col,
			.sticky_dd_light_skin.nav-fixed .navbar-nav .mega-menu-col {
				border-right: 1px solid #3f3f3f;
			}

		.header_banner_title,
		.header_banner_text,
		.header_banner_content a,
		.header_banner_content .shop_subtitle,
		.header_banner_content .shop_title {
			opacity: 0;
			-moz-transform: translateY(25%);
			-webkit-transform: translateY(25%);
			transform: translateY(25%);
			-webkit-transition: ease transform 200ms, ease opacity 200ms;
			transition: ease transform 200ms, ease opacity 200ms;
		}

		.header_banner_title,
		.header_banner_content .shop_subtitle {
			-webkit-transition-delay: 400ms;
			transition-delay: 400ms;
		}

		.header_banner_text,
		.header_banner_content .shop_title {
			-webkit-transition-delay: 500ms;
			transition-delay: 500ms;
		}

		.header_banner_content a {
			-webkit-transition-delay: 600ms;
			transition-delay: 600ms;
		}

			.header_banner_content a:hover {
				transition: all 0.5s ease-in-out;
			}

		.header_banner_content .banner_img img {
			-webkit-filter: blur(5px);
			filter: blur(5px);
			-webkit-transition-delay: 500ms;
			transition-delay: 500ms;
			transition: all 0.8s ease-in-out;
			position: relative;
			z-index: -1;
		}

		.navbar .navbar-nav li:hover > .dropdown-menu .header_banner_title, .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_text, .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_content a, .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_content .shop_title, .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_content .shop_subtitle {
			opacity: 1;
			-moz-transform: translateY(0%);
			-webkit-transform: translateY(0%);
			transform: translateY(0%);
		}

		.navbar .navbar-nav li:hover > .dropdown-menu .header_banner_content .banner_img img {
			-webkit-filter: blur(0);
			filter: blur(0);
		}

		.banner_content_inner {
			padding: 30px;
		}

		.nav_cat ul li .dropdown-menu {
			min-width: 700px;
		}

		.pr_search_icon {
			display: block !important;
		}
	}
	/* -------------------------------------------------
  max-width: 991px
---------------------------------------------------*/
	@media only screen and (max-width: 991px) {
		.md-height-300 {
			height: 300px !important;
		}
		.form-modal .modal-dialog .modal-content {
			transform: translate(0, 23%) !important;
		}
		.heading_s1, .heading_s4 {
			margin-bottom: 20px;
		}

		.header_wrap nav.navbar {
			display: table;
			width: 100%;
		}

		.header_wrap .navbar .navbar-nav.attr-nav {
			/*display: block;*/
			float: right;
		}

		.header_wrap .navbar-collapse {
			position: absolute;
			left: 0;
			right: 0;
			top: 100%;
			z-index: 999;
		}

		.navbar .navbar-collapse .navbar-nav {
			max-height: 80vh;
			overflow-y: auto;
		}

		.header_wrap .navbar-collapse.mobile_side_menu {
			position: fixed;
			right: -280px;
			display: block;
			top: 0;
			bottom: 0;
			width: 270px;
			left: auto;
			height: auto !important;
			transition: all 0.1s ease-in-out;
		}

			.header_wrap .navbar-collapse.mobile_side_menu.show {
				right: 0;
			}

			.header_wrap .navbar-collapse.mobile_side_menu .navbar-nav {
				height: 100%;
				max-height: 100vh;
			}

		.navbar .navbar-nav > li > .nav-link,
		.nav-fixed .navbar .navbar-nav > li > .nav-link {
			padding: 10px 10px;
		}

		.navbar .navbar-nav.attr-nav li {
			float: left;
		}

			.navbar .navbar-nav.attr-nav li .nav-link {
				padding: 20px 10px;
			}

				.navbar .navbar-nav.attr-nav li .nav-link.search_trigger,
				.navbar .navbar-nav.attr-nav li .nav-link.cart_trigger {
					padding: 16px 8px;
				}

		.cart_count, .wishlist_count {
			top: 0;
		}

		.navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]) {
			background-color: #fff;
			box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
		}

		.light_skin.transparent_header .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]),
		.light_skin .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]) {
			background-color: #252A2C;
		}

		.sticky_dark_skin.nav-fixed.header_wrap .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]),
		.dark_skin.header_wrap .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]) {
			background-color: #fff;
			box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
			border: 1px solid #e6e6e6;
		}

		.navbar-nav .navbar-collapse .dropdown-menu,
		.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .navbar-collapse .dropdown-menu,
		.sticky_dark_skin.nav-fixed .navbar-nav .navbar-collapse .dropdown-menu,
		.light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
		.dark_skin:not([class*="bg_"]):not([class*="bg-"]) .navbar-nav .navbar-collapse .dropdown-menu,
		.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu, .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .navbar-collapse .dropdown-menu .dropdown-menu {
			background-color: transparent;
			box-shadow: none;
			border: 0;
		}

		.dark_skin:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-collapse .navbar-nav {
			background-color: #252A2C;
			border-color: #252A2C;
		}

		.light_skin .mega-menu {
			padding: 0;
		}

		.hover_menu_style1 .navbar-collapse .navbar-nav > li > a,
		.hover_menu_style1.nav-fixed .navbar .navbar-collapse .navbar-nav > li > .nav-link {
			padding: 10px;
			margin: 0;
		}

			.hover_menu_style1 .navbar-collapse .navbar-nav > li > a::before {
				content: normal;
			}

		.header_banner,
		.header_banner_wrap {
			display: none;
		}

		.dropdown-menu .dropdown-toggler::after {
			right: 0px;
		}

		.menu_banners {
			display: none;
		}

		.search_wrap {
			max-width: 100%;
			margin: 0 30px;
		}

		.dropdown-toggle::after {
			float: right;
		}

		.navbar-nav > li > .dropdown-menu,
		.navbar .navbar-nav li.dropdown-mega-menu .dropdown-menu {
			padding-left: 10px;
			padding-right: 10px;
		}

		.mega-menu-col {
			padding: 0px;
			border-right: 0 !important;
		}

		.dropdown-toggler::after {
			-moz-transform: rotate(0deg);
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}

		.navbar .attr-nav li.nav-btn {
			margin-top: 8px;
		}

		.navbar .navbar-nav.attr-nav li .nav-link.search_trigger [class*="linearicons-"], .navbar .navbar-nav.attr-nav li .nav-link.cart_trigger [class*="linearicons-"] {
			margin-top: 5px;
			display: inline-block;
		}

		.navbar .navbar-nav .dropdown-item {
			padding: 8px 10px 8px 10px;
		}

		.navbar .navbar-nav .dropdown-header {
			padding: 10px;
		}

		.sidetoggle_icon::after {
			bottom: -8px;
		}

		.sidetoggle_icon::before {
			top: -6px;
		}

		.nav_cat.collapse:not(.show) {
			display: block;
		}

		#navCatContent .dropdown-menu li a.dropdown-item {
			padding: .5rem 1rem;
		}

		#navCatContent .dropdown-menu .dropdown-menu {
			padding-left: 15px;
		}

			#navCatContent .dropdown-menu .dropdown-menu li a.dropdown-toggler::after {
				top: 5px;
			}

		.dark_skin .navbar-nav .dropdown-menu {
			box-shadow: none;
			padding-left: 12px;
		}

		.banner_section:not(.full_screen),
		.banner_section:not(.full_screen) .carousel-item,
		.banner_section:not(.full_screen) .banner_content_wrap,
		.banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
			height: auto;
		}

			.banner_section:not(.full_screen),
			.banner_section:not(.full_screen) .carousel-item,
			.banner_section:not(.full_screen) .banner_content_wrap,
			.banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
				height: auto;
			}

				.banner_section.full_screen.banner_half_content,
				.banner_section:not(.full_screen).banner_half_content,
				.banner_section:not(.full_screen).banner_half_content .banner_content_wrap {
					height: auto;
				}

		.banner_section.slide_medium,
		.banner_section.slide_medium .carousel-item,
		.banner_section.slide_medium .banner_content_wrap,
		.banner_section.slide_medium .banner_content_wrap .carousel-item {
			height: auto;
		}

		.banner_content h2 {
			font-size: 44px;
		}

		.banner_content1 h2 {
			font-size: 54px;
		}

		.banner_content2 h2 {
			font-size: 50px;
		}

		.banner_center_content {
			margin-top: 0;
		}

		.full_screen, .full_screen .carousel-item {
			min-height: 35rem;
		}

		div.banner_large_pad {
			padding: 200px 0 100px;
		}

		.banner_content_border {
			padding: 30px;
		}

		.header_wrap.transparent_header + .breadcrumb_section {
			padding-top: 100px;
		}

		.breadcrumb_section {
			padding: 80px 0;
		}

		.highlight_text {
			font-size: 18px;
		}

		.grid_col4 > li {
			width: 33.33%;
		}

		.banner_shape {
			width: 100%;
		}

		.single_banner_info {
			padding: 15px;
			width: 55%;
		}

		.single_bn_title {
			font-size: 22px;
		}

		.price_tage h2 {
			font-size: 34px;
		}

		.single_bn_title1 {
			font-size: 18px;
		}

		.widget_contact_form {
			margin-top: 0;
		}

		.background_shape,
		.background_shape::before {
			width: 150px;
		}

		.page-title + span {
			font-size: 15px;
		}

		.padding_eight_all {
			padding: 6%;
		}

		.cs_title {
			line-height: 40px;
			margin-bottom: 15px;
		}

		.cs_logo {
			margin-bottom: 20px;
		}

		.cs_content .countdown_time, .cs_content .newsletter_form {
			margin-bottom: 20px;
		}

		.contact_info_style2 li i {
			margin-right: 6px;
			font-size: 20px;
		}

		.team_email,
		.contact_info_style2 i + * {
			font-size: 16px;
		}

		.social_style3 li a {
			font-size: 18px;
			height: 40px;
			width: 40px;
			line-height: 40px;
		}

		.order_review {
			padding: 20px;
		}

		.product-add-to-cart {
			white-space: nowrap;
		}

			.product-add-to-cart .btn {
				padding: 10px 24px;
			}

		.load_more_wrap {
			margin-top: 0px;
		}

		.header_btn {
			float: right;
			margin: 9px 0;
		}

		.instagram_icon i {
			font-size: 40px;
		}

		.contact_form {
			max-width: 400px;
		}

		#tabmenubar {
			position: absolute;
			right: 0;
			top: 100%;
			z-index: 999;
			display: block;
			background-color: #fff;
			box-shadow: 0 0 10px rgba(0,0,0,0.2);
			padding: 15px;
			opacity: 0;
			visibility: hidden;
			height: auto !important;
		}

			#tabmenubar.show {
				opacity: 1;
				visibility: visible;
				margin-top: 0;
			}

			#tabmenubar li a {
				text-align: left;
			}

		.tab-style2 .nav-tabs li.nav-item a {
			padding: 5px 0;
		}

		.icon_box_style1::before {
			content: normal;
		}

		.newsletter_form button {
			padding: 12px 25px;
			font-size: 16px;
		}

		.banner_content_inner {
			padding: 30px;
		}

		/*.product_search_form {
			max-width: 100%;
			display: none;
			position: absolute;
			left: 0;
			right: 0;
			bottom: -146px;
			z-index: 9;
			right: 0;
			width: 100%;
			padding: 15px 15px;
			background-color: #fff;
		}*/
			/*.product_search_form {
				display: block;
			}*/
			

		.heading_tab_header .navbar-toggler {
			margin: 0;
		}

		#navCatContent {
			position: fixed;
			/*left: -280px;*/
			bottom: 0;
			display: block;
			overflow-y: auto;
			transition: all 0.1s ease-in-out;
		}

			#navCatContent.show {
				left: 0;
			}

			#navCatContent ul li .dropdown-menu {
				left: 0;
				top: auto;
				min-width: auto;
				position: relative;
				box-shadow: none;
			}

			#navCatContent .mega-menu {
				padding: 0;
			}

		.follow_box {
			max-width: 350px;
			padding: 20px;
		}

		.furniture_banner .single_bn_title1 {
			font-size: 64px;
		}

		.countdown_box .countdown {
			font-size: 34px;
		}

		.contact_map2 {
			height: 500px;
		}

		.product-thumbnail img {
			max-width: 80px;
		}

		.contact_support {
			margin: 18px 0;
		}

		.deal_wrap {
			display: block;
			padding: 20px;
		}

			.deal_wrap .product_img {
				margin: 0 auto;
			}

		.deal_content .product_info {
			text-align: center;
		}

		.deal_content {
			padding: 10px 0 0px;
		}

		.newsletter_text::before {
			font-size: 50px;
		}

		.newsletter_text {
			padding-left: 60px;
		}

		.subscribe_popup .modal-dialog {
			max-width: 700px;
		}

		.popup_content {
			padding: 30px;
		}

		.toggle_info {
			margin-bottom: 10px;
			padding: 15px;
		}

		.login_form .panel-body, .coupon_form .panel-body {
			margin-top: 0;
		}

		.login_form {
			margin-bottom: 10px;
		}
	}
	/* -------------------------------------------------
  min-width: 768px
---------------------------------------------------*/
	@media only screen and (min-width: 768px) {
		.blog_thumbs .blog_img {
			float: left;
			width: 40%;
		}

		.blog_thumbs .blog_content {
			padding: 0 0 0 20px;
			overflow: hidden;
		}
	}

	/* -------------------------------------------------
  max-width: 767px
---------------------------------------------------*/
	@media only screen and (max-width: 767px) {
		.h1, h1 {
			font-size: 32px;
		}

		.h2, h2 {
			font-size: 28px;
		}

		.h3, h3 {
			font-size: 24px;
		}

		.h4, h4 {
			font-size: 20px;
		}
		.form-modal .modal-dialog .modal-content {
			transform: translate(0, 4%) !important;
		}
		.section, .newsletter_small {
			padding: 50px 0;
		}

			.section.small_pt, .footer_top.small_pt {
				padding-top: 25px;
			}

			.section.small_pb, .footer_top.small_pb {
				padding-bottom: 25px;
			}

			.section.pb_70, .pb_70 {
				padding-bottom: 20px;
			}

			.section.pb_20, .pb_20, .footer_top.pb_20 {
				padding-bottom: 0px;
			}

		.large_divider {
			height: 50px;
		}

		.medium_divider {
			height: 25px;
		}

		.small_divider {
			height: 10px;
		}

		.section.pb_85, .pb_85 {
			padding-bottom: 35px;
		}

		.sm-height-300 {
			height: 300px !important;
		}

		.banner_content h2 {
			font-size: 36px;
		}

		.full_screen, .full_screen .carousel-item {
			min-height: 100%;
		}

		.banner_content_border {
			padding: 30px;
		}

		.breadcrumb_section.page-title-mini {
			padding: 30px 0;
		}

		.footer_top {
			padding: 50px 0 20px;
		}

		.contact_bottom_info .icon_box {
			margin: 15px 0;
		}

		.grid_col4 > li,
		.grid_col3 > li {
			width: 50%;
		}

		.banner_half_content {
			padding: 100px 0 50px;
		}

		.banner_section:not(.full_screen),
		.banner_section:not(.full_screen) .carousel-item,
		.banner_section:not(.full_screen) .banner_content_wrap,
		.banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
			height: auto;
		}

			.banner_section:not(.full_screen),
			.banner_section:not(.full_screen) .carousel-item,
			.banner_section:not(.full_screen) .banner_content_wrap,
			.banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
				height: 400px;
			}

		.banner_section.slide_medium,
		.banner_section.slide_medium .carousel-item,
		.banner_section.slide_medium .banner_content_wrap,
		.banner_section.slide_medium .banner_content_wrap .carousel-item {
			height: auto;
		}

		.banner_content1 h2 {
			font-size: 44px;
		}

		.banner_content2 h2 {
			font-size: 40px;
		}

		.carousel-indicators.vertical_center_right {
			right: 25px;
		}

		.newsletter_box {
			padding: 40px;
		}

		.banner_half_content .background_shape {
			left: 55%;
			-moz-transform: skewX(20deg);
			-webkit-transform: skewX(20deg);
			transform: skewX(20deg);
		}

		.single_banner_info {
			width: 50%;
		}

		.error_txt {
			font-size: 130px;
		}

		.team_single_content {
			padding-left: 0;
			border-left: 0;
			border-top: 1px solid #eee;
			margin-top: 15px;
			padding-top: 15px;
		}

		#Additional-info table td:first-child {
			width: 35%;
		}

		.product_heaader_right {
			margin-top: 20px;
			display: -ms-flexbox;
			display: flex;
			-ms-flex-pack: justify;
			justify-content: space-between;
			-ms-flex-align: center;
			align-items: center;
		}

		.shop_container.list .product_img {
			float: none;
			width: 100%;
			max-width: 100%;
		}

		.compare_box table {
			width: 900px;
		}

		.row_title {
			width: 200px;
		}

		.shop_cart_table td,
		.wishlist_table .table td {
			display: block;
			width: 100%;
			text-align: right;
		}

		.shop_cart_table thead,
		.wishlist_table thead {
			display: none;
		}

		.shop_cart_table td::before,
		.wishlist_table td::before {
			content: attr(data-title) " ";
			float: left;
			text-transform: capitalize;
			margin-right: 15px;
			font-weight: bold;
		}

		.shop_cart_table td.product-quantity::before {
			margin-top: 10px;
		}

		.shop_cart_table td.product-name,
		.wishlist_table td.product-name {
			text-align: right;
		}

		.shop_cart_table td.product-thumbnail, .shop_cart_table td.product-add-to-cart,
		.wishlist_table td.product-thumbnail, .wishlist_table td.product-add-to-cart {
			text-align: center;
		}

		.shop_cart_table .quantity {
			-ms-flex-pack: end;
			justify-content: flex-end;
		}

		.order_review {
			margin-top: 20px;
		}

		.payment_method {
			margin-bottom: 15px;
		}

		.post_nav span, .post_nav .nav_meta {
			display: none;
		}

		.blog_thumbs .blog_img {
			float: none;
			width: 100%;
		}

		.single_post .blog_title {
			font-size: 24px;
		}

		blockquote {
			font-size: 18px;
			line-height: 32px;
		}

			blockquote p {
				line-height: 32px;
			}

		.author_img img {
			max-width: 80px;
		}

		.comment_user img {
			max-width: 70px;
		}

		.nav-tabs li.nav-item a {
			padding: 5px 15px;
			font-size: 14px;
		}

		.header_with_topbar.transparent_header + .banner_section .banner_slide_content {
			margin-top: 70px;
		}

		footer .widget_title {
			margin-top: 0px;
		}

		.testimonial_wrp .testimonial_desc {
			margin-top: 10px;
		}

		.contact_form {
			max-width: 100%;
			margin-right: 15px;
			margin-left: 15px;
			margin-bottom: 30px;
			float: none;
		}

		.contact_box {
			padding: 0;
		}

			.contact_box .map {
				position: relative;
			}

				.contact_box .map iframe {
					height: 400px;
				}

		.tab-content {
			margin-top: 20px;
		}

		.trading_img {
			margin-top: 0;
		}

		.header_topbar_info {
			-ms-flex-pack: center;
			justify-content: center;
		}

		.banner_content_inner {
			padding: 15px;
		}

		.shopping_info .icon_box {
			padding-top: 15px;
			margin-bottom: 15px;
		}

		.bottom_footer {
			padding: 15px 0;
		}

		.icon_box_style2 .icon {
			max-width: 68px;
			height: 68px;
			line-height: 68px;
			-ms-flex: 0 0 78px;
			flex: 0 0 68px;
		}

			.icon_box_style2 .icon i {
				font-size: 36px;
				line-height: 68px;
			}

		.nav_style4.owl-theme .owl-nav [class*="owl-"] {
			top: -70px;
		}

		.cat_overlap {
			margin-top: -40px;
		}

		.furniture_banner .single_bn_title1 {
			font-size: 52px;
		}

		.furniture_banner .countdown_time .countdown_box {
			padding: 0 5px;
		}

		.furniture_banner .countdown_style3 {
			margin-left: -5px;
			margin-right: -5px;
		}

		.testimonial_wrap {
			padding: 0px;
		}

		.testimonial_style1 .testimonial_desc {
			margin-bottom: 20px;
		}

		.page-title {
			margin-bottom: 15px;
		}

		.blog_thumbs .blog_content {
			padding: 15px 0 0 0;
		}

		.shop_container.list .product_info {
			padding: 15px;
		}

		.mfp-ajax-holder .mfp-content .ajax_quick_view {
			max-width: 600px;
		}

		.deal_wrap {
			padding: 15px;
		}

		.countdown_style4 .countdown_box .countdown-wrap {
			padding: 5px;
		}

		.deal_wrap .countdown_time .cd_text {
			font-size: 12px;
		}

		.newsletter_text {
			margin-bottom: 15px;
		}

		.subscribe_popup .modal-dialog {
			max-width: 95%;
		}

		.popup-text p {
			font-size: 14px;
			line-height: normal;
			margin-bottom: 15px;
		}

		.popup-text .heading_s1 {
			margin-bottom: 15px;
		}

		.popup_content {
			padding: 25px;
		}
	}

	/* -------------------------------------------------
  max-width: 575px
---------------------------------------------------*/
	@media only screen and (max-width: 575px) {

		.header_wrap .navbar-collapse {
			left: -12px;
			right: -12px;
		}

		.btn {
			padding: 10px 28px;
			font-size: 14px;
		}

			.btn + .btn {
				margin-left: 5px;
			}

		.btn-group-lg > .btn, .btn-lg {
			padding: 14px 38px;
			font-size: 18px;
		}

		.btn.btn-lg i {
			font-size: 20px;
		}

		.btn-group-sm > .btn, .btn-sm {
			padding: 6px 18px;
		}

		.btn-xs {
			padding: 2px 14px;
			font-size: 12px;
		}

		p {
			margin-bottom: 15px;
		}

		.section.pb_70, .pb_70 {
			padding-bottom: 15px;
		}

		.section, .newsletter_small {
			padding: 30px 0;
		}

			.section.small_pt, .footer_top.small_pt {
				padding-top: 15px;
			}

			.section.small_pb, .footer_top.small_pb {
				padding-bottom: 15px;
			}

		.large_divider {
			height: 30px;
		}

		.medium_divider {
			height: 15px;
		}

		.small_divider {
			height: 5px;
		}

		.section.pb_85, .pb_85 {
			padding-bottom: 15px;
		}

		.breadcrumb_section {
			padding: 50px 0;
		}

			.breadcrumb_section.page-title-mini {
				padding: 30px 0;
			}

		.footer_top {
			padding: 30px 0 15px;
		}

		.navbar .attr-nav li.nav-btn {
			margin-top: 10px;
		}

		.heading_s1 {
			margin-bottom: 15px;
		}

		.banner_section.slide_medium, .banner_section.slide_medium .carousel-item, .banner_section.slide_medium .banner_content_wrap, .banner_section.slide_medium .banner_content_wrap .carousel-item {
			height: auto;
		}

		.banner_section:not(.full_screen), .banner_section:not(.full_screen) .carousel-item, .banner_section:not(.full_screen) .banner_content_wrap, .banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
			height: auto;
		}

		.banner_content h2 {
			font-size: 28px;
		}

		.banner_content1 h2 {
			font-size: 34px;
		}

		.banner_content2 h2 {
			font-size: 30px;
			margin-bottom: 15px;
		}

		.banner_content2 p {
			margin-bottom: 15px;
		}

		.banner_content3 h2 {
			font-size: 30px;
		}

		.banner_half_content {
			padding: 100px 0 30px;
		}

		div.banner_large_pad {
			padding: 200px 0 80px;
		}

		.leads {
			margin-bottom: 20px;
		}

		.grid_filter {
			margin-bottom: 25px;
		}

		.gutter_medium > li .portfolio_item {
			margin-bottom: 15px;
		}

		.icon_box,
		.blog_post,
		.pricing_box,
		.team_box,
		.heading_tab_header,
		.sale_banner,
		.contact_style3,
		.product_list .product,
		.product_list .product_wrap {
			margin-bottom: 15px;
		}

		.pr_title {
			padding: 20px 15px 20px;
		}

		.pr_footer {
			padding: 15px 20px 20px;
		}

		footer .widget_title {
			margin-top: 0px;
			margin-bottom: 20px;
		}

		footer .widget {
			margin-bottom: 20px;
		}

		.widget_contact_form {
			padding: 20px;
			margin-top: 10px;
		}

		.newsletter_box {
			padding: 30px;
		}

		.map iframe {
			height: 300px;
		}

		footer .background_shape, footer .background_shape::before {
			width: 120px;
		}

		footer .background_shape {
			-moz-transform: skewX(20deg);
			-webkit-transform: skewX(20deg);
			transform: skewX(20deg);
		}

		.error_txt {
			font-size: 100px;
			margin-bottom: 10px;
		}

		.sidebar .widget + .widget {
			margin-top: 20px;
			padding-top: 20px;
		}

		.widget_title {
			margin-bottom: 20px;
		}

		.tab-content.shop_info_tab {
			margin-top: 20px;
		}

		.blog_thumbs .blog_post {
			padding-bottom: 15px;
		}

		.blockquote_style1 {
			margin: 20px 0;
		}

		blockquote {
			font-size: 16px;
			line-height: 28px;
		}

			blockquote p {
				line-height: 28px;
			}

		.blockquote_style4 {
			padding: 15px;
			font-size: 16px;
		}

		.blog_post_footer {
			padding-bottom: 20px;
			padding-top: 5px;
		}

		.post_author {
			margin-top: 30px;
			margin-bottom: 30px;
		}

		.comment-area .comment_list {
			margin-bottom: 30px;
		}

		.content_title * {
			margin-bottom: 20px;
		}

		.banner_content_border {
			padding: 20px;
		}

		.testimonial_wrap {
			padding: 0;
		}

			.testimonial_wrap .testimonial_box::before {
				font-size: 40px;
				line-height: normal;
			}

		.instagram_icon i {
			font-size: 30px;
		}

		.testimonial_wrp {
			padding: 20px;
		}

		.contact_form {
			padding: 20px;
		}

		.single_banner {
			margin-bottom: 15px;
		}

		.categories_btn {
			width: 125px !important;
		}
		/*.category-title{
			display: block;
		}*/

		.categories_btn span {
			display: inline;
			margin-left: 10px;
			width: 190px;
			font-size: 12px;
		}

			.categories_btn i {
				margin-right: 0;
			}

		.carousel .indicators_style1 {
			margin-bottom: 5px;
		}

			.carousel .indicators_style1 li {
				width: 7px;
				height: 7px;
				margin: 6px;
			}

		.carousel .indicators_style2 li {
			width: 6px;
			height: 6px;
		}

		.nav_style3.owl-theme .owl-nav [class*="owl-"] {
			top: -66px;
		}

		.follow_box {
			max-width: 310px;
			padding: 15px;
		}

			.follow_box i {
				font-size: 70px;
			}

		.cat_overlap {
			padding: 20px;
		}

		.furniture_banner .single_bn_title1 {
			font-size: 44px;
		}

		.form-control,
		.product_search_form input,
		.form-control:focus,
		.custom_select select {
			height: 44px;
		}

		.search_btn2 {
			right: 2px;
			top: 2px;
		}

		.product_header {
			display: block;
		}

		.product_header_right {
			-ms-flex-pack: justify;
			justify-content: space-between;
			margin-top: 15px;
		}

		.newsletter_form2 input, .newsletter_form2 input:focus {
			height: 52px;
		}

		.subscribe_popup .modal-dialog {
			max-width: 100%;
		}

		.newsletter_form button {
			padding: 9px 25px;
		}
	}

	/* -------------------------------------------------
  max-width: 480px
---------------------------------------------------*/
	@media only screen and (max-width: 480px) {
		body {
			font-size: 14px;
		}

		p {
			line-height: 24px;
		}

		.heading_s1 h1, .heading_s1 h2, .heading_s1 h3, .heading_s1 h4, .heading_s1 h5, .heading_s1 h6 {
			line-height: 30px;
		}

		.h1, h1 {
			font-size: 24px;
		}

		.h2, h2 {
			font-size: 22px;
		}

		.h3, h3 {
			font-size: 20px;
		}

		.h4, h4 {
			font-size: 18px;
		}

		.h5, h5 {
			font-size: 16px;
		}

		.h6, h6 {
			font-size: 14px;
		}

		p {
			margin-bottom: 15px;
		}

		.sidebar_menu {
			padding: 30px 20px 20px;
			width: 320px;
			right: -320px;
		}

		.sidebar_left .sidebar_menu,
		.sidebar_left_push .sidebar_menu {
			left: -320px;
		}

		.sidebar_left_push.sidetoggle_active {
			left: 320px;
		}

			.sidebar_left_push.sidetoggle_active .header_wrap.nav-fixed {
				left: 320px;
				right: -320px;
			}

		.sidebar_right_push.sidetoggle_active {
			right: 320px;
		}

		.navbar .attr-nav li .nav-link i[class*="linearicons-"],
		.navbar .navbar-nav.attr-nav li .nav-link.search_trigger [class*="linearicons-"], .navbar .navbar-nav.attr-nav li .nav-link.cart_trigger [class*="linearicons-"] {
			font-size: 18px;
		}

		.banner_content1 h2 {
			font-size: 30px;
		}

		.banner_content p {
			margin-bottom: 25px;
		}

		.banner_content2 h2 {
			font-size: 26px;
			margin-bottom: 10px;
		}

		.carousel-control-next, .carousel-control-prev {
			font-size: 16px;
			height: 38px;
			width: 38px;
		}

		.carousel-control-prev {
			left: 0;
		}

		.carousel-control-next {
			right: 0px;
		}

		.carousel_style1 .carousel-control-next,
		.carousel_style2 .carousel-control-next {
			right: 10px;
		}

		.carousel_style1 .carousel-control-prev,
		.carousel_style2 .carousel-control-prev {
			left: 10px;
		}

		.heading_s1
		footer .widget_title,
		.leads {
			margin-bottom: 15px;
		}

		.heading_icon {
			margin-bottom: -10px;
		}

		.highlight_text {
			font-size: 16px;
		}

		.grid_col2 > li,
		.grid_col4 > li,
		.grid_col3 > li {
			width: 100%;
		}

		.grid_filter li a {
			padding: 5px 10px;
		}

		.grid_filter.filter_style1 li a {
			padding: 5px 15px;
		}

		.product,
		.product_wrap,
		.product_box {
			margin-bottom: 15px;
		}

		.blog_title {
			margin-bottom: 10px;
		}

		.ripple {
			margin-right: 20px;
			margin-left: -10px;
		}

			.ripple::before, .ripple::after {
				margin: -15px;
			}

		.newsletter_box {
			padding: 20px;
		}

		.newsletter_form input, .newsletter_form input:focus {
			padding: 10px 140px 10px 20px;
		}

			.newsletter_form input.form-control-sm {
				padding: 10px 130px 10px 18px;
			}

		.newsletter_wrap {
			margin: 15px 0;
		}

			.newsletter_wrap::after {
				content: normal;
			}

		.profile_info > li {
			margin-bottom: 15px;
		}

		.count_pr {
			font-size: 14px;
		}

		.contact_icon {
			margin-right: 15px;
		}

		.contact_style3 {
			padding: 30px 20px;
		}

			.contact_style3 .contact_icon {
				height: 70px;
				width: 70px;
			}

				.contact_style3 .contact_icon i {
					line-height: 68px;
				}

		.contact_icon i {
			font-size: 30px;
		}

		.divider i {
			font-size: 26px;
			padding: 0 25px;
		}

		.page-title-mini .page-title h1 {
			font-size: 24px;
		}

		.countdown_box .countdown {
			font-size: 30px;
		}

		.cart_extra {
			display: block;
		}

		.pr_detail .rating_wrap {
			float: none;
			margin-top: 0;
			margin-bottom: 10px;
		}

		.pr_detail .product_price {
			float: none;
		}

		.mfp-ajax-holder .ajax_quick_view {
			padding: 30px 20px;
		}

		.ajax_quick_view .social_icons li a {
			height: 30px;
			width: 30px;
			line-height: 30px;
		}

		.ajax_quick_view .product_share > span {
			margin-right: 10px;
		}

		.shop_container.list .product .rating_wrap, .shop_container.list .product_price {
			float: none;
		}

		.shop_container.list .product .rating_wrap {
			margin-bottom: 5px;
		}

		.shop_container.list .product .product_title {
			font-size: 16px;
			margin-bottom: 10px;
		}

		#Additional-info table td:first-child {
			width: auto;
		}

		.comment_img img {
			max-width: 50px;
		}

		.comment_block {
			padding-left: 65px;
		}

		.compare_box {
			width: 95%;
			padding: 30px 10px 10px;
		}

		.order_complete i {
			font-size: 60px;
			margin-bottom: 10px;
		}

		.empty_icon {
			height: 70px;
			width: 70px;
			line-height: 70px;
			margin-bottom: 15px;
		}

			.empty_icon img {
				max-width: 35px;
			}

		.single_post .blog_title {
			font-size: 20px;
			margin-bottom: 15px;
		}

		.post_author .author_img {
			float: none;
			padding-right: 0;
			margin: 0 auto;
			display: table;
		}

		.author_info {
			text-align: center;
			margin-top: 15px;
		}

		.comment_user img {
			max-width: 60px;
		}

		.comment_content {
			padding-left: 15px;
		}

		.children {
			margin-left: 20px;
		}

		.process_step_content {
			margin-top: 20px;
		}

		.pr_list li {
			padding: 10px 0;
		}

		.pr_icon {
			width: 80px;
			height: 80px;
		}

			.pr_icon i {
				font-size: 40px;
				line-height: 80px;
			}

		.price_tage {
			padding-top: 5px;
		}

		.contact_box .map iframe {
			height: 300px;
		}

		.single_bn_title {
			font-size: 20px;
		}

		.single_banner_info {
			width: 55%;
		}

		.product_search_form select {
			width: 120px;
			padding: 8px 25px 8px 5px;
			overflow: hidden;
		}

		.search_btn {
			padding: 0px 10px;
			font-size: 18px;
		}

		.deal_timer::before {
			font-size: 14px;
		}

		.deal_timer {
			padding-left: 8px;
		}

			.deal_timer .countdown_style1 .countdown_box::before {
				font-size: 18px;
			}

			.deal_timer .countdown_box .countdown {
				font-size: 18px;
			}

		.follow_box {
			max-width: 250px;
		}

			.follow_box i {
				font-size: 60px;
			}

		.bg_strip {
			font-size: 14px;
			height: 34px;
		}

			.bg_strip::before,
			.bg_strip::after {
				border-width: 17px;
			}

		.categories_box a {
			padding: 25px 15px;
		}

		.furniture_banner .single_bn_title1 {
			font-size: 34px;
		}

		.countdown_style3 .cd_text {
			font-size: 12px;
		}

		.countdown_style3 .countdown-wrap {
			padding: 10px;
		}

	/*	.shop_container.list .pr_desc {
			min-height: 50px;
			max-height: 50px;
		}*/

		.shop_container.list .pr_action_btn li.add-to-cart a {
			padding: 12px 20px;
		}

		.tab-style3 .nav-tabs {
			display: block;
		}

		.shop_container .col-6 {
			max-width: 100%;
			-ms-flex: 0 0 100%;
			flex: 0 0 100%;
		}

		.mfp-ajax-holder .mfp-content .ajax_quick_view {
			padding: 30px 15px 15px;
		}

		.cart_trigger .amount {
			display: none;
		}

		.popup_content {
			padding: 40px 20px;
		}

		.popup-text .heading_s1 {
			margin-bottom: 10px;
		}

			.popup-text .heading_s1 * {
				line-height: normal;
			}

		.login_form .panel-body, .coupon_form .panel-body {
			padding: 15px;
		}

		.custome-radio input[type="radio"] + .form-check-label::after {
			top: 0.567rem;
		}
	}

	/* -------------------------------------------------
  max-width: 380px
---------------------------------------------------*/
	@media only screen and (max-width: 380px) {
		.btn {
			padding: 8px 24px;
		}

		.btn-group-lg > .btn, .btn-lg {
			padding: 12px 34px;
			font-size: 16px;
		}

		.btn.btn-lg i {
			font-size: 18px;
		}

		.btn-group-sm > .btn, .btn-sm {
			padding: 4px 16px;
		}

		.btn-xs {
			padding: 2px 14px;
			font-size: 12px;
		}

		.sidebar_menu {
			padding: 30px 15px 15px;
			width: 290px;
			right: -290px;
		}

		.sidebar_left .sidebar_menu,
		.sidebar_left_push .sidebar_menu {
			left: -290px;
		}

		.sidebar_left_push.sidetoggle_active {
			left: 290px;
		}

			.sidebar_left_push.sidetoggle_active .header_wrap.nav-fixed {
				left: 290px;
				right: -290px;
			}

		.sidebar_right_push.sidetoggle_active {
			right: 290px;
		}

		.navbar-brand img {
			max-width: 140px;
		}

		.fb_style1::before {
			width: 220px;
		}

		.banner_content h2 {
			margin-bottom: 15px;
		}

		.banner_content p {
			margin-bottom: 20px;
		}

		.newsletter_form input, .newsletter_form input:focus {
			height: 44px;
		}

		.newsletter_form button {
			padding: 10px 15px;
			font-size: 14px;
		}

		.first_img,
		.second_img {
			max-width: 230px;
		}

		.ripple {
			line-height: 32px;
			height: 32px;
			width: 32px;
		}

			.ripple i {
				font-size: 14px;
			}

		.header_wrap.transparent_header.header_with_topbar + .breadcrumb_section {
			padding-top: 220px;
		}

		.form-control,
		.product_search_form input,
		.form-control:focus,
		.custom_select select {
			height: 40px;
		}

		.form-control {
			font-size: 14px;
		}

		.input_icon, .rounded_input .input_icon {
			top: 10px;
		}

		.custom-file-label, .custom-file, .custom-file-input {
			height: 40px;
			line-height: 28px;
		}

			.custom-file-label::after {
				height: 38px;
				line-height: 30px;
			}

		.error_txt {
			font-size: 80px;
		}

		.btn-login li a {
			padding: 8px 16px;
		}

		.login_footer a {
			font-size: 13px;
		}

		.countdown_box .countdown {
			font-size: 26px;
		}

		.cs_title {
			line-height: 28px;
			font-size: 16px;
		}

		.shop_container.list .list_product_action_box .pr_action_btn li.add-to-cart a {
			padding: 10px 17px;
			font-size: 14px;
		}

		.shop_container.list .list_product_action_box .pr_action_btn li a {
			width: 27px;
			height: 27px;
		}

		.shop_container.list .pr_action_btn li a i {
			line-height: 27px;
			font-size: 16px;
		}

		.order_complete i {
			font-size: 50px;
		}

		.comment_user img {
			max-width: 50px;
		}

		.heading_s2 .sub_heading {
			font-size: 30px;
			line-height: 30px;
		}

		.ddcommon .ddTitleText {
			padding: 5px 5px 5px 5px;
		}

		.contact_detail > li, .header_list > li {
			padding: 2px 10px 2px 0;
		}

		.navbar-nav .dropdown-menu.cart_box.show {
			right: -50px;
			width: 310px;
		}

			.navbar-nav .dropdown-menu.cart_box.show.cart_right {
				right: -10px;
			}

		.post_content {
			margin-top: 0;
		}

		.contact_phone i {
			font-size: 20px;
			margin-right: 5px;
		}

		.categories_btn {
			padding: 20px 10px;
		}

		.fb_info {
			padding: 0px;
		}

		.fb_info2 {
			left: 0;
			width: 50%;
		}

		.newsletter_form .btn-send {
			font-size: 18px;
			width: 36px;
			height: 36px;
			line-height: 36px;
		}

		.product_search_form.rounded_input input {
			padding: 10px 15px;
		}

		.contact_support {
			margin: 20px 0;
		}

		.newsletter_form2 input, .newsletter_form2 input:focus {
			height: 48px;
		}
	}

	/*html {
		max-width: initial !important;
	}

	a:hover {
		cursor: pointer;
	}
*/
	.closeBtn {
		position: fixed;
		top: 5px;
		right: 5px;
	}

	.address-form {
		padding: 25px;
		margin-bottom: 25px;
	}

	.submitBtn {
		position: fixed;
		bottom: 5px;
		right: 5px;
	}





	.invoice-container {
		max-width: 1140px;
		margin: 50px auto;
		padding: 20px;
		border: 1px solid #ccc;
	}

	.invoice-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom: 2px solid #ddd;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}

		.invoice-header h2 {
			font-family: adineuepro-boldweb, Helvetica, Arial, sans-serif;
			font-size: 36px;
			letter-spacing: 1.28px;
			line-height: 40px;
			color: #000;
			margin: 20px 0 25px;
			background: 0 0;
			padding: 0;
			left: 0;
			text-transform: uppercase;
		}

	.invoice-details {
		display: flex;
		justify-content: space-between;
		margin-bottom: 20px;
	}

		.invoice-details h2 {
			font-size: 18px;
			display: -webkit-box;
		}


			.invoice-details h2 span {
				font-weight: 600;
			}


	.product_details,
	.order_details {
		padding-top: 24px !important;
		border-top: 1px solid #c9c9c9;
	}

	.shipment-heading,
	.orderSummary,
	.product-name {
		font-size: 19px;
		padding-top: 15px;
		font-weight: 700;
	}

	.order div {
		display: flex;
		justify-content: space-between;
	}

	.hor {
		border-bottom: 1px solid #c9c9c9;
		margin: 30px 0;
	}


@media only screen and (min-width: 991px) {
	.custom_search_btn i {
		position: relative !important;
		top: -2px !important;
	}

	.custom_input_search {
		height: 37px !important;
		margin-top: -4px !important;
	}
}

@media only screen and (max-width: 487px) {
	.custom_div_search {
		width: 95vw !important;
		margin-bottom: 5px !important;
	}
}

.block-ui-visible .block-ui-container {
	display: none !important;
}

.block-ui-container {
	display: none !important;
}

.block-ui-overlay {
	display: none !important;
}

.block-ui-message-container {
	display: none !important;
}

.block-ui-message {
	display: none !important;
	visibility: hidden !important;
}

.block-ui-message-container {
	display: none !important;
}
