/*
Theme Name: Pain
*/
.easing-animation {
  transition: all 0.4s;
}
.easing-animation-long {
  transition: all 0.7s;
}
.easing-animation-extra-long {
  transition: all 1.2s;
}
.special-zoom-in {
  animation: SpecialZoomIn 8s forwards;
  transform-origin: 30% 0%;
}
.special-zoom-out {
  animation: SpecialZoomOut 8s forwards;
  transform-origin: 30% 0%;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.nopadding {
  padding: 0;
}
.col-nopadding {
  padding-left: 0;
  padding-right: 0;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.middle {
  position: relative;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
.center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.bottom {
  position: relative;
  display: block;
  top: 100%;
  transform: translateY(-100%);
}
.ab-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ab-center:before,
.ab-center:after {
  content: " ";
  display: table;
}
.ab-center:after {
  clear: both;
}
.ab-bottom {
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
}
.ab-bottom:before,
.ab-bottom:after {
  content: " ";
  display: table;
}
.ab-bottom:after {
  clear: both;
}
@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.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;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    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 {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) 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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/*
* Component module
*/
/* + TYPOGRAPHY */
/* + COLOR */
/* + INPUT */
/* + ICON */
/* + BUTTON */
/* + UTILITIES */
/* + SECTION */
/*
* Common module
*/
/* + RESERVATION AND CONTACT */
/*
* Module
*/
/* + HEADER */
/* + FOOTER */
/* + TEAM */
/* + SERVICE */
/* + MEMBERSHIP */
/* + TESTIMONIAL */
/* + HOME */
/* + ABOUT */
/* + SHOP */
/* + SPACE */
/* + ADVERTISE */
/* + BLOG */
/* + OTHER PAGE */
/*
* Component module
*/
/* TYPOGRAPHY */
.jw-default-font-main {
  font-family: Montserrat;
}
.jw-default-font-second {
  font-family: Arimo;
}
.jw-font-poppins {
  font-family: Poppins;
}
.jw-font-ubuntu {
  font-family: Ubuntu;
}
.jw-font-robotoslab {
  font-family: Roboto Slab;
}
body {
  font-family: Arimo;
  font-size: 14px;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body a {
  color: #f48223;
}
body a:hover,
body a:focus,
body a:active {
  color: #f48223;
  outline: none;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body .jw-font-size-1,
body .jw-font-size-2,
body .jw-font-size-3,
body .jw-font-size-4,
body .jw-font-size-5,
body .jw-font-size-6 {
  color: #f48223;
  font-family: Montserrat;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 25px;
}
body h1,
body .jw-font-size-1 {
  font-size: 15px;
  font-weight: 700;
  line-height: 60px;
}
body h2,
body .jw-font-size-2 {
  font-size: 36px;
  line-height: 42px;
}
body h3,
body .jw-font-size-3 {
  font-size: 24px;
  line-height: 36px;
}
body h4,
body .jw-font-size-4 {
  font-size: 18px;
  line-height: 24px;
}
body h5,
body .jw-font-size-5 {
  font-size: 16px;
  line-height: 18px;
}
body h6,
body .jw-font-size-6 {
  font-size: 14px;
  line-height: 16px;
}
.jw-heading-underline {
  position: relative;
}
.jw-heading-underline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 85px;
  height: 15px;
  background: url(https://mshikamano.co.ug/wp-content/themes/pain/assets/images/title_line.png) no-repeat top left;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.jw-heading-underline-2 {
  letter-spacing: 0.04em;
  position: relative;
}
.jw-heading-underline-2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 58px;
  height: 8px;
  border: 2px dashed #f48223;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.jw-heading-underline-2 > strong {
  font-weight: 500;
}
.jw-sub-title-box {
  display: inline-block;
  letter-spacing: 0.16px;
  color: #ffffff;
  padding: 5px 25px;
  background: #f48223;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-sub-title-span {
  font-size: 18px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 4.8px;
  text-align: center;
  color: #303030;
}
.ro-hr {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 80%;
  border-top: 1px solid rgba(102, 102, 102, 0.4);
  margin: 0 auto;
}
.ro-hr.ro-full {
  width: 100%;
}
.ro-hr.ro-light-color {
  border-color: #ffffff;
}
.ro-hr.ro-dark-color {
  border-color: #111111;
}
p {
  margin-bottom: 25px;
}
.ro-ellipsis {
  overflow: hidden;
}
.ro-quote-content {
  padding-top: 30px;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 400;
}
.ro-quote-content q:before,
.ro-quote-content q:after {
  font-style: italic;
  font-size: 30px;
  line-height: 16px;
  font-weight: 600;
}
.ro-quote-content q:before {
  content: open-quote;
}
.ro-quote-content q:after {
  content: close-quote;
}
.ro-quote-content .ro-author-name {
  padding-top: 20px;
  font-weight: 700;
  text-align: right;
  color: #f48223;
}
/* COLOR */
/* INPUT */
body input[type="text"],
body input[type="email"],
body input[type="search"],
body input[type="tel"],
body textarea,
body select {
  transition: all 0.4s;
  width: 100%;
  outline: none;
  font-size: 14px;
  color: #303030;
  background-color: transparent;
  border: 1px solid #ececec;
  margin-bottom: 30px;
  padding: 8px 20px;
  box-shadow: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
body input[type="text"]:focus,
body input[type="email"]:focus,
body input[type="search"]:focus,
body input[type="tel"]:focus,
body textarea:focus,
body select:focus {
  border-color: #f48223 !important;
}
body .input-submit {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 30px;
  outline: none;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
body input[type="submit"] {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 30px;
  outline: none;
  text-align: center;
  background-color: transparent;
  border: 0;
  font-family: Montserrat;
  font-size: 13px;
  letter-spacing: 0.16px;
  background-color: #f48223;
  color: #ffffff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
body input[type="submit"]:hover,
body input[type="submit"]:focus,
body input[type="submit"]:active {
  background-color: #111111;
  color: #ffffff;
}
body input:-webkit-autofill,
body input:-webkit-autofill:hover,
body input:-webkit-autofill:focus,
body input:-webkit-autofill:active {
  transition: background-color 50000s ease-in-out 0s, color 5000s ease-in-out 0s;
}
body select {
  height: 45px;
}
body textarea {
  resize: none;
  min-height: 210px;
  margin-bottom: 30px;
}
body .placeholder {
  color: #111111;
}
body ::-webkit-input-placeholder {
  color: #111111;
}
body :-moz-placeholder {
  /* Firefox 18- */
  color: #111111;
}
body ::-moz-placeholder {
  /* Firefox 19+ */
  color: #111111;
}
body :-ms-input-placeholder {
  color: #111111;
}
body .jw-contact-us .col-md-6,
body .jw-contact-us .col-md-12 {
  padding-right: 5px;
  padding-left: 5px;
}
body .jw-contact-us input,
body .jw-contact-us select,
body .jw-contact-us textarea {
  background: #fafafa;
  border-color: #fafafa;
  margin: 10px 0 0;
  padding: 12px 30px;
  color: #555555;
  font-family: Poppins;
  font-size: 12px;
}
body .jw-contact-us input:focus,
body .jw-contact-us select:focus,
body .jw-contact-us textarea:focus {
  border-color: #f48223;
}
body .jw-contact-us input.jw-submit,
body .jw-contact-us select.jw-submit,
body .jw-contact-us textarea.jw-submit {
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #ffffff;
  background: #f48223;
  border: 2px solid #f48223;
  font-family: Poppins;
  font-weight: 600;
  width: 180px;
  height: 50px;
  margin-top: 60px;
  line-height: 50px;
  padding: 0px;
}
body .jw-contact-us input.jw-submit:hover,
body .jw-contact-us select.jw-submit:hover,
body .jw-contact-us textarea.jw-submit:hover {
  color: #f48223;
  background: transparent;
}
body .jw-contact-us textarea {
  height: 210px;
}
/* ICON */
.ro-social li {
  display: inline-block;
  margin-right: 3px;
  margin-left: 3px;
  font-size: 16px;
}
.ro-social li a:hover {
  color: #f48223;
}
/* BUTTON */
.jw-btn {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-btn-main {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 10px 23px;
  border: 2px solid #f48223;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 15px 27px;
}
.jw-btn-main:hover,
.jw-btn-main:focus,
.jw-btn-main:active {
  color: #f48223;
  background: transparent;
}
.pain-btn-lager-main {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 10px 23px;
  border: 2px solid #f48223;
  font-size: 13px;
  letter-spacing: 0.48px;
  white-space: nowrap;
  text-transform: uppercase;
  color: #f48223;
  padding: 12px 36px;
  background: transparent;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 700;
  transition: 0.5s all !important;
  -webkit-transition: 0.5s all !important;
  padding: 12px 36px 11px 36px !important;
}
.pain-btn-lager-main:hover,
.pain-btn-lager-main:focus,
.pain-btn-lager-main:active {
  color: #ffffff;
  background: #f48223;
}
.pt-txt-slider-main {
  white-space: nowrap;
  letter-spacing: 0.6px;
  color: #ffffff;
  background: #f48223;
  padding: 10px 52px;
}
.jw-btn-bd-main {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 10px 23px;
  border: 2px solid #f48223;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #f48223;
  background-color: transparent;
  padding: 15px 36px 15px 36px;
}
.jw-btn-bd-main:hover,
.jw-btn-bd-main:focus,
.jw-btn-bd-main:active {
  color: #ffffff;
  background-color: #f48223;
}
.jw-btn-square {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Ubuntu;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  line-height: 20.48px;
  text-align: center;
  background-color: transparent;
  border: 0;
}
.jw-btn-white-square {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Ubuntu;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  line-height: 20.48px;
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 10px 23px;
  border: 2px solid #ffffff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #f48223;
  background: #ffffff;
  padding: 15px 35px;
}
.jw-btn-white-square:hover,
.jw-btn-white-square:focus,
.jw-btn-white-square:active {
  color: #ffffff;
  background: #f48223;
  border-color: #f48223;
}
.jw-btn-main-square {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Ubuntu;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  line-height: 20.48px;
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 10px 23px;
  border: 2px solid #f48223;
  color: #ffffff;
  background: #f48223;
}
.jw-btn-main-square:hover {
  color: #f48223;
  background: transparent;
}
.jw-fancybox-wrap a img {
  width: auto;
  height: auto;
}
.jw-fancybox-wrap a:hover {
  opacity: 0.8;
}
.jw-btn-bd-main.btn-white {
  margin-top: 30px;
  min-width: 150px;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.jw-btn-bd-main.btn-white:hover {
  color: #f48223;
  background-color: #ffffff;
  transition: 0.3s all;
}
.psgal_load_more {
  background-color: #f48223;
  border: 2px solid #f48223;
  color: #ffffff;
  font-size: 14px;
  width: 200px;
  height: 50px;
  font-weight: bold;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.psgal_load_more:hover {
  background-color: transparent;
  color: #f48223;
}
/* UTILITIES */
/* Reset */
a,
a:hover,
a:focus,
a:active,
a.active {
  transition: all 0.4s;
  outline: none;
  text-decoration: none;
  color: inherit;
}
ul {
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.ro-list-inline-block li {
  display: inline-block;
}
ul.ro-fancy-list .ro-fancy-item {
  margin: 30px 0;
  font-weight: 700;
}
ul.ro-fancy-list .ro-fancy-item i {
  font-size: 24px;
  color: #f48223;
  margin: 0;
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}
ul.ro-contact-info li {
  padding: 10px 0;
}
ul.ro-contact-info li strong {
  color: #111111;
}
ul.ro-contact-info li a {
  color: #f48223;
  text-decoration: underline;
}
ul.ro-contact-info li:before {
  font-family: FontAwesome;
  font-size: 18px;
  content: "";
  display: inline-block;
  margin: -5px 15px 0 0;
  vertical-align: middle;
}
ul.ro-contact-info li.ro-location:before {
  content: "\e155";
}
ul.ro-contact-info li.ro-phone:before {
  content: "\e131";
}
ul.ro-contact-info li.ro-fax:before {
  content: "\e198";
}
ul.ro-contact-info li.ro-email:before {
  content: "\e183";
}
ul.ro-contact-info li.ro-web:before {
  content: "\e1b8";
}
ul.ro-list-disc li {
  padding: 10px 0;
}
ul.ro-list-disc li:before {
  content: '•';
  font-size: 38px;
  color: #f48223;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
ul.ro-list-decimal.ro-circle li:before {
  color: #ffffff;
  background: #f48223;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
ul.ro-list-decimal li {
  padding: 10px 0;
}
ul.ro-list-decimal li:before {
  font-family: Montserrat;
  color: #f48223;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
ul.ro-list-decimal li:nth-child(1):before {
  content: '01';
}
ul.ro-list-decimal li:nth-child(2):before {
  content: '02';
}
ul.ro-list-decimal li:nth-child(3):before {
  content: '03';
}
ul.ro-list-decimal li:nth-child(4):before {
  content: '04';
}
ul.ro-list-decimal li:nth-child(5):before {
  content: '05';
}
ul.ro-list-decimal li:nth-child(6):before {
  content: '06';
}
ul.ro-list-decimal li:nth-child(7):before {
  content: '07';
}
ul.ro-list-decimal li:nth-child(8):before {
  content: '08';
}
ul.ro-list-decimal li:nth-child(9):before {
  content: '09';
}
/* Special div */
.ro-nopadding {
  padding: 0 !important;
}
.ro-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 512;
}
.ro-overlay-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.ro-col-nopadding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.ro-relative {
  position: relative;
}
.ro-absolute {
  position: absolute;
}
.ro-fixed {
  position: fixed;
}
.ro-middle {
  position: relative;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
.ro-center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.ro-center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.ro-ab-bottom {
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
}
.ro-ab-bottom:before,
.ro-ab-bottom:after {
  content: " ";
  display: table;
}
.ro-ab-bottom:after {
  clear: both;
}
.ro-bottom {
  position: relative;
  display: block;
  top: 100%;
  transform: translateY(-100%);
}
.ro-ab-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ro-ab-center:before,
.ro-ab-center:after {
  content: " ";
  display: table;
}
.ro-ab-center:after {
  clear: both;
}
.ro-cell-vertical-wrapper {
  width: 100%;
  height: 100%;
  display: table;
}
.ro-cell-vertical-wrapper .ro-cell-middle {
  display: table-cell;
  vertical-align: middle;
}
.ro-cell-vertical-wrapper .ro-cell-bottom {
  display: table-cell;
  vertical-align: bottom;
}
.ro-cell-vertical-wrapper .ro-cell-top {
  display: table-cell;
  vertical-align: top;
}
/* Space */
.ro-m-0 {
  margin: 0px;
}
.ro-mt-0 {
  margin-top: 0px;
}
.ro-mb-0 {
  margin-bottom: 0px;
}
.ro-ml-0 {
  margin-left: 0px;
}
.ro-mr-0 {
  margin-right: 0px;
}
.ro-p-0 {
  padding: 0px;
}
.ro-pt-0 {
  padding-top: 0px;
}
.ro-pb-0 {
  padding-bottom: 0px;
}
.ro-pl-0 {
  padding-left: 0px;
}
.ro-pr-0 {
  padding-right: 0px;
}
.ro-m-5 {
  margin: 5px;
}
.ro-mt-5 {
  margin-top: 5px;
}
.ro-mb-5 {
  margin-bottom: 5px;
}
.ro-ml-5 {
  margin-left: 5px;
}
.ro-mr-5 {
  margin-right: 5px;
}
.ro-p-5 {
  padding: 5px;
}
.ro-pt-5 {
  padding-top: 5px;
}
.ro-pb-5 {
  padding-bottom: 5px;
}
.ro-pl-5 {
  padding-left: 5px;
}
.ro-pr-5 {
  padding-right: 5px;
}
.ro-m-10 {
  margin: 10px;
}
.ro-mt-10 {
  margin-top: 10px;
}
.ro-mb-10 {
  margin-bottom: 10px;
}
.ro-ml-10 {
  margin-left: 10px;
}
.ro-mr-10 {
  margin-right: 10px;
}
.ro-p-10 {
  padding: 10px;
}
.ro-pt-10 {
  padding-top: 10px;
}
.ro-pb-10 {
  padding-bottom: 10px;
}
.ro-pl-10 {
  padding-left: 10px;
}
.ro-pr-10 {
  padding-right: 10px;
}
.ro-m-15 {
  margin: 15px;
}
.ro-mt-15 {
  margin-top: 15px;
}
.ro-mb-15 {
  margin-bottom: 15px;
}
.ro-ml-15 {
  margin-left: 15px;
}
.ro-mr-15 {
  margin-right: 15px;
}
.ro-p-15 {
  padding: 15px;
}
.ro-pt-15 {
  padding-top: 15px;
}
.ro-pb-15 {
  padding-bottom: 15px;
}
.ro-pl-15 {
  padding-left: 15px;
}
.ro-pr-15 {
  padding-right: 15px;
}
.ro-m-20 {
  margin: 20px;
}
.ro-mt-20 {
  margin-top: 20px;
}
.ro-mb-20 {
  margin-bottom: 20px;
}
.ro-ml-20 {
  margin-left: 20px;
}
.ro-mr-20 {
  margin-right: 20px;
}
.ro-p-20 {
  padding: 20px;
}
.ro-pt-20 {
  padding-top: 20px;
}
.ro-pb-20 {
  padding-bottom: 20px;
}
.ro-pl-20 {
  padding-left: 20px;
}
.ro-pr-20 {
  padding-right: 20px;
}
.ro-m-25 {
  margin: 25px;
}
.ro-mt-25 {
  margin-top: 25px;
}
.ro-mb-25 {
  margin-bottom: 25px;
}
.ro-ml-25 {
  margin-left: 25px;
}
.ro-mr-25 {
  margin-right: 25px;
}
.ro-p-25 {
  padding: 25px;
}
.ro-pt-25 {
  padding-top: 25px;
}
.ro-pb-25 {
  padding-bottom: 25px;
}
.ro-pl-25 {
  padding-left: 25px;
}
.ro-pr-25 {
  padding-right: 25px;
}
.ro-m-30 {
  margin: 30px;
}
.ro-mt-30 {
  margin-top: 30px;
}
.ro-mb-30 {
  margin-bottom: 30px;
}
.ro-ml-30 {
  margin-left: 30px;
}
.ro-mr-30 {
  margin-right: 30px;
}
.ro-p-30 {
  padding: 30px;
}
.ro-pt-30 {
  padding-top: 30px;
}
.ro-pb-30 {
  padding-bottom: 30px;
}
.ro-pl-30 {
  padding-left: 30px;
}
.ro-pr-30 {
  padding-right: 30px;
}
.ro-m-35 {
  margin: 35px;
}
.ro-mt-35 {
  margin-top: 35px;
}
.ro-mb-35 {
  margin-bottom: 35px;
}
.ro-ml-35 {
  margin-left: 35px;
}
.ro-mr-35 {
  margin-right: 35px;
}
.ro-p-35 {
  padding: 35px;
}
.ro-pt-35 {
  padding-top: 35px;
}
.ro-pb-35 {
  padding-bottom: 35px;
}
.ro-pl-35 {
  padding-left: 35px;
}
.ro-pr-35 {
  padding-right: 35px;
}
.ro-m-40 {
  margin: 40px;
}
.ro-mt-40 {
  margin-top: 40px;
}
.ro-mb-40 {
  margin-bottom: 40px;
}
.ro-ml-40 {
  margin-left: 40px;
}
.ro-mr-40 {
  margin-right: 40px;
}
.ro-p-40 {
  padding: 40px;
}
.ro-pt-40 {
  padding-top: 40px;
}
.ro-pb-40 {
  padding-bottom: 40px;
}
.ro-pl-40 {
  padding-left: 40px;
}
.ro-pr-40 {
  padding-right: 40px;
}
.ro-m-45 {
  margin: 45px;
}
.ro-mt-45 {
  margin-top: 45px;
}
.ro-mb-45 {
  margin-bottom: 45px;
}
.ro-ml-45 {
  margin-left: 45px;
}
.ro-mr-45 {
  margin-right: 45px;
}
.ro-p-45 {
  padding: 45px;
}
.ro-pt-45 {
  padding-top: 45px;
}
.ro-pb-45 {
  padding-bottom: 45px;
}
.ro-pl-45 {
  padding-left: 45px;
}
.ro-pr-45 {
  padding-right: 45px;
}
.ro-m-50 {
  margin: 50px;
}
.ro-mt-50 {
  margin-top: 50px;
}
.ro-mb-50 {
  margin-bottom: 50px;
}
.ro-ml-50 {
  margin-left: 50px;
}
.ro-mr-50 {
  margin-right: 50px;
}
.ro-p-50 {
  padding: 50px;
}
.ro-pt-50 {
  padding-top: 50px;
}
.ro-pb-50 {
  padding-bottom: 50px;
}
.ro-pl-50 {
  padding-left: 50px;
}
.ro-pr-50 {
  padding-right: 50px;
}
.ro-m-55 {
  margin: 55px;
}
.ro-mt-55 {
  margin-top: 55px;
}
.ro-mb-55 {
  margin-bottom: 55px;
}
.ro-ml-55 {
  margin-left: 55px;
}
.ro-mr-55 {
  margin-right: 55px;
}
.ro-p-55 {
  padding: 55px;
}
.ro-pt-55 {
  padding-top: 55px;
}
.ro-pb-55 {
  padding-bottom: 55px;
}
.ro-pl-55 {
  padding-left: 55px;
}
.ro-pr-55 {
  padding-right: 55px;
}
.ro-m-60 {
  margin: 60px;
}
.ro-mt-60 {
  margin-top: 60px;
}
.ro-mb-60 {
  margin-bottom: 60px;
}
.ro-ml-60 {
  margin-left: 60px;
}
.ro-mr-60 {
  margin-right: 60px;
}
.ro-p-60 {
  padding: 60px;
}
.ro-pt-60 {
  padding-top: 60px;
}
.ro-pb-60 {
  padding-bottom: 60px;
}
.ro-pl-60 {
  padding-left: 60px;
}
.ro-pr-60 {
  padding-right: 60px;
}
.ro-m-65 {
  margin: 65px;
}
.ro-mt-65 {
  margin-top: 65px;
}
.ro-mb-65 {
  margin-bottom: 65px;
}
.ro-ml-65 {
  margin-left: 65px;
}
.ro-mr-65 {
  margin-right: 65px;
}
.ro-p-65 {
  padding: 65px;
}
.ro-pt-65 {
  padding-top: 65px;
}
.ro-pb-65 {
  padding-bottom: 65px;
}
.ro-pl-65 {
  padding-left: 65px;
}
.ro-pr-65 {
  padding-right: 65px;
}
.ro-m-70 {
  margin: 70px;
}
.ro-mt-70 {
  margin-top: 70px;
}
.ro-mb-70 {
  margin-bottom: 70px;
}
.ro-ml-70 {
  margin-left: 70px;
}
.ro-mr-70 {
  margin-right: 70px;
}
.ro-p-70 {
  padding: 70px;
}
.ro-pt-70 {
  padding-top: 70px;
}
.ro-pb-70 {
  padding-bottom: 70px;
}
.ro-pl-70 {
  padding-left: 70px;
}
.ro-pr-70 {
  padding-right: 70px;
}
.ro-m-75 {
  margin: 75px;
}
.ro-mt-75 {
  margin-top: 75px;
}
.ro-mb-75 {
  margin-bottom: 75px;
}
.ro-ml-75 {
  margin-left: 75px;
}
.ro-mr-75 {
  margin-right: 75px;
}
.ro-p-75 {
  padding: 75px;
}
.ro-pt-75 {
  padding-top: 75px;
}
.ro-pb-75 {
  padding-bottom: 75px;
}
.ro-pl-75 {
  padding-left: 75px;
}
.ro-pr-75 {
  padding-right: 75px;
}
.ro-m-80 {
  margin: 80px;
}
.ro-mt-80 {
  margin-top: 80px;
}
.ro-mb-80 {
  margin-bottom: 80px;
}
.ro-ml-80 {
  margin-left: 80px;
}
.ro-mr-80 {
  margin-right: 80px;
}
.ro-p-80 {
  padding: 80px;
}
.ro-pt-80 {
  padding-top: 80px;
}
.ro-pb-80 {
  padding-bottom: 80px;
}
.ro-pl-80 {
  padding-left: 80px;
}
.ro-pr-80 {
  padding-right: 80px;
}
.ro-m-85 {
  margin: 85px;
}
.ro-mt-85 {
  margin-top: 85px;
}
.ro-mb-85 {
  margin-bottom: 85px;
}
.ro-ml-85 {
  margin-left: 85px;
}
.ro-mr-85 {
  margin-right: 85px;
}
.ro-p-85 {
  padding: 85px;
}
.ro-pt-85 {
  padding-top: 85px;
}
.ro-pb-85 {
  padding-bottom: 85px;
}
.ro-pl-85 {
  padding-left: 85px;
}
.ro-pr-85 {
  padding-right: 85px;
}
.ro-m-90 {
  margin: 90px;
}
.ro-mt-90 {
  margin-top: 90px;
}
.ro-mb-90 {
  margin-bottom: 90px;
}
.ro-ml-90 {
  margin-left: 90px;
}
.ro-mr-90 {
  margin-right: 90px;
}
.ro-p-90 {
  padding: 90px;
}
.ro-pt-90 {
  padding-top: 90px;
}
.ro-pb-90 {
  padding-bottom: 90px;
}
.ro-pl-90 {
  padding-left: 90px;
}
.ro-pr-90 {
  padding-right: 90px;
}
.ro-m-95 {
  margin: 95px;
}
.ro-mt-95 {
  margin-top: 95px;
}
.ro-mb-95 {
  margin-bottom: 95px;
}
.ro-ml-95 {
  margin-left: 95px;
}
.ro-mr-95 {
  margin-right: 95px;
}
.ro-p-95 {
  padding: 95px;
}
.ro-pt-95 {
  padding-top: 95px;
}
.ro-pb-95 {
  padding-bottom: 95px;
}
.ro-pl-95 {
  padding-left: 95px;
}
.ro-pr-95 {
  padding-right: 95px;
}
/* Video */
.ro-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  position: relative;
  width: 100%;
}
.ro-video-bg:before,
.ro-video-bg:after {
  content: " ";
  display: table;
}
.ro-video-bg:after {
  clear: both;
}
.ro-video-h .ro-video-bg {
  width: auto;
  height: 100%;
}
/* SECTION */
.main-content .jw-become-section {
  background-position: top right !important;
}
#rev_slider_1_1_wrapper .hermes.tparrows.tp-leftarrow,
#rev_slider_2_1_wrapper .hermes.tparrows.tp-leftarrow,
#rev_slider_1_1_wrapper .tp-rightarrow.hermes.tparrows,
#rev_slider_2_1_wrapper .tp-rightarrow.hermes.tparrows {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
#rev_slider_1_1_wrapper .hermes.tparrows.tp-leftarrow:hover:before,
#rev_slider_2_1_wrapper .hermes.tparrows.tp-leftarrow:hover:before,
#rev_slider_1_1_wrapper .tp-rightarrow.hermes.tparrows:hover:before,
#rev_slider_2_1_wrapper .tp-rightarrow.hermes.tparrows:hover:before {
  opacity: 1;
  -webkit-transform: translatex(0px);
  transform: translatex(0px);
}
#rev_slider_1_1_wrapper .hermes.tparrows.tp-leftarrow:hover .tp-arr-allwrapper .tp-arr-imgholder,
#rev_slider_2_1_wrapper .hermes.tparrows.tp-leftarrow:hover .tp-arr-allwrapper .tp-arr-imgholder,
#rev_slider_1_1_wrapper .tp-rightarrow.hermes.tparrows:hover .tp-arr-allwrapper .tp-arr-imgholder,
#rev_slider_2_1_wrapper .tp-rightarrow.hermes.tparrows:hover .tp-arr-allwrapper .tp-arr-imgholder {
  transform: rotate(90deg) translatex(0px) !important;
  -webkit-transform: rotate(90deg) translatex(0px) !important;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  opacity: 1;
}
#rev_slider_1_1_wrapper .hermes.tparrows.tp-leftarrow:before,
#rev_slider_2_1_wrapper .hermes.tparrows.tp-leftarrow:before,
#rev_slider_1_1_wrapper .tp-rightarrow.hermes.tparrows:before,
#rev_slider_2_1_wrapper .tp-rightarrow.hermes.tparrows:before {
  content: "Prev Post" !important;
  font-family: Poppins !important;
  font-size: 12px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
#rev_slider_1_1_wrapper .hermes.tparrows.tp-leftarrow .tp-arr-allwrapper,
#rev_slider_2_1_wrapper .hermes.tparrows.tp-leftarrow .tp-arr-allwrapper,
#rev_slider_1_1_wrapper .tp-rightarrow.hermes.tparrows .tp-arr-allwrapper,
#rev_slider_2_1_wrapper .tp-rightarrow.hermes.tparrows .tp-arr-allwrapper {
  overflow: initial;
}
#rev_slider_1_1_wrapper .hermes.tparrows.tp-leftarrow .tp-arr-allwrapper .tp-arr-titleholder,
#rev_slider_2_1_wrapper .hermes.tparrows.tp-leftarrow .tp-arr-allwrapper .tp-arr-titleholder,
#rev_slider_1_1_wrapper .tp-rightarrow.hermes.tparrows .tp-arr-allwrapper .tp-arr-titleholder,
#rev_slider_2_1_wrapper .tp-rightarrow.hermes.tparrows .tp-arr-allwrapper .tp-arr-titleholder {
  display: none;
}
#rev_slider_1_1_wrapper .hermes.tparrows.tp-leftarrow .tp-arr-allwrapper .tp-arr-imgholder,
#rev_slider_2_1_wrapper .hermes.tparrows.tp-leftarrow .tp-arr-allwrapper .tp-arr-imgholder,
#rev_slider_1_1_wrapper .tp-rightarrow.hermes.tparrows .tp-arr-allwrapper .tp-arr-imgholder,
#rev_slider_2_1_wrapper .tp-rightarrow.hermes.tparrows .tp-arr-allwrapper .tp-arr-imgholder {
  left: 20px;
  top: -140px;
  height: 160px;
  width: 120px;
  transform: rotate(90deg) translatex(-20px) !important;
  opacity: 0;
}
.tp-bullets {
  display: none;
}
#rev_slider_1_1_wrapper .tp-rightarrow.hermes.tparrows:before,
#rev_slider_2_1_wrapper .tp-rightarrow.hermes.tparrows:before {
  content: "Next Post" !important;
}
#rev_slider_1_1_wrapper .tp-rightarrow.hermes.tparrows .tp-arr-allwrapper .tp-arr-imgholder,
#rev_slider_2_1_wrapper .tp-rightarrow.hermes.tparrows .tp-arr-allwrapper .tp-arr-imgholder {
  right: 20px;
  bottom: -24px;
  top: initial;
  left: initial;
  transform: rotate(90deg) translatex(20px) !important;
}
@media (max-width: 768px - 1) {
  .hermes.tparrows {
    display: none !important;
  }
  .tp-bullets {
    display: block !important;
  }
}
body.img-gray .jw-logo img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
body.img-gray .jw-donation-wrap .jw-donation:hover .jw-overlay {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}
body.img-gray img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
body.img-gray img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
body.img-gray .donation-item .donation-thumbnail:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-delay: 0.5s;
  /* Safari */
  transition-delay: 0.5s;
}
body.img-gray .donation-item .donation-content .donation-days-left span {
  color: #dddddd;
}
body.img-gray .donation-item .donation-content .donation-title a {
  color: #ffffff;
}
body.img-gray .donation-item .donation-content .donation-excerpt {
  color: #bbbbbb;
}
body.img-gray .donation-item .donation-content .donation-money .box_money {
  color: #eeeeee;
}
.search-fix {
  position: absolute !important;
  top: 11%;
  left: 0;
  width: 100%;
  z-index: 10;
}
.search_causes {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  padding: 45px 0px 60px 0px;
  margin: 0 105px;
}
.search_causes .title-left {
  left: -80px;
  background-color: #f48223;
}
.search_causes .title-right {
  right: -80px;
  background-color: #222222;
}
.search_causes .description {
  font-size: 12px;
  color: #e4e4e4;
  width: 80%;
  margin: 0 auto;
  font-family: Poppins;
  margin-bottom: 17px;
}
.search_causes form {
  width: 80%;
  margin: 0 auto;
}
.search_causes form .cat-causes {
  width: 30%;
}
.search_causes form .input-causes {
  width: 60%;
}
.search_causes form .submit-causes {
  width: 8%;
  margin-left: -5px;
}
.search_causes form .cat-causes,
.search_causes form .input-causes,
.search_causes form .submit-causes {
  display: inline-block;
  vertical-align: middle;
}
.search_causes form .cat-causes ::-webkit-input-placeholder,
.search_causes form .input-causes ::-webkit-input-placeholder,
.search_causes form .submit-causes ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #8c8c8c;
}
.search_causes form .cat-causes ::-moz-placeholder,
.search_causes form .input-causes ::-moz-placeholder,
.search_causes form .submit-causes ::-moz-placeholder {
  /* Firefox 19+ */
  color: #8c8c8c;
}
.search_causes form .cat-causes :-ms-input-placeholder,
.search_causes form .input-causes :-ms-input-placeholder,
.search_causes form .submit-causes :-ms-input-placeholder {
  /* IE 10+ */
  color: #8c8c8c;
}
.search_causes form .cat-causes :-moz-placeholder,
.search_causes form .input-causes :-moz-placeholder,
.search_causes form .submit-causes :-moz-placeholder {
  /* Firefox 18- */
  color: #8c8c8c;
}
.search_causes form .cat-causes select,
.search_causes form .input-causes select,
.search_causes form .submit-causes select,
.search_causes form .cat-causes input,
.search_causes form .input-causes input,
.search_causes form .submit-causes input {
  background-color: #ffffff;
  font-family: Poppins;
  color: #8c8c8c;
  font-size: 12px;
  border-radius: 0px;
  height: 50px;
  border: 1px solid #ffffff;
  margin: 0px;
  letter-spacing: 0.35px;
}
.search_causes form .cat-causes button,
.search_causes form .input-causes button,
.search_causes form .submit-causes button {
  width: 60px;
  height: 50px;
  background-color: #f48223;
  color: #ffffff;
  border: 1px solid #f48223;
  margin: 0px;
}
.search_causes .title-right,
.search_causes .title-left {
  font-size: 14px;
  color: #ffffff;
  font-family: Poppins;
  position: absolute;
  top: 70px;
  height: 60px;
  width: 200px;
  text-align: center;
  line-height: 60px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  letter-spacing: 1px;
  font-weight: 500;
}
.jw-become-section .container {
  position: relative;
}
.jw-become-section .wpb_single_image.jw-image-total-donation {
  max-width: 350px;
  margin: auto;
}
.jw-become-section .wpb_single_image .vc_single_image-wrapper > img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-become-section .jw-donation-total-wrap {
  padding: 70px 80px 30px 175px;
  position: relative;
}
.jw-become-section .jw-donation-total-wrap .jws_small_title {
  margin-bottom: 2px;
  color: #f48223;
  text-transform: uppercase;
  font-size: 20px;
}
.jw-become-section .jw-donation-total-wrap .jw-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.16px;
  color: #333333;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.jw-become-section .jw-donation-total-wrap .jw-title .jw-small-text {
  font-size: 22px;
  line-height: 36px;
}
.jw-become-section .jw-donation-total-wrap .jw-title .jw-so-far {
  font-size: 30px;
  line-height: 44px;
  color: #ffffff;
}
.jw-become-section .jw-donation-total-wrap .jw-sujwext {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color: #666666;
  margin-bottom: 20px;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total {
  margin-bottom: 80px;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total .jw-goal .jw-goal-total,
.jw-become-section .jw-donation-total-wrap .tb-donation-total .jw-raised .jw-raised-total {
  color: #ffffff;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 .jw-donation-link {
  margin-top: 51px;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 .jw-donation-link .give-btn {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: #f48223;
  padding: 15px 38px 15px 38px;
  height: 50px;
  border: 2px solid #f48223;
  border-radius: 3px;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 .jw-donation-link .give-btn:hover {
  color: #f48223;
  background-color: #ffffff;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul {
  margin-top: 70px;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li {
  float: left;
  padding: 42px 35px;
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  width: 200px;
  position: absolute;
  z-index: 999;
  font-family: Poppins;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li span.donate_amount {
  display: block;
  font-size: 28px;
  font-weight: bold;
  margin-top: 8px;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li:nth-child(2n+1) {
  background-position: center right !important;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li:nth-child(2n+1):before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.9);
  z-index: -1;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li:nth-child(2n):before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: rgba(244, 130, 35, 0.9);
  z-index: -1;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li.box_two {
  left: 375px;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li.box_three {
  left: 575px;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 .jws_processbar {
  position: absolute;
  left: 0px;
  bottom: -119px;
  height: 114%;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 .jws_processbar .jws_process {
  background: #ebebeb;
  left: 0px;
  width: 50px;
  height: 100%;
  margin-right: 10px;
  float: left;
  position: relative;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 .jws_processbar .jws_process .need_bar {
  position: absolute;
  width: 50px;
  background: #111111;
  bottom: 0;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 .jws_processbar .jws_process .need_bar h6 {
  color: #ffffff;
  font-size: 12px;
  margin-top: 18px;
  text-align: center;
  font-weight: 500;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 .jws_processbar .jws_process .raise_bar {
  position: absolute;
  width: 50px;
  background: #f48223;
  bottom: 0;
}
.jw-become-section .jw-donation-total-wrap .tb-donation-total-2 .jws_processbar .jws_process .raise_bar h6 {
  color: #ffffff;
  font-size: 12px;
  margin-top: 18px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 0px;
}
.jw-become-section .jw-become-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px 35px 55px;
}
.jw-become-section .jw-become-wrap .jw-become {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 730px;
  margin: auto;
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  padding: 75px 125px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-become-section .jw-become-wrap .jw-become .jw-sujwitle {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16px;
  color: #ffffff;
  margin-bottom: 15px;
}
.jw-become-section .jw-become-wrap .jw-become .jw-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: 0.16px;
  color: #ffffff;
  margin-bottom: 35px;
}
.jw-become-section .jw-become-wrap .jw-become .jw-btn-sujwext {
  position: relative;
  padding-left: 50%;
  text-align: left;
}
.jw-become-section .jw-become-wrap .jw-become .jw-btn-sujwext .jw-btn-lager-main {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 15px 40px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.jw-become-section .jw-become-wrap .jw-become .jw-btn-sujwext .jw-sujwext {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #e2e2e2;
}
@media (max-width: 1200px + 280) and (min-width: 1200px + 80) {
  .search-fix {
    top: 9%;
  }
}
@media (max-width: 1200px + 79) {
  .search-fix {
    position: relative !important;
    margin-top: 30px !important;
  }
}
@media (max-width: 1200px - 1) {
  .jw-become-section .jw-donation-total-wrap .tb-donation-total-2 {
    margin-bottom: 160px;
  }
  .jw-become-section .jw-donation-total-wrap .tb-donation-total-2 .jws_processbar {
    bottom: -7px;
  }
}
@media (max-width: 768px - 1) {
  .jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li {
    float: left;
    padding: 40px 20px;
    text-align: center;
    color: #FFFFFF;
    font-size: 12px;
    width: 160px;
    position: absolute;
    z-index: 999;
  }
  .jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li.box_two {
    left: 320px;
  }
  .jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li.box_three {
    left: 480px;
  }
  .jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li span.donate_amount {
    font-size: 22px;
  }
  .jw-become-section .jw-donation-total-wrap {
    padding: 70px 35px 30px 160px;
  }
  .jw-become-section .wpb_single_image .vc_figure {
    width: 100%;
  }
  .jw-become-section .wpb_single_image .vc_single_image-wrapper {
    width: 100%;
  }
}
@media (max-width: 640px + 30) {
  .jw-become-section .jw-donation-total-wrap {
    padding: 70px 10px 30px 10px;
  }
  .jw-become-section .jw-become-wrap .jw-become .jw-sujwitle {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .jw-become-section .jw-become-wrap .jw-become .jw-btn-sujwext {
    display: none;
  }
  .jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul {
    display: block;
  }
  .jw-become-section .jw-donation-total-wrap .tb-donation-total-2 .jws_processbar {
    display: none;
  }
  .jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li {
    width: 33.33%;
    position: static;
    margin-bottom: 20px;
    padding: 40px 0px;
    font-size: 11px;
  }
  .jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li span.donate_amount {
    font-size: 18px;
  }
}
.vc_row.jws-become-volunteer {
  position: absolute;
  padding: 85px 100px 80px 100px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
.vc_row.jws-become-volunteer .volunteer-left {
  float: left;
  width: 63%;
  color: #ffffff;
  font-size: 14px;
}
.vc_row.jws-become-volunteer .volunteer-left h3 {
  color: #ffffff;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.vc_row.jws-become-volunteer .volunteer-left h3 span {
  color: #f48223;
}
.vc_row.jws-become-volunteer .volunteer-left p {
  font-size: 14px;
  line-height: 26px;
}
.vc_row.jws-become-volunteer .volunteer-right {
  float: left;
  width: 30%;
  text-align: right;
}
.vc_row.jws-become-volunteer .volunteer-right a {
  padding: 12px 22px 11px 22px;
  width: 155px;
  margin-top: 36px;
  transform: rotate(270deg) scale(1.1);
  -webkit-transform: rotate(270deg) scale(1.1);
  -moz-transform: rotate(270deg) scale(1.1);
  -o-transform: rotate(270deg) scale(1.1);
  font-family: Poppins;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 11px;
}
@media (max-width: 992px - 1) {
  .jws-volunteer-box .vc_col-sm-8 {
    width: 100%;
  }
}
@media (max-width: 480px - 1) {
  .vc_row.jws-become-volunteer {
    padding: 0px 10px 55px 10px;
  }
}
.jws-event-wrap {
  margin-top: 50px;
  padding-right: 100px;
}
.jws-event-wrap .jws-title-small-custom {
  margin-bottom: 10px;
  color: #f48223;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4px;
}
.jws-event-wrap .jws-title-event {
  text-transform: uppercase;
  font-size: 35px;
  letter-spacing: 0.2px;
  margin-bottom: 19px;
}
.jws-event-wrap .jws-sujwext {
  margin-bottom: 45px;
  font-size: 15px;
}
.jws-event-wrap .jw-btn-bd-main {
  margin-bottom: 25px;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 600;
  padding: 14px 35px 13px 33px;
  letter-spacing: 0.4px;
}
@media (max-width: 768px - 1) {
  .jws-event-wrap {
    padding-right: 0px;
  }
}
@media (max-width: 640px - 1) {
  .vc_row.jws-become-volunteer {
    padding: 15px 15px 50px 15px !important;
  }
  .vc_row.jws-become-volunteer .volunteer-left {
    width: 100%;
  }
  .vc_row.jws-become-volunteer .volunteer-right {
    width: 100%;
    text-align: left;
  }
  .vc_row.jws-become-volunteer .volunteer-right a {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}
.donate_service .service_box {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}
.donate_service .service_box i {
  color: #f48223;
  font-size: 60px;
}
.donate_service .service_box p {
  line-height: 26px;
}
.donate_service .service_box h4 {
  font-size: 20px;
  color: #ffffff;
  position: relative;
  padding-bottom: 31px;
  text-transform: uppercase;
}
.donate_service .service_box h4:after {
  content: "";
  margin-top: 25px;
  display: block;
  position: absolute;
  bottom: -4px;
  overflow: hidden;
  background-image: url(https://mshikamano.co.ug/wp-content/themes/pain/assets/images/service-line.png);
  background-repeat: no-repeat;
  height: 20px;
}
.donate_service .service_box .jw-btn-bd-main.btn-service-box {
  margin-top: 30px;
  min-width: 150px;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: Poppins;
  font-size: 12px;
  font-weight: bold;
}
.donate_service .service_box .jw-btn-bd-main.btn-service-box:hover {
  border: 2px solid #f48223;
}
.donate_service .service_box.box_one h4:after {
  width: 60%;
  right: -10%;
  background-position: top left;
}
.donate_service .service_box.box_two h4:after {
  width: 100%;
  background-position: top center;
}
.donate_service .service_box.box_three h4:after {
  width: 60%;
  left: -10%;
  background-position: top right;
}
@media (max-width: 768px - 1) {
  .donate_service .service_box.box_one h4:after,
  .donate_service .service_box.box_three h4:after {
    background-position: top center;
    width: 100%;
    right: 0;
    left: 0;
  }
}
@media (max-width: 1200px - 1) {
  .main-content .jw-become-section {
    background-image: none !important;
    padding-bottom: 100px !important;
  }
  .jws_processbar {
    bottom: -50px !important;
  }
  .jw-become-section .jw-total-donation-wrap > .vc_column-inner {
    margin-top: 0 !important;
  }
  .jw-become-section .jw-total-donation-wrap .jw-donation-total-wrap {
    top: 0;
  }
}
@media (max-width: 1200px + 160) and (min-width: 1200px) {
  .jw-become-section .jw-donation-total-wrap {
    padding: 70px 180px 30px 175px;
  }
}
@media (max-width: 992px - 1) {
  .width100 {
    width: 100% !important;
  }
  .jw-become-section .jw-become-wrap .jw-become {
    padding: 75px 100px;
  }
}
@media (max-width: 768px - 1) {
  .jw-become-section .jw-become-wrap .jw-become {
    padding: 50px 60px;
  }
}
@media (max-width: 640px - 1) {
  .jw-become-section .wpb_single_image.jw-image-total-donation {
    display: none;
  }
  .jw-become-section .jw-become-wrap .jw-become {
    padding: 15px;
  }
  .jw-become-section .jw-become-wrap .jw-become .jw-sujwitle {
    margin-bottom: 10px;
  }
  .jw-become-section .jw-become-wrap .jw-become .jw-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }
}
.jw-children-section .jw-child-heading {
  font-family: Montserrat;
  font-size: 26px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 1.6px;
  color: #333333;
}
.jw-children-section .jw-child-heading .jw-large {
  font-size: 55px;
  text-transform: uppercase;
}
.jw-children-section .jw-btn-about-info {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #ffffff;
  background: #f48223;
  padding: 15px 40px;
  border: 2px solid #f48223;
}
.jw-children-section .jw-btn-about-info:hover,
.jw-children-section .jw-btn-about-info:focus,
.jw-children-section .jw-btn-about-info:active {
  color: #f48223;
  background: transparent;
  border-color: #f48223;
}
.jw-children-section .jw-child-img {
  position: relative;
}
.jw-children-section .jw-child-img > figure {
  position: absolute;
  top: -190px;
  left: 0;
}
@media (max-width: 768px - 1) {
  .jw-children-section .jw-child-img > figure {
    position: relative;
    top: 0;
  }
}
@media (max-width: 480px - 1) {
  .jw-children-section .jw-child-heading .jw-large {
    font-size: 52px;
  }
  .jw-become-section .jw-donation-total-wrap .tb-donation-total-2 ul li {
    width: 100%;
  }
}
.jw-children-section2 .jw-child-heading {
  font-family: Ubuntu;
  font-size: 36px;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: 0.04em;
  color: #444444;
}
.jw-children-section2 .jw-child-heading .jw-large {
  font-size: 60px;
  font-weight: 700;
  line-height: 90px;
  text-transform: uppercase;
}
.jw-children-section2 .jw-btn-about-info {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Ubuntu;
  font-size: 13px;
  outline: none;
  line-height: 20.48px;
  text-align: center;
  background-color: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: #888888;
  padding: 16px 40px;
  border: 2px solid #888888;
}
.jw-children-section2 .jw-btn-about-info:hover,
.jw-children-section2 .jw-btn-about-info:focus,
.jw-children-section2 .jw-btn-about-info:active {
  color: #ffffff;
  background: #f48223;
  border-color: #f48223;
}
.jw-children-section2 .jw-child-img {
  position: relative;
}
.jw-children-section2 .jw-child-img > figure {
  position: absolute;
  top: -190px;
  left: 0;
  z-index: 1;
}
@media (max-width: 768px - 1) {
  body .jw-children-section2 {
    padding: 90px 0 30px !important;
  }
  .jw-children-section2 .jw-child-heading .jw-large {
    font-size: 56px;
  }
  .jw-children-section2 .jw-child-img {
    display: none;
  }
}
.jw-count-up-section {
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-count-up-section2 {
  z-index: 9;
}
.jw-count-up-section2 .jw-counter-up-wrap .jw-counter .jw-number {
  font-family: Ubuntu;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-bottom: 0;
}
.jw-count-up-section2 .jw-counter-up-wrap .jw-counter .jw-number:after {
  display: none;
}
.jw-count-up-section2 .jw-counter-up-wrap .jw-counter .jw-title {
  font-family: Ubuntu;
  position: relative;
  letter-spacing: 0.16em;
  padding-bottom: 30px;
}
.jw-count-up-section2 .jw-counter-up-wrap .jw-counter .jw-title:after {
  content: "\'\'\'\'\'\'";
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 0.5;
  color: #f48223;
  height: 4px;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 768px - 1) {
  body .jw-count-up-section2 {
    margin-top: 0 !important;
  }
}
.jw-recent-donaters-section .jw-heading-donater > .vc_column-inner {
  color: #ffffff;
  padding: 0 40px;
}
.jw-recent-donaters-section .jw-donaters-header {
  position: relative;
  max-width: 1020px;
  padding-left: 50px;
}
.jw-recent-donaters-section .jw-donaters-header .jw-donaters-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.16px;
  color: #333333;
  margin-bottom: 41px;
  padding: 10px 0;
}
.jw-recent-donaters-section .jw-donaters-header .jw-donaters-title > span {
  font-size: 20px;
}
.jw-recent-donaters-section .jw-donaters-header .jw-btn-join-now {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16px;
  color: #ffffff;
  background: #f48223;
  padding: 12px 35px;
  border: 2px solid #f48223;
}
.jw-recent-donaters-section .jw-donaters-header .jw-btn-join-now:hover {
  color: #f48223;
  background: transparent;
}
.jw-recent-donaters-section .jw-donaters-carousel {
  position: relative;
  max-width: 1020px;
  padding-left: 50px;
}
.jw-recent-donaters-section .jw-donaters-carousel .owl-controls .owl-nav {
  position: absolute;
  left: -195px;
  bottom: 0;
}
.jw-recent-donaters-section .jw-donaters-carousel .owl-controls .owl-nav .owl-prev {
  color: #333333;
  background: #ffffff;
}
.jw-recent-donaters-section .jw-donaters-carousel .owl-controls .owl-nav .owl-prev:hover {
  color: #ffffff;
  background: #f48223;
}
@media (max-width: 1200px - 1) {
  .jw-recent-donaters-section .jw-heading-donater {
    text-align: center;
  }
  .jw-recent-donaters-section .jw-heading-donater h2 {
    text-align: center !important;
  }
  .jw-recent-donaters-section .jw-donaters-header,
  .jw-recent-donaters-section .jw-donaters-carousel {
    padding: 0;
  }
}
@media (max-width: 640px - 1) {
  .jw-recent-donaters-section .jw-donaters-header .jw-donaters-title {
    margin-bottom: 30px;
    padding: 0;
  }
  .jw-recent-donaters-section .jw-donaters-header .jw-btn-join-now {
    position: relative;
  }
}
.jw-recent-donaters-section2 .jw-heading-donater > .vc_column-inner {
  letter-spacing: 0.04em;
  color: #ffffff;
  background: #f48223;
  padding: 40px 25px 80px;
}
.jw-recent-donaters-section2 .jw-heading-donater > .vc_column-inner strong {
  font-weight: 500;
}
.jw-recent-donaters-section2 .jw-donaters-carousel {
  position: relative;
  padding-top: 70px;
}
.jw-recent-donaters-section2 .jw-donaters-carousel .jw-donater-item {
  padding-left: 105px;
}
.jw-recent-donaters-section2 .jw-donaters-carousel .jw-donater-item .jw-thumb {
  background: #ffffff;
  padding: 5px;
}
.jw-recent-donaters-section2 .jw-donaters-carousel .jw-donater-item .jw-thumb:before {
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.jw-recent-donaters-section2 .jw-donaters-carousel .jw-donater-item .jw-name {
  font-family: Roboto Slab;
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  color: #343434;
  margin-top: 10px;
}
.jw-recent-donaters-section2 .jw-donaters-carousel .jw-donater-item .jw-meta {
  color: #888888;
  background: transparent;
  margin-bottom: 10px;
  padding: 0;
}
.jw-recent-donaters-section2 .jw-donaters-carousel .jw-donater-item .jw-donated {
  font-family: Ubuntu;
  font-size: 13px;
  font-weight: 500;
  color: #f48223;
  margin-bottom: 10px;
}
.jw-recent-donaters-section2 .jw-donaters-carousel .owl-controls .owl-nav {
  position: absolute;
  left: -125px;
  bottom: -30px;
}
.jw-recent-donaters-section2 .jw-donaters-carousel .owl-controls .owl-nav .owl-prev,
.jw-recent-donaters-section2 .jw-donaters-carousel .owl-controls .owl-nav .owl-next {
  color: #333333;
  background: #ffffff;
  height: 30px;
  line-height: 30px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.jw-recent-donaters-section2 .jw-donaters-carousel .owl-controls .owl-nav .owl-prev:hover,
.jw-recent-donaters-section2 .jw-donaters-carousel .owl-controls .owl-nav .owl-next:hover {
  color: #ffffff;
  background: #333333;
}
@media (max-width: 1200px - 1) {
  .jw-recent-donaters-section2 .jw-heading-donater {
    text-align: center;
  }
  .jw-recent-donaters-section2 .jw-heading-donater .vc_column-inner {
    padding: 0;
    background: transparent;
  }
  .jw-recent-donaters-section2 .jw-heading-donater .vc_column-inner p {
    color: #555555 !important;
  }
  .jw-recent-donaters-section2 .jw-heading-donater h2 {
    color: #303030 !important;
    text-align: center !important;
  }
  .jw-recent-donaters-section2 .jw-donaters-header,
  .jw-recent-donaters-section2 .jw-donaters-carousel {
    padding: 0;
  }
}
.jw-client-section {
  text-align: center;
}
.jw-client-section .vc_item {
  position: relative;
}
.jw-client-section .vc_item .vc_inner > a {
  display: inline-block;
  width: 100%;
}
.jw-client-section .vc_item .vc_inner > a > img {
  width: auto;
  height: auto;
}
.jw-client-section .vc_item .vc_inner > a:hover > img {
  opacity: 0.85;
}
.jw-client-section .vc_item:after {
  content: "'''";
  position: absolute;
  top: 50%;
  right: -9px;
  font-size: 21px;
  letter-spacing: 4px;
  color: #ffffff;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.jw-client-section .vc_item:last-child:after {
  display: none;
}
.jw-client-section.jw-style-2 .vc_item:after {
  color: #909090;
}
.jw-donation-box-section {
  text-align: center;
}
.jw-donation-box-section .jw-donation-wrap {
  margin: 0 10px 10px 0;
}
.jw-donation-box-section .jw-donation-wrap:last-child {
  margin-right: 0;
}
@media (max-width: 1200px - 1) {
  body .margintop03 {
    margin-top: 0px !important;
  }
  body .margintop0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .jw-donation-box-section .jw-donation-wrap {
    margin: 0 10px 10px 10px;
  }
  .jw-donation-box-section .jw-donation-wrap:last-child {
    margin-right: 10px;
  }
}
@media (max-width: 768px - 1) {
  .search_causes .description {
    padding: 20px;
  }
  .search_causes form {
    padding: 20px;
  }
  .search_causes form .cat-causes,
  .search_causes form .input-causes,
  .search_causes form .submit-causes {
    width: 100%;
    margin-bottom: 10px;
  }
  .search_causes form .submit-causes {
    margin-left: 0;
  }
  .vc_row.jw-donation-box-section {
    padding-top: 90px !important;
  }
}
@media (max-width: 480px - 1) {
  .jws-section-campaign .campaign-header .jws-text-header {
    font-size: 10px !important;
  }
  .jw-donation-box-section .jw-donation-wrap {
    display: block;
    margin: 0 auto 10px auto;
  }
  .jw-donation-box-section .jw-donation-wrap:last-child {
    margin-right: auto;
  }
  .jw-donation-box-section .jw-organization-heading {
    font-size: 36px !important;
    line-height: 50px !important;
  }
}
.jw-services-section {
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-services-section > .wpb_column > .vc_column-inner > .wpb_wrapper {
  line-height: 0;
}
.jw-services-section .jw-service-wrap {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
@media (max-width: 640px - 1) {
  .jw-upcoming-event-section .container > .wpb_column > .vc_column-inner {
    margin-top: 0 !important;
  }
  .jw-upcoming-event-section .container > .wpb_column > .vc_column-inner .tbdonations_upcoming .donation-item {
    padding: 40px 0 0;
  }
  .jw-upcoming-event-section .container > .wpb_column > .vc_column-inner .tbdonations_upcoming .donation-item .jw-content ul.jw-meta > li {
    margin-right: 10px;
  }
  .jw-upcoming-event-section .container > .wpb_column > .vc_column-inner .tbdonations_upcoming .donation-item .jw-content ul.jw-meta > li:last-child {
    margin-right: 0;
  }
  .jw-upcoming-event-section .container > .wpb_column > .vc_column-inner .tbdonations_upcoming .donation-item .jw-content .jw-title {
    font-size: 20px;
  }
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  padding-right: 210px;
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .jw-title {
  font-family: Ubuntu;
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 15px;
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .jw-sujwext {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.04em;
  color: #dddddd;
  margin-bottom: 50px;
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 ul {
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 ul > li {
  display: inline-block;
  font-family: Roboto Slab;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: #333333;
  padding: 12px;
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom {
  position: absolute;
  top: 0;
  right: 0;
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom .donation-progress-bar {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 15px;
  border: 8px solid #888888;
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom .donation-progress-bar .donation-bar {
  height: 160px;
  margin: -8px 0 0 -8px;
  border-top: 8px solid #f48223;
  border-left: 8px solid #f48223;
  border-bottom: 8px solid #f48223;
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom .donation-progress-bar .donation-label {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: Roboto Slab;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0.04em;
  color: #dddddd;
  text-align: center;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom .donation-progress-bar .donation-label .percent {
  font-size: 40px;
  font-weight: 700;
  color: #f48223;
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom .donation-progress-bar .donation-label .percent .unit {
  font-size: 22px;
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom > a {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Ubuntu;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  line-height: 20.48px;
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 12px 20px;
  color: #f48223;
  width: 160px;
  border: 2px solid #f48223;
}
.jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom > a:hover {
  color: #ffffff;
  background: #f48223;
}
.jw-welcome-donation-section .jw-become-wrap-2 .jw-become {
  max-width: 700px;
  padding: 0 40px;
  margin: auto;
}
.jw-welcome-donation-section .jw-become-wrap-2 .jw-become .jw-sujwitle,
.jw-welcome-donation-section .jw-become-wrap-2 .jw-become .jw-title {
  font-family: Ubuntu;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 5px;
}
.jw-welcome-donation-section .jw-become-wrap-2 .jw-become .jw-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 15px;
}
.jw-welcome-donation-section .jw-become-wrap-2 .jw-become .jw-sujwext {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 40px;
}
.jw-welcome-donation-section .jw-become-wrap-2 .jw-become .jw-btn-main-square {
  padding: 12px 35px;
}
@media (min-width: 768px) {
  .vc_images_carousel .vc_carousel-control .icon-next,
  .vc_images_carousel .vc_carousel-control .icon-prev {
    margin-top: -9px !important;
    font-size: 20px !important;
  }
}
@media (max-width: 768px - 1) {
  .jw-welcome-donation-section .jw-donation-total-wrap-2 {
    padding-right: 0;
  }
  .jw-welcome-donation-section .jw-donation-total-wrap-2 .jw-sujwext {
    margin-bottom: 30px;
  }
  .jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 ul {
    margin-bottom: 30px;
  }
  .jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 ul > li {
    margin-bottom: 5px;
  }
  .jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom {
    position: relative;
  }
  .jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom .donation-progress-bar {
    width: 100%;
    line-height: 0;
    background: #ffffff;
    height: auto;
    border: none;
  }
  .jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom .donation-progress-bar .donation-bar {
    display: inline-block;
    verticle-align: middle;
    height: 10px;
    background: #f48223;
    margin: 0;
    border: none;
  }
  .jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom .donation-progress-bar .donation-label {
    line-height: 0;
    color: transparent;
    position: absolute;
    right: 0;
    left: auto;
    top: 30px;
    -wekbit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    -o-transform: translateX(0) translateY(0);
    -ms-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  .jw-welcome-donation-section .jw-donation-total-wrap-2 .tb-donation-total-2 .donation-bottom .donation-progress-bar .donation-label .percent {
    font-size: 24px;
    line-height: 28px;
  }
  .jw-welcome-donation-section .jw-become-wrap-2 .jw-become {
    padding: 0;
    max-width: 650px;
  }
}
.jw-urgent-cause-section .wpb_column:before {
  content: "a";
  position: absolute;
  right: 0;
  top: 0;
  width: 300%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.jw-urgent-cause-section .tbdonations_slider_wrap .donation-item {
  padding-right: 60px;
}
.jw-urgent-cause-section .tbdonations_slider_wrap .owl-controls {
  position: absolute;
  right: -34px;
  top: 0;
}
.jw-urgent-cause-section .tbdonations_slider_wrap .owl-controls .owl-nav .owl-prev,
.jw-urgent-cause-section .tbdonations_slider_wrap .owl-controls .owl-nav .owl-next {
  display: block;
  margin: 1px 0;
}
.jws-section-campaign {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}
.jws-section-campaign .campaign-header .jws-text-header {
  font-family: Poppins;
  color: #ffffff;
  background: #f48223;
  padding: 11px 20px 10px 20px;
  font-size: 12px;
  margin-bottom: 25px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
.jws-section-campaign .campaign-content h3 {
  color: #ffffff;
  font-size: 36px;
  margin-top: 27px;
  text-transform: uppercase;
  font-family: Poppins;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.jws-section-campaign .campaign-content p {
  color: #f2f2f2;
}
.jws-section-campaign .campaign-content .jws-button-campaign {
  margin-top: 35px;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 600;
  padding: 13px 35px;
  letter-spacing: 0.2px;
}
.jws-donation-block .jw-donation-wrap {
  display: block;
  margin-bottom: 10px;
}
.jws-sponsor-img .vc_carousel-slideline,
.jws-sponsor-img .vc_carousel-inner {
  overflow: initial !important;
}
.jws-sponsor-img .vc_images_carousel .vc_carousel-control {
  width: 45px;
  height: 55px;
  background: #111111;
  color: #ffffff;
  opacity: 1;
}
.jws-sponsor-img .vc_images_carousel .vc_carousel-control:hover {
  background: #f48223;
}
.jws-sponsor-img .vc_images_carousel .vc_carousel-control.vc_right {
  right: -60px;
  top: 45%;
}
.jws-sponsor-img .vc_images_carousel .vc_carousel-control.vc_left {
  left: -60px;
  top: 45%;
}
.jws-sponsor-img .vc_images_carousel .vc_carousel-control .icon-prev:before,
.jws-sponsor-img .vc_images_carousel .vc_carousel-control .icon-next:before {
  top: -7px;
}
.jws-sponsor-img .owl-controls .owl-nav div {
  position: absolute;
  top: 38%;
  width: 45px;
  height: 55px;
  background: #111111;
  color: #FFFFFF;
  opacity: 1;
  text-align: center;
  line-height: 55px;
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
}
.jws-sponsor-img .owl-controls .owl-nav div:hover {
  background: #f48223;
}
.jws-sponsor-img .owl-controls .owl-prev {
  left: -60px;
}
.jws-sponsor-img .owl-controls .owl-next {
  right: -60px;
}
.jws-sponsor-img .vc_carousel-control {
  display: none !important;
}
.wpb_content_element.jws-sponsor-img {
  margin-bottom: 0;
}
.wpb_content_element.jws-sponsor-img .vc_images_carousel.vc_per-view-more .vc_carousel-slideline .vc_carousel-slideline-inner > .vc_item > .vc_inner {
  margin: 0;
}
.jws-event-box .special-event-box {
  width: 62%;
  margin-right: 2%;
  float: left;
}
.jws-event-box .special-event-box .fee-event {
  color: #ffffff;
  background: #f48223;
  padding: 8px 26px 8px 26px;
  font-size: 12px;
  text-transform: none;
  margin-bottom: 27px;
  font-family: Poppins;
  letter-spacing: 0.3px;
  font-weight: 500;
}
.jws-event-box .special-event-box h4 {
  margin-bottom: 13px;
}
.jws-event-box .special-event-box h4 a {
  text-transform: uppercase;
  font-size: 20px;
  color: #282828;
}
.jws-event-box .special-event-box h4 a:hover {
  color: #f48223;
}
.jws-event-box .special-event-box .info-event span {
  font-size: 12px;
  color: #555555;
}
.jws-event-box .special-event-box .info-event span.location {
  float: left;
  margin-right: 38px;
  position: relative;
}
.jws-event-box .special-event-box .info-event span.location:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  right: -17px;
  top: 34%;
  background-color: #dddddd;
}
.jws-event-box .jw-countdown-clock {
  float: left;
  width: 32%;
  margin-top: -50px;
  margin-bottom: 25px;
  background: url(https://mshikamano.co.ug/wp-content/themes/images/bg-countdonw.png) repeat top left;
}
.jws-event-box .jw-countdown-clock .countdown-section {
  width: 50%;
  padding: 27px 0px;
  background: #000000;
  float: left;
  color: #ffffff;
  opacity: 0.8;
  text-align: center;
}
.jws-event-box .jw-countdown-clock .countdown-section .countdown-amount {
  display: block;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: -5px;
  margin-top: 5px;
}
.jws-event-box .jw-countdown-clock .countdown-section .countdown-period {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: Poppins;
}
.jws-event-box .jw-countdown-clock .countdown-section:nth-child(1),
.jws-event-box .jw-countdown-clock .countdown-section:nth-child(4) {
  opacity: 0.9;
}
@media (max-width: 992px - 1) {
  .search_causes {
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
  }
  .search_causes .title-left,
  .search_causes .title-right {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    position: initial;
    width: auto;
  }
  .search_causes form {
    width: 100%;
    margin-bottom: 24px;
    padding: 20px;
  }
  .search_causes form .submit-causes button {
    width: 100%;
  }
  .search_causes .description {
    text-align: center;
    width: 100%;
    margin-top: 17px;
  }
  .jw-service-wrap.tpl2 .jw-service.left .jw-overlay .jws-content-service,
  .jw-service-wrap.tpl2 .jw-service.left .jw-overlay .jws-icon-service {
    width: 100% !important;
    text-align: center !important;
  }
  .jw-service-wrap.tpl2 .jw-service.left .jw-overlay .jws-content-service .jw-btn-link,
  .jw-service-wrap.tpl2 .jw-service.left .jw-overlay .jws-icon-service .jw-btn-link {
    position: initial;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  .jw-service-wrap.tpl2 .jw-service {
    background-size: cover !important;
  }
  .jws-event-box .vc_col-sm-8 {
    width: 100%;
  }
}
@media (max-width: 640px - 1) {
  .jws-event-box .special-event-box {
    width: 100%;
  }
  .margintop02 .vc_column-inner {
    margin-top: 0px !important;
    padding-left: 7.5px !important;
  }
  .jws-event-box .jw-countdown-clock {
    width: 100%;
    margin-top: 20px;
  }
}
.jws-header-section {
  text-align: center;
}
.jws-header-section .jws-btn-header {
  margin-bottom: 25px;
}
.jws-header-section .jws-btn-header .jws-text-header {
  color: #ffffff;
  background: #f48223;
  padding: 10px 28px 10px 28px;
  font-size: 12px;
  font-family: Poppins;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
.jws-header-section h3 {
  font-size: 36px;
  text-transform: uppercase;
  line-height: 42px;
  letter-spacing: 1px;
}
.jws-header-section h3 .main-color {
  color: #f48223;
}
.jws-section-donaters .jws-donater-custom {
  color: #ffffff;
  font-size: 14px;
}
.textcenter {
  text-align: center !important;
}
.jws-event-box {
  z-index: 1;
}
.psgal a {
  display: block !important;
}
.psgal a img {
  width: 100%;
}
/*
* Module
*/
/* HEADER */
.jw-hamburger {
  transition: all 0.4s;
  top: 25px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  background: transparent;
  border: 0;
  width: 22px;
  height: 14px;
  padding: 0;
  outline: none;
  cursor: pointer;
  z-index: 999;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.jw-hamburger::before,
.jw-hamburger::after,
.jw-hamburger span {
  transition: all 0.4s;
  background: #ffffff;
}
.jw-hamburger::before,
.jw-hamburger::after {
  content: '';
  position: absolute;
  top: 0;
  height: 2px;
  width: 100%;
  left: 0;
  top: 50%;
  transform-origin: 50% 50%;
}
.jw-hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  overflow: hidden;
  text-indent: 200%;
}
.jw-hamburger::before {
  transform: translate3d(0, -7px, 0);
}
.jw-hamburger::after {
  transform: translate3d(0, 7px, 0);
}
.ro-main-nav-opened .jw-hamburger {
  position: fixed;
  right: 15px;
}
.ro-main-nav-opened .jw-hamburger span {
  opacity: 0;
}
.ro-main-nav-opened .jw-hamburger::before {
  transform: rotate3d(0, 0, 1, 45deg);
}
.ro-main-nav-opened .jw-hamburger::after {
  transform: rotate3d(0, 0, 1, -45deg);
}
.jw-header-v1 .jw-hamburger::before,
.jw-header-v3 .jw-hamburger::before,
.jw-header-v1 .jw-hamburger::after,
.jw-header-v3 .jw-hamburger::after,
.jw-header-v1 .jw-hamburger span,
.jw-header-v3 .jw-hamburger span {
  background: #333333;
}
.jw-header-v2 .jw-hamburger::before,
.jw-header-v2 .jw-hamburger::after,
.jw-header-v2 .jw-hamburger span {
  background: #ffffff;
}
.jw-header-v1,
.jw-header-v2,
.jw-header-v3 {
  transition: all 0.4s;
  background: #ffffff;
}
.jw-header-v1 .give-form-closed,
.jw-header-v2 .give-form-closed,
.jw-header-v3 .give-form-closed {
  display: none;
}
.jw-header-v1.jw-header-stick .jw-header-menu,
.jw-header-v2.jw-header-stick .jw-header-menu,
.jw-header-v3.jw-header-stick .jw-header-menu,
.jw-header-v1.jw-header-fixed .jw-header-menu,
.jw-header-v2.jw-header-fixed .jw-header-menu,
.jw-header-v3.jw-header-fixed .jw-header-menu {
  top: 0;
}
.admin-bar .jw-header-v1.jw-header-stick .jw-header-menu,
.admin-bar .jw-header-v2.jw-header-stick .jw-header-menu,
.admin-bar .jw-header-v3.jw-header-stick .jw-header-menu,
.admin-bar .jw-header-v1.jw-header-fixed .jw-header-menu,
.admin-bar .jw-header-v2.jw-header-fixed .jw-header-menu,
.admin-bar .jw-header-v3.jw-header-fixed .jw-header-menu {
  top: 32px;
}
.jw-header-v1.jw-header-fixed .jw-header-menu,
.jw-header-v2.jw-header-fixed .jw-header-menu,
.jw-header-v3.jw-header-fixed .jw-header-menu {
  top: 0;
}
.admin-bar .jw-header-v1.jw-header-fixed .jw-header-menu,
.admin-bar .jw-header-v2.jw-header-fixed .jw-header-menu,
.admin-bar .jw-header-v3.jw-header-fixed .jw-header-menu {
  top: 32px;
}
.jw-header-v1 .jw-menu-list #nav .btn-close-menu-mobi,
.jw-header-v2 .jw-menu-list #nav .btn-close-menu-mobi,
.jw-header-v3 .jw-menu-list #nav .btn-close-menu-mobi {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #f48223;
  color: #ffffff;
  z-index: 9;
  display: none;
}
.jw-header-v1.jw-header-fixed .jw-header-menu,
.jw-header-v2.jw-header-fixed .jw-header-menu,
.jw-header-v3.jw-header-fixed .jw-header-menu {
  background: rgba(0, 0, 0, 0.7);
  padding: 0;
  z-index: 999;
}
.jw-header-v1.jw-header-fixed .jw-header-menu .jw-logo,
.jw-header-v2.jw-header-fixed .jw-header-menu .jw-logo,
.jw-header-v3.jw-header-fixed .jw-header-menu .jw-logo {
  line-height: 90px;
}
.jw-header-v1.jw-header-fixed .jw-header-menu .jw-menu-list > ul > li > a,
.jw-header-v2.jw-header-fixed .jw-header-menu .jw-menu-list > ul > li > a,
.jw-header-v3.jw-header-fixed .jw-header-menu .jw-menu-list > ul > li > a {
  line-height: 90px;
}
.jw-header-v1.jw-header-fixed .jw_widget_mini_cart .jw-cart-header,
.jw-header-v2.jw-header-fixed .jw_widget_mini_cart .jw-cart-header,
.jw-header-v3.jw-header-fixed .jw_widget_mini_cart .jw-cart-header {
  color: #ffffff;
  border: none;
}
.jw-header-v1.jw-header-fixed .jw_widget_mini_cart .jw-cart-header > i,
.jw-header-v2.jw-header-fixed .jw_widget_mini_cart .jw-cart-header > i,
.jw-header-v3.jw-header-fixed .jw_widget_mini_cart .jw-cart-header > i {
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.jw-header-v1.jw-header-fixed .jw_widget_mini_cart .jw-cart-header > a.jw-icon,
.jw-header-v2.jw-header-fixed .jw_widget_mini_cart .jw-cart-header > a.jw-icon,
.jw-header-v3.jw-header-fixed .jw_widget_mini_cart .jw-cart-header > a.jw-icon {
  color: #ffffff;
  border: none;
  border-radius: 10px;
}
.jw-header-v1.jw-header-fixed .jw_widget_mini_cart .jw-cart-header > a.jw-icon:hover,
.jw-header-v2.jw-header-fixed .jw_widget_mini_cart .jw-cart-header > a.jw-icon:hover,
.jw-header-v3.jw-header-fixed .jw_widget_mini_cart .jw-cart-header > a.jw-icon:hover {
  color: #ffffff;
  background: #f48223;
  border-color: #f48223;
}
.jw-header-v1 ul.jw-share-search-icon,
.jw-header-v2 ul.jw-share-search-icon,
.jw-header-v3 ul.jw-share-search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.jw-header-v1 ul.jw-share-search-icon > li,
.jw-header-v2 ul.jw-share-search-icon > li,
.jw-header-v3 ul.jw-share-search-icon > li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.jw-header-v1 ul.jw-share-search-icon > li:before,
.jw-header-v2 ul.jw-share-search-icon > li:before,
.jw-header-v3 ul.jw-share-search-icon > li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: -3px;
  width: 1px;
  height: 20px;
  background: #dddddd;
}
.jw-header-v1 ul.jw-share-search-icon > li > a,
.jw-header-v2 ul.jw-share-search-icon > li > a,
.jw-header-v3 ul.jw-share-search-icon > li > a {
  display: inline-block;
  width: 30px;
  height: 30px;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  color: #777777;
}
.jw-header-v1 ul.jw-share-search-icon > li > a:hover,
.jw-header-v2 ul.jw-share-search-icon > li > a:hover,
.jw-header-v3 ul.jw-share-search-icon > li > a:hover {
  color: #f48223;
}
.jw-header-v1 ul.jw-share-search-icon > li:first-child:before,
.jw-header-v2 ul.jw-share-search-icon > li:first-child:before,
.jw-header-v3 ul.jw-share-search-icon > li:first-child:before {
  display: none;
}
.jw-header-v1 .jw-social-share,
.jw-header-v2 .jw-social-share,
.jw-header-v3 .jw-social-share {
  position: absolute;
  top: 100%;
  right: 0;
  max-width: 640px;
  display: none;
  color: #ffffff;
  background: #282828;
  padding: 40px;
  border-bottom: 2px solid #f48223;
  z-index: 999;
  -webkit-animation: fadeInUp2 0.4s both;
  -moz-animation: fadeInUp2 0.4s both;
  -o-animation: fadeInUp2 0.4s both;
  animation: fadeInUp2 0.4s both;
}
.jw-header-v1 .jw-social-share .ism_link:hover,
.jw-header-v2 .jw-social-share .ism_link:hover,
.jw-header-v3 .jw-social-share .ism_link:hover {
  opacity: 0.8;
}
.jw-header-v1 .widget_social_widget,
.jw-header-v2 .widget_social_widget,
.jw-header-v3 .widget_social_widget {
  display: inline-block;
}
.jw-header-v1 .widget_social_widget .social-wrap a,
.jw-header-v2 .widget_social_widget .social-wrap a,
.jw-header-v3 .widget_social_widget .social-wrap a {
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  background-color: #191919;
  width: 50px;
  height: 56px;
  display: inline-block;
  line-height: 56px;
  text-align: center;
}
.jw-header-v1 .widget_social_widget .social-wrap a:hover,
.jw-header-v2 .widget_social_widget .social-wrap a:hover,
.jw-header-v3 .widget_social_widget .social-wrap a:hover {
  background-color: #f48223;
}
.jw-header-v1 .widget.widget_search,
.jw-header-v2 .widget.widget_search,
.jw-header-v3 .widget.widget_search {
  display: inline-block;
  color: #ffffff;
  background: transparent;
  z-index: 999;
  -webkit-animation: fadeInUp2 0.4s both;
  -moz-animation: fadeInUp2 0.4s both;
  -o-animation: fadeInUp2 0.4s both;
  animation: fadeInUp2 0.4s both;
}
.jw-header-v1 .widget.widget_search .search-form,
.jw-header-v2 .widget.widget_search .search-form,
.jw-header-v3 .widget.widget_search .search-form {
  position: relative;
}
.jw-header-v1 .widget.widget_search .search-form ::-webkit-input-placeholder,
.jw-header-v2 .widget.widget_search .search-form ::-webkit-input-placeholder,
.jw-header-v3 .widget.widget_search .search-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
  font-size: 13px;
}
.jw-header-v1 .widget.widget_search .search-form ::-moz-placeholder,
.jw-header-v2 .widget.widget_search .search-form ::-moz-placeholder,
.jw-header-v3 .widget.widget_search .search-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
  font-size: 13px;
}
.jw-header-v1 .widget.widget_search .search-form :-ms-input-placeholder,
.jw-header-v2 .widget.widget_search .search-form :-ms-input-placeholder,
.jw-header-v3 .widget.widget_search .search-form :-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
  font-size: 13px;
}
.jw-header-v1 .widget.widget_search .search-form :-moz-placeholder,
.jw-header-v2 .widget.widget_search .search-form :-moz-placeholder,
.jw-header-v3 .widget.widget_search .search-form :-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
  font-size: 13px;
}
.jw-header-v1 .widget.widget_search .search-form .screen-reader-text,
.jw-header-v2 .widget.widget_search .search-form .screen-reader-text,
.jw-header-v3 .widget.widget_search .search-form .screen-reader-text {
  display: none;
}
.jw-header-v1 .widget.widget_search .search-form .search-field,
.jw-header-v2 .widget.widget_search .search-form .search-field,
.jw-header-v3 .widget.widget_search .search-form .search-field {
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0;
  padding: 8px 50px 8px 23px;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.jw-header-v1 .widget.widget_search .search-form .search-field:focus,
.jw-header-v2 .widget.widget_search .search-form .search-field:focus,
.jw-header-v3 .widget.widget_search .search-form .search-field:focus {
  border-color: #999999;
}
.jw-header-v1 .widget.widget_search .search-form .search-submit,
.jw-header-v2 .widget.widget_search .search-form .search-submit,
.jw-header-v3 .widget.widget_search .search-form .search-submit {
  position: absolute;
  top: 0;
  left: -27px;
  width: 45px;
  height: 46px;
  padding: 0;
  opacity: 0;
  z-index: 9;
}
.jw-header-v1 .widget.widget_search .search-form:before,
.jw-header-v2 .widget.widget_search .search-form:before,
.jw-header-v3 .widget.widget_search .search-form:before {
  content: "\f002";
  font-family: FontAwesome;
  position: absolute;
  top: 11px;
  left: 1px;
  font-size: 12px;
  color: #ffffff;
}
.jw-header-v1 .jw_widget_mini_cart h5.wg-title,
.jw-header-v2 .jw_widget_mini_cart h5.wg-title,
.jw-header-v3 .jw_widget_mini_cart h5.wg-title {
  display: none;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-header,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-header,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-header {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 180px;
  height: 40px;
  font-family: Montserrat;
  font-size: 11px;
  letter-spacing: 0.16px;
  color: #333333;
  line-height: 40px;
  text-align: right;
  border: 1px solid #666666;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-header > i,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-header > i,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-header > i {
  display: inline-block;
  font-size: 14px;
  color: #000000;
  line-height: 11px;
  border-right: 1px solid #666666;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-header .cart_total,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-header .cart_total,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-header .cart_total,
.jw-header-v1 .jw_widget_mini_cart .jw-cart-header .item,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-header .item,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-header .item,
.jw-header-v1 .jw_widget_mini_cart .jw-cart-header .my-cart,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-header .my-cart,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-header .my-cart {
  font-size: 12px;
  font-family: Poppins;
  transform: translateY(-4px);
  display: inline-block;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-header .my-cart,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-header .my-cart,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-header .my-cart {
  margin-left: 20px;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-header > a.jw-icon,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-header > a.jw-icon,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-header > a.jw-icon {
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 59px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: #333333;
  background: #f48223;
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-header > a.jw-icon:hover,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-header > a.jw-icon:hover,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-header > a.jw-icon:hover {
  color: #ffffff;
  background: #f48223;
  border-color: #f48223;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  position: absolute;
  top: 53px;
  right: -1px;
  display: none;
  color: #ffffff;
  background: #111111;
  padding: 40px;
  z-index: 99999;
  -webkit-animation: fadeInUp2 0.4s both;
  -moz-animation: fadeInUp2 0.4s both;
  -o-animation: fadeInUp2 0.4s both;
  animation: fadeInUp2 0.4s both;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content h6,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content h6,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content h6 {
  color: #ffffff;
  text-align: center;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item {
  position: relative;
  padding-right: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a {
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a > img,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a > img,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a > img {
  width: 50px;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a.remove,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a.remove,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a.remove {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a:hover,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a:hover,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item > a:hover {
  color: #f48223;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item:first-child,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item:first-child,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item:hover > a > img,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item:hover > a > img,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .cart_list.product_list_widget .mini_cart_item:hover > a > img {
  opacity: 0.7;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .total,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .total,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .total {
  font-size: 14px;
  padding: 15px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .total > strong,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .total > strong,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .total > strong {
  font-weight: 400;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .total > span,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .total > span,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .total > span {
  float: right;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .buttons,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .buttons,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .buttons {
  margin-bottom: 0;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .buttons > a,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .buttons > a,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .buttons > a {
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  background: #f48223;
  padding: 10px 14px;
  border: 1px solid #f48223;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .buttons > a.checkout,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .buttons > a.checkout,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .buttons > a.checkout {
  color: #f48223;
  background: #ffffff;
  border: 1px solid #ffffff;
}
.jw-header-v1 .jw_widget_mini_cart .jw-cart-content .buttons > a:hover,
.jw-header-v2 .jw_widget_mini_cart .jw-cart-content .buttons > a:hover,
.jw-header-v3 .jw_widget_mini_cart .jw-cart-content .buttons > a:hover {
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
}
.jw-header-v1 .jw-menu-sidebar > a,
.jw-header-v2 .jw-menu-sidebar > a,
.jw-header-v3 .jw-menu-sidebar > a {
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.jw-header-v1 .jw-menu-list ul > li.new-page > a:after,
.jw-header-v2 .jw-menu-list ul > li.new-page > a:after,
.jw-header-v3 .jw-menu-list ul > li.new-page > a:after {
  content: "New";
  float: right;
  font-size: 10px;
  line-height: 9px;
  color: #f48223;
  background: #ffffff;
  padding: 4px 5px;
  border-radius: 2px;
}
.jw-header-v1 .header-fix {
  height: 120px;
}
.jw-header-v1 .jw-header-top,
.jw-header-v3 .jw-header-top {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  background: #111111;
  line-height: 55px;
}
.jw-header-v1 .jw-header-top .jw-no-donate-header-top #menu-header-top-menu,
.jw-header-v3 .jw-header-top .jw-no-donate-header-top #menu-header-top-menu {
  padding-right: 0;
}
.jw-header-v1 .jw-header-top .widget,
.jw-header-v3 .jw-header-top .widget {
  line-height: 11px;
}
.jw-header-v1 .jw-header-top .widget ul,
.jw-header-v3 .jw-header-top .widget ul {
  margin: 0;
  padding: 0;
}
.jw-header-v1 .jw-header-top .widget ul.jw-contact-info,
.jw-header-v3 .jw-header-top .widget ul.jw-contact-info {
  letter-spacing: 0.4px;
  line-height: 55px;
  text-align: right;
}
.jw-header-v1 .jw-header-top .widget ul.jw-contact-info > li,
.jw-header-v3 .jw-header-top .widget ul.jw-contact-info > li {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  padding: 0 22px;
  position: relative;
}
.jw-header-v1 .jw-header-top .widget ul.jw-contact-info > li:after,
.jw-header-v3 .jw-header-top .widget ul.jw-contact-info > li:after {
  background-color: #ffffff;
  width: 1px;
  height: 9px;
  top: 41%;
  right: -2px;
  content: "";
  position: absolute;
}
.jw-header-v1 .jw-header-top .widget ul.jw-contact-info > li > i,
.jw-header-v3 .jw-header-top .widget ul.jw-contact-info > li > i {
  display: inline-block;
  font-size: 12px;
  color: #ffffff;
  margin-right: 5px;
}
.jw-header-v1 .jw-header-top .widget ul.jw-contact-info > li:first-child,
.jw-header-v3 .jw-header-top .widget ul.jw-contact-info > li:first-child {
  padding-left: 0;
  border: none;
}
.jw-header-v1 .jw-header-top .widget ul.jw-contact-info > li:last-child,
.jw-header-v3 .jw-header-top .widget ul.jw-contact-info > li:last-child {
  padding-right: 0;
}
.jw-header-v1 .jw-header-top .widget ul.jw-contact-info > li:last-child:after,
.jw-header-v3 .jw-header-top .widget ul.jw-contact-info > li:last-child:after {
  display: none;
}
.jw-header-v1 .jw-header-top .widget ul.menu,
.jw-header-v3 .jw-header-top .widget ul.menu {
  font-family: Montserrat;
  letter-spacing: 0.16px;
  text-align: right;
  padding-right: 0px;
}
.jw-header-v1 .jw-header-top .widget ul.menu > li,
.jw-header-v3 .jw-header-top .widget ul.menu > li {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  border-left: 1px solid #585858;
}
.jw-header-v1 .jw-header-top .widget ul.menu > li:first-child,
.jw-header-v3 .jw-header-top .widget ul.menu > li:first-child {
  padding-left: 0;
  border: none;
}
.jw-header-v1 .jw-header-top .widget ul.menu > li > a,
.jw-header-v3 .jw-header-top .widget ul.menu > li > a {
  color: #b5b5b5;
}
.jw-header-v1 .jw-header-top .widget ul.menu > li > a:hover,
.jw-header-v3 .jw-header-top .widget ul.menu > li > a:hover {
  color: #f48223;
}
.jw-header-v1 .jw-header-top .give-form-wrap > .give-btn-modal,
.jw-header-v3 .jw-header-top .give-form-wrap > .give-btn-modal {
  font-family: Montserrat;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16px;
  position: absolute;
  right: 15px;
  top: -20px;
  width: 155px;
  height: 53px;
  text-align: center;
  line-height: 55px;
  color: #ffffff;
  background: #f48223;
  padding: 0;
  text-transform: uppercase;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.jw-header-v1 .jw-header-top .give-form-wrap > .give-btn-modal:hover,
.jw-header-v3 .jw-header-top .give-form-wrap > .give-btn-modal:hover,
.jw-header-v1 .jw-header-top .give-form-wrap > .give-btn-modal:focus,
.jw-header-v3 .jw-header-top .give-form-wrap > .give-btn-modal:focus {
  background: #f48223;
  outline: none;
}
.jw-header-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: none;
}
.jw-header-v2 .jw-header-top {
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  background: transparent;
  padding: 42px 0;
  z-index: 999;
  top: 0;
}
.jw-header-v2 .jw-header-top .jw-contact-info li:after {
  top: 16% !important;
}
.jw-header-v2 .jw-header-top .jw-contact-info li:last-child:after {
  display: none;
}
.jw-header-v2 .jw-header-top .jw-no-donate-header-top #menu-header-top-menu {
  padding-right: 0;
}
.jw-header-v2 .jw-header-top .widget {
  line-height: 11px;
}
.jw-header-v2 .jw-header-top .widget ul {
  margin: 0;
  padding: 0;
}
.jw-header-v2 .jw-header-top .widget ul.jw-contact-info {
  letter-spacing: 0.4px;
  font-size: 12px;
  font-weight: 400;
}
.jw-header-v2 .jw-header-top .widget ul.jw-contact-info > li {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  padding: 0 22px;
  position: relative;
}
.jw-header-v2 .jw-header-top .widget ul.jw-contact-info > li:after {
  background-color: #ffffff;
  width: 1px;
  height: 9px;
  top: 50%;
  right: 0;
  content: "";
  position: absolute;
}
.jw-header-v2 .jw-header-top .widget ul.jw-contact-info > li > i {
  display: inline-block;
  font-size: 12px;
  color: #ffffff;
  margin-right: 5px;
}
.jw-header-v2 .jw-header-top .widget ul.jw-contact-info > li:first-child {
  padding-left: 0;
  border: none;
}
.jw-header-v2 .jw-header-top .widget ul.menu {
  font-family: Montserrat;
  letter-spacing: 0.16px;
  text-align: right;
  padding-right: 0px;
}
.jw-header-v2 .jw-header-top .widget ul.menu > li {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  border-left: 1px solid #585858;
}
.jw-header-v2 .jw-header-top .widget ul.menu > li:first-child {
  padding-left: 0;
  border: none;
}
.jw-header-v2 .jw-header-top .widget ul.menu > li > a {
  color: #b5b5b5;
}
.jw-header-v2 .jw-header-top .widget ul.menu > li > a:hover {
  color: #f48223;
}
.jw-header-v2 .jw-header-top .give-form-wrap > .give-btn-modal {
  font-family: Montserrat;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16px;
  position: absolute;
  right: 15px;
  top: -20px;
  width: 155px;
  height: 53px;
  text-align: center;
  line-height: 55px;
  color: #ffffff;
  background: #f48223;
  padding: 0;
  text-transform: uppercase;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.jw-header-v2 .jw-header-top .give-form-wrap > .give-btn-modal:hover,
.jw-header-v2 .jw-header-top .give-form-wrap > .give-btn-modal:focus {
  background: #f48223;
  outline: none;
}
.jw-header-v3 .header-fix {
  height: 215px;
}
.jw-header-v3 .jw-header-top {
  font-size: 12px;
  font-weight: 400;
  color: #777777;
}
.jw-header-v3 .jw-header-top .tb-col-left .widget ul {
  margin: 0;
  padding: 0;
}
.jw-header-v3 .jw-header-top .tb-col-left .widget ul.jw-contact-info {
  line-height: 32px;
  letter-spacing: 0.04em;
}
.jw-header-v3 .jw-header-top .tb-col-left .widget ul.jw-contact-info > li {
  position: relative;
  color: #ffffff;
  font-size: 12px;
  display: inline-block;
  padding: 0 25px;
}
.jw-header-v3 .jw-header-top .tb-col-left .widget ul.jw-contact-info > li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 10px;
  background: #ddd;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.jw-header-v3 .jw-header-top .tb-col-left .widget ul.jw-contact-info > li > i {
  display: inline-block;
  font-size: 13px;
  margin-right: 5px;
}
.jw-header-v3 .jw-header-top .tb-col-left .widget ul.jw-contact-info > li:first-child {
  padding-left: 0;
}
.jw-header-v3 .jw-header-top .tb-col-left .widget ul.jw-contact-info > li:first-child:before {
  display: none;
}
.jw-header-v3 .jw-header-top .tb-col-right {
  text-align: right;
}
.jw-header-v3 .jw-header-top .tb-col-right .widget {
  display: inline-block;
  vertical-align: middle;
}
.jw-header-v3 .jw-header-top .tb-col-right .widget .top_map_link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #f48223;
  padding: 10px 15px;
  border: 1px solid #f48223;
}
.jw-header-v3 .jw-header-top .tb-col-right .widget .top_map_link > i {
  font-size: 12px;
  margin-right: 5px;
}
.jw-header-v3 .jw-header-top .tb-col-right .widget .top_map_link:hover {
  color: #ffffff;
  background: #f48223;
  border-color: #f48223;
}
.jw-header-v3 .jw-header-top .tb-col-right .give-form-wrap > .give-btn-modal {
  font-size: 10px;
  font-weight: 500;
  line-height: 11px;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: #f48223;
  margin-left: 10px;
  padding: 10px 15px;
  border: 1px solid #f48223;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.jw-header-v3 .jw-header-top .tb-col-right .give-form-wrap > .give-btn-modal:before {
  content: "\f004";
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 5px;
}
.jw-header-v3 .jw-header-top .tb-col-right .give-form-wrap > .give-btn-modal:hover {
  color: #f48223;
  background: transparent;
  border-color: #f48223;
}
.jw-header-v3 .jw-line {
  border-bottom: 1px solid #eeeeee;
}
.jw-header-v1 .jw-menu-sidebar a,
.jw-header-v3 .jw-menu-sidebar a {
  color: #111111;
}
.jw-header-v1 .jw-menu-sidebar a:hover,
.jw-header-v3 .jw-menu-sidebar a:hover {
  color: #f48223;
}
.jw-header-v2 .jw-menu-sidebar a {
  color: #111111;
}
.jw-header-v2 .jw-menu-sidebar a:hover {
  color: #f48223;
}
.admin-bar .jw-menu-canvas {
  margin-top: 32px;
}
.jw-menu-canvas-overlay {
  background: rgba(250, 250, 250, 0.6);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 9999;
}
.jw-menu-canvas {
  transition: all 0.4s;
  position: fixed;
  right: 0;
  top: 0;
  min-width: 310px;
  min-height: 100vh;
  background: #111111;
  padding: 60px 40px;
  z-index: 99999;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -o-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.jw-menu-canvas .widget_nav_menu {
  font-family: Montserrat;
  font-size: 12px;
  margin-bottom: 30px;
}
.jw-menu-canvas .widget_nav_menu ul > li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.jw-menu-canvas .widget_nav_menu ul > li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.jw-menu-canvas .widget_nav_menu ul > li > a {
  display: block;
  color: #ffffff;
  padding: 12px 20px;
}
.jw-menu-canvas .widget_nav_menu ul > li > a:hover {
  color: #f48223;
}
.jw-menu-canvas .widget_social_widget .social-wrap {
  text-align: center;
  margin-bottom: 180px;
  padding: 12px;
}
.jw-menu-canvas .widget_social_widget .social-wrap a {
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
  margin: 0 5px;
}
.jw-menu-canvas .widget_social_widget .social-wrap a:hover {
  color: #f48223;
}
.jw-menu-canvas-open .jw-menu-canvas-overlay {
  display: block;
}
.jw-menu-canvas-open .jw-menu-canvas {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media (min-width: 1200px) {
  .boxed .jw-header-v1.jw-header-stick .jw-header-menu,
  .boxed .jw-header-v2.jw-header-stick .jw-header-menu,
  .boxed .jw-header-v3.jw-header-stick .jw-header-menu {
    max-width: 1200px;
  }
}
@media (min-width: 992px) and (max-width: 1200px - 1) {
  .jw-header-v1 .jw-header-top .widget .jw-contact-info li,
  .jw-header-v3 .jw-header-top .widget .jw-contact-info li {
    padding: 0 11px !important;
  }
  .jw-header-v1 .jw-header-top .widget ul.menu,
  .jw-header-v2 .jw-header-top .widget ul.menu,
  .jw-header-v3 .jw-header-top .widget ul.menu {
    padding-right: 160px;
  }
  .jw-header-v1 .jw-menu-list > ul > li > a,
  .jw-header-v2 .jw-menu-list > ul > li > a,
  .jw-header-v3 .jw-menu-list > ul > li > a {
    min-width: 70px !important;
  }
}
@media (min-width: 992px) {
  .jw-stick-active .jw-header-v1.jw-header-stick .jw-header-menu,
  .jw-stick-active .jw-header-v3.jw-header-stick .jw-header-menu {
    position: fixed;
    width: 100%;
    padding: 0;
    background: #ffffff;
    z-index: 999999;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(17, 17, 17, 0.5);
    -moz-box-shadow: 0px 0px 20px 0px rgba(17, 17, 17, 0.5);
    box-shadow: 0px 0px 20px 0px rgba(17, 17, 17, 0.5);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
  }
  .jw-stick-active .jw-header-v1.jw-header-stick .jw-header-menu .give-form-wrap > .give-btn-modal,
  .jw-stick-active .jw-header-v3.jw-header-stick .jw-header-menu .give-form-wrap > .give-btn-modal {
    position: absolute;
  }
  .jw-stick-active .jw-header-v1.jw-header-stick .jw-header-menu .jw-logo,
  .jw-stick-active .jw-header-v3.jw-header-stick .jw-header-menu .jw-logo {
    line-height: 71px;
    transform: scale(0.8);
  }
  .jw-stick-active .jw-header-v1.jw-header-stick .jw-header-menu .jw-menu-list > ul > li > a,
  .jw-stick-active .jw-header-v3.jw-header-stick .jw-header-menu .jw-menu-list > ul > li > a {
    line-height: 71px;
  }
  .jw-stick-active .jw-header-v2.jw-header-fixed .jw-header-menu {
    position: fixed;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(17, 17, 17, 0.5);
    -moz-box-shadow: 0px 0px 20px 0px rgba(17, 17, 17, 0.5);
    box-shadow: 0px 0px 20px 0px rgba(17, 17, 17, 0.5);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
  }
  .jw-stick-active .jw-header-v2.jw-header-fixed .jw-header-menu .give-form-wrap > .give-btn-modal {
    position: absolute;
  }
  .jw-stick-active .jw-header-v2.jw-header-fixed .jw-header-menu .jw-logo {
    line-height: 71px !important;
    transform: scale(0.8);
  }
  .jw-stick-active .jw-header-v2.jw-header-fixed .jw-header-menu .jw-menu-list > ul > li > a {
    line-height: 71px !important;
  }
  .jw-stick-active .jw-header-v3 .jw-logo {
    padding-top: 0px;
  }
  .jw-stick-active .jw-header-v3 .logo-stick {
    display: none;
  }
  .jw-stick-active .jw-header-v3 .jw-logo.col-logo {
    opacity: 1;
  }
  .jw-header-v1 .give-form-wrap > .give-btn-modal,
  .jw-header-v2 .give-form-wrap > .give-btn-modal {
    position: absolute;
    top: 57px;
    right: -45px;
    z-index: 999;
    font-family: "Poppins";
    font-weight: 500;
    background-color: #f48223;
    border-color: #f48223;
    padding: 18px 33px;
    height: 54px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 0;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: Poppins;
  }
  .jw-header-v2 .container {
    position: relative;
  }
  .jw-header-v1 .row,
  .jw-header-v2 .row,
  .jw-header-v3 .row {
    position: relative;
  }
  .jw-header-v1 .col-md-10,
  .jw-header-v2 .col-md-10,
  .jw-header-v3 .col-md-10 {
    position: initial;
  }
  .jw-header-v1 .jw-menu-list > ul,
  .jw-header-v2 .jw-menu-list > ul,
  .jw-header-v3 .jw-menu-list > ul {
    margin: 0;
    padding: 0;
  }
  .jw-header-v1 .jw-menu-list > ul > li,
  .jw-header-v2 .jw-menu-list > ul > li,
  .jw-header-v3 .jw-menu-list > ul > li {
    transition: all 0.4s;
    display: inline-block;
  }
  .jw-header-v1 .jw-menu-list > ul > li > a,
  .jw-header-v2 .jw-menu-list > ul > li > a,
  .jw-header-v3 .jw-menu-list > ul > li > a {
    transition: all 0.4s;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 106px;
    display: inline-block;
    text-align: center;
    min-width: 90px;
    padding: 0 15px;
  }
  .jw-header-v1 .jw-menu-list > ul > li > a:hover::before,
  .jw-header-v2 .jw-menu-list > ul > li > a:hover::before,
  .jw-header-v3 .jw-menu-list > ul > li > a:hover::before {
    transition: all 0.4s;
    content: url('https://mshikamano.co.ug/wp-content/themes/pain/modules/arrow_top_menu.png');
    position: absolute;
    top: -18px;
    left: 45%;
    font-size: 0;
    font-weight: 500;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    animation: fadeInUp2 0.5s both;
    -webkit-animation: fadeInUp2 0.5s both;
    -moz-animation: fadeInUp2 0.5s both;
  }
  .jw-header-v1 .jw-menu-list > ul > li.nomega-menu-item > ul > li:last-child a,
  .jw-header-v2 .jw-menu-list > ul > li.nomega-menu-item > ul > li:last-child a,
  .jw-header-v3 .jw-menu-list > ul > li.nomega-menu-item > ul > li:last-child a {
    border-bottom: none;
  }
  .jw-header-v1 .jw-menu-list > ul > li.fullwidth > ul.columns2,
  .jw-header-v2 .jw-menu-list > ul > li.fullwidth > ul.columns2,
  .jw-header-v3 .jw-menu-list > ul > li.fullwidth > ul.columns2,
  .jw-header-v1 .jw-menu-list > ul > li.fullwidth > ul.columns3,
  .jw-header-v2 .jw-menu-list > ul > li.fullwidth > ul.columns3,
  .jw-header-v3 .jw-menu-list > ul > li.fullwidth > ul.columns3,
  .jw-header-v1 .jw-menu-list > ul > li.fullwidth > ul.columns4,
  .jw-header-v2 .jw-menu-list > ul > li.fullwidth > ul.columns4,
  .jw-header-v3 .jw-menu-list > ul > li.fullwidth > ul.columns4 {
    width: 100% !important;
    left: 0;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul {
    display: none;
    background: #ffffff;
    position: absolute;
    min-width: 250px;
    text-align: left;
    margin: 0;
    padding: 10px 20px;
    border-bottom: 2px solid #f48223;
    z-index: -1;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul > li,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul > li,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul > li {
    transition: all 0.4s;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul > li:first-child,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul > li:first-child,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul > li:first-child {
    border: none;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul > li:hover > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul > li:hover > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul > li:hover > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul > li.current-menu-item > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul > li.current-menu-item > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul > li.current-menu-item > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul > li.current-menu-ancestor > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul > li.current-menu-ancestor > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul > li.current-menu-ancestor > a {
    color: #f48223;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul > li > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul > li > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul > li > a {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    padding: 10px 10px 10px 20px;
    border-bottom: 1px solid #eee;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 {
    width: 500px;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li {
    width: 50%;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 {
    width: 750px;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li {
    width: 33.3333%;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 {
    width: 1000px;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li {
    width: 25%;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 {
    padding: 10px;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li {
    float: left;
    padding: 15px;
    border: none;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > a {
    text-transform: uppercase;
    font-weight: 700;
    margin: 10px 20px;
    padding: 10px 0;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li .widget,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li .widget,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li .widget,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li .widget,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li .widget,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li .widget,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li .widget,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li .widget,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li .widget {
    margin-top: 30px;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li ul,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li ul,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li ul,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li ul,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li ul,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li ul,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li ul,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li ul,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li ul {
    margin-top: 15px;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li {
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li:hover > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li:hover > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li:hover > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li:hover > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li:hover > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li:hover > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li:hover > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li:hover > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li:hover > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li.current-menu-item > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li.current-menu-item > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li.current-menu-item > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li.current-menu-item > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li.current-menu-item > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li.current-menu-item > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li.current-menu-item > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li.current-menu-item > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li.current-menu-item > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li.current-menu-ancestor > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li.current-menu-ancestor > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns2 > li > ul > li.current-menu-ancestor > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li.current-menu-ancestor > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li.current-menu-ancestor > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns3 > li > ul > li.current-menu-ancestor > a,
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li.current-menu-ancestor > a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li.current-menu-ancestor > a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul.columns4 > li > ul > li.current-menu-ancestor > a {
    color: #f48223;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children:hover > ul,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children:hover > ul,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children:hover > ul {
    display: block;
    z-index: 999;
    -webkit-animation: fadeInUp2 0.4s both;
    -moz-animation: fadeInUp2 0.4s both;
    -o-animation: fadeInUp2 0.4s both;
    animation: fadeInUp2 0.4s both;
  }
  .jw-header-v1 .jw-menu-list > ul > li:hover > a,
  .jw-header-v2 .jw-menu-list > ul > li:hover > a,
  .jw-header-v3 .jw-menu-list > ul > li:hover > a,
  .jw-header-v1 .jw-menu-list > ul > li.current-menu-item > a,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-item > a,
  .jw-header-v3 .jw-menu-list > ul > li.current-menu-item > a,
  .jw-header-v1 .jw-menu-list > ul > li.current-menu-ancestor > a,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-ancestor > a,
  .jw-header-v3 .jw-menu-list > ul > li.current-menu-ancestor > a {
    color: #f48223;
  }
  .jw-header-v1 .jw-menu-list > ul > li:hover > a:before,
  .jw-header-v2 .jw-menu-list > ul > li:hover > a:before,
  .jw-header-v3 .jw-menu-list > ul > li:hover > a:before,
  .jw-header-v1 .jw-menu-list > ul > li.current-menu-item > a:before,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-item > a:before,
  .jw-header-v3 .jw-menu-list > ul > li.current-menu-item > a:before,
  .jw-header-v1 .jw-menu-list > ul > li.current-menu-ancestor > a:before,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-ancestor > a:before,
  .jw-header-v3 .jw-menu-list > ul > li.current-menu-ancestor > a:before,
  .jw-header-v1 .jw-menu-list > ul > li:hover > a:after,
  .jw-header-v2 .jw-menu-list > ul > li:hover > a:after,
  .jw-header-v3 .jw-menu-list > ul > li:hover > a:after,
  .jw-header-v1 .jw-menu-list > ul > li.current-menu-item > a:after,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-item > a:after,
  .jw-header-v3 .jw-menu-list > ul > li.current-menu-item > a:after,
  .jw-header-v1 .jw-menu-list > ul > li.current-menu-ancestor > a:after,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-ancestor > a:after,
  .jw-header-v3 .jw-menu-list > ul > li.current-menu-ancestor > a:after {
    font-size: 16px;
  }
  .jw-header-v1 .jw-logo {
    transition: all 0.4s;
    line-height: 120px;
  }
  .jw-header-v3 .jw-logo {
    transition: all 0.4s;
    padding-top: 40px;
    text-align: center;
  }
  .jw-header-v3 .jw-logo.col-logo {
    opacity: 0;
  }
  .jw-header-v2 .jw-logo {
    transition: all 0.4s;
    line-height: 120px !important;
    text-align: center;
  }
  .jw-header-v2 .jw-menu-list > ul > li > a {
    color: #ffffff !important;
    line-height: 120px !important;
  }
  .jw-header-v2 .jw-menu-list > ul > li:hover > a,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-item > a,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-ancestor > a {
    transition: all 0.4s;
    color: #f48223 !important;
  }
  .jw-header-v2 .jw-menu-list > ul > li:hover > a:before,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-item > a:before,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-ancestor > a:before,
  .jw-header-v2 .jw-menu-list > ul > li:hover > a:after,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-item > a:after,
  .jw-header-v2 .jw-menu-list > ul > li.current-menu-ancestor > a:after {
    font-size: 16px;
  }
}
@media (max-width: 992px - 1) and (min-width: 768px) {
  .jw-header-v2 .jw-header-top .widget ul.jw-contact-info > li {
    padding: 0 10px;
    font-size: 10px;
  }
}
@media (max-width: 992px - 1) {
  .jw-header-v2 .jw-header-top {
    padding: 25px 0;
  }
  .jw-header-v1 .container {
    padding: 0;
  }
  #jw_header .jw-menu-list > ul > li.mega-menu-item > ul > li .widget .jw-recent-cause {
    margin-top: 15px;
  }
  .jw-header-v1 .jw-menu-list > ul > li.menu-item-has-children > ul > li a,
  .jw-header-v2 .jw-menu-list > ul > li.menu-item-has-children > ul > li a,
  .jw-header-v3 .jw-menu-list > ul > li.menu-item-has-children > ul > li a {
    color: #999999 !important;
  }
  .jw-header-v1 .jw-header-top .widget ul.jw-contact-info,
  .jw-header-v2 .jw-header-top .widget ul.jw-contact-info,
  .jw-header-v3 .jw-header-top .widget ul.jw-contact-info {
    text-align: left;
  }
  .jw-header-v1 .jw-header-top .widget ul.menu,
  .jw-header-v2 .jw-header-top .widget ul.menu,
  .jw-header-v3 .jw-header-top .widget ul.menu {
    text-align: left;
    padding-right: 0;
  }
  .jw-header-v1 .jw-header-top .give-form-wrap > .give-btn-modal,
  .jw-header-v2 .jw-header-top .give-form-wrap > .give-btn-modal,
  .jw-header-v3 .jw-header-top .give-form-wrap > .give-btn-modal {
    top: -35px;
  }
  .jw-header-v1 .give-form-wrap > .give-btn-modal,
  .jw-header-v2 .give-form-wrap > .give-btn-modal,
  .jw-header-v3 .give-form-wrap > .give-btn-modal {
    transition: all 0.4s;
    top: 25px;
    display: block;
    position: absolute;
    top: 50%;
    right: 43px;
    border: 0;
    outline: none;
    cursor: pointer;
    z-index: 999;
    transform: translateY(-111%);
    -webkit-transform: translateY(-111%);
    -moz-transform: translateY(-111%);
    -ms-transform: translateY(-111%);
    -o-transform: translateY(-111%);
    background: #f48223;
    border: none;
    box-shadow: none;
    color: #ffffff;
    padding: 5px 15px;
  }
  .jw-header-v1 .jw-logo,
  .jw-header-v2 .jw-logo,
  .jw-header-v3 .jw-logo {
    line-height: 50px;
  }
  .jw-header-v1.jw-header-fixed .jw-header-menu,
  .jw-header-v2.jw-header-fixed .jw-header-menu,
  .jw-header-v3.jw-header-fixed .jw-header-menu {
    margin-top: 0 !important;
  }
  .jw-header-v1.jw-header-fixed .jw-header-menu .jw-logo,
  .jw-header-v2.jw-header-fixed .jw-header-menu .jw-logo,
  .jw-header-v3.jw-header-fixed .jw-header-menu .jw-logo {
    line-height: 50px;
  }
  .jw-header-v1 .jw-menu-list,
  .jw-header-v2 .jw-menu-list,
  .jw-header-v3 .jw-menu-list {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 320px;
    height: 100%;
    overflow: auto;
    z-index: 99999;
    background: #111;
    transition: .3s;
    -webkit-transition: .3s;
    opacity: 0;
    border-radius: 1px;
  }
  .jw-header-v1 .jw-menu-list.is_menumobi_active,
  .jw-header-v2 .jw-menu-list.is_menumobi_active,
  .jw-header-v3 .jw-menu-list.is_menumobi_active {
    opacity: 1;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .jw-header-v1 .jw-menu-list #nav,
  .jw-header-v2 .jw-menu-list #nav,
  .jw-header-v3 .jw-menu-list #nav {
    padding: 20px;
  }
  .jw-header-v1 .jw-menu-list #nav .btn-close-menu-mobi,
  .jw-header-v2 .jw-menu-list #nav .btn-close-menu-mobi,
  .jw-header-v3 .jw-menu-list #nav .btn-close-menu-mobi {
    display: inline-block;
  }
  .jw-header-v1 .jw-menu-list #nav .menu-item,
  .jw-header-v2 .jw-menu-list #nav .menu-item,
  .jw-header-v3 .jw-menu-list #nav .menu-item {
    text-align: left;
  }
  .jw-header-v1 .jw-menu-list #nav .menu-item > a,
  .jw-header-v2 .jw-menu-list #nav .menu-item > a,
  .jw-header-v3 .jw-menu-list #nav .menu-item > a {
    text-align: left;
    display: block;
  }
  .jw-header-v1 .jw-menu-list #nav .menu-item.current-menu-parent > a,
  .jw-header-v2 .jw-menu-list #nav .menu-item.current-menu-parent > a,
  .jw-header-v3 .jw-menu-list #nav .menu-item.current-menu-parent > a,
  .jw-header-v1 .jw-menu-list #nav .menu-item.current_page_item > a,
  .jw-header-v2 .jw-menu-list #nav .menu-item.current_page_item > a,
  .jw-header-v3 .jw-menu-list #nav .menu-item.current_page_item > a,
  .jw-header-v1 .jw-menu-list #nav .menu-item:hover > a,
  .jw-header-v2 .jw-menu-list #nav .menu-item:hover > a,
  .jw-header-v3 .jw-menu-list #nav .menu-item:hover > a {
    color: #f48223 !important;
  }
  .jw-header-v1 .jw-menu-list #nav > .menu-item > a,
  .jw-header-v2 .jw-menu-list #nav > .menu-item > a,
  .jw-header-v3 .jw-menu-list #nav > .menu-item > a {
    color: #FFF;
    line-height: 50px;
    text-transform: uppercase;
  }
  .jw-header-v1 .jw-menu-list #nav > .menu-item .sub-menu,
  .jw-header-v2 .jw-menu-list #nav > .menu-item .sub-menu,
  .jw-header-v3 .jw-menu-list #nav > .menu-item .sub-menu {
    padding-left: 20px;
  }
  .jw-header-v1 .jw-menu-list #nav > .menu-item .sub-menu .menu-item > a,
  .jw-header-v2 .jw-menu-list #nav > .menu-item .sub-menu .menu-item > a,
  .jw-header-v3 .jw-menu-list #nav > .menu-item .sub-menu .menu-item > a {
    color: #999;
    line-height: 35px;
    font-weight: normal !important;
  }
  .jw-header-v3 .jw-logo {
    line-height: 50px;
  }
  .jw-header-v3 .logo-stick {
    display: none;
  }
  .jw-header-v3 .jw-logo.col-logo {
    opacity: 1;
  }
  .jw-header-v3 ul.jw-share-search-icon {
    right: 60px;
    top: -18px;
  }
  .jw-header-v3 .jw-header-menu .jw-menu-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    z-index: 99999;
    transition: .3s;
    -webkit-transition: .3s;
    opacity: 0;
    border-radius: 1px;
  }
  .jw-header-v3 .jw-header-menu .jw-menu-list.is_menumobi_active {
    opacity: 1;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .jw-header-v3 .jw-header-menu .jw-menu-list #nav {
    position: relative;
    width: 100%;
    height: 100%;
    background: #111;
    overflow: auto;
    padding: 20px;
  }
  .jw-header-v3 .jw-header-menu .jw-menu-list #nav .btn-close-menu-mobi {
    display: inline-block;
  }
  .jw-header-v3 .jw-header-menu .jw-menu-list #nav .menu-item {
    text-align: left;
  }
  .jw-header-v3 .jw-header-menu .jw-menu-list #nav .menu-item > a {
    text-align: left;
    display: block;
  }
  .jw-header-v3 .jw-header-menu .jw-menu-list #nav .menu-item.current-menu-parent > a,
  .jw-header-v3 .jw-header-menu .jw-menu-list #nav .menu-item.current_page_item > a,
  .jw-header-v3 .jw-header-menu .jw-menu-list #nav .menu-item:hover > a {
    color: #f48223 !important;
  }
  .jw-header-v3 .jw-header-menu .jw-menu-list #nav > .menu-item > a {
    color: #FFF;
    line-height: 50px;
    text-transform: uppercase;
  }
  .jw-header-v3 .jw-header-menu .jw-menu-list #nav > .menu-item .sub-menu {
    padding-left: 20px;
  }
  .jw-header-v3 .jw-header-menu .jw-menu-list #nav > .menu-item .sub-menu .menu-item > a {
    color: #999;
    line-height: 35px;
    font-weight: normal !important;
  }
}
@media (max-width: 768px - 1) {
  .jw-header-v3 .jw-logo.col-logo {
    padding: 0 15px;
  }
  .jw-header-v2 {
    position: relative;
    background: #252525;
  }
  .jw-header-v2 .jw-header-top .widget ul.jw-contact-info > li {
    padding: 0 10px;
    font-size: 10px;
  }
  .jw-header-v2 .jw-header-top .widget ul.jw-contact-info > li:after {
    display: none;
  }
  .jw-header-v1 .jw-header-top .widget.widget_search,
  .jw-header-v3 .jw-header-top .widget.widget_search,
  .jw-header-v1 .jw-header-top .widget.widget_social_widget,
  .jw-header-v3 .jw-header-top .widget.widget_social_widget {
    display: block !important;
    text-align: center;
  }
  .jw-header-v1 .jw-header-top .widget .jw-contact-info li:after,
  .jw-header-v3 .jw-header-top .widget .jw-contact-info li:after {
    display: none;
  }
  .jw-header-v1 .jw-header-top .widget ul.jw-contact-info,
  .jw-header-v2 .jw-header-top .widget ul.jw-contact-info,
  .jw-header-v3 .jw-header-top .widget ul.jw-contact-info,
  .jw-header-v1 .jw-header-top .widget ul.menu,
  .jw-header-v2 .jw-header-top .widget ul.menu,
  .jw-header-v3 .jw-header-top .widget ul.menu {
    text-align: center;
  }
  .jw-header-v1 .jw-header-top .give-form-wrap > .give-btn-modal,
  .jw-header-v2 .jw-header-top .give-form-wrap > .give-btn-modal,
  .jw-header-v3 .jw-header-top .give-form-wrap > .give-btn-modal {
    display: none;
  }
  .jw_widget_mini_cart {
    display: none;
  }
  .jw-header-v3 .jw-header-top .tb-col-left,
  .jw-header-v3 .jw-header-top .tb-col-right {
    text-align: center;
  }
  .jw-header-v3 .jw-header-top .tb-col-left .give-form-wrap > .give-btn-modal,
  .jw-header-v3 .jw-header-top .tb-col-right .give-form-wrap > .give-btn-modal {
    display: inline-block;
  }
}
@media (max-width: 480px - 1) {
  .jw-header-v1 .jw-header-top .widget ul.jw-contact-info > li,
  .jw-header-v2 .jw-header-top .widget ul.jw-contact-info > li,
  .jw-header-v3 .jw-header-top .widget ul.jw-contact-info > li,
  .jw-header-v1 .jw-header-top .widget ul.menu > li,
  .jw-header-v2 .jw-header-top .widget ul.menu > li,
  .jw-header-v3 .jw-header-top .widget ul.menu > li {
    padding: 0 5px;
  }
}
@media (max-width: 992px - 1) {
  .jw-header-v3 .logo-fix-menu {
    position: relative !important;
  }
  .header-fix {
    height: auto !important;
    padding: 5px 0;
  }
  .jw-header-v1 .jw-header-top .widget .jw-contact-info li {
    padding: 0 11px !important;
  }
}
/* .header-update-separation-list */
.header-update-separation-list {
  position: relative;
}
.header-update-separation-list:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 1px;
  height: 9px;
  background: #666;
  opacity: .7;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
/* btn toggle menu mobile */
.btn-toggle-menu-mobi.style-round {
  width: 52px;
  display: inline-block;
  text-align: center;
  line-height: 52px;
  vertical-align: top;
  font-size: 22px;
  display: none;
}
@media (max-width: 969px) {
  .btn-toggle-menu-mobi.style-round {
    display: inline-block;
  }
}
/* menu style header 4 */
.jwsthemes-menu-style-header4 .jwsthemes-menu-style {
  margin-left: 40px;
  display: inline-block;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector li.menu-item {
  position: relative;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector li.menu-item a {
  font-size: 13px;
  font-weight: normal;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu {
  position: absolute;
  background: rgba(16, 16, 16, 0.8);
  min-width: 180px;
  transition: .3s;
  -webkit-transition: .3s;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu li.menu-item.menu-item-has-children:before {
  color: #ffffff;
  content: "...";
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 0;
  opacity: 0.8;
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 5;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item {
  line-height: normal;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a {
  white-space: nowrap;
  padding: 14px 20px;
  display: block;
  color: #ffffff;
  position: relative;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #f48223;
  transition: .3s;
  -webkit-transition: .3s;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: #f48223;
  transition: .3s;
  -webkit-transition: .3s;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a,
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a,
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a {
  background: rgba(1, 1, 1, 0.8);
  color: #f48223;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a:after,
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a:after,
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a:after,
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a:before,
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a:before,
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a:before {
  width: 51%;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector > li.menu-item {
  display: inline-block;
  vertical-align: top;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector > li.menu-item > a {
  padding: 12px 20px;
  display: inline-block;
  text-transform: uppercase;
  color: #ffffff;
  font-family: montserrat;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector > li.menu-item > .sub-menu {
  visibility: hidden;
  opacity: 0;
  top: calc(110%);
  left: 0;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector > li.menu-item > .sub-menu .sub-menu {
  position: absolute;
  left: calc(110%);
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > .sub-menu li.menu-item:hover .sub-menu {
  left: 100%;
  opacity: 1;
  visibility: visible;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector > li.menu-item.current-menu-item > a,
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector > li.menu-item.current-menu-parent > a,
.jwsthemes-menu-style-header4 .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > a {
  color: #f48223;
}
.jwsthemes-menu-style-header4 .jwsthemes-menu-style .btn-close-menu-mobi {
  display: none;
}
@media (max-width: 1197px) {
  .jwsthemes-menu-style-header4 .jwsthemes-menu-style .menu-item > a {
    font-size: .7em !important;
  }
}
@media (max-width: 969px) {
  .jwsthemes-menu-style-header4 .jwsthemes-menu-style > #main-menu-selector {
    display: none;
    position: fixed;
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    overflow: auto;
    z-index: 999999;
    border-radius: 1px;
    background: #000000;
  }
  .jwsthemes-menu-style-header4 .jwsthemes-menu-style > #main-menu-selector.is-open {
    display: block;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .jwsthemes-menu-style-header4 .jwsthemes-menu-style > #main-menu-selector .menu-item {
    width: 100%;
  }
  .jwsthemes-menu-style-header4 .jwsthemes-menu-style > #main-menu-selector .menu-item .sub-menu {
    top: 0 !important;
    padding-left: 20px;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .jwsthemes-menu-style-header4 .jwsthemes-menu-style > #main-menu-selector .menu-item a {
    font-size: 0.8em !important;
    width: 100%;
  }
  .jwsthemes-menu-style-header4 .jwsthemes-menu-style > #main-menu-selector .btn-close-menu-mobi {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 52px;
    text-align: center;
    line-height: 52px;
    background: #f48223;
    color: #ffffff;
  }
  .jwsthemes-menu-style-header4 .jwsthemes-menu-style > #main-menu-selector .btn-close-menu-mobi:hover {
    background: #f48223;
  }
}
#jw_main_header .main-header-wrap.header-v4 .header-top-wrap,
#jw_main_header .main-header-wrap.header-v5 .header-top-wrap {
  font-size: 11px;
  background: #1c1c1c;
  height: 56px;
  line-height: 56px;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v4 .header-top-wrap:after,
#jw_main_header .main-header-wrap.header-v5 .header-top-wrap:after {
  background: #f48223;
  content: "";
  height: 100%;
  left: -15%;
  position: absolute;
  top: 0;
  transform: skewX(35deg);
  -webkit-transform: skewX(35deg);
  width: 50%;
  z-index: 0;
}
#jw_main_header .main-header-wrap.header-v4 .header-top-wrap .widget,
#jw_main_header .main-header-wrap.header-v5 .header-top-wrap .widget {
  position: relative;
  z-index: 3;
}
#jw_main_header .main-header-wrap.header-v4 .header-top-wrap .widget.widget_text .jw-contact-info li,
#jw_main_header .main-header-wrap.header-v5 .header-top-wrap .widget.widget_text .jw-contact-info li {
  display: inline-block;
  vertical-align: top;
  color: #ffffff;
  font-size: 12px;
}
#jw_main_header .main-header-wrap.header-v4 .header-top-wrap .widget.widget_text .jw-contact-info li:not(:last-child),
#jw_main_header .main-header-wrap.header-v5 .header-top-wrap .widget.widget_text .jw-contact-info li:not(:last-child) {
  margin-right: 13px;
  padding-right: 13px;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v4 .header-top-wrap .widget.widget_text .jw-contact-info li:not(:last-child):after,
#jw_main_header .main-header-wrap.header-v5 .header-top-wrap .widget.widget_text .jw-contact-info li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 1px;
  height: 9px;
  background: #666;
  opacity: .7;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
#jw_main_header .main-header-wrap.header-v4 .header-top-wrap .widget.widget_text .jw-contact-info li:not(:last-child):after,
#jw_main_header .main-header-wrap.header-v5 .header-top-wrap .widget.widget_text .jw-contact-info li:not(:last-child):after {
  background: #FFF;
}
#jw_main_header .main-header-wrap.header-v4 .header-top-wrap .widget.widget_nav_menu .menu li,
#jw_main_header .main-header-wrap.header-v5 .header-top-wrap .widget.widget_nav_menu .menu li {
  display: inline-block;
  vertical-align: top;
}
#jw_main_header .main-header-wrap.header-v4 .header-top-wrap .widget.widget_nav_menu .menu li:not(:last-child),
#jw_main_header .main-header-wrap.header-v5 .header-top-wrap .widget.widget_nav_menu .menu li:not(:last-child) {
  margin-right: 13px;
  padding-right: 13px;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v4 .header-top-wrap .widget.widget_nav_menu .menu li:not(:last-child):after,
#jw_main_header .main-header-wrap.header-v5 .header-top-wrap .widget.widget_nav_menu .menu li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 1px;
  height: 9px;
  background: #666;
  opacity: .7;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media (max-width: 749px) {
  #jw_main_header .main-header-wrap.header-v4 .header-top-wrap .h-top-left,
  #jw_main_header .main-header-wrap.header-v5 .header-top-wrap .h-top-left,
  #jw_main_header .main-header-wrap.header-v4 .header-top-wrap .h-top-right,
  #jw_main_header .main-header-wrap.header-v5 .header-top-wrap .h-top-right {
    text-align: center;
  }
}
@media (max-width: 450px) {
  #jw_main_header .main-header-wrap.header-v4 .header-top-wrap .h-top-right,
  #jw_main_header .main-header-wrap.header-v5 .header-top-wrap .h-top-right {
    font-size: 0.7em;
  }
}
@media (max-width: 320px) {
  #jw_main_header .main-header-wrap.header-v4 .header-top-wrap .h-top-left,
  #jw_main_header .main-header-wrap.header-v5 .header-top-wrap .h-top-left {
    font-size: 0.7em;
  }
  #jw_main_header .main-header-wrap.header-v4 .header-top-wrap .h-top-right,
  #jw_main_header .main-header-wrap.header-v5 .header-top-wrap .h-top-right {
    font-size: 0.5em;
  }
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap {
  line-height: 90px;
  padding-bottom: 22px;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item:not(:last-child),
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item:not(:last-child) {
  padding-right: 12px;
  margin-right: 12px;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item:not(:last-child):after,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 1px;
  height: 9px;
  background: #666;
  opacity: .7;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item a,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item a {
  display: inline-block;
  color: #444;
  font-size: 18px;
  line-height: normal;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item a:hover,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item a:hover {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search {
  position: absolute;
  z-index: 999;
  min-width: 300px;
  top: 50%;
  left: -20px;
  transform: translateX(-100%) translateY(-50%);
  -webkit-transform: translateX(-100%) translateY(-50%);
  display: none;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search.is-open,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search.is-open {
  display: block;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search.is-open form,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search.is-open form {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search label,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search label {
  display: block;
  width: 100%;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .search-field,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .search-field {
  margin: 0;
  line-height: normal;
  padding: 12px;
  border-radius: 1px;
  background: #FFF;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .screen-reader-text,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .screen-reader-text,
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .search-submit,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .search-submit {
  display: none;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-icon .cart-data,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-icon .cart-data {
  line-height: normal;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-icon .cart-data .cart-qty-total,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-icon .cart-data .cart-qty-total {
  background: #f48223;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  height: 20px;
  letter-spacing: 0;
  line-height: 20px;
  position: absolute;
  right: -14px;
  text-align: center;
  top: -16px;
  width: 20px;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart {
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  min-width: 320px;
  position: absolute;
  right: 0;
  top: calc(80%);
  z-index: 999999;
  padding: 10px;
  text-align: left;
  line-height: normal;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart.is-open,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart.is-open {
  visibility: visible;
  opacity: 1;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .heading-minicart,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .heading-minicart {
  border-bottom: 1px solid #ececec;
  font-family: montserrat;
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 0;
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list {
  margin-bottom: 20px;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .empty,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .empty {
  padding: 20px 0 0;
  text-align: center;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item {
  line-height: 60px;
  white-space: nowrap;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item:not(:last-child),
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item:not(:last-child) {
  border-bottom: 1px solid #f3f3f3;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item > a,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item > a,
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item > span,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item > span {
  display: inline-block;
  vertical-align: middle;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .remove,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .remove {
  background: #ec1c33 none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff;
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 20px;
  margin-right: 10px;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .remove:hover,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .remove:hover {
  opacity: .8;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .quantity .amount,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .quantity .amount {
  font-weight: bold;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item a:nth-child(2),
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item a:nth-child(2) {
  padding-left: 50px;
  width: 172px;
  font-size: 14px;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item a:nth-child(2) img,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item a:nth-child(2) img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 42px;
  border-radius: 50%;
  border: solid 1px #f48223;
  padding: 3px;
  height: auto;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .total,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .total {
  margin-bottom: 20px;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .total .amount,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .total .amount {
  margin-left: 20px;
  color: #f48223;
  font-weight: bold;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons {
  text-align: center;
  margin-bottom: 0;
  font-size: 0;
  letter-spacing: 0;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button {
  border: medium none;
  border-radius: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  width: 48%;
  border-radius: 2px;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button:not(:last-child),
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button:not(:last-child) {
  margin-right: 3.5%;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button.wc-forward,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button.wc-forward {
  background: #f48223;
  border: solid 2px #f48223;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button.wc-forward.checkout,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button.wc-forward.checkout {
  background: #f48223;
  border: solid 2px #f48223;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button:hover,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button:hover {
  background: transparent !important;
  color: #000000 !important;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  z-index: 99999;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap.sticky-menu,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap.sticky-menu {
  bottom: auto;
}
@media (max-width: 969px) {
  #jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap.sticky-menu,
  #jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap.sticky-menu {
    position: absolute !important;
    animation: initial !important;
    -webkit-animation: initial !important;
  }
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container {
  background: #1c1c1c;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style {
  margin-left: 40px;
  display: inline-block;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item a,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item a {
  font-size: 13px;
  font-weight: normal;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu {
  position: absolute;
  background: rgba(16, 16, 16, 0.8);
  min-width: 180px;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu li.menu-item.menu-item-has-children:before,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu li.menu-item.menu-item-has-children:before {
  color: #ffffff;
  content: "...";
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 0;
  opacity: 0.8;
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 5;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item {
  line-height: normal;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a {
  white-space: nowrap;
  padding: 14px 20px;
  display: block;
  color: #ffffff;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a:after,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #f48223;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a:before,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: #f48223;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a,
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a,
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a {
  background: rgba(1, 1, 1, 0.8);
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a:after,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a:after,
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a:after,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a:after,
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a:after,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a:after,
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a:before,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a:before,
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a:before,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a:before,
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a:before,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a:before {
  width: 51%;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item {
  display: inline-block;
  vertical-align: top;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item > a,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item > a {
  padding: 12px 20px;
  display: inline-block;
  text-transform: uppercase;
  color: #ffffff;
  font-family: montserrat;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item > .sub-menu,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item > .sub-menu {
  visibility: hidden;
  opacity: 0;
  top: calc(110%);
  left: 0;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item > .sub-menu .sub-menu,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item > .sub-menu .sub-menu {
  position: absolute;
  left: calc(110%);
  top: 0;
  visibility: hidden;
  opacity: 0;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > .sub-menu,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > .sub-menu li.menu-item:hover .sub-menu,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > .sub-menu li.menu-item:hover .sub-menu {
  left: 100%;
  opacity: 1;
  visibility: visible;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item.current-menu-item > a,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item.current-menu-item > a,
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item.current-menu-parent > a,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item.current-menu-parent > a,
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > a,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > a {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style .btn-close-menu-mobi,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style .btn-close-menu-mobi {
  display: none;
}
@media (max-width: 1197px) {
  #jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style .menu-item > a,
  #jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style .menu-item > a {
    font-size: .7em !important;
  }
}
@media (max-width: 969px) {
  #jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector,
  #jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector {
    display: none;
    position: fixed;
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    overflow: auto;
    z-index: 999999;
    border-radius: 1px;
    background: #000000;
  }
  #jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector.is-open,
  #jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector.is-open {
    display: block;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  #jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .menu-item,
  #jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .menu-item {
    width: 100%;
  }
  #jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .menu-item .sub-menu,
  #jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .menu-item .sub-menu {
    top: 0 !important;
    padding-left: 20px;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
  }
  #jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .menu-item a,
  #jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .menu-item a {
    font-size: 0.8em !important;
    width: 100%;
  }
  #jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .btn-close-menu-mobi,
  #jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .btn-close-menu-mobi {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 52px;
    text-align: center;
    line-height: 52px;
    background: #f48223;
    color: #ffffff;
  }
  #jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .btn-close-menu-mobi:hover,
  #jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .btn-close-menu-mobi:hover {
    background: #f48223;
  }
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .menu-item.new-page,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .menu-item.new-page {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .menu-item.new-page:before,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .menu-item.new-page:before {
  background: rgba(0, 0, 0, 0) url("https://mshikamano.co.ug/wp-content/themes/images/demo-new.png") no-repeat scroll center center / 100% auto;
  content: "";
  height: 20px;
  position: absolute;
  right: 10px;
  top: 9px;
  width: 32px;
  z-index: 999;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .paindonate_link,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .paindonate_link {
  border: medium none;
  border-radius: 0;
  float: right;
  font-family: montserrat;
  font-weight: bold;
  font-size: 13px;
  height: 52px;
  letter-spacing: 0;
  line-height: 52px;
  padding: 0;
  text-transform: uppercase;
  width: 160px;
  background: #f48223;
}
#jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .paindonate_link:hover,
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .paindonate_link:hover {
  background: #f48223;
}
@media (max-width: 969px) {
  #jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container,
  #jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container {
    background: transparent;
  }
  #jw_main_header .main-header-wrap.header-v4 .header-menu-wrap .menu-wrap .menu-container .btn-toggle-menu-mobi,
  #jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .btn-toggle-menu-mobi {
    float: right;
    background: #111;
  }
}
#jw_main_header .main-header-wrap.header-v5 {
  position: absolute;
  width: 100%;
  z-index: 99999;
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .scwg-item .jwwg-icon {
  color: #ffffff !important;
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .widget.widget_jw_combowigets .scwg-item .jwwg-icon:hover {
  color: #f48223 !important;
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .l-top-center .widget_social_widget .social-wrap a {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 1;
  -webkit-transition: 0s;
  transition: 0s;
  padding: 0 8px;
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .l-top-center .widget_social_widget .social-wrap a:not(:last-child) {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .l-top-center .widget_social_widget .social-wrap a:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 1px;
  height: 9px;
  background: #666;
  opacity: .7;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .l-top-center .widget_social_widget .social-wrap a:not(:last-child):after {
  background: #ffffff;
  height: 1px;
  width: 1px;
  border-radius: 50%;
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .l-top-center .widget_social_widget .social-wrap a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #ffffff;
  border-radius: 50%;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .l-top-center .widget_social_widget .social-wrap a:hover {
  z-index: 2;
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .logo-sidebar-wrap .l-top-center .widget_social_widget .social-wrap a:hover i {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap.sticky-menu {
  top: 12px !important;
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container {
  border-radius: 50px;
}
#jw_main_header .main-header-wrap.header-v5 .header-menu-wrap .menu-wrap .menu-container .paindonate_link {
  border-radius: 0 50px 50px 0;
}
@media (max-width: 969px) {
  #jw_main_header .main-header-wrap.header-v5 .paindonate_link {
    border-radius: 2px 0 0 2px !important;
  }
  #jw_main_header .main-header-wrap.header-v5 .btn-toggle-menu-mobi.style-round {
    border-radius: 0 2px 2px 0 !important;
  }
}
#jw_main_header .main-header-wrap.header-v6 {
  position: relative;
  width: 100%;
  z-index: 99999;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap {
  background: #1c1c1c;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-left {
  position: relative;
  line-height: 156px;
}
@media (max-width: 969px) {
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-left {
    line-height: 100px;
    text-align: center;
  }
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 {
  background: #0d0e0f;
  box-shadow: 400px 0 0 0 #0d0e0f, 800px 0 0 0 #0d0e0f, 1200px 0 0 0 #0d0e0f, 1600px 0 0 0 #0d0e0f, 2000px 0 0 0 #0d0e0f, 2400px 0 0 0 #0d0e0f, 2800px 0 0 0 #0d0e0f, 3200px 0 0 0 #0d0e0f;
  text-align: right;
  line-height: 44px;
}
@media (max-width: 969px) {
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 {
    box-shadow: 200px 0 0 0 #0d0e0f, 400px 0 0 0 #0d0e0f, -200px 0 0 0 #0d0e0f, -400px 0 0 0 #0d0e0f;
  }
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .widget {
  display: inline-block;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .widget.widget_nav_menu .menu {
  display: inline-block;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .widget.widget_nav_menu .menu .menu-item {
  display: inline-block;
  vertical-align: top;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .widget.widget_nav_menu .menu .menu-item:not(:last-child) {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .widget.widget_nav_menu .menu .menu-item:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 1px;
  height: 9px;
  background: #666;
  opacity: .7;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .widget.widget_nav_menu .menu .menu-item a {
  color: #ffffff;
  font-size: 11px;
  padding: 0 16px;
  line-height: 44px;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .widget.widget_nav_menu .menu .menu-item:hover a {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .paindonate_link {
  line-height: 44px;
  background: #1b1c1d;
  padding: 0 30px;
  margin-left: 50px;
  border-radius: 0;
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  font-family: montserrat;
  font-size: 11px;
  font-weight: bold;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .paindonate_link:hover {
  background: #f48223;
}
@media (max-width: 605px) {
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 {
    text-align: center !important;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .widget_nav_menu a {
    font-size: .6em !important;
    padding: 0 10px !important;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .paindonate_link {
    margin-left: 0 !important;
    font-size: .6em !important;
  }
}
@media (max-width: 320px) {
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area1 .widget_nav_menu a {
    font-size: .5em !important;
    padding: 0 6px !important;
  }
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 {
  background: #f48223;
  box-shadow: 400px 0 0 0 #f48223, 800px 0 0 0 #f48223, 1200px 0 0 0 #f48223, 1600px 0 0 0 #f48223, 2000px 0 0 0 #f48223, 2400px 0 0 0 #f48223, 2800px 0 0 0 #f48223, 3200px 0 0 0 #f48223;
  color: #ffffff;
  text-align: right;
  padding: 30px 0 60px;
}
@media (max-width: 969px) {
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 {
    box-shadow: -200px 0 0 0 #f48223, -400px 0 0 0 #f48223, 200px 0 0 0 #f48223, 400px 0 0 0 #f48223;
  }
}
@media (max-width: 700px) {
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 {
    padding: 10px 0 40px;
  }
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget {
  display: inline-block;
  vertical-align: middle;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget:not(:last-child) {
  margin-right: 50px;
}
@media (max-width: 700px) {
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget {
    text-align: center;
    width: 100%;
  }
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_text .wg-contact-item {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  position: relative;
  padding-left: 60px;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_text .wg-contact-item:not(:last-child) {
  margin-right: 40px;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_text .wg-contact-item .icon-wrap {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: solid 1px #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_text .wg-contact-item .info-wrap .title {
  font-weight: bold;
  font-family: montserrat;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_text .wg-contact-item .info-wrap p {
  margin-bottom: 0;
  line-height: normal;
  font-size: 12px;
}
@media (max-width: 545px) {
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_text .wg-contact-item {
    padding-left: 35px;
    min-height: 30px;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_text .wg-contact-item .icon-wrap {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_text .wg-contact-item .info-wrap .title {
    font-size: 0.6em;
    line-height: normal;
    margin-bottom: 3px;
    margin-top: 3px;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_text .wg-contact-item .info-wrap p {
    font-size: .6em;
  }
}
@media (max-width: 420px) {
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_text .wg-contact-item {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_text .wg-contact-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 700px) {
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets {
    position: fixed;
    right: 0;
    top: 130px;
    display: inline-block;
    width: auto;
    z-index: 99999;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item {
    display: block !important;
    margin: 0 !important;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item .jwwg-icon {
    border-radius: 0 !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item .jwwg-container-cart {
    min-width: 225px !important;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item .jwwg-container-search {
    min-width: 225px !important;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item .jwwg-container-search .search-field {
    padding: 10px !important;
  }
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap {
  font-size: 0;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item {
  display: inline-block;
  vertical-align: middle;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item:not(:first-child) {
  margin-left: 6px;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item a.jwwg-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #1b1c1d;
  color: #ffffff;
  font-size: 14px;
  border-radius: 1px;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item a.jwwg-icon:hover {
  background: #333;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search {
  position: absolute;
  z-index: 999;
  min-width: 300px;
  top: 50%;
  left: -10px;
  transform: translateX(-100%) translateY(-50%);
  -webkit-transform: translateX(-100%) translateY(-50%);
  display: none;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search.is-open {
  display: block;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search.is-open form {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search label {
  display: block;
  width: 100%;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .search-field {
  margin: 0;
  line-height: normal;
  padding: 16px;
  border-radius: 1px;
  background: #FFF;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .screen-reader-text,
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .search-submit {
  display: none;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-icon {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-icon .cart-data .cart-qty-total {
  height: 18px;
  min-width: 18px;
  line-height: 18px;
  background: #f48223;
  border-radius: 1px;
  color: #ffffff;
  position: absolute;
  right: 1px;
  text-align: center;
  top: 1px;
  font-size: 10px;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart {
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  min-width: 320px;
  position: absolute;
  right: 0;
  top: calc(120%);
  z-index: 999999;
  padding: 10px;
  text-align: left;
  line-height: normal;
  transition: .3s;
  -webkit-transition: .3s;
  font-size: initial;
  color: initial;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart.is-open {
  visibility: visible;
  opacity: 1;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .heading-minicart {
  border-bottom: 1px solid #ececec;
  font-family: montserrat;
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 0;
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list {
  margin-bottom: 20px;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .empty {
  padding: 20px 0 0;
  text-align: center;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item {
  line-height: 60px;
  white-space: nowrap;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item:not(:last-child) {
  border-bottom: 1px solid #f3f3f3;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item > a,
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item > span {
  display: inline-block;
  vertical-align: middle;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .remove {
  background: #ec1c33 none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff;
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 20px;
  margin-right: 10px;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .remove:hover {
  opacity: .8;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .quantity .amount {
  font-weight: bold;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item a:nth-child(2) {
  padding-left: 50px;
  width: 172px;
  font-size: 14px;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item a:nth-child(2) img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 42px;
  border-radius: 50%;
  border: solid 1px #f48223;
  padding: 3px;
  height: auto;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .total {
  margin-bottom: 20px;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .total .amount {
  margin-left: 20px;
  color: #f48223;
  font-weight: bold;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons {
  text-align: center;
  margin-bottom: 0;
  font-size: 0;
  letter-spacing: 0;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button {
  border: medium none;
  border-radius: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  width: 48%;
  border-radius: 2px;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button:not(:last-child) {
  margin-right: 3.5%;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button.wc-forward {
  background: #f48223;
  border: solid 2px #f48223;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button.wc-forward.checkout {
  background: #f48223;
  border: solid 2px #f48223;
}
#jw_main_header .main-header-wrap.header-v6 .header-top-wrap .area-top-right .header-top-wrap-area2 .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button:hover {
  background: transparent !important;
  color: #000000 !important;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap {
  position: absolute;
  bottom: -30px;
  width: 100%;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap.sticky-menu {
  top: 8px !important;
  bottom: auto;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap.sticky-menu .menu-container {
  margin-top: 0px;
}
@media (max-width: 969px) {
  #jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap.sticky-menu {
    position: absolute !important;
    bottom: -30px !important;
    animation: none !important;
    -webkit-animation: none !important;
  }
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container {
  background: #ffffff;
  border-radius: 100px;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style {
  margin-left: 40px;
  display: inline-block;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item a {
  font-size: 13px;
  font-weight: normal;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu {
  position: absolute;
  background: rgba(16, 16, 16, 0.8);
  min-width: 180px;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu li.menu-item.menu-item-has-children:before {
  color: #ffffff;
  content: "...";
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 0;
  opacity: 0.8;
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 5;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item {
  line-height: normal;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a {
  white-space: nowrap;
  padding: 14px 20px;
  display: block;
  color: #ffffff;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #f48223;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: #f48223;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a,
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a,
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a {
  background: rgba(1, 1, 1, 0.8);
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a:after,
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a:after,
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a:after,
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-item > a:before,
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item.current-menu-parent > a:before,
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .sub-menu > li.menu-item:hover > a:before {
  width: 51%;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item {
  display: inline-block;
  vertical-align: top;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item > a {
  padding: 12px 20px;
  display: inline-block;
  text-transform: uppercase;
  color: #ffffff;
  font-family: montserrat;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item > .sub-menu {
  visibility: hidden;
  opacity: 0;
  top: calc(110%);
  left: 0;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item > .sub-menu .sub-menu {
  position: absolute;
  left: calc(110%);
  top: 0;
  visibility: hidden;
  opacity: 0;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > .sub-menu li.menu-item:hover .sub-menu {
  left: 100%;
  opacity: 1;
  visibility: visible;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item.current-menu-item > a,
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item.current-menu-parent > a,
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > li.menu-item:hover > a {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style .btn-close-menu-mobi {
  display: none;
}
@media (max-width: 1197px) {
  #jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style .menu-item > a {
    font-size: .7em !important;
  }
}
@media (max-width: 969px) {
  #jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector {
    display: none;
    position: fixed;
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    overflow: auto;
    z-index: 999999;
    border-radius: 1px;
    background: #000000;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector.is-open {
    display: block;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .menu-item {
    width: 100%;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .menu-item .sub-menu {
    top: 0 !important;
    padding-left: 20px;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .menu-item a {
    font-size: 0.8em !important;
    width: 100%;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .btn-close-menu-mobi {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 52px;
    text-align: center;
    line-height: 52px;
    background: #f48223;
    color: #ffffff;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style > #main-menu-selector .btn-close-menu-mobi:hover {
    background: #f48223;
  }
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .menu-item.new-page {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .menu-item.new-page:before {
  background: rgba(0, 0, 0, 0) url("https://mshikamano.co.ug/wp-content/themes/images/demo-new.png") no-repeat scroll center center / 100% auto;
  content: "";
  height: 20px;
  position: absolute;
  right: 10px;
  top: 9px;
  width: 32px;
  z-index: 999;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item > a {
  color: #494949 !important;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item.current-menu-item > a,
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item.current-menu-parent > a,
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item:hover > a {
  color: #f48223 !important;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .menu-sidebar-wrap {
  background: #1b1c1d;
  border-radius: 0 50px 50px 0;
  display: inline-block;
  float: right;
  padding: 0 30px 0 10px;
  position: relative;
  z-index: 2;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .menu-sidebar-wrap:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  left: -25px;
  top: 0;
  background: #1b1c1d;
  z-index: -1;
  transform: skewX(-30deg);
  -webkit-transform: skewX(-30deg);
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .menu-sidebar-wrap .widget {
  display: inline-block;
  vertical-align: top;
}
#jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .menu-sidebar-wrap .widget.widget_social_widget .social-wrap > a {
  display: inline-block;
  line-height: 52px;
  padding: 0 10px;
  vertical-align: middle;
}
@media (max-width: 410px) {
  #jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .menu-sidebar-wrap {
    padding: 0 15px 0 10px;
  }
  #jw_main_header .main-header-wrap.header-v6 .header-menu-wrap .menu-wrap .menu-container .menu-sidebar-wrap .widget .social-wrap > a {
    padding: 0 5px !important;
    font-size: 11px;
  }
}
#jw_main_header .main-header-wrap.header-v7 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
#jw_main_header .main-header-wrap.header-v7 .btn-close-menu-mobi {
  display: none;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap {
  line-height: 70px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap.sticky-menu {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
}
@media (max-width: 1000px) {
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap.sticky-menu {
    position: absolute !important;
    -webkit-animation-name: none !important;
    animation-name: none !important;
  }
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .btn-toggle-menu-mobi.style-round {
  line-height: 70px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item a {
  position: relative;
  white-space: nowrap;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item a.hide_link {
  display: none !important;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item.mega-menu-item > .sub-menu {
  display: none;
  left: 50% !important;
  transform: translateX(-50%) translateY(20px) !important;
  -webkit-transform: translateX(-50%) translateY(20px) !important;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item.mega-menu-item > .sub-menu:after {
  left: 50% !important;
  transform: translateX(-50%) !important;
  -webkit-transform: translateX(-50%) !important;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item.mega-menu-item > .sub-menu.columns2 {
  width: calc(214px * 2);
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item.mega-menu-item > .sub-menu.columns3 {
  width: calc(214px * 3);
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item.mega-menu-item > .sub-menu.columns4 {
  width: calc(214px * 4);
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item.mega-menu-item > .sub-menu > li.menu-item {
  width: 210px;
  display: inline-block;
  vertical-align: top;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item.mega-menu-item > .sub-menu > li.menu-item > a:after {
  display: none;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item.mega-menu-item > .sub-menu > li.menu-item > .sub-menu {
  position: relative;
  visibility: visible;
  opacity: 1;
  left: 0;
  top: 0;
  animation: none;
  -webkit-animation: none;
  box-shadow: none;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item.mega-menu-item:hover > .sub-menu {
  display: block;
  transform: translateX(-50%) translateY(0) !important;
  -webkit-transform: translateX(-50%) translateY(0) !important;
  animation: MegamenuAnimateHoverEffect .3s !important;
  -webkit-animation: MegamenuAnimateHoverEffect .3s !important;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget ul li {
  padding: 11px 14px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget ul li > a {
  display: block;
  color: #555555;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget ul li:hover > a {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget ul li .post-date {
  font-size: 13px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget .wg-title {
  display: none;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_cause_list ul.default li.item {
  padding: 15px 14px;
  background: none;
  margin-bottom: 0;
  overflow: hidden;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_cause_list ul.default li.item .item-inner {
  position: relative;
  padding-left: 50px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_cause_list ul.default li.item .item-inner .post-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_cause_list ul.default li.item .item-inner .info-meta .title a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 15px;
  font-weight: normal;
  color: #555;
  display: block;
  margin-top: 2px;
  margin-bottom: 4px;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_cause_list ul.default li.item .item-inner .info-meta > span {
  font-size: 13px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_cause_list ul.default li.item .item-inner .info-meta > span.amount {
  font-weight: bold;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_cause_list ul.default li.item:hover .info-meta .title a {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul.default li.item {
  overflow: hidden;
  padding: 15px 14px;
  background: none;
  margin-bottom: 0;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul.default li.item .item-inner {
  position: relative;
  padding-left: 50px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul.default li.item .item-inner .post-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul.default li.item .item-inner .post-thumb img {
  width: 100%;
  height: auto;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul.default li.item .item-inner .post-thumb .date-meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  text-align: center;
  font-size: 9px;
  line-height: 11px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul.default li.item .item-inner .post-thumb .date-meta .date-meta-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul.default li.item .item-inner .post-thumb .date-meta .date-meta-inner > div {
  display: block;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul.default li.item .item-inner .info-meta .title a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 15px;
  font-weight: normal;
  color: #555;
  display: block;
  margin-top: 2px;
  margin-bottom: 4px;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul.default li.item .item-inner .info-meta > span {
  font-size: 13px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul.default li.item:hover .info-meta .title a {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_post_list ul.layout2 li.item {
  padding: 15px 14px;
  background: none;
  margin-bottom: 0;
  overflow: hidden;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_post_list ul.layout2 li.item .item-inner {
  position: relative;
  padding-left: 50px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_post_list ul.layout2 li.item .item-inner .post-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_post_list ul.layout2 li.item .item-inner .info-meta .title a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 15px;
  font-weight: normal;
  color: #555;
  display: block;
  margin-top: 2px;
  margin-bottom: 4px;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_post_list ul.layout2 li.item .item-inner .info-meta > span {
  font-size: 13px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_post_list ul.layout2 li.item:hover .info-meta .title a {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li {
  padding: 15px 14px;
  overflow: hidden;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li a {
  float: none;
  display: block;
  padding-left: 50px;
  overflow: visible;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li a .product-title {
  font-size: 15px;
  font-weight: normal;
  color: #555;
  display: block;
  margin-top: 2px;
  margin-bottom: 4px;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li .amount {
  font-size: 13px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li ins {
  text-decoration: none;
  border-bottom: none;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li del {
  margin-right: 4px;
  opacity: .5;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li > *:nth-child(2) {
  padding-left: 50px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li:hover a .product-title {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_charitable_campaigns_widget ol.campaigns {
  margin: 0;
  max-width: 300px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign {
  padding: 20px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-bottom: none !important;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .wp-post-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  width: 100% !important;
  height: auto !important;
  z-index: -1;
  opacity: .2;
  margin: 0;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title {
  display: block;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  font-weight: normal;
  letter-spacing: 0;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title > a {
  color: #555555;
  font-size: 15px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-time-left {
  font-size: 13px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-time-left .amount {
  font-size: 13px;
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign:hover .wp-post-image {
  opacity: .1;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign:hover .campaign-title a {
  color: #f48223;
}
@media (max-width: 1000px) {
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_post_list ul li,
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul li,
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_cause_list ul li,
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li {
    line-height: normal !important;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_post_list ul li .title a,
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul li .title a,
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_cause_list ul li .title a,
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li .title a {
    color: #ffffff !important;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_post_list ul li span,
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_event_list ul li span,
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_jw_cause_list ul li span,
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li span {
    color: #ffffff;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li > a {
    padding-left: 50px !important;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li > a > .product-title {
    color: #ffffff !important;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .menu-item .widget.widget_products ul li > a > img {
    margin: 0;
  }
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item {
  display: inline-block;
  vertical-align: top;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item > a {
  display: inline-block;
  padding: 0 14px;
  font-weight: bold !important;
  color: #ffffff;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item.current-menu-item > a,
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item:hover > a {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item > .sub-menu {
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  /* fix hover */
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item > .sub-menu:after {
  content: "";
  position: absolute;
  left: 10px;
  top: -14px;
  border: solid 7px transparent;
  border-bottom-color: #ffffff;
  z-index: 9;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item > .sub-menu:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 11px;
  top: -11px;
  left: 0;
  z-index: 9;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item > .sub-menu .menu-item.menu-item-has-children > a:after {
  content: "...";
  letter-spacing: 1px;
  line-height: 0;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item > .sub-menu .menu-item .sub-menu {
  left: calc(100% + 20px);
  top: 0;
  visibility: hidden;
  opacity: 0;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item > .sub-menu .menu-item:hover .sub-menu {
  left: calc(100% + 2px);
  opacity: 1;
  visibility: visible;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item .sub-menu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 0;
  top: calc(100% + 10px);
  min-width: 180px;
  background: #ffffff;
  box-shadow: 0 0 18px -6px rgba(0, 0, 0, 0.3);
  z-index: 9;
  text-align: left;
  border-radius: 2px;
  transition: .3s;
  -webkit-transition: .3s;
  transition-delay: .2s;
  -webkit-transition-delay: .2s;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item .sub-menu > .menu-item {
  line-height: normal;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item .sub-menu > .menu-item:not(:last-child) {
  border-bottom: 1px solid #fafafa;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item .sub-menu > .menu-item > a {
  display: block;
  padding: 14px;
  color: #555555;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item .sub-menu > .menu-item:hover > a {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector > .menu-item:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
@media (max-width: 1000px) {
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    z-index: 9999;
    overflow: auto;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 1px;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector.is-open {
    display: block;
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector .btn-close-menu-mobi {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    color: #ffffff !important;
    background: #f48223 !important;
    display: block;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item {
    line-height: 45px;
    display: block;
    width: 100%;
    text-align: left;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item > a {
    display: block;
    width: 100%;
    padding: 0;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item .widget.widget_charitable_campaigns_widget li.campaign {
    color: #ffffff;
    line-height: normal;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item .widget.widget_charitable_campaigns_widget li.campaign .campaign-title {
    color: #ffffff;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item .widget.widget_charitable_campaigns_widget li.campaign .campaign-title > a {
    color: #ffffff !important;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item .widget.widget_recent_entries ul li {
    line-height: normal !important;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item .widget.widget_recent_entries ul li a,
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item .widget.widget_recent_entries ul li span {
    color: #ffffff;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item.menu-item-has-children.mega-menu-item ul.sub-menu {
    position: relative;
    display: block;
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    animation: none !important;
    -webkit-animation: none !important;
    max-width: 100%;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item.menu-item-has-children.mega-menu-item ul.sub-menu > li {
    width: 100% !important;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item.menu-item-has-children ul.sub-menu {
    border-radius: 0;
    border-top: 1px solid #222;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    left: 0 !important;
    top: 0 !important;
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    background: transparent;
    padding-left: 20px;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item.menu-item-has-children ul.sub-menu:after {
    display: none;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item.menu-item-has-children ul.sub-menu li {
    border-bottom: none !important;
    line-height: 45px;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item.menu-item-has-children ul.sub-menu li > a {
    padding: 0;
    font-weight: bold;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item.menu-item-has-children ul.sub-menu > li.menu-item > a {
    color: #f6f6f6;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .menu-container .jwsthemes-menu-style #main-menu-selector li.menu-item.menu-item-has-children ul.sub-menu > li.menu-item:hover > a {
    color: #f48223;
  }
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container {
  text-align: right;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item .jwwg-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
  text-align: center;
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item .jwwg-icon:hover {
  color: #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item .jwwg-icon i {
  line-height: normal;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search {
  line-height: normal;
  position: absolute;
  z-index: 999;
  min-width: 300px;
  top: calc(80%);
  right: 0;
  display: none;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search.is-open {
  display: block;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search.is-open form {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search label {
  display: block;
  width: 100%;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .search-field {
  margin: 0;
  line-height: normal;
  padding: 12px;
  border-radius: 1px;
  background: #FFF;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .screen-reader-text,
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .search-submit {
  display: none;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-icon {
  position: relative;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-icon .cart-data {
  position: absolute;
  top: -12px;
  right: 2px;
  line-height: normal;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-icon .cart-data .cart-qty-total {
  font-size: 9px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart {
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  min-width: 320px;
  position: absolute;
  right: 0;
  top: calc(80%);
  z-index: 999999;
  padding: 10px;
  text-align: left;
  line-height: normal;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart.is-open {
  visibility: visible;
  opacity: 1;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .heading-minicart {
  border-bottom: 1px solid #ececec;
  font-family: montserrat;
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 0;
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list {
  margin-bottom: 20px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .empty {
  padding: 20px 0 0;
  text-align: center;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item {
  line-height: 60px;
  white-space: nowrap;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item:not(:last-child) {
  border-bottom: 1px solid #f3f3f3;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item > a,
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item > span {
  display: inline-block;
  vertical-align: middle;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .remove {
  background: #ec1c33 none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff !important;
  height: 20px;
  line-height: 18px;
  text-align: center;
  width: 20px;
  margin-right: 10px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .remove:hover {
  opacity: .8;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item .quantity .amount {
  font-weight: bold;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item a:nth-child(2) {
  padding-left: 56px;
  width: 172px;
  font-size: 14px;
  position: relative;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .cart_list .mini_cart_item a:nth-child(2) img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 42px;
  border-radius: 50%;
  border: solid 1px #f48223;
  padding: 3px;
  height: auto;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .total {
  margin-bottom: 20px;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .total .amount {
  margin-left: 20px;
  color: #f48223;
  font-weight: bold;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons {
  text-align: center;
  margin-bottom: 0;
  font-size: 0;
  letter-spacing: 0;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button {
  border: medium none;
  border-radius: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  width: 48%;
  border-radius: 2px;
  padding: 10px 0;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button:not(:last-child) {
  margin-right: 3.5%;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button.wc-forward {
  background: #f48223;
  border: solid 2px #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button.wc-forward.checkout {
  background: #f48223;
  border: solid 2px #f48223;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-cart .jwwg-container-cart .buttons a.button:hover {
  background: transparent !important;
  color: #000000 !important;
}
#jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget.widget_jw_combowigets .combo-widgets-shortcode-wrap .scwg-item.jwwg-menu-off-canvas .jwwg-container-menu-off-canvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 310px;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 1000px) {
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget .combo-widgets-shortcode-wrap {
    position: fixed;
    right: 0;
    top: 140px;
    line-height: normal;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget .combo-widgets-shortcode-wrap .scwg-item {
    display: block !important;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget .combo-widgets-shortcode-wrap .scwg-item .jwwg-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget .combo-widgets-shortcode-wrap .scwg-item .jwwg-icon > i {
    font-size: 10px;
  }
  #jw_main_header .main-header-wrap.header-v7 .menu-wrap .sidebar-container .widget .combo-widgets-shortcode-wrap .scwg-item.jwwg-search .jwwg-container-search .search-field {
    width: 280px;
    margin-top: 10px !important;
  }
}
#jw_main_header .main-header-wrap .sticky-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.admin-bar #jw_main_header .main-header-wrap .sticky-menu {
  top: 32px !important;
}
.admin-bar #jw_main_header .main-header-wrap.header-v5 .menu-wrap.sticky-menu {
  top: 40px !important;
}
.admin-bar #jw_main_header .main-header-wrap.header-v6 .menu-wrap.sticky-menu {
  top: 40px !important;
}
.modal-open .header-v4 .menu-wrap.sticky-menu,
.modal-open .header-v5 .menu-wrap.sticky-menu {
  height: 100%;
}
/* FOOTER */
.archive .jw-footer,
.single .jw-footer,
.search .jw-footer {
  margin-top: 90px;
}
.jw-footer {
  color: #666666;
}
.jw-footer a {
  color: #666666;
}
.jw-footer a:hover {
  color: #f48223;
}
.jw-footer h1,
.jw-footer h2,
.jw-footer h3,
.jw-footer h4,
.jw-footer h5,
.jw-footer h6 {
  color: #ffffff;
}
.jw-footer .jw-footer-top {
  font-size: 13px;
  line-height: 26px;
  color: #666666;
  background: #222222;
  padding: 120px 0 90px;
}
.jw-footer .jw-footer-top .widget {
  max-width: 320px;
  margin: auto;
}
.jw-footer .jw-footer-top .widget h4.wg-title {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 26px;
  padding-bottom: 15px;
}
.jw-footer .jw-footer-top .widget h4.wg-title:after {
  content: "¦ ------";
  display: inline-block;
  margin-top: 11px;
  margin-left: 20px;
  height: 2px;
  width: 50px;
  line-height: 2px;
  color: #f48223;
  font-size: 20px;
  letter-spacing: -3px;
  white-space: nowrap;
}
.jw-footer .jw-footer-top .widget .jw-desc {
  margin-bottom: 20px;
}
.jw-footer .jw-footer-top .widget ul.tb-info-list {
  margin: 0;
  padding: 0;
}
.jw-footer .jw-footer-top .widget ul.tb-info-list > li {
  list-style: none;
  margin-bottom: 15px;
}
.jw-footer .jw-footer-top .widget ul.tb-info-list > li > span {
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #ffffff;
  background: #f48223;
  margin-right: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-footer .jw-footer-top .widget ul.tb-info-list > li:last-child {
  margin-bottom: 0;
}
.jw-footer .jw-footer-top .address-des {
  margin-top: 22px;
}
.jw-footer .jw-footer-top .address-des p {
  font-size: 14px;
  color: #efeeee;
  margin-bottom: 0px !important;
}
.jw-footer .jw-footer-top .jw-newsletter-desc {
  margin-top: -5px;
  margin-bottom: 41px;
  font-size: 14px;
  color: #efeeee;
}
.jw-footer .jw-footer-top .newsletter-widget {
  position: relative;
}
.jw-footer .jw-footer-top .newsletter-widget:after {
  content: "\f1d9";
  font-family: FontAwesome;
  font-size: 18px;
  position: absolute;
  top: 10px;
  right: 15px;
  color: #f48223;
}
.jw-footer .jw-footer-top .newsletter-widget input {
  color: #666666;
  border: 1px solid #555555;
  margin-bottom: 50px;
  padding: 12px 20px;
}
.jw-footer .jw-footer-top .newsletter-widget input.newsletter-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  opacity: 0;
  z-index: 9;
}
.jw-footer .jw-footer-top .newsletter-widget input:focus {
  border-color: #f48223;
}
.jw-footer .jw-footer-top .widget_jw_recent_compains .wg-title {
  margin-bottom: 18px !important;
}
.jw-footer .jw-footer-top .widget_jw_recent_compains .jw-recent-compains .compains-content .compains-title {
  font-size: 13px;
  font-family: Poppins;
  font-weight: 400;
  position: relative;
  margin-bottom: 10px;
}
.jw-footer .jw-footer-top .widget_jw_recent_compains .jw-recent-compains .compains-content .compains-title:before,
.jw-footer .jw-footer-top .widget_jw_recent_compains .jw-recent-compains .compains-content .compains-title:after {
  content: "";
  position: absolute;
}
.jw-footer .jw-footer-top .widget_jw_recent_compains .jw-recent-compains .compains-content .compains-title:before {
  background: #bbbbbb;
  width: 4px;
  height: 4px;
  top: 15px;
  left: 4px;
}
.jw-footer .jw-footer-top .widget_jw_recent_compains .jw-recent-compains .compains-content .compains-title:after {
  background: transparent;
  width: 12px;
  height: 12px;
  border: 2px solid #bbbbbb;
  top: 11px;
  left: 0;
}
.jw-footer .jw-footer-top .widget_jw_recent_compains .jw-recent-compains .compains-content .compains-title a {
  color: #ffffff;
  padding-left: 32px;
  line-height: 36px;
}
.jw-footer .jw-footer-top .widget_jw_recent_compains .jw-recent-compains .compains-content .compains-title:hover:before {
  background: #f48223;
}
.jw-footer .jw-footer-top .widget_jw_recent_compains .jw-recent-compains .compains-content .compains-title:hover:after {
  border-color: #f48223;
}
.jw-footer .jw-footer-top .widget_jw_recent_compains .jw-recent-compains .compains-content .compains-title:hover a {
  color: #f48223;
}
.jw-footer .jw-footer-top .widget_social_widget .social-wrap > a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  background: rgba(25, 25, 25, 0.7);
  margin-right: 5px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}
.jw-footer .jw-footer-top .widget_social_widget .social-wrap > a:hover {
  color: #ffffff;
  background: #f48223;
}
.jw-footer .jw-footer-top .widget_social_widget .social-wrap > a:hover.jw-facebook,
.jw-footer .jw-footer-top .widget_social_widget .social-wrap > a:hover.jw-twitter,
.jw-footer .jw-footer-top .widget_social_widget .social-wrap > a:hover.jw-google-plus,
.jw-footer .jw-footer-top .widget_social_widget .social-wrap > a:hover.jw-linkedin,
.jw-footer .jw-footer-top .widget_social_widget .social-wrap > a:hover.jw-dribbble {
  background: #f48223;
}
.jw-footer .jw-footer-top .widget_social_widget .social-wrap > a:last-child {
  margin: 0;
}
.jw-footer .jw-footer-top #instafeed a {
  float: left;
  width: 30%;
  margin: 3px;
  position: relative;
}
.jw-footer .jw-footer-top #instafeed a:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: " ";
  top: 0;
  left: 0;
  background: #000000;
  opacity: 0;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-footer .jw-footer-top #instafeed a:hover:after {
  opacity: 0.6;
}
.jw-footer .jw-footer-top #instafeed a img {
  width: 100%;
}
.jw-footer .jw-footer-top .widget_jw_post_list .jw-post-list > li {
  background: none;
  width: 100%;
  float: left;
  padding: 0px 0px 10px 0;
}
.jw-footer .jw-footer-top .widget_jw_post_list .jw-post-list > li .item-inner img {
  float: left;
  width: 33%;
  margin-right: 5%;
}
.jw-footer .jw-footer-top .widget_jw_post_list .jw-post-list > li .item-inner .info-meta {
  float: left;
  width: 62%;
}
.jw-footer .jw-footer-top .widget_jw_post_list .jw-post-list > li .item-inner .info-meta span {
  font-family: Arimo;
  font-size: 11px;
  color: #f48223;
}
.jw-footer .jw-footer-top .widget_jw_post_list .jw-post-list > li .item-inner .info-meta .title {
  margin-top: 3px;
  line-height: 18px;
}
.jw-footer .jw-footer-top .widget_jw_post_list .jw-post-list > li .item-inner .info-meta .title a {
  font-family: Poppins;
  font-size: 13px;
  color: #ffffff;
}
.jw-footer .jw-footer-top .widget_jw_post_list .jw-post-list > li .item-inner .info-meta .title a:hover {
  color: #f48223;
}
.jw-footer .jw-footer-top .widget_jw_post_list .jw-post-list > li:first-child {
  padding-top: 0;
}
.jw-footer .jw-footer-bottom {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-align: center;
  color: #ebebeb;
  background: #0d0d0d;
  font-family: Poppins;
  padding: 30px 0;
}
.jw-footer .jw-footer-bottom span {
  color: #f48223;
  font-weight: 600;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top {
  font-size: 15px;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget {
  max-width: none !important;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget:not(:first-child) {
  margin-top: 20px;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget .wg-title {
  margin-bottom: 20px;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget .wg-title:before,
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget .wg-title:after {
  display: none;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget.widget_social_widget .social-wrap > a {
  width: auto;
  height: auto;
  line-height: normal;
  font-size: 18px;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget.widget_social_widget .social-wrap > a i {
  color: #999;
  transition: .3s;
  -webkit-transition: .3s;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget.widget_social_widget .social-wrap > a:not(:last-child) {
  margin-right: 12px;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget.widget_social_widget .social-wrap > a:hover {
  background: none;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget.widget_social_widget .social-wrap > a:hover i {
  color: #f48223;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget.widget_text a {
  color: #ffffff;
  border-bottom: 1px dotted;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget.widget_text a:hover {
  color: #f48223;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget.widget_text .footer-address .add-item {
  display: block;
  padding-left: 30px;
  position: relative;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget.widget_text .footer-address .add-item:not(:last-child) {
  margin-bottom: 16px;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget.widget_text .footer-address .add-item .wrap-add-items > span {
  display: block;
  width: 100%;
}
#jw_footer.jw-footer.footer-v2 .jw-footer-top .widget.widget_text .footer-address .add-item i {
  position: absolute;
  left: 0;
  top: 5px;
}
@media (max-width: 992px - 1) {
  .jw-footer .jw-footer-top .row .container > div:nth-child(1),
  .jw-footer .jw-footer-top .row .container > div:nth-child(2) {
    margin-bottom: 50px;
  }
  #jw_footer .jw-footer-top > .container > .row > div:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px - 1) {
  .jw-footer .jw-footer-top .row .container > div:nth-child(3) {
    margin-bottom: 50px;
  }
  .jw-footer .jw-footer-top .newsletter-widget input {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .jw-footer .row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: flex;
  }
}
/* SERVICE */
.jw-counter-up-wrap {
  position: relative;
}
.jw-counter-up-wrap .jw-counter {
  padding: 36px 20px 58px 20px;
  text-align: center;
}
.jw-counter-up-wrap .jw-counter .jw-number {
  position: relative;
  display: inline-block;
  font-family: Poppins;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #ffffff;
  padding-bottom: 11px;
  margin-bottom: 0px;
}
.jw-counter-up-wrap .jw-counter .jw-number:after {
  content: "\'\'\'\'\'\'";
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 0.5;
  color: #f48223;
  height: 4px;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.jw-counter-up-wrap .jw-counter .jw-title {
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  color: #f48223;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}
.sv-custom .tpl1:nth-child(even) {
  background-color: #fdfdfd;
  margin-bottom: -15px;
}
.sv-custom .tpl1:nth-child(odd) {
  background-color: #fafafa;
  margin-bottom: -15px;
}
.jw-service-style1 {
  position: relative;
  display: inline-block;
  text-align: center;
  max-width: 475px;
  overflow: hidden;
}
.jw-service-style1 .jw-service.right .jw-overlay {
  padding: 20px;
  padding-left: 100px;
}
.jw-service-style1 .jw-service.right .jw-overlay .jws-icon-service {
  float: right;
  padding: 20px 0px;
}
.jw-service-style1 .jw-service.right .jw-overlay .jws-icon-service i {
  font-size: 40px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-color: #222222;
  color: #ffffff;
  border-radius: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-service-style1 .jw-service.right .jw-overlay .jws-content-service {
  float: left;
  width: 67%;
  text-align: right;
}
.jw-service-style1 .jw-service.right .jw-overlay .jws-content-service h6 {
  color: #444444;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
}
.jw-service-style1 .jw-service.right .jw-overlay .jws-content-service p {
  color: #555555;
  font-size: 14px;
  line-height: 26px;
}
.jw-service-style1 .jw-service.right .jw-overlay:hover .jws-icon-service i {
  background-color: #f48223;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-service-style1 .jw-service.left .jw-overlay {
  padding: 20px;
  padding-right: 100px;
}
.jw-service-style1 .jw-service.left .jw-overlay .jws-icon-service {
  float: left;
  padding: 20px 0px;
}
.jw-service-style1 .jw-service.left .jw-overlay .jws-icon-service i {
  font-size: 40px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-color: #222222;
  color: #ffffff;
  border-radius: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-service-style1 .jw-service.left .jw-overlay .jws-content-service {
  float: right;
  width: 67%;
  text-align: left;
}
.jw-service-style1 .jw-service.left .jw-overlay .jws-content-service h6 {
  color: #444444;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
}
.jw-service-style1 .jw-service.left .jw-overlay .jws-content-service p {
  color: #555555;
  font-size: 14px;
  line-height: 26px;
}
.jw-service-style1 .jw-service.left .jw-overlay:hover .jws-icon-service i {
  background-color: #f48223;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-service-style1 .jw-service.top_right {
  text-align: right;
}
.jw-service-style1 .jw-service.top_right .jw-overlay {
  padding: 40px 45px 4px 45px;
}
.jw-service-style1 .jw-service.top_right .jw-overlay .jws-icon-service {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background: #1a1a1a;
  border-radius: 50%;
  margin-bottom: 21px;
  float: right;
}
.jw-service-style1 .jw-service.top_right .jw-overlay .jws-icon-service i {
  font-size: 40px;
  color: #ffffff;
  line-height: 90px;
}
.jw-service-style1 .jw-service.top_right .jw-overlay .jws-icon-service:hover {
  background: #f48223;
  transition: all 0.4s;
}
.jw-service-style1 .jw-service.top_right .jw-overlay .jws-content-service {
  width: 100%;
  float: left;
}
.jw-service-style1 .jw-service .jw-overlay {
  width: 100%;
  height: 100%;
  color: #111111;
  padding: 55px;
  float: left;
}
.jw-service-style1 .jw-service .jw-overlay > i {
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  color: #f48223;
  margin-bottom: 25px;
}
.jw-service-style1 .jw-service .jw-overlay > i:before,
.jw-service-style1 .jw-service .jw-overlay > i:after {
  font-size: 60px;
  line-height: 60px;
  margin: 0;
}
.jw-service-style1 .jw-service .jw-overlay .jw-title {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 36px;
  letter-spacing: 0.48px;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: Poppins;
}
.jw-service-style1 .jw-service .jw-overlay p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #b9b9b9;
  margin-bottom: 30px;
}
.jw-service-style1 .jw-service .jw-overlay .jw-btn-link {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.48px;
  white-space: nowrap;
  color: #f48223;
  background: transparent;
  padding: 15px 20px;
  min-width: 180px;
  border: 2px solid #f48223;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-service-style1 .jw-service .jw-overlay .jw-btn-link:hover {
  color: #ffffff;
  background: #f48223;
}
.jw-service-style3 .jw-service .jw-overlay {
  background-color: #fbfbfb;
  margin: 0 7.5px;
  padding: 69px 25px 64px 25px;
  position: relative;
}
.jw-service-style3 .jw-service .jw-overlay .jws-icon-service {
  text-align: center;
  margin-bottom: 37px;
}
.jw-service-style3 .jw-service .jw-overlay .overlay-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  text-align: center;
  z-index: 2;
}
.jw-service-style3 .jw-service .jw-overlay .overlay-inner .buton-inner {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 44%;
}
.jw-service-style3 .jw-service .jw-overlay .overlay-inner .jw-btn-link {
  opacity: 0;
  transform: translatex(-35px);
  -webkit-transform: translatex(-35px);
  font-size: 12px;
  color: #ffffff;
  width: 170px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  font-family: Poppins;
  display: block;
  text-transform: uppercase;
  line-height: 50px;
  padding: 0;
  margin: 0 auto;
}
.jw-service-style3 .jw-service .jw-overlay .overlay-inner .jw-btn-link:hover {
  background-color: #ffffff;
  color: #f48223;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.jw-service-style3 .jw-service .jw-overlay .overlay-inner:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  background-color: #f48223;
  z-index: -1;
  opacity: 0;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.jw-service-style3 .jw-service .jw-overlay .jws-content-service {
  text-align: center;
}
.jw-service-style3 .jw-service .jw-overlay .jws-content-service .jw-title {
  color: #333333;
  font-size: 20px;
  font-family: Poppins;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.jw-service-style3 .jw-service .jw-overlay .jws-content-service p {
  margin-bottom: 16px !important;
}
.jw-service-style3 .jw-service .jw-overlay .jws-content-service .sv-meta {
  font-family: Poppins;
}
.jw-service-style3 .jw-service .jw-overlay .jws-content-service .sv-meta .raise {
  font-size: 13px;
}
.jw-service-style3 .jw-service .jw-overlay .jws-content-service .sv-meta .raise_money {
  font-size: 18px;
  color: #f48223;
  font-weight: 600;
}
.jw-service-style3 .jw-service:hover .jw-overlay .overlay-inner .jw-btn-link {
  opacity: 1;
  transform: translatex(0px);
  -webkit-transform: translatex(0px);
}
.jw-service-style3 .jw-service:hover .overlay-inner:after {
  opacity: 0.8;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.jw-service-style2 {
  position: relative;
  display: inline-block;
  text-align: center;
  max-width: 505px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #fefdfd;
}
.jw-service-style2 .jw-service.right .jw-overlay {
  padding: 30px 20px;
  opacity: 0.98;
  background: #fafafa;
}
.jw-service-style2 .jw-service.right .jw-overlay .jws-icon-service {
  width: 30%;
  float: right;
  padding: 17px 0px;
}
.jw-service-style2 .jw-service.right .jw-overlay .jws-icon-service i {
  font-size: 45px;
}
.jw-service-style2 .jw-service.right .jw-overlay .jws-content-service {
  float: left;
  width: 70%;
  text-align: right;
}
.jw-service-style2 .jw-service.right .jw-overlay .jws-content-service h6 {
  color: #444444;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}
.jw-service-style2 .jw-service.right .jw-overlay .jws-content-service p {
  font-size: 14px;
  line-height: 22px;
  color: #555555;
}
.jw-service-style2 .jw-service.left .jw-overlay {
  padding: 48px 20px 20px 20px;
  opacity: 0.98;
  background: #fafafa;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.jw-service-style2 .jw-service.left .jw-overlay .jws-icon-service {
  width: 30%;
  float: left;
  padding: 17px 0px;
}
.jw-service-style2 .jw-service.left .jw-overlay .jws-icon-service i {
  font-size: 45px;
}
.jw-service-style2 .jw-service.left .jw-overlay .jws-content-service {
  float: right;
  width: 70%;
  text-align: left;
}
.jw-service-style2 .jw-service.left .jw-overlay .jws-content-service h6 {
  color: #444444;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}
.jw-service-style2 .jw-service.left .jw-overlay .jws-content-service p {
  font-size: 14px;
  line-height: 26px;
  color: #666666;
}
.jw-service-style2 .jw-service .jw-overlay {
  width: 100%;
  height: 100%;
  color: #111111;
  padding: 55px;
  float: left;
}
.jw-service-style2 .jw-service .jw-overlay:hover {
  background: rgba(0, 0, 0, 0.88);
  color: #ffffff;
}
.jw-service-style2 .jw-service .jw-overlay:hover .jw-btn-link {
  background: #f48223;
}
.jw-service-style2 .jw-service .jw-overlay:hover .jws-content-service p,
.jw-service-style2 .jw-service .jw-overlay:hover .jws-content-service h6 {
  color: #ffffff;
}
.jw-service-style2 .jw-service .jw-overlay:hover .jws-icon-service i {
  color: #f48223;
}
.jw-service-style2 .jw-service .jw-overlay > i {
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  color: #f48223;
  margin-bottom: 25px;
}
.jw-service-style2 .jw-service .jw-overlay > i:before,
.jw-service-style2 .jw-service .jw-overlay > i:after {
  font-size: 60px;
  line-height: 60px;
  margin: 0;
}
.jw-service-style2 .jw-service .jw-overlay .jw-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.48px;
  color: #ffffff;
  margin-bottom: 4px;
}
.jw-service-style2 .jw-service .jw-overlay > p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #b9b9b9;
  margin-bottom: 30px;
}
.jw-service-style2 .jw-service .jw-overlay .jw-btn-link {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  color: #ffffff;
  background: #222222;
  padding: 0;
  font-family: Poppins;
  min-width: 100px;
  position: absolute;
  top: 68px;
  right: -65px;
  width: 155px;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -o-transform: rotate(270deg);
}
.jw-service-style2 .jw-service .jw-overlay .jw-btn-link:hover {
  color: #ffffff;
  background: #f48223;
}
.white-box-style {
  color: #bbbbbb;
}
.white-box-style .jws-content-service p {
  color: #bbbbbb;
}
.jw-service-wrap.tpl1 {
  position: relative;
  display: inline-block;
  text-align: center;
  max-width: 475px;
  overflow: hidden;
}
.jw-service-wrap.tpl1 .jw-service.right .jw-overlay {
  padding: 20px;
  padding-left: 100px;
}
.jw-service-wrap.tpl1 .jw-service.right .jw-overlay .jws-icon-service {
  float: right;
  padding: 20px 0px;
}
.jw-service-wrap.tpl1 .jw-service.right .jw-overlay .jws-icon-service i {
  font-size: 40px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-color: #222222;
  color: #ffffff;
  border-radius: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-service-wrap.tpl1 .jw-service.right .jw-overlay .jws-content-service {
  float: left;
  width: 67%;
  text-align: right;
}
.jw-service-wrap.tpl1 .jw-service.right .jw-overlay .jws-content-service h6 {
  color: #444444;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
}
.jw-service-wrap.tpl1 .jw-service.right .jw-overlay .jws-content-service p {
  color: #555555;
  font-size: 14px;
  line-height: 26px;
}
.jw-service-wrap.tpl1 .jw-service.right .jw-overlay:hover .jws-icon-service i {
  background-color: #f48223;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-service-wrap.tpl1 .jw-service.left .jw-overlay {
  padding: 20px;
  padding-right: 100px;
}
.jw-service-wrap.tpl1 .jw-service.left .jw-overlay .jws-icon-service {
  float: left;
  padding: 20px 0px;
}
.jw-service-wrap.tpl1 .jw-service.left .jw-overlay .jws-icon-service i {
  font-size: 40px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-color: #222222;
  color: #ffffff;
  border-radius: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-service-wrap.tpl1 .jw-service.left .jw-overlay .jws-content-service {
  float: right;
  width: 67%;
  text-align: left;
}
.jw-service-wrap.tpl1 .jw-service.left .jw-overlay .jws-content-service h6 {
  color: #444444;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
}
.jw-service-wrap.tpl1 .jw-service.left .jw-overlay .jws-content-service p {
  color: #555555;
  font-size: 14px;
  line-height: 26px;
}
.jw-service-wrap.tpl1 .jw-service.left .jw-overlay:hover .jws-icon-service i {
  background-color: #f48223;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-service-wrap.tpl1 .jw-service.top_right {
  text-align: right;
}
.jw-service-wrap.tpl1 .jw-service.top_right .jw-overlay {
  padding: 40px 45px 4px 45px;
}
.jw-service-wrap.tpl1 .jw-service.top_right .jw-overlay .jws-icon-service {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background: #1a1a1a;
  border-radius: 50%;
  margin-bottom: 21px;
  float: right;
}
.jw-service-wrap.tpl1 .jw-service.top_right .jw-overlay .jws-icon-service i {
  font-size: 40px;
  color: #ffffff;
  line-height: 90px;
}
.jw-service-wrap.tpl1 .jw-service.top_right .jw-overlay .jws-icon-service:hover {
  background: #f48223;
  transition: all 0.4s;
}
.jw-service-wrap.tpl1 .jw-service.top_right .jw-overlay .jws-content-service {
  width: 100%;
  float: left;
}
.jw-service-wrap.tpl1 .jw-service .jw-overlay {
  width: 100%;
  height: 100%;
  color: #111111;
  padding: 55px;
  float: left;
}
.jw-service-wrap.tpl1 .jw-service .jw-overlay > i {
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  color: #f48223;
  margin-bottom: 25px;
}
.jw-service-wrap.tpl1 .jw-service .jw-overlay > i:before,
.jw-service-wrap.tpl1 .jw-service .jw-overlay > i:after {
  font-size: 60px;
  line-height: 60px;
  margin: 0;
}
.jw-service-wrap.tpl1 .jw-service .jw-overlay .jw-title {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 36px;
  letter-spacing: 0.48px;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: Poppins;
}
.jw-service-wrap.tpl1 .jw-service .jw-overlay p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #b9b9b9;
  margin-bottom: 30px;
}
.jw-service-wrap.tpl1 .jw-service .jw-overlay .jw-btn-link {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.48px;
  white-space: nowrap;
  color: #f48223;
  background: transparent;
  padding: 15px 20px;
  min-width: 180px;
  border: 2px solid #f48223;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-service-wrap.tpl1 .jw-service .jw-overlay .jw-btn-link:hover {
  color: #ffffff;
  background: #f48223;
}
.jw-service-wrap.tpl1.white-box {
  color: #bbbbbb;
}
.jw-service-wrap.tpl1.white-box .jws-content-service p {
  color: #bbbbbb;
}
.jw-service-wrap.tpl1.service-box {
  border: 10px solid #1a1a1a;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay {
  background-color: #fbfbfb;
  margin: 0 7.5px;
  padding: 69px 25px 64px 25px;
  position: relative;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .jws-icon-service {
  text-align: center;
  margin-bottom: 37px;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .overlay-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  text-align: center;
  z-index: 2;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .overlay-inner .buton-inner {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 44%;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .overlay-inner .jw-btn-link {
  opacity: 0;
  transform: translatex(-35px);
  -webkit-transform: translatex(-35px);
  font-size: 12px;
  color: #ffffff;
  width: 170px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  font-family: Poppins;
  display: block;
  text-transform: uppercase;
  line-height: 50px;
  padding: 0;
  margin: 0 auto;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .overlay-inner .jw-btn-link:hover {
  background-color: #ffffff;
  color: #f48223;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .overlay-inner:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  background-color: #f48223;
  z-index: -1;
  opacity: 0;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .jws-content-service {
  text-align: center;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .jws-content-service .jw-title {
  color: #333333;
  font-size: 20px;
  font-family: Poppins;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .jws-content-service p {
  margin-bottom: 16px !important;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .jws-content-service .sv-meta {
  font-family: Poppins;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .jws-content-service .sv-meta .raise {
  font-size: 13px;
}
.jw-service-wrap.tpl3 .jw-service .jw-overlay .jws-content-service .sv-meta .raise_money {
  font-size: 18px;
  color: #f48223;
  font-weight: 600;
}
.jw-service-wrap.tpl3 .jw-service:hover .jw-overlay .overlay-inner .jw-btn-link {
  opacity: 1;
  transform: translatex(0px);
  -webkit-transform: translatex(0px);
}
.jw-service-wrap.tpl3 .jw-service:hover .overlay-inner:after {
  opacity: 0.8;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.jw-service-wrap.tpl2 {
  position: relative;
  display: inline-block;
  text-align: center;
  max-width: 505px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #fefdfd;
}
.jw-service-wrap.tpl2 .jw-service.right .jw-overlay {
  padding: 30px 20px;
  opacity: 0.98;
  background: #fafafa;
}
.jw-service-wrap.tpl2 .jw-service.right .jw-overlay .jws-icon-service {
  width: 30%;
  float: right;
  padding: 17px 0px;
}
.jw-service-wrap.tpl2 .jw-service.right .jw-overlay .jws-icon-service i {
  font-size: 45px;
}
.jw-service-wrap.tpl2 .jw-service.right .jw-overlay .jws-content-service {
  float: left;
  width: 70%;
  text-align: right;
}
.jw-service-wrap.tpl2 .jw-service.right .jw-overlay .jws-content-service h6 {
  color: #444444;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}
.jw-service-wrap.tpl2 .jw-service.right .jw-overlay .jws-content-service p {
  font-size: 14px;
  line-height: 22px;
  color: #555555;
}
.jw-service-wrap.tpl2 .jw-service.left .jw-overlay {
  padding: 48px 20px 20px 20px;
  opacity: 0.98;
  background: #fafafa;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.jw-service-wrap.tpl2 .jw-service.left .jw-overlay .jws-icon-service {
  width: 30%;
  float: left;
  padding: 17px 0px;
}
.jw-service-wrap.tpl2 .jw-service.left .jw-overlay .jws-icon-service i {
  font-size: 45px;
}
.jw-service-wrap.tpl2 .jw-service.left .jw-overlay .jws-content-service {
  float: right;
  width: 70%;
  text-align: left;
}
.jw-service-wrap.tpl2 .jw-service.left .jw-overlay .jws-content-service h6 {
  color: #444444;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}
.jw-service-wrap.tpl2 .jw-service.left .jw-overlay .jws-content-service p {
  font-size: 14px;
  line-height: 26px;
  color: #666666;
}
.jw-service-wrap.tpl2 .jw-service .jw-overlay {
  width: 100%;
  height: 100%;
  color: #111111;
  padding: 55px;
  float: left;
}
.jw-service-wrap.tpl2 .jw-service .jw-overlay:hover {
  background: rgba(0, 0, 0, 0.88);
  color: #ffffff;
}
.jw-service-wrap.tpl2 .jw-service .jw-overlay:hover .jw-btn-link {
  background: #f48223;
}
.jw-service-wrap.tpl2 .jw-service .jw-overlay:hover .jws-content-service p,
.jw-service-wrap.tpl2 .jw-service .jw-overlay:hover .jws-content-service h6 {
  color: #ffffff;
}
.jw-service-wrap.tpl2 .jw-service .jw-overlay:hover .jws-icon-service i {
  color: #f48223;
}
.jw-service-wrap.tpl2 .jw-service .jw-overlay > i {
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  color: #f48223;
  margin-bottom: 25px;
}
.jw-service-wrap.tpl2 .jw-service .jw-overlay > i:before,
.jw-service-wrap.tpl2 .jw-service .jw-overlay > i:after {
  font-size: 60px;
  line-height: 60px;
  margin: 0;
}
.jw-service-wrap.tpl2 .jw-service .jw-overlay .jw-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.48px;
  color: #ffffff;
  margin-bottom: 4px;
}
.jw-service-wrap.tpl2 .jw-service .jw-overlay > p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #b9b9b9;
  margin-bottom: 30px;
}
.jw-service-wrap.tpl2 .jw-service .jw-overlay .jw-btn-link {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  color: #ffffff;
  background: #222222;
  padding: 0;
  font-family: Poppins;
  min-width: 100px;
  position: absolute;
  top: 68px;
  right: -65px;
  width: 155px;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -o-transform: rotate(270deg);
}
.jw-service-wrap.tpl2 .jw-service .jw-overlay .jw-btn-link:hover {
  color: #ffffff;
  background: #f48223;
}
@media (max-width: 1200px + 80) {
  body .margintop0 {
    margin-top: 0px !important;
  }
  .jw-service-wrap.tpl1 .jw-service.left .jw-overlay {
    padding-right: 0px;
  }
  .jw-service-wrap.tpl1 .jw-service.right .jw-overlay {
    padding-left: 0px;
  }
}
@media (max-width: 1200px - 1) and (min-width: 768px) {
  .jw-service-wrap.tpl1 .jw-service.top_right .jw-overlay {
    padding: 40px 10px 4px 5px;
  }
  .jw-service-wrap.tpl1 .jw-service.top_right .jw-overlay .jw-title {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .donate_service .service_box p {
    padding: 0 35px;
  }
}
@media (max-width: 1200px - 1) {
  .jw-info-wrap {
    padding: 35px 5px 16px 0px !important;
    margin: 0 auto 55px !important;
  }
  .jw-info-wrap .jw-info {
    padding-left: 25px !important;
  }
  .jw-service-wrap .jw-service .jw-overlay {
    padding: 30px;
  }
}
@media (max-width: 992px - 1) and (min-width: 768px) {
  .jw-counter-up-wrap .jw-counter .jw-title {
    font-size: 13px;
  }
}
@media (max-width: 992px - 1) {
  .jw-service-wrap.tpl1 .jw-service.right .jw-overlay .jws-content-service,
  .jw-service-wrap.tpl1 .jw-service.left .jw-overlay .jws-content-service {
    width: 100%;
    text-align: center;
  }
  .jw-service-wrap.tpl1 .jw-service.right .jw-overlay .jws-icon-service,
  .jw-service-wrap.tpl1 .jw-service.left .jw-overlay .jws-icon-service {
    float: none;
  }
  .jw-service-wrap {
    display: block;
    margin: 0 auto 30px;
  }
}
@media (max-width: 768px - 1) {
  .tbdonations_special_wrap.tpl2 .donation-thumbnail {
    padding-left: 15px;
  }
  .tbdonations_special_wrap.tpl2 .donation-content .donation-money .box_money {
    float: none !important;
    display: block;
  }
  .tbdonations_special_wrap.tpl2 .donation-content .donation-money .line_box {
    display: none;
  }
  .jw-service-wrap.tpl1 .jw-service.top_right .jw-overlay .jws-content-service,
  .jw-service-wrap.tpl1 .jw-service.top_right .jw-overlay .jws-icon-service {
    float: none;
    margin: 0 auto;
  }
  .jw-service-wrap.tpl1 .jw-service.top_right {
    text-align: center;
  }
  .jw-service-wrap.tpl1 .jw-service.top_right .jw-overlay {
    padding: 40px 15px 4px 15px;
  }
  .jw-service-wrap {
    display: block !important;
    max-width: 100% !important;
    margin: 0 auto 30px;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    border-radius: 3px !important;
  }
  .jw-service-wrap .jw-service .jw-overlay {
    padding: 25px;
  }
}
.jw-info-wrap {
  max-width: 370px;
  background: #fafafa;
  margin: 0 auto 30px;
  padding: 35px 30px 16px 0px;
  position: relative;
}
.jw-info-wrap .jw-info {
  padding-left: 60px;
}
.jw-info-wrap .jw-info > i {
  position: absolute;
  right: 47px;
  font-size: 25px;
  color: #fff;
  width: 80px;
  top: -40px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #f48223;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.jw-info-wrap .jw-info .jw-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.16px;
  color: #444444;
  margin-bottom: 2px;
}
.jw-info-wrap .jw-info .jw-content {
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1px;
  color: #666666;
}
@media (max-width: 480px - 1) {
  .jw-service-wrap.tpl2 .jw-service .jw-overlay .jw-btn-link {
    position: relative;
    top: 0;
    right: 0;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}
/* BLOG */
.jw-pagination-style1 {
  text-align: center;
}
.jw-pagination-style1 .page-numbers {
  display: inline-block;
  font-family: Arimo;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-align: center;
  color: #303030;
  margin: 0 -1px;
  width: 63px;
  height: 53px;
  line-height: 53px;
  background-color: #fafafa;
}
.jw-pagination-style1 .page-numbers.next,
.jw-pagination-style1 .page-numbers.prev {
  background: #222222;
  color: #ffffff;
  width: 63px;
  height: 75px;
  line-height: 75px;
  margin: 0 11px;
}
.jw-pagination-style1 .page-numbers > i {
  font-size: 16px;
}
.jw-pagination-style1 .page-numbers.current {
  color: #f48223;
}
.jw-pagination-style1 .page-numbers:hover {
  color: #f48223;
}
.jw-pagination-style1 .page-numbers.prev:hover,
.jw-pagination-style1 .page-numbers.next:hover {
  color: #ffffff;
  background: #f48223;
}
.jw-post-item-style1 .jw-post-item .jw-thumb > img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-post-item-style1 .jw-post-item .jw-content {
  position: relative;
  padding-top: 50px;
}
.jw-post-item-style1 .jw-post-item .jw-content .jw-title {
  transition: all 0.4s;
  color: #f48223;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.jw-post-item-style1 .jw-post-item .jw-content .jw-title:hover,
.jw-post-item-style1 .jw-post-item .jw-content .jw-title:focus,
.jw-post-item-style1 .jw-post-item .jw-content .jw-title:active {
  color: #f48223;
}
.jw-post-item-style1 .jw-post-item .jw-content .jw-info {
  font-family: Montserrat;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  position: absolute;
  top: -20px;
  left: 50%;
  width: 90%;
  height: 40px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.jw-post-item-style1 .jw-post-item .jw-content .jw-info > span {
  display: inline-block;
  margin-right: 10px;
}
.jw-post-item-style1 .jw-post-item .jw-content .jw-info > a {
  color: #ffffff;
}
.jw-post-item-style1 .jw-post-item .jw-content .jw-excerpt {
  margin-bottom: 30px;
}
.jw-post-item-style1 .jw-post-item .jw-content .jw-readmore {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-post-item-style1 .jw-post-item .jw-content .jw-readmore:hover {
  background: #f48223;
}
@media (max-width: 992px - 1) {
  .jw-blog-special .jw-post-detail {
    margin-bottom: 60px;
  }
  .jw-blog-special .jw-post-detail .jw-view-all {
    margin-left: 15px;
  }
  .jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .content-bottom .donate-meta .give-display-button {
    float: none !important;
    display: block !important;
  }
}
@media (max-width: 640px - 1) {
  .jw-blog-special .jw-post .jw-post-items > article .jw-post-item .jw-overlay .jw-blog-item-inner > i {
    display: none;
  }
}
@media (max-width: 480px - 1) {
  .jw-blog-special .jw-post .jw-post-items > article .jw-post-item .jw-overlay .jw-blog-item-inner {
    padding: 30px 20px;
  }
  .jw-blog-special .jw-post .jw-post-items > article .jw-post-item .jw-overlay .jw-blog-item-inner .jw-publish {
    display: none;
  }
}
.jw-post-item-grid .jw-header {
  position: relative;
  padding-left: 0;
}
.jw-post-item-grid .jw-header .jw-publish {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 105px;
  height: 110px;
  text-align: center;
  margin-bottom: -25px;
  padding: 15px 5px;
  color: #ffffff;
  background: #f48223;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-post-item-grid .jw-header .jw-publish > span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: -5px;
  font-family: Poppins;
}
.jw-post-item-grid .jw-header .jw-publish > span.jw-day {
  margin-top: 15px;
}
.jw-post-item-grid .jw-header .jw-publish > span.jw-month {
  font-size: 12px;
  color: #000000;
  text-transform: none;
  font-weight: 500;
}
.jw-post-item-grid .jw-header > a > img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.jw-post-item-grid .jw-content .jw-title {
  font-size: 18px;
  color: #444444;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.jw-post-item-grid .jw-content .jw-title a {
  color: #111111;
}
.jw-post-item-grid .jw-content ul.jw-meta {
  margin: 0;
  padding: 24px 0;
  padding-bottom: 5px;
}
.jw-post-item-grid .jw-content ul.jw-meta > li {
  font-size: 12px;
  fon-weight: 400;
  line-height: 29.07px;
  letter-spacing: 0.48px;
  color: #555555;
  display: inline-block;
  margin-right: 36px;
}
.jw-post-item-grid .jw-content ul.jw-meta > li:first-child {
  position: relative;
}
.jw-post-item-grid .jw-content ul.jw-meta > li:first-child:after {
  height: 10px;
  width: 2px;
  background-color: #bbbbbb;
  position: absolute;
  right: -19px;
  top: 31%;
  content: "";
}
.jw-post-item-grid .jw-content ul.jw-meta > li:last-child {
  margin: 0;
}
.jw-post-item-grid .jw-content ul.jw-meta > li > i {
  display: inline-block;
  margin-right: 10px;
}
.jw-post-item-grid .jw-content ul.jw-meta > li > span {
  color: #555555;
}
.jw-post-item-grid .jw-content .jw-excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #555555;
}
.jw-post-item-list .jw-content .jw-publish {
  display: inline-block;
  width: 100px;
  height: 100px;
  text-align: center;
  margin-bottom: 35px;
  padding: 15px 5px;
  border: 5px solid #f6f6f6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-post-item-list .jw-content .jw-publish > span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #f48223;
}
.jw-post-item-list .jw-content .jw-publish > span.jw-month {
  font-size: 11px;
  color: #f48223;
}
.jw-post-item-list .jw-content .jw-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  max-height: 60px;
  overflow: hidden;
  margin-bottom: 15px;
}
.jw-post-item-list .jw-content .jw-title > a {
  color: #555555;
}
.jw-post-item-list .jw-content .jw-title > a:hover {
  color: #f48223;
}
.jw-post-item-list .jw-content ul.jw-meta {
  margin: 0 0 15px;
  padding: 0;
}
.jw-post-item-list .jw-content ul.jw-meta > li {
  font-size: 12px;
  fon-weight: 400;
  line-height: 29.07px;
  letter-spacing: 0.48px;
  color: #555555;
  display: inline-block;
  margin-right: 30px;
}
.jw-post-item-list .jw-content ul.jw-meta > li:last-child {
  margin: 0;
}
.jw-post-item-list .jw-content ul.jw-meta > li > i {
  display: inline-block;
  margin-right: 10px;
}
.jw-post-item-list .jw-content ul.jw-meta > li > span {
  color: #f48223;
}
.jw-post-item-list .jw-content .jw-excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #555555;
  margin-bottom: 60px;
}
.jw-post-item-list .jw-content .jw-btn-main {
  padding: 15px 40px;
}
.jw-post-item-list .jw-thumb > a > img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-blog-wrapper.grid .jw-post-item {
  margin-bottom: 80px;
}
.jw-blog-wrapper.grid .jw-post-item .jw-header {
  position: relative;
  padding-left: 0;
}
.jw-blog-wrapper.grid .jw-post-item .jw-header .jw-publish {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 105px;
  height: 110px;
  text-align: center;
  margin-bottom: -25px;
  padding: 15px 5px;
  color: #ffffff;
  background: #f48223;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-blog-wrapper.grid .jw-post-item .jw-header .jw-publish > span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: -5px;
  font-family: Poppins;
}
.jw-blog-wrapper.grid .jw-post-item .jw-header .jw-publish > span.jw-day {
  margin-top: 15px;
}
.jw-blog-wrapper.grid .jw-post-item .jw-header .jw-publish > span.jw-month {
  font-size: 12px;
  color: #000000;
  text-transform: none;
  font-weight: 500;
}
.jw-blog-wrapper.grid .jw-post-item .jw-header > a > img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.jw-blog-wrapper.grid .jw-post-item .jw-content .jw-title {
  font-size: 18px;
  color: #444444;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.jw-blog-wrapper.grid .jw-post-item .jw-content .jw-title a {
  color: #111111;
}
.jw-blog-wrapper.grid .jw-post-item .jw-content ul.jw-meta {
  margin: 0;
  padding: 24px 0;
  padding-bottom: 5px;
}
.jw-blog-wrapper.grid .jw-post-item .jw-content ul.jw-meta > li {
  font-size: 12px;
  fon-weight: 400;
  line-height: 29.07px;
  letter-spacing: 0.48px;
  color: #555555;
  display: inline-block;
  margin-right: 36px;
}
.jw-blog-wrapper.grid .jw-post-item .jw-content ul.jw-meta > li:first-child {
  position: relative;
}
.jw-blog-wrapper.grid .jw-post-item .jw-content ul.jw-meta > li:first-child:after {
  height: 10px;
  width: 2px;
  background-color: #bbbbbb;
  position: absolute;
  right: -19px;
  top: 31%;
  content: "";
}
.jw-blog-wrapper.grid .jw-post-item .jw-content ul.jw-meta > li:last-child {
  margin: 0;
}
.jw-blog-wrapper.grid .jw-post-item .jw-content ul.jw-meta > li > i {
  display: inline-block;
  margin-right: 10px;
}
.jw-blog-wrapper.grid .jw-post-item .jw-content ul.jw-meta > li > span {
  color: #555555;
}
.jw-blog-wrapper.grid .jw-post-item .jw-content .jw-excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #555555;
}
.jw-blog-wrapper.list .jw-post-item {
  margin-bottom: 60px;
}
.jw-blog-wrapper.list .jw-post-item .jw-content .jw-publish {
  display: inline-block;
  width: 100px;
  height: 100px;
  text-align: center;
  margin-bottom: 35px;
  padding: 15px 5px;
  border: 5px solid #f6f6f6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-blog-wrapper.list .jw-post-item .jw-content .jw-publish > span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #f48223;
}
.jw-blog-wrapper.list .jw-post-item .jw-content .jw-publish > span.jw-month {
  font-size: 11px;
  color: #f48223;
}
.jw-blog-wrapper.list .jw-post-item .jw-content .jw-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  max-height: 60px;
  overflow: hidden;
  margin-bottom: 15px;
}
.jw-blog-wrapper.list .jw-post-item .jw-content .jw-title > a {
  color: #555555;
}
.jw-blog-wrapper.list .jw-post-item .jw-content .jw-title > a:hover {
  color: #f48223;
}
.jw-blog-wrapper.list .jw-post-item .jw-content ul.jw-meta {
  margin: 0 0 15px;
  padding: 0;
}
.jw-blog-wrapper.list .jw-post-item .jw-content ul.jw-meta > li {
  font-size: 12px;
  fon-weight: 400;
  line-height: 29.07px;
  letter-spacing: 0.48px;
  color: #555555;
  display: inline-block;
  margin-right: 30px;
}
.jw-blog-wrapper.list .jw-post-item .jw-content ul.jw-meta > li:last-child {
  margin: 0;
}
.jw-blog-wrapper.list .jw-post-item .jw-content ul.jw-meta > li > i {
  display: inline-block;
  margin-right: 10px;
}
.jw-blog-wrapper.list .jw-post-item .jw-content ul.jw-meta > li > span {
  color: #f48223;
}
.jw-blog-wrapper.list .jw-post-item .jw-content .jw-excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #555555;
  margin-bottom: 60px;
}
.jw-blog-wrapper.list .jw-post-item .jw-content .jw-btn-main {
  padding: 15px 40px;
}
.jw-blog-wrapper.list .jw-post-item .jw-thumb > a > img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-blog-wrapper.list > .row > div:nth-child(2n) .jw-content {
  float: right;
}
.jw-blog-wrapper .jw-pagination {
  text-align: center;
  margin-top: 30px;
}
.jw-blog-wrapper .jw-pagination .page-numbers {
  display: inline-block;
  font-family: Arimo;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-align: center;
  color: #303030;
  margin: 0 -1px;
  width: 63px;
  height: 53px;
  line-height: 53px;
  background-color: #fafafa;
}
.jw-blog-wrapper .jw-pagination .page-numbers.next,
.jw-blog-wrapper .jw-pagination .page-numbers.prev {
  background: #222222;
  color: #ffffff;
  width: 63px;
  height: 75px;
  line-height: 75px;
  margin: 0 11px;
}
.jw-blog-wrapper .jw-pagination .page-numbers > i {
  font-size: 16px;
}
.jw-blog-wrapper .jw-pagination .page-numbers.current {
  color: #f48223;
}
.jw-blog-wrapper .jw-pagination .page-numbers:hover {
  color: #f48223;
}
.jw-blog-wrapper .jw-pagination .page-numbers.prev:hover,
.jw-blog-wrapper .jw-pagination .page-numbers.next:hover {
  color: #ffffff;
  background: #f48223;
}
@media (min-width: 992px) and (max-width: 1200px - 1) {
  .jw-blog-wrapper.grid .jw-post-item .jw-content .jw-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .jw-blog-wrapper.list .jw-post-item .jw-content .jw-publish {
    position: absolute;
    right: -125px;
    top: 10px;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9;
  }
  .jw-blog-wrapper.list > .row > div:nth-child(2n) .jw-content .jw-publish {
    left: -125px;
    right: auto;
  }
}
@media (max-width: 992px - 1) {
  .jw-blog-wrapper.list .jw-post-item .jw-content {
    margin-bottom: 80px;
  }
  .single-team article .ro-blog-sub-article .content-team-top {
    text-align: left !important;
  }
  .single-team article .ro-blog-sub-article .thumbnail-team {
    text-align: center;
  }
}
@media (max-width: 640px - 1) {
  .jw-blog-wrapper.grid .jw-post-item .jw-header .jw-publish {
    bottom: 0;
  }
}
@media (max-width: 480px - 1) {
  .jw-blog-wrapper.grid .jw-post-item .jw-header {
    padding: 0;
  }
  .jw-blog-wrapper.grid .jw-post-item .jw-header .jw-publish {
    bottom: 0;
    right: 20px;
  }
  .jw-blog-wrapper.grid .jw-post-item .jw-header .jw-title {
    position: relative;
    width: 100%;
    padding: 30px 0 0;
  }
}
.jw-archive-item-style1 {
  margin-bottom: 60px;
}
.jw-archive-item-style1 .jw-blog-item-inner {
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-archive-item-style1 .jw-blog-item-inner > img {
  width: 100%;
  height: auto;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content {
  position: relative;
  padding: 40px 60px 60px;
  background: #fafafa;
  border-right: 20px solid #f6f6f6;
  border-bottom: 20px solid #f6f6f6;
  border-left: 20px solid #f6f6f6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .jw-publish {
  position: absolute;
  top: -60px;
  right: 60px;
  display: inline-block;
  width: 100px;
  height: 100px;
  text-align: center;
  background: #ffffff;
  padding: 15px 5px;
  border: 5px solid #f6f6f6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .jw-publish > span {
  font-family: Montserrat;
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #f48223;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .jw-publish > span.jw-month {
  font-size: 11px;
  color: #f48223;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-meta {
  margin: 0 0 15px;
  padding: 0;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-meta > li {
  font-size: 12px;
  fon-weight: 400;
  line-height: 29.07px;
  letter-spacing: 0.48px;
  color: #555555;
  display: inline-block;
  margin-right: 30px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-meta > li:last-child {
  margin: 0;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-meta > li > i {
  display: inline-block;
  margin-right: 10px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-meta > li > span {
  color: #f48223;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-info {
  position: relative;
  margin: 0;
  padding: 0 160px 0 0;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-info > li {
  font-family: Montserrat;
  font-size: 11px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.48px;
  color: #777777;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-info > li > i {
  margin-right: 10px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-info > li > span {
  font-family: Arimo;
  font-weight: 400;
  color: #f48223;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-info > li > span > a {
  color: #f48223;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-info > li.jw-date {
  text-transform: uppercase;
  min-width: 220px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul.jw-info > li.jw-category {
  min-width: 360px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul .jw-btn-buy-ticket {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16px;
  color: #ffffff;
  background: #f48223;
  padding: 12px 35px;
  border: 2px solid #f48223;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content ul .jw-btn-buy-ticket:hover {
  color: #f48223;
  background: transparent;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .jw-title {
  font-size: 20px;
  fon-weight: 700;
  line-height: 30px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 15px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .donate-meta {
  position: relative;
  margin-bottom: 35px;
  padding: 10px 0;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .donate-meta .donation-money {
  font-family: Montserrat;
  font-size: 12px;
  letter-spacing: 0.16px;
  color: #555555;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .donate-meta .donation-money > span.raised {
  font-size: 22px;
  fon-weight: 700;
  color: #f48223;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .donate-meta .donation-money > span.goal {
  color: #f48223;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .donate-meta .btn {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  background: #f48223;
  padding: 15px 30px;
  border: 2px solid #f48223;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .donate-meta .btn:hover {
  color: #f48223;
  background: transparent;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .donation-progress-bar {
  position: relative;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .donation-progress-bar .donation-bar {
  background: #e5e1e1;
  line-height: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .donation-progress-bar .donation-bar > span {
  display: inline-block;
  height: 10px;
  background: #f48223;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .donation-progress-bar .donation-label {
  position: absolute;
  top: 100%;
  right: 20px;
  font-family: Montserrat;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.16px;
  color: #f48223;
  background: #ffffff;
  padding: 12px;
}
.jw-archive-item-style1 .jw-blog-item-inner .jw-content .jw-excerpt {
  font-size: 14px;
  fon-weight: 400;
  line-height: 32px;
  letter-spacing: 0.48px;
  color: #555555;
  margin-bottom: 30px;
}
.jw-blog-list .jw-blog-item {
  margin-bottom: 60px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner {
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner > img {
  width: 100%;
  height: auto;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content {
  position: relative;
  padding: 40px 60px 60px;
  background: #fafafa;
  border-right: 20px solid #f6f6f6;
  border-bottom: 20px solid #f6f6f6;
  border-left: 20px solid #f6f6f6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .jw-publish {
  position: absolute;
  top: -60px;
  right: 60px;
  display: inline-block;
  width: 100px;
  height: 100px;
  text-align: center;
  background: #ffffff;
  padding: 15px 5px;
  border: 5px solid #f6f6f6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .jw-publish > span {
  font-family: Montserrat;
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #f48223;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .jw-publish > span.jw-month {
  font-size: 11px;
  color: #f48223;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-meta {
  margin: 0 0 15px;
  padding: 0;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-meta > li {
  font-size: 12px;
  fon-weight: 400;
  line-height: 29.07px;
  letter-spacing: 0.48px;
  color: #555555;
  display: inline-block;
  margin-right: 30px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-meta > li:last-child {
  margin: 0;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-meta > li > i {
  display: inline-block;
  margin-right: 10px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-meta > li > span {
  color: #f48223;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-info {
  position: relative;
  margin: 0;
  padding: 0 160px 0 0;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-info > li {
  font-family: Montserrat;
  font-size: 11px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.48px;
  color: #777777;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-info > li > i {
  margin-right: 10px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-info > li > span {
  font-family: Arimo;
  font-weight: 400;
  color: #f48223;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-info > li > span > a {
  color: #f48223;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-info > li.jw-date {
  text-transform: uppercase;
  min-width: 220px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul.jw-info > li.jw-category {
  min-width: 360px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul .jw-btn-buy-ticket {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16px;
  color: #ffffff;
  background: #f48223;
  padding: 12px 35px;
  border: 2px solid #f48223;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content ul .jw-btn-buy-ticket:hover {
  color: #f48223;
  background: transparent;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .jw-title {
  font-size: 20px;
  fon-weight: 700;
  line-height: 30px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 15px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .donate-meta {
  position: relative;
  margin-bottom: 35px;
  padding: 10px 0;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .donate-meta .donation-money {
  font-family: Montserrat;
  font-size: 12px;
  letter-spacing: 0.16px;
  color: #555555;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .donate-meta .donation-money > span.raised {
  font-size: 22px;
  fon-weight: 700;
  color: #f48223;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .donate-meta .donation-money > span.goal {
  color: #f48223;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .donate-meta .btn {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  background: #f48223;
  padding: 15px 30px;
  border: 2px solid #f48223;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .donate-meta .btn:hover {
  color: #f48223;
  background: transparent;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .donation-progress-bar {
  position: relative;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .donation-progress-bar .donation-bar {
  background: #e5e1e1;
  line-height: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .donation-progress-bar .donation-bar > span {
  display: inline-block;
  height: 10px;
  background: #f48223;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .donation-progress-bar .donation-label {
  position: absolute;
  top: 100%;
  right: 20px;
  font-family: Montserrat;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.16px;
  color: #f48223;
  background: #ffffff;
  padding: 12px;
}
.jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content .jw-excerpt {
  font-size: 14px;
  fon-weight: 400;
  line-height: 32px;
  letter-spacing: 0.48px;
  color: #555555;
  margin-bottom: 30px;
}
.jw-blog-list .jw-pagination {
  text-align: center;
}
.jw-blog-list .jw-pagination .page-numbers {
  display: inline-block;
  font-family: Arimo;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-align: center;
  color: #303030;
  margin: 0 -1px;
  width: 63px;
  height: 53px;
  line-height: 53px;
  background-color: #fafafa;
}
.jw-blog-list .jw-pagination .page-numbers.next,
.jw-blog-list .jw-pagination .page-numbers.prev {
  background: #222222;
  color: #ffffff;
  width: 63px;
  height: 75px;
  line-height: 75px;
  margin: 0 11px;
}
.jw-blog-list .jw-pagination .page-numbers > i {
  font-size: 16px;
}
.jw-blog-list .jw-pagination .page-numbers.current {
  color: #f48223;
}
.jw-blog-list .jw-pagination .page-numbers:hover {
  color: #f48223;
}
.jw-blog-list .jw-pagination .page-numbers.prev:hover,
.jw-blog-list .jw-pagination .page-numbers.next:hover {
  color: #ffffff;
  background: #f48223;
}
@media (max-width: 480px - 1) {
  body .tb-event-signle .tb-event-info .header-info .content-box-header .content-bottom .jw-meta li {
    padding: 0 3px !important;
    font-size: 10px;
  }
  .jw-blog-carousel .jw-post-item .jw-thumb {
    width: 100%;
    margin-bottom: 30px;
  }
  .jw-blog-carousel .jw-post-item .jw-content {
    position: relative;
    bottom: auto;
    width: 100%;
  }
}
.content-post .jw-content {
  margin-top: 63px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #666666;
}
.content-post .jw-content > p {
  margin-bottom: 30px;
}
.content-post .jw-content .gallery {
  margin-bottom: 70px;
}
.content-post .jw-content .gallery .gallery-item {
  display: inline-block;
  margin: 0;
}
.content-post .jw-content .gallery .gallery-item .gallery-item .gallery-icon > a > img {
  width: 100%;
  height: auto;
}
.content-post .jw-content .gallery.gallery-columns-1 > .gallery-item {
  width: 100%;
}
.content-post .jw-content .gallery.gallery-columns-2 > .gallery-item {
  width: 50%;
}
.content-post .jw-content .gallery.gallery-columns-3 > .gallery-item {
  width: 33.33%;
}
.content-post .jw-content .gallery.gallery-columns-4 > .gallery-item {
  width: 25%;
}
.content-post .jw-content .gallery.gallery-columns-5 > .gallery-item {
  width: 20%;
}
.content-post .jw-content .vc_grid-container-wrapper {
  margin-bottom: 41px;
}
.content-post .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f25a";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}
.content-post .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.content-post .jw-content .jw-single-quote {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 28px;
  letter-spacing: 0.7px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 50px;
  padding: 67px 120px;
  overflow: hidden;
}
.content-post .jw-content .jw-single-quote:before {
  content: "";
  width: 3px;
  height: 70px;
  background-color: #f48223;
  top: 32%;
  left: 10%;
  position: absolute;
}
.content-post .jw-content .jw-single-quote span {
  color: #f48223;
}
/* Css Author Single */
.jw-about-author {
  background-color: #fafafa;
  padding: 32px 65px 32px 27px;
  margin-top: 83px;
}
.jw-about-author .jw-author-avatar {
  float: right;
}
.jw-about-author .jw-author-info {
  text-align: right;
  padding-top: 26px;
  padding-right: 185px;
}
.jw-about-author .jw-author-info .icon-author {
  display: inline-block;
  vertical-align: middle;
}
.jw-about-author .jw-author-info .icon-author a {
  width: 36px;
  height: 36px;
  border: 2px solid #f48223;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  line-height: 33px;
  text-align: center;
  display: inline-block;
  font-size: 11px;
  color: #f48223;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  margin-right: -1px;
}
.jw-about-author .jw-author-info .icon-author a:hover {
  background-color: #f48223;
  color: #ffffff;
}
.jw-about-author .jw-author-info .description {
  font-size: 14px;
  color: #666666;
  line-height: 26px;
  margin-top: 15px;
}
.jw-about-author .jw-author-info .jw-name {
  display: inline-block;
  font-size: 17px;
  color: #444444;
  font-family: Poppins;
  vertical-align: middle;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  margin-left: 25px;
}
/* Tag List */
.tag-meta {
  margin-top: 75px;
  padding: 23px 59px;
  background-color: #fafafa;
}
.tag-meta .title-tag {
  font-size: 16px;
  color: #333333;
  font-family: Poppins;
  font-weight: 600;
  letter-spacing: 0;
  vertical-align: middle;
  margin-right: 43px;
  padding-top: 3px;
  display: inline-block;
}
.tag-meta ul {
  display: inline-block;
}
.tag-meta ul span {
  vertical-align: middle;
  font-weight: 600;
}
.tag-meta ul li {
  display: inline-block;
  margin-right: 3px;
}
.tag-meta ul li a {
  color: #ffffff;
  font-size: 11px;
  background-color: #222222;
  padding: 6px 18px;
  font-family: Poppins;
  display: block;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.tag-meta ul li a:hover {
  background-color: #f48223;
}
.jw-single-item-style1 {
  margin-bottom: 70px;
}
.jw-single-item-style1 .jw-content img {
  margin: 22px 0;
}
.jw-single-item-style1 .jw-header {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.jw-single-item-style1 .jw-header > img {
  width: 100%;
  height: auto;
}
.jw-single-item-style1 .jw-header .jw-header-inner {
  position: relative;
  margin-bottom: 60px;
  padding: 64px 79px 40px;
  background: #fafafa;
  width: 90%;
  margin: 0 auto;
  margin-top: -34px;
}
.jw-single-item-style1 .jw-header .jw-header-inner .jw-location {
  color: #ffffff;
  font-size: 12px;
  font-family: Poppins;
  background: #f48223;
  padding: 13px 27px 8px 27px;
  font-weight: 500;
  position: absolute;
  top: -21px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.jw-single-item-style1 .jw-header .jw-header-inner .jw-location a {
  color: #ffffff;
}
.jw-single-item-style1 .jw-header .jw-header-inner .donation-result .donation-result-innner {
  font-size: 12px;
  letter-spacing: 0.16px;
  color: #FFFFFF;
  margin-bottom: 30px;
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #68b20d;
  width: 10px;
  height: 140px;
}
.jw-single-item-style1 .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_percent {
  display: block;
  padding: 6px 10px;
  background: #68b20d;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
}
.jw-single-item-style1 .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_donors {
  position: absolute;
  bottom: -30px;
  width: 135px;
  padding: 7px 10px 5px 29px;
  display: block;
  background: #68b20d;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.jw-single-item-style1 .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_donors i {
  margin-right: 8px;
}
.jw-single-item-style1 .jw-header .jw-header-inner .content-bottom .jw-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 9px;
}
.jw-single-item-style1 .jw-header .jw-header-inner .content-bottom .date-time {
  font-size: 12px;
  color: #555555;
  font-family: Poppins;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.jw-single-item-style1 .jw-header .jw-header-inner .content-bottom .donate-meta {
  position: relative;
  margin-bottom: 35px;
  padding: 23px 0;
  border-top: 1px #6a6a69 dashed;
  padding-bottom: 0px;
}
.jw-single-item-style1 .jw-header .jw-header-inner .content-bottom .donate-meta .give-form-wrap {
  display: inline-block;
}
.jw-single-item-style1 .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money {
  display: inline-block;
}
.jw-single-item-style1 .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .line_box {
  display: inline-block;
  width: 2px;
  background: #a9a9a9;
  height: 14px;
  margin-top: 16px;
  margin-right: 20px;
}
.jw-single-item-style1 .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .box_money {
  letter-spacing: 0.16px;
  color: #444444;
  font-family: Poppins;
  letter-spacing: 0.3px;
  display: inline-block;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}
.jw-single-item-style1 .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .box_money > .amount {
  font-size: 18px;
  color: #f48223;
  font-family: Poppins;
  font-weight: 600;
}
.jw-single-item-style1 .jw-header .jw-header-inner .content-bottom .donate-meta .give-display-button {
  float: right;
}
.jw-single-item-style1 .jw-content {
  margin-top: 63px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #666666;
}
.jw-single-item-style1 .jw-content > p {
  margin-bottom: 30px;
}
.jw-single-item-style1 .jw-content .gallery {
  margin-bottom: 70px;
}
.jw-single-item-style1 .jw-content .gallery .gallery-item {
  display: inline-block;
  margin: 0;
}
.jw-single-item-style1 .jw-content .gallery .gallery-item .gallery-item .gallery-icon > a > img {
  width: 100%;
  height: auto;
}
.jw-single-item-style1 .jw-content .gallery.gallery-columns-1 > .gallery-item {
  width: 100%;
}
.jw-single-item-style1 .jw-content .gallery.gallery-columns-2 > .gallery-item {
  width: 50%;
}
.jw-single-item-style1 .jw-content .gallery.gallery-columns-3 > .gallery-item {
  width: 33.33%;
}
.jw-single-item-style1 .jw-content .gallery.gallery-columns-4 > .gallery-item {
  width: 25%;
}
.jw-single-item-style1 .jw-content .gallery.gallery-columns-5 > .gallery-item {
  width: 20%;
}
.jw-single-item-style1 .jw-content .vc_grid-container-wrapper {
  margin-bottom: 41px;
}
.jw-single-item-style1 .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f25a";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}
.jw-single-item-style1 .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.jw-single-item-style1 .jw-content .jw-single-quote {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 28px;
  letter-spacing: 0.7px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 50px;
  padding: 67px 120px;
  overflow: hidden;
}
.jw-single-item-style1 .jw-content .jw-single-quote:before {
  content: "";
  width: 3px;
  height: 70px;
  background-color: #f48223;
  top: 32%;
  left: 10%;
  position: absolute;
}
.jw-single-item-style1 .jw-content .jw-single-quote span {
  color: #f48223;
}
.style-sider-bar .sidebar-right .wg-title {
  font-size: 20px;
  color: #333333;
  letter-spacing: 0;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 600;
}
.style-sider-bar .sidebar-right .wg-title:after {
  content: "---------";
  display: inline-block;
  margin-top: 11px;
  margin-left: 20px;
  height: 2px;
  width: 50px;
  line-height: 2px;
  color: #68b20d;
  font-size: 20px;
  letter-spacing: -5px;
  white-space: nowrap;
  font-weight: 500;
}
.style-sider-bar .sidebar-right .ro-widget-instagram .tb-col-instagram a {
  width: 85px;
  display: inline-block;
}
.style-sider-bar .sidebar-right .widget_tag_cloud {
  margin-bottom: 67px;
}
.style-sider-bar .sidebar-right .widget_tag_cloud .tagcloud {
  background-color: #fafafa;
  padding: 40px 20px 40px 22px;
}
.style-sider-bar .sidebar-right .widget_tag_cloud .tagcloud a {
  color: #ffffff;
  font-size: 11px !important;
  background-color: #222222;
  padding: 6px 18px;
  font-family: Poppins;
  display: inline-block;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  margin-bottom: 3px;
  margin-right: -1px;
}
.style-sider-bar .sidebar-right .widget_tag_cloud .tagcloud a:hover {
  background-color: #f48223;
}
.style-sider-bar .sidebar-right .widget_jw_post_list {
  margin-bottom: 67px;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item {
  text-align: center;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta {
  text-align: center;
  background: #fbfbfb;
  padding: 30px 20px 30px 20px;
  width: 92%;
  margin: 0 auto;
  margin-top: -25px;
  z-index: 1;
  position: relative;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta span {
  color: #f48223;
  font-size: 12px;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta .title {
  margin-bottom: -2px;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta .title a {
  color: #444444;
  font-size: 13px;
  font-family: Poppins;
  letter-spacing: 0.6px;
  font-weight: 500;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click {
  border: none;
  box-shadow: none;
  background: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  position: relative;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f008";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  color: #f48223;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click img {
  height: auto;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout2 img {
  height: auto;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li {
  position: relative;
  margin-bottom: 20px;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner {
  position: absolute;
  padding: 45px 25px 15px 25px;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -wekit-transition: 0.5s all;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta span {
  font-size: 12px;
  color: #f48223;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta .title {
  line-height: 22px;
}
.style-sider-bar .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta .title a {
  font-size: 13px;
  color: #ffffff;
  font-family: Poppins;
}
.style-sider-bar .sidebar-right .widget_categories_custom {
  margin-bottom: 66px;
}
.style-sider-bar .sidebar-right .widget_categories_custom ul {
  background-color: #fbfbfb;
  padding: 42px 25px 26px 25px;
}
.style-sider-bar .sidebar-right .widget_categories_custom ul li {
  text-align: right;
  margin-bottom: 15px;
}
.style-sider-bar .sidebar-right .widget_categories_custom ul li:hover .cat-count {
  background-color: #f48223;
  border-color: #f48223;
}
.style-sider-bar .sidebar-right .widget_categories_custom ul li .cat-name {
  font-size: 12px;
  color: #444444;
  font-family: Poppins;
  font-weight: 500;
  float: left;
  line-height: 35px;
}
.style-sider-bar .sidebar-right .widget_categories_custom ul li .cat-count {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #222222;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 10px;
  border: 1px solid #222222;
  color: #ffffff;
  font-family: Poppins;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails {
  margin-bottom: 69px;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails ul {
  padding: 0;
  margin: 0;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails ul li {
  margin-bottom: 22px;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left {
  display: inline-block;
  width: 30%;
  vertical-align: top;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date {
  width: 85px;
  height: 80px;
  text-align: center;
  margin-bottom: -25px;
  padding: 15px 5px;
  color: #ffffff;
  background: #f48223;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date .jw-day {
  display: block;
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: -10px;
  font-family: Poppins;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date .jw-month {
  font-size: 11px;
  color: #000000;
  text-transform: none;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.48px;
  margin-bottom: -5px;
  font-family: Poppins;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right {
  display: inline-block;
  width: 68%;
  padding-left: 23px;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-author h3 {
  margin-bottom: -5px;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-author a {
  font-size: 12px;
  font-family: Arimo;
  color: #f48223;
  font-weight: 400;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-title h3 {
  margin-bottom: 0px;
  line-height: 16px;
}
.style-sider-bar .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-title a {
  font-size: 13px;
  color: #232323;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.jw-blog-list .sidebar-right .wg-title {
  font-size: 20px;
  color: #333333;
  letter-spacing: 0;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 600;
}
.jw-blog-list .sidebar-right .wg-title:after {
  content: "---------";
  display: inline-block;
  margin-top: 11px;
  margin-left: 20px;
  height: 2px;
  width: 50px;
  line-height: 2px;
  color: #68b20d;
  font-size: 20px;
  letter-spacing: -5px;
  white-space: nowrap;
  font-weight: 500;
}
.jw-blog-list .sidebar-right .ro-widget-instagram .tb-col-instagram a {
  width: 85px;
  display: inline-block;
}
.jw-blog-list .sidebar-right .widget_tag_cloud {
  margin-bottom: 67px;
}
.jw-blog-list .sidebar-right .widget_tag_cloud .tagcloud {
  background-color: #fafafa;
  padding: 40px 20px 40px 22px;
}
.jw-blog-list .sidebar-right .widget_tag_cloud .tagcloud a {
  color: #ffffff;
  font-size: 11px !important;
  background-color: #222222;
  padding: 6px 18px;
  font-family: Poppins;
  display: inline-block;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  margin-bottom: 3px;
  margin-right: -1px;
}
.jw-blog-list .sidebar-right .widget_tag_cloud .tagcloud a:hover {
  background-color: #f48223;
}
.jw-blog-list .sidebar-right .widget_jw_post_list {
  margin-bottom: 67px;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item {
  text-align: center;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta {
  text-align: center;
  background: #fbfbfb;
  padding: 30px 20px 30px 20px;
  width: 92%;
  margin: 0 auto;
  margin-top: -25px;
  z-index: 1;
  position: relative;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta span {
  color: #f48223;
  font-size: 12px;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta .title {
  margin-bottom: -2px;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta .title a {
  color: #444444;
  font-size: 13px;
  font-family: Poppins;
  letter-spacing: 0.6px;
  font-weight: 500;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click {
  border: none;
  box-shadow: none;
  background: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  position: relative;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f008";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  color: #f48223;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click img {
  height: auto;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout2 img {
  height: auto;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li {
  position: relative;
  margin-bottom: 20px;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner {
  position: absolute;
  padding: 45px 25px 15px 25px;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -wekit-transition: 0.5s all;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta span {
  font-size: 12px;
  color: #f48223;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta .title {
  line-height: 22px;
}
.jw-blog-list .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta .title a {
  font-size: 13px;
  color: #ffffff;
  font-family: Poppins;
}
.jw-blog-list .sidebar-right .widget_categories_custom {
  margin-bottom: 66px;
}
.jw-blog-list .sidebar-right .widget_categories_custom ul {
  background-color: #fbfbfb;
  padding: 42px 25px 26px 25px;
}
.jw-blog-list .sidebar-right .widget_categories_custom ul li {
  text-align: right;
  margin-bottom: 15px;
}
.jw-blog-list .sidebar-right .widget_categories_custom ul li:hover .cat-count {
  background-color: #f48223;
  border-color: #f48223;
}
.jw-blog-list .sidebar-right .widget_categories_custom ul li .cat-name {
  font-size: 12px;
  color: #444444;
  font-family: Poppins;
  font-weight: 500;
  float: left;
  line-height: 35px;
}
.jw-blog-list .sidebar-right .widget_categories_custom ul li .cat-count {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #222222;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 10px;
  border: 1px solid #222222;
  color: #ffffff;
  font-family: Poppins;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails {
  margin-bottom: 69px;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails ul {
  padding: 0;
  margin: 0;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails ul li {
  margin-bottom: 22px;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left {
  display: inline-block;
  width: 30%;
  vertical-align: top;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date {
  width: 85px;
  height: 80px;
  text-align: center;
  margin-bottom: -25px;
  padding: 15px 5px;
  color: #ffffff;
  background: #f48223;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date .jw-day {
  display: block;
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: -10px;
  font-family: Poppins;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date .jw-month {
  font-size: 11px;
  color: #000000;
  text-transform: none;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.48px;
  margin-bottom: -5px;
  font-family: Poppins;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right {
  display: inline-block;
  width: 68%;
  padding-left: 23px;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-author h3 {
  margin-bottom: -5px;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-author a {
  font-size: 12px;
  font-family: Arimo;
  color: #f48223;
  font-weight: 400;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-title h3 {
  margin-bottom: 0px;
  line-height: 16px;
}
.jw-blog-list .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-title a {
  font-size: 13px;
  color: #232323;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.jw-blog-article .sidebar-right .wg-title {
  font-size: 20px;
  color: #333333;
  letter-spacing: 0;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 600;
}
.jw-blog-article .sidebar-right .wg-title:after {
  content: "---------";
  display: inline-block;
  margin-top: 11px;
  margin-left: 20px;
  height: 2px;
  width: 50px;
  line-height: 2px;
  color: #68b20d;
  font-size: 20px;
  letter-spacing: -5px;
  white-space: nowrap;
  font-weight: 500;
}
.jw-blog-article .sidebar-right .ro-widget-instagram .tb-col-instagram a {
  width: 85px;
  display: inline-block;
}
.jw-blog-article .sidebar-right .widget_tag_cloud {
  margin-bottom: 67px;
}
.jw-blog-article .sidebar-right .widget_tag_cloud .tagcloud {
  background-color: #fafafa;
  padding: 40px 20px 40px 22px;
}
.jw-blog-article .sidebar-right .widget_tag_cloud .tagcloud a {
  color: #ffffff;
  font-size: 11px !important;
  background-color: #222222;
  padding: 6px 18px;
  font-family: Poppins;
  display: inline-block;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  margin-bottom: 3px;
  margin-right: -1px;
}
.jw-blog-article .sidebar-right .widget_tag_cloud .tagcloud a:hover {
  background-color: #f48223;
}
.jw-blog-article .sidebar-right .widget_jw_post_list {
  margin-bottom: 67px;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item {
  text-align: center;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta {
  text-align: center;
  background: #fbfbfb;
  padding: 30px 20px 30px 20px;
  width: 92%;
  margin: 0 auto;
  margin-top: -25px;
  z-index: 1;
  position: relative;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta span {
  color: #f48223;
  font-size: 12px;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta .title {
  margin-bottom: -2px;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta .title a {
  color: #444444;
  font-size: 13px;
  font-family: Poppins;
  letter-spacing: 0.6px;
  font-weight: 500;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click {
  border: none;
  box-shadow: none;
  background: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  position: relative;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f008";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  color: #f48223;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click img {
  height: auto;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 img {
  height: auto;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li {
  position: relative;
  margin-bottom: 20px;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner {
  position: absolute;
  padding: 45px 25px 15px 25px;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -wekit-transition: 0.5s all;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta span {
  font-size: 12px;
  color: #f48223;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta .title {
  line-height: 22px;
}
.jw-blog-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta .title a {
  font-size: 13px;
  color: #ffffff;
  font-family: Poppins;
}
.jw-blog-article .sidebar-right .widget_categories_custom {
  margin-bottom: 66px;
}
.jw-blog-article .sidebar-right .widget_categories_custom ul {
  background-color: #fbfbfb;
  padding: 42px 25px 26px 25px;
}
.jw-blog-article .sidebar-right .widget_categories_custom ul li {
  text-align: right;
  margin-bottom: 15px;
}
.jw-blog-article .sidebar-right .widget_categories_custom ul li:hover .cat-count {
  background-color: #f48223;
  border-color: #f48223;
}
.jw-blog-article .sidebar-right .widget_categories_custom ul li .cat-name {
  font-size: 12px;
  color: #444444;
  font-family: Poppins;
  font-weight: 500;
  float: left;
  line-height: 35px;
}
.jw-blog-article .sidebar-right .widget_categories_custom ul li .cat-count {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #222222;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 10px;
  border: 1px solid #222222;
  color: #ffffff;
  font-family: Poppins;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails {
  margin-bottom: 69px;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails ul {
  padding: 0;
  margin: 0;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails ul li {
  margin-bottom: 22px;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left {
  display: inline-block;
  width: 30%;
  vertical-align: top;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date {
  width: 85px;
  height: 80px;
  text-align: center;
  margin-bottom: -25px;
  padding: 15px 5px;
  color: #ffffff;
  background: #f48223;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date .jw-day {
  display: block;
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: -10px;
  font-family: Poppins;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date .jw-month {
  font-size: 11px;
  color: #000000;
  text-transform: none;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.48px;
  margin-bottom: -5px;
  font-family: Poppins;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right {
  display: inline-block;
  width: 68%;
  padding-left: 23px;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-author h3 {
  margin-bottom: -5px;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-author a {
  font-size: 12px;
  font-family: Arimo;
  color: #f48223;
  font-weight: 400;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-title h3 {
  margin-bottom: 0px;
  line-height: 16px;
}
.jw-blog-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-title a {
  font-size: 13px;
  color: #232323;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.jw-blog-article .jw-blog-item {
  margin-bottom: 70px;
}
.jw-blog-article .jw-blog-item .jw-content img {
  margin: 22px 0;
}
.jw-blog-article .jw-blog-item .jw-header {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.jw-blog-article .jw-blog-item .jw-header > img {
  width: 100%;
  height: auto;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner {
  position: relative;
  margin-bottom: 60px;
  padding: 64px 79px 40px;
  background: #fafafa;
  width: 90%;
  margin: 0 auto;
  margin-top: -34px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-location {
  color: #ffffff;
  font-size: 12px;
  font-family: Poppins;
  background: #f48223;
  padding: 13px 27px 8px 27px;
  font-weight: 500;
  position: absolute;
  top: -21px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-location a {
  color: #ffffff;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .donation-result .donation-result-innner {
  font-size: 12px;
  letter-spacing: 0.16px;
  color: #FFFFFF;
  margin-bottom: 30px;
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #68b20d;
  width: 10px;
  height: 140px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_percent {
  display: block;
  padding: 6px 10px;
  background: #68b20d;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_donors {
  position: absolute;
  bottom: -30px;
  width: 135px;
  padding: 7px 10px 5px 29px;
  display: block;
  background: #68b20d;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_donors i {
  margin-right: 8px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .content-bottom .jw-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 9px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .content-bottom .date-time {
  font-size: 12px;
  color: #555555;
  font-family: Poppins;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .content-bottom .donate-meta {
  position: relative;
  margin-bottom: 35px;
  padding: 23px 0;
  border-top: 1px #6a6a69 dashed;
  padding-bottom: 0px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .content-bottom .donate-meta .give-form-wrap {
  display: inline-block;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money {
  display: inline-block;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .line_box {
  display: inline-block;
  width: 2px;
  background: #a9a9a9;
  height: 14px;
  margin-top: 16px;
  margin-right: 20px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .box_money {
  letter-spacing: 0.16px;
  color: #444444;
  font-family: Poppins;
  letter-spacing: 0.3px;
  display: inline-block;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .box_money > .amount {
  font-size: 18px;
  color: #f48223;
  font-family: Poppins;
  font-weight: 600;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .content-bottom .donate-meta .give-display-button {
  float: right;
}
.jw-blog-article .jw-blog-item .jw-content {
  margin-top: 63px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #666666;
}
.jw-blog-article .jw-blog-item .jw-content > p {
  margin-bottom: 30px;
}
.jw-blog-article .jw-blog-item .jw-content .gallery {
  margin-bottom: 70px;
}
.jw-blog-article .jw-blog-item .jw-content .gallery .gallery-item {
  display: inline-block;
  margin: 0;
}
.jw-blog-article .jw-blog-item .jw-content .gallery .gallery-item .gallery-item .gallery-icon > a > img {
  width: 100%;
  height: auto;
}
.jw-blog-article .jw-blog-item .jw-content .gallery.gallery-columns-1 > .gallery-item {
  width: 100%;
}
.jw-blog-article .jw-blog-item .jw-content .gallery.gallery-columns-2 > .gallery-item {
  width: 50%;
}
.jw-blog-article .jw-blog-item .jw-content .gallery.gallery-columns-3 > .gallery-item {
  width: 33.33%;
}
.jw-blog-article .jw-blog-item .jw-content .gallery.gallery-columns-4 > .gallery-item {
  width: 25%;
}
.jw-blog-article .jw-blog-item .jw-content .gallery.gallery-columns-5 > .gallery-item {
  width: 20%;
}
.jw-blog-article .jw-blog-item .jw-content .vc_grid-container-wrapper {
  margin-bottom: 41px;
}
.jw-blog-article .jw-blog-item .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f25a";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}
.jw-blog-article .jw-blog-item .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.jw-blog-article .jw-blog-item .jw-content .jw-single-quote {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 28px;
  letter-spacing: 0.7px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 50px;
  padding: 67px 120px;
  overflow: hidden;
}
.jw-blog-article .jw-blog-item .jw-content .jw-single-quote:before {
  content: "";
  width: 3px;
  height: 70px;
  background-color: #f48223;
  top: 32%;
  left: 10%;
  position: absolute;
}
.jw-blog-article .jw-blog-item .jw-content .jw-single-quote span {
  color: #f48223;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-title {
  margin-bottom: 0;
}
.jw-blog-article .jw-blog-item .tag-meta {
  margin-top: 45px;
}
.jw-blog-article .jw-blog-item .jw-content {
  margin-top: 42px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner {
  margin-top: -27px;
  padding: 54px 79px 47px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-publish {
  position: absolute;
  top: -44px;
  right: 39px;
  width: 105px;
  height: 110px;
  text-align: center;
  margin-bottom: -25px;
  padding: 15px 5px;
  color: #ffffff;
  background: #f48223;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-publish span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: -10px;
  font-family: Poppins;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-publish .jw-month {
  font-size: 11px;
  color: #000000;
  text-transform: none;
  font-weight: 500;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-publish .jw-day {
  margin-top: 17px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-title {
  font-size: 20px;
  color: #444444;
  text-transform: uppercase;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-meta {
  margin-bottom: 4px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-meta li {
  display: inline-block;
  font-size: 12px;
  color: #555555;
  line-height: 10px;
  border-right: 1px solid #dddddd;
  padding: 0 18px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-meta li:first-child {
  padding-left: 0px;
}
.jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-meta li:last-child {
  border-right: 0px;
}
@media (max-width: 640px - 1) {
  .jw-blog-article .jw-blog-item .jw-header .jw-header-inner {
    padding: 50px 5px 10px;
  }
  .jw-blog-article .jw-blog-item .jw-content .jw-single-quote {
    padding: 20px 10px;
  }
}
.ro-comment-wrapper,
.ro-leave-comment-wrapper {
  margin-top: 70px;
}
.ro-comment-wrapper .title-commnet-top,
.ro-leave-comment-wrapper .title-commnet-top {
  color: #f48223;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.3px;
}
.ro-comment-wrapper > h6,
.ro-leave-comment-wrapper > h6 {
  margin-top: 13px;
  letter-spacing: 0;
  margin-bottom: 47px;
}
.ro-comment-wrapper > h6:before,
.ro-leave-comment-wrapper > h6:before {
  content: "" !important;
}
.ro-comment-wrapper > h6 span,
.ro-leave-comment-wrapper > h6 span {
  font-size: 30px;
  display: inline-block;
  color: #333333;
  text-transform: uppercase;
}
.ro-comment-item {
  background-color: #fafafa;
  padding: 39px 25px 44px 50px;
}
.ro-comment-item.parent {
  padding-bottom: 0;
}
.ro-comment-item.depth-2,
.ro-comment-item.depth-3,
.ro-comment-item.depth-4 {
  padding-left: 40px;
  padding-right: 0;
}
.ro-comment-item .ro-comment {
  display: inline-block;
  width: calc(100% - 125px);
  padding-top: 18px;
  padding-left: 35px;
}
.ro-comment-item .ro-comment .ro-info .ro-name {
  display: inline-block;
  color: #323232;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 19px;
  margin-right: 14px;
}
.ro-comment-item .ro-comment .ro-info .ro-time a {
  font-size: 12px;
  text-transform: uppercase;
  font-family: Poppins;
  font-weight: 500;
}
.ro-comment-item .ro-comment .ro-content {
  color: #666666;
  font-size: 15px;
  line-height: 27px;
}
.ro-comment-item .ro-comment .ro-content p {
  margin-bottom: 0px !important;
}
.ro-comment-item .ro-avatar {
  display: inline-block;
  width: 120px;
  position: relative;
  vertical-align: top;
}
.ro-comment-item .ro-avatar .avatar-inner img {
  margin: 0;
  width: 120px;
  height: auto;
  float: left;
}
.ro-comment-item .ro-avatar .avatar-inner .comment-reply-link {
  position: absolute;
  bottom: -16px;
  left: 18px;
  width: 85px;
  height: 34px;
  line-height: 34px;
  background-color: #f48223;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  font-family: Poppins;
}
/*Comment Form*/
.comment-respond .comment-reply-title {
  letter-spacing: 0px;
  margin-top: 69px;
}
.comment-respond .comment-reply-title .title-commnet-top {
  color: #f48223;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.3px;
  display: block;
  font-weight: 400;
}
.comment-respond .comment-reply-title .ro-label-reply {
  font-size: 30px;
  display: inline-block;
  text-transform: uppercase;
  color: #333333;
}
.comment-respond .comment-form {
  font-family: Montserrat;
  margin-bottom: 20px;
}
.comment-respond .comment-form .comment-form-author {
  padding-left: 0;
}
.comment-respond .comment-form .comment-form-email {
  padding-right: 0;
}
.comment-respond .comment-form textarea,
.comment-respond .comment-form input {
  background-color: #fafafa;
  color: #555555;
  font-family: Poppins;
  font-size: 12px;
  border-color: #fafafa;
}
.comment-respond .comment-form .form-submit .submit {
  font-style: normal;
  width: auto;
  background-color: #f48223;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid #f48223;
}
.comment-respond .comment-form .form-submit .submit:hover {
  background-color: #ffffff;
  color: #f48223;
}
@media (max-width: 992px) {
  .comment-respond .comment-form-author,
  .comment-respond .comment-form-email {
    padding: 0;
  }
  .single .main-content .ro-blog-sub-article .ro-blog-header .ro-overlay {
    position: relative;
    background: #111111;
    padding: 40px 0;
  }
  .single .main-content .ro-blog-sub-article .ro-actions ul {
    float: none !important;
  }
  .single .main-content .ro-blog-sub-article .ro-actions ul:last-child {
    margin-top: 30px;
  }
  .single .main-content .ro-blog-sub-article .ro-actions ul:last-child li:first-child {
    margin-left: 0;
  }
}
.attachment .jw-blog-article img {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}
@media (max-width: 1200px - 1) {
  .single .widget_jw_post_list .jw-post-list.layout2 li .item-inner {
    padding: 20px 10px 15px 10px !important;
  }
  .single .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left {
    width: 100% !important;
    display: block !important;
    margin-bottom: 24px !important;
  }
  .single .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right {
    display: block !important;
    width: 100% !important;
    padding-left: 0px !important;
  }
  body .jw-header-inner,
  body .content-box-header {
    width: 100% !important;
    padding: 64px 60px 40px !important;
    margin-top: 0 !important;
  }
  .jw-blog-special .jw-post .jw-post-items > article .jw-post-item .jw-overlay .jw-blog-item-inner {
    padding: 30px 35px;
  }
}
@media (max-width: 768px - 1) {
  .jw-blog-list .jw-blog-item .jw-blog-item-inner .jw-content {
    padding: 40px 10px 60px;
  }
  .tb-event-signle .tb-event-info .header-info .content-box-header .content-bottom .icon-event {
    float: none !important;
  }
  body .tb-event-signle .tb-event-info .header-info .content-box-header {
    padding: 64px 15px 40px !important;
  }
  body .tb-event-signle .tb-event-info .header-info .content-box-header .content-bottom .jw-meta li {
    padding: 0 5px;
  }
  .ro-comment-wrapper .ro-heading-comment span {
    font-size: 22px;
  }
  .ro-comment-wrapper .ro-avatar {
    display: block;
  }
  .ro-comment-wrapper .ro-avatar .avatar-inner img {
    float: none;
  }
  .ro-comment-wrapper .ro-comment {
    padding-left: 0;
    width: 100%;
  }
  .jw-about-author {
    padding: 32px 15px 32px 15px;
  }
  .jw-about-author .jw-author-info {
    text-align: left;
    padding-right: 0;
  }
  .jw-about-author .jw-author-avatar {
    float: none;
  }
  .single .jw-single-quote:before {
    display: none;
  }
  .single .tag-meta ul li {
    margin-bottom: 3px;
  }
  .jw-blog-article .jw-blog-item .jw-header .jw-header-inner .jw-meta li {
    padding: 0 5px;
  }
  body .jw-header-inner {
    padding: 64px 15px 40px !important;
  }
  body .jw-header-inner .content-bottom .jw-title {
    font-size: 18px !important;
  }
  body .jw-header-inner .content-bottom .donate-meta {
    text-align: left !important;
    padding: 0 !important;
  }
  body .jw-header-inner .content-bottom .donate-meta .donation-money {
    margin: 10px 0;
  }
  body .jw-header-inner .content-bottom .donate-meta .box_money {
    float: none !important;
    display: block !important;
    padding: 0 !important;
  }
  body .jw-header-inner .content-bottom .donate-meta .line_box {
    display: none !important;
  }
  .single .main-content .ro-about-author .ro-author-avatar {
    float: none;
    margin-bottom: 30px;
  }
  .single .main-content .ro-about-author .ro-author-info {
    padding: 0;
  }
}
.jws-event-wrap .jws-subtext {
  margin-bottom: 45px;
  font-size: 15px;
}
/* TEAM */
.jw-team-wrapper .jw-team {
  margin-bottom: 35px;
}
.jw-team-wrapper .jw-team .jws-team-item {
  position: relative;
  overflow: hidden;
}
.jw-team-wrapper .jw-team .jws-team-item .team {
  text-align: center;
  max-width: 370px;
}
.jw-team-wrapper .jw-team .jws-team-item .team .jws-title-team {
  position: absolute;
  bottom: 64px;
  right: 0;
  text-align: left;
  background: #ffffff;
  border-right: 4px solid #f48223;
  padding: 33px 10px 28px 30px;
  transition: all 0.4s;
  width: 80%;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
}
.jw-team-wrapper .jw-team .jws-team-item .team .jws-title-team h3.jw-title {
  margin-bottom: -2px;
  line-height: 22px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #444444;
}
.jw-team-wrapper .jw-team .jws-team-item .team .jws-title-team span {
  font-size: 12px;
  color: #f48223;
}
.jw-team-wrapper .jw-team .jws-team-item .team > img {
  width: 90%;
  height: auto;
  margin-bottom: 25px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.jw-team-wrapper .jw-team .jws-team-item .team:hover .jws-title-team {
  transition: all 0.4s;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -o-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
  visibility: hidden;
}
.jw-team-wrapper .jw-team .jws-team-item .team:hover .jw-meta {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  right: 0px;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  opacity: 1;
  visibility: visible;
}
.jw-team-wrapper .jw-team .jws-team-item .team .jw-meta {
  position: absolute;
  top: 10%;
  background: #f48223;
  color: #ffffff;
  width: 80%;
  transition: all 0.4s;
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
  padding: 20px 20px;
  opacity: 0;
  visibility: hidden;
}
.jw-team-wrapper .jw-team .jws-team-item .team .jw-meta h3.jw-title {
  margin-bottom: -2px;
  margin-top: 50px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
}
.jw-team-wrapper .jw-team .jws-team-item .team .jw-meta h3.jw-title a {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 400;
}
.jw-team-wrapper .jw-team .jws-team-item .team .jw-meta .team-expect {
  line-height: 24px;
}
.jw-team-wrapper .jw-team .jws-team-item .team .jw-meta .team-expect p {
  font-size: 13px;
}
.jw-team-wrapper .jw-team .jws-team-item .team .jw-meta .jw-position {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.64px;
  color: #ffffff;
  margin-bottom: 20px;
}
.jw-team-wrapper .jw-team .jws-team-item .team .jw-meta .jw-phone {
  font-family: Poppins;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: #ffffff;
  background: #f48223;
  padding: 13px 10px 7px 10px;
}
.jw-team-wrapper .jw-team .jws-team-item .team .jw-meta .jw-phone > i {
  color: #ffffff;
  margin-right: 8px;
  font-size: 13px;
}
@media (min-width: 992px) and (max-width: 1200px - 1) {
  .jw-team-wrapper .jw-team .jws-team-item .team .jw-meta h3.jw-title {
    margin-top: 0px !important;
  }
}
@media (min-width: 480px - 1) and (max-width: 480px + 70) {
  .jw-team-wrapper .jw-team .jws-team-item .team .jw-meta {
    padding: 10px 10px;
  }
  .jw-team-wrapper .jw-team .jws-team-item .team .jw-meta h3.jw-title {
    margin-top: 10px;
  }
  .jw-team-wrapper .jw-team .jws-team-item .team .jw-meta .jw-position {
    margin-bottom: 10px;
  }
  .jw-team-wrapper .jw-team .jws-team-item .team .jw-meta .jw-phone {
    padding: 10px 10px;
  }
}
@media (max-width: 480px - 1) {
  .jw-team-wrapper .jw-team .jws-team-item {
    width: 100%;
  }
  .jw-team-wrapper .jw-team .jws-team-item .team .jw-meta {
    padding: 30px 40px;
  }
}
.single-team .main-content h3 {
  margin-bottom: 0;
}
.single-team .main-content h6 {
  margin-bottom: 46px;
  padding-bottom: 35px;
}
.single-team .services-single .jw-service-wrap.tpl1.service-box {
  margin: 15px 15px 15px 15px;
  border: 10px solid #fcfcfc;
}
.single-team .services-single .jw-service-wrap.tpl1.service-box .jw-title {
  color: #444444;
  padding-bottom: 0px;
}
.single-team .services-single .jw-service-wrap.tpl1.service-box p {
  color: #666666;
}
.single-team article .ro-blog-sub-article {
  margin-bottom: 38px;
}
.single-team article .ro-blog-sub-article .thumbnail-team ul {
  position: absolute;
  bottom: -32px;
  width: 100%;
  text-align: center;
}
.single-team article .ro-blog-sub-article .thumbnail-team ul li {
  display: inline-block;
  margin: 0 -4px;
}
.single-team article .ro-blog-sub-article .thumbnail-team ul li a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid #ffffff;
  text-align: center;
  color: #ffffff;
  line-height: 52px;
  display: block;
}
.single-team article .ro-blog-sub-article .thumbnail-team ul li a.facebook {
  background-color: #3b579d;
}
.single-team article .ro-blog-sub-article .thumbnail-team ul li a.twitter {
  background-color: #2caae1;
}
.single-team article .ro-blog-sub-article .thumbnail-team ul li a.google {
  background-color: #dc4a38;
}
.single-team article .ro-blog-sub-article .content-team-top {
  text-align: right;
  padding-right: 30px;
  padding-top: 50px;
}
.single-team article .ro-blog-sub-article .content-team-top .ro-uppercase {
  font-size: 24px;
  color: #444444;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.single-team article .ro-blog-sub-article .content-team-top .jw-experience {
  font-size: 13px;
  color: #f48223;
}
.single-team article .ro-blog-sub-article .content-team-top .ro-sub-content {
  font-size: 14px;
  color: #666666;
  margin-top: 22px;
  line-height: 26px;
  margin-bottom: 54px;
}
.single-team article .ro-blog-sub-article .content-team-top .content-meta .jw-position {
  font-size: 14px;
  color: #666666;
  font-family: Arimo;
  line-height: 42px;
  font-weight: 400;
  padding-right: 3px;
  padding-bottom: 0;
  margin-bottom: 11px;
}
.single-team article .ro-blog-sub-article .content-team-top .content-meta .jw-position i {
  width: 42px;
  height: 42px;
  background-color: #f48223;
  border-radius: 3px;
  text-align: center;
  line-height: 42px;
  color: #ffffff;
  margin-left: 28px;
}
.single-team article .ro-blog-sub-article .content-team-top .content-meta .jw-phone {
  font-size: 14px;
  color: #666666;
  font-family: Arimo;
  line-height: 42px;
  padding-right: 3px;
  padding-bottom: 0;
  margin-bottom: 11px;
  font-weight: 400;
}
.single-team article .ro-blog-sub-article .content-team-top .content-meta .jw-phone i {
  width: 42px;
  height: 42px;
  background-color: #f48223;
  border-radius: 3px;
  text-align: center;
  line-height: 42px;
  color: #ffffff;
  margin-left: 28px;
}
/* TESTIMONIAL */
.jw-testimonial-slider {
  position: relative;
}
.jw-testimonial-slider .flexslider {
  box-shadow: none;
  background: none;
  border: none;
  margin-bottom: 0px;
}
.jw-testimonial-slider .flexslider .flex-direction-nav {
  display: none;
}
.jw-testimonial-slider #content {
  padding-top: 51px;
}
.jw-testimonial-slider #content .content-right {
  padding-left: 31px;
  border-left: 4px solid #f48223;
  display: inline-block;
  width: 59%;
  vertical-align: middle;
}
.jw-testimonial-slider #content .content-right .jw-excerpt {
  line-height: 28px;
}
.jw-testimonial-slider #content .content-left {
  padding-right: 43px;
  text-align: right;
  display: inline-block;
  width: 40%;
  vertical-align: middle;
}
.jw-testimonial-slider #content .content-left h5 {
  color: #fefefe;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 9px;
  font-family: Arimo;
  letter-spacing: 0.5px;
}
.jw-testimonial-slider #content .content-left h4 {
  font-size: 26px;
  color: #ffffff;
  letter-spacing: 0.6px;
}
.jw-testimonial-slider .slides li.flex-active-slide .jw-thumb {
  z-index: 2;
}
.jw-testimonial-slider .slides li.flex-active-slide .jw-thumb:before {
  opacity: 1;
}
.jw-testimonial-slider .slides li.flex-active-slide .jw-thumb:after {
  opacity: 0.8;
}
.jw-testimonial-slider .slides li.flex-active-slide .jw-thumb img {
  z-index: 2;
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.jw-testimonial-slider .testimonial-item {
  text-align: center;
}
.jw-testimonial-slider .testimonial-item .jw-thumb {
  cursor: pointer;
  z-index: 3;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.jw-testimonial-slider .testimonial-item .jw-thumb:before {
  content: "\f10d";
  position: absolute;
  top: 45%;
  left: 37%;
  z-index: 3;
  color: #FFFFFF;
  font-family: FontAwesome;
  opacity: 0;
  font-size: 50px;
  transition: 1s ease;
  -webkit-transition: 1s ease;
}
.jw-testimonial-slider .testimonial-item .jw-thumb:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 2;
  top: 0;
  opacity: 0;
  background-color: #f48223;
}
.jw-testimonial-slider .testimonial-item .jw-thumb img {
  width: auto;
  transform: scale(0.64);
  -webkit-transform: scale(0.64);
  z-index: 3;
  transition: 0.7s all;
  -webkit-transition: 0.7s all;
  max-width: unset;
}
.jw-testimonial-slider .testimonial-item .jw-excerpt {
  font-size: 15px;
  color: #ffffff;
  line-height: 30px;
  letter-spacing: 0.04em;
  text-align: left;
}
.jw-testimonial-slider .testimonial-item .jw-excerpt p {
  margin-bottom: 0px !important;
}
.jw-testimonial-slider .testimonial-item .jw-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.jw-testimonial-slider .owl-controls .owl-nav .owl-prev,
.jw-testimonial-slider .owl-controls .owl-nav .owl-next {
  position: absolute;
  display: none;
  top: 50%;
  left: 0;
  color: #303030;
  background: #ffffff;
  padding: 10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.jw-testimonial-slider .owl-controls .owl-nav .owl-prev:hover,
.jw-testimonial-slider .owl-controls .owl-nav .owl-next:hover,
.jw-testimonial-slider .owl-controls .owl-nav .owl-prev:focus,
.jw-testimonial-slider .owl-controls .owl-nav .owl-next:focus {
  color: #f48223;
}
.jw-testimonial-slider .owl-controls .owl-nav .owl-next {
  left: auto;
  right: 0;
}
.jw-testimonial-slider .owl-dots {
  text-align: center;
  margin: 30px 0;
}
.jw-testimonial-slider .owl-dots .owl-dot {
  transition: all 0.4s;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #dddddd;
  margin: 0 3px;
}
.jw-testimonial-slider .owl-dots .owl-dot.active {
  width: 40px;
  background: #ffffff;
  border: 2px solid #f48223;
}
.jw-testimonial-slider .flex-control-nav {
  display: none;
}
.jw-testimonial-slider .flex-control-nav li a.flex-active {
  background: #ffffff;
}
@media (max-width: 992px - 1) {
  .jw-testimonial-slider .testimonial-item .jw-thumb img {
    width: 100%;
    height: auto;
  }
  .jw-testimonial-slider #content .content-left {
    padding-left: 15px;
  }
}
@media (max-width: 480px - 40) {
  #thmbnail-img {
    display: none;
  }
}
@media (max-width: 768px - 1) {
  .jw-testimonial-slider .flex-control-nav {
    display: block;
  }
  .jw-testimonial-slider #content .content-left {
    width: 100%;
    text-align: center;
  }
  .jw-testimonial-slider #content .content-right {
    width: 100%;
    border-top: 4px solid #68b20d;
    border-left: 0;
  }
}
/* EVENTS */
.jw-events_slider {
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  padding: 80px 120px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-events_slider .jw-event-item .tb-event-days-left {
  margin-bottom: 30px;
}
.jw-events_slider .jw-event-item .tb-event-days-left > span {
  font-family: Montserrat;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  min-width: 120px;
  padding: 2px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-events_slider .jw-event-item .jw-title {
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 650px;
}
.jw-events_slider .jw-event-item .jw-title > a {
  color: #ffffff;
}
.jw-events_slider .jw-event-item .jw-title > a:hover {
  color: #f48223;
}
.jw-events_slider .jw-event-item .jw-title > a > span {
  font-size: 18px;
  line-height: 18px;
  display: block;
  margin-top: 15px;
}
.jw-events_slider .jw-event-item .jw-excerpt {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.48px;
  color: #e2e2e2;
  margin-bottom: 30px;
  max-width: 650px;
}
.jw-events_slider .jw-event-item .jw-meta {
  margin: 0 0 40px;
  padding: 0;
}
.jw-events_slider .jw-event-item .jw-meta > li {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  color: #ffffff;
  background: rgba(244, 130, 35, 0.7);
  letter-spacing: 0.16px;
  display: inline-block;
  vertical-align: middle;
  padding: 35px 50px;
  width: 280px;
  margin: 0 2px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-events_slider .jw-event-item .jw-meta > li.jw-location {
  background: rgba(244, 130, 35, 0.45);
}
.jw-events_slider .owl-controls .owl-nav {
  font-size: 28px;
}
.jw-events_slider .owl-controls .owl-nav .owl-prev,
.jw-events_slider .owl-controls .owl-nav .owl-next {
  transition: all 0.4s;
  position: absolute;
  top: 65px;
  left: 0;
  color: #ffffff;
}
.jw-events_slider .owl-controls .owl-nav .owl-prev:hover,
.jw-events_slider .owl-controls .owl-nav .owl-next:hover {
  color: #f48223;
}
.jw-events_slider .owl-controls .owl-nav .owl-next {
  left: auto;
  right: 0;
}
@media (max-width: 1200px - 1) {
  .jw-events_slider {
    padding: 80px;
  }
  .jw-events_slider .jw-event-item .jw-meta > li {
    width: 240px;
    padding: 25px 30px;
  }
}
@media (max-width: 992px - 1) {
  .jw-events_slider {
    padding: 30px;
  }
  .jw-events_slider .jw-event-item .jw-meta > li {
    width: 200px;
    padding: 25px 15px;
  }
}
@media (max-width: 768px - 1) {
  .jw-events_slider .jw-event-item .jw-title {
    font-size: 32px;
  }
  .jw-events_slider .jw-event-item .jw-meta > li {
    display: block;
    margin: 0 auto 10px;
  }
  .jw-events_slider .jw-event-item .jw-meta > li:last-child {
    margin-bottom: 0;
  }
}
.jw-events-grid .jw-event-item {
  position: relative;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  max-width: 360px;
  margin: 25px auto;
  overflow: hidden;
}
.jw-events-grid .jw-event-item .content-text {
  text-align: center;
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.jw-events-grid .jw-event-item .content-text .content-text-inner {
  display: table;
  height: 100%;
  width: 100%;
}
.jw-events-grid .jw-event-item .content-text .content-text-inner .jw-start-date {
  display: table-cell;
  vertical-align: middle;
}
.jw-events-grid .jw-event-item img {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  width: 100%;
  height: auto;
}
.jw-events-grid .jw-event-item .link-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  background: rgba(244, 130, 35, 0.7);
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.jw-events-grid .jw-event-item .link-bg .jw-location-info {
  display: table;
  height: 100%;
  width: 100%;
}
.jw-events-grid .jw-event-item .link-bg .jw-location-info .jw-location {
  display: table-cell;
  vertical-align: middle;
}
.jw-events-grid .jw-event-item .link-bg .jw-location-info .jw-location i {
  display: block;
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 15px;
}
.jw-events-grid .jw-event-item .link-bg .jw-location-info .jw-location .tribe-address {
  font-size: 14px;
  color: #ffffff;
}
.jw-events-grid .jw-event-item .link-bg .jw-location-info .jw-location .tribe-address .tribe-street-address {
  display: block;
  margin-bottom: -2px;
}
.jw-events-grid .jw-event-item .jw-start-date .date {
  margin-bottom: 4px;
}
.jw-events-grid .jw-event-item .jw-start-date .date span {
  font-size: 12px;
  color: #ffffff;
}
.jw-events-grid .jw-event-item .jw-start-date .jw-title {
  margin-bottom: 36px;
}
.jw-events-grid .jw-event-item .jw-start-date .jw-title a {
  font-size: 18px;
  color: #ffffff;
}
.jw-events-grid .jw-event-item .jw-start-date .fee-event {
  color: #ffffff;
  font-size: 12px;
  font-family: Poppins;
  background-color: #f48223;
  text-transform: none;
  font-weight: 300;
  letter-spacing: 0.15px;
  border-radius: 1px;
  -webkit-border-radius: 1px;
}
.jw-events-grid .jw-event-item .jw-start-date .fee-event i {
  margin-right: 10px;
}
.jw-events-grid .jw-event-item .jw-overlay {
  position: absolute;
  background: #000000;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  transition: 0.7s all;
  -webkit-transition: 0.7s all;
}
.jw-events-grid .jw-event-item:hover .content-text {
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}
.jw-events-grid .jw-event-item:hover .link-bg {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.event-grid .jw-pagination {
  margin-top: 20px;
}
.jw-pagination {
  text-align: center;
}
.jw-pagination .page-numbers {
  display: inline-block;
  font-family: Arimo;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-align: center;
  color: #303030;
  margin: 0 -1px;
  width: 63px;
  height: 53px;
  line-height: 53px;
  background-color: #fafafa;
}
.jw-pagination .page-numbers.next,
.jw-pagination .page-numbers.prev {
  background: #222222;
  color: #ffffff;
  width: 63px;
  height: 75px;
  line-height: 75px;
  margin: 0 11px;
}
.jw-pagination .page-numbers > i {
  font-size: 16px;
}
.jw-pagination .page-numbers.current {
  color: #f48223;
}
.jw-pagination .page-numbers:hover {
  color: #f48223;
}
.jw-pagination .page-numbers.prev:hover,
.jw-pagination .page-numbers.next:hover {
  color: #ffffff;
  background: #f48223;
}
.jw-events-special {
  margin-left: -15px;
}
.jw-events-special .jws-event-box {
  padding: 5px 10px 5px 0px;
}
.jw-events-special .jws-event-box article {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.jw-events-special .jws-event-box article .jw-event-item {
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  transition: all 0.4s;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
.jw-events-special .jws-event-box article .jw-event-item .content-text {
  padding: 75px 0;
  transition: all 0.5s ease-in-out;
}
.jw-events-special .jws-event-box article .jw-event-item .content-text .content-text-inner {
  display: table;
  height: 100%;
  width: 100%;
}
.jw-events-special .jws-event-box article .jw-event-item .content-text .content-text-inner .jw-start-date {
  display: table-cell;
  vertical-align: middle;
}
.jw-events-special .jws-event-box article .jw-event-item .link-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  background: rgba(244, 130, 35, 0.7);
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transition: all 0.5s ease-in-out;
}
.jw-events-special .jws-event-box article .jw-event-item .link-bg .jw-location-info {
  display: table;
  height: 100%;
  width: 100%;
}
.jw-events-special .jws-event-box article .jw-event-item .link-bg .jw-location-info .jw-location {
  display: table-cell;
  vertical-align: middle;
}
.jw-events-special .jws-event-box article .jw-event-item .link-bg .jw-location-info .jw-location i {
  display: block;
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 15px;
}
.jw-events-special .jws-event-box article .jw-event-item .link-bg .jw-location-info .jw-location .tribe-address {
  font-size: 14px;
  color: #ffffff;
}
.jw-events-special .jws-event-box article .jw-event-item .link-bg .jw-location-info .jw-location .tribe-address .tribe-street-address {
  display: block;
  margin-bottom: -2px;
}
.jw-events-special .jws-event-box article .jw-event-item .jw-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 0;
  background: #000000;
}
.jw-events-special .jws-event-box article .jw-event-item .jw-start-date {
  transition: all 0.7s;
}
.jw-events-special .jws-event-box article .jw-event-item .jw-start-date .date {
  margin-bottom: 7px;
  font-size: 12px;
  position: relative;
}
.jw-events-special .jws-event-box article .jw-event-item .jw-start-date .jw-title {
  margin-bottom: 28px;
  line-height: 25px;
  position: relative;
}
.jw-events-special .jws-event-box article .jw-event-item .jw-start-date .jw-title a {
  color: #ffffff;
  font-size: 18px;
}
.jw-events-special .jws-event-box article .jw-event-item .fee-event {
  font-family: Poppins;
  position: relative;
  color: #ffffff;
  background: #f48223;
  padding: 8px 20px 8px 10px;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.1px;
  border-radius: 1px;
  -webkit-border-radius: 1px;
}
.jw-events-special .jws-event-box article .jw-event-item .fee-event i {
  padding-right: 10px;
}
.jw-events-special .jws-event-box article .jw-event-item:hover .content-text {
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}
.jw-events-special .jws-event-box article .jw-event-item:hover .link-bg {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.jw-events-special .jws-event-box:nth-child(2n+1) .jw-event-item-1 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.jw-events-special .jws-event-box:nth-child(2n) .jw-event-item-0 {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 992px) and (max-width: 1200px - 1) {
  .jw-events-special .jws-event-box article .jw-event-item .fee-event {
    font-size: 10px;
  }
}
@media (max-width: 768px - 1) {
  .jw-events-special .jws-event-box {
    padding: 0;
  }
}
.jw-events-special > article {
  transition: all 0.4s;
  float: left;
  width: 20%;
  padding: 0 1px;
}
.jw-events-special > article .jw-event-item {
  position: relative;
  height: 480px;
}
.jw-events-special > article .jw-event-item .jw-overlay {
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.jw-events-special > article .jw-event-item .jw-start-date {
  transition: all 0.4s;
  font-family: Ubuntu;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 85px;
  text-align: center;
  z-index: 9;
  opacity: 0;
}
.jw-events-special > article .jw-event-item .jw-start-date .date {
  position: relative;
  width: 100%;
  height: 70px;
  background: #ffffff;
  padding-top: 10px;
}
.jw-events-special > article .jw-event-item .jw-start-date .date > span {
  display: block;
  line-height: 26px;
  text-transform: uppercase;
}
.jw-events-special > article .jw-event-item .jw-start-date .date > span.day {
  font-size: 30px;
  font-weight: 700;
  color: #f48223;
}
.jw-events-special > article .jw-event-item .jw-start-date .date > span.month {
  font-size: 18px;
  font-weight: 500;
  color: #303030;
}
.jw-events-special > article .jw-event-item .jw-start-date .date:before {
  content: "";
  height: 60px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 75px;
  border: 1px dashed #c0c0c0;
}
.jw-events-special > article .jw-event-item .jw-start-date .time {
  font-size: 13px;
  line-height: 36px;
  text-transform: uppercase;
  width: 100%;
  color: #ffffff;
  background: #f48223;
}
.jw-events-special > article .jw-event-item .jw-info {
  transition: all 0.4s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px;
  z-index: 9;
}
.jw-events-special > article .jw-event-item .jw-info .jw-sujwitle {
  transition: all 0.4s;
  font-family: Ubuntu;
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 5px;
  opacity: 0;
}
.jw-events-special > article .jw-event-item .jw-info .jw-title {
  transition: all 0.4s;
  font-family: Roboto Slab;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.jw-events-special > article .jw-event-item .jw-info .jw-title > a {
  color: #ffffff;
}
.jw-events-special > article .jw-event-item .jw-info .jw-title > a:hover {
  color: #f48223;
}
.jw-events-special > article .jw-event-item .jw-info .jw-location {
  transition: all 0.4s;
  position: relative;
  font-size: 12px;
  color: #dddddd;
}
.jw-events-special > article .jw-event-item .jw-info .jw-location > i {
  margin-right: 5px;
}
.jw-events-special > article .jw-event-item .jw-info .jw-location:after {
  transition: all 0.4s;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85px;
  height: 3px;
  background: #f48223;
  opacity: 0;
}
.jw-events-special > article.active {
  width: 40%;
}
.jw-events-special > article.active .jw-event-item .jw-overlay {
  background: transparent;
}
.jw-events-special > article.active .jw-event-item .jw-start-date {
  opacity: 1;
}
.jw-events-special > article.active .jw-event-item .jw-info {
  padding: 80px 60px;
}
.jw-events-special > article.active .jw-event-item .jw-info .jw-sujwitle {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 1;
}
.jw-events-special > article.active .jw-event-item .jw-info .jw-title {
  font-size: 28px;
  margin-bottom: 20px;
}
.jw-events-special > article.active .jw-event-item .jw-info .jw-location {
  padding-bottom: 30px;
}
.jw-events-special > article.active .jw-event-item .jw-info .jw-location:after {
  opacity: 1;
}
@media (max-width: 992px - 1) {
  .jws-event-wrap-container .vc_column-inner {
    padding-left: 15px !important;
  }
  .jws-event-wrap-container .vc_column-inner .jws-title-event {
    font-size: 29px;
  }
  .jw-events-special > article {
    width: 15%;
  }
  .jw-events-special > article .jw-event-item .jw-info {
    opacity: 0;
  }
  .jw-events-special > article.active {
    width: 55%;
  }
  .jw-events-special > article.active .jw-event-item .jw-info {
    opacity: 1;
  }
}
@media (max-width: 768px - 1) {
  .jw-events-special > article {
    width: 100%;
  }
  .jw-events-special > article .jw-event-item .jw-overlay {
    background: transparent;
  }
  .jw-events-special > article .jw-event-item .jw-start-date {
    opacity: 1;
  }
  .jw-events-special > article .jw-event-item .jw-info {
    opacity: 1;
    padding: 80px 60px;
  }
  .jw-events-special > article .jw-event-item .jw-info .jw-sujwitle {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 1;
  }
  .jw-events-special > article .jw-event-item .jw-info .jw-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .jw-events-special > article .jw-event-item .jw-info .jw-location {
    padding-bottom: 30px;
  }
  .jw-events-special > article .jw-event-item .jw-info .jw-location:after {
    opacity: 1;
  }
  .jw-events-special > article.active {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .jw-events-special .jws-event-box article {
    margin-left: 15px;
  }
}
@media (max-width: 480px - 1) {
  .jw-events-special > article .jw-event-item .jw-info {
    padding: 80px 30px;
  }
  .jw-events-special > article.active .jw-event-item .jw-info {
    padding: 80px 30px;
  }
}
.jw-event-article .jw-event .jw-event-item {
  margin-bottom: 70px;
}
.jw-event-article .jw-event .jw-event-item .jw-content img {
  margin: 22px 0;
}
.jw-event-article .jw-event .jw-event-item .jw-header {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.jw-event-article .jw-event .jw-event-item .jw-header > img {
  width: 100%;
  height: auto;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner {
  position: relative;
  margin-bottom: 60px;
  padding: 64px 79px 40px;
  background: #fafafa;
  width: 90%;
  margin: 0 auto;
  margin-top: -34px;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .jw-location {
  color: #ffffff;
  font-size: 12px;
  font-family: Poppins;
  background: #f48223;
  padding: 13px 27px 8px 27px;
  font-weight: 500;
  position: absolute;
  top: -21px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .jw-location a {
  color: #ffffff;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .donation-result .donation-result-innner {
  font-size: 12px;
  letter-spacing: 0.16px;
  color: #FFFFFF;
  margin-bottom: 30px;
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #68b20d;
  width: 10px;
  height: 140px;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_percent {
  display: block;
  padding: 6px 10px;
  background: #68b20d;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_donors {
  position: absolute;
  bottom: -30px;
  width: 135px;
  padding: 7px 10px 5px 29px;
  display: block;
  background: #68b20d;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_donors i {
  margin-right: 8px;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .content-bottom .jw-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 9px;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .content-bottom .date-time {
  font-size: 12px;
  color: #555555;
  font-family: Poppins;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .content-bottom .donate-meta {
  position: relative;
  margin-bottom: 35px;
  padding: 23px 0;
  border-top: 1px #6a6a69 dashed;
  padding-bottom: 0px;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .content-bottom .donate-meta .give-form-wrap {
  display: inline-block;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money {
  display: inline-block;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .line_box {
  display: inline-block;
  width: 2px;
  background: #a9a9a9;
  height: 14px;
  margin-top: 16px;
  margin-right: 20px;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .box_money {
  letter-spacing: 0.16px;
  color: #444444;
  font-family: Poppins;
  letter-spacing: 0.3px;
  display: inline-block;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .box_money > .amount {
  font-size: 18px;
  color: #f48223;
  font-family: Poppins;
  font-weight: 600;
}
.jw-event-article .jw-event .jw-event-item .jw-header .jw-header-inner .content-bottom .donate-meta .give-display-button {
  float: right;
}
.jw-event-article .jw-event .jw-event-item .jw-content {
  margin-top: 63px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #666666;
}
.jw-event-article .jw-event .jw-event-item .jw-content > p {
  margin-bottom: 30px;
}
.jw-event-article .jw-event .jw-event-item .jw-content .gallery {
  margin-bottom: 70px;
}
.jw-event-article .jw-event .jw-event-item .jw-content .gallery .gallery-item {
  display: inline-block;
  margin: 0;
}
.jw-event-article .jw-event .jw-event-item .jw-content .gallery .gallery-item .gallery-item .gallery-icon > a > img {
  width: 100%;
  height: auto;
}
.jw-event-article .jw-event .jw-event-item .jw-content .gallery.gallery-columns-1 > .gallery-item {
  width: 100%;
}
.jw-event-article .jw-event .jw-event-item .jw-content .gallery.gallery-columns-2 > .gallery-item {
  width: 50%;
}
.jw-event-article .jw-event .jw-event-item .jw-content .gallery.gallery-columns-3 > .gallery-item {
  width: 33.33%;
}
.jw-event-article .jw-event .jw-event-item .jw-content .gallery.gallery-columns-4 > .gallery-item {
  width: 25%;
}
.jw-event-article .jw-event .jw-event-item .jw-content .gallery.gallery-columns-5 > .gallery-item {
  width: 20%;
}
.jw-event-article .jw-event .jw-event-item .jw-content .vc_grid-container-wrapper {
  margin-bottom: 41px;
}
.jw-event-article .jw-event .jw-event-item .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f25a";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}
.jw-event-article .jw-event .jw-event-item .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.jw-event-article .jw-event .jw-event-item .jw-content .jw-single-quote {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 28px;
  letter-spacing: 0.7px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 50px;
  padding: 67px 120px;
  overflow: hidden;
}
.jw-event-article .jw-event .jw-event-item .jw-content .jw-single-quote:before {
  content: "";
  width: 3px;
  height: 70px;
  background-color: #f48223;
  top: 32%;
  left: 10%;
  position: absolute;
}
.jw-event-article .jw-event .jw-event-item .jw-content .jw-single-quote span {
  color: #f48223;
}
.archive .jw-events #tribe-bar-form {
  background: transparent;
}
.archive .jw-events #tribe-bar-form #tribe-bar-views .tribe-bar-views-inner {
  background: #f5f5f5;
  padding: 15px 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.archive .jw-events #tribe-bar-form #tribe-bar-views .tribe-bar-views-inner label {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16px;
  color: #444444;
}
.archive .jw-events #tribe-bar-form #tribe-bar-views .tribe-bar-views-inner .tribe-bar-views-list {
  position: relative;
  padding: 0 13px;
}
.archive .jw-events #tribe-bar-form #tribe-bar-views .tribe-bar-views-inner .tribe-bar-views-list:after {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  right: 25px;
  top: 0;
}
.archive .jw-events #tribe-bar-form #tribe-bar-views .tribe-bar-views-inner .tribe-bar-views-list li.tribe-bar-views-option a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.48px;
}
.archive .jw-events #tribe-bar-form .tribe-bar-filters {
  background: #fafafa;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.archive .jw-events #tribe-bar-form .tribe-bar-filters label {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #444444;
}
.archive .jw-events #tribe-bar-form .tribe-bar-filters input {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.48px;
}
.archive .jw-events #tribe-bar-form .tribe-bar-filters input.tribe-events-button {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #ffffff;
  font-family: Poppins;
  border: 1px solid #f48223;
  background: #f48223;
}
.archive .jw-events #tribe-bar-form .tribe-bar-filters input.tribe-events-button:hover {
  background: #ffffff;
  color: #f48223;
}
.archive .jw-events #tribe-events-content {
  background: #fafafa;
  padding: 45px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.archive .jw-events #tribe-events-content h2.tribe-events-page-title {
  font-size: 28px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar thead th {
  font-family: Poppins;
  font-size: 13px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.16px;
  color: #444444;
  background: #ffffff;
  padding: 15px 0;
  border-left: 5px solid #ffffff;
  border-right: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td {
  background: #fafafa;
  border-width: 0 5px 5px;
  border-color: #ffffff;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-past div[id*="tribe-events-daynum-"],
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"],
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-future div[id*="tribe-events-daynum-"] {
  font-family: Montserrat;
  font-size: 32px;
  letter-spacing: 0.48px;
  color: #a5a5a5;
  background: transparent;
  padding: 15px 30px;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-past div[id*="tribe-events-daynum-"] > a,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] > a,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-future div[id*="tribe-events-daynum-"] > a {
  display: inline-block;
  font-family: Montserrat;
  font-size: 24px;
  letter-spacing: 0.48px;
  color: #ffffff;
  background: #f48223;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-past div[id*="tribe-events-daynum-"] > a:hover,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] > a:hover,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-future div[id*="tribe-events-daynum-"] > a:hover {
  color: #f48223;
  background: #ffffff;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-present {
  background: #f48223;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] {
  color: #ffffff;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-future {
  background: #f5f5f5;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-future div[id*="tribe-events-daynum-"] {
  color: #555555;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-othermonth {
  background: #fafafa;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-has-events {
  text-align: center;
  background: #f5f5f5;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-has-events div[id*="tribe-events-daynum-"] {
  padding: 10px 15px;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] {
  margin: 0;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] h3.tribe-events-month-event-title {
  font-family: Arimo;
  font-size: 14px;
  letter-spacing: 0.48px;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] h3.tribe-events-month-event-title > a {
  color: #282828;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] h3.tribe-events-month-event-title > a:hover {
  color: #f48223;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .recurring-info-tooltip,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-tooltip,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-week .tribe-events-tooltip {
  background: #353535;
  padding: 10px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .recurring-info-tooltip h4,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-tooltip h4,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-week .tribe-events-tooltip h4 {
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #ffffff;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .recurring-info-tooltip .tribe-events-event-body,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-tooltip .tribe-events-event-body,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-week .tribe-events-tooltip .tribe-events-event-body {
  font-size: 11px;
  letter-spacing: 0.48px;
  line-height: 18px;
  color: #e5e5e5;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .recurring-info-tooltip .tribe-events-event-body .tribe-event-duration,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-week .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration {
  font-size: 10px;
  color: #999999;
  margin-bottom: 5px;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .recurring-info-tooltip .tribe-events-event-body .tribe-events-event-thumb img,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-tooltip .tribe-events-event-body .tribe-events-event-thumb img,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-week .tribe-events-tooltip .tribe-events-event-body .tribe-events-event-thumb img {
  width: 95px;
  height: auto;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .recurring-info-tooltip .tribe-events-event-body .tribe-event-description,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-tooltip .tribe-events-event-body .tribe-event-description,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-week .tribe-events-tooltip .tribe-events-event-body .tribe-event-description {
  text-align: left;
}
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .recurring-info-tooltip .tribe-events-arrow,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-tooltip .tribe-events-arrow,
.archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] .tribe-events-week .tribe-events-tooltip .tribe-events-arrow {
  width: 10px;
  height: 10px;
  background: #353535;
  margin-bottom: 2px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.archive .jw-events #tribe-events-content #tribe-events-footer {
  margin: 30px 0;
}
.archive .jw-events #tribe-events-content #tribe-events-footer .tribe-events-sub-nav li a {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-transform: none;
  color: #f48223;
  background: #ffffff;
  min-width: 140px;
  font-weight: 500;
  padding: 0 25px;
  font-family: Poppins;
}
.archive .jw-events #tribe-events-content #tribe-events-footer .tribe-events-sub-nav li a > span {
  display: inline-block;
  vertical-align: middle;
  line-height: 40px;
}
.archive .jw-events #tribe-events-content #tribe-events-footer .tribe-events-sub-nav li a:hover,
.archive .jw-events #tribe-events-content #tribe-events-footer .tribe-events-sub-nav li a:focus {
  color: #ffffff;
  background: #f48223;
}
.archive .jw-events #tribe-events-content a.tribe-events-gcal,
.archive .jw-events #tribe-events-content a.tribe-events-ical {
  margin-top: 0;
  background: #222222;
}
.archive .jw-events #tribe-events-content a.tribe-events-gcal:hover,
.archive .jw-events #tribe-events-content a.tribe-events-ical:hover {
  background: #f48223;
}
.archive .jw-events #tribe-events-content .tribe-events-loop {
  max-width: 940px;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .tribe-events-list-separator-month {
  margin: 20px auto 10px;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .tribe-events-list-separator-month > span {
  font-family: Montserrat;
  font-size: 18px;
  letter-spacing: 0.48px;
  color: #999999;
  background: #fafafa;
  padding: 5px 4%;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .tribe-events-day-time-slot h5 {
  font-family: Montserrat;
  font-size: 18px;
  letter-spacing: 0.48px;
  color: #999999;
  background: #eeeeee;
  padding: 10px;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events {
  margin: 0;
  padding: 30px 0;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-cost span {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.48px;
  color: #303030;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events h2 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events h2 > a {
  color: #303030;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events h2 > a:hover {
  color: #f48223;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta {
  font-size: 13px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.3px;
  color: #222222;
  margin: 5px 0 15px;
  font-family: Poppins;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-updated,
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-event-schedule-details,
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-events-venue-details {
  display: inline-block;
  font-style: normal;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-updated:before,
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-event-schedule-details:before,
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-events-venue-details:before {
  content: "\f041";
  font-family: FontAwesome;
  margin-right: 5px;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-updated .tribe-events-address,
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-event-schedule-details .tribe-events-address,
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-events-venue-details .tribe-events-address {
  font-style: normal;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-updated,
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-event-schedule-details {
  margin-right: 15px;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-updated:before,
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-event-meta .tribe-event-schedule-details:before {
  content: "\f073";
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-content {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.3px;
  color: #555555;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-content .tribe-events-read-more {
  font-size: 13px;
  color: #f48223;
}
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-content .tribe-events-read-more:hover,
.archive .jw-events #tribe-events-content .tribe-events-loop .type-tribe_events .tribe-events-content .tribe-events-read-more:focus {
  color: #f48223;
}
.tb-event-signle {
  padding-bottom: 45px;
}
.tb-event-signle .tribe-events-event-image {
  margin-bottom: 0px;
}
.tb-event-signle .tribe-events-event-image img {
  width: 100%;
}
.tb-event-signle .tb-event-info .header-info .jw-content {
  margin-top: 63px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #666666;
}
.tb-event-signle .tb-event-info .header-info .jw-content > p {
  margin-bottom: 30px;
}
.tb-event-signle .tb-event-info .header-info .jw-content .gallery {
  margin-bottom: 70px;
}
.tb-event-signle .tb-event-info .header-info .jw-content .gallery .gallery-item {
  display: inline-block;
  margin: 0;
}
.tb-event-signle .tb-event-info .header-info .jw-content .gallery .gallery-item .gallery-item .gallery-icon > a > img {
  width: 100%;
  height: auto;
}
.tb-event-signle .tb-event-info .header-info .jw-content .gallery.gallery-columns-1 > .gallery-item {
  width: 100%;
}
.tb-event-signle .tb-event-info .header-info .jw-content .gallery.gallery-columns-2 > .gallery-item {
  width: 50%;
}
.tb-event-signle .tb-event-info .header-info .jw-content .gallery.gallery-columns-3 > .gallery-item {
  width: 33.33%;
}
.tb-event-signle .tb-event-info .header-info .jw-content .gallery.gallery-columns-4 > .gallery-item {
  width: 25%;
}
.tb-event-signle .tb-event-info .header-info .jw-content .gallery.gallery-columns-5 > .gallery-item {
  width: 20%;
}
.tb-event-signle .tb-event-info .header-info .jw-content .vc_grid-container-wrapper {
  margin-bottom: 41px;
}
.tb-event-signle .tb-event-info .header-info .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f25a";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}
.tb-event-signle .tb-event-info .header-info .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.tb-event-signle .tb-event-info .header-info .jw-content .jw-single-quote {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 28px;
  letter-spacing: 0.7px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 50px;
  padding: 67px 120px;
  overflow: hidden;
}
.tb-event-signle .tb-event-info .header-info .jw-content .jw-single-quote:before {
  content: "";
  width: 3px;
  height: 70px;
  background-color: #f48223;
  top: 32%;
  left: 10%;
  position: absolute;
}
.tb-event-signle .tb-event-info .header-info .jw-content .jw-single-quote span {
  color: #f48223;
}
.tb-event-signle .tb-event-info .header-info .jw-content {
  margin-top: 30px;
}
.tb-event-signle .tb-event-info .header-info .content-box-header {
  background-color: #fafafa;
  position: relative;
  margin-bottom: 60px;
  padding: 64px 79px 12px;
  width: 90%;
  margin: 0 auto;
  margin-top: -31px;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 9px;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .fee-event {
  color: #ffffff;
  font-size: 12px;
  font-family: Poppins;
  background: #f48223;
  padding: 13px 27px 13px 27px;
  font-weight: 500;
  position: absolute;
  top: -25px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .fee-event i {
  margin-right: 10px;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .jw-location-info .jw-location {
  font-size: 13px;
  color: #666666;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .jw-location-info .jw-location i {
  margin-right: 10px;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .content-bottom {
  padding: 27px 0;
  margin-top: 31px;
  border-top: 1px #6a6a69 dashed;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .content-bottom .icon-event {
  float: right;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .content-bottom .icon-event a {
  width: 36px;
  height: 36px;
  border: 2px solid #f48223;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  line-height: 33px;
  text-align: center;
  display: inline-block;
  font-size: 11px;
  color: #f48223;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  margin-right: -1px;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .content-bottom .icon-event a:hover {
  background-color: #f48223;
  color: #ffffff;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .content-bottom .jw-meta {
  display: inline-block;
  line-height: 33px;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .content-bottom .jw-meta li {
  display: inline-block;
  border-right: 2px solid #dddddd;
  line-height: 10px;
  font-size: 12px;
  color: #555555;
  padding: 0 15px;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .content-bottom .jw-meta li:first-child {
  padding-left: 0px;
}
.tb-event-signle .tb-event-info .header-info .content-box-header .content-bottom .jw-meta li:last-child {
  border-right: 0;
}
@media (max-width: 992px - 1) {
  .jws-event-wrap {
    padding-right: 30px;
  }
  .archive .jw-events #tribe-bar-form #tribe-bar-views .tribe-bar-views-inner label {
    display: none;
  }
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-past div[id*="tribe-events-daynum-"],
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"],
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-future div[id*="tribe-events-daynum-"] {
    font-size: 24px;
    text-align: center;
    padding: 15px;
  }
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-past div[id*="tribe-events-daynum-"] > a,
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] > a,
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-future div[id*="tribe-events-daynum-"] > a {
    font-size: 18px;
    height: 35px;
    line-height: 35px;
    width: 35px;
  }
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-has-events div[id*="tribe-events-daynum-"] {
    padding: 10px;
  }
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] h3.tribe-events-month-event-title {
    font-size: 12px;
  }
}
@media (max-width: 640px - 1) {
  .tb-event-signle .tb-event-info .header-info .jw-content .jw-single-quote {
    padding: 20px 10px;
  }
}
@media (max-width: 768px) {
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-past div[id*="tribe-events-daynum-"],
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"],
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-future div[id*="tribe-events-daynum-"] {
    font-size: 18px;
    margin-top: 0;
  }
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-past div[id*="tribe-events-daynum-"] > a,
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] > a,
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-future div[id*="tribe-events-daynum-"] > a {
    font-size: 14px;
    height: 25px;
    line-height: 25px;
    width: 25px;
    margin-top: 0;
  }
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-has-events div[id*="tribe-events-daynum-"] {
    padding: 10px;
  }
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td div[id*="tribe-events-event-"] h3.tribe-events-month-event-title {
    font-size: 12px;
  }
  .archive .jw-events #tribe-events-content #tribe-events-footer .tribe-events-sub-nav li a {
    min-width: 120px;
    margin-bottom: 0;
    padding: 10px;
  }
  .archive .jw-events #tribe-mobile-container .tribe-mobile-day-heading {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.48px;
    color: #555555;
  }
  .archive .jw-events #tribe-mobile-container .type-tribe_events h4 {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  .archive .jw-events #tribe-mobile-container .type-tribe_events h4 > a {
    color: #303030;
  }
  .archive .jw-events #tribe-mobile-container .type-tribe_events h4 > a:hover {
    color: #f48223;
  }
  .archive .jw-events #tribe-mobile-container .type-tribe_events .tribe-events-event-schedule-details {
    display: block;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.48px;
    color: #999999;
    margin-bottom: 15px;
  }
  .archive .jw-events #tribe-mobile-container .type-tribe_events .tribe-events-event-schedule-details:before {
    content: "\f073";
    font-family: FontAwesome;
    margin-right: 5px;
  }
  .archive .jw-events #tribe-mobile-container .type-tribe_events .tribe-events-event-image {
    width: 100%;
    float: none;
    margin: 0 0 15px 0;
  }
  .archive .jw-events #tribe-mobile-container .type-tribe_events .tribe-events-event-image img {
    width: 100%;
    height: auto;
  }
  .archive .jw-events #tribe-mobile-container .type-tribe_events .tribe-event-description {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.48px;
    color: #555555;
  }
  .archive .jw-events #tribe-mobile-container .type-tribe_events .tribe-events-read-more {
    font-size: 13px;
    color: #f48223;
    margin: 0;
  }
  .archive .jw-events #tribe-mobile-container .type-tribe_events .tribe-events-read-more:hover,
  .archive .jw-events #tribe-mobile-container .type-tribe_events .tribe-events-read-more:focus {
    color: #f48223;
  }
}
@media (max-width: 480px - 1) {
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-past div[id*="tribe-events-daynum-"],
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"],
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-future div[id*="tribe-events-daynum-"] {
    padding: 5px;
    font-size: 14px;
  }
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-past div[id*="tribe-events-daynum-"] > a,
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] > a,
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-future div[id*="tribe-events-daynum-"] > a {
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    width: 20px;
  }
  .archive .jw-events #tribe-events-content .tribe-events-calendar tbody td.tribe-events-has-events div[id*="tribe-events-daynum-"] {
    padding: 5px;
  }
}
/* DONATION */
.jw-donation-wrap {
  position: relative;
  display: inline-block;
  text-align: center;
  max-width: 210px;
  overflow: hidden;
}
.jw-donation-wrap .jw-donation > img {
  width: 100%;
  height: auto;
}
.jw-donation-wrap .jw-donation .jw-overlay {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  padding: 50px 20px;
  background: rgba(0, 0, 0, 0.8);
}
.jw-donation-wrap .jw-donation .jw-overlay .jw-sujwitle {
  transition: all 0.4s;
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  letter-spacing: 0.48px;
  display: inline-block;
  color: #ffffff;
  background: #f48223;
  margin-bottom: 10px;
  padding: 10px 20px;
}
.jw-donation-wrap .jw-donation .jw-overlay .jw-title {
  transition: all 0.4s;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.48px;
  color: #ffffff;
  margin-bottom: 0;
  text-transform: uppercase;
}
.jw-donation-wrap .jw-donation .jw-btn-link {
  position: absolute;
  top: 0;
  left: 50%;
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  font-size: 11px;
  letter-spacing: 0.48px;
  white-space: nowrap;
  color: #ffffff;
  background: transparent;
  opacity: 0;
  padding: 12px 25px 11PX 25PX;
  width: 155px;
  height: 50px;
  padding-top: 15px;
  font-weight: 600;
  font-family: Poppins;
  text-transform: uppercase;
  border: 2px solid #ffffff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.jw-donation-wrap .jw-donation .jw-btn-link:hover {
  color: #f48223;
  background: #ffffff;
}
.jw-donation-wrap .jw-donation:hover .jw-overlay {
  background: rgba(244, 130, 35, 0.8);
}
.jw-donation-wrap .jw-donation:hover .jw-overlay .jw-sujwitle,
.jw-donation-wrap .jw-donation:hover .jw-overlay .jw-title {
  opacity: 0;
}
.jw-donation-wrap .jw-donation:hover .jw-btn-link {
  top: 50%;
  opacity: 1;
}
.tb-donation-total .jw-goal {
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  color: #333333;
  margin-bottom: 0;
}
.tb-donation-total .jw-goal .jw-goal-total {
  font-size: 35px;
  font-weight: 700;
}
.tb-donation-total .donation-progress-bar {
  position: relative;
  padding: 40px 0;
}
.tb-donation-total .donation-progress-bar .donation-bar {
  background: #efeeee;
  line-height: 0;
}
.tb-donation-total .donation-progress-bar .donation-bar > span {
  display: inline-block;
  height: 6px;
  background: #333333;
}
.tb-donation-total .donation-progress-bar .donation-label {
  position: absolute;
  top: 0;
  right: 0;
  font-family: Montserrat;
  font-size: 11px;
  line-height: 11px;
  color: #555555;
  background: #ffffff;
  padding: 7px 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.tb-donation-total .donation-progress-bar .donation-label:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #ffffff;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.tb-donation-total .jw-raised {
  font-size: 14px;
  fon-weight: 700;
  color: #333333;
}
.tb-donation-total .jw-raised .jw-raised-total {
  font-size: 20px;
}
@media (max-width: 992px - 1) {
  .tbdonations_upcoming .donation-item .jw-content {
    text-align: center;
    margin-bottom: 30px;
  }
}
.tbdonations_grid_wrap .paindonations .donation-item .donation-content .donation-money {
  background: #222222;
}
.donation-item-style1 .donation-item {
  max-width: 360px;
  margin: auto;
  margin-bottom: 50px;
  overflow: hidden;
}
.donation-item-style1 .donation-item .donation-thumbnail {
  position: relative;
}
.donation-item-style1 .donation-item .donation-thumbnail > img {
  width: 100%;
  height: auto;
}
.donation-item-style1 .donation-item .donation-thumbnail .donation-overlay-1 {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.donation-item-style1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result {
  font-family: Montserrat;
  font-size: 12px;
  letter-spacing: 0.16px;
  color: #ffffff;
  margin-bottom: 30px;
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #f48223;
  width: 10px;
  height: 140px;
}
.donation-item-style1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result .donate_percent {
  display: block;
  padding: 6px 10px;
  background: #f48223;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
}
.donation-item-style1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result .donate_donors {
  position: absolute;
  bottom: -30px;
  width: 135px;
  padding: 6px 10px;
  display: block;
  background: #f48223;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.donation-item-style1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result .donate_donors i {
  margin-right: 8px;
}
.donation-item-style1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result > span.raised {
  font-size: 22px;
  fon-weight: 700;
  color: #f48223;
}
.donation-item-style1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result > span.goal {
  color: #f48223;
}
.donation-item-style1 .donation-item .donation-thumbnail .donation-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.donation-item-style1 .donation-item .donation-thumbnail .donation-overlay .donate-meta {
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 30px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  -moz-transform: translatey(50%);
  -o-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
.donation-item-style1 .donation-item .donation-thumbnail .donation-overlay .donate-meta .give-btn {
  transition: all 0.7s;
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 12px;
  letter-spacing: 0.16px;
  height: auto;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  border: 2px solid #f48223;
  opacity: 1;
}
.donation-item-style1 .donation-item .donation-thumbnail .donation-overlay .donate-meta .give-btn:hover {
  color: #f48223;
  background: #ffffff;
  border-color: #ffffff;
}
.donation-item-style1 .donation-item .donation-content {
  text-align: center;
  background: #fbfbfb;
  padding-top: 45px;
}
.donation-item-style1 .donation-item .donation-content .donation-progress-bar .donation-bar {
  text-align: left;
  line-height: 0;
  background: #e4e3e3;
}
.donation-item-style1 .donation-item .donation-content .donation-progress-bar .donation-bar > span {
  display: inline-block;
  background: #f48223;
  height: 10px;
}
.donation-item-style1 .donation-item .donation-content .donation-progress-bar .donation-label {
  font-family: Montserrat;
  display: inline-block;
  font-size: 14px;
  fon-weight: 700;
  letter-spacing: 1.6px;
  line-height: 14px;
  color: #f48223;
  background: #ffffff;
  padding: 12px;
}
.donation-item-style1 .donation-item .donation-content .donation-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 35px;
  margin-bottom: 0;
  margin-top: 0px;
}
.donation-item-style1 .donation-item .donation-content .donation-title > a {
  color: #303030;
}
.donation-item-style1 .donation-item .donation-content .donation-title > a:hover {
  color: #f48223;
}
.donation-item-style1 .donation-item .donation-content .donate_location {
  font-size: 12px;
  text-transform: uppercase;
  color: #555555;
  letter-spacing: 0.5px;
  font-family: Poppins;
}
.donation-item-style1 .donation-item .donation-content .donation-days-left > span {
  font-family: Montserrat;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  min-width: 120px;
  padding: 2px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.donation-item-style1 .donation-item .donation-content .donation-money {
  width: 100%;
  padding: 20px 0;
  display: block;
  color: #ffffff;
  margin-top: 41px;
  height: 100px;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.donation-item-style1 .donation-item .donation-content .donation-money .box_money {
  float: left;
  width: 49%;
  text-align: center;
  font-size: 12px;
  font-family: Poppins;
}
.donation-item-style1 .donation-item .donation-content .donation-money .box_money .amount {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.donation-item-style1 .donation-item .donation-content .donation-money .line_box {
  float: left;
  width: 1px;
  background: #fff;
  height: 20px;
  margin-top: 20px;
}
.donation-item-style1 .donation-item:hover .donation-overlay-1 {
  left: -100%;
}
.donation-item-style1 .donation-item:hover .donation-overlay {
  left: 0;
}
.donation-item-style1 .donation-item:hover .donation-content .donation-money {
  background: #f48223;
}
.donation-item-style1 .donation-item:hover .donation-thumbnail .donation-overlay {
  background: rgba(0, 0, 0, 0.7);
}
.custom-donation .donation-item .donation-content .donation-money .amount {
  color: #f48223;
}
.custom-donation .donation-item:hover .donation-content .donation-money .amount {
  color: #ffffff;
}
.donation-item-style2 .donation-item {
  margin: 0 auto 117px !important;
  float: left;
  width: 100%;
}
.donation-item-style2 .donation-item .donation-thumbnail {
  position: relative;
  overflow: hidden;
  width: 62%;
  float: right;
  z-index: 2;
}
.donation-item-style2 .donation-item .donation-thumbnail > img {
  max-width: 706px;
  height: auto;
  width: 100%;
}
.donation-item-style2 .donation-item .donation-thumbnail .donation-overlay {
  transition: all 0.4s;
  width: 100%;
  padding-left: 170px;
  margin-top: 40px;
}
.donation-item-style2 .donation-item .donation-thumbnail .donation-overlay .jw-location .jw-btn-bd-main {
  background-color: #f48223;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 13px;
  text-transform: uppercase;
  padding: 10px 27px 7px 27px;
  font-family: Poppins;
}
.donation-item-style2 .donation-item .donation-thumbnail .donation-overlay .jw-location .jw-btn-bd-main a {
  color: #ffffff;
}
.donation-item-style2 .donation-item .donation-thumbnail .donation-overlay .donation-title {
  margin-bottom: 9px;
  line-height: 35px;
}
.donation-item-style2 .donation-item .donation-thumbnail .donation-overlay .donation-title a {
  font-size: 24px;
  color: #444444;
}
.donation-item-style2 .donation-item .donation-thumbnail .donation-overlay .donation-title a:hover {
  color: #f48223;
}
.donation-item-style2 .donation-item .donation-thumbnail .donation-overlay .donate-meta {
  margin: 0;
  padding: 0;
}
.donation-item-style2 .donation-item .donation-thumbnail .donation-overlay .donate-meta > li {
  display: inline-block;
  font-size: 12px;
  line-height: 10px;
  letter-spacing: 0.04em;
  color: #555555;
}
.donation-item-style2 .donation-item .donation-thumbnail .donation-overlay .donate-meta > li:first-child {
  padding-right: 15px;
  border-right: 1px solid #dddddd;
}
.donation-item-style2 .donation-item .donation-thumbnail .donation-overlay .donate-meta > li:last-child {
  padding-left: 15px;
}
.donation-item-style2 .donation-item .donation-content {
  position: relative;
  text-align: center;
  padding: 20px 10px 40px;
  width: 38%;
  float: left;
  z-index: 9;
}
.donation-item-style2 .donation-item .donation-content .box-content {
  background: #fbfbfb;
  position: absolute;
  width: 80%;
  text-align: left;
  left: 42%;
  top: 40px;
  padding: 60px 65px 50px 65px;
}
.donation-item-style2 .donation-item .donation-content .box-content .icon-donation {
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  background: #000;
  border-radius: 50%;
  padding: 0;
  margin-bottom: 28px;
}
.donation-item-style2 .donation-item .donation-content .box-content .icon-donation i {
  font-size: 40px;
  color: #ffffff;
  line-height: 85px;
}
.donation-item-style2 .donation-item .donation-content .box-content .donation-money {
  background: transparent;
  margin-top: 32px;
}
.donation-item-style2 .donation-item .donation-content .box-content .donation-money .box_money.raised {
  font-size: 13px;
  color: #444444;
  font-family: Poppins;
}
.donation-item-style2 .donation-item .donation-content .box-content .donation-money .box_money.raised .amount {
  font-size: 28px;
  color: #f48223;
  display: block;
  font-weight: 700;
}
.donation-item-style2 .donation-item .donation-content .donation-title {
  font-family: Roboto Slab;
  font-size: 18px;
  fon-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 36px;
  margin-bottom: 0;
}
.donation-item-style2 .donation-item .donation-content .donation-title > a {
  color: #444444;
}
.donation-item-style2 .donation-item .donation-content .donation-title > a:hover {
  color: #f48223;
}
.donation-item-style2 article:nth-child(2n) .donation-item .donation-thumbnail {
  float: left;
}
.donation-item-style2 article:nth-child(2n) .donation-item .donation-thumbnail .donation-overlay {
  padding-left: 0;
}
.donation-item-style2 article:nth-child(2n) .donation-item .donation-content {
  float: right;
}
.donation-item-style2 article:nth-child(2n) .donation-item .donation-content .box-content {
  right: 47%;
  left: auto;
}
.tbdonations_grid_wrap.tpl1 .donation-item {
  max-width: 360px;
  margin: auto;
  margin-bottom: 50px;
  overflow: hidden;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail {
  position: relative;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail > img {
  width: 100%;
  height: auto;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay-1 {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result {
  font-family: Montserrat;
  font-size: 12px;
  letter-spacing: 0.16px;
  color: #ffffff;
  margin-bottom: 30px;
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #f48223;
  width: 10px;
  height: 140px;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result .donate_percent {
  display: block;
  padding: 6px 10px;
  background: #f48223;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result .donate_donors {
  position: absolute;
  bottom: -30px;
  width: 135px;
  padding: 6px 10px;
  display: block;
  background: #f48223;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result .donate_donors i {
  margin-right: 8px;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result > span.raised {
  font-size: 22px;
  fon-weight: 700;
  color: #f48223;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay-1 .donation-result > span.goal {
  color: #f48223;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay .donate-meta {
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 30px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  -moz-transform: translatey(50%);
  -o-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay .donate-meta .give-btn {
  transition: all 0.7s;
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 12px;
  letter-spacing: 0.16px;
  height: auto;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  border: 2px solid #f48223;
  opacity: 1;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay .donate-meta .give-btn:hover {
  color: #f48223;
  background: #ffffff;
  border-color: #ffffff;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content {
  text-align: center;
  background: #fbfbfb;
  padding-top: 45px;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donation-progress-bar .donation-bar {
  text-align: left;
  line-height: 0;
  background: #e4e3e3;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donation-progress-bar .donation-bar > span {
  display: inline-block;
  background: #f48223;
  height: 10px;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donation-progress-bar .donation-label {
  font-family: Montserrat;
  display: inline-block;
  font-size: 14px;
  fon-weight: 700;
  letter-spacing: 1.6px;
  line-height: 14px;
  color: #f48223;
  background: #ffffff;
  padding: 12px;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donation-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 35px;
  margin-bottom: 0;
  margin-top: 0px;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donation-title > a {
  color: #303030;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donation-title > a:hover {
  color: #f48223;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donate_location {
  font-size: 12px;
  text-transform: uppercase;
  color: #555555;
  letter-spacing: 0.5px;
  font-family: Poppins;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donation-days-left > span {
  font-family: Montserrat;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  min-width: 120px;
  padding: 2px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donation-money {
  width: 100%;
  padding: 20px 0;
  display: block;
  color: #ffffff;
  margin-top: 41px;
  height: 100px;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donation-money .box_money {
  float: left;
  width: 49%;
  text-align: center;
  font-size: 12px;
  font-family: Poppins;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donation-money .box_money .amount {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.tbdonations_grid_wrap.tpl1 .donation-item .donation-content .donation-money .line_box {
  float: left;
  width: 1px;
  background: #fff;
  height: 20px;
  margin-top: 20px;
}
.tbdonations_grid_wrap.tpl1 .donation-item:hover .donation-overlay-1 {
  left: -100%;
}
.tbdonations_grid_wrap.tpl1 .donation-item:hover .donation-overlay {
  left: 0;
}
.tbdonations_grid_wrap.tpl1 .donation-item:hover .donation-content .donation-money {
  background: #f48223;
}
.tbdonations_grid_wrap.tpl1 .donation-item:hover .donation-thumbnail .donation-overlay {
  background: rgba(0, 0, 0, 0.7);
}
.tbdonations_grid_wrap.tpl2 .donation-item {
  margin: 0 auto 117px !important;
  float: left;
  width: 100%;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail {
  position: relative;
  overflow: hidden;
  width: 62%;
  float: right;
  z-index: 2;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail > img {
  max-width: 706px;
  height: auto;
  width: 100%;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay {
  transition: all 0.4s;
  width: 100%;
  padding-left: 170px;
  margin-top: 40px;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay .jw-location .jw-btn-bd-main {
  background-color: #f48223;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 13px;
  text-transform: uppercase;
  padding: 10px 27px 7px 27px;
  font-family: Poppins;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay .jw-location .jw-btn-bd-main a {
  color: #ffffff;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay .donation-title {
  margin-bottom: 9px;
  line-height: 35px;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay .donation-title a {
  font-size: 24px;
  color: #444444;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay .donation-title a:hover {
  color: #f48223;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay .donate-meta {
  margin: 0;
  padding: 0;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay .donate-meta > li {
  display: inline-block;
  font-size: 12px;
  line-height: 10px;
  letter-spacing: 0.04em;
  color: #555555;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay .donate-meta > li:first-child {
  padding-right: 15px;
  border-right: 1px solid #dddddd;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay .donate-meta > li:last-child {
  padding-left: 15px;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-content {
  position: relative;
  text-align: center;
  padding: 20px 10px 40px;
  width: 38%;
  float: left;
  z-index: 9;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-content .box-content {
  background: #fbfbfb;
  position: absolute;
  width: 80%;
  text-align: left;
  left: 42%;
  top: 40px;
  padding: 60px 65px 50px 65px;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-content .box-content .icon-donation {
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  background: #000;
  border-radius: 50%;
  padding: 0;
  margin-bottom: 28px;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-content .box-content .icon-donation i {
  font-size: 40px;
  color: #ffffff;
  line-height: 85px;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-content .box-content .donation-money {
  background: transparent;
  margin-top: 32px;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-content .box-content .donation-money .box_money.raised {
  font-size: 13px;
  color: #444444;
  font-family: Poppins;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-content .box-content .donation-money .box_money.raised .amount {
  font-size: 28px;
  color: #f48223;
  display: block;
  font-weight: 700;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-content .donation-title {
  font-family: Roboto Slab;
  font-size: 18px;
  fon-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 36px;
  margin-bottom: 0;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-content .donation-title > a {
  color: #444444;
}
.tbdonations_grid_wrap.tpl2 .donation-item .donation-content .donation-title > a:hover {
  color: #f48223;
}
.tbdonations_grid_wrap.tpl2 article:nth-child(2n) .donation-item .donation-thumbnail {
  float: left;
}
.tbdonations_grid_wrap.tpl2 article:nth-child(2n) .donation-item .donation-thumbnail .donation-overlay {
  padding-left: 0;
}
.tbdonations_grid_wrap.tpl2 article:nth-child(2n) .donation-item .donation-content {
  float: right;
}
.tbdonations_grid_wrap.tpl2 article:nth-child(2n) .donation-item .donation-content .box-content {
  right: 47%;
  left: auto;
}
.tbdonations_grid_wrap .jw-pagination {
  text-align: center;
  margin-top: 20px;
}
.tbdonations_grid_wrap .jw-pagination .page-numbers {
  display: inline-block;
  font-family: Arimo;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-align: center;
  color: #303030;
  margin: 0 -1px;
  width: 63px;
  height: 53px;
  line-height: 53px;
  background-color: #fafafa;
}
.tbdonations_grid_wrap .jw-pagination .page-numbers.next,
.tbdonations_grid_wrap .jw-pagination .page-numbers.prev {
  background: #222222;
  color: #ffffff;
  width: 63px;
  height: 75px;
  line-height: 75px;
  margin: 0 11px;
}
.tbdonations_grid_wrap .jw-pagination .page-numbers > i {
  font-size: 16px;
}
.tbdonations_grid_wrap .jw-pagination .page-numbers.current {
  color: #f48223;
}
.tbdonations_grid_wrap .jw-pagination .page-numbers:hover {
  color: #f48223;
}
.tbdonations_grid_wrap .jw-pagination .page-numbers.prev:hover,
.tbdonations_grid_wrap .jw-pagination .page-numbers.next:hover {
  color: #ffffff;
  background: #f48223;
}
@media (max-width: 1200px - 1) {
  .jw-story-special .jw-story-item {
    margin: 0 !important;
    padding: 0 !important;
  }
  .jw-story-special .jw-story-item .jws-story-image img {
    top: 0 !important;
  }
  .jw-story-special .jw-story-item .jws-story-item-detail {
    padding-top: 20px;
    padding-bottom: 18px;
  }
  .jw-story-special .jw-story-item .meta-info .jw-meta li {
    padding: 2px 8px !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px - 1) {
  body .tbdonations_special_wrap.tpl2 .line_box {
    margin-right: 10px !important;
  }
  body .tbdonations_special_wrap.tpl2 .donation-content .donation-money .box_money {
    padding-right: 7px;
    font-size: 12px;
  }
  .tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay {
    padding: 25px !important;
    padding-top: 39% !important;
  }
  .tbdonations_slider_wrap .owl-dots {
    top: 0 !important;
    right: 15px !important;
  }
  .tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner {
    top: 0px !important;
    right: 0px !important;
  }
  .tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .content-top {
    padding-top: 15px !important;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay .donation-money {
    max-width: 160px;
  }
  .tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay .donate-meta {
    bottom: 60%;
  }
}
@media (max-width: 480px - 1) {
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay .donation-money {
    max-width: 160px;
  }
}
@media (max-width: 480px - 120px) {
  .tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay {
    padding: 40px;
    padding-top: 24%;
  }
}
@media (max-width: 480px - 1) {
  .tbdonations_grid_wrap .donation-item .donation-thumbnail .donation-overlay .donate-meta {
    padding: 30px 20px;
  }
}
.tbdonations_slider_wrap {
  position: relative;
}
.tbdonations_slider_wrap .owl-item .box-content-inner {
  opacity: 0;
  transform: translatex(-55px);
  -webkit-transform: translatex(-55px);
  transition: 2s all;
  -webkit-transition: 2s all;
}
.tbdonations_slider_wrap .owl-item.active .box-content-inner {
  opacity: 1;
  transform: translatex(0px);
  -webkit-transform: translatex(0px);
  transition: 2s all;
  -webkit-transition: 2s all;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail {
  position: relative;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner {
  font-family: Poppins;
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: #fdfbfb;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .content-top {
  width: 370px;
  min-width: 320px;
  padding-left: 58px;
  padding-right: 58px;
  padding-top: 49px;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .header-causes h3 {
  font-size: 12px;
  color: #f48223;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.4px;
  margin-bottom: -2px;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .give-btn {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 59px;
  padding: 15px 34px 11px 34px;
  border: 1px solid #ffffff;
  background-color: #f48223;
  letter-spacing: 0.4px;
  font-family: Poppins;
  margin-top: 23px;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .give-btn > i {
  margin-right: 5px;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .give-btn:hover {
  color: #f48223;
  background: #ffffff;
  border: 1px solid #f48223;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .related-donation ul li i {
  font-size: 13px;
  margin-right: 10px;
  color: #555555;
  margin-left: 3px;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .related-donation ul li a {
  color: #555555;
  font-size: 12px;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .donation-title {
  position: relative;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0.4px;
  margin-bottom: 0px;
  padding-bottom: 7px;
  text-transform: uppercase;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .donation-title > a {
  color: #333333;
}
.tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .donation-title > a:hover {
  color: #f48223;
}
.tbdonations_slider_wrap .donation-item .donation-money {
  font-size: 14px;
  line-height: 36px;
  letter-spacing: 0;
  color: #ffffff;
  background: #222222;
  padding: 27px 12px 18px 22px;
  text-align: center;
}
.tbdonations_slider_wrap .donation-item .donation-money .raised-left {
  position: relative;
}
.tbdonations_slider_wrap .donation-item .donation-money .raised-left:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #ffffff;
  top: 23%;
  right: 0;
}
.tbdonations_slider_wrap .donation-item .donation-money .raised-left,
.tbdonations_slider_wrap .donation-item .donation-money .goal-right {
  display: inline-block;
  width: 50%;
}
.tbdonations_slider_wrap .donation-item .donation-money .raised-left p,
.tbdonations_slider_wrap .donation-item .donation-money .goal-right p {
  font-size: 12px;
  letter-spacing: 0.4px;
  margin-bottom: 3px;
  line-height: 15px;
}
.tbdonations_slider_wrap .donation-item .donation-money .raised-left span,
.tbdonations_slider_wrap .donation-item .donation-money .goal-right span {
  letter-spacing: 0.4px;
  font-weight: 700;
  font-size: 20px;
}
.tbdonations_slider_wrap .owl-dots {
  display: block;
  position: absolute;
  top: 58px;
  right: 67px;
}
.tbdonations_slider_wrap .owl-dots .owl-dot {
  width: 7px;
  height: 7px;
  background-color: #dbdbdb;
  margin: 0 2px;
  display: inline-block;
}
.tbdonations_slider_wrap .owl-dots .owl-dot.active {
  background-color: #f48223;
}
@media (max-width: 768px - 1) {
  .jw-donation-wrap {
    margin: 0 auto;
  }
  .jw-story-special .jw-story-item .jws-story-item-detail,
  .jw-story-special .jw-story-item .jws-story-image {
    padding: 15px !important;
  }
  .jw-urgent-cause-section .tbdonations_slider_wrap .donation-item {
    padding: 0;
  }
  .jw-urgent-cause-section .tbdonations_slider_wrap .owl-controls {
    position: relative;
    right: 0;
  }
  .jw-urgent-cause-section .tbdonations_slider_wrap .owl-controls .owl-nav .owl-prev,
  .jw-urgent-cause-section .tbdonations_slider_wrap .owl-controls .owl-nav .owl-next {
    display: inline-block;
    margin: 1px;
  }
}
.jw-recent-donation .donation-thumbnail {
  position: relative;
  overflow: hidden;
}
.jw-recent-donation .donation-thumbnail > img {
  width: 100%;
  height: auto;
  -webkit-border-top-left-radius: 3px;
  -moz-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
}
.jw-recent-donation .donation-thumbnail .donation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.jw-recent-donation .donation-thumbnail .donation-overlay .donate-meta {
  transition: all 0.4s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 30px 40px;
}
.jw-recent-donation .donation-thumbnail .donation-overlay .donate-meta .donation-money {
  font-family: Montserrat;
  font-size: 12px;
  letter-spacing: 0.16px;
  color: #ffffff;
}
.jw-recent-donation .donation-thumbnail .donation-overlay .donate-meta .donation-money > span.raised {
  font-size: 22px;
  fon-weight: 700;
  color: #f48223;
}
.jw-recent-donation .donation-thumbnail .donation-overlay .donate-meta .donation-money > span.goal {
  color: #f48223;
}
.jw-recent-donation .donation-content {
  background: #fcfcfc;
}
.jw-recent-donation .donation-content .donation-progress-bar {
  text-align: right;
}
.jw-recent-donation .donation-content .donation-progress-bar .donation-bar {
  text-align: left;
  line-height: 0;
  background: #e4e3e3;
}
.jw-recent-donation .donation-content .donation-progress-bar .donation-bar > span {
  display: inline-block;
  background: #f48223;
  height: 10px;
}
.jw-recent-donation .donation-content .donation-progress-bar .donation-label {
  font-family: Montserrat;
  display: inline-block;
  font-size: 14px;
  fon-weight: 700;
  letter-spacing: 1.6px;
  line-height: 14px;
  color: #f48223;
  background: #ffffff;
  margin-right: 50px;
  padding: 12px;
}
.jw-recent-donation .donation-content .donation-content-inner {
  padding: 20px 50px 40px;
}
.jw-recent-donation .donation-content .donation-content-inner .donation-title {
  font-size: 15px;
  fon-weight: 700;
  line-height: 26px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #303030;
  margin-bottom: 8px;
}
.jw-recent-donation .donation-content .donation-content-inner .donation-title > a {
  color: #303030;
}
.jw-recent-donation .donation-content .donation-content-inner .donation-title > a:hover {
  color: #f48223;
}
.jw-recent-donation .donation-content .donation-content-inner .jw-location {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16px;
  color: #555555;
}
.jw-recent-donation .donation-content .donation-content-inner .jw-location > i {
  margin-right: 5px;
}
.jw-recent-donation .donation-content .donation-content-inner .jw-location > span {
  color: #f48223;
}
.jw-donaer-item-style1 {
  position: relative;
  float: left;
  margin-bottom: 30px;
  padding-left: 120px;
}
.jw-donaer-item-style1 .jw-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  background: #333333;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-donaer-item-style1 .jw-thumb > img {
  margin: 0;
  width: 100%;
  height: auto;
}
.jw-donaer-item-style1 .jw-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 0;
}
.jw-donaer-item-style1 .jw-meta {
  display: inline-block;
  font-size: 11px;
  fon-weight: 400;
  line-height: 11px;
  letter-spacing: 0.64px;
  color: #ffffff;
  background: #f48223;
  margin-bottom: 5px;
  padding: 7px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-donaer-item-style1 .jw-donated {
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #f48223;
  margin-bottom: 0;
}
.jw-donation-article .sidebar-right .wg-title {
  font-size: 20px;
  color: #333333;
  letter-spacing: 0;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 600;
}
.jw-donation-article .sidebar-right .wg-title:after {
  content: "---------";
  display: inline-block;
  margin-top: 11px;
  margin-left: 20px;
  height: 2px;
  width: 50px;
  line-height: 2px;
  color: #68b20d;
  font-size: 20px;
  letter-spacing: -5px;
  white-space: nowrap;
  font-weight: 500;
}
.jw-donation-article .sidebar-right .ro-widget-instagram .tb-col-instagram a {
  width: 85px;
  display: inline-block;
}
.jw-donation-article .sidebar-right .widget_tag_cloud {
  margin-bottom: 67px;
}
.jw-donation-article .sidebar-right .widget_tag_cloud .tagcloud {
  background-color: #fafafa;
  padding: 40px 20px 40px 22px;
}
.jw-donation-article .sidebar-right .widget_tag_cloud .tagcloud a {
  color: #ffffff;
  font-size: 11px !important;
  background-color: #222222;
  padding: 6px 18px;
  font-family: Poppins;
  display: inline-block;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  margin-bottom: 3px;
  margin-right: -1px;
}
.jw-donation-article .sidebar-right .widget_tag_cloud .tagcloud a:hover {
  background-color: #f48223;
}
.jw-donation-article .sidebar-right .widget_jw_post_list {
  margin-bottom: 67px;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item {
  text-align: center;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta {
  text-align: center;
  background: #fbfbfb;
  padding: 30px 20px 30px 20px;
  width: 92%;
  margin: 0 auto;
  margin-top: -25px;
  z-index: 1;
  position: relative;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta span {
  color: #f48223;
  font-size: 12px;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta .title {
  margin-bottom: -2px;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta .title a {
  color: #444444;
  font-size: 13px;
  font-family: Poppins;
  letter-spacing: 0.6px;
  font-weight: 500;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click {
  border: none;
  box-shadow: none;
  background: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  position: relative;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f008";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  color: #f48223;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click img {
  height: auto;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 img {
  height: auto;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li {
  position: relative;
  margin-bottom: 20px;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner {
  position: absolute;
  padding: 45px 25px 15px 25px;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -wekit-transition: 0.5s all;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta span {
  font-size: 12px;
  color: #f48223;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta .title {
  line-height: 22px;
}
.jw-donation-article .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta .title a {
  font-size: 13px;
  color: #ffffff;
  font-family: Poppins;
}
.jw-donation-article .sidebar-right .widget_categories_custom {
  margin-bottom: 66px;
}
.jw-donation-article .sidebar-right .widget_categories_custom ul {
  background-color: #fbfbfb;
  padding: 42px 25px 26px 25px;
}
.jw-donation-article .sidebar-right .widget_categories_custom ul li {
  text-align: right;
  margin-bottom: 15px;
}
.jw-donation-article .sidebar-right .widget_categories_custom ul li:hover .cat-count {
  background-color: #f48223;
  border-color: #f48223;
}
.jw-donation-article .sidebar-right .widget_categories_custom ul li .cat-name {
  font-size: 12px;
  color: #444444;
  font-family: Poppins;
  font-weight: 500;
  float: left;
  line-height: 35px;
}
.jw-donation-article .sidebar-right .widget_categories_custom ul li .cat-count {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #222222;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 10px;
  border: 1px solid #222222;
  color: #ffffff;
  font-family: Poppins;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails {
  margin-bottom: 69px;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails ul {
  padding: 0;
  margin: 0;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails ul li {
  margin-bottom: 22px;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left {
  display: inline-block;
  width: 30%;
  vertical-align: top;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date {
  width: 85px;
  height: 80px;
  text-align: center;
  margin-bottom: -25px;
  padding: 15px 5px;
  color: #ffffff;
  background: #f48223;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date .jw-day {
  display: block;
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: -10px;
  font-family: Poppins;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date .jw-month {
  font-size: 11px;
  color: #000000;
  text-transform: none;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.48px;
  margin-bottom: -5px;
  font-family: Poppins;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right {
  display: inline-block;
  width: 68%;
  padding-left: 23px;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-author h3 {
  margin-bottom: -5px;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-author a {
  font-size: 12px;
  font-family: Arimo;
  color: #f48223;
  font-weight: 400;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-title h3 {
  margin-bottom: 0px;
  line-height: 16px;
}
.jw-donation-article .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-title a {
  font-size: 13px;
  color: #232323;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.jw-donation-article .jw-donation .jw-donation-item {
  margin-bottom: 70px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content img {
  margin: 22px 0;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header > img {
  width: 100%;
  height: auto;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner {
  position: relative;
  margin-bottom: 60px;
  padding: 64px 79px 40px;
  background: #fafafa;
  width: 90%;
  margin: 0 auto;
  margin-top: -34px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .jw-location {
  color: #ffffff;
  font-size: 12px;
  font-family: Poppins;
  background: #f48223;
  padding: 13px 27px 8px 27px;
  font-weight: 500;
  position: absolute;
  top: -21px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .jw-location a {
  color: #ffffff;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .donation-result .donation-result-innner {
  font-size: 12px;
  letter-spacing: 0.16px;
  color: #FFFFFF;
  margin-bottom: 30px;
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #68b20d;
  width: 10px;
  height: 140px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_percent {
  display: block;
  padding: 6px 10px;
  background: #68b20d;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_donors {
  position: absolute;
  bottom: -30px;
  width: 135px;
  padding: 7px 10px 5px 29px;
  display: block;
  background: #68b20d;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_donors i {
  margin-right: 8px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .content-bottom .jw-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 9px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .content-bottom .date-time {
  font-size: 12px;
  color: #555555;
  font-family: Poppins;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .content-bottom .donate-meta {
  position: relative;
  margin-bottom: 35px;
  padding: 23px 0;
  border-top: 1px #6a6a69 dashed;
  padding-bottom: 0px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .content-bottom .donate-meta .give-form-wrap {
  display: inline-block;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money {
  display: inline-block;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .line_box {
  display: inline-block;
  width: 2px;
  background: #a9a9a9;
  height: 14px;
  margin-top: 16px;
  margin-right: 20px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .box_money {
  letter-spacing: 0.16px;
  color: #444444;
  font-family: Poppins;
  letter-spacing: 0.3px;
  display: inline-block;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .box_money > .amount {
  font-size: 18px;
  color: #f48223;
  font-family: Poppins;
  font-weight: 600;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-header .jw-header-inner .content-bottom .donate-meta .give-display-button {
  float: right;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content {
  margin-top: 63px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #666666;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content > p {
  margin-bottom: 30px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .gallery {
  margin-bottom: 70px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .gallery .gallery-item {
  display: inline-block;
  margin: 0;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .gallery .gallery-item .gallery-item .gallery-icon > a > img {
  width: 100%;
  height: auto;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .gallery.gallery-columns-1 > .gallery-item {
  width: 100%;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .gallery.gallery-columns-2 > .gallery-item {
  width: 50%;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .gallery.gallery-columns-3 > .gallery-item {
  width: 33.33%;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .gallery.gallery-columns-4 > .gallery-item {
  width: 25%;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .gallery.gallery-columns-5 > .gallery-item {
  width: 20%;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .vc_grid-container-wrapper {
  margin-bottom: 41px;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f25a";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .jw-single-quote {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 28px;
  letter-spacing: 0.7px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 50px;
  padding: 67px 120px;
  overflow: hidden;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .jw-single-quote:before {
  content: "";
  width: 3px;
  height: 70px;
  background-color: #f48223;
  top: 32%;
  left: 10%;
  position: absolute;
}
.jw-donation-article .jw-donation .jw-donation-item .jw-content .jw-single-quote span {
  color: #f48223;
}
.jw-donation-article .jw-donation .jw-donaers-wrap {
  background: url('https://mshikamano.co.ug/wp-content/themes/pain/modules/assets/images/bg-donaers.jpg');
  padding: 10px;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers {
  background: rgba(255, 255, 255, 0.98);
  padding: 60px 70px 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers .jw-sujwitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  color: #555555;
  margin-bottom: 0;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers .jw-title {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.16px;
  color: #333333;
  padding-bottom: 15px;
  margin-bottom: 35px;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers .jw-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #f48223;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers ul.jw-donaers-list {
  margin: 0;
  padding: 0;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers ul.jw-donaers-list > li {
  position: relative;
  float: left;
  margin-bottom: 30px;
  padding-left: 120px;
  width: 50%;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers ul.jw-donaers-list > li .jw-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  background: #333333;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers ul.jw-donaers-list > li .jw-thumb > img {
  margin: 0;
  width: 100%;
  height: auto;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers ul.jw-donaers-list > li .jw-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 0;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers ul.jw-donaers-list > li .jw-meta {
  display: inline-block;
  font-size: 11px;
  fon-weight: 400;
  line-height: 11px;
  letter-spacing: 0.64px;
  color: #ffffff;
  background: #f48223;
  margin-bottom: 5px;
  padding: 7px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers ul.jw-donaers-list > li .jw-donated {
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #f48223;
  margin-bottom: 0;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers ul.jw-donaers-list > li.jw-view-all {
  padding: 20px 0 0 60px;
}
.jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers ul.jw-donaers-list:after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 992px - 1) and (min-width: 768px) {
  body .tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay {
    padding: 15px;
    padding-top: 27%;
  }
}
@media (max-width: 992px - 1) {
  .tbdonations_slider_wrap .owl-dots {
    top: 0;
    right: 15px;
  }
  .tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner {
    position: initial;
  }
  .tbdonations_slider_wrap .donation-item .donation-thumbnail .box-content-inner .content-top {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .tbdonations_special_wrap.tpl2 .donation-thumbnail img {
    width: 100%;
  }
  body .tbdonations_special_wrap.tpl2 .donation-content {
    padding-right: 15px !important;
  }
  .single .content.jw-donation {
    margin-bottom: 60px;
  }
}
@media (max-width: 640px - 1) {
  .jw-donation-article .jw-donation .jw-donation-item .jw-content .jw-single-quote {
    padding: 20px 10px;
  }
  .jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers {
    padding: 20px 10px;
  }
  .jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers ul.jw-donaers-list > li {
    width: 100%;
  }
  .jw-donation-article .jw-donation .jw-donaers-wrap .jw-donaers ul.jw-donaers-list > li.jw-view-all {
    padding: 0;
  }
}
.jw-donaters-carousel .jw-donater-item {
  position: relative;
  float: left;
  margin-bottom: 30px;
  padding-left: 120px;
  margin-bottom: 0;
}
.jw-donaters-carousel .jw-donater-item .jw-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  background: #333333;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-donaters-carousel .jw-donater-item .jw-thumb > img {
  margin: 0;
  width: 100%;
  height: auto;
}
.jw-donaters-carousel .jw-donater-item .jw-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 0;
}
.jw-donaters-carousel .jw-donater-item .jw-meta {
  display: inline-block;
  font-size: 11px;
  fon-weight: 400;
  line-height: 11px;
  letter-spacing: 0.64px;
  color: #ffffff;
  background: #f48223;
  margin-bottom: 5px;
  padding: 7px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-donaters-carousel .jw-donater-item .jw-donated {
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #f48223;
  margin-bottom: 0;
}
.jw-donaters-carousel .owl-controls .owl-nav {
  margin-top: 30px;
}
.jw-donaters-carousel .owl-controls .owl-nav .owl-prev,
.jw-donaters-carousel .owl-controls .owl-nav .owl-next {
  transition: all 0.4s;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  background: #333333;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-donaters-carousel .owl-controls .owl-nav .owl-prev:hover,
.jw-donaters-carousel .owl-controls .owl-nav .owl-next:hover {
  background: #f48223;
}
.jw-donaters-carousel .owl-controls .owl-nav .owl-prev {
  margin-right: 3px;
}
.post_lemongrid--filter.post_lemongrid--filter-jws {
  font-family: Montserrat;
  text-align: center;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-filter-header-style-default {
  display: inline-block;
  background: #fbfbfb;
  margin-bottom: 40px;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-filter-header-style-default .lemongrid-nav-filter-item {
  margin: 0 !important;
  transition: 2s all;
  -webkit-transition: 2s all;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-filter-header-style-default .lemongrid-nav-filter-item a {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.16px;
  color: #444444;
  padding: 20px;
  opacity: 1;
  font-family: Poppins;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-filter-header-style-default .lemongrid-nav-filter-item a span {
  font-size: 12px;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-filter-header-style-default .lemongrid-nav-filter-item a sup {
  display: none;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-filter-header-style-default .lemongrid-nav-filter-item a:after {
  display: none;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-filter-header-style-default .lemongrid-nav-filter-item a sup {
  color: #f48223;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-filter-header-style-default .lemongrid-nav-filter-item.lg-filter-current,
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-filter-header-style-default .lemongrid-nav-filter-item:hover {
  background: #f48223;
  border-color: #8b8c8d;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-filter-header-style-default .lemongrid-nav-filter-item.lg-filter-current a,
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-filter-header-style-default .lemongrid-nav-filter-item:hover a {
  color: #ffffff;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item {
  overflow: hidden;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item .lemongrid-info {
  padding: 0px;
  transition: all 0.4s;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item .lemongrid-info .info-text-top a,
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item .lemongrid-info .info-text-top a[rel="category"],
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item .lemongrid-info .info-text-top a[rel="category tag"] {
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item .lemongrid-info .info-text-top a:hover,
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item .lemongrid-info .info-text-top a[rel="category"]:hover,
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item .lemongrid-info .info-text-top a[rel="category tag"]:hover {
  color: #f48223;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item .lemongrid-info .info-text-bottom:before {
  color: #f48223;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item .lemongrid-info .info-text-bottom a .title {
  transition: all 0.4s;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.48px;
  text-transform: none;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 6px;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item .lemongrid-info .info-text-bottom a:hover .title {
  color: #f48223;
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item:hover .lemongrid-info {
  background: rgba(0, 0, 0, 0.7);
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item.lg-filter-in:hover .lemongrid-info {
  background: rgba(0, 0, 0, 0.7);
}
.post_lemongrid--filter.post_lemongrid--filter-jws .lemongrid-item.lg-filter-out:hover .lemongrid-info {
  background: none;
}
.modal .modal-dialog {
  margin: 40px auto;
}
.modal .modal-dialog .modal-content .popupdonation_title {
  font-family: Montserrat;
  font-size: 24px;
  letter-spacing: 0.48px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 15px 50px;
}
.modal .modal-dialog .modal-content .popupdonation_title .close_popup {
  color: transparent;
  top: 15px;
  right: 15px;
}
.modal .modal-dialog .modal-content .popupdonation_title .close_popup:before,
.modal .modal-dialog .modal-content .popupdonation_title .close_popup:after {
  background: #ffffff;
  content: "";
  position: absolute;
  top: 14px;
  left: 8px;
  width: 15px;
  height: 2px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal .modal-dialog .modal-content .popupdonation_title .close_popup:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal .modal-dialog .modal-content .popupdonation_title .close_popup:hover {
  color: transparent;
}
.modal .modal-dialog .modal-content .popupdonation_title .close_popup:hover:before,
.modal .modal-dialog .modal-content .popupdonation_title .close_popup:hover:after {
  background: #f48223;
}
.modal .modal-dialog .modal-content .popupdonation_content {
  font-family: Arimo;
  border-left: 20px solid #f6f6f6;
  border-right: 20px solid #f6f6f6;
  border-bottom: 20px solid #f6f6f6;
}
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .amount_wrapper,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .amount_wrapper {
  margin: 0 0 20px;
  padding: 0 0 15px;
}
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .amount_wrapper .button,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .amount_wrapper .button {
  font-size: 16px;
  color: #f48223;
  margin: 0 15px 15px 0;
  border: 1px solid #ececec;
}
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .amount_wrapper .button.active,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .amount_wrapper .button.active,
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .amount_wrapper .button:hover,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .amount_wrapper .button:hover {
  color: #ffffff;
  background: #f48223;
  border-color: #f48223;
}
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .amount_wrapper input,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .amount_wrapper input,
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .amount_wrapper textarea,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .amount_wrapper textarea,
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .amount_wrapper select,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .amount_wrapper select {
  margin-bottom: 0;
}
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .form-group,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .form-group {
  margin-bottom: 10px;
}
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .form-group label,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .form-group label {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .form-group input,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .form-group input,
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .form-group textarea,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .form-group textarea,
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .form-group select,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .form-group select {
  margin-bottom: 0;
}
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .form-group input:focus,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .form-group input:focus,
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .form-group textarea:focus,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .form-group textarea:focus,
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .form-group select:focus,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .form-group select:focus {
  border-color: #f48223;
}
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .form-group textarea,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .form-group textarea {
  min-height: 80px;
}
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .button_donate,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .button_donate {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 8px 30px;
  border: 1px solid #f48223;
}
.modal .modal-dialog .modal-content .popupdonation_content .donation_popup_form .button_donate:hover,
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .button_donate:hover {
  color: #f48223;
  background: transparent;
}
.post_lemongrid--jws .grid-stack-item-content {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.post_lemongrid--jws .grid-stack-item-content .lemongrid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.post_lemongrid--jws .grid-stack-item-content .lemongrid-location {
  transition: all 0.4s;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  font-family: Ubuntu;
  font-size: 12px;
  line-height: 16px;
  color: #555555;
  background: #ffffff;
  padding-top: 20px;
  z-index: 9;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.post_lemongrid--jws .grid-stack-item-content .lemongrid-location > span {
  display: block;
}
.post_lemongrid--jws .grid-stack-item-content .lemongrid-info {
  transition: all 0.4s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  z-index: 9;
}
.post_lemongrid--jws .grid-stack-item-content .lemongrid-info .title {
  font-family: Roboto Slab;
  font-size: 26px;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.post_lemongrid--jws .grid-stack-item-content .lemongrid-info .title > a {
  color: #ffffff;
}
.post_lemongrid--jws .grid-stack-item-content .lemongrid-info .title > a:hover {
  color: #f48223;
}
.post_lemongrid--jws .grid-stack-item-content .lemongrid-info .donation-so-far {
  transition: all 0.4s;
  font-family: Ubuntu;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 0;
}
.post_lemongrid--jws .grid-stack-item-content .lemongrid-info .donation-so-far > span {
  font-weight: 500;
  color: #f48223;
}
.post_lemongrid--jws .grid-stack-item-content .lemongrid-info .donation-btn {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Ubuntu;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  line-height: 20.48px;
  text-align: center;
  background-color: transparent;
  border: 0;
  font-weight: 400;
  color: #ffffff;
  background: #f48223;
  opacity: 0;
}
.post_lemongrid--jws .grid-stack-item-content .lemongrid-info .donation-btn:hover {
  color: #f48223;
  background: #ffffff;
}
.post_lemongrid--jws .grid-stack-item-content:hover .lemongrid-location {
  color: #ffffff;
  background: #f48223;
}
.post_lemongrid--jws .grid-stack-item-content:hover .lemongrid-info {
  position: absolute;
  bottom: 50%;
  -wekbit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -o-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
.post_lemongrid--jws .grid-stack-item-content:hover .lemongrid-info .donation-so-far {
  margin-bottom: 40px;
}
.post_lemongrid--jws .grid-stack-item-content:hover .lemongrid-info .donation-btn {
  opacity: 1;
}
.tbdonations-special-style1 .donation-thumbnail {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.tbdonations-special-style1 .donation-thumbnail img {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  height: auto;
}
.tbdonations-special-style1 .donation-thumbnail .donation-overlay {
  position: absolute;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  top: 0;
  padding: 49px;
  text-align: center;
  left: -1000px;
  z-index: 999;
  width: 100%;
  height: 100%;
  padding-top: 39%;
  transition: ease 0.7s;
}
.tbdonations-special-style1 .donation-thumbnail .donation-overlay .donation-money {
  margin-bottom: 25px;
}
.tbdonations-special-style1 .donation-thumbnail .donation-overlay .donation-money .box_money {
  color: #ffffff;
  font-size: 14px;
}
.tbdonations-special-style1 .donation-thumbnail .donation-overlay .donation-money .box_money .amount {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #f48223;
  margin-top: 5px;
}
.tbdonations-special-style1 .donation-thumbnail .donation-overlay .related-donation ul {
  text-align: left;
}
.tbdonations-special-style1 .donation-thumbnail .donation-overlay .related-donation ul li {
  padding-bottom: 5px;
  line-height: 22px;
}
.tbdonations-special-style1 .donation-thumbnail .donation-overlay .related-donation ul li a {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.6px;
}
.tbdonations-special-style1 .donation-thumbnail .donation-overlay .related-donation ul li a:hover {
  color: #f48223;
}
.tbdonations-special-style1 .donation-thumbnail .donation-overlay .related-donation ul li i {
  color: #ffffff;
  margin-right: 10px;
  font-size: 15px;
}
.tbdonations-special-style1 .donation-content {
  margin-top: 26px;
}
.tbdonations-special-style1 .donation-content .donation-days-left {
  margin-bottom: 1px;
}
.tbdonations-special-style1 .donation-content .donation-days-left span {
  font-size: 12px;
  color: #777777;
  font-family: Poppins;
}
.tbdonations-special-style1 .donation-content .donation-days-left span .space {
  padding: 0px 10px;
}
.tbdonations-special-style1 .donation-content .donation-excerpt {
  font-size: 13px;
  color: #666666;
  line-height: 24px;
}
.tbdonations-special-style1 .donation-content h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #333333;
}
.tbdonations-special-style1 .donation-content h3 a {
  color: #333333;
}
.tbdonations-special-style1 .donation-content h3 a:hover {
  color: #f48223;
}
.tbdonations-special-style1 .donation-category {
  margin-top: 26px;
}
.tbdonations-special-style1 .donation-category span {
  font-size: 12px;
  font-family: Poppins;
  color: #f48223;
}
.tbdonations-special-style1 .donation-category span:after {
  content: " ";
  width: 50px;
  height: 2px;
  border-bottom: 2px solid #f48223;
  display: inline-block;
  margin-left: 19px;
  margin-bottom: 3px;
}
.tbdonations-special-style1:hover .donation-overlay {
  transition: ease 0.7s;
  -webkit-transition: ease 0.7s;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.tbdonations-special-style2 .donation-thumbnail {
  padding-left: 0px;
  overflow: hidden;
}
.tbdonations-special-style2 .donation-thumbnail img {
  height: 100%;
  height: auto;
}
.tbdonations-special-style2 .donation-content {
  padding: 120px 70px 50px 15px;
}
.tbdonations-special-style2 .donation-content .jw-location .jw-btn-bd-main {
  background-color: #f48223;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding: 7px 27px;
}
.tbdonations-special-style2 .donation-content .donation-title h3 a {
  color: #111111;
}
.tbdonations-special-style2 .donation-content .donation-title h3 a:hover {
  color: #f48223;
}
.tbdonations-special-style2 .donation-content .donation-money {
  margin: 20px 0px 40px 0px;
  float: left;
  width: 100%;
}
.tbdonations-special-style2 .donation-content .donation-money .box_money {
  float: left;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}
.tbdonations-special-style2 .donation-content .donation-money .box_money .amount {
  color: #f48223;
  font-size: 18px;
  font-weight: 700;
}
.tbdonations-special-style2 .donation-content .donation-money .line_box {
  float: left;
  width: 1px;
  background: #ccc;
  height: 14px;
  margin-top: 16px;
  margin-right: 20px;
}
.tbdonations_special_wrap.tpl1 {
  margin-bottom: 43px;
}
.tbdonations_special_wrap.tpl1 article .donation-item {
  max-width: 370px;
  overflow: hidden;
  margin: 0 auto;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail img {
  width: 100%;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail img {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  height: auto;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay {
  position: absolute;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  top: 0;
  padding: 49px;
  text-align: center;
  left: -1000px;
  z-index: 999;
  width: 100%;
  height: 100%;
  padding-top: 39%;
  transition: ease 0.7s;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay .donation-money {
  margin-bottom: 25px;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay .donation-money .box_money {
  color: #ffffff;
  font-size: 14px;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay .donation-money .box_money .amount {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #f48223;
  margin-top: 5px;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay .related-donation ul {
  text-align: left;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay .related-donation ul li {
  padding-bottom: 5px;
  line-height: 22px;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay .related-donation ul li a {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.6px;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay .related-donation ul li a:hover {
  color: #f48223;
}
.tbdonations_special_wrap.tpl1 .donation-thumbnail .donation-overlay .related-donation ul li i {
  color: #ffffff;
  margin-right: 10px;
  font-size: 15px;
}
.tbdonations_special_wrap.tpl1 .donation-content {
  margin-top: 26px;
}
.tbdonations_special_wrap.tpl1 .donation-content .donation-days-left {
  margin-bottom: 1px;
}
.tbdonations_special_wrap.tpl1 .donation-content .donation-days-left span {
  font-size: 12px;
  color: #777777;
  font-family: Poppins;
}
.tbdonations_special_wrap.tpl1 .donation-content .donation-days-left span .space {
  padding: 0px 10px;
}
.tbdonations_special_wrap.tpl1 .donation-content .donation-excerpt {
  font-size: 13px;
  color: #666666;
  line-height: 24px;
}
.tbdonations_special_wrap.tpl1 .donation-content h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #333333;
}
.tbdonations_special_wrap.tpl1 .donation-content h3 a {
  color: #333333;
}
.tbdonations_special_wrap.tpl1 .donation-content h3 a:hover {
  color: #f48223;
}
.tbdonations_special_wrap.tpl1 .donation-category {
  margin-top: 26px;
}
.tbdonations_special_wrap.tpl1 .donation-category span {
  font-size: 12px;
  font-family: Poppins;
  color: #f48223;
}
.tbdonations_special_wrap.tpl1 .donation-category span:after {
  content: " ";
  width: 50px;
  height: 2px;
  border-bottom: 2px solid #f48223;
  display: inline-block;
  margin-left: 19px;
  margin-bottom: 3px;
}
.tbdonations_special_wrap.tpl1:hover .donation-overlay {
  transition: ease 0.7s;
  -webkit-transition: ease 0.7s;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.tbdonations_special_wrap.tpl1 .donation-overlay .related-donation ul li {
  padding-bottom: 11px !important;
}
.tbdonations_special_wrap.tpl1 .donation-overlay .related-donation ul li a {
  font-family: Poppins;
}
.tbdonations_special_wrap.tpl1 .donation-overlay .donation-money {
  margin-bottom: 31px !important;
}
.tbdonations_special_wrap.tpl1 .donation-overlay .donation-money .box_money {
  color: #FFFFFF !important;
  font-size: 15px !important;
  font-family: Poppins;
}
.tbdonations_special_wrap.tpl1.jws-white-text .donation-content h3 a {
  color: #ffffff;
}
.tbdonations_special_wrap.tpl1.jws-white-text .donation-content h3 a:hover {
  color: #f48223;
}
.tbdonations_special_wrap.tpl2 .donation-thumbnail {
  padding-left: 0px;
  overflow: hidden;
}
.tbdonations_special_wrap.tpl2 .donation-thumbnail img {
  height: 100%;
  height: auto;
}
.tbdonations_special_wrap.tpl2 .donation-content {
  padding: 120px 70px 50px 15px;
}
.tbdonations_special_wrap.tpl2 .donation-content .jw-location .jw-btn-bd-main {
  background-color: #f48223;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding: 7px 27px;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-title h3 a {
  color: #111111;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-title h3 a:hover {
  color: #f48223;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-money {
  margin: 20px 0px 40px 0px;
  float: left;
  width: 100%;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-money .box_money {
  float: left;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-money .box_money .amount {
  color: #f48223;
  font-size: 18px;
  font-weight: 700;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-money .line_box {
  float: left;
  width: 1px;
  background: #ccc;
  height: 14px;
  margin-top: 16px;
  margin-right: 20px;
}
.tbdonations_special_wrap.tpl2 .donation-content .donate-now-btn {
  font-family: Poppins;
  font-weight: 600;
  font-size: 12px;
  padding: 15px 41px 15px 36px;
  letter-spacing: 0.2px;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-money {
  margin-top: 17px;
  margin-bottom: 42px;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-money .box_money {
  color: #444444;
  font-family: Poppins;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-money .box_money .amount {
  font-family: Poppins;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-excerpt {
  color: #666666;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-title {
  letter-spacing: 0.39px;
  margin-bottom: 16px;
}
.tbdonations_special_wrap.tpl2 .donation-content .donation-title a {
  color: #333333;
}
.tbdonations_special_wrap.tpl2 .donation-content .jw-location .jw-btn-bd-main {
  padding: 10px 27px 8px 24px;
  margin-bottom: 12px;
  font-family: Poppins;
  letter-spacing: 0.16px;
  border-radius: 1px;
  -webkit-border-radius: 1px;
}
.tbdonations_special_wrap.tpl2 .donation-content .jw-location .jw-btn-bd-main a {
  color: #ffffff;
}
.jw-donaters-grid .jw-donaters-items .jw-donater-item {
  margin-bottom: 40px;
}
.jw-donaters-grid .jw-donaters-items .jw-donater-item .jw-thumb {
  position: relative;
}
.jw-donaters-grid .jw-donaters-items .jw-donater-item .jw-thumb img {
  width: 100%;
  height: auto;
}
.jw-donaters-grid .jw-donaters-items .jw-donater-item .jw-thumb .jws-donater-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.88);
  padding-top: 15px;
  z-index: 2;
  transition: 0.5s all;
}
.jw-donaters-grid .jw-donaters-items .jw-donater-item .jw-thumb .jws-donater-content .jw-meta {
  font-size: 12px;
  color: #efb508;
  margin-bottom: 5px;
  display: block;
  padding-top: 25px;
}
.jw-donaters-grid .jw-donaters-items .jw-donater-item .jw-thumb .jws-donater-content h5 {
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 55px;
  letter-spacing: 0.7px;
}
.jw-donaters-grid .jw-donaters-items .jw-donater-item .jw-thumb .jws-donater-content .donated-inner {
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
}
.jw-donaters-grid .jw-donaters-items .jw-donater-item .jw-thumb .jws-donater-content .donated-inner .jw-donated {
  display: inline-table;
  min-width: 170px;
  height: 15px;
  background: #ffffff;
  padding: 10px 0px 5px 0px;
  z-index: 6;
  border-radius: 2px;
  font-family: Poppins;
  font-weight: 500;
  color: #444444;
  font-size: 12px;
}
@media (min-width: 1200px - 1) and (max-width: 1200px + 600) {
  .tbdonations_special_wrap.tpl2 .donation-content {
    padding: 120px 70px 50px 45px;
  }
}
@media (max-width: 1200px - 1) {
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail {
    width: 100%;
    float: none;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail img {
    max-width: 100%;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay {
    padding-left: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-content {
    width: 100%;
    float: none;
    padding: 0;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-content .box-content {
    position: initial;
    width: 100%;
    padding: 20px;
  }
  body .paddingtop0 .vc_column-inner {
    padding-top: 0px !important;
  }
}
@media (max-width: 768px - 1) {
  body .paddingleft0 .vc_column-inner {
    padding-left: 7.5px !important;
  }
  .paddingtop0 h3 {
    text-align: center !important;
  }
  .paddingtop0 .jws-donater-custom {
    text-align: center;
  }
  .jw-donaters-grid .jw-donaters-items .jw-donater-item .jw-thumb {
    max-width: 360px;
    margin: 0 auto;
  }
}
@media (max-width: 640px - 1) {
  .jw-donaters-grid .jw-donaters-items .jw-donater-item .jw-thumb img {
    width: 100%;
    height: auto;
  }
  .jw-donaters-grid .jw-donaters-items .jw-donater-item .jw-thumb .jws-donater-content .jw-donated {
    left: 33%;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail {
    width: 100%;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-thumbnail .donation-overlay {
    padding-left: 0;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-content .box-content {
    position: relative;
    padding: 10px 0;
    left: 0;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-content {
    width: 100%;
    padding: 0px 10px 20px 0px;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-content .box-content {
    width: 100%;
  }
  .tbdonations_grid_wrap.tpl2 article:nth-child(2n) .donation-item .donation-content .box-content {
    left: 0;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-content .box-content .icon-donation {
    display: none;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item {
    margin: 0 auto 20px !important;
  }
  .tbdonations_grid_wrap.tpl2 .donation-item .donation-content .box-content {
    top: 0;
  }
}
@media (max-width: 480px - 75) {
  .tbdonations_grid_wrap.tpl1 .donation-item .donation-thumbnail .donation-overlay .donate-meta {
    bottom: 58%;
  }
}
@media (min-width: 768px) and (max-width: 992px - 1) {
  .paddingtop0 h3 {
    font-size: 25px !important;
  }
  .paddingtop0 .jws-donater-custom {
    font-size: 11px !important;
  }
  .paddingtop0 .jws-donater-custom a {
    padding: 10px 20px !important;
  }
}
form[id*=give-form] .give-donation-amount .give-currency-symbol {
  border: 1px solid #f48223;
  background: #f48223;
  color: #ffffff;
  height: 45px;
  line-height: 45px;
}
form[id*=give-form] .give-donation-amount #give-amount,
form[id*=give-form] .give-donation-amount #give-amount-text {
  border: 1px solid #f48223;
  height: 45px;
  line-height: 45px;
}
form.give-form .form-row input[type=text],
form[id*=give-form] .form-row input[type=email].required,
.form-row .give-stripe-cc-field {
  height: 45px;
  border: 1px solid #f48223;
  padding: 1em;
}
form[id*=give-form] #give-final-total-wrap .give-donation-total-label {
  border: 1px solid #f48223;
  background: #f48223;
  color: #ffffff;
  height: 45px;
  line-height: 45px;
}
form[id*=give-form] #give-final-total-wrap .give-final-total-amount {
  border: 1px solid #f48223;
  width: 150px;
  height: 45px;
  line-height: 45px;
}
form .give-form-title {
  font-size: 25px;
}
.give-goal-progress .income {
  font-size: 30px;
}
.give-modal .mfp-content {
  padding: 20px 20px 40px;
}
.give-donation-level-btn {
  cursor: pointer;
  font-family: Georgia,Arial,sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  margin: 0 15px 0 0;
  font-size: 16px;
  color: #f48223;
  margin: 0 15px 15px 0;
  border: 1px solid #ECECEC;
  border-radius: 4px;
  height: 45px;
  background: transparent;
  width: 100%;
  transition: 0.3s all;
}
.give-donation-level-btn:hover {
  background: #f48223;
  border-color: #f48223;
  color: #ffffff;
}
.give-form-wrap .give-btn {
  height: 45px;
  font-family: Poppins;
  color: #f48223;
  background: transparent;
  padding: 12px 30px 12px 30px;
  text-transform: uppercase;
  border: 2px solid #f48223;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  letter-spacing: 0.4px;
  position: initial;
  transition: 0.3s all;
  font-weight: bold;
  font-size: 12px;
}
.give-form-wrap .give-btn:hover {
  color: #ffffff;
  background: #f48223;
}
.give-submit {
  padding: 18px 30px !important;
  font-size: 16px !important;
}
@media (max-width: 480px) {
  form[id*=give-form] #give-final-total-wrap .give-final-total-amount {
    width: 100%;
    margin-top: 10px;
  }
}
/* STORY */
.jw-story-item-style1 {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-story-item-style1 > img {
  width: 100%;
  height: auto;
}
.jw-story-item-style1 .jw-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.jw-story-item-style1 .jw-overlay .jw-inner-content {
  transition: all 0.4s;
  color: #555555;
  background: rgba(255, 255, 255, 0.98);
  width: 100%;
  height: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-story-item-style1 .jw-overlay .jw-inner-content .jw-content-item {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 380px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.jw-story-item-style1 .jw-overlay .jw-inner-content .jw-content-item .jw-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.jw-story-item-style1 .jw-overlay .jw-inner-content .jw-content-item .jw-title > a {
  color: #333333;
}
.jw-story-item-style1 .jw-overlay .jw-inner-content .jw-content-item .jw-title > a:hover {
  color: #f48223;
}
.jw-story-item-style1 .jw-overlay .jw-inner-content .jw-content-item .jw-meta {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.16px;
  margin: 0;
  padding: 0;
}
.jw-story-item-style1 .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li {
  display: inline-block;
  margin-right: 35px;
}
.jw-story-item-style1 .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li.jw-donation-so-far > span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #f48223;
}
.jw-story-item-style1 .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li.jw-location {
  text-transform: uppercase;
}
.jw-story-item-style1 .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li:last-child {
  margin: 0;
}
.jw-story-item-style1:hover .jw-overlay .jw-inner-content,
.jw-story-item-style1.active .jw-overlay .jw-inner-content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
}
.jw-story-item-style1:hover .jw-overlay .jw-inner-content .jw-content-item .jw-title > a,
.jw-story-item-style1.active .jw-overlay .jw-inner-content .jw-content-item .jw-title > a {
  color: #ffffff;
}
.jw-story-item-style1:hover .jw-overlay .jw-inner-content .jw-content-item .jw-title > a:hover,
.jw-story-item-style1.active .jw-overlay .jw-inner-content .jw-content-item .jw-title > a:hover {
  color: #f48223;
}
.jw-story-special {
  position: relative;
}
.jw-story-special .jws-view-all-story {
  text-align: center;
  margin-top: 105px;
}
.jw-story-special .jws-view-all-story a.jw-view-all {
  color: #ffffff;
  background: #f48223;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 500;
  padding: 17px 49px;
  letter-spacing: 0.7px;
}
.jw-story-special .jws-view-all-story a.jw-view-all:hover {
  background: #ffffff;
  color: #f48223;
}
.jw-story-special .jw-story-item {
  background: #fafafa;
}
.jw-story-special .jw-story-item:nth-child(3) {
  MARGIN-TOP: 151PX;
}
.jw-story-special .jw-story-item:nth-child(3) .jws-story-image {
  padding-right: 100px;
}
.jw-story-special .jw-story-item:nth-child(3) .jws-story-image img {
  top: -168px;
}
.jw-story-special .jw-story-item:nth-child(4) {
  margin-top: 55px !important;
}
.jw-story-special .jw-story-item:nth-child(4) .jws-story-image {
  padding-right: 100px;
}
.jw-story-special .jw-story-item:nth-child(4) .jws-story-image img {
  top: -116px !important;
}
.jw-story-special .jw-story-item.jws-item-right .jws-story-image {
  padding-right: 100px;
}
.jw-story-special .jw-story-item.jws-item-right .jws-story-image img {
  right: 15%;
  top: -123px;
}
.jw-story-special .jw-story-item.jws-item-right .jw-meta {
  padding-left: 34px !important;
}
.jw-story-special .jw-story-item.jws-item-right .jws-story-item-detail {
  padding-left: 100px;
  float: left;
  padding-right: 50px;
}
.jw-story-special .jw-story-item.jws-item-right .jws-story-image {
  float: right;
}
.jw-story-special .jw-story-item.jws-item-left .jws-story-image {
  padding-left: 88px;
}
.jw-story-special .jw-story-item.jws-item-left .jws-story-image img {
  left: 15%;
}
.jw-story-special .jw-story-item.jws-item-left .jws-story-item-detail {
  padding-right: 100px;
  float: right;
  padding-left: 50px;
}
.jw-story-special .jw-story-item {
  padding: 50px 0px 0px 0px;
  margin-top: 70px;
  margin-bottom: 78px;
}
.jw-story-special .jw-story-item .jws-story-image {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
.jw-story-special .jw-story-item .jws-story-image img {
  position: absolute;
  width: 85%;
  top: -160px;
  height: auto;
}
.jw-story-special .jw-story-item .meta-info {
  background: #ebebeb;
  margin-top: 66px;
  width: 100%;
  float: left;
  padding: 20px 30px;
}
.jw-story-special .jw-story-item .meta-info .jw-meta {
  padding-left: 15px;
}
.jw-story-special .jw-story-item .meta-info .jw-meta li {
  float: left;
  font-size: 12px;
  padding: 2px 20px;
  border-right: 2px solid #bbbbbb;
  line-height: 10px;
}
.jw-story-special .jw-story-item .meta-info .jw-meta li:last-child {
  border: none;
}
.jw-story-special .jw-story-item .meta-info .jw-meta li a {
  color: #555555;
}
.jw-story-special .jw-story-item .meta-info .jw-meta li a:hover {
  color: #f48223;
}
.jw-story-special .jw-story-item .meta-info.jws-meta-left .meta-details {
  float: right;
}
.jw-story-special .jw-story-item .jws-story-item-detail .jw-location .jw-btn-bd-main {
  background-color: #f48223;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 12px;
  padding: 10px 26px 7px 25px;
  font-family: Poppins;
  letter-spacing: 0.2px;
}
.jw-story-special .jw-story-item .jws-story-item-detail h3 {
  margin-bottom: 10px;
}
.jw-story-special .jw-story-item .jws-story-item-detail h3 a {
  color: #111111;
  font-size: 22px;
}
.jw-story-special .jw-story-item .jws-story-item-detail .jw-donation-raise {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 22px;
  font-family: Poppins;
  letter-spacing: 0.2px;
}
.jw-story-special .jw-story-item .jws-story-item-detail .jw-donation-raise span.amount {
  color: #f48223;
  font-size: 18px;
  font-weight: 700;
}
.jw-story-special .jw-post {
  padding: 55px 15px 15px;
  z-index: 9;
}
.jw-story-special .jw-post .jw-story-item {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-story-special .jw-post .jw-story-item > img {
  width: 100%;
  height: auto;
}
.jw-story-special .jw-post .jw-story-item .jw-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content {
  transition: all 0.4s;
  color: #555555;
  background: rgba(255, 255, 255, 0.98);
  width: 100%;
  height: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 380px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title > a {
  color: #333333;
}
.jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title > a:hover {
  color: #f48223;
}
.jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-meta {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.16px;
  margin: 0;
  padding: 0;
}
.jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li {
  display: inline-block;
  margin-right: 35px;
}
.jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li.jw-donation-so-far > span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #f48223;
}
.jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li.jw-location {
  text-transform: uppercase;
}
.jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li:last-child {
  margin: 0;
}
.jw-story-special .jw-post .jw-story-item:hover .jw-overlay .jw-inner-content,
.jw-story-special .jw-post .jw-story-item.active .jw-overlay .jw-inner-content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
}
.jw-story-special .jw-post .jw-story-item:hover .jw-overlay .jw-inner-content .jw-content-item .jw-title > a,
.jw-story-special .jw-post .jw-story-item.active .jw-overlay .jw-inner-content .jw-content-item .jw-title > a {
  color: #ffffff;
}
.jw-story-special .jw-post .jw-story-item:hover .jw-overlay .jw-inner-content .jw-content-item .jw-title > a:hover,
.jw-story-special .jw-post .jw-story-item.active .jw-overlay .jw-inner-content .jw-content-item .jw-title > a:hover {
  color: #f48223;
}
.jw-story-special .jw-post > article .jw-story-item {
  transition: all 0.4s;
}
.jw-story-special .jw-post > article:hover .jw-story-item,
.jw-story-special .jw-post > article.active .jw-story-item {
  -webkit-transform: translateX(60px);
  -moz-transform: translateX(60px);
  -o-transform: translateX(60px);
  -ms-transform: translateX(60px);
  transform: translateX(60px);
}
.jw-story-special .jw-post > article:hover .jw-story-item .jw-overlay .jw-inner-content,
.jw-story-special .jw-post > article.active .jw-story-item .jw-overlay .jw-inner-content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
}
.jw-story-special .jw-post > article:hover .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title > a,
.jw-story-special .jw-post > article.active .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title > a {
  color: #ffffff;
}
.jw-story-special .jw-post > article:hover .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title > a:hover,
.jw-story-special .jw-post > article.active .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title > a:hover {
  color: #f48223;
}
.jw-story-special .jw-post-detail {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner {
  padding: 70px 20px 70px 40px;
  border: 15px solid #fcfcfc;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner .jw-story-items {
  position: relative;
  overflow: hidden;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner .jw-story-items > article .jw-story-item-detail {
  transition: all 1.2s;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner .jw-story-items > article .jw-story-item-detail .jw-location {
  margin-bottom: 25px;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner .jw-story-items > article .jw-story-item-detail .jw-location > span {
  display: inline-block;
  font-family: Montserrat;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 10px 25px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner .jw-story-items > article .jw-story-item-detail .jw-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner .jw-story-items > article .jw-story-item-detail .jw-title > a {
  color: #333333;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner .jw-story-items > article .jw-story-item-detail .jw-title > a:hover {
  color: #f48223;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner .jw-story-items > article .jw-story-item-detail .jw-donation-so-far {
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #454545;
  margin-bottom: 25px;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner .jw-story-items > article .jw-story-item-detail .jw-donation-so-far > span {
  font-size: 20px;
  color: #f48223;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner .jw-story-items > article .jw-story-item-detail .jw-excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.48px;
  color: #555555;
  margin-bottom: 50px;
}
.jw-story-special .jw-post-detail .jw-story-detail-inner .jw-story-items > article.active .jw-story-item-detail {
  position: relative;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 1;
}
@media (max-width: 1200px - 1) {
  .jw-story-special .jw-post-detail .jw-story-detail-inner {
    padding: 40px 10px;
  }
  .jw-story-special .jw-story-item {
    margin-bottom: 20px;
  }
  .jw-story-special .jw-story-item .meta-info {
    margin-top: 50px;
  }
  .jw-story-special .jw-story-item .jws-story-item-detail .jw-title a {
    font-size: 18px;
  }
}
@media (max-width: 992px - 1) {
  .jw-story-special .jw-post {
    padding-right: 75px;
  }
  .jw-story-special .jw-post-detail {
    position: relative;
  }
  .jw-story-special .jw-story-item {
    padding: 40px 0px 0px 0px;
    margin-top: 40px;
  }
  .jw-story-special .jw-story-item.jws-item-left .jws-story-item-detail {
    padding-right: 20px;
    padding-left: 20px;
  }
  .jw-story-special .jw-story-item.jws-item-right .jws-story-item-detail {
    padding-left: 20px;
    padding-right: 20px;
  }
  .jw-story-special .jw-story-item.jws-item-left .jws-story-image img {
    left: 10%;
  }
  .jw-story-special .jw-story-item.jws-item-right .jws-story-image img {
    right: 10%;
  }
  .jw-story-special .jw-story-item .jws-story-item-detail h3 {
    line-height: 30px;
  }
  .jw-story-special .jw-story-item .jws-story-item-detail .jw-donation-raise {
    margin-bottom: 10px;
  }
  .jw-story-special .jw-story-item .jws-story-image img {
    top: -80px;
  }
}
@media (max-width: 768px - 1) {
  .jw-story-special .jw-story-item {
    margin-bottom: 50px !important;
  }
  .jw-story-special .jw-story-item .jws-story-image img {
    position: static;
  }
  .jw-story-special .jw-story-item.jws-item-left .jws-story-image,
  .jw-story-special .jw-story-item.jws-item-right .jws-story-image {
    padding: 10px 100px;
  }
  .jw-story-special .jw-story-item .jws-story-image img {
    width: 100%;
  }
  .jw-story-special .jw-story-item {
    padding: 0px 0px 0px 0px;
    margin-top: 0px;
  }
  .jw-story-special .jw-story-item.jws-item-left .jws-story-item-detail,
  .jw-story-special .jw-story-item.jws-item-right .jws-story-item-detail {
    padding-right: 100px;
    padding-left: 100px;
  }
}
@media (max-width: 640px - 1) {
  .jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item {
    min-width: auto;
    max-width: 320px;
  }
  .jw-story-special .jw-story-item.jws-item-left .jws-story-image,
  .jw-story-special .jw-story-item.jws-item-right .jws-story-image {
    padding: 10px 20px;
  }
  .jw-story-special .jw-story-item.jws-item-left .jws-story-item-detail,
  .jw-story-special .jw-story-item.jws-item-right .jws-story-item-detail {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 480px - 1) {
  .jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item {
    max-width: 230px;
  }
  .jw-story-special .jw-post .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title {
    margin-bottom: 0;
  }
  .jw-story-special .jw-post {
    padding-right: 35px;
  }
  .jw-story-special .jw-post > article:hover .jw-story-item,
  .jw-story-special .jw-post > article.active .jw-story-item {
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -o-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.jw-story-grid .jw-story-item {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 30px !important;
}
.jw-story-grid .jw-story-item > img {
  width: 100%;
  height: auto;
}
.jw-story-grid .jw-story-item .jw-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.jw-story-grid .jw-story-item .jw-overlay .jw-inner-content {
  transition: all 0.4s;
  color: #555555;
  background: rgba(255, 255, 255, 0.98);
  width: 100%;
  height: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-story-grid .jw-story-item .jw-overlay .jw-inner-content .jw-content-item {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 380px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.jw-story-grid .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.jw-story-grid .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title > a {
  color: #333333;
}
.jw-story-grid .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title > a:hover {
  color: #f48223;
}
.jw-story-grid .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-meta {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.16px;
  margin: 0;
  padding: 0;
}
.jw-story-grid .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li {
  display: inline-block;
  margin-right: 35px;
}
.jw-story-grid .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li.jw-donation-so-far > span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #f48223;
}
.jw-story-grid .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li.jw-location {
  text-transform: uppercase;
}
.jw-story-grid .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-meta > li:last-child {
  margin: 0;
}
.jw-story-grid .jw-story-item:hover .jw-overlay .jw-inner-content,
.jw-story-grid .jw-story-item.active .jw-overlay .jw-inner-content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
}
.jw-story-grid .jw-story-item:hover .jw-overlay .jw-inner-content .jw-content-item .jw-title > a,
.jw-story-grid .jw-story-item.active .jw-overlay .jw-inner-content .jw-content-item .jw-title > a {
  color: #ffffff;
}
.jw-story-grid .jw-story-item:hover .jw-overlay .jw-inner-content .jw-content-item .jw-title > a:hover,
.jw-story-grid .jw-story-item.active .jw-overlay .jw-inner-content .jw-content-item .jw-title > a:hover {
  color: #f48223;
}
.jw-story-grid .jw-pagination {
  text-align: center;
  margin-top: 60px;
}
.jw-story-grid .jw-pagination .page-numbers {
  display: inline-block;
  font-family: Arimo;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-align: center;
  color: #303030;
  margin: 0 -1px;
  width: 63px;
  height: 53px;
  line-height: 53px;
  background-color: #fafafa;
}
.jw-story-grid .jw-pagination .page-numbers.next,
.jw-story-grid .jw-pagination .page-numbers.prev {
  background: #222222;
  color: #ffffff;
  width: 63px;
  height: 75px;
  line-height: 75px;
  margin: 0 11px;
}
.jw-story-grid .jw-pagination .page-numbers > i {
  font-size: 16px;
}
.jw-story-grid .jw-pagination .page-numbers.current {
  color: #f48223;
}
.jw-story-grid .jw-pagination .page-numbers:hover {
  color: #f48223;
}
.jw-story-grid .jw-pagination .page-numbers.prev:hover,
.jw-story-grid .jw-pagination .page-numbers.next:hover {
  color: #ffffff;
  background: #f48223;
}
@media (max-width: 480px - 1) {
  .jw-story-special .jw-story-item .meta-info {
    padding: 20px 5px;
  }
  .jw-story-special .jw-story-item .meta-info .jw-meta li {
    padding: 2px 5px !important;
    font-size: 10px;
  }
  .jw-story-grid .jw-story-item .jw-overlay .jw-inner-content .jw-content-item {
    min-width: auto;
    max-width: 230px;
  }
  .jw-story-grid .jw-story-item .jw-overlay .jw-inner-content .jw-content-item .jw-title {
    margin-bottom: 0;
  }
}
.jw-recent-story .jw-header {
  padding: 60px 0;
}
.jw-recent-story .jw-header .jw-header-inner {
  position: relative;
  text-align: center;
  z-index: 9;
}
.jw-recent-story .jw-header .jw-header-inner img {
  width: 100%;
  height: auto;
}
.jw-recent-story .jw-header .jw-header-inner .jw-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  padding: 115px 95px;
}
.jw-recent-story .jw-header .jw-header-inner .jw-overlay .jw-sujwitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.64px;
  color: #d0cfcf;
  margin-bottom: 15px;
}
.jw-recent-story .jw-header .jw-header-inner .jw-overlay .jw-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0.48px;
  color: #ffffff;
  margin-bottom: 15px;
}
.jw-recent-story .jw-header .jw-header-inner .jw-overlay .jw-title > span {
  display: block;
  font-size: 40px;
  margin-top: 5px;
}
.jw-recent-story .jw-header .jw-header-inner .jw-overlay .jw-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.48px;
  color: #c4c3c3;
  margin-bottom: 50px;
}
.jw-recent-story .jw-header .jw-header-inner .jw-overlay > a {
  line-height: 26px;
  color: #ffffff;
  background: #f48223;
}
.jw-recent-story .jw-header .jw-header-inner .jw-overlay > a:hover {
  color: #f48223;
  background: transparent;
}
.jw-recent-story .jw-content {
  position: relative;
  padding: 125px 0 175px 80px;
}
.jw-recent-story .jw-content .jw-story-item {
  position: relative;
  z-index: 9;
}
.jw-recent-story .jw-content .jw-story-item .jw-locaiton {
  font-family: Montserrat;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  margin-bottom: 20px;
  padding: 4px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-recent-story .jw-content .jw-story-item .jw-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.jw-recent-story .jw-content .jw-story-item .jw-title > a {
  color: #303030;
}
.jw-recent-story .jw-content .jw-story-item .jw-title > a:hover {
  color: #f48223;
}
.jw-recent-story .jw-content .jw-story-item .jw-date {
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.48px;
  color: #f48223;
  margin-bottom: 20px;
}
.jw-recent-story .jw-content .jw-story-item .jw-date > i {
  margin-right: 10px;
}
.jw-recent-story .jw-content .jw-story-item .jw-excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.48px;
  color: #555555;
  margin-bottom: 50px;
}
.jw-recent-story .jw-content .jw-story-item .jw-donation-so-far {
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.48px;
  color: #454545;
}
.jw-recent-story .jw-content .jw-story-item .jw-donation-so-far > span {
  font-size: 24px;
  font-weight: 700;
  color: #f48223;
}
.jw-recent-story .jw-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: -120px;
  width: 300%;
  height: 100%;
  background: #fbfbfb;
  z-index: 0;
}
.jw-recent-story.tpl2 .jw-content {
  padding: 60px 40px 60px 50px;
}
.jw-recent-story.tpl2 .jw-content .jw-story-item .jw-donation-so-far {
  margin-bottom: 20px;
}
.jw-recent-story.tpl2 .jw-content .jw-story-item .jw-excerpt {
  margin-bottom: 65px;
}
.jw-recent-story.tpl2 .jw-content:before {
  left: -50%;
  width: 150%;
  background: #ffffff;
  border: 15px solid #fbfbfb;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
@media (max-width: 1200px - 1) {
  .jw-story-special .jw-story-item:nth-child(4) {
    margin-top: 0 !important;
  }
  .jw-story-special .jw-story-item:nth-child(4) .jws-story-image img {
    top: 0 !important;
  }
  .jw-recent-story .jw-header .jw-header-inner .jw-overlay {
    padding: 70px 50px;
  }
  .jw-recent-story .jw-content {
    padding: 70px 0 175px 80px;
  }
}
@media (max-width: 992px - 1) {
  .jw-recent-story .jw-header .jw-header-inner {
    max-width: 470px;
    margin: auto;
  }
  .jw-recent-story .jw-content {
    padding: 60px 30px;
  }
}
@media (max-width: 479px) {
  .jw-recent-story .jw-header .jw-header-inner .jw-overlay {
    padding: 15px 10px;
  }
  .jw-recent-story .jw-header .jw-header-inner .jw-overlay .jw-title {
    font-size: 32px;
    line-height: 25px;
    margin-bottom: 5px;
  }
  .jw-recent-story .jw-header .jw-header-inner .jw-overlay .jw-title > span {
    font-size: 18px;
  }
  .jw-recent-story .jw-header .jw-header-inner .jw-overlay .jw-description {
    margin-bottom: 15px;
  }
}
.jw-story-article .jw-story .jw-story-item {
  margin-bottom: 70px;
}
.jw-story-article .jw-story .jw-story-item .jw-content img {
  margin: 22px 0;
}
.jw-story-article .jw-story .jw-story-item .jw-header {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.jw-story-article .jw-story .jw-story-item .jw-header > img {
  width: 100%;
  height: auto;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner {
  position: relative;
  margin-bottom: 60px;
  padding: 64px 79px 40px;
  background: #fafafa;
  width: 90%;
  margin: 0 auto;
  margin-top: -34px;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .jw-location {
  color: #ffffff;
  font-size: 12px;
  font-family: Poppins;
  background: #f48223;
  padding: 13px 27px 8px 27px;
  font-weight: 500;
  position: absolute;
  top: -21px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .jw-location a {
  color: #ffffff;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .donation-result .donation-result-innner {
  font-size: 12px;
  letter-spacing: 0.16px;
  color: #FFFFFF;
  margin-bottom: 30px;
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #68b20d;
  width: 10px;
  height: 140px;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_percent {
  display: block;
  padding: 6px 10px;
  background: #68b20d;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_donors {
  position: absolute;
  bottom: -30px;
  width: 135px;
  padding: 7px 10px 5px 29px;
  display: block;
  background: #68b20d;
  left: 0;
  z-index: 999;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .donation-result .donation-result-innner .donate_donors i {
  margin-right: 8px;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .content-bottom .jw-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 9px;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .content-bottom .date-time {
  font-size: 12px;
  color: #555555;
  font-family: Poppins;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .content-bottom .donate-meta {
  position: relative;
  margin-bottom: 35px;
  padding: 23px 0;
  border-top: 1px #6a6a69 dashed;
  padding-bottom: 0px;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .content-bottom .donate-meta .give-form-wrap {
  display: inline-block;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money {
  display: inline-block;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .line_box {
  display: inline-block;
  width: 2px;
  background: #a9a9a9;
  height: 14px;
  margin-top: 16px;
  margin-right: 20px;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .box_money {
  letter-spacing: 0.16px;
  color: #444444;
  font-family: Poppins;
  letter-spacing: 0.3px;
  display: inline-block;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .content-bottom .donate-meta .donation-money .box_money > .amount {
  font-size: 18px;
  color: #f48223;
  font-family: Poppins;
  font-weight: 600;
}
.jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner .content-bottom .donate-meta .give-display-button {
  float: right;
}
.jw-story-article .jw-story .jw-story-item .jw-content {
  margin-top: 63px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #666666;
}
.jw-story-article .jw-story .jw-story-item .jw-content > p {
  margin-bottom: 30px;
}
.jw-story-article .jw-story .jw-story-item .jw-content .gallery {
  margin-bottom: 70px;
}
.jw-story-article .jw-story .jw-story-item .jw-content .gallery .gallery-item {
  display: inline-block;
  margin: 0;
}
.jw-story-article .jw-story .jw-story-item .jw-content .gallery .gallery-item .gallery-item .gallery-icon > a > img {
  width: 100%;
  height: auto;
}
.jw-story-article .jw-story .jw-story-item .jw-content .gallery.gallery-columns-1 > .gallery-item {
  width: 100%;
}
.jw-story-article .jw-story .jw-story-item .jw-content .gallery.gallery-columns-2 > .gallery-item {
  width: 50%;
}
.jw-story-article .jw-story .jw-story-item .jw-content .gallery.gallery-columns-3 > .gallery-item {
  width: 33.33%;
}
.jw-story-article .jw-story .jw-story-item .jw-content .gallery.gallery-columns-4 > .gallery-item {
  width: 25%;
}
.jw-story-article .jw-story .jw-story-item .jw-content .gallery.gallery-columns-5 > .gallery-item {
  width: 20%;
}
.jw-story-article .jw-story .jw-story-item .jw-content .vc_grid-container-wrapper {
  margin-bottom: 41px;
}
.jw-story-article .jw-story .jw-story-item .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f25a";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}
.jw-story-article .jw-story .jw-story-item .jw-content .vc_grid-container-wrapper .vc_gitem-zone .vc-zone-link:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.jw-story-article .jw-story .jw-story-item .jw-content .jw-single-quote {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 28px;
  letter-spacing: 0.7px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 50px;
  padding: 67px 120px;
  overflow: hidden;
}
.jw-story-article .jw-story .jw-story-item .jw-content .jw-single-quote:before {
  content: "";
  width: 3px;
  height: 70px;
  background-color: #f48223;
  top: 32%;
  left: 10%;
  position: absolute;
}
.jw-story-article .jw-story .jw-story-item .jw-content .jw-single-quote span {
  color: #f48223;
}
@media (max-width: 640px - 1) {
  .jw-story-article .jw-story .jw-story-item .jw-header .jw-header-inner {
    padding: 10px 5px;
  }
  .jw-story-article .jw-story .jw-story-item .jw-content .jw-single-quote {
    padding: 20px 10px;
  }
}
/* + SHOP */
.added_to_cart {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 11px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 0;
  border: 2px solid #f48223;
  min-width: 100%;
  height: 40px;
  line-height: 27px;
  bottom: 0px;
  left: 0;
  position: absolute;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  z-index: 99;
  text-align: center;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.added_to_cart:hover {
  color: #ffffff;
  background: #f48223;
}
.onsale-style1 {
  font-family: Poppins;
  font-size: 11px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background: #f48223;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  z-index: 9;
}
.jw-price1 {
  font-family: Poppins;
  font-size: 0;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
  display: inline-block;
  text-align: center;
  min-width: 170px;
  height: 44px;
  line-height: 57px;
  overflow: hidden;
  margin-bottom: -9px;
  background: #f48223;
}
.jw-price1 .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
  color: #ffffff;
  line-height: 44px;
}
.jw-price1 > del {
  font-size: 13px;
  line-height: 49px;
  color: #ffffff;
  float: right;
  width: 47%;
  text-align: left;
  opacity: 1;
}
.jw-price1 > del .amount {
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  font-family: Poppins;
}
.jw-price1 > ins {
  line-height: 47px;
  font-size: 15px;
  color: #f48223;
  text-decoration: none;
  float: left;
  width: 50%;
  text-align: right;
}
.jw-price1 > ins .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
}
.jw-add-to-cart1 {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 11px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 0;
  border: 2px solid #f48223;
  min-width: 100%;
  height: 40px;
  line-height: 40px;
  bottom: -40px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  z-index: 99;
  text-align: center;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.jw-add-to-cart1:hover {
  color: #ffffff;
  background: #f48223;
}
.jw-add-to-carted {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 11px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 0;
  border: 2px solid #f48223;
  min-width: 100%;
  height: 40px;
  line-height: 27px;
  bottom: 0px;
  left: 0;
  position: absolute;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  z-index: 99;
  text-align: center;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.jw-add-to-carted:hover {
  color: #ffffff;
  background: #f48223;
}
.jw-product-item-style1 {
  background: #ffffff;
  margin-bottom: 30px;
}
.jw-product-item-style1 .jw-thumb {
  position: relative;
  width: 49%;
  float: left;
}
.jw-product-item-style1 .jw-thumb > a > img {
  width: 100%;
  height: auto;
}
.jw-product-item-style1 .jw-thumb span.onsale {
  font-family: Poppins;
  font-size: 11px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background: #f48223;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  z-index: 9;
}
.jw-product-item-style1 .jw-thumb span.price {
  font-family: Poppins;
  font-size: 0;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
  display: inline-block;
  text-align: center;
  min-width: 170px;
  height: 44px;
  line-height: 57px;
  overflow: hidden;
  margin-bottom: -9px;
  background: #f48223;
}
.jw-product-item-style1 .jw-thumb span.price .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
  color: #ffffff;
  line-height: 44px;
}
.jw-product-item-style1 .jw-thumb span.price > del {
  font-size: 13px;
  line-height: 49px;
  color: #ffffff;
  float: right;
  width: 47%;
  text-align: left;
  opacity: 1;
}
.jw-product-item-style1 .jw-thumb span.price > del .amount {
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  font-family: Poppins;
}
.jw-product-item-style1 .jw-thumb span.price > ins {
  line-height: 47px;
  font-size: 15px;
  color: #f48223;
  text-decoration: none;
  float: left;
  width: 50%;
  text-align: right;
}
.jw-product-item-style1 .jw-thumb span.price > ins .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
}
.jw-product-item-style1 .jw-content {
  position: relative;
  width: 51%;
  float: right;
  text-align: center;
  padding: 45px 0 0 30px;
}
.jw-product-item-style1 .jw-content > a > h3 {
  transition: all 0.4s;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #303030;
}
.jw-product-item-style1 .jw-content > a > h3:hover {
  color: #f48223;
}
.jw-product-item-style1 .jw-content .star-rating {
  font-size: 12px;
  line-height: 10px;
  color: #303030;
  float: none;
  margin: 0 auto 10px;
}
.jw-product-item-style1 .jw-content .star-rating > span {
  color: #f48223;
}
.jw-product-item-style1 .jw-content .star-rating:before {
  color: #303030;
}
.jw-product-item-style1 .jw-content .description {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #555555;
  margin-bottom: 30px;
}
.jw-product-item-style1 .jw-content:before {
  transition: all 0.4s;
  content: "";
  position: absolute;
  top: 50%;
  height: 16px;
  left: 0;
  width: 16px;
  background: #ffffff;
  opacity: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.jw-product-item-style1.jw-rlt .jw-thumb {
  float: right;
}
.jw-product-item-style1.jw-rlt .jw-content {
  float: left;
  padding: 45px 30px 0 0;
}
.jw-product-item-style1.jw-rlt .jw-content:before {
  left: auto;
  right: 0;
}
.jw-product-item-style1:after {
  content: "";
  display: block;
  clear: both;
}
.jw-product-item-style2 {
  margin-bottom: 30px;
}
.jw-product-item-style2 .jw-thumb {
  position: relative;
  overflow: hidden;
}
.jw-product-item-style2 .jw-thumb .button {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 11px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 0;
  border: 2px solid #f48223;
  min-width: 100%;
  height: 40px;
  line-height: 40px;
  bottom: -40px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  z-index: 99;
  text-align: center;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.jw-product-item-style2 .jw-thumb .button:hover {
  color: #ffffff;
  background: #f48223;
}
.jw-product-item-style2 .jw-thumb > a > img {
  width: 100%;
  height: auto;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.jw-product-item-style2 .jw-thumb span.onsale {
  font-family: Poppins;
  font-size: 11px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background: #f48223;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  z-index: 9;
}
.jw-product-item-style2 .jw-content {
  position: relative;
  text-align: center;
  padding-top: 34px;
  z-index: 2;
}
.jw-product-item-style2 .jw-content .line-box {
  position: absolute;
  display: block;
  width: 90%;
  height: calc(100% + 25px);
  top: -25px;
  left: 5%;
  border: 4px solid #fcfcfc;
  z-index: -1;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.jw-product-item-style2 .jw-content > a > h2 {
  transition: all 0.4s;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.48px;
  margin-bottom: 5px;
  color: #454545;
}
.jw-product-item-style2 .jw-content > a > h2:hover {
  color: #f48223;
}
.jw-product-item-style2 .jw-content > a.button {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 11px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 0;
  border: 2px solid #f48223;
  min-width: 100%;
  height: 40px;
  line-height: 40px;
  bottom: -40px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  z-index: 99;
  text-align: center;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.jw-product-item-style2 .jw-content > a.button:hover {
  color: #ffffff;
  background: #f48223;
}
.jw-product-item-style2 .jw-content .star-rating {
  font-size: 12px;
  line-height: 13px;
  color: #f48223;
  float: none;
  margin: 0 auto 36px;
  width: 66px;
}
.jw-product-item-style2 .jw-content .star-rating > span {
  color: #f48223;
}
.jw-product-item-style2 .jw-content .star-rating:before {
  color: #f48223;
}
.jw-product-item-style2 .jw-content .description {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #555555;
  margin-bottom: 30px;
}
.jw-product-item-style2 .jw-content span.price {
  font-family: Poppins;
  font-size: 0;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
  display: inline-block;
  text-align: center;
  min-width: 170px;
  height: 44px;
  line-height: 57px;
  overflow: hidden;
  margin-bottom: -9px;
  background: #f48223;
}
.jw-product-item-style2 .jw-content span.price .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
  color: #ffffff;
  line-height: 44px;
}
.jw-product-item-style2 .jw-content span.price > del {
  font-size: 13px;
  line-height: 49px;
  color: #ffffff;
  float: right;
  width: 47%;
  text-align: left;
  opacity: 1;
}
.jw-product-item-style2 .jw-content span.price > del .amount {
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  font-family: Poppins;
}
.jw-product-item-style2 .jw-content span.price > ins {
  line-height: 47px;
  font-size: 15px;
  color: #f48223;
  text-decoration: none;
  float: left;
  width: 50%;
  text-align: right;
}
.jw-product-item-style2 .jw-content span.price > ins .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
}
.jw-product-item-style2 .jw-content:before {
  transition: all 0.4s;
  content: "";
  position: absolute;
  top: 50%;
  height: 16px;
  left: 0;
  width: 16px;
  background: #ffffff;
  opacity: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.tb-products-grid.tpl1 .product {
  background: #ffffff;
  margin-bottom: 30px;
}
.tb-products-grid.tpl1 .product .jw-thumb {
  position: relative;
  width: 49%;
  float: left;
}
.tb-products-grid.tpl1 .product .jw-thumb > a > img {
  width: 100%;
  height: auto;
}
.tb-products-grid.tpl1 .product .jw-thumb span.onsale {
  font-family: Poppins;
  font-size: 11px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background: #f48223;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  z-index: 9;
}
.tb-products-grid.tpl1 .product .jw-thumb span.price {
  font-family: Poppins;
  font-size: 0;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
  display: inline-block;
  text-align: center;
  min-width: 170px;
  height: 44px;
  line-height: 57px;
  overflow: hidden;
  margin-bottom: -9px;
  background: #f48223;
}
.tb-products-grid.tpl1 .product .jw-thumb span.price .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
  color: #ffffff;
  line-height: 44px;
}
.tb-products-grid.tpl1 .product .jw-thumb span.price > del {
  font-size: 13px;
  line-height: 49px;
  color: #ffffff;
  float: right;
  width: 47%;
  text-align: left;
  opacity: 1;
}
.tb-products-grid.tpl1 .product .jw-thumb span.price > del .amount {
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  font-family: Poppins;
}
.tb-products-grid.tpl1 .product .jw-thumb span.price > ins {
  line-height: 47px;
  font-size: 15px;
  color: #f48223;
  text-decoration: none;
  float: left;
  width: 50%;
  text-align: right;
}
.tb-products-grid.tpl1 .product .jw-thumb span.price > ins .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
}
.tb-products-grid.tpl1 .product .jw-content {
  position: relative;
  width: 51%;
  float: right;
  text-align: center;
  padding: 45px 0 0 30px;
}
.tb-products-grid.tpl1 .product .jw-content > a > h3 {
  transition: all 0.4s;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #303030;
}
.tb-products-grid.tpl1 .product .jw-content > a > h3:hover {
  color: #f48223;
}
.tb-products-grid.tpl1 .product .jw-content .star-rating {
  font-size: 12px;
  line-height: 10px;
  color: #303030;
  float: none;
  margin: 0 auto 10px;
}
.tb-products-grid.tpl1 .product .jw-content .star-rating > span {
  color: #f48223;
}
.tb-products-grid.tpl1 .product .jw-content .star-rating:before {
  color: #303030;
}
.tb-products-grid.tpl1 .product .jw-content .description {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #555555;
  margin-bottom: 30px;
}
.tb-products-grid.tpl1 .product .jw-content:before {
  transition: all 0.4s;
  content: "";
  position: absolute;
  top: 50%;
  height: 16px;
  left: 0;
  width: 16px;
  background: #ffffff;
  opacity: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.tb-products-grid.tpl1 .product.jw-rlt .jw-thumb {
  float: right;
}
.tb-products-grid.tpl1 .product.jw-rlt .jw-content {
  float: left;
  padding: 45px 30px 0 0;
}
.tb-products-grid.tpl1 .product.jw-rlt .jw-content:before {
  left: auto;
  right: 0;
}
.tb-products-grid.tpl1 .product:after {
  content: "";
  display: block;
  clear: both;
}
.tb-products-grid.tpl1 .product:hover .jw-content > a > h3 {
  color: #f48223;
}
.tb-products-grid.tpl1 .product:hover .jw-content > a.button {
  color: #ffffff;
  background: #f48223;
}
.tb-products-grid.tpl1 .product:hover .jw-content:before {
  opacity: 1;
  left: -8px;
}
.tb-products-grid.tpl1 .product:hover.jw-rlt .jw-content:before {
  left: auto;
  right: -8px;
}
.tb-products-grid.tpl2 .product {
  margin-bottom: 30px;
  margin-bottom: 50px;
}
.tb-products-grid.tpl2 .product .jw-thumb {
  position: relative;
  overflow: hidden;
}
.tb-products-grid.tpl2 .product .jw-thumb .button {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 11px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 0;
  border: 2px solid #f48223;
  min-width: 100%;
  height: 40px;
  line-height: 40px;
  bottom: -40px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  z-index: 99;
  text-align: center;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.tb-products-grid.tpl2 .product .jw-thumb .button:hover {
  color: #ffffff;
  background: #f48223;
}
.tb-products-grid.tpl2 .product .jw-thumb > a > img {
  width: 100%;
  height: auto;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.tb-products-grid.tpl2 .product .jw-thumb span.onsale {
  font-family: Poppins;
  font-size: 11px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background: #f48223;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  z-index: 9;
}
.tb-products-grid.tpl2 .product .jw-content {
  position: relative;
  text-align: center;
  padding-top: 34px;
  z-index: 2;
}
.tb-products-grid.tpl2 .product .jw-content .line-box {
  position: absolute;
  display: block;
  width: 90%;
  height: calc(100% + 25px);
  top: -25px;
  left: 5%;
  border: 4px solid #fcfcfc;
  z-index: -1;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.tb-products-grid.tpl2 .product .jw-content > a > h2 {
  transition: all 0.4s;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.48px;
  margin-bottom: 5px;
  color: #454545;
}
.tb-products-grid.tpl2 .product .jw-content > a > h2:hover {
  color: #f48223;
}
.tb-products-grid.tpl2 .product .jw-content > a.button {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 11px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 0;
  border: 2px solid #f48223;
  min-width: 100%;
  height: 40px;
  line-height: 40px;
  bottom: -40px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  z-index: 99;
  text-align: center;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.tb-products-grid.tpl2 .product .jw-content > a.button:hover {
  color: #ffffff;
  background: #f48223;
}
.tb-products-grid.tpl2 .product .jw-content .star-rating {
  font-size: 12px;
  line-height: 13px;
  color: #f48223;
  float: none;
  margin: 0 auto 36px;
  width: 66px;
}
.tb-products-grid.tpl2 .product .jw-content .star-rating > span {
  color: #f48223;
}
.tb-products-grid.tpl2 .product .jw-content .star-rating:before {
  color: #f48223;
}
.tb-products-grid.tpl2 .product .jw-content .description {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #555555;
  margin-bottom: 30px;
}
.tb-products-grid.tpl2 .product .jw-content span.price {
  font-family: Poppins;
  font-size: 0;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
  display: inline-block;
  text-align: center;
  min-width: 170px;
  height: 44px;
  line-height: 57px;
  overflow: hidden;
  margin-bottom: -9px;
  background: #f48223;
}
.tb-products-grid.tpl2 .product .jw-content span.price .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
  color: #ffffff;
  line-height: 44px;
}
.tb-products-grid.tpl2 .product .jw-content span.price > del {
  font-size: 13px;
  line-height: 49px;
  color: #ffffff;
  float: right;
  width: 47%;
  text-align: left;
  opacity: 1;
}
.tb-products-grid.tpl2 .product .jw-content span.price > del .amount {
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  font-family: Poppins;
}
.tb-products-grid.tpl2 .product .jw-content span.price > ins {
  line-height: 47px;
  font-size: 15px;
  color: #f48223;
  text-decoration: none;
  float: left;
  width: 50%;
  text-align: right;
}
.tb-products-grid.tpl2 .product .jw-content span.price > ins .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
}
.tb-products-grid.tpl2 .product .jw-content:before {
  transition: all 0.4s;
  content: "";
  position: absolute;
  top: 50%;
  height: 16px;
  left: 0;
  width: 16px;
  background: #ffffff;
  opacity: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.tb-products-grid.tpl2 .product:hover .line-box {
  background-color: #ffffff;
}
.tb-products-grid.tpl2 .product:hover .jw-thumb .button {
  opacity: 1 !important;
  visibility: visible !important;
  bottom: 0 !important;
}
.tb-products-grid .jw-pagination {
  text-align: center;
}
.tb-products-grid .jw-pagination .page-numbers {
  display: inline-block;
  font-family: Arimo;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-align: center;
  color: #303030;
  margin: 0 -1px;
  width: 63px;
  height: 53px;
  line-height: 53px;
  background-color: #fafafa;
}
.tb-products-grid .jw-pagination .page-numbers.next,
.tb-products-grid .jw-pagination .page-numbers.prev {
  background: #222222;
  color: #ffffff;
  width: 63px;
  height: 75px;
  line-height: 75px;
  margin: 0 11px;
}
.tb-products-grid .jw-pagination .page-numbers > i {
  font-size: 16px;
}
.tb-products-grid .jw-pagination .page-numbers.current {
  color: #f48223;
}
.tb-products-grid .jw-pagination .page-numbers:hover {
  color: #f48223;
}
.tb-products-grid .jw-pagination .page-numbers.prev:hover,
.tb-products-grid .jw-pagination .page-numbers.next:hover {
  color: #ffffff;
  background: #f48223;
}
@media (max-width: 1200px - 1) {
  .tb-products-grid.tpl1 .product .jw-thumb span.price {
    min-width: 180px;
  }
  .tb-products-grid.tpl1 .product .jw-content {
    padding: 20px 0 0 30px;
  }
  .tb-products-grid.tpl1 .product.jw-rlt .jw-content {
    padding: 20px 30px 0 0;
  }
  .tb-products-grid.tpl2 .product .jw-thumb span.price {
    min-width: 180px;
  }
}
@media (max-width: 992px - 1) {
  .tb-products-grid.tpl1 .product {
    max-width: 270px;
    margin: 0 auto 30px;
  }
  .tb-products-grid.tpl1 .product .jw-thumb {
    width: 100%;
  }
  .tb-products-grid.tpl1 .product .jw-thumb span.price {
    min-width: 240px;
  }
  .tb-products-grid.tpl1 .product .jw-content {
    width: 100%;
    padding: 20px 0;
  }
  .tb-products-grid.tpl1 .product .jw-content:before {
    display: none;
  }
  .tb-products-grid.tpl1 .product.jw-rlt .jw-content {
    padding: 20px 0;
  }
  .tb-products-grid.tpl2 .product {
    max-width: 270px;
    margin: 0 auto 30px;
  }
  .tb-products-grid.tpl2 .product .jw-thumb span.price {
    min-width: 240px;
  }
}
.woocommerce .jw-product-items .product {
  margin-bottom: 30px;
  margin-bottom: 50px;
}
.woocommerce .jw-product-items .product .jw-thumb {
  position: relative;
  overflow: hidden;
}
.woocommerce .jw-product-items .product .jw-thumb .button {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 11px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 0;
  border: 2px solid #f48223;
  min-width: 100%;
  height: 40px;
  line-height: 40px;
  bottom: -40px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  z-index: 99;
  text-align: center;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.woocommerce .jw-product-items .product .jw-thumb .button:hover {
  color: #ffffff;
  background: #f48223;
}
.woocommerce .jw-product-items .product .jw-thumb > a > img {
  width: 100%;
  height: auto;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.woocommerce .jw-product-items .product .jw-thumb span.onsale {
  font-family: Poppins;
  font-size: 11px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background: #f48223;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  z-index: 9;
}
.woocommerce .jw-product-items .product .jw-content {
  position: relative;
  text-align: center;
  padding-top: 34px;
  z-index: 2;
}
.woocommerce .jw-product-items .product .jw-content .line-box {
  position: absolute;
  display: block;
  width: 90%;
  height: calc(100% + 25px);
  top: -25px;
  left: 5%;
  border: 4px solid #fcfcfc;
  z-index: -1;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.woocommerce .jw-product-items .product .jw-content > a > h2 {
  transition: all 0.4s;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.48px;
  margin-bottom: 5px;
  color: #454545;
}
.woocommerce .jw-product-items .product .jw-content > a > h2:hover {
  color: #f48223;
}
.woocommerce .jw-product-items .product .jw-content > a.button {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 11px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 0;
  border: 2px solid #f48223;
  min-width: 100%;
  height: 40px;
  line-height: 40px;
  bottom: -40px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  z-index: 99;
  text-align: center;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.woocommerce .jw-product-items .product .jw-content > a.button:hover {
  color: #ffffff;
  background: #f48223;
}
.woocommerce .jw-product-items .product .jw-content .star-rating {
  font-size: 12px;
  line-height: 13px;
  color: #f48223;
  float: none;
  margin: 0 auto 36px;
  width: 66px;
}
.woocommerce .jw-product-items .product .jw-content .star-rating > span {
  color: #f48223;
}
.woocommerce .jw-product-items .product .jw-content .star-rating:before {
  color: #f48223;
}
.woocommerce .jw-product-items .product .jw-content .description {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: #555555;
  margin-bottom: 30px;
}
.woocommerce .jw-product-items .product .jw-content span.price {
  font-family: Poppins;
  font-size: 0;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
  display: inline-block;
  text-align: center;
  min-width: 170px;
  height: 44px;
  line-height: 57px;
  overflow: hidden;
  margin-bottom: -9px;
  background: #f48223;
}
.woocommerce .jw-product-items .product .jw-content span.price .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
  color: #ffffff;
  line-height: 44px;
}
.woocommerce .jw-product-items .product .jw-content span.price > del {
  font-size: 13px;
  line-height: 49px;
  color: #ffffff;
  float: right;
  width: 47%;
  text-align: left;
  opacity: 1;
}
.woocommerce .jw-product-items .product .jw-content span.price > del .amount {
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  font-family: Poppins;
}
.woocommerce .jw-product-items .product .jw-content span.price > ins {
  line-height: 47px;
  font-size: 15px;
  color: #f48223;
  text-decoration: none;
  float: left;
  width: 50%;
  text-align: right;
}
.woocommerce .jw-product-items .product .jw-content span.price > ins .amount {
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
}
.woocommerce .jw-product-items .product .jw-content:before {
  transition: all 0.4s;
  content: "";
  position: absolute;
  top: 50%;
  height: 16px;
  left: 0;
  width: 16px;
  background: #ffffff;
  opacity: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 1200px - 1) {
  .woocommerce .jw-product-items .product .jw-thumb span.price {
    min-width: 180px;
  }
}
@media (max-width: 992px - 1) {
  .woocommerce .jw-product-items .product {
    max-width: 270px;
    margin: 0 auto 50px;
  }
  .woocommerce .jw-product-items .product .jw-thumb span.price {
    min-width: 240px;
  }
}
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
.woocommerce .woocommerce-ordering select {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
@media (max-width: 640px - 1) {
  .woocommerce .woocommerce-result-count,
  .woocommerce-page .woocommerce-result-count {
    width: 100%;
    text-align: center;
  }
  .woocommerce .woocommerce-ordering {
    width: 100%;
  }
}
.woocommerce nav.woocommerce-pagination {
  text-align: center;
  padding-top: 14px;
  padding-bottom: 10px;
}
.woocommerce nav.woocommerce-pagination ul {
  border: none;
}
.woocommerce nav.woocommerce-pagination ul > li {
  display: inline-block;
  margin: 0 4px;
  border: none;
  overflow: inherit;
}
.woocommerce nav.woocommerce-pagination ul > li .page-numbers {
  display: inline-block;
  width: 65px;
  height: 55px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.48px;
  line-height: 55px;
  text-align: center;
  color: #333333;
  background: #fafafa;
  padding: 0;
}
.woocommerce nav.woocommerce-pagination ul > li .page-numbers > i {
  font-size: 16px;
}
.woocommerce nav.woocommerce-pagination ul > li .page-numbers.next,
.woocommerce nav.woocommerce-pagination ul > li .page-numbers.prev {
  background: #f48223;
  color: #ffffff;
  width: 63px;
  height: 75px;
  line-height: 75px;
  margin-top: -10px;
}
.woocommerce nav.woocommerce-pagination ul > li .page-numbers.current {
  background: #fafafa;
  color: #f48223;
}
.woocommerce nav.woocommerce-pagination ul > li .page-numbers.next:hover,
.woocommerce nav.woocommerce-pagination ul > li .page-numbers.prev:hover {
  color: #ffffff;
  background: #222222;
}
.jw-single-add-to-cart > span {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #333333;
  display: inline-block;
  vertical-align: middle;
}
.jw-single-add-to-cart .quantity {
  vertical-align: middle;
  float: none;
}
.jw-single-add-to-cart .quantity > input {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  color: #333333;
  width: 85px;
  height: 42px;
  border: 1px solid #ececec;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.jw-single-add-to-cart .quantity > input:focus {
  border-color: #f48223;
}
.jw-single-add-to-cart .single_add_to_cart_button {
  transition: all 0.4s;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #f48223;
  background: transparent;
  padding: 8px 39px 5px 36px;
  border: 2px solid #f48223;
  -webkit-border-radius: 1px;
  moz-border-radius: 1px;
  border-radius: 1px;
  top: 25px;
  right: 0;
  z-index: 9;
  position: absolute;
}
.jw-single-add-to-cart .single_add_to_cart_button:hover {
  color: #ffffff;
  background: #f48223;
}
.single-product .sidebar-right .wg-title {
  font-size: 20px;
  color: #333333;
  letter-spacing: 0;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 600;
}
.single-product .sidebar-right .wg-title:after {
  content: "---------";
  display: inline-block;
  margin-top: 11px;
  margin-left: 20px;
  height: 2px;
  width: 50px;
  line-height: 2px;
  color: #68b20d;
  font-size: 20px;
  letter-spacing: -5px;
  white-space: nowrap;
  font-weight: 500;
}
.single-product .sidebar-right .ro-widget-instagram .tb-col-instagram a {
  width: 85px;
  display: inline-block;
}
.single-product .sidebar-right .widget_tag_cloud {
  margin-bottom: 67px;
}
.single-product .sidebar-right .widget_tag_cloud .tagcloud {
  background-color: #fafafa;
  padding: 40px 20px 40px 22px;
}
.single-product .sidebar-right .widget_tag_cloud .tagcloud a {
  color: #ffffff;
  font-size: 11px !important;
  background-color: #222222;
  padding: 6px 18px;
  font-family: Poppins;
  display: inline-block;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  margin-bottom: 3px;
  margin-right: -1px;
}
.single-product .sidebar-right .widget_tag_cloud .tagcloud a:hover {
  background-color: #f48223;
}
.single-product .sidebar-right .widget_jw_post_list {
  margin-bottom: 67px;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item {
  text-align: center;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta {
  text-align: center;
  background: #fbfbfb;
  padding: 30px 20px 30px 20px;
  width: 92%;
  margin: 0 auto;
  margin-top: -25px;
  z-index: 1;
  position: relative;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta span {
  color: #f48223;
  font-size: 12px;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta .title {
  margin-bottom: -2px;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .item-inner .info-meta .title a {
  color: #444444;
  font-size: 13px;
  font-family: Poppins;
  letter-spacing: 0.6px;
  font-weight: 500;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click {
  border: none;
  box-shadow: none;
  background: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  position: relative;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click:before {
  background-color: #000000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f008";
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  font: normal normal normal 30px/1 FontAwesome;
  text-align: center;
  padding-top: 50%;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  color: #f48223;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click:hover:before {
  opacity: 0.7;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout4 .thumbnail-click img {
  height: auto;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout2 img {
  height: auto;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li {
  position: relative;
  margin-bottom: 20px;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner {
  position: absolute;
  padding: 45px 25px 15px 25px;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  -wekit-transition: 0.5s all;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta span {
  font-size: 12px;
  color: #f48223;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta .title {
  line-height: 22px;
}
.single-product .sidebar-right .widget_jw_post_list .jw-post-list.layout2 li .item-inner .info-meta .title a {
  font-size: 13px;
  color: #ffffff;
  font-family: Poppins;
}
.single-product .sidebar-right .widget_categories_custom {
  margin-bottom: 66px;
}
.single-product .sidebar-right .widget_categories_custom ul {
  background-color: #fbfbfb;
  padding: 42px 25px 26px 25px;
}
.single-product .sidebar-right .widget_categories_custom ul li {
  text-align: right;
  margin-bottom: 15px;
}
.single-product .sidebar-right .widget_categories_custom ul li:hover .cat-count {
  background-color: #f48223;
  border-color: #f48223;
}
.single-product .sidebar-right .widget_categories_custom ul li .cat-name {
  font-size: 12px;
  color: #444444;
  font-family: Poppins;
  font-weight: 500;
  float: left;
  line-height: 35px;
}
.single-product .sidebar-right .widget_categories_custom ul li .cat-count {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #222222;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 10px;
  border: 1px solid #222222;
  color: #ffffff;
  font-family: Poppins;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails {
  margin-bottom: 69px;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails ul {
  padding: 0;
  margin: 0;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails ul li {
  margin-bottom: 22px;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left {
  display: inline-block;
  width: 30%;
  vertical-align: top;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date {
  width: 85px;
  height: 80px;
  text-align: center;
  margin-bottom: -25px;
  padding: 15px 5px;
  color: #ffffff;
  background: #f48223;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date .jw-day {
  display: block;
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: -10px;
  font-family: Poppins;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-left .tb-post-date .jw-month {
  font-size: 11px;
  color: #000000;
  text-transform: none;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.48px;
  margin-bottom: -5px;
  font-family: Poppins;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right {
  display: inline-block;
  width: 68%;
  padding-left: 23px;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-author h3 {
  margin-bottom: -5px;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-author a {
  font-size: 12px;
  font-family: Arimo;
  color: #f48223;
  font-weight: 400;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-title h3 {
  margin-bottom: 0px;
  line-height: 16px;
}
.single-product .sidebar-right .widget_zo-recent-posts-widget-with-thumbnails .tb-recent-detail .content-right .tb-post-title a {
  font-size: 13px;
  color: #232323;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.single-product .jw-product-item .jw-header {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.single-product .jw-product-item .jw-header .onsale {
  font-family: Poppins;
  font-size: 11px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background: #f48223;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  z-index: 9;
}
.single-product .jw-product-item .jw-header .jw-thumb img {
  width: 100%;
  height: auto;
}
.single-product .jw-product-item .jw-header .jw-header-inner {
  position: relative;
  background: #fafafa;
  margin-bottom: 60px;
  padding: 40px 60px 30px;
  width: 90%;
  margin: 0 auto;
  margin-top: -60px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .jw-no-relative {
  position: static;
}
.single-product .jw-product-item .jw-header .jw-header-inner .price {
  color: #FFFFFF;
  font-size: 12px;
  font-family: Poppins;
  background: #f48223;
  padding: 12px 37px 8px 37px;
  font-weight: 500;
  position: absolute;
  top: -24px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .price .amount {
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
}
.single-product .jw-product-item .jw-header .jw-header-inner .price > del {
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  margin-right: 5px;
  opacity: 1;
  float: right;
  line-height: 29px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .price > del .amount {
  font-size: 11px !important;
  line-height: 14px;
  color: #ffffff;
  font-weight: 300;
}
.single-product .jw-product-item .jw-header .jw-header-inner .price > ins {
  font-size: 18px;
  color: #f48223;
  text-decoration: none;
  margin: 0 5px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom {
  border-top: 1px #6a6a69 dashed;
  padding-top: 25px;
  position: relative;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart {
  margin-bottom: 0;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart > span {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #333333;
  display: inline-block;
  vertical-align: middle;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .quantity {
  vertical-align: middle;
  float: none;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .quantity > input {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  color: #333333;
  width: 85px;
  height: 42px;
  border: 1px solid #ececec;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .quantity > input:focus {
  border-color: #f48223;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .single_add_to_cart_button {
  transition: all 0.4s;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #f48223;
  background: transparent;
  padding: 8px 39px 5px 36px;
  border: 2px solid #f48223;
  -webkit-border-radius: 1px;
  moz-border-radius: 1px;
  border-radius: 1px;
  top: 25px;
  right: 0;
  z-index: 9;
  position: absolute;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .single_add_to_cart_button:hover {
  color: #ffffff;
  background: #f48223;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart > span {
  display: none;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .quantity .input-text,
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .quantity .qty-minus,
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .quantity .qty-plus {
  width: 49px;
  height: 45px;
  background-color: #f0f0f0;
  line-height: 45px;
  display: inline-block;
  text-align: center;
  color: #404040;
  font-size: 12px;
  cursor: pointer;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .quantity .input-text {
  width: 95px;
  font-size: 14px;
  font-family: Poppins;
  text-align: center;
  padding-left: 15px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .quantity .qty-minus:hover,
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .quantity .qty-plus:hover {
  background-color: #f48223;
  color: #ffffff;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form {
  margin-bottom: 0;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form .variations {
  margin-bottom: 0;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form .variations tr > td label {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 65px;
  letter-spacing: 0.48px;
  color: #303030;
  text-transform: uppercase;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form .variations tr > td select {
  margin: 0;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form .variations tr > td .reset_variations {
  font-size: 12px;
  font-weight: 700;
  color: #303030;
  text-transform: uppercase;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form .variations tr > td .reset_variations:hover {
  color: #f48223;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart > span {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #333333;
  display: inline-block;
  vertical-align: middle;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart .quantity {
  vertical-align: middle;
  float: none;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart .quantity > input {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  color: #333333;
  width: 85px;
  height: 42px;
  border: 1px solid #ececec;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart .quantity > input:focus {
  border-color: #f48223;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  transition: all 0.4s;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #f48223;
  background: transparent;
  padding: 8px 39px 5px 36px;
  border: 2px solid #f48223;
  -webkit-border-radius: 1px;
  moz-border-radius: 1px;
  border-radius: 1px;
  top: 25px;
  right: 0;
  z-index: 9;
  position: absolute;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  color: #ffffff;
  background: #f48223;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-top {
  padding-bottom: 15px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-top .woocommerce-product-rating {
  margin-bottom: 15px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-top .woocommerce-product-rating .star-rating {
  font-size: 12px;
  line-height: 12px;
  color: #303030;
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  width: 67px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-top .woocommerce-product-rating .star-rating > span {
  color: #f48223;
  left: 2px;
  overflow: initial;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-top .woocommerce-product-rating .star-rating:before {
  color: #f48223;
  left: 2px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-top .woocommerce-product-rating > a {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.64px;
  color: #666666;
  margin-left: 10px;
  vertical-align: middle;
  margin-top: 3px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-top .woocommerce-product-rating > a:hover {
  color: #f48223;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-top .product_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 2px;
  margin-top: 25px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-top .thumbnails {
  margin-top: 3px;
}
.single-product .jw-product-item .jw-header .jw-header-inner .shop-top .thumbnails > a > img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #review_form_wrapper {
  margin-top: 24px;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #review_form_wrapper .comment-respond form .comment-notes {
  display: none;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #review_form_wrapper .comment-respond form label {
  font-weight: 500;
  font-family: Poppins;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #review_form_wrapper .comment-respond form .form-submit input {
  width: 190px;
  height: 50px;
  color: #ffffff !important;
  background-color: #f48223 !important;
  border-radius: 1px !important;
  -webkit-border-radius: 1px !important;
  text-transform: uppercase;
  font-weight: 500 !important;
  font-size: 12px !important;
  border: 1px solid #f48223 !important;
  line-height: 50px !important;
  padding: 0px !important;
  font-family: Poppins;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #review_form_wrapper .comment-respond form .form-submit input:hover {
  background-color: #ffffff !important;
  color: #f48223 !important;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #review_form_wrapper .comment-respond form .comment-form-rating .stars a {
  color: #f48223;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #review_form_wrapper .comment-respond .comment-reply-title {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #333333;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-bottom: 15px;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #review_form_wrapper .comment-respond .comment-reply-title span {
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  display: block;
  letter-spacing: 0.4px;
  color: #f48223;
  margin-bottom: 2px;
  margin-top: 22px;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments .review-title-top {
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #f48223;
  margin-bottom: 0px;
  margin-top: 22px;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments .woocommerce-Reviews-title {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #333333;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-bottom: 15px;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist {
  padding: 0;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li {
  margin: 0 0 13px;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li .comment_container {
  background-color: #fafafa;
  padding: 40px 47px 3px 52px;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li .comment_container img.avatar {
  border: 0px !important;
  background: none !important;
  width: 120px !important;
  padding: 0 !important;
  position: initial !important;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li .comment_container .comment-text {
  margin: 23px 0 0 145px !important;
  border: 0px !important;
  padding: 0 !important;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li .comment_container .comment-text .description {
  margin-top: 11px;
  margin-bottom: 44px;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li .comment_container .comment-text .star-rating {
  color: #f48223;
  font-size: 12px;
  line-height: 13px;
  height: 13px;
  margin-top: 5px;
  width: 70px;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li .comment_container .comment-text .star-rating:before {
  color: #f48223;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li .comment_container .comment-text .meta {
  color: #fafafa !important;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li .comment_container .comment-text .meta time {
  display: none;
}
.single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li .comment_container .comment-text .meta strong {
  color: #323232;
  font-size: 17px;
  font-family: Poppins;
  text-transform: uppercase;
}
.single-product .jw-product-item .jw-content .description {
  color: #666666;
  line-height: 30px;
  letter-spacing: 0.6px;
  margin-top: 41px;
  margin-bottom: 62px;
}
.single-product .jw-product-item .jw-content .jw-related > h6 {
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #f48223;
  margin-bottom: 9px;
}
.single-product .jw-product-item .jw-content .jw-related > h4 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #333333;
  text-transform: uppercase;
  margin-bottom: 21px;
  padding-bottom: 15px;
}
@media (max-width: 992px - 1) {
  .single-product .jw-product-item .jw-header .jw-header-inner .thumbnails {
    margin-top: 30px;
  }
}
@media (max-width: 640px - 1) {
  .single-product .jw-product-item .jw-header .jw-header-inner {
    padding: 20px 10px;
  }
  .single-product .jw-product-item .jw-header .jw-header-inner .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button,
  .single-product .jw-product-item .jw-header .jw-header-inner .cart .single_add_to_cart_button {
    position: relative;
    top: 0;
    right: 0;
    float: none;
    padding: 5px 15px;
  }
}
@media (max-width: 480px - 1) {
  .single-product .jw-product-item .jw-header .jw-header-inner .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart > span,
  .single-product .jw-product-item .jw-header .jw-header-inner .cart > span {
    display: none;
  }
  .single-product .jw-product-item .jw-header .jw-header-inner .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart .quantity,
  .single-product .jw-product-item .jw-header .jw-header-inner .cart .quantity {
    margin-left: 0;
  }
  .single-product .jw-product-item .jw-content .woocommerce-tabs ul.tabs > li > a {
    margin: 5px 0;
  }
}
.woocommerce-cart .main-content .woocommerce {
  overflow: hidden;
}
.woocommerce-cart .main-content .woocommerce table.shop_table {
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.16px;
  color: #444444;
  margin-bottom: 60px;
  border: none;
  border-collapse: collapse;
}
.woocommerce-cart .main-content .woocommerce table.shop_table th,
.woocommerce-cart .main-content .woocommerce table.shop_table td {
  font-weight: 400;
  border: none;
  text-transform: uppercase;
}
.woocommerce-cart .main-content .woocommerce table.shop_table thead tr {
  background: #222222;
  overflow: hidden;
}
.woocommerce-cart .main-content .woocommerce table.shop_table thead tr th {
  color: #ffffff;
  letter-spacing: 0px;
  padding: 20px 15px 16px 0px;
  font-weight: 500;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce table.shop_table thead tr th:first-child {
  padding-left: 72px;
}
.woocommerce-cart .main-content .woocommerce table.shop_table thead tr th.product-item {
  text-align: left;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr {
  background: #fafafa;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td {
  font-size: 13px;
  padding: 30px 0;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td:first-child {
  padding-left: 72px;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-item {
  text-align: left;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-item img {
  width: 100px;
  height: auto;
  margin-right: 30px;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-item a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.48px;
  color: #444444;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-item a:hover {
  color: #f48223;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-item .cart-sku {
  color: #808080;
  font-size: 12px;
  font-family: Poppins;
  display: block;
  text-transform: none;
  margin-bottom: -5px;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-price,
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-subtotal {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.48px;
  color: #f48223;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-quantity .quantity input {
  transition: all 0.4s;
  font-size: 13px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.48px;
  width: 70px;
  padding: 5px;
  color: #444444;
  background: #ffffff;
  border: 1px solid #ffffff;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-quantity .quantity input:hover,
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-quantity .quantity input:focus {
  border-color: #f48223;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-remove a.remove {
  display: inline-block;
  color: #333333 !important;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-remove a.remove:hover {
  color: #f48223 !important;
  background: transparent;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.actions .coupon input.input-text {
  padding: 12px;
  margin-right: 10px;
  min-width: 200px;
  border: 1px solid #ececec;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.actions .coupon input.input-text:hover,
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.actions .coupon input.input-text:focus {
  border-color: #f48223;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.actions .coupon input.button {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  background: #111111;
  padding: 13px 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.actions .coupon input.button:hover {
  background: #f48223;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.actions > .button {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 12px 30px;
  float: right;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.actions > .button:hover {
  background: #111111;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals {
  width: 100% !important;
  float: none;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .coupon {
  text-align: center;
  background-color: #fbfbfb;
  padding-top: 74px;
  padding-bottom: 70px;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .coupon ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #777777;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .coupon ::-moz-placeholder {
  /* Firefox 19+ */
  color: #777777;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .coupon :-ms-input-placeholder {
  /* IE 10+ */
  color: #777777;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .coupon :-moz-placeholder {
  /* Firefox 18- */
  color: #777777;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .coupon label {
  font-size: 20px;
  color: #333333;
  font-family: Poppins;
  text-transform: uppercase;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .coupon .sub-text-cou {
  font-size: 13px;
  color: #666666;
  display: block;
  margin-top: -2px;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .coupon .input-text {
  height: 54px;
  width: 330px;
  line-height: 54px;
  background-color: #f0f0f0;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  font-size: 12px;
  text-align: center;
  border-color: #f0f0f0;
  display: block;
  margin: 0 auto;
  margin-top: 29px;
  margin-bottom: 14px;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .coupon .button {
  height: 52px;
  width: 205px;
  line-height: 52px;
  background-color: #f48223;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  text-transform: uppercase;
  border: 1px solid #f48223;
  font-size: 12px;
  font-family: Poppins;
  padding: 0;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .coupon .button:hover {
  background-color: #ffffff;
  color: #f48223;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap {
  text-align: center;
  background-color: #fbfbfb;
  padding-top: 56px;
  padding-bottom: 60px;
  margin-top: 30px;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap > h4 {
  font-size: 20px;
  color: #333333;
  font-family: Poppins;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap > p {
  font-size: 13px;
  color: #666666;
  display: block;
  margin-top: -2px;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #777777;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator ::-moz-placeholder {
  /* Firefox 19+ */
  color: #777777;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator :-ms-input-placeholder {
  /* IE 10+ */
  color: #777777;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator :-moz-placeholder {
  /* Firefox 18- */
  color: #777777;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p {
  width: 100%;
  padding: 0;
  margin-bottom: 10px;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p#calc_shipping_country_field,
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p#calc_shipping_postcode_field {
  margin-right: 1%;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p input,
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p select {
  height: 54px;
  line-height: 54px;
  background-color: #f0f0f0;
  border-radius: 1px;
  width: 330px;
  -webkit-border-radius: 1px;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  border-color: #f0f0f0;
  display: block;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 14px;
  color: #777777;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p button {
  height: 52px;
  width: 205px;
  line-height: 52px;
  background-color: #f48223;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  text-transform: uppercase;
  border: 1px solid #f48223;
  font-size: 12px;
  font-family: Poppins;
  padding: 0;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p button:hover {
  background: #ffffff;
  color: #f48223;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .toltal-inner {
  border: 9px solid #fcfcfc;
  padding: 31px 15px 18px 21px;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .total-wrap {
  padding: 15px 30px;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .total-wrap table {
  margin-bottom: 0px;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .total-wrap table th,
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .total-wrap table tr,
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .total-wrap table td {
  font-weight: 700;
  letter-spacing: 0.48px;
  border: none;
  padding: 0 0 15px;
  white-space: nowrap;
  font-size: 20px;
  font-family: Poppins;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .total-wrap table tr {
  background: none;
  padding: 0 0 13px;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .total-wrap table th {
  color: #333333;
  text-align: right;
}
.woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .total-wrap table td {
  text-align: center;
  color: #f48223;
}
.woocommerce-cart .main-content .woocommerce .wc-proceed-to-checkout {
  text-align: center;
}
.woocommerce-cart .main-content .woocommerce .wc-proceed-to-checkout .checkout-button {
  font-family: Montserrat;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  display: inline-block;
  color: #ffffff;
  background: #f48223;
  padding: 18px 30px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  border: 1px solid #f48223;
}
.woocommerce-cart .main-content .woocommerce .wc-proceed-to-checkout .checkout-button:hover {
  background: #ffffff;
  color: #f48223;
}
.woocommerce-cart .main-content .woocommerce .cart-empty {
  margin-bottom: 30px;
}
.woocommerce-cart .main-content .woocommerce .return-to-shop > a {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 18px 30px;
  border: 2px solid #f48223;
}
.woocommerce-cart .main-content .woocommerce .return-to-shop > a:hover {
  color: #f48223;
  background: transparent;
}
@media (max-width: 1200px - 1) {
  .woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-item img {
    width: 60px;
    margin-right: 15px;
  }
}
@media (max-width: 992px - 1) {
  .woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td {
    padding: 15px 0;
  }
  .woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.actions > .button {
    float: none;
  }
  .woocommerce table.shop_table_responsive tr:nth-child(2n) td,
  .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background: none;
  }
}
@media (max-width: 640px - 1) {
  .woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.actions .coupon input.input-text {
    min-width: 190px;
  }
  .woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p {
    width: 100%;
  }
  .woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p#calc_shipping_country_field {
    margin-right: 0;
  }
  .woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p button {
    width: 100%;
  }
}
@media (max-width: 480px - 1) {
  .woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-item a {
    display: inline-block;
  }
  .woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td.product-item a img {
    margin: 0 0 10px;
  }
  .woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap,
  .woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .total-wrap {
    padding: 20px;
  }
}
.woocommerce-checkout .woocommerce .woocommerce-info {
  background: transparent;
  margin: 0 !important;
  padding: 0 !important;
  border: none;
}
.woocommerce-checkout .woocommerce .woocommerce-info:before,
.woocommerce-checkout .woocommerce .woocommerce-info:after {
  content: "";
}
.woocommerce-checkout .woocommerce .woocommerce-info h6.ro-checkout-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.48px;
  position: relative;
  margin-bottom: 30px;
}
.woocommerce-checkout .woocommerce .woocommerce-info h6.ro-checkout-title > a {
  transition: all 0.4s;
  display: block;
  color: #303030;
  background: #ffffff;
  padding: 20px 30px;
  border: 1px solid #ececec;
}
.woocommerce-checkout .woocommerce .woocommerce-info h6.ro-checkout-title > a:before {
  content: "\f0a1";
  font-family: FontAwesome;
  display: inline-block;
  font-size: 24px;
  margin-right: 15px;
  vertical-align: middle;
}
.woocommerce-checkout .woocommerce .woocommerce-info h6.ro-checkout-title > a:after {
  transition: all 0.4s;
  content: "\f107";
  font-family: FontAwesome;
  font-size: 16px;
  position: absolute;
  top: 22px;
  right: 20px;
}
.woocommerce-checkout .woocommerce .woocommerce-info h6.ro-checkout-title.ro-coupon > a:before {
  content: "\f145";
}
.woocommerce-checkout .woocommerce .woocommerce-info.ro-active h6.ro-checkout-title {
  margin-bottom: 0;
}
.woocommerce-checkout .woocommerce .woocommerce-info.ro-active h6.ro-checkout-title > a {
  color: #ffffff;
  background: #111111;
  border: 1px solid #111111;
}
.woocommerce-checkout .woocommerce .woocommerce-info.ro-active h6.ro-checkout-title > a:after {
  content: "\f106";
}
.woocommerce-checkout .woocommerce .login,
.woocommerce-checkout .woocommerce .checkout_coupon {
  font-family: Montserrat;
  margin: 0 0 30px;
  padding: 40px 30px 10px;
  border: 1px solid #ececec;
  border-radius: 0;
}
.woocommerce-checkout .woocommerce .login p,
.woocommerce-checkout .woocommerce .checkout_coupon p {
  margin: 0;
  padding: 0;
}
.woocommerce-checkout .woocommerce .login p label,
.woocommerce-checkout .woocommerce .checkout_coupon p label {
  color: #111111;
}
.woocommerce-checkout .woocommerce .login p input,
.woocommerce-checkout .woocommerce .checkout_coupon p input,
.woocommerce-checkout .woocommerce .login p select,
.woocommerce-checkout .woocommerce .checkout_coupon p select {
  margin-bottom: 30px;
  padding: 14px 20px;
  min-height: 40px;
  border: 1px solid #ececec;
}
.woocommerce-checkout .woocommerce .login p input:hover,
.woocommerce-checkout .woocommerce .checkout_coupon p input:hover,
.woocommerce-checkout .woocommerce .login p select:hover,
.woocommerce-checkout .woocommerce .checkout_coupon p select:hover,
.woocommerce-checkout .woocommerce .login p input:focus,
.woocommerce-checkout .woocommerce .checkout_coupon p input:focus,
.woocommerce-checkout .woocommerce .login p select:focus,
.woocommerce-checkout .woocommerce .checkout_coupon p select:focus {
  border-color: #f48223;
}
.woocommerce-checkout .woocommerce .login p input.button,
.woocommerce-checkout .woocommerce .checkout_coupon p input.button,
.woocommerce-checkout .woocommerce .login p select.button,
.woocommerce-checkout .woocommerce .checkout_coupon p select.button {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-checkout .woocommerce .login p input.button[name="login"],
.woocommerce-checkout .woocommerce .checkout_coupon p input.button[name="login"],
.woocommerce-checkout .woocommerce .login p select.button[name="login"],
.woocommerce-checkout .woocommerce .checkout_coupon p select.button[name="login"] {
  margin-right: 30px;
}
.woocommerce-checkout .woocommerce .login p input#rememberme,
.woocommerce-checkout .woocommerce .checkout_coupon p input#rememberme,
.woocommerce-checkout .woocommerce .login p select#rememberme,
.woocommerce-checkout .woocommerce .checkout_coupon p select#rememberme {
  min-height: 10px;
}
.woocommerce-checkout .woocommerce .login p.lost_password a,
.woocommerce-checkout .woocommerce .checkout_coupon p.lost_password a {
  color: #111111;
  margin-bottom: 30px;
}
.woocommerce-checkout .woocommerce .login p.lost_password a:hover,
.woocommerce-checkout .woocommerce .checkout_coupon p.lost_password a:hover {
  color: #f48223;
}
.woocommerce-checkout .woocommerce .login p:first-child {
  font-style: italic;
  margin-bottom: 30px;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout .ro-checkout-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-align: center;
  color: #ffffff;
  background: #303030;
  margin-bottom: 30px;
  padding: 20px 30px;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details {
  font-family: Montserrat;
  margin-bottom: 40px;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p {
  margin: 0;
  padding: 0;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p label {
  font-size: 14px;
  font-weight: 400;
  color: #303030;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p input,
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p select,
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p .select2-selection {
  margin-bottom: 30px;
  padding: 14px 20px;
  min-height: 40px;
  border: 1px solid #ececec;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p input .select2-selection__rendered,
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p select .select2-selection__rendered,
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p .select2-selection .select2-selection__rendered {
  line-height: 12px;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p input .select2-selection__arrow,
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p select .select2-selection__arrow,
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p .select2-selection .select2-selection__arrow {
  height: 40px;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p input:hover,
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p select:hover,
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p .select2-selection:hover,
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p input:focus,
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p select:focus,
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p .select2-selection:focus {
  border-color: #f48223;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p a.select2-choice {
  margin-bottom: 30px;
  padding: 2px 20px;
  min-height: 40px;
  border-radius: 0;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout #customer_details p textarea {
  margin-bottom: 30px;
  padding: 14px 20px;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order p {
  margin-bottom: 0px !important;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table {
  font-family: Montserrat;
  font-weight: 400;
  color: #303030;
  margin-bottom: 60px;
  border: none;
  border-collapse: collapse;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table th,
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table td {
  font-weight: 700;
  padding: 0;
  border: none;
  text-transform: uppercase;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table thead {
  position: relative;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table thead:after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 100%;
  border-bottom: 1px solid #ececec;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table thead tr {
  border-bottom: 1px solid #ececec;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table thead tr th {
  font-size: 14px;
  letter-spacing: 0.48px;
  text-align: center;
  padding: 10px 0;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table thead tr th.product-item {
  text-align: left;
  padding-left: 60px;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr {
  border-bottom: 1px solid #ececec;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td {
  font-size: 13px;
  padding: 20px 0;
  text-align: center;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.product-item {
  text-align: left;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.product-item img {
  width: 60px;
  height: auto;
  margin-right: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.product-item a {
  color: #111111;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.product-item a:hover {
  color: #f48223;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.product-quantity .quantity input {
  transition: all 0.4s;
  line-height: 26.4px;
  width: 60px;
  padding: 5px;
  border: 1px solid #ececec;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.product-quantity .quantity input:hover,
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.product-quantity .quantity input:focus {
  border-color: #f48223;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.actions .coupon input.input-text {
  padding: 12px;
  margin-right: 10px;
  min-width: 200px;
  border: 1px solid #ececec;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.actions .coupon input.input-text:hover,
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.actions .coupon input.input-text:focus {
  border-color: #f48223;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.actions .coupon input.button {
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  background: #111111;
  padding: 12px 40px;
  border-radius: 0;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.actions .coupon input.button:hover {
  background: #f48223;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.actions > .button {
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  padding: 12px 40px;
  border-radius: 0;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.actions > .button:hover {
  background: #111111;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr {
  border-bottom: 1px solid #ececec;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr th,
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr td {
  padding: 20px 0;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr.order-total th {
  color: #f48223;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr.order-total td {
  color: #111111;
  font-size: 18px;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-payment {
  background: #ffffff !important;
  border-radius: 0 !important;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-payment > ul li {
  padding: 0 20px 20px;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-payment > ul li label {
  font-family: Montserrat;
  color: #111111;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-payment .place-order {
  text-align: center;
  padding: 60px 0 80px !important;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-payment .place-order .button {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  float: none !important;
  color: #ffffff;
  background: #f48223;
  padding: 15px 70px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-payment .place-order .button:hover {
  background: #111111;
}
@media (max-width: 640px - 1) {
  .woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table thead tr th.product-item {
    padding-left: 0;
  }
  .woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tbody tr td.product-item img {
    display: none;
  }
  .woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr {
    position: relative;
  }
  .woocommerce-checkout .woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr th {
    display: inline-block;
    min-width: 120px;
  }
}
@media (max-width: 480px - 1) {
  .woocommerce-checkout .woocommerce form.checkout_coupon .form-row-first,
  .woocommerce-checkout .woocommerce form.checkout_coupon .form-row-last {
    width: 100%;
  }
  .woocommerce-checkout .woocommerce form.checkout_coupon .form-row-first .button,
  .woocommerce-checkout .woocommerce form.checkout_coupon .form-row-last .button {
    width: 100%;
  }
}
.woocommerce-account .woocommerce .myaccount_user {
  font-weight: 400;
  letter-spacing: 0.48px;
  line-height: 28px;
  text-align: center;
  color: #555555;
  margin-bottom: 30px;
}
.woocommerce-account .woocommerce .myaccount_user a {
  display: inline-block;
  font-weight: 700;
  color: #303030;
}
.woocommerce-account .woocommerce .myaccount_user a:hover {
  color: #f48223;
}
.woocommerce-account .woocommerce > h2 {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0.48px;
  text-align: center;
  text-transform: uppercase;
  color: #303030;
  margin-bottom: 35px;
  padding-bottom: 25px;
}
.woocommerce-account .woocommerce > h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 85px;
  height: 15px;
  background: url(https://mshikamano.co.ug/wp-content/themes/pain/assets/images/title_line.png) no-repeat top left;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.woocommerce-account .woocommerce .myaccount_address {
  text-align: center;
  margin-bottom: 90px;
}
.woocommerce-account .woocommerce .addresses .title > h3 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #303030;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.woocommerce-account .woocommerce .addresses .title > h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #f48223;
}
.woocommerce-account .woocommerce .addresses .title > a {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #303030;
}
.woocommerce-account .woocommerce .addresses .title > a:after {
  content: "\f040";
  display: inline-block;
  font-family: FontAwesome;
  margin-left: 5px;
}
.woocommerce-account .woocommerce .addresses .title > a:hover {
  color: #f48223;
}
.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.lost_reset_password {
  max-width: 450px;
  margin: 60px auto 0;
  padding: 30px 50px;
  border: 15px solid #fcfcfc;
}
.woocommerce-account .woocommerce form.login .woocommerce-form-login__rememberme,
.woocommerce-account .woocommerce form.lost_reset_password .woocommerce-form-login__rememberme {
  margin-top: 12px;
}
.woocommerce-account .woocommerce form.login .lost_password,
.woocommerce-account .woocommerce form.lost_reset_password .lost_password {
  margin-top: 10px;
}
.woocommerce-account .woocommerce form.login > p,
.woocommerce-account .woocommerce form.lost_reset_password > p,
.woocommerce-account .woocommerce form.login .password-input,
.woocommerce-account .woocommerce form.lost_reset_password .password-input {
  margin: 0;
  padding: 0;
}
.woocommerce-account .woocommerce form.login > p > label,
.woocommerce-account .woocommerce form.lost_reset_password > p > label,
.woocommerce-account .woocommerce form.login .password-input > label,
.woocommerce-account .woocommerce form.lost_reset_password .password-input > label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color: #555555;
}
.woocommerce-account .woocommerce form.login > p > input,
.woocommerce-account .woocommerce form.lost_reset_password > p > input,
.woocommerce-account .woocommerce form.login .password-input > input,
.woocommerce-account .woocommerce form.lost_reset_password .password-input > input {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.48px;
  line-height: 28px;
  color: #303030;
  margin-bottom: 30px;
  padding: 8px 20px;
  border: 1px solid #ececec;
  border-radius: 3px;
}
.woocommerce-account .woocommerce form.login > p > input:focus,
.woocommerce-account .woocommerce form.lost_reset_password > p > input:focus,
.woocommerce-account .woocommerce form.login .password-input > input:focus,
.woocommerce-account .woocommerce form.lost_reset_password .password-input > input:focus {
  border-color: #f48223;
}
.woocommerce-account .woocommerce form.login > p .button,
.woocommerce-account .woocommerce form.lost_reset_password > p .button,
.woocommerce-account .woocommerce form.login .password-input .button,
.woocommerce-account .woocommerce form.lost_reset_password .password-input .button {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  margin-right: 30px;
  border: 2px solid #f48223;
}
.woocommerce-account .woocommerce form.login > p .button:hover,
.woocommerce-account .woocommerce form.lost_reset_password > p .button:hover,
.woocommerce-account .woocommerce form.login .password-input .button:hover,
.woocommerce-account .woocommerce form.lost_reset_password .password-input .button:hover {
  color: #f48223;
  background: transparent;
}
.woocommerce-account .woocommerce form.login > p.lost_password a,
.woocommerce-account .woocommerce form.lost_reset_password > p.lost_password a,
.woocommerce-account .woocommerce form.login .password-input.lost_password a,
.woocommerce-account .woocommerce form.lost_reset_password .password-input.lost_password a {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #333333;
}
.woocommerce-account .woocommerce form.login > p.lost_password a:hover,
.woocommerce-account .woocommerce form.lost_reset_password > p.lost_password a:hover,
.woocommerce-account .woocommerce form.login .password-input.lost_password a:hover,
.woocommerce-account .woocommerce form.lost_reset_password .password-input.lost_password a:hover {
  color: #f48223;
}
.woocommerce-account .woocommerce form.lost_reset_password {
  margin-top: 0;
}
.woocommerce-account .woocommerce form.lost_reset_password > p.form-row-first {
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 480px - 1) {
  .woocommerce-account .woocommerce form.login,
  .woocommerce-account .woocommerce form.lost_reset_password {
    padding: 20px;
  }
  .woocommerce-account .woocommerce form.login > p > input.button,
  .woocommerce-account .woocommerce form.lost_reset_password > p > input.button {
    width: 100%;
  }
}
.jw-header-v1 .jw_widget_mini_cart > a.jw-icon {
  color: #111111;
}
.jw-header-v1 .jw_widget_mini_cart > a.jw-icon:hover {
  color: #f48223;
}
.jw-header-v1 .jw_widget_mini_cart > a.jw-icon:hover span.cart_total {
  color: #ffffff;
  background: #111111;
}
.woocommerce .woocommerce-message {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.48px;
  color: #555555;
  border-color: #f48223;
}
.woocommerce .woocommerce-message > a {
  font-family: Montserrat;
  font-weight: 700;
  color: #303030;
}
.woocommerce .woocommerce-message > a:hover {
  color: #f48223;
}
.woocommerce .woocommerce-message:before {
  color: #f48223;
}
@media (max-width: 1200px - 1) {
  .woocommerce #content div.product div.images .flex-control-thumbs,
  .woocommerce div.product div.images .flex-control-thumbs,
  .woocommerce-page #content div.product div.images .flex-control-thumbs,
  .woocommerce-page div.product div.images .flex-control-thumbs {
    position: initial !important;
    margin-top: 8px;
  }
  .woocommerce div.product div.images {
    margin-bottom: 0px;
  }
  .single-product .ro-reviews-content #review_form_wrapper .comment-form {
    width: 37%;
  }
  .single-product .ro-reviews-content #review_form_wrapper .comment-form > p.comment-form-comment {
    width: 58%;
  }
}
@media (max-width: 992px - 1) {
  .single-product .ro-reviews-content #review_form_wrapper .comment-form {
    width: 48%;
  }
  .single-product .ro-reviews-content #review_form_wrapper .comment-form > p.comment-form-comment {
    width: 47%;
  }
}
@media (max-width: 768px - 1) {
  .woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td:first-child {
    padding-left: 0px;
  }
  .woocommerce-cart .main-content .woocommerce table.shop_table tbody tr td:first-child img {
    margin-right: 0px;
  }
  .woocommerce-cart .main-content .woocommerce table.shop_table tbody tr {
    border: 1px solid #8c8c8c;
    margin-bottom: 15px;
    padding: 15px;
  }
  .woocommerce #reviews #comments ol.commentlist li img.avatar {
    float: none;
    margin-bottom: 15px;
  }
  .single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li .comment_container .comment-text {
    margin: 0px !important;
  }
  .single-product .jw-product-item .jw-content .woocommerce-Reviews #comments ol.commentlist li .comment_container {
    padding: 15px;
  }
  .single-product .jw-product-item .jw-header .jw-header-inner .price {
    top: 0;
  }
  .single-product .ro-reviews-content #review_form_wrapper .comment-form {
    width: 100%;
  }
  .single-product .ro-reviews-content #review_form_wrapper .comment-form > p.comment-form-comment {
    width: 100%;
    position: relative;
  }
  .single-product .ro-reviews-content #review_form_wrapper .comment-form > p.form-submit {
    position: relative;
    left: 0;
  }
}
@media (max-width: 480px - 1) {
  .woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p input,
  .woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .shipping-wrap .woocommerce-shipping-calculator > p select,
  .woocommerce-cart .main-content .woocommerce .cart-collaterals .cart_totals .coupon .input-text {
    width: 100%;
  }
  .single-product .jw-product-item .jw-header .jw-header-inner .shop-bottom .cart .single_add_to_cart_button {
    position: relative;
  }
  .woocommerce div.product div.images .flex-control-thumbs li {
    width: 23% !important;
  }
  .woocommerce-cart .woocommerce table.shop_table tbody tr td.actions .coupon input.input-text,
  .woocommerce-cart .woocommerce table.shop_table tbody tr td.actions .coupon input.button {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
  .woocommerce-cart .woocommerce table.shop_table tbody tr td.actions > .button {
    width: 100%;
    margin-bottom: 30px;
  }
  .jw-header-v1 .jw_widget_mini_cart .jw-cart-content,
  .jw-header-v2 .jw_widget_mini_cart .jw-cart-content {
    padding: 40px 20px;
  }
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header {
  margin-bottom: 50px;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .image-meta {
  position: relative;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .image-meta img {
  border-radius: 2px;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .image-meta .onsale {
  height: 60px;
  left: 10px;
  line-height: 56px;
  position: absolute;
  text-align: center;
  top: 10px;
  width: 60px;
  background: #f48223;
  color: #ffffff;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .image-meta .thumbnails {
  margin-top: 15px;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-title .product_title {
  margin-bottom: 6px;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-rating .star-rating span::before {
  color: #f48223;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-excerpt p {
  color: #666;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-price .price {
  color: #000000;
  font-family: montserrat;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-price .price del {
  margin-right: 10px;
  font-size: 18px;
  opacity: .6;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-price .price del .amount {
  font-weight: bold;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-price .price ins {
  border-bottom: none;
  text-decoration: none;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-price .price ins .amount {
  border-bottom: none;
  text-decoration: none;
  font-size: 28px;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart .single_add_to_cart_button {
  display: inline-block;
  padding: 3px 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  font-size: 11px;
  color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  padding: 13px 20px;
  background: #f48223;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart .single_add_to_cart_button:hover {
  background: #f48223;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart .single_add_to_cart_button:hover {
  background: #f48223;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart .stock {
  color: #f48223;
  font-weight: bold;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart form.cart > span {
  display: none;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart form.cart .variations tr td {
  vertical-align: initial;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart form.cart .variations tr td.label > label {
  color: #333;
  font-size: 15px;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart form.cart .variations tr td.value {
  line-height: normal;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart form.cart .variations tr td.value > select {
  margin-bottom: 10px;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart form.cart .single_variation_wrap .woocommerce-variation-price .price {
  color: #000000;
  font-family: montserrat;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart form.cart .single_variation_wrap .woocommerce-variation-price .price del {
  margin-right: 10px;
  font-size: 18px;
  opacity: .6;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart form.cart .single_variation_wrap .woocommerce-variation-price .price del .amount {
  font-weight: bold;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart form.cart .single_variation_wrap .woocommerce-variation-price .price ins {
  border-bottom: none;
  text-decoration: none;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart form.cart .single_variation_wrap .woocommerce-variation-price .price ins .amount {
  border-bottom: none;
  text-decoration: none;
  font-size: 28px;
}
.bears-shop-single-wrap.temp-shop2 .bears-shop-header .extra-meta .item-meta.block-cart form.cart .single_variation_wrap .woocommerce-variation-add-to-cart > span {
  display: none;
}
#jw-main .sidebar-right.temp-shop2 .widget:not(:last-child) {
  margin-bottom: 30px;
}
#jw-main .sidebar-right.temp-shop2 .widget > ul > li > a {
  text-transform: uppercase;
  font-weight: bold;
}
#jw-main .sidebar-right.temp-shop2 .widget > ul > li ul {
  padding: 0 0 0 30px;
}
#jw-main .sidebar-right.temp-shop2 .widget .wg-title {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  position: relative;
}
#jw-main .sidebar-right.temp-shop2 .widget .wg-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: 2px;
  background: #f48223;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_product_search .woocommerce-product-search {
  position: relative;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_product_search .woocommerce-product-search:after {
  content: "\f002";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #999;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_product_search .screen-reader-text {
  display: none;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_product_search input[type="submit"] {
  display: none;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_product_search .search-field {
  margin-bottom: 0;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_products .amount {
  font-family: montserrat;
  font-size: 13px;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_products ins {
  border: none;
  text-decoration: none;
  font-weight: bold;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_products del {
  margin-right: 6px;
  opacity: .5;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_products > ul > li {
  line-height: 26px;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_products > ul > li > *:nth-child(2) {
  margin-left: 24px;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_recent_reviews .star-rating {
  font-size: 11px;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_recent_reviews .star-rating span::before {
  color: #f48223;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_recent_reviews .reviewer {
  font-size: 13px;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_recent_reviews > ul > li {
  line-height: 26px;
}
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_recent_reviews > ul > li > *:nth-child(2),
#jw-main .sidebar-right.temp-shop2 .widget.woocommerce.widget_recent_reviews > ul > li > *:nth-child(3) {
  margin-left: 21px;
}
.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
  float: NONE;
  width: AUTO;
}
.woocommerce #content div.product div.images .flex-control-thumbs,
.woocommerce div.product div.images .flex-control-thumbs,
.woocommerce-page #content div.product div.images .flex-control-thumbs,
.woocommerce-page div.product div.images .flex-control-thumbs {
  width: auto;
  float: none;
  position: absolute;
  text-align: right;
  bottom: -80px;
  z-index: 99;
  right: 103px;
}
.woocommerce #content div.product div.images .flex-control-thumbs li,
.woocommerce div.product div.images .flex-control-thumbs li,
.woocommerce-page #content div.product div.images .flex-control-thumbs li,
.woocommerce-page div.product div.images .flex-control-thumbs li {
  width: auto;
  float: none;
  margin-left: 5px;
  display: inline-block;
}
.woocommerce #content div.product div.images .flex-control-thumbs li img,
.woocommerce div.product div.images .flex-control-thumbs li img,
.woocommerce-page #content div.product div.images .flex-control-thumbs li img,
.woocommerce-page div.product div.images .flex-control-thumbs li img {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 5px;
}
.woocommerce-MyAccount-navigation ul li a {
  color: #333;
  display: block;
  padding: 10px 15px;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #ffffff;
  background: #f48223;
}
.woocommerce-MyAccount-content form .form-row input.input-text {
  height: 45px;
  border: 1px solid #ECECEC;
  padding: 0 15px;
}
.woocommerce-MyAccount-content fieldset {
  margin-top: 40px;
}
.woocommerce-MyAccount-content fieldset legend {
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce-MyAccount-content button.button {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-transform: uppercase;
  color: #ffffff;
  background: #f48223;
  margin-right: 30px;
  border: 2px solid #f48223;
  margin-top: 15px;
}
.woocommerce-MyAccount-content button.button:hover {
  color: #f48223;
  background: transparent;
}
body,
html {
  font-smoothing: antialiased !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
body .no-container {
  width: 100%;
}
body .no-container > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 749px) {
  body .no-container > .row {
    padding: 0 15px !important;
  }
}
img {
  max-width: 100%;
  height: auto;
}
.modal .modal-dialog .modal-content .popupdonation_content .paindonation_popup_form .form-group .required_star {
  color: #ff0000;
}
.jw-background-background-attachment-fixed {
  background-attachment: fixed;
}
.jw-no-padding,
.jw-vc-col-no-padding > .vc_column-inner {
  padding: 0 !important;
}
.jw-no-margin {
  margin: 0 !important;
}
.scrolloff {
  pointer-events: none;
}
.jw-text-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.same_height {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
}
.vc_row {
  position: relative;
}
.vc_row .jw-vc-row-ovelay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vc_row .vc_inner .vc_col-has-fill > .vc_column-inner {
  padding: 0 !important;
}
#jw-main {
  transition: all 0.4s;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.boxed #jw-main {
  max-width: 1200px;
  margin: auto;
  -webkit-box-shadow: 0 0 10px 0 rgba(17, 17, 17, 0.5);
  -moz-box-shadow: 0 0 10px 0 rgba(17, 17, 17, 0.5);
  box-shadow: 0 0 10px 0 rgba(17, 17, 17, 0.5);
}
.page-template-page-NoTitleBarBlack #jw-main {
  background: #111111;
  color: #bbbbbb;
}
#jw-backtop {
  border-radius: 50%;
  transition: all 0.4s;
  width: 40px;
  height: 40px;
  position: fixed;
  display: none;
  bottom: 50px;
  right: 30px;
  background-color: rgba(244, 130, 35, 0.5);
  color: #ffffff;
  z-index: 992;
  font-size: 16px;
  line-height: 38px;
  text-align: center;
  outline: none;
  cursor: pointer;
}
#jw-backtop:hover,
#jw-backtop:focus {
  color: #ffffff;
  background-color: #f48223;
  border-color: #f48223;
}
#jw-backtop.jw-show {
  display: block;
  animation: bounceInUp 0.7s both;
}
.widget_rtb_booking_form_widget .rtb-booking-form:after {
  content: "";
  display: block;
  clear: both;
}
.widget_rtb_booking_form_widget .rtb-booking-form input,
.widget_rtb_booking_form_widget .rtb-booking-form select,
.widget_rtb_booking_form_widget .rtb-booking-form textarea {
  width: 100%;
  max-width: 100%;
}
.widget_rtb_booking_form_widget .rtb-booking-form legend {
  display: none;
}
.widget_rtb_booking_form_widget .rtb-booking-form .reservation {
  margin: 0;
  padding: 0;
}
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-text,
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-select {
  display: inline-block;
  margin: 0 3% 0 0;
}
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-text:last-child,
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-select:last-child {
  margin-right: 0;
}
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-text label:after,
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-select label:after {
  content: "*";
  color: #f48223;
}
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-text.date,
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-select.date,
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-text.time,
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-select.time {
  width: 40%;
}
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-text.party,
.widget_rtb_booking_form_widget .rtb-booking-form .reservation .rtb-select.party {
  width: 13%;
}
.widget_rtb_booking_form_widget .rtb-booking-form .contact {
  margin: 0;
  padding: 0;
}
.widget_rtb_booking_form_widget .rtb-booking-form .contact .rtb-text {
  display: inline-block;
  margin: 0 3% 0 0;
  width: 31%;
}
.widget_rtb_booking_form_widget .rtb-booking-form .contact .rtb-text.name label:after,
.widget_rtb_booking_form_widget .rtb-booking-form .contact .rtb-text.email label:after {
  content: "*";
  color: #f48223;
}
.widget_rtb_booking_form_widget .rtb-booking-form .contact .rtb-text.phone {
  margin-right: 0;
}
.widget_rtb_booking_form_widget .rtb-booking-form .contact .add-message {
  margin: 0;
}
.widget_rtb_booking_form_widget .rtb-booking-form .contact .add-message > a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #111111;
}
.widget_rtb_booking_form_widget .rtb-booking-form .contact .add-message > a:hover {
  color: #f48223;
}
.widget_rtb_booking_form_widget .rtb-booking-form .contact .rtb-textarea {
  margin: 0;
}
.widget_rtb_booking_form_widget .rtb-booking-form button {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  background: #f48223;
  margin-top: 40px;
}
.widget_rtb_booking_form_widget .rtb-booking-form button:hover {
  background: #f48223;
}
.ro-dropcap {
  color: #ffffff;
  background: #111111;
  display: block;
  float: left;
  font-family: Montserrat;
  font-size: 15px;
  margin: 5px 10px 5px 0;
  padding: 20px 10px;
}
#ro-play-button:hover img {
  opacity: 0.7;
}
.wpb_single_image .vc_single_image-wrapper img {
  width: 100%;
  height: auto;
}
.wpb_single_image.vc_zoom_image {
  position: relative;
  overflow: hidden;
}
.wpb_single_image.vc_zoom_image .ro-overlay {
  transition: all 0.4s;
  background: rgba(228, 227, 227, 0.5);
  opacity: 0;
}
.wpb_single_image.vc_zoom_image .ro-overlay .ro-zoom-image {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ffffff;
}
.wpb_single_image.vc_zoom_image .ro-overlay .ro-zoom-image:hover {
  color: #f48223;
}
.wpb_single_image.vc_zoom_image .vc_single_image-wrapper img {
  transition: all 0.7s;
  width: 100%;
  height: auto;
}
.wpb_single_image.vc_zoom_image:hover .ro-overlay {
  opacity: 1;
}
.wpb_single_image.vc_zoom_image:hover .vc_single_image-wrapper img {
  -webkit-transform: rotate(8deg) scale(1.2);
  -moz-transform: rotate(8deg) scale(1.2);
  -o-transform: rotate(8deg) scale(1.2);
  -ms-transform: rotate(8deg) scale(1.2);
  transform: rotate(8deg) scale(1.2);
}
@media (max-width: 992px - 1) {
  .tribe-events-calendar td .tribe-events-viewmore a {
    font-size: 8px;
  }
  .tribe-events-viewmore {
    padding: 5px 0;
  }
}
@media (max-width: 768px - 1) {
  .ro-collections-section .vc_tta.vc_general.vc_tta-tabs .vc_tta-panels .vc_tta-panel .vc_tta-panel-body,
  .ro-collections-section .vc_tta.vc_general.vc_tta-tabs-position-right.vc_tta-tabs .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
    padding: 30px;
  }
}
@media (max-width: 480px - 1) {
  .psgal,
  .psgal * {
    width: 100% !important;
  }
  .ro-collections-section .vc_tta.vc_general.vc_tta-tabs .vc_tta-panels .vc_tta-panel .vc_tta-panel-body,
  .ro-collections-section .vc_tta.vc_general.vc_tta-tabs-position-right.vc_tta-tabs .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
    padding: 10px;
  }
}
.vc_btn3-container.vc_btn3-inline {
  display: inline-block;
  margin-right: 20px;
}
.vc_btn3-container .vc_btn3 {
  font-family: Montserrat;
}
.vc_btn3-container .vc_btn3.vc_btn3-size-lg {
  font-size: 16px;
  padding: 14px 40px;
}
.vc_btn3-container .vc_btn3.vc_btn3-size-md {
  font-size: 14px;
  padding: 12px 30px;
}
.ro-section-pie-chart .vc_pie_chart {
  font-family: Montserrat;
  color: #111111;
  margin-bottom: 10px;
}
.ro-section-pie-chart .vc_pie_chart .vc_pie_wrapper {
  margin-bottom: 30px;
}
.ro-section-pie-chart .vc_pie_chart h4 {
  font-size: 14px;
  margin-bottom: 0;
}
.ro-section-progress-bar {
  font-family: Montserrat;
  color: #111111;
}
.ro-section-progress-bar .vc_progress_bar .vc_single_bar {
  height: 20px;
  margin-bottom: 60px;
  padding: 0;
}
.ro-section-progress-bar .vc_progress_bar .vc_single_bar .vc_label {
  padding: 0;
  position: absolute;
  top: -30px;
}
.ro-accordion-style1 .vc_tta.vc_general .vc_tta-panel-title > a {
  font-size: 14px;
  letter-spacing: 1.2px;
  padding: 20px;
  color: #ffffff !important;
  background: #f48223;
}
.ro-accordion-style1 .vc_tta.vc_general .vc_tta-panel-title > a i:before,
.ro-accordion-style1 .vc_tta.vc_general .vc_tta-panel-title > a i:after {
  border-color: #ffffff !important;
}
.ro-accordion-style1 .vc_tta.vc_general .vc_tta-panel-body {
  background: transparent !important;
  border: none;
  padding: 20px 2px 10px 2px;
}
.ro-accordion-style2 .vc_tta.vc_general .vc_tta-panel-heading {
  background: transparent !important;
}
.ro-accordion-style2 .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title > a {
  font-size: 14px;
  letter-spacing: 1.2px;
  padding: 20px;
  color: #111111 !important;
}
.ro-accordion-style2 .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title > a i:before,
.ro-accordion-style2 .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title > a i:after {
  border-color: #111111 !important;
}
.ro-accordion-style2 .vc_tta.vc_general .vc_active .vc_tta-panel-heading {
  border-bottom: none;
}
.ro-accordion-style2 .vc_tta.vc_general .vc_tta-panel-body {
  background: transparent !important;
  border-top: none;
  padding-top: 0;
}
.vc_pie_chart .vc_pie_wrapper .vc_pie_chart_back {
  border: 12px solid #efeeee !important;
}
.jw-title-bar-wrap {
  background: #111111;
  margin-bottom: 120px;
  overflow: hidden;
}
.jw-title-bar-wrap .jw-title-bar {
  position: relative;
  padding: 75px 0;
  text-align: center;
}
.jw-title-bar-wrap .jw-title-bar h6 {
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.48px;
  color: #ffffff;
  margin-bottom: 54px;
  letter-spacing: 1.2px;
}
.jw-title-bar-wrap .jw-title-bar h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0.96px;
  color: #ffffff;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.jw-title-bar-wrap .jw-title-bar .jw-path {
  bottom: -4px;
  right: 0;
  font-family: Poppins;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16px;
  color: #ffffff;
}
.jw-title-bar-wrap .jw-title-bar .jw-path .jw-path-inner {
  z-index: 9;
}
.jw-title-bar-wrap .jw-title-bar .jw-path .jw-path-inner .delimiter {
  margin-right: -5px;
  background-color: #f48223;
  padding: 15px 5px;
  padding: 19px 5px 15px 5px;
}
.jw-title-bar-wrap .jw-title-bar .jw-path .jw-path-inner span {
  background-color: #f48223;
  padding: 15px 5px;
  padding: 19px 5px 15px 5px;
  margin-right: -5px;
}
.jw-title-bar-wrap .jw-title-bar .jw-path .jw-path-inner span:last-child {
  padding-right: 37px;
}
.jw-title-bar-wrap .jw-title-bar .jw-path .jw-path-inner a {
  color: #ffffff;
  margin-right: -5px;
  background-color: #f48223;
  padding: 19px 5px 15px 37px;
}
.jw-title-bar-wrap .jw-title-bar .jw-path .jw-path-inner a:hover {
  color: #000000;
}
@media (max-width: 768px - 1) {
  .jw-title-bar-wrap .jw-title-bar h2 {
    font-size: 24px;
  }
  .jw-title-bar {
    padding-top: 75px !important;
  }
}
.jw-error404-wrap {
  padding: 300px 0 339px;
  margin-bottom: -55px;
  text-align: center;
}
.jw-error404-wrap h1 {
  font-size: 200px;
  color: #f48223;
  margin-bottom: 100px;
}
.jw-error404-wrap h1 ins {
  color: #ffffff;
  text-decoration: none;
}
.jw-error404-wrap h4 {
  color: #ffffff;
}
.jw-error404-wrap h4 ins {
  color: #f48223;
  text-decoration: none;
}
.jw-error404-wrap h6 {
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 37px;
}
.jw-error404-wrap a {
  color: #ffffff;
  background: #f48223;
  font-size: 12px;
  text-transform: uppercase;
  padding: 15px 30px;
  font-weight: 600;
}
.jw-error404-wrap a:hover {
  background: #ffffff;
}
.jw-error404-wrap .widget_search form {
  margin-top: 10px;
}
.jw-error404-wrap .widget_search form .screen-reader-text {
  display: none;
}
.jw-error404-wrap .widget_search form .search-submit {
  height: 60px;
  border-radius: 0;
}
.jw-error404-wrap .widget_search form label {
  display: inline-block;
  width: 80%;
}
.jw-error404-wrap .widget_search form label input {
  color: #8c8c8c;
  background: #ffffff;
  border-radius: 0;
  font-weight: 300;
  height: 60px;
}
@media (max-width: 480px - 1) {
  .page-template-404 .jw-error404-wrap .jw-404 > h1 {
    font-size: 155px;
  }
  .page-template-404 .jw-error404-wrap .jw-404 > h4 {
    padding: 10px;
  }
  .jw-title-bar-wrap .jw-title-bar .jw-path {
    font-size: 12px !important;
  }
  .jw-title-bar-wrap .jw-title-bar .jw-path .jw-path-inner span:last-child {
    padding-right: 10px !important;
  }
  .jw-title-bar-wrap .jw-title-bar .jw-path .jw-path-inner a {
    padding: 19px 5px 15px 10px !important;
  }
}
@media (max-width: 768px - 1) {
  .container > .row {
    margin: 0;
  }
}
.jw-demo-item {
  margin-bottom: 50px;
}
.jw-demo-item.new-style {
  position: relative;
}
.jw-demo-item.new-style:after {
  background: rgba(0, 0, 0, 0) url("https://mshikamano.co.ug/wp-content/images/demo-new.png") no-repeat scroll center center / 100% auto;
  content: "";
  height: 47px;
  position: absolute;
  right: 16px;
  top: -25px;
  width: 64px;
  z-index: 9;
}
.jw-demo-item.coming-soon-style .image-meta,
.jw-demo-item.coming-soon-style .frame-meta {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.jw-demo-item .item-inner .frame-meta {
  position: relative;
  height: 400px;
  transition: .3s;
  -webkit-transition: .3s;
}
.jw-demo-item .item-inner .frame-meta:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://mshikamano.co.ug/wp-content/images/frame-demo.png) no-repeat top left;
  background-size: 100% 100%;
  z-index: 3;
}
.jw-demo-item .item-inner .frame-meta .image-meta {
  width: 100%;
  height: 100%;
  margin-left: 7%;
  transform: translateY(7%);
  -webkit-transform: translateY(7%);
  width: calc(100% - 17%);
  height: calc(100% - 11%);
  box-shadow: 0 0 7px -3px #333333 inset;
  transition: 8s ease;
  -webkit-transition: 8s ease;
}
.jw-demo-item .item-inner a {
  display: block;
}
.jw-demo-item .item-inner a .title-meta {
  border-radius: 1px;
  color: #ffffff;
  display: inline-block;
  font-family: caption;
  font-size: 16px;
  font-style: italic;
  font-weight: normal;
  margin: 14px 0 0;
  min-width: 50%;
  padding: 5px 14px;
  position: relative;
  z-index: 3;
}
.jw-demo-item .item-inner a .title-meta:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #f48223;
  z-index: -1;
  transition: .5s;
  -webkit-transition: .5s;
}
.jw-demo-item .item-inner a .title-meta:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #222;
  z-index: -2;
}
.jw-demo-item .item-inner:hover .frame-meta .image-meta {
  background-position: left bottom !important;
}
.jw-demo-item .item-inner:hover .title-meta:after {
  width: 100%;
}
.jw-demo-select,
.jw-install-video {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 0 15px;
  padding: 20px 30px;
}
.jw-demo-select {
  color: #ffffff;
  background: #f48223;
}
.jw-demo-select:hover,
.jw-demo-select:focus {
  color: #f48223;
  background: #ffffff;
}
.jw-install-video {
  color: #f48223;
  background: #ffffff;
}
.jw-install-video:hover,
.jw-install-video:focus {
  color: #ffffff;
  background: #f48223;
}
.jw-purchase-now {
  margin: 0;
}
.jw-purchase-now .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
  transition: all 0.4s;
  display: inline-block;
  padding: 12px 25px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  letter-spacing: 0.04em;
  word-spacing: 2px;
  line-height: 19.2px;
  text-align: center;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: 1.2px;
  color: #ffffff;
  background: #f48223;
  padding: 15px 30px;
}
.jw-purchase-now .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover,
.jw-purchase-now .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:focus {
  color: #f48223;
  background: #ffffff;
}
.jw-list-demo > li {
  line-height: 42px;
  list-style-position: inside;
  list-style-type: square;
}
@-webkit-keyframes ajaxhandle {
  from {
    opacity: 1;
  }
  to {
    opacity: .3;
  }
}
@keyframes ajaxhandle {
  from {
    opacity: 1;
  }
  to {
    opacity: .3;
  }
}
.jw-ajax-handle {
  animation: ajaxhandle infinite 0.8s alternate-reverse;
  -webkit-animation: ajaxhandle infinite 0.8s alternate-reverse;
}
/* style slider */
.pt-main-color {
  color: #f48223;
}
/* style general */
.custom-title-style1 {
  font-family: montserrat;
  font-weight: bold;
  margin-bottom: 10px;
}
.custom-title-style2 {
  font-family: montserrat;
  font-weight: bold;
}
.custom-title-style3 {
  background: #f48223;
  border-radius: 2px;
  display: inline-block;
  font-family: montserrat;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 0 16px;
}
.row-style-30-top {
  transform: translateY(-30%);
  -webkit-transform: translateY(-30%);
}
@media (max-width: 1000px) {
  .row-style-30-top {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    margin: 90px 0 !important;
  }
}
.row-style-50-top {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .row-style-50-top {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    margin: 90px 0 !important;
  }
}
.btn-style-border-line {
  border: 2px solid #f48223;
  border-radius: 2px;
  color: #f48223;
  display: inline-block;
  padding: 5px 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.btn-style-border-line:hover {
  background: #f48223;
  color: #ffffff;
}
.btn-style-bgcolor {
  display: inline-block;
  padding: 3px 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  font-size: 11px;
  background: #f48223;
  color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.btn-style-bgcolor:hover {
  background: #f48223;
}
.jw-pagination-style {
  text-align: center;
  margin: 10px 0 30px;
}
.jw-pagination-style .page-numbers {
  display: inline-block;
  vertical-align: top;
  height: 40px;
  line-height: 20px;
  min-width: 40px;
  padding: 10px;
  text-align: center;
  border-radius: 50px;
  background: #fafafa;
  font-size: 13px;
  margin-bottom: 10px;
}
.jw-pagination-style .page-numbers:not(:last-child) {
  margin-right: 10px;
}
.jw-pagination-style .page-numbers.current {
  color: #999;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-close {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b8c6df+0,6d88b7+100;Grey+Blue+3D+%231 */
  background: #f48223 !important;
  /* Old browsers */
  background: -moz-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #f48223 0%, #f48223 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@secondary-color', endColorstr='@main-color', GradientType=1);
  /* IE6-9 */
  color: #ffffff;
  border-radius: 1px;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-close i {
  line-height: normal;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team {
  padding-left: 50%;
  position: relative;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .image-meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .info-meta {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 30px;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .info-meta .title {
  margin-bottom: 10px;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .info-meta .position {
  font-family: caption;
  font-style: italic;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .info-meta .extra-meta {
  margin-bottom: 20px;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .info-meta .extra-meta .extra-item {
  display: inline-block;
  vertical-align: top;
  color: #555;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  border-radius: 30px;
  text-align: center;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .info-meta .extra-meta .extra-item i {
  vertical-align: middle;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .info-meta .extra-meta .extra-item.e-phone i {
  margin-right: 4px;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .info-meta .extra-meta .extra-item:hover {
  color: #f48223;
}
body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .info-meta .extra-meta .extra-item:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 500px) {
  body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team {
    padding-left: 0 !important;
  }
  body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .image-meta {
    position: relative;
    height: 350px;
  }
  body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .image-meta,
  body .tbbs-modal-quickview-wrap .tbbs-modal-container .tbbs-modal-body .bears-quickview-team .info-meta {
    width: 100%;
  }
}
/* Carousel Bears Shortcodes */
.bs-carousel.temp-bears_carousel--team.layout-default .owl-item:nth-child(odd) .item {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
  /* IE6-9 */
}
.bs-carousel.temp-bears_carousel--team.layout-default .owl-item:nth-child(even) .item {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
  /* IE6-9 */
}
.bs-carousel.temp-bears_carousel--team.layout-default .item .item-inner {
  transition: .8s;
  -webkit-transition: .8s;
}
.bs-carousel.temp-bears_carousel--team.layout-default .item .item-inner .image-meta {
  position: relative;
}
.bs-carousel.temp-bears_carousel--team.layout-default .item .item-inner .image-meta .tbbs-quickview-handle {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background: rgba(244, 130, 35, 0.8);
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  visibility: hidden;
  opacity: 0;
  transition: .5s;
  -webkit-transition: .5s;
  transition-delay: .5s;
  -webkit-transition-delay: .5s;
}
.bs-carousel.temp-bears_carousel--team.layout-default .item .item-inner .image-meta .tbbs-quickview-handle i {
  line-height: normal;
}
.bs-carousel.temp-bears_carousel--team.layout-default .item .item-inner .image-meta .tbbs-quickview-handle:hover {
  background: #f48223;
}
.bs-carousel.temp-bears_carousel--team.layout-default .item .item-inner .info-meta {
  padding: 0 20px;
  display: block;
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
}
.bs-carousel.temp-bears_carousel--team.layout-default .item .item-inner .info-meta .title {
  margin-bottom: 10px;
  display: inline-block;
  padding: 10px 20px;
  background: #f48223;
  color: #ffffff;
  border-radius: 1px;
}
.bs-carousel.temp-bears_carousel--team.layout-default .item .item-inner .info-meta p.position {
  margin-bottom: 0;
  font-family: caption;
  font-style: italic;
  font-size: 18px;
}
.bs-carousel.temp-bears_carousel--team.layout-default .item:hover .item-inner {
  transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
}
.bs-carousel.temp-bears_carousel--team.layout-default .item:hover .item-inner .image-meta .tbbs-quickview-handle {
  visibility: visible;
  opacity: 1;
}
.bs-carousel.temp-bears_carousel--team .owl-controls .owl-nav {
  position: absolute;
  right: 0;
  top: -80px;
  z-index: 9;
}
.bs-carousel.temp-bears_carousel--team .owl-controls .owl-nav > div {
  font-size: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: block;
  height: 80px;
  line-height: 80px;
  text-align: center;
  text-transform: uppercase;
  width: 80px;
  position: relative;
}
.bs-carousel.temp-bears_carousel--team .owl-controls .owl-nav > div:after {
  content: "";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  font-size: 16px;
  color: #ffffff;
  z-index: 3;
}
.bs-carousel.temp-bears_carousel--team .owl-controls .owl-nav > div.owl-prev {
  background: rgba(0, 0, 0, 0.8);
}
.bs-carousel.temp-bears_carousel--team .owl-controls .owl-nav > div.owl-prev:after {
  content: "\f104";
}
.bs-carousel.temp-bears_carousel--team .owl-controls .owl-nav > div.owl-next:after {
  content: "\f105";
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .bs-carousel-container {
  padding: 40px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .bs-carousel-container .item .item-inner .name {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .bs-carousel-container .item .item-inner .date {
  border-radius: 2px;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 10px;
  padding: 7px 17px;
  background: #f48223;
  color: #ffffff;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .bs-carousel-container .item .item-inner .amount {
  font-weight: bold;
  color: #f48223;
  text-transform: uppercase;
  font-size: 14px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .bs-carousel-container .item .item-inner .avatar-meta img.avatar {
  border-radius: 2px;
  height: auto !important;
  max-width: 95px;
  width: 100% !important;
  margin: 0 auto;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .bs-carousel-container .item .item-inner .text-wrap {
  position: relative;
  padding-left: 80px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .bs-carousel-container .item .item-inner .text-wrap .icon-wrap {
  border-radius: 2px;
  left: 0;
  line-height: normal;
  padding: 13px 16px;
  position: absolute;
  top: 0;
  background: #f48223;
  color: #ffffff;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .bs-carousel-container .item .item-inner .text-wrap .note-meta {
  color: #e2e2e2;
  font-style: italic;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-nav > div {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: #f48223;
  position: relative;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-nav > div.owl-prev:after,
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-nav > div.owl-next:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  font-size: 10px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-nav > div.owl-prev {
  border-radius: 2px 0 0 2px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-nav > div.owl-prev:after {
  content: "\f104";
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-nav > div.owl-prev:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%) translateX(50%);
  -webkit-transform: translateY(-50%) translateX(50%);
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-nav > div.owl-next {
  border-radius: 0 2px 2px 0;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-nav > div.owl-next:after {
  content: "\f105";
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-nav > div:hover {
  background: #f48223;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-nav > div:hover:after {
  color: #ffffff;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-dots {
  position: absolute;
  right: 10px;
  bottom: -20px;
  line-height: 0;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #f48223;
  display: inline-block;
  vertical-align: top;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-dots .owl-dot:not(:last-child) {
  margin-right: 8px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .owl-controls .owl-dots .owl-dot.active {
  background: #f48223;
  width: 30px;
}
@media (max-width: 969px) {
  .bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .item-inner > * {
    text-align: center !important;
  }
  .bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .item-inner .text-wrap {
    margin-top: 20px;
  }
  .bs-carousel.bs-carousel-layout-bears_carousel--welfare_reviews .item-inner .text-wrap .note-meta {
    text-align: left !important;
  }
}
.bs-carousel.bs-carousel-layout-bears_carousel--gallery {
  position: relative;
}
.bs-carousel.bs-carousel-layout-bears_carousel--gallery:after {
  box-shadow: 0 0 0 20px #fafafa inset;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  transform: translateX(40px) translateY(40px);
  -webkit-transform: translateX(40px) translateY(40px);
}
.bs-carousel.bs-carousel-layout-bears_carousel--gallery .owl-controls .owl-nav {
  position: absolute;
  bottom: 1px;
  right: 1px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--gallery .owl-controls .owl-nav > div {
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  font-size: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-carousel.bs-carousel-layout-bears_carousel--gallery .owl-controls .owl-nav > div.owl-prev:after,
.bs-carousel.bs-carousel-layout-bears_carousel--gallery .owl-controls .owl-nav > div.owl-next:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  color: #000000;
  font-size: 10px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
.bs-carousel.bs-carousel-layout-bears_carousel--gallery .owl-controls .owl-nav > div.owl-prev:after {
  content: "\f104";
}
.bs-carousel.bs-carousel-layout-bears_carousel--gallery .owl-controls .owl-nav > div.owl-prev:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 10%;
  width: 1px;
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) translateX(50%);
  -webkit-transform: translateY(-50%) translateX(50%);
}
.bs-carousel.bs-carousel-layout-bears_carousel--gallery .owl-controls .owl-nav > div.owl-next:after {
  content: "\f105";
}
.bs-carousel.bs-carousel-layout-bears_carousel--gallery .owl-controls .owl-nav > div:hover {
  background: rgba(244, 130, 35, 0.8);
}
.bs-carousel.bs-carousel-layout-bears_carousel--gallery .owl-controls .owl-nav > div:hover:after {
  color: #ffffff;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default {
  box-shadow: 0 -15px 0 0 #f9f9f9;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner {
  padding: 60px 0;
  position: relative;
  box-shadow: 15px -15px 0 0 #f9f9f9, -15px -15px 0 0 #f9f9f9;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner:after,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(1, 1, 1, 0.5);
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner > *,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner > * {
  position: relative;
  z-index: 3;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .info-meta,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .info-meta {
  box-shadow: 1px 0 0 0 #999;
  padding-right: 50px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .info-meta .urgent-text,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .info-meta .urgent-text {
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  color: #f48223;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .info-meta a,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .info-meta a {
  display: inline-block;
  max-width: 100%;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .info-meta a .title,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .info-meta a .title {
  font-size: 22px;
  color: #ffffff;
  line-height: 32px;
  margin-bottom: 20px;
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .info-meta a:hover .title,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .info-meta a:hover .title {
  color: #f48223;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .info-meta .short-content,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .info-meta .short-content {
  color: #cbcbcb;
  margin-bottom: 0;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .donate-meta .goal-process,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .donate-meta .goal-process {
  margin: 14px 0 34px;
  color: #ffffff;
  font-weight: bold;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .donate-meta .goal-process .raised,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .donate-meta .goal-process .raised {
  color: #f48223;
  font-size: 22px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .donate-meta .goal-process .goal,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .donate-meta .goal-process .goal {
  color: #f48223;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .donate-meta .donate-now-btn,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .donate-meta .donate-now-btn {
  border: 2px solid #f48223;
  border-radius: 2px;
  color: #f48223;
  display: inline-block;
  padding: 5px 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .donate-meta .donate-now-btn:hover,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .donate-meta .donate-now-btn:hover {
  background: #f48223;
  color: #ffffff;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-nav,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-nav {
  position: absolute;
  right: 15px;
  top: 0;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-nav > div,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-nav > div {
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  font-size: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-nav > div.owl-prev:after,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-nav > div.owl-prev:after,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-nav > div.owl-next:after,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-nav > div.owl-next:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  font-size: 10px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-nav > div.owl-prev:after,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-nav > div.owl-prev:after {
  content: "\f104";
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-nav > div.owl-prev:before,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-nav > div.owl-prev:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) translateX(50%);
  -webkit-transform: translateY(-50%) translateX(50%);
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-nav > div.owl-next:after,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-nav > div.owl-next:after {
  content: "\f105";
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-nav > div:hover,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-nav > div:hover {
  background: #ffffff;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-nav > div:hover:after,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-nav > div:hover:after {
  color: #000000;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-dots,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-dots {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  line-height: normal;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-dots > .owl-dot,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-dots > .owl-dot {
  width: 8px;
  height: 8px;
  font-size: 0;
  line-height: 0;
  background: #f48223;
  transition: .3s;
  -webkit-transition: .3s;
  display: inline-block;
  vertical-align: top;
  border-radius: 20px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-dots > .owl-dot:not(:last-child),
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-dots > .owl-dot:not(:last-child) {
  margin-right: 8px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .owl-controls .owl-dots > .owl-dot.active,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .owl-controls .owl-dots > .owl-dot.active {
  background: #f48223;
  width: 30px;
}
@media (max-width: 969px) {
  .bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-urgent .item .item-inner .info-meta,
  .bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-default .item .item-inner .info-meta {
    text-align: center;
    padding-right: 0;
  }
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .item .item-inner .thumb-meta {
  width: 100%;
  height: 200px;
  position: relative;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .item .item-inner .thumb-meta .view-detail-meta {
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #f48223;
  color: #ffffff;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .item .item-inner .thumb-meta:hover .view-detail-meta {
  visibility: visible;
  opacity: 1;
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .item .item-inner .info-meta {
  padding-left: 67px;
  padding-top: 22px;
  position: relative;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .item .item-inner .info-meta .date-left-meta {
  position: absolute;
  left: 16px;
  top: 0;
  transform: rotate(-90deg) translateX(-68%);
  -webkit-transform: rotate(-90deg) translateX(-68%);
  background: #f48223;
  color: #ffffff;
  font-size: 11px;
  font-family: montserrat;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 2px;
  line-height: normal;
  padding: 8px 13px;
  transform-origin: left top;
  -webkit-transform-origin: left top;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .item .item-inner .info-meta a {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .item .item-inner .info-meta a .title {
  width: 100%;
  margin-bottom: 0;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .item .item-inner .info-meta a:hover .title {
  color: #f48223 !important;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .item .item-inner .info-meta .goal-process {
  font-weight: bold;
  font-size: 12px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .item .item-inner .info-meta .goal-process .raised {
  color: #f48223;
  font-size: 18px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .item .item-inner .info-meta .goal-process .goal {
  color: #f48223;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-nav {
  position: absolute;
  top: -40px;
  right: 0;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-nav > div {
  background: #f48223;
  width: 30px;
  height: 30px;
  font-size: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-nav > div.owl-prev:after,
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-nav > div.owl-next:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  font-size: 10px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-nav > div.owl-prev {
  border-radius: 2px 0 0 2px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-nav > div.owl-prev:after {
  content: "\f104";
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-nav > div.owl-prev:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) translateX(50%);
  -webkit-transform: translateY(-50%) translateX(50%);
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-nav > div.owl-next {
  border-radius: 0 2px 2px 0;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-nav > div.owl-next:after {
  content: "\f105";
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-nav > div:hover {
  background: #f48223;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-dots {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  line-height: normal;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-dots > .owl-dot {
  width: 8px;
  height: 8px;
  font-size: 0;
  line-height: 0;
  background: #f48223;
  transition: .3s;
  -webkit-transition: .3s;
  display: inline-block;
  vertical-align: top;
  border-radius: 20px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-dots > .owl-dot:not(:last-child) {
  margin-right: 8px;
}
.bs-carousel.bs-carousel-layout-bears_carousel--causes.layout-basic .owl-controls .owl-dots > .owl-dot.active {
  background: #f48223;
  width: 30px;
}
/* Block Bears Shortcode */
.bs-block.layout-bears_block--custom {
  margin-bottom: 20px;
}
.bs-block.layout-bears_block--custom .bs-block-container {
  position: relative;
}
.bs-block.layout-bears_block--custom .bs-block-container .item .image-meta {
  position: absolute;
  width: 80px;
}
.bs-block.layout-bears_block--custom .bs-block-container .item .image-meta img {
  max-width: 100%;
}
.bs-block.layout-bears_block--custom .bs-block-container .item .info-meta {
  padding-left: 100px;
}
.bs-block.layout-bears_block--custom .bs-block-container .item .info-meta .sub-title {
  color: #f48223;
  font-size: 11px;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 4px;
}
.bs-block.layout-bears_block--custom .bs-block-container .item .info-meta .title {
  font-size: 20px;
  margin-bottom: 13px;
}
.bs-block.layout-bears_block--custom .bs-block-container .item .info-meta .text {
  margin-bottom: 13px;
}
.bs-block.layout-bears_block--custom .bs-block-container .item .info-meta .link {
  font-size: 30px;
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon .icon-meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: solid 1px #f48223;
  color: #f48223;
  border-radius: 0px;
  font-size: 18px;
  z-index: 3;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon .icon-meta:after {
  content: "";
  position: absolute;
  left: 5%;
  top: 4px;
  width: 90%;
  height: 100%;
  background: #f48223;
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon .info-meta {
  padding-left: 70px;
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon .info-meta .link {
  font-size: 16px;
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon:hover .icon-meta {
  background: #f48223;
  color: #ffffff;
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon:hover .icon-meta:after {
  opacity: 1;
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon2 {
  position: relative;
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon2 .icon-meta {
  position: absolute;
  left: 0;
  top: 2px;
  line-height: normal;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon2 .icon-meta i {
  font-size: 20px;
  color: #f48223;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon2 .info-meta {
  padding-left: 0;
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon2 .info-meta .title {
  padding-left: 35px;
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon2:hover .icon-meta {
  transform: translateX(3px);
  -webkit-transform: translateX(3px);
}
.bs-block.layout-bears_block--custom .bs-block-container .item.l-icon2:hover .icon-meta i {
  color: #f48223;
}
.bs-block.layout-bears_block--custom .bs-block-container:hover .item .image-meta img {
  -webkit-animation-name: wobble;
  animation-name: wobble;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.bs-block.temp-bears_block--direct-link {
  position: relative;
}
.bs-block.temp-bears_block--direct-link.layout-default {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.bs-block.temp-bears_block--direct-link.layout-default:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.bs-block.temp-bears_block--direct-link.layout-default:before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-block.temp-bears_block--direct-link.layout-default .item {
  position: relative;
  z-index: 3;
}
.bs-block.temp-bears_block--direct-link.layout-default .item .title {
  font-size: 17px;
  line-height: normal;
  margin-bottom: 14px;
  color: #ffffff;
}
.bs-block.temp-bears_block--direct-link.layout-default .item .btn-redirect {
  display: inline-block;
  padding: 3px 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  font-size: 11px;
  background: #f48223;
  color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.bs-block.temp-bears_block--direct-link.layout-default .item .btn-redirect:hover {
  background: #f48223;
}
.bs-block.temp-bears_block--direct-link.layout-default:hover:before {
  left: 0;
}
.bs-block.temp-bears_block--direct-link.layout-title_vertical {
  position: relative;
  overflow: hidden;
}
.bs-block.temp-bears_block--direct-link.layout-title_vertical:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.bs-block.temp-bears_block--direct-link.layout-title_vertical:before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-block.temp-bears_block--direct-link.layout-title_vertical .bs-block-container .item {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  transform: rotate(-90deg) translateY(100%);
  -webkit-transform: rotate(-90deg) translateY(100%);
  transform-origin: left bottom;
  -webkit-transform-origin: left bottom;
  background: #ffffff;
  padding: 30px 30px 30px 0;
}
.bs-block.temp-bears_block--direct-link.layout-title_vertical .bs-block-container .item .sub-title {
  font-size: 11px;
  margin-bottom: 4px;
  font-weight: 400;
}
.bs-block.temp-bears_block--direct-link.layout-title_vertical .bs-block-container .item .title {
  font-size: 24px;
  margin-bottom: 0;
  line-height: normal;
}
.bs-block.temp-bears_block--direct-link.layout-title_vertical .bs-block-container .item .title span {
  color: #f48223;
}
.bs-block.temp-bears_block--direct-link.layout-title_vertical .bs-block-container .item .btn-redirect {
  display: inline-block;
  padding: 3px 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  font-size: 11px;
  background: #f48223;
  color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  position: absolute;
  bottom: 0;
  left: 20px;
  transform: translate3d(0, 50%, 0);
  -webkit-transform: translate3d(0, 50%, 0);
  border-radius: 0;
  white-space: nowrap;
}
.bs-block.temp-bears_block--direct-link.layout-title_vertical .bs-block-container .item .btn-redirect:hover {
  background: #f48223;
}
.bs-block.temp-bears_block--direct-link.layout-title_vertical:hover:before {
  left: 0;
}
/* hover shadow glass */
.effect-shadow-glass {
  position: relative;
  z-index: 3;
}
.effect-shadow-glass:after {
  content: "";
  position: absolute;
  left: 3%;
  top: 6px;
  width: 94%;
  height: 94%;
  background: #f48223;
  z-index: -1;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
}
/* button Bears Shortcode */
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-border_line {
  border: 2px solid #f48223;
  border-radius: 2px;
  color: #f48223;
  display: inline-block;
  padding: 5px 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-border_line:hover {
  background: #f48223;
  color: #ffffff;
}
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-border_line.style-border_line_shadow_effect {
  position: relative;
  z-index: 3;
}
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-border_line.style-border_line_shadow_effect:after {
  content: "";
  position: absolute;
  left: 3%;
  top: 6px;
  width: 94%;
  height: 94%;
  background: #f48223;
  z-index: -1;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
}
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-border_line.style-border_line_shadow_effect:after {
  opacity: 0;
  border-radius: 2px;
}
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-border_line.style-border_line_shadow_effect:hover:after {
  opacity: 1;
}
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-background_color {
  display: inline-block;
  padding: 3px 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  font-size: 11px;
  background: #f48223;
  color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-background_color:hover {
  background: #f48223;
}
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-background_color.style-background_color_shadow_effect {
  position: relative;
  z-index: 3;
  background: #f48223;
}
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-background_color.style-background_color_shadow_effect:after {
  content: "";
  position: absolute;
  left: 3%;
  top: 6px;
  width: 94%;
  height: 94%;
  background: #f48223;
  z-index: -1;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
}
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-background_color.style-background_color_shadow_effect:after {
  border-radius: 2px;
  opacity: .7;
  transition: .3s;
  -webkit-transition: .3s;
}
.tbbs-button-wrap.layout-bears_button--custom .tbbs-btn.style-background_color.style-background_color_shadow_effect:hover:after {
  opacity: 1;
}
/* bears-slick-carousel */
.bears-slick-carousel .s-item {
  position: relative;
  height: 300px;
}
.bears-slick-carousel .s-item .s-item-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.bears-slick-carousel .slick-dots {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  line-height: normal;
}
.bears-slick-carousel .slick-dots > li {
  display: inline-block;
  vertical-align: top;
  line-height: normal;
}
.bears-slick-carousel .slick-dots > li button {
  border: none;
  background: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: solid 2px #f48223;
  margin: 0;
  font-size: 0;
  padding: 0;
  transition: .3s;
  -webkit-transition: .3s;
}
.bears-slick-carousel .slick-dots > li:not(:last-child) {
  margin-right: 5px;
}
.bears-slick-carousel .slick-dots > li.slick-active button {
  border-color: #f48223;
  background: #f48223;
}
.bears-audio-wrap {
  width: 100%;
}
.bears-audio-wrap iframe {
  width: 100%;
  height: 300px;
}
.bears-video-wrap iframe {
  height: 300px;
}
/* blog Bears Shortcode */
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner {
  margin-bottom: 30px;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta {
  height: 300px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta .icon-posttype {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  line-height: 32px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  background: #111;
  color: #ccc;
  z-index: 5;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta .link-meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta .link-meta:after {
  content: "\f0c1";
  color: rgba(1, 1, 1, 0.05);
  font-family: FontAwesome;
  font-size: 100px;
  font-style: normal;
  font-weight: normal;
  left: 20px;
  line-height: normal;
  position: absolute;
  text-decoration: inherit;
  top: 20px;
  z-index: -1;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta .link-meta a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  text-align: center;
  width: 90%;
  font-size: 28px;
  line-height: 40px;
  font-family: caption;
  font-style: italic;
  color: #f48223;
  text-decoration: underline;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta .link-meta a:hover {
  color: #f48223;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta .bears-audio-wrap {
  opacity: .8;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta .quote-meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta .quote-meta:after {
  content: "\f10d";
  color: rgba(1, 1, 1, 0.05);
  font-family: FontAwesome;
  font-size: 100px;
  font-style: normal;
  font-weight: normal;
  left: 20px;
  line-height: normal;
  position: absolute;
  text-decoration: inherit;
  top: 20px;
  z-index: -1;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta .quote-meta blockquote {
  width: 100%;
  padding: 20px;
  background: none;
  margin: 0;
  border: none;
  text-align: center;
  font-family: caption;
  font-style: italic;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  color: #666;
  font-size: 18px;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta .quote-meta blockquote label {
  display: block;
  margin-top: 15px;
  padding-top: 15px;
  position: relative;
  color: #000000;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .image-meta .quote-meta blockquote label:after {
  content: "";
  position: absolute;
  width: 10%;
  height: 1px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: #555;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .info-meta a {
  display: block;
  width: 100%;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .info-meta a .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: 0;
  margin-top: 20px;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .info-meta a:hover .title {
  color: #f48223;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .info-meta .extra-meta > div {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .info-meta .extra-meta > div:not(:last-child) {
  margin-right: 15px;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .info-meta .extra-meta > div i {
  margin-right: 4px;
}
.bs-blog.temp-bears_blog--blog2.layout-grid_classic .bs-blog-container .item .item-inner .info-meta .extra-meta > div.post-cate a {
  display: inline-block;
  vertical-align: top;
  width: auto;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item {
  background: #F7F7F7;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item .item-inner {
  display: inline-block;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item .item-inner .thumb-meta {
  position: absolute;
  left: 0;
  width: 100%;
  height: 234px;
  transition: .5s;
  -webkit-transition: .5s;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item .item-inner .thumb-meta:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item .item-inner .info-meta {
  padding: 16px 20px;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item .item-inner .info-meta .title {
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item .item-inner .info-meta .title:hover {
  color: #f48223;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item .item-inner .info-meta .morelink {
  line-height: normal;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item:nth-child(even) .item-inner {
  padding-top: 230px;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item:nth-child(even) .item-inner .thumb-meta {
  top: 0;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item:nth-child(even) .item-inner .thumb-meta:after {
  position: absolute;
  content: "";
  border: 15px solid transparent;
  border-bottom-color: #F7F7F7;
  left: 45px;
  bottom: 0;
  z-index: 3;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item:nth-child(odd) .item-inner {
  padding-bottom: 230px;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item:nth-child(odd) .item-inner .thumb-meta {
  bottom: 0;
}
.bs-blog.temp-bears_blog--special.layout-zigzag_inline .item:nth-child(odd) .item-inner .thumb-meta:after {
  position: absolute;
  content: "";
  border: 15px solid transparent;
  border-top-color: #F7F7F7;
  left: 45px;
  top: 0;
  z-index: 3;
}
.bs-blog.temp-bears_blog--events2.layout-listing .item .item-inner {
  margin-bottom: 30px;
  padding: 10px 20px;
  position: relative;
}
.bs-blog.temp-bears_blog--events2.layout-listing .item .item-inner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cedce7+0,596a72+100;Grey+3D+%231 */
  background: #f48223;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f48223 0%, #f48223 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f48223 0%, #f48223 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f48223 0%, #f48223 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@secondary-color', endColorstr='@main-color', GradientType=0);
  /* IE6-9 */
  z-index: 3;
  border-radius: 20px;
}
.bs-blog.temp-bears_blog--events2.layout-listing .item .item-inner > * {
  position: relative;
  z-index: 2;
}
.bs-blog.temp-bears_blog--events2.layout-listing .item .item-inner .image-meta {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: .05;
  z-index: 1;
}
.bs-blog.temp-bears_blog--events2.layout-listing .item .item-inner a .title {
  margin-bottom: 3px;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.temp-bears_blog--events2.layout-listing .item .item-inner a .title:hover {
  color: #f48223;
}
.bs-blog.temp-bears_blog--events2.layout-listing .item .item-inner .short-des {
  margin-bottom: 3px;
}
.bs-blog.temp-bears_blog--events2.layout-listing .item .item-inner .extra-meta {
  line-height: normal;
}
.bs-blog.temp-bears_blog--events2.layout-listing .item .item-inner .extra-meta > div {
  display: inline-block;
  vertical-align: top;
  color: #999;
  font-family: caption;
  font-style: italic;
}
.bs-blog.temp-bears_blog--events2.layout-listing .item .item-inner .extra-meta > div:not(:last-child) {
  margin-right: 20px;
}
.bs-blog.temp-bears_blog--events2.layout-listing .item .item-inner .extra-meta > div i {
  color: #f48223;
  margin-right: 4px;
}
.bs-blog.temp-bears_blog--events2.layout-grid_classic .item .item-inner {
  margin-bottom: 30px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 11px -9px rgba(1, 1, 1, 0.3);
}
.bs-blog.temp-bears_blog--events2.layout-grid_classic .item .item-inner .image-meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bs-blog.temp-bears_blog--events2.layout-grid_classic .item .item-inner .image-meta:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.47+64,0.9+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.47) 64%, rgba(0, 0, 0, 0.9) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.47) 64%, rgba(0, 0, 0, 0.9) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.47) 64%, rgba(0, 0, 0, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#e6000000', GradientType=0);
  /* IE6-9 */
}
.bs-blog.temp-bears_blog--events2.layout-grid_classic .item .item-inner .info-meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  text-align: center;
}
.bs-blog.temp-bears_blog--events2.layout-grid_classic .item .item-inner .info-meta .info-meta-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}
.bs-blog.temp-bears_blog--events2.layout-grid_classic .item .item-inner .info-meta .info-meta-inner .title,
.bs-blog.temp-bears_blog--events2.layout-grid_classic .item .item-inner .info-meta .info-meta-inner .time {
  color: #ffffff;
}
.bs-blog.temp-bears_blog--events2.layout-grid_classic .item .item-inner .info-meta .info-meta-inner a .title {
  margin-bottom: 4px;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.temp-bears_blog--events2.layout-grid_classic .item .item-inner .info-meta .info-meta-inner a .title:hover {
  color: #f48223;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item:not(:last-child) {
  margin-bottom: 45px;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner {
  position: relative;
  width: 100%;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner .thumb-meta {
  position: absolute;
  width: calc(50% - 15px);
  height: 100%;
  border-radius: 1px;
  top: 0;
  z-index: 3;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner .thumb-meta .thumb-meta-dislay {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner .thumb-meta .thumb-meta-dislay .btn-book-online {
  visibility: hidden;
  opacity: 0;
  border-radius: 2px;
  color: #ffffff;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  left: 50%;
  line-height: normal;
  padding: 8px 14px;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0px);
  -webkit-transform: translate3d(-50%, -50%, 0px);
  white-space: nowrap;
  background: rgba(244, 130, 35, 0.9);
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner .thumb-meta .thumb-meta-dislay .btn-book-online span {
  display: inline-block;
  vertical-align: top;
  margin-left: 4px;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner .thumb-meta .thumb-meta-shadow {
  position: absolute;
  bottom: -6px;
  height: 94%;
  left: 3%;
  width: 94%;
  z-index: -1;
  border-radius: 20px;
  filter: blur(16px);
  -webkit-filter: blur(16px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner .info-meta a .title {
  transition: .3s;
  -webkit-transition: .3s;
  margin-bottom: 10px;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner .info-meta a:hover .title {
  color: #f48223;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner .info-meta .extra-event-meta > div {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 10px;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner .info-meta .extra-event-meta > div i {
  margin-right: 4px;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner:hover .thumb-meta .thumb-meta-dislay .btn-book-online {
  visibility: visible;
  opacity: 1;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item:nth-child(odd) .item-inner {
  padding-left: calc(50% + 15px);
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item:nth-child(odd) .item-inner .thumb-meta {
  left: 0;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item:nth-child(odd) .item-inner .info-meta .extra-event-meta > div:not(:last-child) {
  margin-right: 10px;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item:nth-child(even) .item-inner {
  padding-right: calc(50% + 15px);
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item:nth-child(even) .item-inner .thumb-meta {
  right: 0;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item:nth-child(even) .item-inner .info-meta {
  text-align: right;
}
.bs-blog.temp-bears_blog--events2.layout-timelife .item:nth-child(even) .item-inner .info-meta .extra-event-meta > div:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 400px) {
  .bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner {
    padding: 0 !important;
  }
  .bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner .thumb-meta {
    position: relative;
    width: 100%;
    height: 240px;
  }
  .bs-blog.temp-bears_blog--events2.layout-timelife .item .item-inner .info-meta {
    margin-top: 20px;
    text-align: left !important;
  }
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item {
  margin-bottom: 30px;
  background: #ffffff;
  border-radius: 3px;
  box-shadow: 0 0 4px 0 rgba(16, 16, 16, 0.1);
  overflow: hidden;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item:hover {
  box-shadow: 0 0 5px 0 rgba(16, 16, 16, 0.2);
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .image-meta {
  width: 100%;
  height: 240px;
  position: relative;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .image-meta .time-left-meta {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  color: #fff;
  font-family: montserrat;
  font-size: 11px;
  font-weight: bold;
  left: 20px;
  line-height: normal;
  padding: 7px 12px;
  position: absolute;
  text-transform: uppercase;
  top: 20px;
  white-space: nowrap;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .image-meta .time-left-meta .days-left {
  color: #f48223;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .charitable-meta {
  padding: 30px 30px 0 30px;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .charitable-meta .donation-summary {
  font-size: 0;
  margin-bottom: 10px;
  color: #999;
  font-family: montserrat;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .charitable-meta .donation-summary > span {
  line-height: 28px;
  display: inline-block;
  vertical-align: middle;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .charitable-meta .donation-summary .amount {
  font-weight: bold;
  color: #f48223;
  font-size: 22px;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .charitable-meta .donation-summary .goal-amount {
  font-weight: bold;
  color: #999;
  font-size: 12px;
  margin-left: 22px;
  position: relative;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .charitable-meta .donation-summary .goal-amount:after {
  content: "/";
  left: -16px;
  position: absolute;
  top: 50%;
  font-size: 14px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .charitable-meta .campaign-progress-bar {
  margin-bottom: 0;
  background: #ececec;
  height: 4px;
  border-radius: 4px;
  overflow: initial;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .charitable-meta .campaign-progress-bar .bar {
  position: relative;
  border-radius: 4px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b8c6df+0,6d88b7+100;Grey+Blue+3D+%231 */
  background: #f48223;
  /* Old browsers */
  background: -moz-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #f48223 0%, #f48223 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@secondary-color', endColorstr='@main-color', GradientType=1);
  /* IE6-9 */
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .charitable-meta .campaign-progress-bar .bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: #f48223;
  /* Old browsers */
  background: -moz-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #f48223 0%, #f48223 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@secondary-color', endColorstr='@main-color', GradientType=1);
  /* IE6-9 */
  filter: blur(2px);
  -webkit-filter: blur(2px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta {
  padding: 30px;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta a .title {
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta a:hover .title {
  color: #f48223;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta .button-meta {
  text-align: center;
  font-size: 0;
  width: 100%;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta .button-meta .button-meta-inner {
  display: inline-block;
  border-radius: 2px;
  position: relative;
  z-index: 3;
  min-width: 90%;
  background: #f48223;
  /* Old browsers */
  background: -moz-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #f48223 0%, #f48223 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@secondary-color', endColorstr='@main-color', GradientType=1);
  /* IE6-9 */
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta .button-meta .button-meta-inner:before {
  border-radius: 3px;
  content: "";
  height: 94%;
  left: 3%;
  position: absolute;
  top: 3px;
  width: 94%;
  z-index: -1;
  filter: blur(6px);
  -webkit-filter: blur(6px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
  background: #f48223;
  /* Old browsers */
  background: -moz-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #f48223 0%, #f48223 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@secondary-color', endColorstr='@main-color', GradientType=1);
  /* IE6-9 */
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta .button-meta .button-meta-inner:after {
  content: "";
  width: 1px;
  height: 104%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(10deg);
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(10deg);
  background: rgba(255, 255, 255, 0.2);
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta .button-meta .button-meta-inner .donate-button,
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta .button-meta .button-meta-inner .readmore-button {
  display: inline-block;
  line-height: normal;
  vertical-align: top;
  padding: 12px 0;
  color: #ffffff;
  font-size: 14px;
  min-width: 50%;
  background: transparent;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta .button-meta .button-meta-inner .donate-button:hover,
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta .button-meta .button-meta-inner .readmore-button:hover {
  text-decoration: underline;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta .button-meta .button-meta-inner .donate-button {
  border-radius: 2px 0 0 2px;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .info-meta .button-meta .button-meta-inner .readmore-button {
  border-radius: 0 2px 2px 0;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .extra-meta {
  padding: 10px 20px 0px;
  font-size: 13px;
  border-top: 1px solid #ececec;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .extra-meta > div {
  display: inline-block;
  vertical-align: top;
  line-height: normal;
  margin-bottom: 10px;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .extra-meta > div:not(:last-child) {
  margin-right: 12px;
}
.bs-blog.temp-bears_blog--charitable-campaigns.layout-default .item .extra-meta > div i {
  display: inline-block;
  margin-right: 4px;
  text-align: center;
  vertical-align: top;
  width: 12px;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner {
  margin-bottom: 30px;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .thumb-meta {
  width: 100%;
  height: 200px;
  border-radius: 2px;
  position: relative;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .thumb-meta .createdate-meta {
  position: absolute;
  z-index: 3;
  left: 12px;
  bottom: -12px;
  background: #f48223;
  color: #ffffff;
  text-align: center;
  font-family: montserrat;
  font-weight: bold;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 2px;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .thumb-meta .createdate-meta > span {
  display: block;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .thumb-meta .createdate-meta > span.d {
  font-size: 28px;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .thumb-meta .createdate-meta > span.m {
  font-size: 11px;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .thumb-meta .zoom-img-meta {
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #f48223;
  color: #ffffff;
  font-size: 17px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .thumb-meta:hover .zoom-img-meta {
  visibility: visible;
  opacity: 1;
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .info-meta .extra-meta {
  margin-top: 20px;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .info-meta .extra-meta > div {
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  color: #909090;
  font-style: italic;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .info-meta .extra-meta > div:not(:last-child) {
  margin-right: 20px;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .info-meta a {
  display: block;
  max-width: 100%;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .info-meta a .title {
  width: 100%;
  font-size: 18px;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner .info-meta a:hover .title {
  color: #f48223;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner.item-special4 .thumb-meta {
  height: 350px;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner.item-special4 .short-des {
  color: #555555;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner.item-special4 .btn-readmore {
  border: 2px solid #f48223;
  border-radius: 2px;
  color: #f48223;
  display: inline-block;
  padding: 5px 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.bs-blog.temp-bears_blog--post.layout-special_first_item .item-inner.item-special4 .btn-readmore:hover {
  background: #f48223;
  color: #ffffff;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing {
  margin-bottom: 50px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner {
  position: relative;
  padding-left: 120px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .day-meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  text-align: center;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .day-meta:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .day-meta .e-start-date {
  display: block;
  font-family: montserrat;
  font-size: 11px;
  font-weight: bold;
  line-height: normal;
  padding: 3px 0;
  text-transform: uppercase;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .day-meta .e-start-date .d,
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .day-meta .e-start-date .m {
  display: block;
  font-weight: bold;
  color: #ffffff;
  font-family: montserrat;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .day-meta .e-start-date .d {
  font-size: 20px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .info-meta {
  width: 100%;
  line-height: normal;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .info-meta .full-time-meta {
  background: #f48223;
  border-radius: 2px;
  color: #ffffff;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 5px;
  padding: 5px 12px;
  text-transform: uppercase;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .info-meta a .title {
  margin-bottom: 6px;
  text-transform: uppercase;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .info-meta a:hover .title {
  color: #f48223;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .info-meta .short-des {
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner {
    padding-left: 0;
  }
  .bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .day-meta {
    position: relative;
    margin-bottom: 10px;
    width: 100%;
  }
  .bs-blog.layout-bears_blog--events .blog-item.layout-listing .blog-inner .info-meta {
    display: inline;
  }
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic {
  margin-bottom: 50px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta {
  width: 100%;
  height: 240px;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta .title-link {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  width: 90%;
  text-align: center;
  z-index: 3;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta .title-link .title {
  opacity: .7;
  color: #ffffff;
  margin-bottom: 0;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta .title-link:hover .title {
  color: #f48223;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta .sharing-wrap {
  position: absolute;
  bottom: 5px;
  left: 5px;
  z-index: 4;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta .sharing-wrap .bs-social {
  overflow: hidden;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta .sharing-wrap .bs-social > a {
  background: transparent none repeat scroll 0 0 !important;
  padding: 5px 0 !important;
  width: 29px !important;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  opacity: 0 !important;
  transition: .3s ease;
  -webkit-transition: .3s ease;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta .sharing-wrap .bs-social > a:nth-child(1) {
  -webkit-transition-delay: .1s;
  /* Safari */
  transition-delay: .1s;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta .sharing-wrap .bs-social > a:nth-child(2) {
  -webkit-transition-delay: .2s;
  /* Safari */
  transition-delay: .2s;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta .sharing-wrap .bs-social > a:nth-child(3) {
  -webkit-transition-delay: .3s;
  /* Safari */
  transition-delay: .3s;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta .sharing-wrap .bs-social > a:nth-child(4) {
  -webkit-transition-delay: .4s;
  /* Safari */
  transition-delay: .4s;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta .sharing-wrap .bs-social > a:hover {
  color: #f48223;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta:hover .title {
  opacity: 1;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .thumb-meta:hover .sharing-wrap .bs-social > a {
  opacity: 1 !important;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .extra-meta {
  width: 100%;
  margin-top: 10px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .extra-meta .e-item {
  padding-left: 30px;
  font-family: caption;
  font-style: italic;
  font-size: 15px;
  position: relative;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .extra-meta .e-item:not(:last-child) {
  border-bottom: 1px solid #eee;
  margin-bottom: 4px;
  padding-bottom: 4px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .extra-meta .e-item .icon-wrap {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  vertical-align: top;
  width: 20px;
  text-align: center;
  margin-right: 6px;
  color: #f48223;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .info-meta {
  margin-top: 10px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .info-meta a {
  display: block;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .info-meta a .title {
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 16px;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .info-meta a:hover .title {
  color: #f48223;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .info-meta .short-des {
  color: #999;
  font-size: 14px;
  margin-bottom: 5px;
  letter-spacing: 0;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-grid_basic .blog-inner .info-meta .link {
  font-family: montserrat;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: normal;
  text-transform: lowercase;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default {
  margin-bottom: 70px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner {
  position: relative;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta {
  position: relative;
  background: #ffffff;
  width: 50%;
  border: 12px solid #fcfcfc;
  padding: 40px 30px;
  z-index: 3;
  border-radius: 1px;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta a .title {
  text-transform: uppercase;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta a:hover .title {
  color: #f48223;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .link {
  border: 2px solid #f48223;
  border-radius: 2px;
  color: #f48223;
  display: inline-block;
  padding: 5px 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .link:hover {
  background: #f48223;
  color: #ffffff;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .short-text {
  margin-bottom: 10px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .list-field-meta {
  margin-bottom: 30px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .list-field-meta .field-item {
  display: block;
  width: 100%;
  line-height: normal;
  margin-bottom: 8px;
  font-size: 12px;
  color: #959595;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .list-field-meta .field-item span.icon-wrap {
  display: inline-block;
  vertical-align: top;
  width: 16px;
  text-align: center;
  margin-right: 5px;
  line-height: 18px;
  font-size: 14px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .list-field-meta .field-item span.icon-wrap i {
  color: #f48223;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .list-field-meta .field-item span.field-data {
  line-height: 18px;
  display: inline-block;
  width: calc(100% - 30px);
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .create-date {
  background: #FFF none repeat scroll 0 0;
  border: solid 12px #fcfcfc;
  bottom: 15%;
  padding: 23px 10px;
  position: absolute;
  right: -6px;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  transition: .3s;
  -webkit-transition: .3s;
  border-radius: 1px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .create-date > span {
  display: block;
  text-align: center;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .create-date > span.d {
  color: #f48223;
  font-family: montserrat;
  font-weight: bold;
  font-size: 20px;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .info-meta .create-date > span.m {
  font-size: 11px;
  color: #f48223;
  text-transform: uppercase;
  font-family: montserrat;
  font-weight: bold;
  line-height: normal;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default .blog-inner .thumb-meta {
  position: absolute;
  border-radius: 1px;
  right: 0;
  bottom: 30px;
  width: 55%;
  height: calc(100% + 10px);
  z-index: 1;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default:hover .blog-inner .info-meta {
  border-color: #fbfbfb;
}
.bs-blog.layout-bears_blog--events .blog-item.layout-default:hover .blog-inner .info-meta .create-date {
  border-color: #fbfbfb;
}
@media (max-width: 500px) {
  .bs-blog.layout-bears_blog--events .blog-inner .info-meta {
    width: calc(100% - 38px) !important;
  }
  .bs-blog.layout-bears_blog--events .blog-inner .thumb-meta {
    width: 100% !important;
    height: 250px !important;
    position: relative !important;
  }
}
.bs-blog.layout-bears_blog--couses .blog-item {
  margin-bottom: 30px;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner {
  background: #fcfcfc;
  position: relative;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .thumb-meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 32%;
  height: 100%;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .thumb-meta .days-left-meta {
  background: rgba(244, 130, 35, 0.8);
  color: #ffffff;
  border-radius: 2px;
  font-family: montserrat;
  font-size: 11px;
  line-height: normal;
  padding: 7px 13px;
  position: absolute;
  right: 12px;
  text-transform: uppercase;
  top: 12px;
  z-index: 9;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .info-meta {
  padding: 60px;
  padding-left: 32%;
  min-height: 100px;
  position: relative;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .info-meta > * {
  padding-left: 60px;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .info-meta a {
  display: inline-block;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .info-meta a .title {
  font-size: 17px;
  margin-bottom: 10px;
  text-transform: uppercase;
  transition: .3s;
  -webkit-transition: .3s;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .info-meta a:hover .title {
  color: #f48223;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .info-meta .donate-meta .goal-process {
  font-weight: bold;
  font-size: 13px;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .info-meta .donate-meta .goal-process .raised {
  color: #f48223;
  font-size: 18px;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .info-meta .donate-meta .goal-process .goal {
  color: #f48223;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .info-meta .money-process-bar-wrap {
  padding-left: 0;
  width: calc(100% - 32%);
  background: #e4e3e3;
  height: 6px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .info-meta .money-process-bar-wrap .current-percent {
  background: #ffffff none repeat scroll 0 0;
  color: #ec1c33;
  font-family: montserrat;
  font-size: 11px;
  font-weight: bold;
  padding: 6px 16px;
  position: absolute;
  right: 50px;
  top: 0;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
}
.bs-blog.layout-bears_blog--couses .blog-item .blog-inner .info-meta .money-process-bar-wrap .money-process-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #f48223;
}
@media (max-width: 500px) {
  .bs-blog.layout-bears_blog--couses .blog-item .thumb-meta {
    position: relative !important;
    width: 100% !important;
    height: 200px !important;
  }
  .bs-blog.layout-bears_blog--couses .blog-item .info-meta {
    padding: 15px !important;
    padding-left: 0 !important;
    min-height: 100px !important;
    position: relative !important;
  }
  .bs-blog.layout-bears_blog--couses .blog-item .info-meta > * {
    padding: 0 15px !important;
  }
  .bs-blog.layout-bears_blog--couses .blog-item .info-meta .donate-meta {
    padding-bottom: 40px !important;
  }
  .bs-blog.layout-bears_blog--couses .blog-item .money-process-bar-wrap {
    width: 100% !important;
  }
}
/* html5lightbox Bears Shortcode */
.html5lightbox {
  font-size: 70px;
  color: #f48223;
  font-size: 90px;
}
.html5lightbox:hover {
  color: #f48223;
}
.html5lightbox.lightbox-style1 {
  text-shadow: 0 0 13px rgba(1, 1, 1, 0.5);
}
/* lemongrid LemonGrid */
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item {
  overflow: hidden;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content {
  overflow: hidden;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content .lemongrid-info {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: calc(100% - 60px);
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  transition: .3s ease;
  -webkit-transition: .3s ease;
  overflow: hidden;
  border-radius: 1px;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content .lemongrid-info .info-text {
  padding: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  width: 100%;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content .lemongrid-info .info-text .title {
  margin-bottom: 8px;
  line-height: normal;
  text-transform: uppercase;
  font-size: 16px;
  transition: .3s ease;
  -webkit-transition: .3s ease;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content .lemongrid-info .info-text .position-meta {
  border-radius: 2px;
  display: inline-block;
  font-size: 11px;
  line-height: normal;
  padding: 7px 15px;
  background: #f48223;
  color: #ffffff;
  transition: .3s ease;
  -webkit-transition: .3s ease;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content .lemongrid-info .info-text .text-meta,
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content .lemongrid-info .info-text .social-meta {
  display: none;
  color: #ffffff;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content .lemongrid-info .info-text .social-meta {
  font-size: 0;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content .lemongrid-info .info-text .social-meta > a {
  display: inline-block;
  vertical-align: top;
  width: 45px;
  height: 45px;
  background: rgba(244, 130, 35, 0.8);
  color: #ffffff;
  position: relative;
  transition: .3s ease;
  -webkit-transition: .3s ease;
  border-radius: 1px;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content .lemongrid-info .info-text .social-meta > a:not(:last-child) {
  margin-right: 1px;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content .lemongrid-info .info-text .social-meta > a i {
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  font-size: 14px;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content .lemongrid-info .info-text .social-meta > a:hover {
  background: #f48223;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content:hover .lemongrid-info {
  height: calc(100% - 60px);
  background: rgba(0, 0, 0, 0.8);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content:hover .lemongrid-info .info-text .title {
  color: #ffffff;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content:hover .lemongrid-info .info-text .position-meta {
  margin-bottom: 20px;
}
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content:hover .lemongrid-info .info-text .text-meta,
.lemongrid--element.post_lemongrid--team .lemongrid-inner .lemongrid-item .grid-stack-item-content:hover .lemongrid-info .info-text .social-meta {
  display: block;
}
/* donate search form */
.donation-search-form ::-webkit-input-placeholder {
  color: #ffffff;
}
.donation-search-form :-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
.donation-search-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
.donation-search-form :-ms-input-placeholder {
  color: #ffffff;
}
.donation-search-form.layout-block .jw-elem-form {
  margin-top: 40px;
}
.donation-search-form.layout-block .jw-elem-form .field-group {
  margin-bottom: 10px;
}
.donation-search-form.layout-block .jw-elem-form .field-group input,
.donation-search-form.layout-block .jw-elem-form .field-group select {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.donation-search-form.layout-block .jw-elem-form .field-group .select-ui {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: solid 1px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  position: relative;
}
.donation-search-form.layout-block .jw-elem-form .field-group .select-ui:after {
  content: "\f0d7";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 1;
  opacity: .7;
  color: #ffffff;
}
.donation-search-form.layout-block .jw-elem-form .field-group .select-ui > select {
  position: relative;
  z-index: 3;
  width: calc(100% + 17px);
  background: none !important;
  border: none !important;
  outline: none !important;
}
.donation-search-form.layout-block .jw-elem-form .field-group .select-ui > select:active,
.donation-search-form.layout-block .jw-elem-form .field-group .select-ui > select:focus {
  outline: none !important;
}
.donation-search-form.layout-block .jw-elem-form .field-group .btn-submit {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-family: montserrat;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 98px;
  transition: .3s;
  -webkit-transition: .3s;
}
.donation-search-form.layout-block .jw-elem-form .field-group .btn-submit:hover {
  color: #f48223;
}
.counter-style-dark .jw-counter-up-wrap .jw-counter {
  padding: 0 !important;
}
.counter-style-dark .jw-counter-up-wrap .jw-counter .jw-number {
  color: #333;
  font-size: 30px;
}
.counter-style-dark .jw-counter-up-wrap .jw-counter .jw-title {
  color: #f48223;
  font-size: 12px;
}
.jw-counter-up-wrap.counter-up-custom1 {
  text-align: center;
}
.jw-counter-up-wrap.counter-up-custom1 span.jw-number {
  margin-bottom: 0;
  display: block;
}
.jw-counter-up-wrap.counter-up-custom1 span.jw-number:after {
  display: none;
  margin-bottom: 0;
}
.jw-counter-up-wrap.counter-up-custom1 h4.jw-title {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16px;
  margin-bottom: 0;
  padding: 10px 27px;
}
.gallery_lemongrid .lemongrid-item .lemongrid-icon a {
  background: rgba(244, 130, 35, 0.8) !important;
}
.social_lemongrid.social-flickr .lemongrid-icon a {
  background: rgba(244, 130, 35, 0.8) !important;
}
.lg-dynamics-modal-wrap .lg-dynamics-modal-close {
  background: rgba(244, 130, 35, 0.8) !important;
  color: #ffffff !important;
}
.lg-dynamics-modal-wrap .title h4 {
  color: #ffffff !important;
}
#imagelightbox-overlay {
  z-index: 999998 !important;
}
#imagelightbox {
  z-index: 999999 !important;
}
.page-template-page-Demo .jw-footer-bottom {
  font-family: caption;
  font-style: italic;
}
/* Bottom underlined style */
.underlined-style1 {
  position: relative;
}
.underlined-style1:after {
  content: "\f18c";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  font-size: 18px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.underlined-style1:before {
  background: #333 none repeat scroll 0 0;
  bottom: 20px;
  content: "";
  height: 1px;
  left: calc(50% + 20px);
  position: absolute;
  width: 150px;
  box-shadow: -190px 0 0 0;
}
@keyframes loadingrotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loadingrotate {
  from {
    -webkit-transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.charitabe-form-style #charitable-donation-form {
  padding-top: 0;
}
.charitabe-form-style #charitable-donation-form .charitable-notice {
  background: #FFEAED;
  border: none;
  color: #777;
}
.charitabe-form-style #charitable-donation-form .charitable-notice .errors p {
  font-weight: bold;
}
.charitabe-form-style #charitable-donation-form .charitable-notice .errors ul.error-list li {
  color: red;
}
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset {
  border: none;
  padding: 0;
}
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset input[type="text"],
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset select {
  margin-bottom: 3px;
}
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-form-header {
  font-family: montserrat;
  font-weight: bold;
  text-transform: uppercase;
  background: #f6f6f6;
  box-shadow: -80px 0 0 0 #f6f6f6, 80px 0 0 0 #f6f6f6;
  padding: 20px 0;
}
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount {
  float: none;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  border: none;
}
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount:not(:last-child) {
  border-bottom: solid 1px #ececec;
}
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label {
  padding: 6px 0;
  line-height: normal;
}
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label input,
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label span {
  display: inline-block;
  float: none;
  vertical-align: top;
}
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label input {
  vertical-align: middle;
}
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label .amount {
  font-family: montserrat;
  font-weight: normal;
}
.charitabe-form-style #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label .custom-donation-input {
  display: block;
  margin-bottom: 0;
  margin-top: 20px;
  padding: 14px 20px;
}
.charitabe-form-style #charitable-donation-form .charitable-submit-field {
  position: relative;
}
.charitabe-form-style #charitable-donation-form .charitable-submit-field button[type="submit"] {
  border: 2px solid #f48223;
  border-radius: 2px;
  color: #f48223;
  display: inline-block;
  padding: 5px 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  position: relative;
  z-index: 3;
  background: transparent;
  padding: 10px 20px;
}
.charitabe-form-style #charitable-donation-form .charitable-submit-field button[type="submit"]:hover {
  background: #f48223;
  color: #ffffff;
}
.charitabe-form-style #charitable-donation-form .charitable-submit-field button[type="submit"]:after {
  content: "";
  position: absolute;
  left: 3%;
  top: 6px;
  width: 94%;
  height: 94%;
  background: #f48223;
  z-index: -1;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
}
.charitabe-form-style #charitable-donation-form .charitable-submit-field button[type="submit"]:after {
  opacity: 0;
  border-radius: 2px;
}
.charitabe-form-style #charitable-donation-form .charitable-submit-field button[type="submit"]:hover:after {
  opacity: 1;
}
.charitabe-form-style #charitable-donation-form .charitable-submit-field .charitable-form-processing {
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.charitabe-form-style #charitable-donation-form .charitable-submit-field .charitable-form-processing img {
  display: none;
}
.charitabe-form-style #charitable-donation-form .charitable-submit-field .charitable-form-processing:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 5px #000000;
  border-bottom-color: #f48223;
  animation: loadingrotate 2s infinite linear;
  -webkit-animation: loadingrotate 2s infinite linear;
  transition: .3s;
  -webkit-transition: .3s;
}
.bears-modal-container #em-booking .em-booking-message.em-booking-error,
.bears-modal-container #em-booking .em-booking-message.em-booking-success {
  width: 100%;
  display: block;
  border-radius: 1px;
  padding: 20px;
  margin-bottom: 10px;
}
.bears-modal-container #em-booking .em-booking-message.em-booking-error {
  background: #FFEBE8;
}
.bears-modal-container #em-booking .em-booking-message.em-booking-success {
  background: #C9F4C6;
}
.bears-modal-container #em-booking .em-booking-form,
.bears-modal-container #em-booking .em-booking-login {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 0;
  float: none;
}
.bears-modal-container #em-booking .em-booking-form {
  width: calc(60%);
  padding-right: 20px;
}
.bears-modal-container #em-booking .em-booking-form .em-booking-form-details {
  width: 100%;
  padding: 0;
}
.bears-modal-container #em-booking .em-booking-form .em-booking-form-details > p {
  margin-bottom: 0;
}
.bears-modal-container #em-booking .em-booking-form .em-booking-form-details > p label {
  display: block;
  margin-bottom: 5px;
}
.bears-modal-container #em-booking .em-booking-form .em-booking-form-details > p input[type="text"],
.bears-modal-container #em-booking .em-booking-form .em-booking-form-details > p select,
.bears-modal-container #em-booking .em-booking-form .em-booking-form-details > p textarea {
  width: 100%;
  margin-bottom: 10px;
}
.bears-modal-container #em-booking .em-booking-form .em-booking-form-details .em-booking-buttons {
  position: relative;
}
.bears-modal-container #em-booking .em-booking-form .em-booking-form-details .em-booking-buttons.ajax-loading:after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 5px #000000;
  border-bottom-color: #f48223;
  animation: loadingrotate 2s infinite linear;
  -webkit-animation: loadingrotate 2s infinite linear;
  transition: .3s;
  -webkit-transition: .3s;
}
.bears-modal-container #em-booking .em-booking-login {
  width: calc(40% - 25px);
  margin-left: 20px;
  border: none;
  position: relative;
}
.bears-modal-container #em-booking .em-booking-login:after {
  content: "";
  left: -20px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ececec;
}
.bears-modal-container #em-booking .em-booking-login .em-booking-login-form > p {
  margin-bottom: 0;
}
.bears-modal-container #em-booking .em-booking-login .em-booking-login-form > p label {
  display: block;
  margin-bottom: 5px;
}
.bears-modal-container #em-booking .em-booking-login .em-booking-login-form > p input[type="text"],
.bears-modal-container #em-booking .em-booking-login .em-booking-login-form > p select,
.bears-modal-container #em-booking .em-booking-login .em-booking-login-form > p textarea {
  width: 100%;
  margin-bottom: 10px;
}
.bears-modal-container #em-booking .em-booking-login .em-booking-login-form > p input[type="password"] {
  transition: all 0.4s;
  width: 100%;
  outline: none;
  font-size: 14px;
  color: #303030;
  background-color: transparent;
  border: 1px solid #ECECEC;
  margin-bottom: 30px;
  padding: 8px 20px;
  box-shadow: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.bears-modal-container #em-booking .em-booking-login .em-booking-login-form #em_rememberme {
  margin-left: 10px;
}
.bears-modal-container #em-booking .em-booking-login .em-booking-login-form #em_rememberme + label {
  font-size: 14px;
  display: inline;
}
.bears-modal-container #em-booking .em-booking-submit,
.bears-modal-container #em-booking #em_wp-submit {
  border: 2px solid #f48223;
  border-radius: 2px;
  color: #f48223;
  display: inline-block;
  padding: 5px 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  position: relative;
  z-index: 3;
  background: transparent;
  padding: 10px 20px;
  line-height: normal;
}
.bears-modal-container #em-booking .em-booking-submit:hover,
.bears-modal-container #em-booking #em_wp-submit:hover {
  background: #f48223;
  color: #ffffff;
}
.bears-modal-container #em-booking .em-booking-submit:after,
.bears-modal-container #em-booking #em_wp-submit:after {
  content: "";
  position: absolute;
  left: 3%;
  top: 6px;
  width: 94%;
  height: 94%;
  background: #f48223;
  z-index: -1;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
}
.bears-modal-container #em-booking .em-booking-submit:after,
.bears-modal-container #em-booking #em_wp-submit:after {
  opacity: 0;
  border-radius: 2px;
}
.bears-modal-container #em-booking .em-booking-submit:hover:after,
.bears-modal-container #em-booking #em_wp-submit:hover:after {
  opacity: 1;
}
@media (max-width: 500px) {
  .bears-modal-container #em-booking .em-booking-form,
  .bears-modal-container #em-booking .em-booking-login {
    width: 100% !important;
  }
  .bears-modal-container #em-booking .em-booking-login {
    margin: 20px 0 0 0 !important;
  }
}
/* bears-modal-wral */
body.bears-modal-is-open #jw-main {
  opacity: .3;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: translateZ(0) scale(1, 1);
  -webkit-transition: translateZ(0) scale(1, 1);
}
.bears-modal-wral {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  overflow: auto;
}
.bears-modal-wral:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border: solid 6px #ffffff;
  border-bottom-color: #f48223;
  animation: loadingrotate 2s infinite linear;
  -webkit-animation: loadingrotate 2s infinite linear;
  transition: .3s;
  -webkit-transition: .3s;
}
.bears-modal-wral .bears-modal-container {
  position: absolute;
  left: 50%;
  top: 5%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateX(-50%) translateZ(0) scale(1, 1);
  -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
  width: 750px;
  max-width: 100%;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner {
  margin-bottom: 40px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  position: relative;
  transition: .3s;
  -webkit-transition: .3s;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .close-modal {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 9;
  color: #ffffff;
  text-align: center;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .header-modal {
  padding: 40px;
  background-attachment: fixed;
  position: relative;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .header-modal:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b8c6df+0,6d88b7+100;Grey+Blue+3D+%231 */
  background: #f48223;
  /* Old browsers */
  background: -moz-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #f48223 0%, #f48223 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@secondary-color', endColorstr='@main-color', GradientType=1);
  /* IE6-9 */
  opacity: .9;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .header-modal .title {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, 0.9);
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body {
  overflow: hidden;
  padding: 0 40px 40px;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form {
  padding-top: 0;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-notice {
  background: #FFEAED;
  border: none;
  color: #777;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-notice .errors p {
  font-weight: bold;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-notice .errors ul.error-list li {
  color: red;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset {
  border: none;
  padding: 0;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset input[type="text"],
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset select {
  margin-bottom: 3px;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-form-header {
  font-family: montserrat;
  font-weight: bold;
  text-transform: uppercase;
  background: #f6f6f6;
  box-shadow: -80px 0 0 0 #f6f6f6, 80px 0 0 0 #f6f6f6;
  padding: 20px 0;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount {
  float: none;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  border: none;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount:not(:last-child) {
  border-bottom: solid 1px #ececec;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label {
  padding: 6px 0;
  line-height: normal;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label input,
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label span {
  display: inline-block;
  float: none;
  vertical-align: top;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label input {
  vertical-align: middle;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label .amount {
  font-family: montserrat;
  font-weight: normal;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-form-fields .charitable-fieldset .charitable-donation-options ul.donation-amounts li.donation-amount > label .custom-donation-input {
  display: block;
  margin-bottom: 0;
  margin-top: 20px;
  padding: 14px 20px;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-submit-field {
  position: relative;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-submit-field button[type="submit"] {
  border: 2px solid #f48223;
  border-radius: 2px;
  color: #f48223;
  display: inline-block;
  padding: 5px 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  position: relative;
  z-index: 3;
  background: transparent;
  padding: 10px 20px;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-submit-field button[type="submit"]:hover {
  background: #f48223;
  color: #ffffff;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-submit-field button[type="submit"]:after {
  content: "";
  position: absolute;
  left: 3%;
  top: 6px;
  width: 94%;
  height: 94%;
  background: #f48223;
  z-index: -1;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-submit-field button[type="submit"]:after {
  opacity: 0;
  border-radius: 2px;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-submit-field button[type="submit"]:hover:after {
  opacity: 1;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-submit-field .charitable-form-processing {
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-submit-field .charitable-form-processing img {
  display: none;
}
.bears-modal-wral .bears-modal-container .bears-modal-container-inner .modal-body #charitable-donation-form .charitable-submit-field .charitable-form-processing:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 5px #000000;
  border-bottom-color: #f48223;
  animation: loadingrotate 2s infinite linear;
  -webkit-animation: loadingrotate 2s infinite linear;
  transition: .3s;
  -webkit-transition: .3s;
}
.bears-modal-wral.is-show:after {
  opacity: 0;
  visibility: hidden;
}
.bears-modal-wral.is-show .bears-modal-container .bears-modal-container-inner {
  visibility: visible;
  opacity: 1;
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.bears-modal-wral.is-close .bears-modal-container .bears-modal-container-inner {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.bears-contactform-style-default input[type="text"],
.bears-contactform-style-default input[type="email"],
.bears-contactform-style-default textarea {
  border-color: #f48223;
}
.bears-contactform-style-default input[type="text"]:focus,
.bears-contactform-style-default input[type="email"]:focus,
.bears-contactform-style-default textarea:focus {
  border-color: #f48223;
}
.bears-contactform-style-default .cf-field-message {
  height: 140px;
  min-height: auto;
}
.bears-contactform-style-default .cf-field-submit {
  padding: 5px 20px;
}
.bears-how-find-us {
  font-size: 13px;
}
.bears-how-find-us li {
  display: inline-block;
  width: 100%;
}
.bears-how-find-us li:not(:last-child) {
  margin-bottom: 15px;
}
.bears-how-find-us li > label,
.bears-how-find-us li > div {
  display: inline-block;
  vertical-align: top;
}
.bears-how-find-us li > label > span,
.bears-how-find-us li > div > span {
  display: block;
}
.bears-how-find-us li > label {
  min-width: 140px;
  font-weight: bold;
  font-size: 12px;
}
.bears-how-find-us li a {
  color: #000000;
  text-decoration: underline;
}
.bears-how-find-us li a:hover {
  color: #f48223;
}
.bears-blog-item.blog-temp-blog2 .blog-inner > img.wp-post-image {
  max-width: 100%;
  height: auto !important;
  border-radius: 2px;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .header-meta {
  display: block;
  width: 100%;
  border-radius: 2px;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .header-meta .link-meta {
  background: rgba(255, 255, 255, 0.8);
  padding: 50px 30px;
  text-align: center;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .header-meta .link-meta a {
  font-family: caption;
  font-style: italic;
  font-size: 28px;
  line-height: 40px;
  color: #f48223;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .header-meta .link-meta a:hover {
  color: #f48223;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .header-meta .quote-meta {
  background: rgba(255, 255, 255, 0.8);
}
.bears-blog-item.blog-temp-blog2 .blog-inner .header-meta .quote-meta blockquote {
  display: block;
  padding: 30px;
  margin: 0;
  background: none;
  border: none;
  font-family: caption;
  font-style: italic;
  font-size: 24px;
  color: #666;
  line-height: 40px;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .header-meta .quote-meta blockquote label {
  display: block;
  margin-top: 10px;
  color: #000000;
  text-align: right;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .video-meta .bears-video-wrap iframe {
  height: 459px;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .gallery-meta .bears-slick-carousel {
  border-radius: 2px;
  overflow: hidden;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .gallery-meta .bears-slick-carousel .s-item {
  height: 400px;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .audio-meta .bears-audio-wrap iframe {
  height: 200px;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta {
  margin-top: 15px;
  margin-bottom: 60px;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .extra-meta {
  font-size: 13px;
  color: #777;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .extra-meta > div {
  display: inline-block;
  vertical-align: top;
  margin-top: 12px;
  position: relative;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .extra-meta > div:not(:last-child) {
  margin-right: 10px;
  padding-right: 12px;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .extra-meta > div:not(:last-child):after {
  content: ".";
  position: absolute;
  right: 0;
  bottom: 0;
  color: #000000;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .extra-meta > div > i {
  margin-right: 5px;
  color: #666;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .title-meta {
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .title-meta:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: 1px;
  background: #ccc;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .content-meta blockquote {
  position: relative;
  background: none;
  border: medium none;
  color: #777;
  font-family: caption;
  font-style: italic;
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 40px 20px;
  text-align: center;
  font-size: 19px;
  line-height: 34px;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .content-meta blockquote:after,
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .content-meta blockquote:before {
  content: "";
  position: absolute;
  width: 10%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: #ccc;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .content-meta blockquote:after {
  top: 0;
}
.bears-blog-item.blog-temp-blog2 .blog-inner .info-meta .content-meta blockquote:before {
  bottom: 0;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner img.event-thumb {
  max-width: 100%;
  border-radius: 2px;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta {
  margin-bottom: 60px;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .event-area-content {
  box-shadow: 1px 0 0 0 #f6f6f6;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .extra-meta {
  margin-top: 20px;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .extra-meta > div {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  color: #777;
  margin-top: 12px;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .extra-meta > div:not(:last-child) {
  margin-right: 10px;
  padding-right: 12px;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .title-meta {
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .title-meta:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: 1px;
  background: #ccc;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .content-meta blockquote {
  position: relative;
  background: none;
  border: medium none;
  color: #777;
  font-family: caption;
  font-style: italic;
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 40px 20px;
  text-align: center;
  font-size: 19px;
  line-height: 34px;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .content-meta blockquote:after,
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .content-meta blockquote:before {
  content: "";
  position: absolute;
  width: 10%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: #ccc;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .content-meta blockquote:after {
  top: 0;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .content-meta blockquote:before {
  bottom: 0;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .block-meta .block-meta-item i {
  margin-right: 5px;
  color: #f48223;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .block-meta .block-meta-item label {
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .block-meta .block-meta-item p {
  font-family: caption;
  font-style: italic;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .block-meta .block-meta-item.b-share .bs-social {
  margin-top: 4px;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .block-meta .block-meta-item.b-share .bs-social a {
  border-radius: 50%;
  padding: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 33px;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .block-meta .block-meta-item.b-share .bs-social a i {
  color: #ffffff;
  margin: 0;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .block-meta .block-meta-item.b-share .bs-social a:not(:last-child) {
  margin-right: 5px;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .block-meta .block-meta-item.b-booking .btn-book-online {
  text-decoration: underline;
  color: #f48223;
}
.bears-event-item.event-temp-default.event-format-entry .event-inner .info-meta .block-meta .block-meta-item.b-booking .btn-book-online:hover {
  color: #f48223;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .header-meta {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  min-height: 130px;
  background-color: #f48223;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .header-meta img.campaign-thumb {
  max-width: 100%;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .header-meta .charitable-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 3;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .header-meta .charitable-meta .donation-summary {
  margin-top: 10px;
  font-family: caption;
  font-style: italic;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .header-meta .charitable-meta .donation-summary .amount,
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .header-meta .charitable-meta .donation-summary .goal-amount {
  font-family: montserrat;
  font-style: normal;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .header-meta .charitable-meta .donation-summary .amount {
  font-weight: bold;
  color: #f48223;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .header-meta .charitable-meta .donation-summary .goal-amount {
  font-weight: bold;
  color: #777;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .header-meta .charitable-meta .campaign-progress-bar {
  margin-bottom: 0;
  background: #ececec;
  height: 4px;
  border-radius: 4px;
  overflow: initial;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .header-meta .charitable-meta .campaign-progress-bar .bar {
  position: relative;
  border-radius: 4px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b8c6df+0,6d88b7+100;Grey+Blue+3D+%231 */
  background: #f48223;
  /* Old browsers */
  background: -moz-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #f48223 0%, #f48223 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@secondary-color', endColorstr='@main-color', GradientType=1);
  /* IE6-9 */
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .header-meta .charitable-meta .campaign-progress-bar .bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: #f48223;
  /* Old browsers */
  background: -moz-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #f48223 0%, #f48223 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #f48223 0%, #f48223 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@secondary-color', endColorstr='@main-color', GradientType=1);
  /* IE6-9 */
  filter: blur(2px);
  -webkit-filter: blur(2px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta {
  margin-bottom: 60px;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .campaign-area-content {
  box-shadow: 1px 0 0 0 #f6f6f6;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .extra-meta {
  margin-top: 20px;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .extra-meta > div {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  color: #777;
  margin-top: 12px;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .extra-meta > div:not(:last-child) {
  margin-right: 10px;
  padding-right: 12px;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .title-meta {
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .title-meta:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: 1px;
  background: #ccc;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .content-meta blockquote {
  position: relative;
  background: none;
  border: medium none;
  color: #777;
  font-family: caption;
  font-style: italic;
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 40px 20px;
  text-align: center;
  font-size: 19px;
  line-height: 34px;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .content-meta blockquote:after,
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .content-meta blockquote:before {
  content: "";
  position: absolute;
  width: 10%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: #ccc;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .content-meta blockquote:after {
  top: 0;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .content-meta blockquote:before {
  bottom: 0;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .block-meta .block-meta-item i {
  margin-right: 5px;
  color: #f48223;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .block-meta .block-meta-item label {
  font-weight: bold;
  text-transform: uppercase;
  font-family: montserrat;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .block-meta .block-meta-item p {
  font-family: caption;
  font-style: italic;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .block-meta .block-meta-item.b-share .bs-social {
  margin-top: 4px;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .block-meta .block-meta-item.b-share .bs-social a {
  border-radius: 50%;
  padding: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 33px;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .block-meta .block-meta-item.b-share .bs-social a i {
  color: #ffffff;
  margin: 0;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .block-meta .block-meta-item.b-share .bs-social a:not(:last-child) {
  margin-right: 5px;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .block-meta .block-meta-item.b-donate-btn .donate-button {
  background: #f48223 none repeat scroll 0 0;
  border-radius: 2px;
  color: #ffffff;
  display: inline-block;
  font-family: montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  margin-top: 4px;
  padding: 10px 26px;
  text-transform: uppercase;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .block-meta .block-meta-item.b-donate-btn .donate-button:hover {
  background: #f48223;
}
.bears-campaign-item.campaign-temp-default.campaign-format-entry .campaign-inner .info-meta .block-meta .block-meta-item.b-date-left span.amount {
  color: #f48223;
}
body .ro-comment-wrapper > h6::before,
.ro-leave-comment-wrapper > h6::before {
  content: "\f075";
}
.ro-comment-item .ro-avatar .ro-info {
  padding: 10px 0 0 70px;
}
.ro-comment-item .ro-avatar .ro-info .ro-time {
  font-style: normal;
}
.ro-comment-item .ro-avatar .ro-info .ro-time a {
  color: #f48223;
}
.ro-comment-item .ro-avatar .ro-info .ro-time a:hover {
  color: #f48223;
}
@media (max-width: 640px - 1) {
  .jw-demo-select,
  .jw-install-video {
    width: 100%;
    margin: 0;
  }
  .jw-demo-select {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px - 1) {
  .jw-demo-heading {
    font-size: 52px !important;
    line-height: 60px !important;
  }
  .jw-demo-sub-heading {
    font-size: 18px !important;
    line-height: 30px !important;
  }
}
#bears-widget-style .widget:not(:last-child) {
  margin-bottom: 30px;
}
#bears-widget-style .widget > ul > li > a {
  text-transform: uppercase;
  font-weight: bold;
}
#bears-widget-style .widget > ul > li ul {
  padding: 0 0 0 30px;
}
#bears-widget-style .widget .wg-title {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  position: relative;
}
#bears-widget-style .widget .wg-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: 2px;
  background: #f48223;
}
#bears-widget-style .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign {
  padding: 0 0 0 60px;
  position: relative;
}
#bears-widget-style .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign:not(:last-child) {
  padding-bottom: 14px;
  margin-bottom: 20px;
}
#bears-widget-style .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign:last-child {
  border-bottom: none;
}
#bears-widget-style .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .wp-post-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: auto !important;
  border-radius: 1px;
}
#bears-widget-style .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: normal;
  margin-bottom: 0;
}
#bears-widget-style .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title a {
  color: #444;
}
#bears-widget-style .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title a:hover {
  color: #f48223;
}
#bears-widget-style .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-time-left {
  font-size: 13px;
  color: #777;
  font-family: caption;
  font-style: italic;
}
#bears-widget-style .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-time-left .amount {
  color: #f48223;
  margin-right: 2px;
}
#bears-widget-style .widget.widget_em_widget > ul > li > a {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#bears-widget-style .widget.widget_em_widget > ul > li ul {
  padding-left: 20px;
  line-height: normal;
}
#bears-widget-style .widget.widget_em_widget > ul > li ul li {
  font-size: 13px;
  padding: 5px 0;
}
#bears-widget-style .widget.widget_recent_entries > ul > li {
  line-height: 24px;
}
#bears-widget-style .widget.widget_recent_entries > ul > li > a {
  display: block;
}
#bears-widget-style .widget.widget_recent_entries > ul > li *:nth-child(2) {
  padding-left: 20px;
  font-size: 13px;
}
#jw-main .sidebar-right.temp-blog2 .widget:not(:last-child),
#jw-main .sidebar-right.temp-default .widget:not(:last-child) {
  margin-bottom: 30px;
}
#jw-main .sidebar-right.temp-blog2 .widget > ul > li > a,
#jw-main .sidebar-right.temp-default .widget > ul > li > a {
  text-transform: uppercase;
  font-weight: bold;
}
#jw-main .sidebar-right.temp-blog2 .widget > ul > li ul,
#jw-main .sidebar-right.temp-default .widget > ul > li ul {
  padding: 0 0 0 30px;
}
#jw-main .sidebar-right.temp-blog2 .widget .wg-title,
#jw-main .sidebar-right.temp-default .widget .wg-title {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  position: relative;
}
#jw-main .sidebar-right.temp-blog2 .widget .wg-title:after,
#jw-main .sidebar-right.temp-default .widget .wg-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: 2px;
  background: #f48223;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign,
#jw-main .sidebar-right.temp-default .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign {
  padding: 0 0 0 60px;
  position: relative;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign:not(:last-child),
#jw-main .sidebar-right.temp-default .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign:not(:last-child) {
  padding-bottom: 14px;
  margin-bottom: 20px;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign:last-child,
#jw-main .sidebar-right.temp-default .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign:last-child {
  border-bottom: none;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .wp-post-image,
#jw-main .sidebar-right.temp-default .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .wp-post-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: auto !important;
  border-radius: 1px;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title,
#jw-main .sidebar-right.temp-default .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: normal;
  margin-bottom: 0;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title a,
#jw-main .sidebar-right.temp-default .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title a {
  color: #444;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title a:hover,
#jw-main .sidebar-right.temp-default .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title a:hover {
  color: #f48223;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-time-left,
#jw-main .sidebar-right.temp-default .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-time-left {
  font-size: 13px;
  color: #777;
  font-family: caption;
  font-style: italic;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-time-left .amount,
#jw-main .sidebar-right.temp-default .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-time-left .amount {
  color: #f48223;
  margin-right: 2px;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_em_widget > ul > li > a,
#jw-main .sidebar-right.temp-default .widget.widget_em_widget > ul > li > a {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_em_widget > ul > li ul,
#jw-main .sidebar-right.temp-default .widget.widget_em_widget > ul > li ul {
  padding-left: 20px;
  line-height: normal;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_em_widget > ul > li ul li,
#jw-main .sidebar-right.temp-default .widget.widget_em_widget > ul > li ul li {
  font-size: 13px;
  padding: 5px 0;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_recent_entries > ul > li,
#jw-main .sidebar-right.temp-default .widget.widget_recent_entries > ul > li {
  line-height: 24px;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_recent_entries > ul > li > a,
#jw-main .sidebar-right.temp-default .widget.widget_recent_entries > ul > li > a {
  display: block;
}
#jw-main .sidebar-right.temp-blog2 .widget.widget_recent_entries > ul > li *:nth-child(2),
#jw-main .sidebar-right.temp-default .widget.widget_recent_entries > ul > li *:nth-child(2) {
  padding-left: 20px;
  font-size: 13px;
}
#jw-main {
  transition: .3s;
  -webkit-transition: .3s;
}
.scwg-item.jwwg-menu-off-canvas a.jwwg-icon i {
  display: block;
  transition: .8s;
  -webkit-transition: .8s;
  line-height: 32px !important;
}
.jwwg-container-menu-off-canvas-open #jw-main {
  position: relative;
  display: block;
  transform: translateX(-300px);
  -webkit-transform: translateX(-300px);
  z-index: 9;
}
.jwwg-container-menu-off-canvas-open #jw-main .main-content {
  cursor: e-resize;
}
.jwwg-container-menu-off-canvas-open .scwg-container.jwwg-container-menu-off-canvas {
  opacity: 1;
  visibility: visible;
  z-index: 12;
}
.jwwg-container-menu-off-canvas-open .scwg-item.jwwg-menu-off-canvas a.jwwg-icon i {
  transform: rotate(450deg);
  -webkit-transform: rotate(450deg);
}
.scwg-container.jwwg-container-menu-off-canvas {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-left: calc(100% - 300px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 13;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  -webkit-transition: .3s;
  overflow: auto;
}
.scwg-container.jwwg-container-menu-off-canvas:after {
  content: "";
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  height: 100%;
  background: #111;
  z-index: -1;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner {
  padding: 40px 20px 20px 20px;
  position: relative;
  height: 100%;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget:not(:last-child) {
  margin-bottom: 30px;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget > ul > li > a {
  text-transform: uppercase;
  font-weight: bold;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget > ul > li ul {
  padding: 0 0 0 30px;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget .wg-title {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  position: relative;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget .wg-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: 2px;
  background: #f48223;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign {
  padding: 0 0 0 60px;
  position: relative;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign:not(:last-child) {
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign:last-child {
  border-bottom: none;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .wp-post-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: auto !important;
  border-radius: 1px;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: normal;
  margin-bottom: 0;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title a {
  color: #444;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-title a:hover {
  color: #f48223;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-time-left {
  font-size: 13px;
  color: #777;
  font-family: caption;
  font-style: italic;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_charitable_campaigns_widget ol.campaigns li.campaign .campaign-time-left .amount {
  color: #f48223;
  margin-right: 2px;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_em_widget > ul > li > a {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_em_widget > ul > li ul {
  padding-left: 20px;
  line-height: normal;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_em_widget > ul > li ul li {
  font-size: 13px;
  padding: 5px 0;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_recent_entries > ul > li {
  line-height: 24px;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_recent_entries > ul > li > a {
  display: block;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_recent_entries > ul > li *:nth-child(2) {
  padding-left: 20px;
  font-size: 13px;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget:not(:last-child) {
  margin-bottom: 30px;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget .widget-title,
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget .wg-title {
  color: #ffffff;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_nav_menu ul.menu li.menu-item {
  margin-bottom: 8px;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_nav_menu ul.menu li.menu-item > a {
  font-size: 16px;
  display: block;
  color: #f48223;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_nav_menu ul.menu li.menu-item > a:hover {
  color: #f48223;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_nav_menu ul.menu li.menu-item > a i {
  font-size: 22px;
  margin-right: 10px;
  vertical-align: middle;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_tag_cloud .tagcloud > a {
  font-size: 12px !important;
  display: inline-block;
  vertical-align: top;
  margin: 0 2px 2px 0;
  line-height: normal;
  color: #f48223;
  border: solid 1px;
  padding: 4px 10px;
  border-radius: 1px;
}
.scwg-container.jwwg-container-menu-off-canvas .container-inner .widget.widget_tag_cloud .tagcloud > a:hover {
  color: #f48223;
}
.jw-recent-cause {
  padding-left: 20px;
}
.jw-recent-cause .cause-item {
  margin-bottom: 10px;
}
.jw-recent-cause .cause-item .cause-content-inner {
  display: flex;
}
.jw-recent-cause .cause-item .cause-content-inner .cause-title {
  width: 90%;
  margin-left: 15px;
}
.jw-recent-cause .cause-item .cause-content-inner .cause-title .date {
  color: #666666;
  font-size: 11px;
  display: block;
}
.jw-recent-cause .cause-item .cause-content-inner .image {
  width: 115px;
}
.jw-recent-cause .cause-item .cause-content-inner .image img {
  width: 100%;
  height: auto;
}
#jw_header .tribe-events-widget-link {
  margin-bottom: 30px;
  margin-top: 30px;
}
#jw_header .tribe-events-widget-link a {
  padding-left: 20px;
  background: #252525;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 500;
  padding: 10px 40px;
  letter-spacing: 0.7px;
  color: #ffffff;
  margin-left: 20px;
}
#jw_header .tribe-events-widget-link a:before {
  background: #f48223;
}
#jw_header .tribe-list-widget {
  padding-left: 5px;
}
#jw_header .tribe-list-widget .tribe-event-title {
  margin: 0;
  padding: 7px 0;
}
#jw_header .tribe-list-widget .tribe-event-title a:hover {
  color: #f48223;
}
#jw_header .tribe-list-widget .tribe-event-duration {
  display: none;
}
#jw_header .mega-menu-item .widget_text {
  padding-left: 20px;
}
body .updatecart {
  margin-bottom: 60px;
  text-align: right;
}
body .updatecart .button {
  height: 52px;
  width: 205px;
  line-height: 52px;
  background-color: #f48223;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  text-transform: uppercase;
  border: 1px solid #f48223;
  font-size: 12px;
  font-family: Poppins;
  padding: 0;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
body .updatecart .button:hover {
  background-color: #FFFFFF;
  color: #68b20d;
}
.no-sidebar .alignfull {
  max-width: 100vw !important;
  width: 100vw !important;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin-left: 50% !important;
}
.no-sidebar .alignwide {
  width: calc(100% + 100px);
  max-width: calc(100% + 100px);
  margin-left: -50px;
  margin-right: -50px;
}
#panel-style-selector .panel-wrapper {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 9999999;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 205px;
  padding: 0;
  background: #111;
  color: #FFF;
  font-size: 12px;
  border-left: none;
  -webkit-transform: translate(-100%, -50%);
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  -o-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#panel-style-selector .panel-wrapper.in {
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
#panel-style-selector .panel-wrapper .panel-selector-open {
  position: absolute;
  top: 0;
  left: 100%;
  width: 45px;
  height: 45px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  background: #222;
  text-align: center;
  cursor: pointer;
  opacity: 1;
}
#panel-style-selector .panel-wrapper .panel-selector-open i {
  font-size: 16px;
  line-height: 45px;
}
#panel-style-selector .panel-wrapper .panel-selector-open:hover {
  color: #f48223;
}
#panel-style-selector .panel-wrapper h2.panel-selector-header {
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  background: #222;
  text-transform: uppercase;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.48px;
  margin-bottom: 0;
}
#panel-style-selector .panel-wrapper .panel-selector-body {
  padding: 15px;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section {
  margin-bottom: 5px;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section h3.panel-selector-title {
  border-bottom: solid 1px #222;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.48px;
  margin: 0;
  margin-bottom: 15px;
  font-family: montserrat;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section h3.panel-selector-title:before {
  content: "";
  display: inline-block;
  verticle-align: middle;
  width: 8px;
  height: 8px;
  background: #f48223;
  margin-right: 5px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row {
  margin-bottom: 5px;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row .panel-selector-btn {
  font-family: Montserrat;
  font-size: 11px;
  line-height: 20px;
  letter-spacing: 0.48px;
  display: inline-block;
  padding: 6px 12px;
  text-transform: uppercase;
  min-width: 80px;
  text-align: center;
  color: #282828;
  background: #FFFFFF;
  border: 1px solid #dddddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row .panel-selector-btn:hover,
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row .panel-selector-btn:focus,
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row .panel-selector-btn.active {
  background-color: #f48223;
  border: 1px solid #f48223;
  color: #ffffff;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row ul li {
  width: 30px;
  height: 30px;
  float: left;
  display: block;
  border: 1px solid #999;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row ul li .preset-item {
  line-height: 0;
  -webkit-transform: rotate(45deg) scale(1.5);
  -moz-transform: rotate(45deg) scale(1.5);
  -o-transform: rotate(45deg) scale(1.5);
  -ms-transform: rotate(45deg) scale(1.5);
  transform: rotate(45deg) scale(1.5);
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row ul li .preset-item > span {
  display: inline-block;
  width: 100%;
  height: 15px;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row ul li.active:before,
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row ul li:hover:before {
  content: "\f00c";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  text-align: center;
  font-family: fontawesome;
  z-index: 9;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row ul li + li {
  margin-left: 15px;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row ul li:nth-child(4n+1) {
  clear: both;
  margin-left: 0;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row ul li:nth-child(n + 5) {
  margin-top: 15px;
}
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row ul.panel-primary-background li.active:before,
#panel-style-selector .panel-wrapper .panel-selector-body .panel-selector-section .panel-selector-row ul.panel-primary-background li:hover:before {
  content: "\f00c";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  text-align: center;
  font-family: fontawesome;
}
@media (max-width: 767px) {
  #panel-style-selector {
    display: none;
  }
}
