@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__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;
  }
}
.animate__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);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-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);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  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 shakeX {
  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);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-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);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-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);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__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);
  }
}
.animate__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);
  }
}
.animate__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;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-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-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-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-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;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-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;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-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;
  }
}
.animate__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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@charset "UTF-8";
/*

DO NOT EDIT app.css only app.scss

To run use npm install & then npm run dev or npm run prod

 */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.3/customize/?id=0a9eb8e6ebd424a644ae62fe6569dfd5)
 * Config saved to config.json and https://gist.github.com/0a9eb8e6ebd424a644ae62fe6569dfd5
 */
/*!
* Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *, *:before, *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a, a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]:after, a[href^="javascript:"]:after {
    content: "";
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }

  .navbar {
    display: none;
  }

  .btn > .caret, .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  .label {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td, .table th {
    background-color: #fff !important;
  }

  .table-bordered th, .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url("/wp-content/themes/kilchoman/fonts/glyphicons-halflings-regular.eot");
  src: url("/wp-content/themes/kilchoman/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/kilchoman/fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("/wp-content/themes/kilchoman/fonts/glyphicons-halflings-regular.woff") format("woff"), url("/wp-content/themes/kilchoman/fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("/wp-content/themes/kilchoman/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
  content: "*";
}

.glyphicon-plus:before {
  content: "+";
}

.glyphicon-euro:before, .glyphicon-eur:before {
  content: "\20AC";
}

.glyphicon-minus:before {
  content: "\2212";
}

.glyphicon-cloud:before {
  content: "\2601";
}

.glyphicon-envelope:before {
  content: "\2709";
}

.glyphicon-pencil:before {
  content: "\270F";
}

.glyphicon-glass:before {
  content: "\E001";
}

.glyphicon-music:before {
  content: "\E002";
}

.glyphicon-search:before {
  content: "\E003";
}

.glyphicon-heart:before {
  content: "\E005";
}

.glyphicon-star:before {
  content: "\E006";
}

.glyphicon-star-empty:before {
  content: "\E007";
}

.glyphicon-user:before {
  content: "\E008";
}

.glyphicon-film:before {
  content: "\E009";
}

.glyphicon-th-large:before {
  content: "\E010";
}

.glyphicon-th:before {
  content: "\E011";
}

.glyphicon-th-list:before {
  content: "\E012";
}

.glyphicon-ok:before {
  content: "\E013";
}

.glyphicon-remove:before {
  content: "\E014";
}

.glyphicon-zoom-in:before {
  content: "\E015";
}

.glyphicon-zoom-out:before {
  content: "\E016";
}

.glyphicon-off:before {
  content: "\E017";
}

.glyphicon-signal:before {
  content: "\E018";
}

.glyphicon-cog:before {
  content: "\E019";
}

.glyphicon-trash:before {
  content: "\E020";
}

.glyphicon-home:before {
  content: "\E021";
}

.glyphicon-file:before {
  content: "\E022";
}

.glyphicon-time:before {
  content: "\E023";
}

.glyphicon-road:before {
  content: "\E024";
}

.glyphicon-download-alt:before {
  content: "\E025";
}

.glyphicon-download:before {
  content: "\E026";
}

.glyphicon-upload:before {
  content: "\E027";
}

.glyphicon-inbox:before {
  content: "\E028";
}

.glyphicon-play-circle:before {
  content: "\E029";
}

.glyphicon-repeat:before {
  content: "\E030";
}

.glyphicon-refresh:before {
  content: "\E031";
}

.glyphicon-list-alt:before {
  content: "\E032";
}

.glyphicon-lock:before {
  content: "\E033";
}

.glyphicon-flag:before {
  content: "\E034";
}

.glyphicon-headphones:before {
  content: "\E035";
}

.glyphicon-volume-off:before {
  content: "\E036";
}

.glyphicon-volume-down:before {
  content: "\E037";
}

.glyphicon-volume-up:before {
  content: "\E038";
}

.glyphicon-qrcode:before {
  content: "\E039";
}

.glyphicon-barcode:before {
  content: "\E040";
}

.glyphicon-tag:before {
  content: "\E041";
}

.glyphicon-tags:before {
  content: "\E042";
}

.glyphicon-book:before {
  content: "\E043";
}

.glyphicon-bookmark:before {
  content: "\E044";
}

.glyphicon-print:before {
  content: "\E045";
}

.glyphicon-camera:before {
  content: "\E046";
}

.glyphicon-font:before {
  content: "\E047";
}

.glyphicon-bold:before {
  content: "\E048";
}

.glyphicon-italic:before {
  content: "\E049";
}

.glyphicon-text-height:before {
  content: "\E050";
}

.glyphicon-text-width:before {
  content: "\E051";
}

.glyphicon-align-left:before {
  content: "\E052";
}

.glyphicon-align-center:before {
  content: "\E053";
}

.glyphicon-align-right:before {
  content: "\E054";
}

.glyphicon-align-justify:before {
  content: "\E055";
}

.glyphicon-list:before {
  content: "\E056";
}

.glyphicon-indent-left:before {
  content: "\E057";
}

.glyphicon-indent-right:before {
  content: "\E058";
}

.glyphicon-facetime-video:before {
  content: "\E059";
}

.glyphicon-picture:before {
  content: "\E060";
}

.glyphicon-map-marker:before {
  content: "\E062";
}

.glyphicon-adjust:before {
  content: "\E063";
}

.glyphicon-tint:before {
  content: "\E064";
}

.glyphicon-edit:before {
  content: "\E065";
}

.glyphicon-share:before {
  content: "\E066";
}

.glyphicon-check:before {
  content: "\E067";
}

.glyphicon-move:before {
  content: "\E068";
}

.glyphicon-step-backward:before {
  content: "\E069";
}

.glyphicon-fast-backward:before {
  content: "\E070";
}

.glyphicon-backward:before {
  content: "\E071";
}

.glyphicon-play:before {
  content: "\E072";
}

.glyphicon-pause:before {
  content: "\E073";
}

.glyphicon-stop:before {
  content: "\E074";
}

.glyphicon-forward:before {
  content: "\E075";
}

.glyphicon-fast-forward:before {
  content: "\E076";
}

.glyphicon-step-forward:before {
  content: "\E077";
}

.glyphicon-eject:before {
  content: "\E078";
}

.glyphicon-chevron-left:before {
  content: "\E079";
}

.glyphicon-chevron-right:before {
  content: "\E080";
}

.glyphicon-plus-sign:before {
  content: "\E081";
}

.glyphicon-minus-sign:before {
  content: "\E082";
}

.glyphicon-remove-sign:before {
  content: "\E083";
}

.glyphicon-ok-sign:before {
  content: "\E084";
}

.glyphicon-question-sign:before {
  content: "\E085";
}

.glyphicon-info-sign:before {
  content: "\E086";
}

.glyphicon-screenshot:before {
  content: "\E087";
}

.glyphicon-remove-circle:before {
  content: "\E088";
}

.glyphicon-ok-circle:before {
  content: "\E089";
}

.glyphicon-ban-circle:before {
  content: "\E090";
}

.glyphicon-arrow-left:before {
  content: "\E091";
}

.glyphicon-arrow-right:before {
  content: "\E092";
}

.glyphicon-arrow-up:before {
  content: "\E093";
}

.glyphicon-arrow-down:before {
  content: "\E094";
}

.glyphicon-share-alt:before {
  content: "\E095";
}

.glyphicon-resize-full:before {
  content: "\E096";
}

.glyphicon-resize-small:before {
  content: "\E097";
}

.glyphicon-exclamation-sign:before {
  content: "\E101";
}

.glyphicon-gift:before {
  content: "\E102";
}

.glyphicon-leaf:before {
  content: "\E103";
}

.glyphicon-fire:before {
  content: "\E104";
}

.glyphicon-eye-open:before {
  content: "\E105";
}

.glyphicon-eye-close:before {
  content: "\E106";
}

.glyphicon-warning-sign:before {
  content: "\E107";
}

.glyphicon-plane:before {
  content: "\E108";
}

.glyphicon-calendar:before {
  content: "\E109";
}

.glyphicon-random:before {
  content: "\E110";
}

.glyphicon-comment:before {
  content: "\E111";
}

.glyphicon-magnet:before {
  content: "\E112";
}

.glyphicon-chevron-up:before {
  content: "\E113";
}

.glyphicon-chevron-down:before {
  content: "\E114";
}

.glyphicon-retweet:before {
  content: "\E115";
}

.glyphicon-shopping-cart:before {
  content: "\E116";
}

.glyphicon-folder-close:before {
  content: "\E117";
}

.glyphicon-folder-open:before {
  content: "\E118";
}

.glyphicon-resize-vertical:before {
  content: "\E119";
}

.glyphicon-resize-horizontal:before {
  content: "\E120";
}

.glyphicon-hdd:before {
  content: "\E121";
}

.glyphicon-bullhorn:before {
  content: "\E122";
}

.glyphicon-bell:before {
  content: "\E123";
}

.glyphicon-certificate:before {
  content: "\E124";
}

.glyphicon-thumbs-up:before {
  content: "\E125";
}

.glyphicon-thumbs-down:before {
  content: "\E126";
}

.glyphicon-hand-right:before {
  content: "\E127";
}

.glyphicon-hand-left:before {
  content: "\E128";
}

.glyphicon-hand-up:before {
  content: "\E129";
}

.glyphicon-hand-down:before {
  content: "\E130";
}

.glyphicon-circle-arrow-right:before {
  content: "\E131";
}

.glyphicon-circle-arrow-left:before {
  content: "\E132";
}

.glyphicon-circle-arrow-up:before {
  content: "\E133";
}

.glyphicon-circle-arrow-down:before {
  content: "\E134";
}

.glyphicon-globe:before {
  content: "\E135";
}

.glyphicon-wrench:before {
  content: "\E136";
}

.glyphicon-tasks:before {
  content: "\E137";
}

.glyphicon-filter:before {
  content: "\E138";
}

.glyphicon-briefcase:before {
  content: "\E139";
}

.glyphicon-fullscreen:before {
  content: "\E140";
}

.glyphicon-dashboard:before {
  content: "\E141";
}

.glyphicon-paperclip:before {
  content: "\E142";
}

.glyphicon-heart-empty:before {
  content: "\E143";
}

.glyphicon-link:before {
  content: "\E144";
}

.glyphicon-phone:before {
  content: "\E145";
}

.glyphicon-pushpin:before {
  content: "\E146";
}

.glyphicon-usd:before {
  content: "\E148";
}

.glyphicon-gbp:before {
  content: "\E149";
}

.glyphicon-sort:before {
  content: "\E150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\E151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\E152";
}

.glyphicon-sort-by-order:before {
  content: "\E153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\E154";
}

.glyphicon-sort-by-attributes:before {
  content: "\E155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\E156";
}

.glyphicon-unchecked:before {
  content: "\E157";
}

.glyphicon-expand:before {
  content: "\E158";
}

.glyphicon-collapse-down:before {
  content: "\E159";
}

.glyphicon-collapse-up:before {
  content: "\E160";
}

.glyphicon-log-in:before {
  content: "\E161";
}

.glyphicon-flash:before {
  content: "\E162";
}

.glyphicon-log-out:before {
  content: "\E163";
}

.glyphicon-new-window:before {
  content: "\E164";
}

.glyphicon-record:before {
  content: "\E165";
}

.glyphicon-save:before {
  content: "\E166";
}

.glyphicon-open:before {
  content: "\E167";
}

.glyphicon-saved:before {
  content: "\E168";
}

.glyphicon-import:before {
  content: "\E169";
}

.glyphicon-export:before {
  content: "\E170";
}

.glyphicon-send:before {
  content: "\E171";
}

.glyphicon-floppy-disk:before {
  content: "\E172";
}

.glyphicon-floppy-saved:before {
  content: "\E173";
}

.glyphicon-floppy-remove:before {
  content: "\E174";
}

.glyphicon-floppy-save:before {
  content: "\E175";
}

.glyphicon-floppy-open:before {
  content: "\E176";
}

.glyphicon-credit-card:before {
  content: "\E177";
}

.glyphicon-transfer:before {
  content: "\E178";
}

.glyphicon-cutlery:before {
  content: "\E179";
}

.glyphicon-header:before {
  content: "\E180";
}

.glyphicon-compressed:before {
  content: "\E181";
}

.glyphicon-earphone:before {
  content: "\E182";
}

.glyphicon-phone-alt:before {
  content: "\E183";
}

.glyphicon-tower:before {
  content: "\E184";
}

.glyphicon-stats:before {
  content: "\E185";
}

.glyphicon-sd-video:before {
  content: "\E186";
}

.glyphicon-hd-video:before {
  content: "\E187";
}

.glyphicon-subtitles:before {
  content: "\E188";
}

.glyphicon-sound-stereo:before {
  content: "\E189";
}

.glyphicon-sound-dolby:before {
  content: "\E190";
}

.glyphicon-sound-5-1:before {
  content: "\E191";
}

.glyphicon-sound-6-1:before {
  content: "\E192";
}

.glyphicon-sound-7-1:before {
  content: "\E193";
}

.glyphicon-copyright-mark:before {
  content: "\E194";
}

.glyphicon-registration-mark:before {
  content: "\E195";
}

.glyphicon-cloud-download:before {
  content: "\E197";
}

.glyphicon-cloud-upload:before {
  content: "\E198";
}

.glyphicon-tree-conifer:before {
  content: "\E199";
}

.glyphicon-tree-deciduous:before {
  content: "\E200";
}

.glyphicon-cd:before {
  content: "\E201";
}

.glyphicon-save-file:before {
  content: "\E202";
}

.glyphicon-open-file:before {
  content: "\E203";
}

.glyphicon-level-up:before {
  content: "\E204";
}

.glyphicon-copy:before {
  content: "\E205";
}

.glyphicon-paste:before {
  content: "\E206";
}

.glyphicon-alert:before {
  content: "\E209";
}

.glyphicon-equalizer:before {
  content: "\E210";
}

.glyphicon-king:before {
  content: "\E211";
}

.glyphicon-queen:before {
  content: "\E212";
}

.glyphicon-pawn:before {
  content: "\E213";
}

.glyphicon-bishop:before {
  content: "\E214";
}

.glyphicon-knight:before {
  content: "\E215";
}

.glyphicon-baby-formula:before {
  content: "\E216";
}

.glyphicon-tent:before {
  content: "\26FA";
}

.glyphicon-blackboard:before {
  content: "\E218";
}

.glyphicon-bed:before {
  content: "\E219";
}

.glyphicon-apple:before {
  content: "\F8FF";
}

.glyphicon-erase:before {
  content: "\E221";
}

.glyphicon-hourglass:before {
  content: "\231B";
}

.glyphicon-lamp:before {
  content: "\E223";
}

.glyphicon-duplicate:before {
  content: "\E224";
}

.glyphicon-piggy-bank:before {
  content: "\E225";
}

.glyphicon-scissors:before {
  content: "\E226";
}

.glyphicon-bitcoin:before {
  content: "\E227";
}

.glyphicon-btc:before {
  content: "\E227";
}

.glyphicon-xbt:before {
  content: "\E227";
}

.glyphicon-yen:before {
  content: "\A5";
}

.glyphicon-jpy:before {
  content: "\A5";
}

.glyphicon-ruble:before {
  content: "\20BD";
}

.glyphicon-rub:before {
  content: "\20BD";
}

.glyphicon-scale:before {
  content: "\E230";
}

.glyphicon-ice-lolly:before {
  content: "\E231";
}

.glyphicon-ice-lolly-tasted:before {
  content: "\E232";
}

.glyphicon-education:before {
  content: "\E233";
}

.glyphicon-option-horizontal:before {
  content: "\E234";
}

.glyphicon-option-vertical:before {
  content: "\E235";
}

.glyphicon-menu-hamburger:before {
  content: "\E236";
}

.glyphicon-modal-window:before {
  content: "\E237";
}

.glyphicon-oil:before {
  content: "\E238";
}

.glyphicon-grain:before {
  content: "\E239";
}

.glyphicon-sunglasses:before {
  content: "\E240";
}

.glyphicon-text-size:before {
  content: "\E241";
}

.glyphicon-text-color:before {
  content: "\E242";
}

.glyphicon-text-background:before {
  content: "\E243";
}

.glyphicon-object-align-top:before {
  content: "\E244";
}

.glyphicon-object-align-bottom:before {
  content: "\E245";
}

.glyphicon-object-align-horizontal:before {
  content: "\E246";
}

.glyphicon-object-align-left:before {
  content: "\E247";
}

.glyphicon-object-align-vertical:before {
  content: "\E248";
}

.glyphicon-object-align-right:before {
  content: "\E249";
}

.glyphicon-triangle-right:before {
  content: "\E250";
}

.glyphicon-triangle-left:before {
  content: "\E251";
}

.glyphicon-triangle-bottom:before {
  content: "\E252";
}

.glyphicon-triangle-top:before {
  content: "\E253";
}

.glyphicon-console:before {
  content: "\E254";
}

.glyphicon-superscript:before {
  content: "\E255";
}

.glyphicon-subscript:before {
  content: "\E256";
}

.glyphicon-menu-left:before {
  content: "\E257";
}

.glyphicon-menu-right:before {
  content: "\E258";
}

.glyphicon-menu-down:before {
  content: "\E259";
}

.glyphicon-menu-up:before {
  content: "\E260";
}

* {
  box-sizing: border-box;
}

*:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover, a:focus {
  color: #23527c;
  text-decoration: underline;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role=button] {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}

h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
  font-size: 65%;
}

h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
  font-size: 75%;
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 14px;
}

h6, .h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small, .small {
  font-size: 85%;
}

mark, .mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #777;
}

.text-primary {
  color: #337ab7;
}

a.text-primary:hover, a.text-primary:focus {
  color: #286090;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover, a.text-success:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover, a.text-info:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover, a.text-warning:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover, a.text-danger:focus {
  color: #843534;
}

.bg-primary {
  color: #fff;
  background-color: #337ab7;
}

a.bg-primary:hover, a.bg-primary:focus {
  background-color: #286090;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover, a.bg-success:focus {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover, a.bg-info:focus {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover, a.bg-warning:focus {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover, a.bg-danger:focus {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt, dd {
  line-height: 1.42857143;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title], abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer, blockquote small, blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}

blockquote footer:before, blockquote small:before, blockquote .small:before {
  content: "\2014\A0";
}

.blockquote-reverse, blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eee;
  border-left: 0;
  text-align: right;
}

.blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before {
  content: "";
}

.blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after {
  content: "\A0\2014";
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}

code, kbd, pre, samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  background-color: transparent;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*=col-], table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }

  .table-responsive > .table {
    margin-bottom: 0;
  }

  .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }

  .table-responsive > .table-bordered {
    border: 0;
  }

  .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }

  .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }

  .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type=search] {
  box-sizing: border-box;
}

input[type=radio], input[type=checkbox] {
  margin: 4px 0 0;
  margin-top: 1px \9 ;
  line-height: normal;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

select[multiple], select[size] {
  height: auto;
}

input[type=file]:focus, input[type=radio]:focus, input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}

.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

input[type=search] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date].form-control, input[type=time].form-control, input[type=datetime-local].form-control, input[type=month].form-control {
    line-height: 34px;
  }

  input[type=date].input-sm, input[type=time].input-sm, input[type=datetime-local].input-sm, input[type=month].input-sm, .input-group-sm input[type=date], .input-group-sm input[type=time], .input-group-sm input[type=datetime-local], .input-group-sm input[type=month] {
    line-height: 30px;
  }

  input[type=date].input-lg, input[type=time].input-lg, input[type=datetime-local].input-lg, input[type=month].input-lg, .input-group-lg input[type=date], .input-group-lg input[type=time], .input-group-lg input[type=datetime-local], .input-group-lg input[type=month] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}

.radio, .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.radio label, .checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9 ;
}

.radio + .radio, .checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline, .checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type=radio][disabled], input[type=checkbox][disabled], input[type=radio].disabled, input[type=checkbox].disabled, fieldset[disabled] input[type=radio], fieldset[disabled] input[type=checkbox] {
  cursor: not-allowed;
}

.radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px;
}

.form-control-static.input-lg, .form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm, select[multiple].input-sm {
  height: auto;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}

.form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control {
  height: auto;
}

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-lg {
  height: 46px;
  line-height: 46px;
}

textarea.input-lg, select[multiple].input-lg {
  height: auto;
}

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}

.form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control {
  height: auto;
}

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 42.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.input-sm + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d;
}

.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-static {
    display: inline-block;
  }

  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control {
    width: auto;
  }

  .form-inline .input-group > .form-control {
    width: 100%;
  }

  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio, .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio label, .form-inline .checkbox label {
    padding-left: 0;
  }

  .form-inline .radio input[type=radio], .form-inline .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }

  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}

.form-horizontal .radio, .form-horizontal .checkbox {
  min-height: 27px;
}

.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}

.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
  background-image: none;
}

.btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}

.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}

.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

.btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}

.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}

.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}

.btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
  background-image: none;
}

.btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}

.btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
  background-image: none;
}

.btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}

.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
  background-image: none;
}

.btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
  background-image: none;
}

.btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}

.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}

.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type=submit].btn-block, input[type=reset].btn-block, input[type=button].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup, .dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777;
}

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.dropdown-menu-left {
  left: 0;
  right: auto;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9 ;
  content: "";
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }

  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btn-group > .btn, .btn-group-vertical > .btn {
  position: relative;
  float: left;
}

.btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}

.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group {
  float: left;
}

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

.btn-group-vertical > .btn-group > .btn {
  float: none;
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

.btn-group-justified > .btn, .btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}

.btn-group-justified > .btn-group .btn {
  width: 100%;
}

.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

[data-toggle=buttons] > .btn input[type=radio], [data-toggle=buttons] > .btn-group > .btn input[type=radio], [data-toggle=buttons] > .btn input[type=checkbox], [data-toggle=buttons] > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group[class*=col-] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group .form-control:focus {
  z-index: 3;
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}

textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}

textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}

.input-group-addon, .input-group-btn, .input-group .form-control {
  display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon, .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

.input-group-addon input[type=radio], .input-group-addon input[type=checkbox] {
  margin-top: 0;
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

.input-group-btn > .btn {
  position: relative;
}

.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.nav > li {
  position: relative;
  display: block;
}

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

.nav > li.disabled > a {
  color: #777;
}

.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}

.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified > li {
  float: none;
}

.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }

  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}

.nav-pills > li > a {
  border-radius: 4px;
}

.nav-pills > li + li {
  margin-left: 2px;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

.nav-stacked > li {
  float: none;
}

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified {
  width: 100%;
}

.nav-justified > li {
  float: none;
}

.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }

  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }

  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }

  .navbar-collapse.in {
    overflow-y: visible;
  }

  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top, .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width: 768px) {
  .navbar-fixed-top, .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggle:focus {
  outline: 0;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }

  .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }

  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }

  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }

  .navbar-nav > li {
    float: left;
  }

  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .navbar-form .form-control-static {
    display: inline-block;
  }

  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control {
    width: auto;
  }

  .navbar-form .input-group > .form-control {
    width: 100%;
  }

  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .radio, .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .radio label, .navbar-form .checkbox label {
    padding-left: 0;
  }

  .navbar-form .radio input[type=radio], .navbar-form .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }

  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }

  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }

  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }

  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
  color: #777;
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

.navbar-default .navbar-text {
  color: #777;
}

.navbar-default .navbar-nav > li > a {
  color: #777;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border-color: #ddd;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border-color: #e7e7e7;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}

.navbar-default .navbar-link:hover {
  color: #333;
}

.navbar-default .btn-link {
  color: #777;
}

.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}

.navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}

.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}

.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

.navbar-inverse .navbar-toggle {
  border-color: #333;
}

.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
  border-color: #101010;
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #fff;
}

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}

.navbar-inverse .navbar-link:hover {
  color: #fff;
}

.navbar-inverse .btn-link {
  color: #9d9d9d;
}

.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}

.navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  content: "/\A0";
  padding: 0 5px;
  color: #ccc;
}

.breadcrumb > .active {
  color: #777;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #337ab7;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  color: #777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

.pagination-lg > li > a, .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

.pagination-sm > li > a, .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}

.pager li {
  display: inline;
}

.pager li > a, .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li > a:hover, .pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

.pager .next > a, .pager .next > span {
  float: right;
}

.pager .previous > a, .pager .previous > span {
  float: left;
}

.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
  color: #777;
  background-color: #fff;
  cursor: not-allowed;
}

.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label:empty {
  display: none;
}

.btn .label {
  position: relative;
  top: -1px;
}

.label-default {
  background-color: #777;
}

.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: #337ab7;
}

.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090;
}

.label-success {
  background-color: #5cb85c;
}

.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}

.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}

.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777;
  border-radius: 10px;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.btn-xs .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}

.list-group-item > .badge {
  float: right;
}

.list-group-item > .badge + .badge {
  margin-right: 5px;
}

.nav-pills > li > a > .badge {
  margin-left: 3px;
}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}

.jumbotron h1, .jumbotron .h1 {
  color: inherit;
}

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

.jumbotron > hr {
  border-top-color: #d5d5d5;
}

.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 15px;
}

.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container .jumbotron, .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }

  .jumbotron h1, .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

.thumbnail > img, .thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
  border-color: #337ab7;
}

.thumbnail .caption {
  padding: 9px;
  color: #333;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p, .alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable, .alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close, .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.progress-striped .progress-bar, .progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

.progress.active .progress-bar, .progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
  background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
  background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
  background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
  background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media, .media-body {
  zoom: 1;
  overflow: hidden;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
}

.media-object.img-thumbnail {
  max-width: none;
}

.media-right, .media > .pull-right {
  padding-left: 10px;
}

.media-left, .media > .pull-left {
  padding-right: 10px;
}

.media-left, .media-right, .media-body {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

a.list-group-item, button.list-group-item {
  color: #555;
}

a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
  color: #333;
}

a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}

button.list-group-item {
  width: 100%;
  text-align: left;
}

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eee;
  color: #777;
  cursor: not-allowed;
}

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777;
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success, button.list-group-item-success {
  color: #3c763d;
}

a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info, button.list-group-item-info {
  color: #31708f;
}

a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning, button.list-group-item-warning {
  color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger, button.list-group-item-danger {
  color: #a94442;
}

a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .list-group, .panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table {
  margin-bottom: 0;
}

.panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}

.panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
  border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

.panel-group {
  margin-bottom: 20px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}

.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #337ab7;
}

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}

.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 6px;
}

.well-sm {
  padding: 9px;
  border-radius: 3px;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}

.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}

.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}

.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}

.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}

.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}

.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img, .carousel-inner > .item > a > img {
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }

  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }

  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }

  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next, .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}

.carousel-control.left {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
}

.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
}

.carousel-control:hover, .carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}

.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-prev, .carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}

.carousel-control .icon-prev:before {
  content: "\2039";
}

.carousel-control .icon-next:before {
  content: "\203A";
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9 ;
  background-color: rgba(0, 0, 0, 0);
}

.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }

  .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
    margin-left: -10px;
  }

  .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
    margin-right: -10px;
  }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-header:before, .modal-header:after, .modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}

.clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-header:after, .modal-footer:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important;
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs, td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm, td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md, td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg, td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print, td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
/* ===== KIW-Styles ================================================== */
/* ===== fonts-Styles-start ================================================== */
@font-face {
  font-family: "SabonMTStd-Regular";
  src: url("/wp-content/themes/kilchoman/fonts/SabonMTStd-Regular.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/kilchoman/fonts/SabonMTStd-Regular.woff") format("woff"), url("/wp-content/themes/kilchoman/fonts/SabonMTStd-Regular.ttf") format("truetype"), url("/wp-content/themes/kilchoman/fonts/SabonMTStd-Regular.svg#SabonMTStd-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "StrayhornMT-Bold";
  src: url("/wp-content/themes/kilchoman/fonts/StrayhornMT-Bold.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/kilchoman/fonts/StrayhornMT-Bold.woff") format("woff"), url("/wp-content/themes/kilchoman/fonts/StrayhornMT-Bold.ttf") format("truetype"), url("/wp-content/themes/kilchoman/fonts/StrayhornMT-Bold.svg#StrayhornMT-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FontAwesome";
  src: url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ===== fonts-Styles-End ================================================== */
/* ===== mixin-start ================================================== */
/* ===== mixin-End ================================================== */
/* ===== color-Styles-start ================================================== */
/* ===== color-Styles-End ================================================== */
/* ===== forms-start ================================================== */
/*
body.modal-open{
	overflow: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
}
*/
/*
p#shipping_first_name_field, p#shipping_last_name_field {
  display: none;
}
*/
.site-loader {
  background: #223f71;
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.site-loader-inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 510px;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.site-loader .cask-img {
  margin: 0 auto 43px;
  padding: 0;
  width: 400px;
  max-width: 85%;
}

.site-loader-inner h3 {
  margin: 0 0 20px 0;
  color: #ba9765;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
}

.site-loader-inner .cask-bar {
  margin: 0 auto 13px auto;
  padding: 0;
  width: 100%;
  height: 15px;
  position: relative;
  max-width: 310px;
  width: 100%;
  left: -5px;
}

.site-loader-inner .cask-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 2px;
  border-top: 2px dotted white;
}

.site-loader-inner .cask-bar:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  border-bottom: 2px dotted white;
}

.site-loader-inner .state-to-outer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 15px;
  display: block;
  background: #ba9765;
  max-width: 310px;
}

.counter-loader {
  color: #ba9765;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  font-size: 31px;
  text-align: center;
}

.site-loader-inner .cask-bar span {
  background: #FFF;
  height: 15px;
  position: absolute;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
}

.site-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
}

.site-loader .cask-bar {
  display: none;
}

/* Loading dots */
.loading-meng {
  font-size: 20px;
}

.loading-meng {
  display: inline-block;
  width: 3em;
  position: relative;
  text-align: center;
}

.loading-meng strong,
.loading-meng:before,
.loading-meng:after {
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
}

.loading-meng strong {
  background-color: #BA9765;
  opacity: 0.8;
  position: absolute;
  top: 0;
  z-index: 2;
}

.loading-meng:before,
.loading-meng:after {
  content: "";
  background-color: #BA9765;
  position: absolute;
  top: 0;
  z-index: 1;
}

.loading-meng:before {
  left: 0;
}

.loading-meng:after {
  right: 0;
}

.loading-meng strong {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-name: meng-dot;
          animation-name: meng-dot;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes meng-dot {
  from {
    left: 0;
  }
  50% {
    left: 2em;
  }
  to {
    left: 0;
  }
}

@keyframes meng-dot {
  from {
    left: 0;
  }
  50% {
    left: 2em;
  }
  to {
    left: 0;
  }
}
.loading-meng:before, .loading-meng:after {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-name: meng-shadow;
          animation-name: meng-shadow;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.loading-meng:after {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes meng-shadow {
  from {
    opacity: 0.5;
  }
  70% {
    opacity: 0;
  }
  to {
    opacity: 0.2;
  }
}

@keyframes meng-shadow {
  from {
    opacity: 0.5;
  }
  70% {
    opacity: 0;
  }
  to {
    opacity: 0.2;
  }
}
.message-text {
  font-size: 14px;
}

.msg-type {
  font-size: 16px;
  color: #e2ddd7;
}

.msg-type.error_msg {
  color: red;
}

.has-error .form-control {
  border-color: red;
}

.has-error .form-control:focus {
  box-shadow: none;
}

label {
  font-weight: normal;
}

textarea {
  resize: none;
}

.form-group {
  position: relative;
}

.placeholdertxt {
  position: absolute;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  color: #9f9f9f;
  margin-bottom: 0;
  margin-bottom: 0;
  top: 33%;
  left: 26px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form-control:focus + .placeholdertxt, .stickylabel {
  color: #ba9662;
  top: -19px;
  left: 0;
}

.form-control {
  border: 1px solid #ba9662;
  border-radius: 0;
  box-shadow: none;
  height: 52px;
  background-color: transparent;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  padding: 13px 26px;
}

.form-control:focus {
  border-color: rgba(186, 150, 98, 0.5);
  box-shadow: none;
  outline: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(/wp-content/themes/kilchoman/img/drop-down.png) center right no-repeat;
}

.form-control::-webkit-input-placeholder {
  color: #9f9f9f;
}

.form-control:-moz-placeholder {
  color: #9f9f9f;
}

.form-control::-moz-placeholder {
  color: #9f9f9f;
}

.form-control:-ms-input-placeholder {
  color: #9f9f9f;
}

.checkbox input[type=checkbox], .checkbox input[type=radio], .radio input[type=checkbox], .radio input[type=radio] {
  position: absolute;
  opacity: 0;
}

.checkbox input[type=checkbox]:checked + span, .checkbox input[type=radio]:checked + span, .radio input[type=checkbox]:checked + span, .radio input[type=radio]:checked + span {
  border-color: #ba9662;
}

.checkbox input[type=checkbox]:checked + span:before, .checkbox input[type=radio]:checked + span:before, .radio input[type=checkbox]:checked + span:before, .radio input[type=radio]:checked + span:before {
  background-color: #ba9662;
  opacity: 1;
}

.checkbox span, .radio span {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #333;
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.checkbox span:before, .radio span:before {
  content: "";
  display: inline-block;
  opacity: 0;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.checkbox span {
  border-radius: 0px;
  width: 20px;
  height: 20px;
  border: 1px solid #e3e3e3;
}

.checkbox span:before {
  border-radius: 20%;
}

.checkbox label {
  padding-left: 30px;
}

#welcome-to-islay,
#welcome-to-islay-field,
#welcome-to-islay-label {
  position: absolute;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  width: 1px;
  margin: -1px;
  border: 0px none;
  padding: 0px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  padding-left: 28px;
  background-image: url(/wp-content/themes/kilchoman/img/list-icon.png);
  background-position: 0px 5px;
  background-repeat: no-repeat;
}

.styled_accordian .panel-heading {
  background-color: transparent;
}

.styled_accordian .panel-default {
  border-bottom: 1px solid #ccc;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.styled_accordian .panel {
  box-shadow: none;
  border-radius: 0;
}

.styled_accordian .panel .panel-heading {
  border-radius: 0;
}

.styled_accordian .panel-heading [data-toggle=collapse] {
  display: block;
  position: relative;
}

.styled_accordian .panel-heading [data-toggle=collapse]:before {
  content: "\F107";
  display: inline-block;
  font-size: 25px;
  width: 0;
  font-family: "FontAwesome";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.styled_accordian .panel-heading [class=".panel-collapse.collapsed"], .styled_accordian .panel-heading [aria-expanded=true] {
  color: #ba9662;
}

.styled_accordian .panel-heading [class=".panel-collapse.collapsed"]:before, .styled_accordian .panel-heading [aria-expanded=true]:before {
  content: "\F106";
}

.trigger_radio {
  position: absolute;
  opacity: 0;
}

.trigger_radio:checked + .target_label {
  color: white;
  background-color: #1b3975;
}

.trigger_radio:checked + .target_label:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 40%;
  bottom: -9px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1b3975;
}

.react-buttoncheck {
  margin-bottom: 25px;
}

.react-buttoncheck .target_label {
  margin-right: 25px;
  background: transparent;
  color: #1b3975;
  cursor: pointer;
  border: 1px solid #1b3975;
  padding: 15px 25px;
  border-radius: 5px;
  margin-bottom: 0;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.react-buttoncheck .target_label:after {
  display: none;
}

@media (max-width: 767px) {
  .react-buttoncheck .target_label {
    margin-right: 10px;
    padding: 10px;
  }
}
.react-buttoncheck span {
  display: none;
}

.react-buttoncheck .radio {
  display: inline-block;
}

.pagination {
  margin-top: 0;
}

.pagination li {
  background-image: none;
  padding-left: 0;
}

.pagination .contolarrow {
  width: 9px;
  height: 13px;
  display: inline-block;
  line-height: 0;
  position: relative;
}

.pagination .contolarrow:hover {
  opacity: 0.5;
}

.pagination [aria-label=Previous]:hover,
.pagination [aria-label=Next]:hover {
  background-color: transparent;
}

.pagination .arrow-l:before {
  content: "\F104";
  display: inline-block;
  font-family: "FontAwesome";
}

.pagination .arrow-r:before {
  content: "\F105";
  display: inline-block;
  font-family: "FontAwesome";
}

.pagination > li > a, .pagination > li > span {
  border: transparent;
  color: #ba9662;
}

.pagination > li > a {
  margin: 0 6px;
  border-radius: 100%;
  color: #000;
}

.pagination > li > a:hover, .pagination > li > a:focus {
  background-color: transparent;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #ba9662;
}

.pagination > li:first-child > a, .pagination > li:first-child > span,
.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-radius: 100%;
}

.custom-pagination {
  margin-bottom: 40px;
  text-align: center;
}

.custom-pagination .page-numbers {
  cursor: pointer;
  margin-left: 8px;
  border-radius: 100%;
  color: #fff;
  background-color: #cac3bb;
  border-radius: 100%;
  padding: 6px 14px;
  width: 36px;
  height: 36px;
  display: inline-block;
}

.custom-pagination .page-numbers.current {
  color: white;
  background: #ba9662;
}

.custom-pagination .page-numbers.dots {
  background: transparent;
  color: #ba9662;
  padding-left: 0;
  padding-right: 0;
}

.custom-pagination .page-numbers:first-child {
  margin-left: 0;
}

.custom-pagination .page-numbers:hover {
  opacity: 0.7;
}

.custom-pagination .prev, .custom-pagination .next {
  color: #cac3bb;
  position: relative;
}

.custom-pagination .prev:before, .custom-pagination .next:before {
  color: #fff !important;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 25px;
  line-height: 0.8;
}

.custom-pagination .prev:hover, .custom-pagination .prev:focus, .custom-pagination .prev .disable, .custom-pagination .next:hover, .custom-pagination .next:focus, .custom-pagination .next .disable {
  opacity: 0.7;
}

.custom-pagination .prev:before {
  content: "\F104";
  display: inline-block;
  font-family: "FontAwesome";
}

.custom-pagination .next:before {
  content: "\F105";
  display: inline-block;
  font-family: "FontAwesome";
}

.breadcrumb {
  background-color: transparent;
}

.nav-tabs li {
  padding-left: 0;
  background-image: none;
}

.nav-tabs li a {
  border-radius: 0;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #ba9662;
  border-top-color: #ba9662;
}

.nav-tabs > li > a:hover {
  border-color: transparent;
}

.nav > li > a:hover, .nav > li > a:focus {
  background: transparent;
}

.tab-content .tab-pane {
  padding: 25px 0;
}

.breadcrumb a {
  color: #ba9662;
}

.selectric {
  background: transparent;
}

.selectric-label,
.selectric-button {
  height: 52px;
}

.selectric-label {
  line-height: 52px;
  margin-left: 0;
  padding-left: 26px;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  padding-top: 15px;
  padding-bottom: 15px;
}

.tour_type .selectric-open .selectric-label, .product_type .selectric-open .selectric-label {
  text-indent: -100em;
}

.tour_type .selectric-open .selectric:before, .product_type .selectric-open .selectric:before {
  position: absolute;
  content: "";
  display: inline-block;
  color: #ba9662;
  text-transform: uppercase;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  color: #000;
  padding-left: 26px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-transform: inherit;
}

.tour_type .selectric-items li {
  border-bottom: 2px dotted #e4e0dc;
  margin: 0 26px;
  padding-left: 0;
}

.tour_type .selectric-label:before, .numberofpeoples .selectric-label:before, .quantity_type .selectric-label:before, .product_type .selectric-label:before {
  content: "";
  display: inline-block;
  color: #ba9662;
  text-transform: uppercase;
  margin-right: 10px;
}

.tour_type .selectric-label:before {
  content: "Tour Type:";
}

.tour_type .selectric-open .selectric-label {
  text-indent: -100em;
}

.tour_type .selectric-open .selectric:before {
  content: "Please select a Product...";
}

.numberofpeoples .selectric-label:before {
  content: "Name of People:";
}

.quantity_type .selectric-label:before {
  content: "Quantity:";
}

.product_type .selectric-label:before {
  content: "Product:";
}

.product_type .selectric-open .selectric-label {
  text-indent: -100em;
}

.product_type .selectric-open .selectric:before {
  content: "Please select a Product...";
}

.selectric, .selectric-hover .selectric, .selectric-focus .selectric {
  border: 1px solid #ba9662;
}

.selectric-open .selectric {
  background-color: #c3bcb4;
  border: 1px solid #ba9662;
}

.selectric-button:after {
  border-top-color: black;
  right: 20px;
}

.selectric-items {
  top: 128%;
  border: 0;
  box-shadow: 0px 0px 66px 3px rgba(0, 0, 0, 0.15);
}

.selectric-items li {
  padding-left: 0;
  background-image: none;
  padding-left: 26px;
  font: 20px "StrayhornMT-Bold", Arial, sans-serif;
}

.selectric-items li:hover, .selectric-items li.highlighted, .selectric-items li.selected {
  background: transparent;
}

.selectric-items:before {
  content: "";
  display: inline-block;
  border: 10px solid transparent;
  border-bottom-color: white;
  position: absolute;
  top: -20px;
  right: 20px;
}

.selectric-items .slimScrollDiv {
  margin: 25px 0;
}

.selectric-items .slimScrollRail, .selectric-items .slimScrollBar {
  right: 21px !important;
}

.product_type .selectric-items {
  padding: 0px 15px;
  width: 100% !important;
}

.product_type .selectric-items li {
  width: 100%;
  display: table;
  margin-top: 15px;
}

.product_type .selectric-items li:first-child {
  margin-top: 0;
}

.product_type .selectric-items .dropimg {
  display: table-cell;
  width: 111px;
  vertical-align: middle;
}

.product_type .selectric-items .dropimg .pichold {
  background-size: contain !important;
  -webkit-background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #e2ddd7 !important;
}

.product_type .selectric-items .dropimg .pichold:before {
  content: "";
  display: block;
  padding-bottom: 100%;
  width: 100%;
}

.product_type .selectric-items .dropdetails {
  display: table-cell;
  vertical-align: middle;
  width: auto;
  padding-left: 20px;
}

.product_type .selectric-items .dropdetails h3 {
  text-transform: uppercase;
  margin-bottom: 0;
}

.product_type .selectric-items .dropdetails span {
  display: block;
  margin-bottom: 10px;
  margin-top: 0;
  color: #ba9662;
  font-style: italic;
  font-family: "Source Sans Pro", sans-serif;
}

.product_type .selectric-items .dropdetails .price strong {
  font-style: normal;
  color: #426eaf;
}

.product_type li:hover .pichold {
  box-shadow: inset 0px 0px 0px 4px #ba9662;
}

.datepicker-dropdown {
  border-radius: 0;
  margin-top: 25px;
  border: 0;
  padding: 12px 38px;
  box-shadow: 0px 0px 66px 3px rgba(0, 0, 0, 0.15);
}

.datepicker-dropdown.dropdown-menu {
  min-width: 350px;
}

.datepicker-dropdown table {
  width: 100%;
}

.datepicker-dropdown:before {
  display: none;
}

.datepicker-dropdown:after {
  border-left-width: 12px;
  border-right-width: 12px;
  border-bottom-width: 12px;
}

.datepicker-dropdown .prev, .datepicker-dropdown .next {
  color: transparent;
}

.datepicker-dropdown .prev:before, .datepicker-dropdown .next:before {
  content: "";
  display: inline-block;
  font-family: "FontAwesome";
  color: #ba9662;
}

.datepicker-dropdown .prev:before {
  content: "\F053";
}

.datepicker-dropdown .next:before {
  content: "\F054";
}

.datepicker-dropdown .dow {
  color: #c3bcb4;
  font-weight: normal;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  border-bottom: 1px dotted #c3bcb4;
}

.datepicker-dropdown .table-condensed > thead > tr > th,
.datepicker-dropdown .table-condensed > tbody > tr > th,
.datepicker-dropdown .table-condensed > tfoot > tr > th,
.datepicker-dropdown .table-condensed > thead > tr > td,
.datepicker-dropdown .table-condensed > tbody > tr > td,
.datepicker-dropdown .table-condensed > tfoot > tr > td {
  padding: 9px;
}

.datepicker table tr td.day.focused, .datepicker table tr td.day:hover {
  background-color: transparent;
}

.datepicker .datepicker-switch:hover,
.datepicker .next:hover,
.datepicker .prev:hover,
.datepicker tfoot tr th:hover {
  background-color: transparent;
}

.datepicker-switch {
  pointer-events: none;
  font: 20px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9662;
}

.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -10px;
}

.datepicker-dropdown.datepicker-orient-right:after {
  right: 17px;
}

.datePick {
  position: relative;
}

.datePick .datepic_placetxt {
  position: absolute;
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  padding-left: 26px;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
}

.datePick .datepic_placetxt strong {
  color: #ba9662;
  text-transform: uppercase;
  margin-right: 10px;
}

.datePick input {
  background: url(/wp-content/themes/kilchoman/img/drop-down.png) 99% 50% no-repeat;
}

.datePick input:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-bottom: none;
  border-top-color: red;
}

/* ===== forms-End ================================================== */
/* ===== header-start ================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 11;
  padding: 15px;
  height: 77px;
}

@media (min-width: 767px) {
  header {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  header {
    height: 57px;
  }
}
header nav {
  float: right;
}

header nav i {
  margin-right: 5px;
  line-height: 0;
}

header nav i img {
  width: 25px;
}

header nav .iconcart {
  cursor: pointer;
}

header nav a {
  margin-left: 20px;
  position: relative;
  display: inline-block;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  text-transform: uppercase;
  color: #F9F2DF;
}

header nav a:hover, header nav a:active, header nav a:focus {
  color: rgba(249, 242, 223, 0.8);
}

@media (max-width: 767px) {
  header nav a {
    margin-left: 10px;
  }
}
@media (max-width: 480px) {
  header nav a {
    font-size: 12px;
  }
}
header nav a:first-child {
  margin-left: 0;
}

.header_blue header {
  background-color: #1b3975;
}

@media (max-width: 480px) {
  .moblogin {
    position: relative;
    width: 15px;
    overflow: hidden;
    height: 15px;
    vertical-align: middle;
  }

  .moblogin:before {
    content: "";
    display: inline-block;
    background: url("/wp-content/themes/kilchoman/img/user.svg") 0 0 no-repeat;
    width: 15px;
    height: 15px;
    background-size: contain;
    -webkit-background-size: contain;
  }
}
/* ===== header-End ================================================== */
/* ===== footer-start ================================================== */
footer {
  position: absolute;
  bottom: 0;
  padding: 0 25px;
  left: 0;
  right: 0;
  z-index: 10;
}

footer .nav-footer {
  float: none;
}

@media (min-width: 768px) {
  footer .nav-footer {
    float: right;
  }
}
@media (max-width: 767px) {
  footer {
    position: relative;
    margin-top: 20px;
  }
}
footer ul {
  float: left;
  margin-bottom: 0;
}

footer ul li {
  display: inline-block;
  background: none;
  padding-left: 0;
  padding: 0 10px;
}

footer ul li:first-child {
  padding-left: 0;
}

footer ul li a, footer ul li span {
  font-size: 14px;
  color: rgba(204, 204, 204, 0.8);
  line-height: 35px;
  display: block;
}

@media (max-width: 767px) {
  footer ul li a, footer ul li span {
    line-height: 25px;
  }
}
footer ul li a:hover {
  color: #ccc;
}

/* ===== footer-End ================================================== */
/* ===== Style-Guide-start ================================================== */
.style_guidewrap {
  background-color: #f0f0f0;
  margin-bottom: 50px;
}

.style_guidewrap .navbar-brand img {
  width: 50%;
}

.style_guidewrap .stylehead {
  border-left: 5px dashed #ba9662;
  padding-left: 15px;
  position: relative;
  margin: 35px 0;
}

.style_guidewrap .btn_gropz .btn {
  margin-bottom: 10px;
}

/* ===== Style-Guide-End ================================================== */
/* ===== generic-Styles-start ================================================== */
body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  background: white;
  position: relative;
}

html, body {
  height: 100%;
  font-family: "Source Sans Pro", sans-serif;
  padding-right: 0 !important;
  font-weight: 300;
}

.sprite {
  background: url("/wp-content/themes/kilchoman/img/sprite.png");
}

iframe {
  border: 0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

h1 a:hover, h1 a:focus, h2 a:hover, h2 a:focus, h3 a:hover, h3 a:focus, h4 a:hover, h4 a:focus, h5 a:hover, h5 a:focus, h6 a:hover, h6 a:focus {
  opacity: 0.8;
}

h1 {
  font: 46px "StrayhornMT-Bold", Arial, sans-serif;
}

h2 {
  font-size: 38px;
}

h3 {
  font: 24px "StrayhornMT-Bold", Arial, sans-serif;
}

h4 {
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
}

h2, h5 {
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
}

p {
  color: #616161;
}

a {
  color: #333;
}

a:hover, a:focus {
  text-decoration: none;
  outline: 0 !important;
}

.pt0 {
  padding-top: 0;
}

.bggold {
  background-color: #e2ddd7;
  padding: 5px;
}

@media (min-width: 767px) {
  .bggold {
    padding: 25px;
    padding-bottom: 200px;
  }
}
.btn:focus, button:focus,
input:focus {
  outline: 0 !important;
}

.btn {
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  border-radius: 0;
  padding: 10px 22px;
  background-color: transparent;
}

.btn i {
  margin-right: 5px;
}

.disable {
  pointer-events: none;
  opacity: 0.5;
}

.btn-xs {
  padding: 7px 15px;
}

.btn-outlined {
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: #F9F2DF;
  padding: 14px 30px;
  border: 2px solid #ba9662;
  text-transform: uppercase;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}

.single-product .btn-outlined {
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: #F9F2DF;
  padding: 14px 30px;
  border: 1px solid #ba9662;
  text-transform: uppercase;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}

.btn.loadMoreBtn.btn-outlined {
  color: #F9F2DF;
}

.btn-outlined:hover, .btn-outlined:focus, .btn-outlined:active {
  color: #F9F2DF;
  padding-left: 45px;
  padding-right: 45px;
}

.btn-outlined.primarytype {
  border-color: #ba9662;
}

.btn-outlined.primarytype.textblue {
  color: #1b3975;
}

.btn-outlined.primarytype.textgold {
  color: #ba9662;
}

.btn-outlined.secondarytype {
  border-color: #1b3975;
}

.btn-outlined.bordergray {
  border-color: #a09b96;
}

.btn-outlined.textbrightblue {
  color: #426eaf;
}

.no-outlined {
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: #424045;
  padding: 14px 30px;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
  text-transform: uppercase;
}

.no-outlined:hover, .no-outlined:focus, .no-outlined:active {
  color: #424045;
  padding-left: 45px;
  padding-right: 45px;
}

.counttype {
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
  color: #fff;
  line-height: 1.8;
  font-size: 12px;
  border-radius: 100%;
  width: 1.8em;
  height: 1.8em;
  text-align: center;
}

.btn:active, .btn.active {
  box-shadow: none;
}

.section {
  text-align: center;
  float: left;
  width: 100%;
  clear: both;
  position: relative;
  min-height: 100vh;
}

.nopadd {
  padding-left: 0;
  padding-right: 0;
}

.bgset_img {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  -webkit-background-size: cover !important;
  background-position: center center !important;
}

.img-propeq1 {
  position: relative;
}

.img-propeq1:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.withoverlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.overlay_white {
  background: rgba(255, 255, 255, 0.8);
}

.overlay_blue {
  background-color: rgba(48, 52, 98, 0.2);
}

.overlay_black {
  background: rgba(0, 0, 0, 0.52);
}

.overlay_brown {
  background: rgba(70, 66, 64, 0.52);
}

.overlay_lightblue {
  background-color: rgba(25, 35, 65, 0.5);
}

#fp-nav ul li, .fp-slidesNav ul li {
  background-image: none;
  padding-left: 0;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  color: white;
}

.poserimg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  -webkit-background-size: cover !important;
}

.video-foreground {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

@media (max-width: 1090px) {
  .video-foreground {
    position: absolute;
  }
}
.video-foreground video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: contain;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground video {
    height: 160%;
    top: -29%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground video {
    height: 160%;
    top: -29%;
  }
}
.in-videowrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@media (max-width: 767px) {
  .in-videowrap {
    position: static;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .in-videowrap {
    min-height: 360px;
  }
}
.in-videowrap iframe {
  width: 100%;
  height: 100%;
}

.logo {
  width: 400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.logo img {
  width: 100%;
}

.block-1 {
  overflow: hidden;
}

.block-1 .withoverlay {
  z-index: 1;
}

.block-1 .spot_content {
  position: absolute;
  width: 470px;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
}

@media (max-width: 767px) {
  .block-1 .spot_content {
    width: 80%;
  }
}
.block-1 .btn-algnd {
  text-align: center;
  bottom: 0;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 5;
  padding-bottom: 10%;
}

.block-1 .social-links {
  position: absolute;
  bottom: 3%;
  left: 1%;
  z-index: 1;
}

@media (max-width: 767px) {
  .block-1 .logo, .block-2 .logo {
    width: 70%;
  }
}
.btnplay {
  width: 50px;
  height: 50px;
  display: block;
  margin: 25px auto;
}

.btnplay img {
  width: 100%;
}

.togglemenu {
  color: #f9f2df;
  vertical-align: middle;
  font: 15px "SabonMTStd-Regular", Arial, sans-serif;
  position: fixed;
  z-index: 13;
  top: 25px;
  left: 25px;
}

@media (max-width: 767px) {
  .togglemenu {
    top: 15px;
    left: 15px;
  }
}
.togglemenu button {
  background-color: transparent;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}

.togglemenu button .bars {
  display: block;
  height: 3px;
  background-color: #f9f2df;
  width: 30px;
  opacity: 1;
  margin-top: 8px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.togglemenu button .bars:first-child {
  margin-top: 0;
}

.togglemenu button .bars.bar1 {
  width: 25px;
}

.togglemenu button .bars.bar3 {
  width: 18px;
}

.togglemenu .menutxt {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  text-transform: uppercase;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  letter-spacing: 1px;
  margin-left: 10px;
}

@media (max-width: 480px) {
  .togglemenu .menutxt {
    display: none;
  }
}
.togglemenu:hover, .togglemenu:focus, .togglemenu:active {
  color: #f0f0f0;
}

.togglemenu:hover button .bars {
  width: 30px;
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #1b3975;
  -webkit-transition: left 0.2s ease;
  transition: left 0.2s ease;
  z-index: 12;
  -ms-transform: scale(0);
      transform: scale(0);
  -webkit-transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media (max-height: 767px) {
  .sidebar {
    overflow: auto;
  }
}
.sidebar ul {
  padding-left: 0;
  margin-bottom: 0;
}

.sidebar li {
  margin-top: 22px;
  padding-left: 0;
  background-image: none;
}

.sidebar li:first-child {
  margin-top: 0;
}

.sidebar li a {
  color: #90a0b9;
  text-transform: uppercase;
  font: 28px "StrayhornMT-Bold", Arial, sans-serif;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

@media (max-width: 767px) {
  .sidebar li a {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .sidebar li a {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .sidebar li a {
    font-size: 20px;
  }
}
.sidebar li a:hover {
  color: white;
  font-size: 35px;
}

@media (max-width: 480px) {
  .sidebar li a:hover {
    font-size: 24px;
  }
}
.sidebar li.active a {
  color: #ba9662;
}

.sidebar li:first-child {
  margin-top: 0;
}

.sidebar .slimScrollDiv, .sidebar .scrollwrap {
  height: 90% !important;
}

.sidebar .slimScrollDiv {
  margin-top: 75px;
}

@media (min-width: 1024px) {
  .sidebar .slimScrollDiv {
    margin-top: 100px;
  }
}
.sidebar .scrollwrap ul {
  margin: 20px;
}

@media (min-width: 767px) {
  .sidebar .scrollwrap ul {
    margin: 30px 60px;
  }
}
@media (min-width: 1024px) {
  .sidebar .scrollwrap ul {
    margin: 0 68px 0;
  }
}
.sidebar .scrollwrap li .menu-image-hover-wrapper {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .sidebar .scrollwrap li .menu-image-hover-wrapper {
    display: none;
  }
}
.sidebar .scrollwrap li .menu-image-hover-wrapper img {
  opacity: 0;
  margin-left: 0 !important;
  height: 100%;
  width: 100%;
}

.sidebar .scrollwrap li:hover .menu-image-hover-wrapper img {
  opacity: 1;
}

.sidebar .block_divide {
  float: left;
  width: 100%;
  position: relative;
}

.sidebar .block_divide .img_equal_elem {
  height: 100%;
}

@media (min-width: 767px) {
  .sidebar .block_divide {
    width: 50%;
    height: 100%;
  }
}
.sidebar .block_divide .videowrap {
  position: fixed;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

@media (max-width: 767px) {
  .sidebar .block_divide .videowrap {
    bottom: auto;
    right: auto;
    position: static;
  }
}
.sidebar .block_divide video {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media (max-width: 767px) {
  .sidebar .block_divide video {
    width: 100%;
    position: relative;
  }
}
.sidebar ul.social-links {
  margin: 20px;
}

@media (min-width: 767px) {
  .sidebar ul.social-links {
    margin: 30px 60px;
  }
}
@media (min-width: 1024px) {
  .sidebar ul.social-links {
    margin: 72px 68px 25px;
  }
}
.sidebar ul.social-links a img {
  width: 15px;
  height: 15px;
}

.sidebar ul.social-links li {
  margin-top: 0;
}

.sidebar-open {
  overflow: hidden !important;
}

.sidebar-open .sidebar {
  -ms-transform: scale(1);
      transform: scale(1);
  -webkit-transform: scale(1);
  opacity: 1;
}

.sidebar-open .togglemenu button {
  margin-top: -22px;
}

.sidebar-open .togglemenu .bars {
  margin: 0;
  position: relative;
}

.sidebar-open .togglemenu .bars.bar1 {
  width: 30px;
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
  background-color: #F9F2DF !important;
}

.sidebar-open .togglemenu .bars.bar2 {
  opacity: 0;
  display: none;
}

.sidebar-open .togglemenu .bars.bar3 {
  width: 30px;
  -webkit-transform: translate3d(0, 7px, 0) rotate(-45deg);
          transform: translate3d(0, 7px, 0) rotate(-45deg);
  background-color: #F9F2DF !important;
}

.sidebar-open .togglemenu .menutxt {
  color: #F9F2DF !important;
}

.sidebar-open #fp-nav {
  display: none;
}

.from_barleyicon {
  width: 386px;
  height: 17px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

@media (max-width: 1360px) {
  .from_barleyicon {
    margin-bottom: 20px;
  }
}
.from_barleyicon img {
  width: 100%;
}

@media (max-width: 480px) {
  .from_barleyicon {
    width: 100%;
  }
}
.block-2.bgset_img {
  background-position: right center !important;
  background-size: contain !important;
  background-color: #213f70 !important;
}

@media (max-width: 1366px) {
  .block-2.bgset_img {
    background-size: cover !important;
  }
}
.block-2 .kilcho-s1 .btn {
  margin-top: 50px;
}

@media (max-width: 1360px) {
  .block-2 .logo {
    margin-bottom: 25px;
  }
}
.stagedetail {
  margin-bottom: 30px;
}

.stagedetail span {
  display: inline-block;
  text-transform: uppercase;
  color: #1b3975;
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
}

.stagedetail span:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 15px;
  border-radius: 100%;
  vertical-align: middle;
  background-color: #1b3975;
}

.stagedetail span:first-child:before {
  display: none;
}

.block-3 {
  background-color: #fff;
}

.block-3 .detail_elements {
  background-position: bottom left !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  text-align: center;
  background-color: #ffffff;
  padding: 5%;
}

@media (max-width: 992px) {
  .block-3 .detail_elements {
    padding: 55px 10px;
  }
}
.block-3 .detail_elements h3 {
  font: 46px "StrayhornMT-Bold", Arial, sans-serif;
  text-transform: uppercase;
  color: #ba9662;
}

.block-3 .detail_elements p {
  padding-left: 2%;
  padding-right: 2%;
  font-size: 17px;
  line-height: 1.8;
}

@media (max-width: 1360px) {
  .block-3 .detail_elements {
    vertical-align: top;
  }
}
.block-3 .v-alignparent {
  height: 100%;
}

@media (max-width: 1360px) {
  .block-3 .stagedetail {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .fp-section.block-3.fp-table, .fp-tableCell, .fp-slide.fp-table, .block-3 .fp-tableCell {
    padding: 0;
  }
}
.img-wraphold {
  position: relative;
  overflow: hidden;
}

.img-wraphold .img-prop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

@media (max-width: 992px) {
  .img-wraphold .img-prop {
    position: static;
    width: 100%;
  }
}
.item-selector {
  background: white;
  position: absolute;
  bottom: 5%;
  left: 5%;
  right: 5%;
  z-index: 2;
  box-shadow: 0 1px 46px 14px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) and (max-width: 1600px) and (min-height: 520px) and (max-height: 720px) {
  .main-page-wrapper .block-3 {
    height: auto !important;
  }

  .item-selector {
    background: #fff;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    box-shadow: 0 1px 46px 14px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .item-selector {
    display: block !important;
    white-space: nowrap;
    overflow-X: scroll;
  }
}
@media (max-width: 767px) {
  .item-selector {
    display: block !important;
    white-space: nowrap;
    overflow-X: scroll;
  }
}
.item-selector ul {
  padding-left: 0;
  margin-bottom: 0;
  display: block;
}

.item-selector li, .item-selector .item {
  text-align: center;
  padding: 15px 15px 20px;
  background-image: none;
  display: inline-block;
  width: 12%;
  cursor: pointer;
}

@media (max-width: 767px) {
  .item-selector li, .item-selector .item {
    width: auto;
  }
}
.item-selector li i, .item-selector .item i {
  width: 65px;
  height: 65px;
  display: inline-block;
  margin-bottom: 10px;
}

.item-selector li i img, .item-selector .item i img {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  /* Ch 23+, Saf 6.0+, BB 10.0+ */
  -moz-filter: grayscale(100%);
  /* Ch 23+, Saf 6.0+, BB 10.0+ */
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.item-selector li span, .item-selector .item span {
  text-transform: uppercase;
  display: block;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  color: #cac3bb;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.item-selector li.active, .item-selector .item.active {
  position: relative;
}

.item-selector li.active span, .item-selector .item.active span, .item-selector li:hover span, .item-selector .item:hover span {
  color: #ba9662;
}

.item-selector li.active i img, .item-selector .item.active i img, .item-selector li:hover i img, .item-selector .item:hover i img {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  /* Ch 23+, Saf 6.0+, BB 10.0+ */
  -moz-filter: grayscale(0%);
  /* Ch 23+, Saf 6.0+, BB 10.0+ */
  opacity: 1 !important;
}

.item-selector li.active:before, .item-selector .item.active:before {
  content: "";
  display: block;
  background-color: #ba9662;
  height: 3px;
  max-width: 100px;
  position: absolute;
  bottom: 0;
  left: 2%;
  right: 2%;
  margin: 0 auto;
}

.item-selector li.active i img, .item-selector .item.active i img {
  opacity: 0.6;
}

.item-selector li a, .item-selector .item a {
  display: block;
}

@media (max-width: 1360px) {
  .item-selector li, .item-selector .item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.wrap-containtab {
  position: relative;
  height: 100%;
}

.wrap_intab {
  height: 100%;
  display: none;
}

.wrap_intab .v-alignparent {
  height: 100%;
  display: table;
  width: 100%;
}

@media (max-width: 992px) {
  .wrap_intab {
    /*height: auto;*/
  }

  .wrap_intab .detail_elements {
    vertical-align: middle !important;
  }
}
.wrap_intab .in_blocks {
  display: table-cell;
  width: 50%;
  min-height: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .wrap_intab .in_blocks {
    min-height: 100vh;
    height: 100%;
  }
}
@media (max-width: 992px) {
  .wrap_intab .in_blocks {
    /*display: block;
    width: 100%;*/
  }
}
.wrap_intab .detail_elements {
  vertical-align: top;
}

.wrap_intab.active {
  display: block !important;
}

.block-4, .block-4 .fp-tableCell {
  vertical-align: top;
}

.block-4 .btn-outlined {
  position: relative;
}

@media (max-width: 767px) {
  .block-4 .fp-tableCell {
    padding: 0;
  }
}
.sm-map {
  display: inline-block;
  transition: linear 0.5s;
  -webkit-transition: linear 0.5s;
  -moz-transition: linear 0.5s;
  opacity: 0;
}

.lft .block-bottom, .rgt .block-bottom, .lft .prograsswrap, .rgt .prograsswrap {
  transition: linear 0.5s;
  -webkit-transition: linear 0.5s;
  -moz-transition: linear 0.5s;
  opacity: 0;
}

.hideimage .sm-map, .comparison_slider.leftmove .lft .sm-map {
  opacity: 0;
}

.hideimage .block-bottom, .hideimage .prograsswrap, .comparison_slider.leftmove .lft .block-bottom, .comparison_slider.leftmove .lft .prograsswrap {
  opacity: 0;
}

.hideimage .sm-map, .comparison_slider.rightmove .rgt .sm-map {
  opacity: 0;
}

.hideimage .block-bottom, .hideimage .prograsswrap, .comparison_slider.rightmove .rgt .block-bottom, .comparison_slider.rightmove .rgt .prograsswrap {
  opacity: 0;
}

.sm-map img {
  width: 100%;
}

.comparison_slider.leftmove .rgt .sm-map {
  opacity: 1;
}

.comparison_slider.leftmove .rgt .prograsswrap {
  opacity: 1;
}

.comparison_slider.leftmove .rgt .block-bottom {
  opacity: 1;
}

.comparison_slider.rightmove .lft .sm-map {
  opacity: 1;
}

.comparison_slider.rightmove .lft .prograsswrap {
  opacity: 1;
}

.comparison_slider.rightmove .lft .block-bottom {
  opacity: 1;
}

.hideimage.leftmove.rightmove .sm-map, .hideimage.leftmove.rightmove .prograsswrap, .hideimage.leftmove.rightmove .block-bottom {
  opacity: 0;
}

.detalwrap-block {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 460px;
  right: 150px;
  left: auto;
  text-align: center;
  z-index: 1;
}

.detalwrap-block h2 {
  font: 40px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9662;
  text-transform: uppercase;
}

.detalwrap-block.lftblock {
  left: 150px;
  right: auto;
}

.detalwrap-block p {
  color: #F9F2DF;
  font: 17px/1.5 "Source Sans Pro", sans-serif;
  font-weight: 300;
}

.opacity_bg {
  background: white url(/wp-content/themes/kilchoman/img/slider_shade.png) top left repeat-y;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.prograsswrap {
  margin-top: 30px;
}

.block-bottom i {
  width: 54px;
  height: 54px;
  display: inline-block;
}

.block-bottom i img {
  width: 100%;
  position: static;
}

.block-bottom h4 {
  color: #ba9662;
  font: 25px "StrayhornMT-Bold", Arial, sans-serif;
  text-transform: uppercase;
}

.block-bottom .icon-sm img {
  position: static;
}

.progess-block {
  border-top: 2px dotted white;
  border-bottom: 2px dotted white;
  /*  width: 250px;*/
  width: 85%;
  margin: 0 auto;
  position: relative;
}

.progess-block .progess-value {
  height: 15px;
  margin: 3px 0;
  background-color: #ba9662;
}

.progess-block .progess-value .progess-value-inner {
  background-color: #f9f2df;
  height: 15px;
  width: 50%;
}

.fp-viewing-1 .progess-block .progess-value .progess-value-inner {
  -webkit-animation: progressanim 1s 2s ease-out forwards;
          animation: progressanim 1s 2s ease-out forwards;
}

@-webkit-keyframes progressanim {
  0% {
    width: 50%;
  }
  100% {
    width: 70%;
  }
}

@keyframes progressanim {
  0% {
    width: 50%;
  }
  100% {
    width: 70%;
  }
}
.group-value {
  position: absolute;
  width: 100%;
  margin-top: 10px;
}

.group-value label {
  color: white;
  float: right;
  text-transform: uppercase;
  font: 16px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9662;
}

.group-value label:first-child {
  float: left;
  color: #f9f2df;
}

.bgmain:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(35, 53, 103, 0);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(35, 53, 103, 0)), color-stop(100%, #423a45));
  background: -webkit-gradient(linear, left top, right top, from(rgba(35, 53, 103, 0)), to(#423a45));
  background: linear-gradient(to right, rgba(35, 53, 103, 0) 0%, #423a45 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#233567", endColorstr="#423a45", GradientType=1);
  z-index: 1;
}

.emblom1 {
  position: absolute;
  right: -50px;
  z-index: -1;
  bottom: 4px;
  width: 93px;
}

.wrap {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.wrap .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
  -webkit-transform: scale(2.2);
      -ms-transform: scale(2.2);
          transform: scale(2.2);
}

.p-rel {
  position: relative;
  height: 100%;
}

.with-path {
  position: relative;
}

.with-path:after {
  content: "";
  display: inline-block;
  width: 2px;
  position: absolute;
  left: 50%;
  bottom: -44px;
  height: 100%;
  background-color: #ba9662;
  display: none;
  /*  transform: translateX(-50%);
  -webkit-transform: translateX(-50%); */
}

.with-path:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 50%;
  bottom: 52px;
  background: url("/wp-content/themes/kilchoman/img/pointer.svg") 0 0 no-repeat;
  z-index: 10;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  display: none;
}

.path-wrap {
  position: absolute;
  z-index: 1000;
  left: -11px;
  /* bottom: 221px; */
  /* transform: translateX(-50%); */
  /* -webkit-transform: translateX(-50%); */
  z-index: 4;
  bottom: 300px;
  /* right: 0; */
}

.path-wrap img {
  width: 210px;
  height: 493px;
}

@media (max-width: 992px) {
  .islay-map {
    position: relative;
  }
}
/*.islay-map {position: relative;width: 50%;float: right;text-align: left;}*/
.islay-map img {
  width: auto;
  height: auto;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  max-width: 600px;
  position: absolute;
  /* right: 0; */
  margin-left: -18px;
  top: 0;
  /* left: 0; */
  /* margin: 0 auto; */
  /* margin-left: 300px; */
  /* margin-right: auto; */
}

@media (max-width: 992px) {
  .islay-map img {
    max-width: 450px;
    width: 100%;
    position: static;
  }
}
@media (max-width: 1360px) {
  .islay-map img {
    max-width: 450px;
  }
}
.map-pathsvg {
  position: absolute;
  top: 0;
}

.scrollarrow_btn {
  display: inline-block;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: url("/wp-content/themes/kilchoman/img/arrow_bottom.png") 0 0 no-repeat;
  width: 35px;
  height: 18px;
}

.scrollarrow_btn.arrow_white {
  background: url("/wp-content/themes/kilchoman/img/arrow_bottom-white.png") 0 0 no-repeat;
}

.bodyheight .main-wrap {
  height: 100%;
}

.main-wrap {
  padding-top: 77px;
}

@media (max-width: 767px) {
  .main-wrap {
    padding-top: 57px;
  }
}
.home .main-wrap {
  padding-top: 0;
}

.scroll-wrapper {
  background-color: #fff;
  position: relative;
  margin: 0 auto;
  /* height: 100%;
  min-height: 427px; */
  text-align: center;
}

.scroll-wrapper .scale {
  margin: 0 auto;
  min-height: 500px;
  will-change: transform;
  /*    z-index: 8;*/
  opacity: 0;
}

.scroll-wrapper .layer-1 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: -5%;
  left: 0;
  /* text-align: center; */
  /* font-size: 10em; */
  /* background-repeat: no-repeat !important; */
  /* background-size: cover!important; */
  background-position: center top !important;
  /*    opacity: 0;*/
}

.scroll-wrapper .layer-2 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 3%;
  left: 0;
  text-align: center;
  /* font-size: 10em; */
  /* background-repeat: no-repeat !important; */
  background-size: contain !important;
  background-position: center 0 !important;
  /*    opacity: 0;*/
}

.workshop-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 400px;
}

.workshop-img {
  display: block;
  width: 100%;
}

.workshop-img > span {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.workshop-section img {
  width: 100%;
  height: auto;
}

.scroll-wrapper .scrollzoom {
  margin: 0 auto;
  min-height: 500px;
  will-change: transform;
}

.scroll-wrapper .layer-1 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: -5%;
  left: 0;
  /* text-align: center; */
  /* font-size: 10em; */
  /* background-repeat: no-repeat !important; */
  /* background-size: cover!important; */
  background-position: center 73% !important;
}

.scroll-wrapper .layer-2 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 3%;
  left: 0;
  text-align: center;
  /* font-size: 10em; */
  /* background-repeat: no-repeat !important; */
  background-size: contain !important;
  background-position: center 0 !important;
}

.scroll-wrapper .layer-2 {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center 90% !important;
}

.scroll-wrapper .layer-1 {
  height: 165%;
  top: -65%;
  background-size: cover !important;
}

.scroll-wrapper .detail_block {
  position: absolute;
  top: 20px;
  left: 2%;
  right: 2%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  z-index: 8;
}

.scroll-wrapper .detail_block p {
  font-size: 18px;
  max-width: 73%;
  margin: 0 auto 25px;
}

.scroll-wrapper .detail_block .txtrunning {
  display: inline-block;
  margin-bottom: 25px;
}

.main-page-wrapper {
  position: relative;
  height: 100%;
  background: white;
  z-index: 1;
}

.main-page-wrapper .block-6 {
  padding: 5% 0;
}

.main-page-wrapper .section {
  float: left;
  width: 100%;
  position: relative;
}

.main-page-wrapper .block-3 {
  min-height: 100%;
  height: 100%;
}

.plain-block {
  position: relative;
  padding: 2%;
  display: block;
  float: left;
  width: 100%;
  background-color: #e2ddd7;
}

.plain-block .img_place {
  width: 100%;
  float: left;
}

@media (min-width: 992px) {
  .plain-block {
    display: -webkit-box;
    display: flex;
    -webkit-display: flex;
  }
}
.plain-block .img_switchgroup {
  width: 100%;
}

@media (min-width: 992px) {
  .plain-block .img_switchgroup {
    width: 55%;
  }
}
.img_switchgroup {
  width: 55%;
}

.img_switchgroup .itemz {
  display: none;
}

.img_switchgroup .itemz.active {
  display: block;
}

.plain_detailwrap {
  position: relative;
  float: left;
  width: 96%;
  margin-top: -50px;
  margin-left: 2%;
  margin-right: 2%;
}

@media (min-width: 992px) {
  .plain_detailwrap {
    width: 45%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.plain_detailwrap .plain_detail {
  background-color: white;
  padding: 5%;
  position: static;
  width: 100%;
  box-shadow: 0px 0px 58px -1px rgba(0, 0, 0, 0.15);
}

.plain_detailwrap .plain_detail:before {
  display: none;
}

@media (min-width: 992px) {
  .plain_detailwrap .plain_detail:before {
    content: "";
    display: block;
    background-color: #fff;
    height: 100%;
    width: 100px;
    position: absolute;
    left: -100px;
    top: 0;
  }
}
.plain_detailwrap .plain_detail .owl-carousel {
  margin-left: 0;
}

@media (min-width: 992px) {
  .plain_detailwrap .plain_detail .owl-carousel {
    margin-left: -75px;
    width: auto;
  }
}
@media (min-width: 1500px) {
  .plain_detailwrap .plain_detail .owl-carousel {
    margin-left: -100px;
    width: auto;
  }
}
.plain_detailwrap .plain_detail .owl-carousel {
  width: auto;
}

.plain_detailwrap .plain_detail h2 {
  text-transform: uppercase;
  color: #1b3975;
  margin-bottom: 10px;
}

@media (min-width: 1500px) {
  .plain_detailwrap .plain_detail h2 {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .plain_detailwrap .plain_detail h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .plain_detailwrap .plain_detail h2 {
    font-size: 28px;
  }
}
.plain_detailwrap .plain_detail p {
  font-size: 17px;
  margin-bottom: 15px;
}

@media (min-width: 1200px) {
  .plain_detailwrap .plain_detail p {
    margin-bottom: 25px;
  }
}
@media (min-width: 992px) {
  .plain_detailwrap .plain_detail {
    position: absolute;
    padding: 58px;
    top: 5%;
    bottom: 5%;
  }
}
@media (min-width: 1500px) {
  .plain_detailwrap .plain_detail {
    padding: 58px;
  }
}
.img_equal_elem {
  position: relative;
}

.img_equal_elem:before {
  content: "";
  display: block;
}

.img_equal_elem.eqal_1:before {
  padding-bottom: 104%;
}

.img_equal_elem.eqal_2:before {
  padding-bottom: 55%;
}

.img_equal_elem.eqal_3:before {
  padding-bottom: 62.5%;
}

.img_equal_elem.eqal_4:before {
  padding-bottom: 150%;
}

.img_equal_elem iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /* width: 5000%;
  height: 5000%;
  transform: scale(0.02);
  transform-origin: top left;*/
}

.with-bgemblom {
  background-image: url("/wp-content/themes/kilchoman/img/Group-559.png");
  background-position: 112% -18%;
  background-repeat: no-repeat;
  background-size: 260px 260px;
}

.group_owlcontol {
  position: static;
  margin-left: 0;
  left: 0;
  bottom: 0;
}

.group_owlcontol .custom_owlbtn {
  display: inline-block;
  padding: 14px;
  background: green;
  border-radius: 100%;
  vertical-align: middle;
  background-color: #e2ddd7;
  margin: 0 20px;
  line-height: 0.5;
  cursor: pointer;
  position: relative;
}

.group_owlcontol .custom_owlbtn:before {
  content: "";
  display: inline-block;
  font-size: 10px;
  color: #ba9662;
  font-family: "FontAwesome";
  line-height: 0;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.group_owlcontol .customPrevBtn {
  margin-left: 0;
}

.group_owlcontol .customPrevBtn:before {
  content: "\F053";
}

.group_owlcontol .customNextBtn {
  margin-right: 0;
}

.group_owlcontol .customNextBtn:before {
  content: "\F054";
}

.group_owlcontol label {
  font-style: italic;
  font-size: 18px;
  color: #ba9662;
}

@media (min-width: 992px) {
  .group_owlcontol {
    position: absolute;
    bottom: 50px;
    left: -50px;
  }
}
.icon-social a {
  line-height: 0 !important;
  text-indent: -999em;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: cover !important;
  -webkit-background-size: cover !important;
}

.icon-social.facebook a {
  background: url(/wp-content/themes/kilchoman/img/facebook.svg) 0 0 no-repeat;
}

.icon-social.facebook.colortype a {
  background: url("/wp-content/themes/kilchoman/img/facebook_color.svg") 0 0 no-repeat;
}

.icon-social.twitter a {
  background: url("/wp-content/themes/kilchoman/img/twitter.svg") 0 0 no-repeat;
}

.icon-social.twitter.colortype a {
  background: url("/wp-content/themes/kilchoman/img/twitter_color.svg") 0 0 no-repeat;
}

.icon-social.instagram a {
  background: url("/wp-content/themes/kilchoman/img/instagram.svg") 0 0 no-repeat;
}

.icon-social.vimeo a {
  background: url("/wp-content/themes/kilchoman/img/vimeo.svg") 0 0 no-repeat;
}

.icon-social.icon-mail a {
  background: url("/wp-content/themes/kilchoman/img/icon_mail.svg") 0 0 no-repeat;
  background-size: contain !important;
  -webkit-background-size: contain !important;
}

.block-3 .wrarr.active, .customtab_wrap.active {
  display: block;
}

.block-3 .wrarr {
  display: none;
  height: 100%;
  float: left;
  width: 100%;
  background-color: #fff;
}

.customtab_wrap {
  display: none;
}

.head_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.head_logo img {
  max-width: 150px;
  width: 100%;
}

@media (max-width: 767px) {
  .head_logo img {
    width: 110px;
  }
}
@media (max-width: 480px) {
  .head_logo {
    left: 115px;
  }
}
.gridlists {
  margin-top: 80px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.gridlists ul {
  margin: 50px auto;
  width: 100%;
  float: left;
}

.gridlists li {
  padding-left: 0;
  background-image: none;
  width: 100%;
  float: left;
  position: relative;
  padding: 0;
}

@media (min-width: 767px) {
  .gridlists li {
    width: 50%;
    padding: 0 1%;
    margin-top: -40px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .gridlists li {
    padding: 0 1.5%;
  }
}
.gridlists li:nth-child(2n+2) {
  top: 0;
}

@media (min-width: 767px) {
  .gridlists li:nth-child(2n+2) {
    top: 80px;
  }
}
.gridlists li .item-wrap {
  box-shadow: 0px 0px 66px 3px rgba(0, 0, 0, 0.15);
}

.gridlists .img_equal_elem.eqal_2:before {
  padding-bottom: 42%;
}

.gridlists .itemdetals {
  padding: 20px;
  text-align: left;
  background-position: 120% -80px;
}

.gridlists .itemdetals h3 {
  font-size: 37px;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
}

.gridlists .itemdetals h3 a {
  color: #ba9662;
}

.gridlists .itemdetals .sub_item {
  font-size: 17px;
  color: #6fb3e4;
  margin-bottom: 20px;
  display: block;
  font-style: italic;
  font-weight: 400;
  margin-top: 9px;
}

.gridlists .itemdetals p {
  font-size: 17px;
  color: black;
  margin-bottom: 0;
  line-height: 1.7;
}

@media (min-width: 992px) {
  .gridlists .itemdetals {
    background-position: 140% -90px;
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .gridlists .itemdetals {
    background-position: 111% -60px;
  }
}
.gridlists .img_place {
  background-position: center top !important;
  -webkit-background-position: center top !important;
}

.pt {
  padding-top: 75px;
}

.detail_block_md {
  margin: 15px 0;
  text-align: center;
}

@media (min-width: 992px) {
  .detail_block_md {
    margin: 0 0 25px;
    padding-top: 25px;
  }
}
@media (min-width: 1400px) {
  .detail_block_md {
    margin: 0 0 70px;
    padding-top: 60px;
  }
}
.detail_block_md h2 {
  text-transform: uppercase;
  color: #1b3975;
  font-size: 34px;
  margin: 15px 0;
}

@media (min-width: 992px) {
  .detail_block_md h2 {
    margin: 25px 0;
    font-size: 44px;
  }
}
.detail_block_md p {
  line-height: 1.7;
  color: #7c7c7c;
  font-size: 17px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

@media (min-width: 767px) {
  .detail_block_md p {
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .detail_block_md p {
    max-width: 33%;
  }
}
.detail_block_md.with-bgemblom {
  background-position: 105% -89px;
  background-size: auto;
}

.btn-playtype1 {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("/wp-content/themes/kilchoman/img/play_icon2.svg") no-repeat;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  background-size: contain;
  width: 60px;
  height: 60px;
  z-index: 1;
  border-radius: 100%;
  cursor: pointer;
}

.mejs-overlay-button {
  opacity: 0.8;
  background: url("/wp-content/themes/kilchoman/img/play_icon2.svg") no-repeat !important;
  background-size: contain !important;
  width: 40px !important;
  height: 40px !important;
}

.mejs-overlay-button:focus {
  outline: 0;
}

.social-links, .social-links2 {
  margin-bottom: 0;
}

.social-links li, .social-links2 li {
  display: inline-block;
  list-style-type: none;
  background: none;
  padding-left: 0;
  margin-left: 24px;
}

.social-links li:first-child, .social-links2 li:first-child {
  margin-left: 0;
}

.social-links li a:hover, .social-links2 li a:hover {
  opacity: 0.4;
}

.minheight_imgspot {
  position: relative;
}

.minheight_imgspot .img_equal_elem.eqal_2:before {
  padding-bottom: 141%;
}

.minheight_imgspot .detail_block {
  position: fixed;
  top: 20%;
  left: 2%;
  right: 2%;
  max-width: 30%;
  margin: 0 auto;
  text-align: center;
}

.minheight_imgspot .detail_block h2 {
  color: #f9f2df;
  text-transform: uppercase;
  font-size: 50px;
  margin: 25px 0;
}

.minheight_imgspot .detail_block p {
  font-size: 18px;
  color: #f9f2df;
}

.full-page-fluid .fullpage-wrapper {
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.full-page-fluid {
  overflow: auto !important;
}

.short_block {
  padding: 15px 20px;
  background-color: #fff;
  font-size: 18px;
  margin-top: -100px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  text-align: center;
  box-shadow: 0px 0px 66px 3px rgba(0, 0, 0, 0.15);
}

.short_block.with-bgemblom {
  background-position: 111% -60px;
}

@media (min-width: 768px) {
  .short_block {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .short_block {
    padding: 60px 75px;
    max-width: 750px;
  }
}
.with_line-border {
  text-transform: uppercase;
  color: #1b3975;
  font: 18px "StrayhornMT-Bold", Arial, sans-serif;
  display: block;
  position: relative;
  max-width: 290px;
  margin: 20px auto;
  text-align: center;
}

.with_line-border:after, .with_line-border:before {
  content: "";
  border: 1px dotted #e2ddd7;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20%;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-radius: 4px 1px 3px 3px;
}

.with_line-border:after {
  right: 0;
  left: auto;
}

.productslide_cover {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  padding: 0 0 30px;
}

@media (max-width: 992px) {
  .productslide_cover {
    display: block;
    display: -webkit-block;
  }
}
.productslide_cover .group_owlcontol {
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  text-align: center;
  margin: 10px 0 20px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0px;
  width: 100%;
  z-index: 2;
}

.productslide_cover .group_owlcontol label {
  font-style: normal;
}

@media (max-width: 992px) {
  .productslide_cover .group_owlcontol .custom_owlbtn {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (min-width: 1400px) {
  .productslide_cover {
    width: 70%;
  }
}
.productslide_cover .img_switchgroup .img_place {
  background-size: contain !important;
  -webkit-background-size: contain !important;
}

@media (min-width: 767px) and (max-width: 992px) {
  .productslide_cover .img_switchgroup {
    width: 53%;
  }
}
@media (max-width: 992px) {
  .productslide_cover .img_switchgroup {
    width: 80%;
    margin: 0 auto;
  }
}
.plain_detailwrap_new {
  width: 45%;
  position: relative;
}

@media (min-width: 767px) and (max-width: 992px) {
  .plain_detailwrap_new {
    width: 48%;
  }
}
@media (max-width: 992px) {
  .plain_detailwrap_new {
    width: 100%;
  }
}
.plain_detailwrap_new {
  padding: 0px 0;
}

.plain_detailwrap_new .plain_detail {
  height: 100%;
  position: static;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0;
}

.plain_detailwrap_new .plain_detail .block_detailhead {
  text-align: center;
  padding: 34px 50px;
  background-position: 132% -70px;
  background-color: #e2ddd7;
  margin-bottom: 50px;
}

@media (min-width: 1200px) {
  .plain_detailwrap_new .plain_detail .block_detailhead {
    /* padding: 44px 65px;*/
  }
}
@media (max-width: 992px) {
  .plain_detailwrap_new .plain_detail .block_detailhead {
    margin-bottom: 20px;
  }
}
.plain_detailwrap_new .plain_detail .block_detailhead h1 {
  font-size: 30px;
  color: #ba9662;
}

@media (min-width: 1200px) {
  .plain_detailwrap_new .plain_detail .block_detailhead h1 {
    font-size: 50px;
  }
}
.plain_detailwrap_new .plain_detail .block_detailhead p {
  font-size: 18px;
  color: black;
  line-height: 1.94em;
}

@media (max-width: 992px) {
  .plain_detailwrap_new .plain_detail {
    padding: 25px 0;
  }
}
.plain_detailwrap_new .block_detailbottom {
  text-align: center;
  margin-top: 0px;
}

.plain_detailwrap_new .block_detailbottom p {
  font-size: 18px;
  color: black;
  margin-bottom: 0;
}

.map_wrapper img {
  width: 100%;
}

.group_owlcontolwrap {
  position: relative;
}

.in-contentsWrap .in-contents {
  float: left;
  width: 100%;
}

@media (min-width: 992px) {
  .in-contentsWrap .in-contents {
    width: 50%;
  }
}
.divided_spotconent {
  position: relative;
}

.divided_spotconent .in-contentsWrap {
  position: absolute;
  left: 0;
  right: 0;
  width: 80%;
  height: 100%;
  top: 10%;
  margin: 0 auto;
}

.divided_spotconent .in-contentsWrap .icon-social a {
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .divided_spotconent .in-contentsWrap {
    width: 95%;
  }
}
@media (max-width: 992px) {
  .divided_spotconent .in-contentsWrap {
    top: 5%;
  }
}
.divided_spotconent .in-contents {
  text-align: center;
}

.divided_spotconent .in-contents.setpadding {
  padding: 0 25px;
}

@media (min-width: 1360px) {
  .divided_spotconent .in-contents.setpadding {
    padding: 0 45px;
  }
}
@media (max-width: 767px) {
  .divided_spotconent .in-contents.setpadding {
    padding: 0 10px;
  }
}
.divided_spotconent .in-contents p {
  color: #c8c1ba;
  font-size: 16px;
  line-height: 1.8;
}

.divided_spotconent .in-contents .logo {
  width: 320px;
  margin-bottom: 40px;
  height: auto;
}

@media (max-width: 992px) {
  .divided_spotconent .in-contents .logo {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .divided_spotconent .in-contents .logo {
    width: 280px;
  }
}
.divided_spotconent .elem_tel, .divided_spotconent address {
  font-size: 16px;
}

.divided_spotconent address {
  margin-bottom: 30px;
}

.elem_tel, address {
  color: #ba9662;
  font: 20px "StrayhornMT-Bold", Arial, sans-serif;
}

.elem_tel {
  margin-bottom: 15px;
  margin-top: 25px;
  display: block;
}

.elem_tel:hover, .elem_tel:focus {
  color: #ba9662;
}

.elem_tel2 {
  color: #ba9662;
}

.elem_tel2:hover, .elem_tel2:focus {
  color: #ba9662;
}

.form_mainwrap {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -14%;
  position: relative;
  background-color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 100px -1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 100px -1px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
  height: 640px;
}

.form_mainwrap .form_inner {
  display: block;
  vertical-align: middle;
  width: 100%;
  padding: 25px;
}

.form_mainwrap .form_inner.with-bgemblom {
  background-size: 240px 240px;
  background-position: 123% -69px;
}

@media (min-width: 1360px) {
  .form_mainwrap .form_inner.with-bgemblom {
    background-position: 115% -76px;
  }
}
@media (min-width: 992px) {
  .form_mainwrap .form_inner {
    width: 50%;
    padding: 50px;
    display: table-cell;
  }
}
.form_mainwrap .form_inner h1 {
  font-size: 40px;
  text-transform: uppercase;
  color: #1b3975;
}

@media (min-width: 992px) {
  .form_mainwrap .form_inner h1 {
    font-size: 50px;
  }
}
.form_mainwrap .form_inner p {
  font-size: 18px;
  color: #000;
}

.form_mainwrap .form_inner.map_block {
  padding: 0;
}

.form_mainwrap .form_inner.map_block img {
  width: 100%;
  height: 100%;
}

.form_mainwrap .form_inner .form-group {
  margin-bottom: 25px;
}

.form_mainwrap .form_inner .slide_blocks {
  padding-top: 25px;
  display: none;
}

.form_mainwrap .form_inner .slide_blocks.active {
  display: block;
}

.form_mainwrap .form_inner .placeholdertxt {
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .form_mainwrap {
    display: table;
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .form_mainwrap {
    width: 80%;
    margin-bottom: 100px;
  }
}
.bottom_elements {
  position: relative;
}

.bottom_elements .btn {
  float: right;
}

.bottom_elements p {
  display: inline;
}

.control_dotsgroup {
  display: inline-block;
  margin-right: 25px;
  margin-top: 15px;
}

.control_dotsgroup .control_dots {
  background-color: transparent;
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 100%;
  border: 1px solid #ba9662;
}

.control_dotsgroup li {
  background-image: none;
  padding-left: 0;
  display: inline-block;
  margin-left: 5px;
}

.control_dotsgroup li:first-child {
  margin-left: 0;
}

.control_dotsgroup li.active .control_dots {
  background-color: #ba9662;
}

#form_submit {
  display: none;
}

.img_list-wrap {
  padding: 0 4%;
  margin-left: -3%;
  margin-top: -150px;
  float: left;
  /*width: 100%;*/
  position: relative;
}

.img_list-wrap .img_list_item {
  width: 30.33%;
  float: left;
  margin-left: 3%;
  margin-bottom: 30px;
  background: #fff;
  position: relative;
}

.img_list_item {
  box-shadow: 0px 0px 90px 3px rgba(0, 0, 0, 0.15);
  margin-top: 3%;
}

.img_list_details {
  padding: 30px;
  text-align: center;
  background-color: white;
}

.img_list_details h2 {
  text-transform: uppercase;
  color: #ba9662;
}

@media (max-width: 1300px) {
  .img_list_details h2 {
    font-size: 30px;
  }
}
.img_list_details p {
  font-size: 16px;
  color: #414042;
}

.img_list_details .btn {
  margin-top: 25px;
}

.lined_elements {
  margin: 20px 0;
  display: block;
}

.lined_elements strong {
  font-weight: normal;
  display: inline-block;
  color: #6fb3e4;
  font-size: 20px;
  vertical-align: middle;
}

.lined_elements strong:before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #e2ddd7;
  border-radius: 100%;
  vertical-align: top;
  margin: 10px 8px 0;
  line-height: 0;
}

.lined_elements strong:first-child:before {
  display: none;
}

.event-owners {
  font-weight: normal;
  display: inline-block;
  color: #6fb3e4;
  font-size: 20px;
  vertical-align: middle;
}

@media (max-width: 1300px) {
  .lined_elements strong {
    font-size: 18px;
  }

  .event-owners {
    font-size: 18px;
  }
}
.taxtdetail_block {
  margin: 0 auto;
  width: 70%;
  clear: both;
  padding: 50px 0;
}

.taxtdetail_block p {
  font-size: 18px;
}

.grouped_lists {
  margin-left: auto;
  margin-right: auto;
  padding: 100px 2% 0;
  float: left;
  width: 100%;
}

.grouped_lists ul {
  margin-left: -2%;
}

.grouped_lists li {
  width: 23%;
  background-image: none;
  padding-left: 0;
  float: left;
  margin-left: 2%;
  margin-bottom: 36px;
}

.grouped_lists .taxtdetail_block h3 {
  text-transform: uppercase;
  color: #ba9662;
}

a[href^="mailto:"] {
  color: #ba9662;
}

.popup-content {
  border-radius: 0;
  background-color: transparent;
  border: 0;
  box-shadow: 0px 0px 66px 3px rgba(0, 0, 0, 0.15);
  height: 560px;
}

body.bgpopup {
  background-color: transparent !important;
}

.fancybox-content {
  background: transparent;
  height: 80% !important;
  width: 100% !important;
}

@media (min-width: 768px) {
  .fancybox-content {
    width: 90% !important;
    vertical-align: top;
    margin-top: 120px;
  }
}
.fancybox-buttons {
  top: 120px;
  right: 5%;
}

.fancybox-buttons .fancybox-button--fullscreen {
  display: none !important;
}

.fancybox-button, .fancybox-button:hover {
  background-color: transparent;
  color: #000;
}

.fancybox-button--close:after, .fancybox-button--close:before {
  width: 22px;
  height: 3px;
  border-radius: 40%;
  top: calc(50% - -2px);
  left: calc(50% - 18px);
}

.fancybox-iframe {
  background: transparent;
}

.fancybox-bg {
  background-color: #bcb6af;
}

.modal-backdrop.in {
  opacity: 0.9;
}

.link_withicon {
  text-transform: uppercase;
  color: #ba9662;
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
}

.link_withicon:before {
  content: "";
  display: inline-block;
  background: url("/wp-content/themes/kilchoman/img/discover-icon.png") center center no-repeat;
  width: 31px;
  height: 31px;
  margin-right: 13px;
  vertical-align: middle;
}

.link_withicon:hover, .link_withicon:focus {
  color: #ba9662;
  opacity: 0.8;
}

.equal_divide_blocks {
  display: table;
  width: 100%;
  height: 100%;
}

.equal_divide_blocks .img_section, .equal_divide_blocks .inside_contents {
  display: table-cell;
  width: 50%;
  vertical-align: top;
}

.equal_divide_blocks .img_section {
  vertical-align: middle;
}

.equal_divide_blocks .inside_contents {
  background-color: #e2ddd7;
  padding: 87px 73px;
}

.equal_divide_blocks .inside_contents .blockHead {
  text-transform: uppercase;
}

.equal_divide_blocks .inside_contents p {
  margin: 23px 0;
}

.equal_divide_blocks .inside_contents p a {
  color: #ba9662;
}

.equal_divide_blocks .inside_contents table {
  width: 100%;
}

.equal_divide_blocks .inside_contents table .selectric {
  margin-bottom: 15px;
}

.equal_divide_blocks .inside_contents .single_variation_wrap .woocommerce-variation-availability {
  display: none;
}

.equal_divide_blocks .inside_contents .single_variation_wrap .single_add_to_cart_button, .equal_divide_blocks .inside_contents .single_add_to_cart_button {
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: white;
  padding: 14px 30px;
  border: 2px solid #ba9662;
  text-transform: uppercase;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
  background-color: transparent;
  float: right;
  color: #1b3975;
}

.equal_divide_blocks .inside_contents .single_add_to_cart_button:hover {
  padding-left: 45px;
  padding-right: 45px;
}

.pagewrap_contain .list_type3 li.product .wpb_wl_preview_area {
  display: none !important;
}

.popup-content .equal_divide_blocks .inside_contents .stock {
  text-transform: uppercase;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
  color: #1b3975;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  margin: 0 0 10px 0;
}

.equal_divide_blocks .inside_contents .single_variation_wrap .single_add_to_cart_button:hover {
  padding-left: 45px;
  padding-right: 45px;
}

.equal_divide_blocks .inside_contents .single_variation_wrap .price {
  font-size: 35px;
  color: #426eaf;
  font-weight: 700;
  float: left;
}

.equal_divide_blocks .inside_contents .reset_variations {
  display: none;
}

.equal_divide_blocks .inside_contents input[type=number] {
  display: none;
}

.equal_divide_blocks .inside_contents .price.wpb_wl_product_price {
  display: none !important;
}

@media (min-width: 767px) and (max-width: 992px) {
  .equal_divide_blocks .inside_contents {
    padding: 40px 30px;
  }
}
.equal_divide_blocks .img_section {
  position: relative;
  vertical-align: middle;
  background-color: white;
  text-align: center;
}

.equal_divide_blocks .img_section .img_place {
  height: 100%;
}

@media (max-height: 767px) {
  .equal_divide_blocks .img_section img {
    width: 70%;
  }
}
.equal_divide_blocks .img_section img {
  margin: 0 auto;
  display: block;
}

@media (max-width: 1400px) {
  .equal_divide_blocks .img_section img {
    height: auto;
  }
}
.equal_divide_blocks .img_section .link_withicon {
  position: absolute;
  left: 25px;
  top: 25px;
}

@media (min-width: 768px) {
  .modal-dialog {
    margin: 6% auto 30px;
    width: 90%;
  }
}
.group-btnz .btn {
  float: right;
}

.group-btnz .Priceval {
  font-size: 35px;
  color: #426eaf;
}

.quantity {
  position: relative;
  margin: 10px 0;
  /*popup cart adjustment*/
  display: inline-block;
}

.quantity .quantity-up:before,
.quantity .quantity-down:before {
  content: "";
  display: inline-block;
  color: #fff;
  font-size: 10px;
  line-height: 0;
}

.quantity .quantity-up:before {
  content: "+";
}

.quantity .quantity-down:before {
  content: "-";
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.quantity input:focus {
  outline: 0;
}

/*lightbox adjustment*/
.mfp-content .quantity {
  width: 100%;
}

.mfp-content .quantity input.qty {
  width: 100% !important;
  height: initial;
  color: initial;
  text-align: left;
}

.quantity-nav {
  position: relative;
}

.quantity-button {
  position: relative;
  cursor: pointer;
  background-color: #ba9662;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  text-align: center;
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: inline-block;
}

.cart_sidebar {
  background-color: #e2ddd7;
  padding: 100px 25px;
  width: 390px;
  position: fixed;
  top: 0;
  right: -390px;
  bottom: 0;
  z-index: 2;
  -webkit-transition: right 0.2s cubic-bezier(1, 0.8, 0.8, 1);
  transition: right 0.2s cubic-bezier(1, 0.8, 0.8, 1);
}

.cart_sidebar li {
  padding-left: 0;
  background-image: none;
  display: table;
  width: 100%;
  border-top: 2px dotted #c3bcb4;
}

.cart_sidebar li .img-hold, .cart_sidebar li .img-description {
  display: table-cell;
  width: 50%;
  vertical-align: top;
  padding: 15px;
}

.cart_sidebar li .img-hold .eqal_2:before {
  padding-bottom: 100%;
}

.cart_sidebar li:first-child {
  border-top: 0;
}

.img-description h3 {
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 5px;
}

.img-description strong, .img-description span {
  display: block;
  font-weight: normal;
}

.img-description span {
  color: #ba9662;
  font-style: italic;
  font-size: 13px;
  font-weight: normal;
  margin-top: 8px;
}

.img-description strong {
  font-size: 20px;
  font-weight: 600;
  color: #426eaf;
}

.img-description strong strong {
  display: inline-block;
}

.show_cart .cart_sidebar {
  right: 0;
}

.sidefooterblock {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #cac3bb;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 1000;
  display: table;
  width: 100%;
}

.sidefooterblock .price_elem, .sidefooterblock .btn {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}

.sidefooterblock .btn {
  width: 10%;
}

.sidefooterblock .price_elem small, .sidefooterblock .price_elem span {
  display: block;
}

.sidefooterblock .price_elem small {
  color: #e2ddd7;
  font-size: 16px;
}

.sidefooterblock .price_elem span, .sidefooterblock .price_elem strong {
  color: #426eaf;
  font: 35px "StrayhornMT-Bold", Arial, sans-serif;
}

.cart_sidebar .scrollwrap, .cart_sidebar .slimScrollDiv {
  height: 100%;
  min-height: 100%;
}

.no_list_block {
  text-align: center;
  position: absolute;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
}

.no_list_block h4, .no_list_block a {
  text-transform: uppercase;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
}

.no_list_block h4 {
  color: #c3bcb4;
  font-size: 30px;
  margin-bottom: 5px;
  margin-top: 30px;
}

.no_list_block a {
  color: #426eaf;
}

.listparlax_wrap {
  margin: 25px 3% 60px !important;
}

.listparlax_wrap ul {
  margin-bottom: 0;
  margin-left: 0;
}

.listparlax_wrap ul li {
  padding-left: 0;
  background-image: none;
  width: 100%;
  float: left;
  /*  background-color: #e2ddd7;*/
  margin-left: 0;
  margin-bottom: 100px;
  -webkit-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
  text-align: center;
  position: relative;
  z-index: 0;
}

.listparlax_wrap ul li:before, .listparlax_wrap ul li:after {
  content: "";
  display: block;
  /*  padding-top: 7%;*/
}

.listparlax_wrap ul li:hover {
  /*background: #c3bcb4;*/
}

.listparlax_wrap ul li.item_soldout {
  background-color: #e2d6d6;
}

.listparlax_wrap ul li.item_soldout strong {
  text-transform: uppercase;
  color: #a15555;
  font-weight: 700;
}

.listparlax_wrap ul li .soldout {
  text-transform: uppercase;
  color: #a15555;
  font-weight: 600;
  font-style: normal;
  margin-top: 5px;
}

@media (min-width: 480px) {
  .listparlax_wrap ul li {
    width: 48%;
    margin-left: 2%;
  }
}
@media (min-width: 992px) {
  .listparlax_wrap ul li {
    width: 30.33%;
    margin-left: 3%;
  }
}
.listparlax_wrap ul li .onsale {
  display: none;
}

@media (min-width: 480px) {
  .listparlax_wrap ul {
    margin-left: -2%;
  }
}
@media (min-width: 992px) {
  .listparlax_wrap ul {
    margin-left: -3%;
  }
}
.listparlax_wrap .img_place {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.listparlax_wrap .img-description {
  text-align: center;
  min-height: 80px;
}

.listparlax_wrap .img-description .price span {
  display: inline-block;
}

.listparlax_wrap .wpb_wl_preview_area {
  top: 0;
  height: 100%;
  text-indent: -999em;
  overflow: hidden;
}

.listparlax_wrap .wpb_wl_preview_area .open-popup-link {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  display: block !important;
  padding: 0;
}

/*.listparlax_wrap .wpb_wl_preview_area:hover .open-popup-link {
  visibility: initial;
  opacity: 1;
}*/
.wpb_wl_preview_area .wpb_wl_preview {
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 0;
}

.value_elem {
  font-size: 20px;
  color: #ba9662;
  font-weight: 700;
  font-weight: normal;
}

.item_type {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.base_detailblock {
  text-align: center;
  padding: 25px 10px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.base_detailblock > img {
  width: 107px;
}

.base_detailblock h2 {
  color: #1b3975;
  text-transform: uppercase;
  font-size: 35px;
  margin: 10px;
}

@media (min-width: 992px) {
  .base_detailblock h2 {
    margin: 25px 10px;
    font-size: 50px;
  }
}
.base_detailblock p {
  font-size: 18px;
}

@media (min-width: 992px) {
  .base_detailblock {
    width: 100%;
    padding: 50px 0;
  }
}
.pagewrap_contain {
  background-position: 259% -22%;
  background-size: auto;
}

@media (min-width: 992px) {
  .pagewrap_contain {
    background-position: 109% -2%;
  }
}
.lined_list {
  text-align: center;
  margin-bottom: 35px;
}

.lined_list li {
  /*  padding-left: 50px;*/
  padding-left: 0px;
  display: block;
  background-image: none;
  margin-bottom: 15px;
  margin-left: 50px;
}

.lined_list li:first-child {
  padding-left: 0;
  margin-left: 0;
}

.lined_list li a {
  text-transform: uppercase;
  color: #cac3bb;
  font: 18px "StrayhornMT-Bold", Arial, sans-serif;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.lined_list li.active {
  position: relative;
}

.lined_list li.active a {
  color: #ba9662;
}

.lined_list li.active:after {
  bottom: 0;
  content: "";
  display: block;
  border-bottom: 2px dotted #1b3975;
  width: 70px;
  height: 2px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: -100%;
  right: -100%;
  top: 28px;
}

@media (min-width: 992px) {
  .lined_list li {
    display: inline-block;
  }
}
.dragarrow {
  color: white;
  text-transform: uppercase;
  font: 18px "StrayhornMT-Bold", Arial, sans-serif;
  position: absolute;
  top: 33%;
  left: 90%;
  max-width: 100px;
}

.dragarrow:before {
  content: "";
  display: block;
  background: url(/wp-content/themes/kilchoman/img/arrow.svg) 0 0 no-repeat;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  position: absolute;
  top: 100%;
  left: 50%;
  -ms-transform: translatex(-50%);
      transform: translatex(-50%);
  -webkit-transform: translatex(-50%);
}

.list_type3 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.list_type3 li {
  padding-left: 0;
  background-image: none;
  margin-top: 25px;
}

.list_type3 li:first-child {
  margin-top: 0;
}

@media (min-width: 767px) {
  .list_type3 li {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .list_type3 {
    width: 80%;
  }
}
.list_type3 .groupitem .img_place {
  width: 50%;
  background-position: left bottom !important;
}

.list_type3 .groupitem .img_place:before {
  padding-bottom: 100%;
}

@media (min-width: 767px) {
  .list_type3 .groupitem .img_place {
    width: 29%;
  }
}
.groupitem {
  display: block;
  width: 100%;
}

@media (min-width: 767px) {
  .groupitem {
    display: table;
  }
}
.groupitem .img_place, .groupitem .in-details {
  display: block;
  width: 100%;
  vertical-align: middle;
}

@media (min-width: 767px) {
  .groupitem .img_place, .groupitem .in-details {
    display: table-cell;
    width: 80%;
  }
}
.groupitem .in-details {
  padding-left: 3%;
}

.groupitem .in-details h3 {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 15px;
  color: #424045;
  line-height: 1;
}

.groupitem .in-details h3:after {
  bottom: 0;
  content: "";
  display: block;
  border-bottom: 2px dotted #ba9662;
  width: 70px;
  height: 2px;
  text-align: left;
  margin: 10px auto;
}

@media (min-width: 767px) {
  .groupitem .in-details h3:after {
    margin: 30px 0;
  }
}
@media (min-width: 767px) {
  .groupitem .in-details h3 {
    margin-top: 0;
  }
}
.groupitem .in-details p {
  font-size: 18px;
  margin: 0 0 30px;
}

.tag_textstyle {
  display: block;
  text-transform: uppercase;
  color: #1b3975;
  font: 23px "SabonMTStd-Regular", Arial, sans-serif;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  /*  width: 70%;*/
}

.tag_textstyle strong {
  font-weight: normal;
  display: inline-block;
  position: relative;
  padding: 0 15px;
  letter-spacing: 0;
}

.tag_textstyle strong .symbol_type {
  width: 31px;
  height: 31px;
  display: inline-block;
  background: url("/wp-content/themes/kilchoman/img/symbol_2.png") center center no-repeat;
  background-size: contain;
  -webkit-background-size: contain;
  vertical-align: middle;
  margin-left: 3px;
  margin-right: 10px;
}

.tag_textstyle strong:before, .tag_textstyle strong:after {
  content: "";
  display: inline-block;
  border-bottom: 2px dotted #ba9662;
  position: absolute;
  top: 50%;
  width: 100px;
}

.tag_textstyle strong:before {
  right: 100%;
}

.tag_textstyle strong:after {
  left: 100%;
}

.single_emblomtype {
  text-align: center;
  text-transform: uppercase;
  color: #1b3975;
  margin-bottom: 0;
  font: 45px "StrayhornMT-Bold", Arial, sans-serif;
  position: relative;
  z-index: 0;
}

.single_emblomtype .item_type {
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.4;
  width: 150px;
  height: 150px;
}

.single_emblomtype .item_type img {
  width: 100%;
}

.list_type4 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.list_type4 li {
  list-style: none;
  background-image: none;
  width: 24%;
  float: left;
  padding-left: 0;
  vertical-align: top;
}

.list_type4 .groupitem {
  display: block;
}

.list_type4 .groupitem .img_place, .list_type4 .groupitem .in-details {
  display: block;
  text-align: center;
}

.list_type4 .groupitem .img_place {
  background-size: contain !important;
  -webkit-background-size: contain !important;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.list_type4 .groupitem .in-details {
  padding-left: 0;
  margin: 0 auto;
}

.list_type4 .groupitem .in-details h3:after {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.block_single {
  padding: 40px 10px 0;
  box-shadow: 0px 0px 58px -1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 58px -1px rgba(0, 0, 0, 0.15);
  margin-left: auto;
  margin-right: auto;
  margin-top: -100px;
  background-color: white;
  width: 73%;
}

.block_single .lined_list {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.block_single .lined_list.desktop {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

.block_single .lined_list li {
  margin: 0 2%;
}

.block_single .lined_list li.active:after {
  bottom: -100%;
  top: auto;
  border: 2px solid #ba9662;
}

.block_single .lined_list li a {
  font-size: 17px;
}

.block_single .single_emblomtype {
  margin: 25px 0 80px;
}

.blocktype_new .customtab_wrap {
  float: left;
  width: 100%;
  padding: 50px 0 100px;
}

.blocktype_new .lined_list li {
  padding-left: 0;
}

.block-12 {
  overflow: hidden;
}

.block-12 .video-foreground {
  /*  position: static;*/
}

.group_contain {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .group_contain {
    width: 100%;
  }
}
.group_contain .img_place, .group_contain .contentarea {
  display: table-cell;
  vertical-align: middle;
}

@media (max-width: 992px) {
  .group_contain .img_place, .group_contain .contentarea {
    display: block;
  }
}
.group_contain .contentarea {
  text-align: left;
  width: 47%;
  position: relative;
}

@media (max-width: 992px) {
  .group_contain .contentarea {
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
}
.group_contain .contentarea h1 {
  font: 84px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9662;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.group_contain .contentarea h1 .item_type {
  right: -100px;
  top: -40px;
  left: auto;
}

@media (max-width: 767px) {
  .group_contain .contentarea h1 .item_type {
    width: 50px;
    height: 50px;
    right: -60px;
  }
}
@media (max-width: 992px) {
  .group_contain .contentarea h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .group_contain .contentarea h1 {
    font-size: 38px;
  }
}
.group_contain .contentarea p {
  font-size: 17px;
  color: #F9F2DF;
  max-width: 50%;
  font-weight: 300;
  line-height: 28px;
}

@media (max-width: 1200px) {
  .group_contain .contentarea p {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .group_contain .contentarea p {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .group_contain .contentarea p {
    max-width: 100%;
  }
}
.group_contain .img_place {
  width: 37%;
  background-position: bottom center !important;
}

@media (max-width: 992px) {
  .group_contain .img_place {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .group_contain .img_place {
    width: 80%;
  }
}
.group_contain .with-path {
  margin-top: 55px;
  padding: 0;
  padding-bottom: 219px;
  position: absolute;
  left: 0;
}

.group_contain .with-path .btn-outlined {
  display: inline-block;
}

.group_contain .with-path:after {
  bottom: -52px;
}

.group_contain .with-path:before {
  -ms-transform: translate(-50%);
      transform: translate(-50%);
  -webkit-transform: translate(-50%);
  left: 50%;
}

.smallcart_module {
  position: absolute;
  bottom: 35px;
  right: 35px;
}

.smallcart_module .img_place {
  width: 100px;
  background-size: contain !important;
  -webkit-background-size: contain !important;
  margin: 0 auto;
  display: block;
}

.smallcart_module .btn {
  padding: 5px 10px;
}

.smallcart_module .lined_elements {
  margin: 10px 0 16px;
}

.smallcart_module .lined_elements strong {
  font-size: 15px;
  font-size: 0;
}

.smallcart_module .lined_elements strong strong {
  font-size: 15px;
}

.smallcart_module .lined_elements strong:before {
  background-color: #6fb3e4;
}

.woocommerce .smallcart_module .add_to_cart_button {
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  color: #F9F2DF;
  border: 2px solid #ba9662;
  text-transform: uppercase;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
  padding: 9px 23px;
  background-color: transparent;
  border-radius: 0;
}

.woocommerce .smallcart_module .add_to_cart_button:hover, .woocommerce .smallcart_module .add_to_cart_button:focus {
  background-color: transparent;
  color: white;
}

.block_divide .item_divide {
  position: relative;
  /*  padding: 11.9%;*/
  padding: 11.9% 0;
  width: 50%;
}

.single-product .block_divide .item_divide {
  padding: 0 !important;
}

.item_divide_inner {
  max-width: 518px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

@media (max-width: 1400px) {
  .block_divide .item_divide {
    padding: 3% 4.9%;
  }
}
@media (max-width: 1200px) {
  .block_divide .item_divide {
    padding: 3% 3%;
  }
}
@media (max-width: 992px) {
  .block_divide .item_divide {
    width: 100%;
  }
}
.block_divide .item_divide h2 {
  font: 45px "StrayhornMT-Bold", Arial, sans-serif;
  text-transform: uppercase;
  color: #1b3975;
  margin-bottom: 0;
}

.block_divide .item_divide h2:after {
  content: "";
  display: block;
  margin: 30px auto;
  width: 100px;
  border-bottom: 2px dotted #6fb3e4;
}

.block_divide .item_divide p {
  font-size: 17px;
  color: black;
}

.block_divide .item_divide i {
  font-size: 17px;
  color: #426eaf;
  margin: 30px 0;
  display: block;
  padding: 0 20px;
}

.block_divide .item_divide h4 {
  color: #1b3975;
}

.sign {
  display: block;
  width: 152px;
  margin: 30px auto 20px;
}

.mover_bg {
  background-attachment: fixed;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  -webkit-transition: background-position 0.1s ease;
  transition: background-position 0.1s ease;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}

.product_showcase-wrap .img_place {
  width: 25%;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 37.5%;
  z-index: 1;
  /*  transition: left 1s 0.5s cubic-bezier(0.42, 0, 0.58, 1);*/
  /*transition: linear 0.5s;   */
  transition: left 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-transition: left 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: left 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

.product_showcase-wrap .img_place .item_type {
  right: 85px;
  left: auto;
  width: 133px;
  top: 14%;
}

.product_showcase-wrap .listblocks {
  display: inline-block;
}

.product_showcase-wrap .product_showcaseDetailwrap {
  padding: 5% 0;
  height: 100%;
  width: 80%;
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  /*  transition: left 1s 0.5s cubic-bezier(0.42, 0, 0.58, 1);*/
  /*transition: linear 0.5s;
  -webkit-transition: linear 0.5s;
  -moz-transition: linear 0.5s;*/
  transition: left 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-transition: left 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: left 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

@media (min-width: 1400px) {
  .product_showcase-wrap .product_showcaseDetailwrap {
    padding: 10% 0;
  }
}
.product_showcase-wrap .product_showcaseDetail {
  position: relative;
  height: 100%;
  display: table;
  vertical-align: middle;
  width: 100%;
}

.product_showcase-wrap .product_showcaseDetail .icon-md {
  width: 74px;
  height: 74px;
}

.product_showcase-wrap .product_showcaseDetail h4 {
  margin: 20px 0;
}

@media (max-width: 1400px) {
  .product_showcase-wrap .product_showcaseDetail h4 {
    margin: 10px 0;
  }
}
.product_showcase-wrap .progess-block {
  width: 590px;
}

.product_showcase-wrap .progess-block .group-value {
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 20px;
}

.block-16.active .product_showcase-wrap .img_place {
  left: 67.5%;
  /*transition: linear 0.33s;
  -webkit-transition: linear 0.33s;
  -moz-transition: linear 0.33s;
  transition-delay: 1.7s;
  -webkit-transition-delay: 1.7s;
  -moz-transition-delay: 1.7s;   */
  transition: left 0.5s 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-transition: left 0.5s 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: left 0.5s 0.7s cubic-bezier(0.42, 0, 0.58, 1);
}

.block-16.active .product_showcase-wrap .product_showcaseDetailwrap {
  left: 0;
  /*transition: linear 1s;
  -webkit-transition: linear 1s;
  -moz-transition: linear 1s;
  transition-delay: 1s;
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;*/
  transition: left 1s 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-transition: left 1s 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: left 1s 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

.valign_parent {
  display: table;
  width: 100%;
  height: 100%;
}

.valign_child {
  display: table-cell;
  vertical-align: middle;
}

.lined_listtwo {
  margin: 50px 0;
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.lined_listtwo li {
  border-left: 1px dotted #f9f2df;
  padding-left: 0;
  background-image: none;
  width: 32.33%;
  display: inline-block;
  padding: 0 25px;
  vertical-align: middle;
  font-size: 16px;
}

.lined_listtwo li:first-child {
  border-left: 0;
}

@media (max-width: 1200px) {
  .lined_listtwo li {
    padding: 0 10px;
    font-size: 14px;
  }
}
.lined_listtwo h5 {
  text-transform: uppercase;
  color: #ba9662;
}

.lined_listtwo p {
  color: #f9f2df;
  font-weight: 300;
  margin-bottom: 0;
}

@media (max-width: 1400px) {
  .lined_listtwo {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
@media (max-width: 992px) {
  .lined_listtwo {
    margin: 15px;
  }
}
.listblocks {
  margin-bottom: 0;
  vertical-align: middle;
}

.listblocks li {
  display: table;
  padding-left: 0;
  background-image: none;
  margin-top: 50px;
}

.listblocks li:first-child {
  margin-top: 0;
}

@media (max-width: 1400px) {
  .listblocks li {
    margin-top: 25px;
  }
}
@media (max-width: 1200px) {
  .listblocks li {
    margin-top: 10px;
  }
}
.listblocks i, .listblocks .elem_detail {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

.listblocks .elem_detail {
  padding-left: 20px;
}

@media (max-width: 1200px) {
  .listblocks .elem_detail {
    padding-left: 10px;
  }
}
.listblocks h3 {
  color: #f9f2df;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 22px;
  margin-bottom: 5px;
}

.listblocks span {
  color: #ba9662;
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  text-transform: uppercase;
}

.taste_graph {
  display: inline-block;
  margin: 0 100px;
  width: 250px;
}

@media (max-width: 1400px) {
  .taste_graph {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 1200px) {
  .taste_graph {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.block-md-head {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.block-md-head h3 {
  color: #ba9662;
  text-transform: uppercase;
  font-size: 30px;
}

.block-md-head p {
  color: #f9f2df;
  font-weight: 300;
  font-size: 16px;
}

.block-14 {
  /*  background-color: #000;*/
}

@media (min-width: 1260px) {
  .block-14.bglft {
    background-size: contain !important;
    -webkit-background-size: contain !important;
    background-position: left center !important;
  }
}
.block-14 span {
  text-transform: uppercase;
}

.block-14 h2 {
  color: #f9f2df;
  text-transform: uppercase;
}

.block-14 .item_divide {
  float: right;
  text-align: center;
}

.block-14 .item_divide span {
  font-size: 25px;
  text-transform: uppercase;
  color: #ba9662;
  display: block;
  font-weight: 700;
}

.block-14 .item_divide h2 {
  color: #f9f2df;
  margin-bottom: 35px;
}

.block-14 .item_divide h2:after {
  display: none;
}

.block-14 .item_divide p {
  color: #f9f2df;
  font-weight: 300;
}

.videotype2 {
  position: relative;
  max-width: 928px;
  margin: 0 auto;
  overflow: hidden;
  border: 10px solid #fff;
}

.videotype2 video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.videotype2:before {
  content: "";
  display: block;
  padding-top: 60.25%;
}

.tag_typetext {
  text-align: center;
  margin: 50px 0;
  display: block;
  position: relative;
}

.tag_typetext strong {
  text-transform: uppercase;
  color: #1b3975;
  font: 25px "SabonMTStd-Regular", Arial, sans-serif;
  letter-spacing: 2px;
}

.tag_typetext strong small {
  display: inline-block;
  background: url(/wp-content/themes/kilchoman/img/from-barley.png) 0 0 no-repeat;
  width: 36px;
  height: 36px;
  vertical-align: middle;
  margin: 2px 15px;
  margin-left: 12px;
}

.full-page-fluid .fullpage-wrapper {
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.full-page-fluid {
  overflow: auto !important;
}

.main-page-wrapper, .main-wrap {
  height: 100%;
}

#map {
  width: 100%;
  height: 100%;
}

.map_wrapper {
  height: 900px;
}

.gm-fullscreen-control, .gm-style-mtc, .gm-svpc {
  display: none !important;
}

.gm-style div.random a {
  display: inline-block !important;
  font-size: 16px;
  color: #a28a67;
  margin-bottom: 0;
  word-break: break-all;
}

.single-product .main-wrap {
  padding-top: 0px;
}

.single-product .detailinner_wrap {
  margin: 0;
}

.woocommerce .detailinner_wrap iframe {
  min-height: 0;
  margin-bottom: 0;
}

@media (max-width: 1360px) {
  .block-5 .valign_parent .item_info {
    padding: 0 4%;
  }
}
.cart-contents {
  margin-left: 0;
  cursor: pointer;
  background: #535d79;
  padding: 0 5px;
  border-radius: 23px;
  font-size: 14px;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 23px;
  min-width: 23px;
  text-align: center;
}

.cart-contents .woocommerce-Price-amount {
  display: none;
}

.mfp-bg {
  background-color: #bcb6af;
}

.mfp-close-btn-in .mfp-close {
  font-size: 50px;
  color: #000;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 90%;
}

.circular-chart {
  width: 84%;
  /*  animation: opas 0.2s ease-out forwards;*/
  vertical-align: middle;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes opas {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opas {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.circle {
  stroke: #ba9765;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: square;
}

.fp-viewing-1 .circular-chart .circle {
  -webkit-animation: progress 1s ease-out forwards;
          animation: progress 1s ease-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.circular-chart text {
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  text-align: right;
  text-transform: uppercase;
  fill: #f9f2df;
}

.circleone {
  opacity: 0.8;
}

.circletwo {
  opacity: 0.6;
}

.circlethree {
  opacity: 0.4;
}

.circlefour {
  opacity: 0.2;
}

/*.circle {
  stroke: #ba9765;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: square;
  opacity: 0.3;
}
.circleone {
  opacity: 0.5;
}

.circletwo {
  opacity: 0.7;
}

.circlethree {
  opacity: 0.8;
}

.circlefour {
  opacity: 1;
}*/
@-webkit-keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}
@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}
.fp-viewing-1 .opacity_base {
  opacity: 0;
}

.fp-viewing-1 .opacity_base.sm-time {
  -webkit-animation: opacityB 1s 0.7s ease-in-out forwards;
          animation: opacityB 1s 0.7s ease-in-out forwards;
}

.fp-viewing-1 .opacity_base.md-time {
  -webkit-animation: opacityB 1s 1.3s ease-in-out forwards;
          animation: opacityB 1s 1.3s ease-in-out forwards;
}

.fp-viewing-1 .opacity_base.lg-time {
  -webkit-animation: opacityB 1s 1.8s ease-in-out forwards;
          animation: opacityB 1s 1.8s ease-in-out forwards;
}

.fp-viewing-1 .opacity_base.lgg-time {
  -webkit-animation: opacityB 1s 4s ease-out forwards;
          animation: opacityB 1s 4s ease-out forwards;
}

@-webkit-keyframes opacityB {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacityB {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fp-viewing-2 .wrap_intab .v-content-anim, .wrap_intab .v-content-anim {
  position: relative;
  top: 100%;
  opacity: 0;
  transition: none;
  -webkit-transition: none;
}

.fp-viewing-2 .wrap_intab.active .v-content-anim, .wrap_intab.active .v-content-anim {
  -webkit-animation: opacityB2 1.3s 0.3s ease-in-out forwards;
          animation: opacityB2 1.3s 0.3s ease-in-out forwards;
}

@-webkit-keyframes opacityB2 {
  0% {
    opacity: 0;
    top: 100%;
  }
  100% {
    opacity: 1;
    top: 0%;
  }
}

@keyframes opacityB2 {
  0% {
    opacity: 0;
    top: 100%;
  }
  100% {
    opacity: 1;
    top: 0%;
  }
}
.home-path {
  /* position: absolute;
  height: 90%;
  z-index: 100;
  top: -233px;
  left: 0;
  left: 0; */
}

/*.home-path {
    position: absolute;
    height: 100%;
    z-index: 100;
    top: -320px;
    left: 0;
    left: 0;
    height: 515px;
}*/
#svg-container {
  position: absolute;
  height: 100%;
  z-index: 100;
  top: -320px;
  left: 0;
  left: 0;
  height: 724px;
}

.path2 {
  /*stroke-dasharray: 708.9688110351562;*/
  stroke-dashoffset: 0;
  /*animation: dash 2s 5s linear;*/
}

.path3 {
  /*stroke-dasharray: 708.9688110351562;*/
  /*transition-delay: 1s;*/
  opacity: 0;
}

.groupcircle-point {
  /*animation-play-state: paused;  */
}

.bgset_img.fp-completely .path3 {
  /*stroke-dasharray: 708.9688110351562;*/
  stroke-dasharray: 708.9688110352;
  -webkit-animation: dash 3s 0s linear;
          animation: dash 3s 0s linear;
  opacity: 1;
}

.bgset_img.active .mobilepath {
  /*stroke-dasharray: 708.9688110351562;*/
  stroke-dasharray: 708.9688110352;
  -webkit-animation: dash 3s 0s linear;
          animation: dash 3s 0s linear;
  opacity: 1;
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 708.9688110352;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 708.9688110352;
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 708.9688110352;
  }
}
/*.circlepath {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: stroke 1s 3s ease-out forwards;
}*/
@-webkit-keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 56.1843032837;
  }
}
@keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 56.1843032837;
  }
}
/*.circleinner {
  opacity: 0;
  animation: opasin 2s 2.5s ease-out forwards;
}*/
@-webkit-keyframes opasin {
  to {
    opacity: 1;
  }
}
@keyframes opasin {
  to {
    opacity: 1;
  }
}
.divide-blockwrap {
  display: table;
  width: 100%;
  height: 100%;
}

.divide-blockwrap .path-mapcover, .divide-blockwrap .kilcho-s1 {
  display: table-cell;
  width: 50%;
  height: 100%;
  vertical-align: middle;
}

.divide-blockwrap .path-mapcover {
  position: relative;
  float: right;
}

.divide-blockwrap .kilcho-s1 {
  float: left;
}

.mainmap {
  margin-left: -285px;
}

@media (max-width: 1360px) {
  .mainmap {
    width: 50%;
    margin-left: 95px;
  }
}
/* ===== generic-Styles-End ================================================== */
/* ===== Style ================================================== */
img {
  max-width: 100%;
}

.custom-container {
  margin: auto 3%;
  z-index: 3;
  position: relative;
}

.gradient-blue:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/kilchoman/img/repeat_blue_bg.png) top right repeat-y;
}

/* Home page section 2 */
.kilcho-s1 {
  width: 100%;
  position: relative;
  padding: 2%;
}

@media (min-width: 767px) {
  .kilcho-s1 {
    width: 100%;
    padding: 3%;
  }
}
@media (min-width: 992px) {
  .kilcho-s1 {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .kilcho-s1 {
    padding: 5.9%;
  }
}
@media (min-width: 1360px) {
  .kilcho-s1 {
    padding: 3.9%;
  }
}
.kilchoman-club .kilcho-s1 p {
  font-size: 18px;
}

/* Home page section 5 */
.section {
  text-align: center;
}

.col-custom-6 {
  width: 100%;
}

@media (min-width: 767px) {
  .col-custom-6 {
    float: left;
    width: 50%;
  }
}
.col-custom-6.col-custom {
  width: 100%;
}

@media (min-width: 767px) {
  .col-custom-6.col-custom {
    width: 40%;
  }
}
.block-5 {
  overflow: hidden;
}

.block-5 .fp-tableCell {
  position: relative;
  z-index: 2;
}

.block-5 .valign_parent {
  padding: 0 5%;
}

.block-5 .valign_parent .img_place, .block-5 .valign_parent .item_info {
  display: block;
  width: 100%;
  position: relative;
}

@media (min-width: 992px) {
  .block-5 .valign_parent .img_place, .block-5 .valign_parent .item_info {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 50%;
  }
}
.block-5 .valign_parent .img_place {
  background-size: contain !important;
  -webkit-background-size: contain !important;
}

.block-5 .valign_parent .img_place:before {
  padding-bottom: 60%;
}

@media (min-width: 992px) {
  .block-5 .valign_parent .img_place:before {
    padding-bottom: 80%;
  }
}
.block-5 .valign_parent .item_info {
  padding: 0 2%;
}

@media (max-width: 1360px) {
  .block-5 .valign_parent .item_info {
    padding: 0 4%;
  }
}
.kilchoman-club h1, .kilchoman-club p, .kilchoman-club h5 {
  color: #f6efdc;
}

.kilchoman-club h1 {
  margin-bottom: 36px;
}

.kilchoman-club h5, .kilchoman-club p {
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .kilchoman-club h5, .kilchoman-club p {
    margin-bottom: 40px;
  }
}
@media (max-width: 1360px) {
  .kilchoman-club h5, .kilchoman-club p {
    margin-bottom: 23px;
  }
}
.kilchoman-club h5 {
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
}

.kilchoman-club blockquote {
  color: #f9f2df;
  padding: 0;
  border-left: 0;
}

.kilchoman-club .item_info p {
  font-size: 17px;
  line-height: 25px;
}

.kilchoman-club .item_info h2 {
  font-size: 36px;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  color: white;
  color: #f9f3dd;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .kilchoman-club .item_info h2 {
    font-size: 46px;
    margin-bottom: 30px;
  }
}
.kilchoman-club .kilchoman-club h5 {
  font-size: 14px;
}

.kilchoman-club .item_info i {
  font-size: 18px;
  color: #f9f3dd;
  line-height: 28px;
  margin-bottom: 25px;
  display: block;
}

.kilchoman-club .islay img {
  margin: 0 auto;
}

.kilchoman-club .signature {
  margin-bottom: 10px;
}

.kilchoman-club .social-links {
  height: 10px;
  width: 10px;
}

/***** Blog list page *****/
.item-inner-content {
  padding: 4% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: table;
  width: 100%;
}

.item-inner-content .details {
  padding: 0 92px;
  width: 100%;
  float: right;
  text-align: right;
  display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .item-inner-content .details {
    width: 80%;
  }
}
.item-inner-content .details h1 {
  font-size: 4rem;
  color: #ba9966;
}

@media (max-width: 992px) {
  .item-inner-content .details h1 {
    font-size: 3rem;
  }
}
.item-inner-content .details span {
  color: #6CB2E3;
  margin-bottom: 27px;
}

.item-inner-content .details p {
  color: #f9f2df;
  font-size: 1.2rem;
  line-height: 1.8em;
  margin-bottom: 42px;
}

@media (min-width: 1250px) {
  .item-inner-content .details p {
    max-width: 100%;
    margin-left: auto;
    width: 530px;
  }
}
.wrap-carousel {
  position: relative;
}

.wrap-carousel .owl-dots {
  display: inline-block;
  position: absolute;
  right: 350px;
  bottom: 86px;
}

.wrap-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  display: inline-block;
  background: #ba9662;
  position: relative;
  margin-right: 10px;
}

.wrap-carousel .owl-dots .owl-dot.active {
  background: white;
}

.blog-catagory {
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  margin: 34px 0 45px 0;
}

.blog-catagory .button-group {
  text-align: center;
}

.blog-catagory .button-group button {
  font-size: 18px;
  color: #CAC3BD;
  background: none;
  border: 0;
  padding: 0 5px 16px 5px;
  margin-left: 100px;
}

.blog-catagory .button-group button.is-checked {
  border-bottom: 2px dotted #192341;
  color: #ba9662;
}

.blog-catagory .button-group button:hover {
  color: #ba9966;
}

.blog-catagory .button-group button:first-child {
  margin-left: 0;
}

.grid .element-item {
  width: 100%;
}

.grid .blog-list {
  margin-bottom: 40px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .grid .blog-list {
    margin-bottom: 0;
    margin-bottom: 80px;
  }
}
.blog-list {
  display: block;
  margin-bottom: 40px;
}

.blog-list .img_place {
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .blog-list .img_place {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .blog-list {
    display: -webkit-box;
    display: flex;
    -webkit-display: flex;
    margin-bottom: 80px;
  }
}
.blog-list .blog-descript {
  margin-left: auto;
  margin-right: auto;
  margin-top: -50px;
  width: 93%;
  padding-left: 0;
}

@media (min-width: 992px) {
  .blog-list .blog-descript {
    padding-left: 32px;
    width: 40%;
    margin-top: 0;
  }
}
.blog-list .blog-section {
  background-color: #fff;
  box-shadow: 0px 0px 100px -1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 100px -1px rgba(0, 0, 0, 0.15);
  background-position: 113% -70px;
  margin: 29px 0;
  position: relative;
  min-height: 70%;
  padding: 38px;
}

@media (min-width: 992px) {
  .blog-list .blog-section {
    margin-left: -160px;
    padding: 38px 50px;
  }
}
.blog-list .blog-section p {
  line-height: 1.74em;
  font-weight: 200;
  margin-bottom: 30px;
  font-size: 18px;
  color: #414042;
}

.blog-list .blog-section .blog-date {
  color: #ba9966;
}

.blog-list .blog-section h2 {
  color: #ba9966;
}

.blog-list .blog-section h6 {
  margin-bottom: 16px;
  font-size: 16px;
  color: #6CB2E3;
  font-style: normal;
}

/*** BLOG-POST PAGE ***/
.detail-post-container {
  background-size: cover !important;
  -webkit-background-size: cover !important;
  padding-bottom: 50%;
  background-position: center center !important;
}

@media (min-width: 767px) {
  .detail-post-container {
    padding-bottom: 27%;
  }
}
.container-sm-inner {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.container-sm-inner .social-links2 {
  display: inline-block;
  margin-left: 25px;
}

.container-sm-inner .social-links2 li {
  margin-top: 0;
}

@media (min-width: 767px) {
  .container-sm-inner {
    max-width: 60%;
    margin-bottom: 50px;
  }
}
.detailinner_wrap {
  margin-bottom: 20px;
}

.detailinner_wrap h3 {
  color: #ba9662;
  font-size: 33px;
}

.detailinner_wrap p {
  font-size: 18px;
  line-height: 1.8;
}

.detailinner_wrap img {
  margin-bottom: 10px;
}

.detailinner_wrap a {
  color: #ba9662;
}

.detailinner_wrap .img_place {
  margin-bottom: 10px;
}

.detailinner_wrap ul li {
  font-size: 18px;
  margin-top: 25px;
}

.detailinner_wrap ul li:first-child {
  margin-top: 0;
}

.detailinner_wrap iframe {
  min-height: 416px;
  margin-bottom: 30px;
}

@media (min-width: 767px) {
  .detailinner_wrap {
    margin-bottom: 50px;
  }
}
blockquote {
  border-left: 2px dotted #ba9662;
  color: #426eaf;
  padding-top: 0;
  padding-bottom: 0;
  margin: 50px 0;
  font-size: 24px;
}

.container-sm {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.detail-post-title {
  margin: 0 auto;
  margin-bottom: 80px;
  padding: 30px;
  margin-top: -100px;
  background-color: white;
  box-shadow: 0px 0px 58px -1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 58px -1px rgba(0, 0, 0, 0.15);
  width: 90%;
  background-position: 114% -90px;
  position: relative;
}

.detail-post-title h1 {
  font-size: 40px;
  color: #ba9662;
  line-height: 1;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .detail-post-title h1 {
    font-size: 67px;
  }
}
.detail-post-title h5, .detail-post-title .date-elem {
  font-size: 18px;
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
}

.detail-post-title h5 {
  color: #6fb3e4;
  margin-bottom: 5px;
}

.detail-post-title .date-elem {
  color: #ba9662;
}

@media (min-width: 992px) {
  .detail-post-title {
    padding: 36px 60px;
    width: 76%;
  }
}
/* NEW CUSTOM STYLED */
.container-sm-inner p {
  color: #414042;
}

.blog-list .blog-section .blog-date {
  position: absolute;
  bottom: 36px;
  text-transform: uppercase;
}

.blog-list .blog-section h2 {
  margin-bottom: 28px;
}

.lined_list li.active button {
  color: #ba9662;
}

.lined_list li button {
  background: none;
  border: 0;
  text-transform: uppercase;
  color: #c3bcb4;
  font: 18px "StrayhornMT-Bold", Arial, sans-serif;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.base_detailblock p {
  width: 660px;
  margin: auto;
}

.img_list_details .lined_elements strong {
  font-size: 18px;
}

@media (max-width: 1360px) {
  .plain-block .with-bgemblom {
    background-position: 123% -34%;
  }
}
@media (min-width: 992px) {
  .plain-block .group_owlcontol {
    left: -40px;
  }
}
.showproduct_spot .element_holder .elem_detail h3 span {
  z-index: -1;
}

.showproduct_spot {
  padding-bottom: 50px;
}

.list_type4 ul {
  text-align: center;
}

.list_type4 li {
  display: inline-block;
  float: none;
}

.single-product > .section {
  height: 500px;
}

.mfp-close-btn-in .mfp-close {
  font-size: 40px;
}

.mfp-close {
  width: 60px;
  height: 60px;
}

.plain_detailwrap .plain_detail p {
  color: #7b7b7b;
  line-height: 30px;
}

.book_ticket .img_list_details {
  padding-bottom: 50px;
}

.sidebar .current-menu-item .menu-image-hover-wrapper {
  display: block;
}

.sidebar .current-menu-item .menu-image-hover-wrapper img {
  opacity: 1 !important;
}

.sidebar .current-menu-item a {
  color: #fff;
}

.woocommerce-message {
  background: transparent;
  border-bottom: 1px dashed #cac3bc;
  border-top: none;
}

.woocommerce-message::before {
  color: #96908b;
}

.woocommerce-message .button {
  display: none !important;
}

.coupon {
  display: none !important;
}

#fp-nav {
  z-index: 2;
}

.listparlax_wrap ul li:nth-child(3n+2) {
  /*margin-top: 100px;
  margin-bottom: 50px;*/
}

.listparlax_wrap ul li {
  margin-bottom: 50px;
}

.cart-empty {
  display: none;
}

.cart_sidebar li {
  position: relative;
  margin-top: 10px;
  padding-top: 10px;
}

.cart_sidebar li:first-child {
  margin-top: 0;
  /*  padding-top: 0;*/
}

.cart_item > a {
  width: 120px;
  float: left;
}

.cart_sidebar li .img-hold, .cart_sidebar li .img-description {
  width: 300px;
  padding: 0 15px;
}

.cart_sidebar a.remove {
  color: #908a84 !important;
}

.cart_sidebar .actions {
  position: absolute;
  bottom: 20px;
  right: 0;
}

.woocommerce-cart-form {
  padding: 0 20px 150px 20px;
}

@media (min-width: 767px) and (max-width: 992px) {
  .customtab_wrap .list_type4 li {
    width: 30%;
  }
}
p:empty {
  display: none;
}

.textwidget p {
  color: rgba(204, 204, 204, 0.8);
}

.list_type3 .groupitem .img_place {
  background-position: center bottom !important;
}

@media (min-width: 767px) {
  .list_type3 .groupitem .img_place {
    background-size: contain !important;
  }
}
@media (max-width: 1366px) {
  .showproduct_spot .element_holder .elem_detail p {
    height: 51px;
    overflow: hidden;
  }
}
@media (max-width: 1366px) {
  .customtab_wrap .groupitem .in-details p {
    height: 95px;
    overflow: hidden;
  }
}
@media (max-width: 992px) and (min-width: 767px) {
  .showproduct_spot .element_holder .elem_detail h3 {
    font-size: 20px;
  }
}
.equal_divide_blocks .img_section .link_withicon {
  z-index: 2;
}

.upcoming_post {
  padding: 80px 85px;
  background-color: #E2DDD7;
}

.upcoming_post h2 {
  font-size: 40px;
  margin-bottom: 68px;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  text-align: center;
  color: #CAC3BB;
}

.tag_textstyle strong:before, .tag_textstyle strong:after {
  width: 50px;
}

/* ===== Style-End ================================================== */
/* ===== Style ================================================== */
.video-lists_new {
  width: 60%;
  margin: 82px auto 20px;
}

.video-lists_new .wrapvideo {
  width: 33.33%;
  float: left;
  padding: 0 14px;
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
}

.video-lists_new .wrapvideo .itemvideo {
  position: relative;
  box-shadow: 3px 7px 14px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 3px 7px 14px rgba(0, 0, 0, 0.3);
}

.video-lists_new .wrapvideo .itemvideo .widgettitle {
  font-size: 18px;
  color: #F9F2DF;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  position: absolute;
  top: 100%;
  width: 100%;
  margin-top: 14px;
  margin-bottom: 0;
  z-index: 1;
}

.video-lists_new .wrapvideo .itemvideo .mejs-controls {
  opacity: 0;
}

.video-lists_new .wrapvideo .itemvideo .mejs-overlay:hover .mejs-controls {
  opacity: 1;
}

.video-lists_new .wrapvideo .itemvideo .mejs-mediaelement {
  -ms-transform: scale(1.4);
      transform: scale(1.4);
  -webkit-transform: scale(1.4);
}

.video-lists_new .wrapvideo h3 {
  margin-top: 45px;
  color: #6fb3e4;
  margin-bottom: 0;
}

.video-lists_new .wrapvideo h3 a {
  font-size: 13px;
  color: #6fb3e4;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  text-transform: uppercase;
}

.video-lists_new .wp-video {
  overflow: hidden;
}

.block-6 {
  position: relative;
}

.block-6 .social-links {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .block-6 .social-links {
    margin-bottom: 25px;
  }
}
.block-6 .social-links li a {
  width: 20px;
  height: 20px;
}

.block-6 .logo {
  padding: 0 10px;
  margin-bottom: 30px;
}

@media (min-width: 767px) {
  .block-6 .logo {
    max-width: 341px;
  }
}
.block-6 .btn {
  position: relative;
  z-index: 1;
}

.play_btn {
  width: 50px;
  height: 50px;
  display: block;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}

.play_btn.lgtype {
  width: 70px;
  height: 70px;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
  background: white;
}

#fp-nav ul li a.active span, .fp-slidesNav ul li a.active span {
  background: #ba9966;
}

#fp-nav ul li, .fp-slidesNav ul li {
  margin: 20px 7px;
}

#fp-nav ul li:hover a span, .fp-slidesNav ul li:hover a span {
  background: #ba9966;
}

#fp-nav ul li:hover .fp-tooltip, #fp-nav.fp-show-active a.active + .fp-tooltip {
  color: #ba9966;
}

@media (max-width: 767px) {
  .block-6 .btn-outlined {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }
}
/* ===== Style-End ================================================== */
/*# sourceMappingURL=main.css.map */
/* ===== New Changes ================================================== */
.home-path g.groupcircle-point {
  opacity: 0;
}

.bgset_img.fp-completely g.groupcircle-point {
  opacity: 1;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition-delay: 3s;
  -webkit-transition-delay: 3s;
  -moz-transition-delay: 3s;
}

.mobilesvg g.groupcircle-point {
  opacity: 0;
}

.bgset_img.active .mobilesvg g.groupcircle-point {
  transition-delay: 1.5s;
  -webkit-transition-delay: 1.5s;
  -moz-transition-delay: 1.5s;
  opacity: 1;
}

.hover-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .footer_bg.active .pop-effect, .footer_bg .pop-effect {
    -ms-transform: none;
        transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -webkit-transition: none;
    transition: none;
  }

  /*
  .pop-effect,  .home .footer_bg .pop-effect, .single-product .footer_bg .pop-effect { transform: scale(0.8); -webkit-transform: scale(0.8); -moz-transform: scale(0.8); -webkit-transition: all 900ms;-moz-transition: all 900ms;-ms-transition: all 900ms;-o-transition: all 900ms;transition: all 900ms;}
    */
}
@media (min-width: 768px) {
  .active .footer_bg.active .pop-effect, .active .footer_bg .pop-effect {
    -ms-transform: none;
        transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -webkit-transition: none;
    transition: none;
  }

  /*
    .active .pop-effect, .home .footer_bg.active .pop-effect, .single-product .footer_bg.active .pop-effect {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);

  }
  */
}
.touch .pop-effect {
  -ms-transform: none;
      transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -webkit-transition: none;
  transition: none;
}

.touch .active .pop-effect {
  -ms-transform: none;
      transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -webkit-transition: none;
  transition: none;
}

/*@media (min-width:768px) {
.active .fp-tableCell {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}
}*/
.mian-bg {
  background-image: inherit !important;
}

/* ===== kilchoman-club ======== */
.kilchoman-club-section .opacity_base {
  opacity: 0;
}

.kilchoman-club-section.fp-completely .opacity_base.sm-time {
  -webkit-animation: opacityB 1s 0s ease-in-out forwards;
          animation: opacityB 1s 0s ease-in-out forwards;
}

.kilchoman-club-section.fp-completely .opacity_base.md-time {
  -webkit-animation: opacityB 1s 0.5s ease-in-out forwards;
          animation: opacityB 1s 0.5s ease-in-out forwards;
}

.kilchoman-club-section.fp-completely .opacity_base.lg-time {
  -webkit-animation: opacityB 1s 1s ease-in-out forwards;
          animation: opacityB 1s 1s ease-in-out forwards;
}

.new-shade-left {
  background-position: top left;
  left: 0;
  top: 0;
}

.new-shade-right {
  background-position: left top;
  right: 0;
  top: 0;
}

.new-shade-left, .new-shade-right {
  width: 70%;
  background-size: 100% !important;
}

.comparison_slider {
  background: #2b2d69;
  height: 100%;
  overflow: hidden;
}

div.s1, div.s2 {
  opacity: 0;
  transition: linear 0.3s;
  -webkit-transition: linear 0.3s;
  -moz-transition: linear 0.3s;
}

/*.comparison_slider.hideimage div.s1, .comparison_slider.hideimage div.s2 {opacity:0 !important;}*/
.comparison_slider.hideimage .new-shade-left, .comparison_slider.hideimage .new-shade-right {
  opacity: 0.8 !important;
}

.details.s1labe1, .details.s1labe2 {
  opacity: 0.3;
  transition: linear 0.5s;
  -webkit-transition: linear 0.5s;
  -moz-transition: linear 0.5s;
}

.comparison_slider.leftmove div.s1 {
  opacity: 0 !important;
}

.comparison_slider.rightmove div.s2 {
  opacity: 0 !important;
}

.dragarrow {
  left: auto;
  right: 110px;
  transition: linear 0.5s;
  -webkit-transition: linear 0.5s;
  -moz-transition: linear 0.5s;
}

.comparison_slider.leftmove .details.s1labe1 {
  opacity: 0 !important;
}

.comparison_slider.rightmove .details.s1labe2 {
  opacity: 0 !important;
}

.comparison_slider.rightmove.leftmove.hideimage .details.s1labe2, .comparison_slider.rightmove.leftmove.hideimage .details.s1labe1 {
  opacity: 0.3 !important;
}

.comparison_slider.rightmove .dragarrow, .comparison_slider.leftmove .dragarrow {
  opacity: 0 !important;
}

/*.comparison_slider.rightmove.leftmove.hideimage .dragarrow {opacity: 1 !important;}*/
.comparison_slider.rightmove.leftmove.hideimage div.s1, .comparison_slider.rightmove.leftmove.hideimage div.s2 {
  opacity: 0.2 !important;
}

.video-lists_new .wrapvideo {
  margin-bottom: 40px;
}

.video-lists_new {
  margin: 65px auto 20px;
}

.cd-image-container .bottlewrap {
  width: 700px;
  margin: 0 auto;
}

.cd-image-container .bottlewrap img {
  max-width: 400px;
  display: block;
  margin: 0 auto;
  position: relative;
  left: 0;
  height: auto;
}

.detalwrap-block {
  right: 17%;
}

.divide-blockwrap .path-mapcover {
  text-align: left;
}

.mainmap {
  margin-left: 78px;
  margin-top: 0px;
}

/*.home-path { left: -10px;padding: 0 0 0 10px;top: -188px;}*/
#svg-container {
  left: -10px;
  padding: 0 0 0 0px;
  top: -188px;
}

.mejs-video,
.wp-video-shortcode video, video.wp-video-shortcode {
  max-height: 200px;
}

.wp-video-shortcode.mejs-container-fullscreen video, .mejs-container-fullscreen video.wp-video-shortcode {
  max-height: 100% !important;
}

.menu-image-hover-wrapper .hover-video {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.menu-image-hover-wrapper .img-propeq1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  /*opacity: 0 !important;*/
}

.sidebar .scrollwrap li .menu-image-hover-wrapper {
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.sidebar .scrollwrap li .menu-image-hover-wrapper.active {
  z-index: 3;
}

.menu-image-hover-wrapper.active .img-propeq1, .menu-image-hover-wrapper.active .hover-video {
  opacity: 1;
  visibility: visible;
}

.menu-image-hover-wrapper:hover .img-propeq1 {
  opacity: 0;
  visibility: hidden;
}

#section2 {
  overflow: hidden;
}

.cd-handle:after {
  height: 720px;
  background-size: 100% 100%;
}

.ieall #section1.active .fp-tableCell {
  -ms-transform: none;
      transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  transition: none;
  -webkit-transition: none;
}

.mian-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mian-bg.bg-hide {
  background-image: inherit !important;
}

.btnvideo {
  display: none;
  width: 70px;
  height: 70px;
  margin: 25px auto;
}

.wrap_intab .in_blocks.img-wraphold {
  float: right;
}

.wrap-containtab .img-wraphold.onlyfire {
  display: none;
}

@-moz-document url-prefix() {
  .wrap-containtab .img-wraphold {
    display: none;
  }

  .wrap-containtab .img-wraphold.onlyfire {
    display: table-cell;
    float: none !important;
  }

  .wrap-containtab .in_blocks.detail_elements {
    float: none !important;
  }
}
.wrap_intab .in_blocks.detail_elements {
  float: left;
  background-position: top center !important;
}

.tap-to-compare {
  clear: both;
}

.tablinks ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  width: 93%;
}

.tablinks ul li {
  float: left;
  width: 50%;
  margin: 0;
  cursor: pointer;
  padding: 0 0 27px;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.tablinks ul li img {
  max-width: 165px;
  opacity: 0.5;
}

.tablinks ul li.active img {
  opacity: 1;
}

.tablinks ul li a:after, .tablinks ul li.active a:after {
  display: none;
}

.mobile-tab {
  display: none;
}

.mobile-tab:before {
  background: url("/wp-content/themes/kilchoman/img/tap-compare-img.png") left top no-repeat;
  content: "";
  width: 70px;
  height: 75px;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  background-size: 70px;
}

.mobile-tab:after {
  content: "";
  border: 3px solid #999;
  -webkit-border-radius: 30px;
  height: 20px;
  width: 20px;
  position: absolute;
  right: 0;
  left: 1px;
  top: 122px;
  -webkit-animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  opacity: 0;
  margin: 0 auto;
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
.sub-tabs-content {
  position: relative;
}

.mobile-tab .shade_blue, .mobile-tab .shade_brown {
  background-size: cover !important;
  -webkit-background-size: cover !important;
  background-color: transparent;
  width: 61%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: 100% !important;
}

.mobile-tab .shade_blue {
  left: 0;
}

.mobile-tab .shade_brown {
  right: 0;
}

.preloader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(225, 220, 214, 0.8) url("/wp-content/themes/kilchoman/img/loader-ring.gif") center no-repeat;
  background-size: 70px auto;
  z-index: 9999;
}

.customtab_wrap .list_type4 {
  position: relative;
}

.mobile-tab {
  background: #233567;
  position: relative;
  padding: 20px 0 40px;
}

.tablinks {
  position: relative;
  z-index: 1;
}

.sub-tabs h2 {
  color: #ba9765;
}

.sub-tabs, .sub-tabs p {
  color: #f9f2df;
}

.sub-tabs .prograsswrap {
  margin-bottom: 40px;
}

.sub-tabs-content {
  clear: both;
  padding: 0 30px;
}

/*.mobilesvg {position: absolute;height:260px;z-index: 100;top: -61px;left:-70px; display: none; width: 100%;}*/
.mobilesvg {
  position: absolute;
  height: 260px;
  z-index: 100;
  top: -51px;
  left: 71px;
  display: none;
  width: 100%;
}

.showproduct_spot.zoomingstop .elem_img {
  transform: scale(1.07088, 1.07088) translate3d(0px, -0.266667%, 0px) !important;
  -webkit-transform: scale(1.07088, 1.07088) translate3d(0px, -0.266667%, 0px) !important;
}

.elem_img {
  transition: linear 0.1s;
  -webkit-transition: linear 0.1s;
  -moz-transition: linear 0.1s;
}

.product_showcaseDetail .block-md-head, .product_showcaseDetail .lined_listtwo, .product_showcaseDetail .listblocks {
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
}

.circular-chart {
  opacity: 0;
}

.active .product_showcaseDetail .block-md-head, .active .product_showcaseDetail .lined_listtwo, .active .product_showcaseDetail .listblocks {
  opacity: 1;
  transition-delay: 1.4s;
  -webkit-transition-delay: 1.4s;
  -moz-transition-delay: 1.4s;
}

.active .circular-chart {
  -webkit-animation: opas 0.2s ease-out forwards;
          animation: opas 0.2s ease-out forwards;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.fp-viewing-1 .circular-chart .circle {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.cask-barmain .cask-img {
  margin: 0 auto 16px;
  padding: 0;
  max-width: 83px;
  max-height: 75px;
}

.cask-barmain h3 {
  margin: 0 0 20px 0;
  color: #ba9765;
  font-size: 25px;
}

.cask-barmain {
  margin: 0 auto;
  padding: 0;
  max-width: 530px;
  width: 100%;
}

.cask-barmain .cask-bar {
  margin: 0 0 13px 0;
  padding: 0;
  width: 100%;
  background: #ba9765;
  height: 15px;
  position: relative;
}

.cask-barmain .cask-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 2px;
  background: url(//discoverkilchoman.com/wp-content/themes/kilchoman/images/hr-line-dot-light.png) top center repeat-x;
  background-size: auto 2px;
  opacity: 0.5;
}

.cask-barmain .cask-bar span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: #fff;
  transition: linear 1s;
  -webkit-transition: linear 1s;
  -moz-transition: linear 1s;
}

.cask-barmain .cask-bar:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: url(//discoverkilchoman.com/wp-content/themes/kilchoman/images/hr-line-dot-light.png) top center repeat-x;
  background-size: auto 2px;
  opacity: 0.5;
}

.cask-barmain .left-name, .cask-barmain .right-name {
  margin: 0;
  padding: 0;
  float: left;
  width: 50%;
  font-size: 15px;
  text-transform: uppercase;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  position: relative;
  top: -70px;
}

.cask-barmain .left-name {
  text-align: left;
  color: #f9f2df;
}

.cask-barmain .right-name {
  text-align: right;
  color: #ba9765;
}

.product_showcaseDetail .lined_listtwo {
  max-width: 850px;
  margin: 50px auto 70px;
  width: 90%;
}

.product_showcase-wrap .product_showcaseDetailwrap {
  padding: 0 9% 0 0;
}

.product_showcaseDetail_inner {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}

.taste_graph {
  margin: 0 80px 0 40px;
}

.kilcho-maptext {
  max-width: 493px;
  margin: 0 auto;
}

.kilchoman-club .kilcho-s1 .kilcho-maptext p {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 28px;
}

.kilchoman-club .kilcho-s1 .kilcho-maptext .btn {
  margin-top: 38px;
}

.kilchoman-club .kilcho-s1 .kilcho-maptext .logo {
  margin-bottom: 43px;
}

.block-2 .kilcho-s1 {
  padding: 3.9%;
}

.page-template-home.fp-viewing-2 .togglemenu button .bars {
  background-color: #213f70;
}

.page-template-home.fp-viewing-2 .togglemenu .menutxt {
  color: #213f70;
}

.page-template-home.fp-viewing-3 .togglemenu {
  color: #213f70;
}

.page-template-home.fp-viewing-3 .togglemenu button .bars {
  background-color: #213f70;
}

.page-template-home.fp-viewing-3 header nav a {
  color: #213f70;
}

.single-product.fp-viewing-1 .togglemenu button .bars {
  background-color: #213f70;
}

.single-product.fp-viewing-1 header nav a {
  color: #213f70;
}

.single-product.fp-viewing-1 header nav i.iconcart {
  background: url("/wp-content/themes/kilchoman/img/shopping_cart_blue.svg") center no-repeat;
  background-size: 25px;
  height: 25px;
  line-height: 23px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
}

.single-product.fp-viewing-1.show_cart header nav i.iconcart {
  display: none;
}

.single-product.fp-viewing-1.show_cart .cart-close {
  color: #213f70;
}

.single-product.fp-viewing-2 header nav a {
  color: #213f70;
}

.single-product.fp-viewing-2 header nav .iconcart img {
  opacity: 0;
}

.single-product.fp-viewing-2 header nav i.iconcart {
  background: url("/wp-content/themes/kilchoman/img/shopping_cart_blue.svg") center no-repeat;
  background-size: 25px;
  height: 25px;
  line-height: 23px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
}

.single-product.fp-viewing-2.show_cart header nav i.iconcart {
  display: none;
}

.single-product.fp-viewing-2.show_cart .cart-close {
  color: #213f70;
}

/*.page-template-home.fp-viewing-2 header nav a {color: #213f70;}*/
.menu-outer {
  width: 100%;
  display: -webkit-box;
  display: flex;
  display: -moz-flex;
}

.sidebar .slimScrollDiv, .sidebar .scrollwrap {
  display: -webkit-box;
  display: flex;
  display: -moz-flex;
  height: 100% !important;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  flex-wrap: wrap;
}

.sidebar .slimScrollDiv {
  margin-top: 0 !important;
  padding-top: 65px;
}

.sidebar li a {
  font-size: 30px;
}

.sidebar li .icon-social a {
  font-size: 32px;
}

.sidebar li {
  margin-top: 14px;
}

.sidebar ul.social-links {
  margin: 40px 68px 10px;
}

.sidebar li a:hover {
  font-size: 30px;
}

.sidebar li a > div {
  -ms-transform: scale(1);
      transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: relative;
}

.sidebar li a:hover > div {
  -ms-transform: scale(1.1) translateX(17px);
      transform: scale(1.1) translateX(17px);
  -webkit-transform: scale(1.1) translateX(17px);
  -moz-transform: scale(1.1) translateX(17px);
}

.show_cart .cart-close {
  display: inline-block;
}

.show_cart i.iconcart {
  display: none;
}

.cart-close {
  display: none;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  text-transform: uppercase;
  color: #F9F2DF;
  margin: 0 5px 0 0;
  vertical-align: middle;
  cursor: pointer;
}

.header-cart-count {
  color: #F9F2DF;
}

.page-template-home.show_cart header nav a, .product-template-default.single.show_cart header nav a {
  color: #213f70;
}

.page-template-home.show_cart .cart-close, .product-template-default.single.show_cart .cart-close {
  color: #213f70;
}

.topaccount .fa {
  display: none;
}

.with-bgemblom .groupitem .in-details {
  padding-right: 0;
}

.product-template-default.single header .head_logo {
  display: none;
}

.product-template-default.single .group_contain .img_place {
  padding-top: 6%;
}

.product-template-default.single .group_contain .contentarea .btn-outlined:hover {
  padding: 14px 30px;
}

.details-imgcontent .overlay_black {
  background-color: transparent !important;
  opacity: 1 !important;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,282727+100&0+0,1+75 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(75%, #1e1d1d), to(#282727));
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #1e1d1d 75%, #282727 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#282727", GradientType=1);
  /* IE6-9 */
}

.product_showcase-wrap .img_place.limited_edition:after {
  content: "";
  position: absolute;
  top: 14%;
  right: 6%;
  width: 113px;
  height: 113px;
  background: url("/wp-content/themes/kilchoman/img/limited_edition-big.png") center no-repeat;
}

.group_contain .contentarea.limited_edition h1:after {
  content: "";
  position: absolute;
  top: -40px;
  right: -100px;
  width: 95px;
  height: 95px;
  background: url("/wp-content/themes/kilchoman/img/limited_edition-big.png") center no-repeat;
  background-size: 95px;
}

.upimgmain {
  position: relative;
}

.upimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.upimg img {
  width: 100%;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.upimgbottom {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
}

.upimgmain {
  overflow: hidden;
}

.upimgmain-conatent {
  margin: 0;
  padding: 0;
  position: relative;
}

/*.upimgmain.active img {transform: scale(1, 1) translate3d(0px, 0%, 0px) !important;}*/
/*.upimgmain.active .upimgbottom {position: absolute;}*/
.mobile {
  display: none;
}

.product-video .tag_typetext {
  margin-top: 0;
  margin-bottom: 30px;
}

.product-video .btnplay {
  width: 67px;
  height: 67px;
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(186, 150, 98, 0.5);
  border-radius: 100%;
}

.product-video .btnplay:before {
  position: absolute;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid #f9f2df;
  content: "";
  left: 26px;
  top: 21px;
}

.product-video .videotype2 {
  max-width: 907px;
  width: 90%;
}

.product-video .videotype2 video {
  -o-object-fit: cover;
     object-fit: cover;
}

.product-video .tag_typetext strong small {
  margin: 0px 20px 2px;
  margin-left: 20px;
}

.groupitem .in-details h3.limited_edition:before {
  content: "";
  position: absolute;
  top: -40px;
  right: -72px;
  width: 95px;
  height: 95px;
  background: url("/wp-content/themes/kilchoman/img/limited_edition-big.png") center no-repeat;
  background-size: 95px;
  z-index: 0;
}

.groupitem .in-details h3 a {
  position: relative;
  z-index: 1;
}

@keyframes fadeing {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeing {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeing .img_place {
  opacity: 1;
}

.fadeing.active .img_place {
  animation: fadeing 0.4s 0s ease-in-out;
  -webkit-animation: fadeing 0.4s 0s ease-in-out;
  -moz-animation: fadeing 0.4s 0s ease-in-out;
}

.plain_detailwrap .plain_detail .item {
  text-align: left;
}

.grid .element-item .blog-list .img_place {
  -ms-transform: translateX(-110%);
      transform: translateX(-110%);
  -webkit-transform: translateX(-110%);
  -moz-transform: translateX(-110%);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.grid .element-item .blog-list .blog-descript {
  -ms-transform: translateX(130%);
      transform: translateX(130%);
  -moz-transform: translateX(130%);
  -webkit-transform: translateX(130%);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.grid .element-item.animated .blog-list .img_place, .grid .element-item.animated .blog-list .blog-descript {
  -ms-transform: translateX(0%);
      transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
}

.grid .element-item .blog-list .btn {
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.grid .element-item.animated .blog-list .btn {
  opacity: 1;
}

.page-template-blog .item-inner-content {
  padding: 85px 0;
}

.page-template-blog .wrap-carousel .owl-dots {
  bottom: 1px;
}

#new_loaded_content {
  margin-bottom: 0;
}

.custom-pagination {
  margin-bottom: 80px;
}

.gm-style .active > div:first-child {
  /*display: none;*/
  background: transparent;
  box-shadow: none;
}

.gm-style .gm-style-iw-t::after {
  opacity: 0;
  visibility: hidden;
}

.gm-style-iw-t::before {
  opacity: 0;
  visibility: hidden;
}

.gm-style div.active {
  margin-top: 20px;
}

.gm-style .active > div:last-child {
  margin: 9px -30px 0 0;
  opacity: 1 !important;
  /*height: 20px !important;*/
  font-family: "Source Sans Pro", sans-serif;
  border-radius: 0px;
  padding: 12px 12px 24px !important;
}

.gm-style .active > div:last-child:before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  display: block;
  line-height: 1;
  color: #fff;
  opacity: 1;
}

.gm-style .active > div:last-child img {
  opacity: 0;
}

.gm-style-iw {
  width: 295px !important;
  margin-top: 10px;
  padding: 17px 20px;
  margin-left: -37px;
}

.gm-style-iw:before {
  position: absolute;
  left: 0;
  bottom: 13px;
  right: 0;
  top: 0;
  content: "";
  background: rgba(27, 57, 117, 0.8);
  z-index: 0;
}

.gm-style-iw:after {
  position: absolute;
  left: 0;
  bottom: 0px;
  right: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 13px solid rgba(27, 57, 117, 0.8);
  content: "";
  width: 20px;
  margin: 0 auto;
  z-index: 0;
}

.gm-style-iw div {
  display: block !important;
  max-width: 100% !important;
  overflow: auto !important;
}

.gm-style-iw h4 {
  color: #f9f2df;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  line-height: normal;
}

.gm-style-iw h4:before {
  position: absolute;
  left: 0;
  bottom: -15px;
  right: 0;
  content: "";
  border-bottom: 2px dotted #fff;
  width: 54px;
  margin: 0 auto;
}

.gm-style-iw span {
  color: #a28a67;
  display: block;
  width: 100%;
  padding: 0 10px;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.gm-style-iw span p {
  font-size: 16px;
  color: #a28a67;
  margin-bottom: 0;
  word-break: break-all;
}

.productslide_cover .group_owlcontol .custom_owlbtn {
  margin: 0 85px;
}

.block_detailbottom .batch-year {
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 0;
  font-size: 20px;
  color: #ba9662;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  left: 0;
  top: 0;
}

.bottom-conatent-slider .block_detailbottom {
  padding-top: 40px;
}

.productslide_cover .itemz img {
  opacity: 1;
}

.productslide_cover .itemz.active img {
  animation: fadeing 0.5s 0s ease-in-out;
  -webkit-animation: fadeing 0.5s 0s ease-in-out;
  -moz-animation: fadeing 0.5s 0s ease-in-out;
}

.bottom-conatent-slider {
  margin-top: -49px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.bottom-conatent-slider .block_detailbottom {
  padding-top: 50px;
}

.productslide_cover {
  width: 90%;
  max-width: 1235px;
}

.productslide_cover .img_switchgroup {
  width: 59%;
}

.productslide_cover .plain_detailwrap_new {
  width: 41%;
}

.page-template-comraich .minheight_imgspot .detail_block, .page-template-tours_events .minheight_imgspot .detail_block {
  max-width: 500px;
  margin: 0 auto;
  width: 90%;
}

.productslide_cover {
  position: relative;
  z-index: 1;
  background: #fff;
}

.short_block.with-bgemblom {
  position: relative;
  z-index: 2;
}

.minheight_imgspot .detail_block p {
  font-size: 17px;
}

.page-template-blog .blog-list .blog-section h6 {
  font-style: normal;
  margin-bottom: 8px;
}

.wrap-carousel #new_loaded_content .blog-list .img_place {
  cursor: pointer;
}

.page-template-shop .base_detailblock {
  padding: 50px 0 30px;
}

.page-template-shop .lined_list {
  margin-bottom: 80px;
}

/*.page-template-shop.woocommerce-page .listparlax_wrap ul li:nth-child(3n+2) {margin-top: 80px;margin-bottom: 10px;}*/
.page-template-shop.woocommerce-page .listparlax_wrap ul li:nth-child(3n+2) {
  padding-top: 70px;
  padding-bottom: 20px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.page-template-shop.woocommerce-page .listparlax_wrap .hot ul li:nth-child(3n+2) {
  padding-top: 58px;
  padding-bottom: 0px;
}

.page-template-shop .listparlax_wrap ul li .img-description h3 {
  font-size: 25px;
  color: #414042;
}

.listparlax_wrap .img_place {
  width: 70%;
  margin-bottom: 40px;
  background-size: contain !important;
}

.page-template-shop .blog-section h6 {
  font-style: normal;
  margin-bottom: 8px;
}

.page-template-shop .blog-section h2 {
  margin-bottom: 15px;
}

.blog-list .blog-section p {
  font-size: 17px;
  line-height: 26px;
}

.blog-list .blog-section .blog-date {
  font-weight: 400;
}

.listparlax_wrap {
  margin: 25px 3% 120px;
}

.grid-item-inner {
  position: relative;
  background-color: #e2ddd7;
  padding: 7% 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.grid-item-inner .wpb_wl_preview_area {
  left: 0;
}

@media screen and (min-width: 1025px) {
  .grid-item-inner:hover {
    background-color: #c3bcb4;
  }
}
/*.onshow_cart {overflow: hidden;}*/
.blog-list .img_place {
  -ms-transform: translateX(-110%);
      transform: translateX(-110%);
  -webkit-transform: translateX(-110%);
  -moz-transform: translateX(-110%);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.blog-list .blog-descript {
  -ms-transform: translateX(130%);
      transform: translateX(130%);
  -webkit-transform: translateX(130%);
  -moz-transform: translateX(130%);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.blog-list .blog-descript .btn {
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.blog-list.animated .blog-descript .btn {
  opacity: 1;
}

.blog-list.animated .blog-descript, .blog-list.animated .img_place {
  -ms-transform: translateX(0%);
      transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
}

.page-template-shop {
  overflow-x: hidden !important;
}

.single-distillery {
  overflow-x: hidden !important;
}

.single-distillery .detail-post-container {
  padding-bottom: 0;
  position: fixed;
  top: 77px;
  left: 0;
  width: 100%;
  height: 500px;
}

.single-distillery .container-sm {
  margin-top: 500px;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
  float: none;
  margin: 0 auto;
  width: 70%;
}

.single-distillery .blog-list .blog-section h2 {
  text-align: left;
  margin-bottom: 15px;
}

.blog-list .blog-section h6 {
  margin-bottom: 8px;
}

.blog-list.animated .blog-descript .btn:hover {
  -webkit-transition-delay: inherit;
          transition-delay: inherit;
}

.popup-content .equal_divide_blocks .inside_contents p {
  font-size: 17px;
}

.page-template-shop .popup-content, .page-template-club-page .popup-content {
  height: auto;
}

.main-detail-page {
  overflow-x: hidden;
}

.page-template-tours_events .img_list-wrap {
  margin-left: 0;
}

.page-template-tours_events .wpb_wl_preview_area {
  left: 0;
}

.page-template-tours_events .taxtdetail_block {
  width: 73%;
}

.page-template-tours_events .taxtdetail_block p {
  margin-bottom: 25px;
  font-size: 17px;
}

.page-template-tours_events .grouped_lists ul {
  margin-left: 0;
}

.page-template-tours_events .grouped_lists li {
  padding: 0 5px;
  width: 25%;
  margin-left: 0;
}

.page-template-tours_events .plain-block {
  padding: 40px 4%;
}

.page-template-tours_events .grouped_lists {
  padding: 100px 4% 0;
}

.page-template-tours_events .grouped_lists .taxtdetail_block {
  max-width: 765px;
}

.page-template-tours_events .grouped_lists .taxtdetail_block {
  padding: 20px 0 50px;
}

.popup-content .single_variation_wrap .woocommerce-variation-add-to-cart {
  position: relative;
}

.popup-content .single_variation_wrap .woocommerce-variation-add-to-cart:before, .popup-content .inside_contents form.cart:not(.variations_form) .variations_button:before {
  content: "Quantity:";
  display: inline-block;
  color: #ba9662;
  margin-right: 10px;
  text-transform: uppercase;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  top: 16px;
  position: absolute;
  left: 26px;
}

.popup-content .single_variation_wrap .woocommerce-variation-add-to-cart .qty, .popup-content .inside_contents form.cart:not(.variations_form) .qty {
  padding-left: 105px;
}

.popup-content .inside_contents form.cart {
  position: relative;
}

.woocommerce div.product .popup-content form.cart table.variations {
  margin-bottom: 0;
}

.popup-content .equal_divide_blocks .inside_contents table .selectric {
  margin-bottom: 20px;
}

.popup-content .equal_divide_blocks .inside_contents input[type=number] {
  margin-bottom: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  box-shadow: none;
}

.woocommerce div.product .popup-content form.cart, .mfp-bg div.product .popup-content form.cart, .woocommerce div.product .popup-content .form-group.group-btnz, .mfp-bg div.product .popup-content .form-group.group-btnz {
  margin-bottom: 0;
}

.woocommerce div.product .popup-content span.price, .mfp-bg div.product .popup-content span.price, .woocommerce div.product .popup-content .popup-price span, .mfp-bg div.product .popup-content .popup-price span {
  color: #426eaf;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-top: -47px;
  font-style: normal;
}

.woocommerce div.product .popup-content span.price strong {
  font-weight: 600;
}

.woocommerce div.product .popup-content form.cart .single_add_to_cart_button {
  float: right;
  background-color: transparent;
  color: #1b3975;
}

.woocommerce div.product .popup-content form.cart .added_to_cart.wc-forward {
  display: none;
}

.cart_sidebar .cart-collaterals .cart_totals {
  width: 100%;
}

.cart_sidebar .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  float: right;
}

.cart_sidebar .shop_table .cart_item > a {
  padding: 0 10px;
}

.cart_sidebar li {
  margin-top: 0px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.cart_sidebar li .img-description strong {
  font-size: 17px;
}

#section2 {
  background-color: transparent !important;
}

#section2:before, #section2:after {
  display: none !important;
}

.gradient-blue .fp-tableCell {
  position: relative;
}

.section2mainimg {
  background-position: right center !important;
  background-size: contain !important;
  background-color: #213f70 !important;
  background-repeat: no-repeat !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gradient-blue .section2mainimg:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#213f70), color-stop(46%, #213f70), color-stop(86%, rgba(33, 63, 112, 0)));
  background: linear-gradient(90deg, #213f70 0%, #213f70 46%, rgba(33, 63, 112, 0) 86%);
}

.gradient-blue .section2mainimg:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, #213f70));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #213f70 70%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#213f70", GradientType=0);
  display: none;
}

.gradient-blue .divide-blockwrap {
  position: relative;
  z-index: 2;
}

.footer_bg .fp-tableCell {
  position: relative;
}

.footer_bg-mainbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}

.mejs-video.mejs-container-fullscreen {
  max-height: inherit;
}

.pop-effect {
  height: 100%;
  display: table;
  width: 100%;
  vertical-align: middle;
}

.pop-effect-inner {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

.plain_detail .owl-carousel .owl-item {
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  opacity: 0;
}

.plain_detail .owl-carousel .owl-item.active {
  opacity: 1;
}

.plain_detail .owl-carousel .animated {
  -webkit-animation-duration: 0ms !important;
          animation-duration: 0ms !important;
}

.non-chill {
  max-width: 700px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.page-template-blog .owl-carousel .item {
  position: relative;
}

.page-template-blog .owl-carousel .item:before {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#000000", GradientType=1);
  /* IE6-9 */
  position: absolute;
  right: 0;
  top: 0;
  width: 95%;
  height: 100%;
  content: "";
  opacity: 0.75;
}

.page-template-blog .owl-carousel .item .overlay_black {
  display: none;
}

.container-sm-inner h1, .container-sm-inner h2, .container-sm-inner h3, .container-sm-inner h4, .container-sm-inner h5, .container-sm-inner h6 {
  color: #ba9662;
}

.container-sm-inner h2 {
  margin-top: 15px !important;
}

.product_type .selectric-items .dropdetails h3 {
  font-size: 20px;
}

.popup-content .variations .selectric-items .slimScrollDiv {
  margin: 15px 0;
  height: 237px !important;
}

.popup-content .variations .selectric-items .slimScrollDiv .selectric-scroll {
  height: 237px !important;
}

.woocommerce div.product .popup-content .selectric-scroll span.price {
  margin-top: 0;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 0;
}

.woocommerce div.product .popup-content h2.blockHead, div.product .popup-content h2.blockHead {
  margin-bottom: 5px;
}

.woocommerce div.product .popup-content .selectric-scroll span.price strong, div.product .popup-content .selectric-scroll span.price strong {
  font-weight: 600;
}

div.product .popup-content .product_type .selectric-items .dropdetails span {
  font-size: 16px;
}

.page-template-shop .base_detailblock {
  background-image: url("/wp-content/themes/kilchoman/img/Group-559.png");
  background-size: auto;
  background-position: 105% -89px;
  background-repeat: no-repeat;
}

.details-map-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  -webkit-background-size: cover !important;
  background-position: center center !important;
}

.fullimagewith-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  -webkit-background-size: cover !important;
  background-position: center center !important;
}

.page-template-club-page .pagewrap_contain {
  overflow: hidden;
  position: relative;
}

.lined_elements span {
  display: inline-block;
  vertical-align: middle;
  color: #6fb3e4;
}

.equal_divide_blocks .inside_contents span.titlebottom-variation {
  font-size: 20px;
  color: #ba9662;
  font-weight: 600;
  font-style: italic;
  display: block;
  line-height: normal;
}

.equal_divide_blocks .inside_contents p {
  margin: 30px 0 0;
}

.equal_divide_blocks .inside_contents .form-group {
  margin-top: 35px;
}

.sm-details span {
  font-size: 20px;
  color: #ba9662;
  font-weight: 600;
  font-style: italic;
  display: block;
  line-height: normal;
  margin-top: 7px;
  margin-bottom: 7px;
}

.shop_table .img-description h3 span {
  font-size: 15px;
  font-weight: 600;
  font-family: "Source Sans Pro", sans-serif;
  margin-bottom: 10px;
  margin-top: 10px;
  text-transform: none;
}

/*.full-page-fluid.modal-open {overflow: hidden !important;}*/
.product_soldout .grid-item-inner {
  background-color: #e2d7d7;
}

.popup-product-form .contactWrap div.wpcf7-mail-sent-ok, div.wpcf7-mail-sent-ok {
  display: none !important;
}

.popup-product-form .contactWrap .placeholdertxt {
  color: #2f2f2f;
}

.popup-product-form .form-control:focus + .placeholdertxt, .popup-product-form .contactWrap .stickylabel {
  color: #ba9662;
}

.popup-product-form p a {
  color: #ba9662;
}

.htmlmodal {
  overflow: hidden;
}

.htmlmodal .modal-open {
  overflow: hidden !important;
}

.order-detail-address .order-again {
  margin-top: 50px !important;
  display: inline-block;
  padding: 14px 30px !important;
}

.order-detail-address .order-again:hover {
  padding: 14px 35px !important;
}

.grid-list-item .img_place .btn-playtype1 {
  z-index: 2;
}

.grid-list-item .img_place .teamvideo-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.grid-list-item .img_place.active .btn-playtype1, .grid-list-item .img_place.active .teamvideo-img {
  z-index: 0;
}

.woocommerce-account .status-publish {
  padding: 0 0 60px 0;
}

#account-settings .woocommerce-Button {
  margin-top: 10px;
}

.woocommerce-account-content-block.loading:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(226, 221, 215, 0.5) url("/wp-content/themes/kilchoman/img/loader-ring.gif") center no-repeat;
  background-size: 80px auto;
  z-index: 1;
}

p.button-row {
  clear: both;
}

.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover {
  background-color: transparent;
  color: #1b3975;
}

.woocommerce .cart_totals .blockUI.blockOverlay {
  width: auto !important;
  height: auto !important;
  left: -25px !important;
  top: -25px !important;
  bottom: -25px !important;
  right: -25px !important;
}

.woocommerce-billing-fields__field-wrapper .form-row input[type=checkbox], .woocommerce-shipping-fields__field-wrapper .form-row input[type=checkbox] {
  height: 0 !important;
  width: 0;
  visibility: hidden;
  margin: 0;
}

.woocommerce-billing-fields__field-wrapper .form-row, .woocommerce-shipping-fields__field-wrapper .form-row {
  position: relative;
}

.woocommerce-billing-fields__field-wrapper .form-row input[type=checkbox] + label.error, .woocommerce-shipping-fields__field-wrapper .form-row input[type=checkbox] + label.error {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.woocommerce-shipping-fields__field-wrapper #shipping_myfield1_field {
  margin-bottom: 0;
}

.woocommerce-shipping-fields__field-wrapper #shipping_myfield2_field, .woocommerce-shipping-fields__field-wrapper #shipping_myfield2_field label {
  margin-top: 0 !important;
}

#refresh_div .woocommerce-message, #refresh_div .woocommerce-info {
  display: none !important;
}

/*
.loch-gorm .circular-chart text, .loch-gorm-v0-1 .circular-chart text {fill: #d1d2d4;}
.loch-gorm .circle, .loch-gorm-v0-1 .circle {stroke: #3a3a3c; opacity:1;}
.loch-gorm .circle.circleone, .loch-gorm-v0-1 .circle.circleone {stroke: #6d6e71; opacity:1;}
.loch-gorm .circle.circletwo, .loch-gorm-v0-1 .circle.circletwo {stroke: #818285; opacity:1;}
.loch-gorm .circle.circlethree, .loch-gorm-v0-1 .circle.circlethree {stroke: #a7a9ac; opacity:1;}
.loch-gorm .circle.circlefour, .loch-gorm-v0-1 .circle.circlefour {stroke: #d1d2d4; opacity:1;}
*/
.single-product .group_contain {
  width: 100%;
  padding: 0 30px;
}

.single-product .group_contain .img_place {
  padding-top: 0 !important;
  background-size: 81% auto !important;
  background-position: center center !important;
  width: 50%;
}

.single-product .group_contain .contentarea {
  width: 50%;
}

.single-product .group_contain .product-contentarea {
  margin-left: -118px;
}

.single-product .group_contain .product-contentarea .with-path {
  left: -118px;
}

.product-template-default.single .group_contain .contentarea .btn-outlined:hover, .product-template-default.single .group_contain .contentarea .btn-outlined:focus {
  padding: 14px 30px;
}

.single-product .block_divide .islay-map img {
  margin-left: -19px;
}

.video-lists_new .wrapvideo .itemvideo .mejs-mediaelement {
  -ms-transform: scale(1);
      transform: scale(1);
  -webkit-transform: scale(1);
}

.mejs-mediaelement iframe {
  width: 100%;
  height: 100%;
}

.block-1 .btn-outlined.primarytype:hover, .block-1 .btn-outlined.primarytype:focus {
  padding: 14px 30px;
}

#svgC {
  width: 100%;
  overflow: visible;
}

#nin {
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  position: absolute;
}

#svg-container {
  position: absolute;
  left: 0;
  top: -295px;
  z-index: 99999;
  width: 210px;
}

#svg_offset {
  opacity: 0;
  stroke-dasharray: 0;
}

.svg_solid_drow #svg_offset {
  opacity: 1;
  stroke-dasharray: 708.9688110352;
  -webkit-animation: dash1 4s 0s linear;
          animation: dash1 4s 0s linear;
}

@-webkit-keyframes dash1 {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 708.9688110352;
  }
}

@keyframes dash1 {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 708.9688110352;
  }
}
@keyframes dash1 {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 708.9688110352;
  }
}
.btnpathgroup {
  text-align: center;
  bottom: 0;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 5;
}

.single-product .btnpathgroup .btn-outlined {
  position: relative;
  margin: 0;
  padding: 14px 30px;
}

.btnpathgroup .btn-outlined {
  display: inline-block;
  white-space: nowrap;
}

.btnpathgroup svg {
  margin: -1px auto 0;
  display: block;
}

@-webkit-keyframes stroke1 {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke1 {
  to {
    stroke-dashoffset: 0;
  }
}
/*.spotpathwrap .circlepath {stroke-dasharray: 63;stroke-dashoffset: 63;}
.spotpathwrap .circleinner {opacity: 0;}
.spotpathwrap .path1 {stroke-dasharray: 49;stroke-dashoffset: 49;}
.spotdotpath {stroke-dasharray: 63;stroke-dashoffset: 64;}
.spot-path .path1 {stroke-dasharray: 98;stroke-dashoffset: 98;animation: dash3 1s 0.5s linear forwards;}
.spot-path .spotdotpath {stroke-dasharray: 126;stroke-dashoffset: 127;animation: dash22 1s 1.2s linear forwards;}
.spot-path .circlepath {stroke-dasharray: 124;stroke-dashoffset: 124;animation: stroke1 1s 1s ease-out forwards;}
.spot-path .circleinner {opacity: 1;transition: 1s 1.4s ease-out;}*/
@-webkit-keyframes dotanimation {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(92px);
            transform: translateY(92px);
  }
}
@keyframes dotanimation {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(92px);
            transform: translateY(92px);
  }
}
.spotpathwrap .circlepath {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}

.spotpathwrap .circleinner {
  opacity: 1;
}

.spotpathwrap .path1 {
  stroke-dasharray: 49;
  stroke-dashoffset: 49;
}

.spotdotpath {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}

.spot-path .path1 {
  stroke-dasharray: 49;
  stroke-dashoffset: 49;
  /*animation: dash3 1s 0.5s linear forwards;*/
}

.spot-path .spotdotpath {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  /*animation: dash22 1s 1.2s linear forwards;*/
}

.spot-path .circlepath {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  -webkit-animation: dotanimation 1s 0s linear forwards;
          animation: dotanimation 1s 0s linear forwards;
}

.spot-path .circleinner {
  opacity: 1;
  /*transition: 1s 1.4s ease-out;*/
  -webkit-animation: dotanimation 1s 0s linear forwards;
          animation: dotanimation 1s 0s linear forwards;
}

.single-product .spotpathwrap .path1 {
  stroke-dasharray: 119;
  stroke-dashoffset: 119;
}

.single-product .spot-path .path1 {
  stroke-dasharray: 398;
  stroke-dashoffset: 398;
  -webkit-animation: dash3 2s 0.5s linear forwards;
          animation: dash3 2s 0.5s linear forwards;
}

.single-product .spotdotpath {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
}

.spot-path .spotdotpath .spot-path .spotdotpath {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
}

.single-product .btnpathgroup svg {
  margin: -1px 0 -15px 0px;
  position: absolute;
  left: 0%;
  top: 0px;
}

.single-product .btnpathgroup .svg-outer {
  position: absolute;
  left: 50%;
  margin-left: -10px;
  height: 100%;
  top: 52px;
  overflow: hidden;
  width: 23px;
}

.single-product .btnpathgroup {
  padding-bottom: 208px;
  overflow: hidden;
}

@-webkit-keyframes dash3 {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash3 {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes stroke1 {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dash22 {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes dash22 {
  to {
    stroke-dashoffset: 0;
  }
}
/*#svg-container {opacity: 0;}*/
.linestart #svg-container {
  opacity: 1;
}

#cookie-law-info-bar {
  padding: 10px 22px;
}

#cookie-law-info-bar, #cookie-law-info-bar span {
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  color: #FFF;
  text-transform: uppercase;
}

#cookie-law-info-bar span {
  display: block;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: left;
  padding: 7px 245px 7px 0;
}

#cookie-law-info-bar .cli-plugin-button {
  padding: 5px 19px;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid #fff;
  margin-left: 17px;
  position: absolute;
  right: 0;
  top: 0;
}

#cookie-law-info-bar .cli-plugin-main-link {
  right: 110px;
}

#cookie-law-info-bar .cli-plugin-main-link:hover {
  background: transparent !important;
}

#cookie-law-info-bar .cli-plugin-main-button:hover {
  background: #fff !important;
}

#cookie-law-info-bar #cookie_action_close_header_reject.cli-plugin-button {
  background-color: transparent !important;
  position: fixed !important;
  bottom: 13px;
  right: 20px;
  top: auto !important;
  border: none !important;
  font-size: 0;
  line-height: 0;
  padding: 0;
  margin: 0;
  width: 23px;
  height: 23px;
}

#cookie-law-info-bar #cookie_action_close_header_reject.cli-plugin-button:before, #cookie-law-info-bar #cookie_action_close_header_reject.cli-plugin-button:after {
  position: absolute;
  top: 0;
  width: 2px;
  height: 23px;
  content: "";
  background: #fff;
}

#cookie-law-info-bar #cookie_action_close_header_reject.cli-plugin-button:before {
  left: 10px;
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}

#cookie-law-info-bar #cookie_action_close_header_reject.cli-plugin-button:after {
  right: 11px;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}

.footer_bg .mejs-layers .mejs-overlay-button {
  opacity: 0;
}

.nicescroll-cursors {
  background-color: #c3bcb4 !important;
}

.page-template-team .slimScrollBar {
  display: none !important;
}

.selectric-wrapper.selectric-tour-type .selectric:before {
  display: inline-block;
  color: #ba9662;
  text-transform: uppercase;
  margin-right: 0px;
  content: "Tour Type:";
  text-transform: uppercase;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  top: 16px;
  position: absolute;
  left: 26px;
}

.selectric-wrapper.selectric-tour-type .selectric .selectric-label {
  padding-left: 110px;
}

.selectric-wrapper.selectric-number-people .selectric:before {
  display: inline-block;
  color: #ba9662;
  text-transform: uppercase;
  margin-right: 0px;
  content: "Number of people:";
  text-transform: uppercase;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  top: 16px;
  position: absolute;
  left: 26px;
}

#single_event_adults .selectric-wrapper.selectric-number-people .selectric:before {
  content: "Please select Adults:";
}

#single_event_adults .selectric-wrapper.selectric-number-people .selectric .selectric-label {
  padding-left: 190px;
}

#single_event_childrens .selectric-wrapper.selectric-number-people .selectric:before {
  content: "Please select Children:";
}

#single_event_childrens .selectric-wrapper.selectric-number-people .selectric .selectric-label {
  padding-left: 214px;
}

.selectric-wrapper.selectric-number-people .selectric .selectric-label {
  padding-left: 174px;
}

.date-selector input::-webkit-input-placeholder {
  color: #2f2f2f;
  opacity: 1;
  font-size: 16px;
}

.date-selector input:-moz-placeholder {
  color: #2f2f2f;
  opacity: 1;
  font-size: 16px;
}

.date-selector input::-moz-placeholder {
  color: #2f2f2f;
  opacity: 1;
  font-size: 16px;
}

.date-selector input:-ms-input-placeholder {
  color: #2f2f2f;
  opacity: 1;
  font-size: 16px;
}

.ticket-price {
  font-weight: 600 !important;
}

.bgset_img:not(.fp-completely) .home-path > path {
  stroke-dasharray: 2 !important;
}

.bgset_img:not(.fp-completely) .home-path .svg-round {
  stroke-dasharray: 0 !important;
  -webkit-transform: translateY(-200px) !important;
      -ms-transform: translateY(-200px) !important;
          transform: translateY(-200px) !important;
}

.page-template-home .bgset_img:not(.fp-completely) .home-path g {
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.bgset_img .pop-effect-inner:not(.dotmove) .home-path g {
  -webkit-transform: translateY(-200px) !important;
      -ms-transform: translateY(-200px) !important;
          transform: translateY(-200px) !important;
}

.bgset_img .pop-effect-inner:not(.dotmove) .machir-bay .home-path g {
  -webkit-transform: translateY(-200px) !important;
      -ms-transform: translateY(-200px) !important;
          transform: translateY(-200px) !important;
}

.woocommerce div.product .popup-content .form-group.group-btnz p.out-of-stock {
  margin: 0 0 55px 0;
}

/* ===== Desiner Two ======== */
.sub-page-block {
  background: #e2ddd7 url(/wp-content/themes/kilchoman/img/club-main-bg.jpg) no-repeat center bottom/100% auto;
  padding-bottom: 45%;
}

.bgemblom-img:before {
  background-image: url(/wp-content/themes/kilchoman/img/Group-559.png);
  background-position: 112% -18%;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 355px;
  top: -95px;
  height: 355px;
  right: -90px;
}

.sub-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.sub-page-block .base_detailblock {
  padding-top: 45px;
}

.cli-plugin-button:active {
  top: 0px;
}

/* Sub Tab links */
.sub-tab-links {
  text-align: center;
  padding: 0;
  margin: 0 0 50px;
}

.sub-tab-links li {
  display: inline-block;
  padding: 0 10px;
  background: none;
  position: relative;
  width: 15%;
}

.sub-tab-links li a {
  background: none;
  border: 0;
  text-transform: uppercase;
  color: #223f71;
  font: 16px "StrayhornMT-Bold", Arial, sans-serif;
  position: relative;
  padding: 5px 0;
  display: inline-block;
}

.sub-tab-links li.active a {
  color: #ba9662;
}

.sub-tab-links li.active a:after {
  content: "";
  border-bottom: 2px dotted #1b3975;
  width: auto;
  height: 2px;
  position: absolute;
  left: 10%;
  right: 10%;
  top: 100%;
}

/* Sub Tab links */
.sub-tabs {
  display: none;
}

.club-row {
  margin-left: -22px;
  margin-right: -22px;
}

.club-column {
  padding-left: 22px;
  padding-right: 22px;
  float: left;
  width: 100%;
  margin-bottom: 44px;
}

.club-column-70 {
  width: 66.8%;
}

.club-column-30 {
  width: 33.2%;
}

.club-post-block {
  position: relative;
  text-align: center;
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.club-post-block > img {
  opacity: 0;
  width: 100%;
}

.club-post-content {
  background-color: rgba(27, 57, 117, 0.7);
  padding: 53px 80px;
  z-index: 2;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.club-post-content h2 {
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 6px;
  color: #f9f2df;
  /*font-family: 'Source Sans Pro', sans-serif;*/
  font-weight: 700;
}

.club-post-content p {
  font-size: 17px;
  color: #f9f2df;
  margin-bottom: 30px;
  max-width: 350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.soldout-img {
  position: absolute;
  left: 10px;
  top: 10px;
}

.club-product-block {
  background-color: #fff;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.product-summary {
  padding: 23px 0 30px;
}

.product-summary h3 {
  text-transform: uppercase;
  color: #414042;
  margin-bottom: 4px;
}

.product-category-name {
  display: block;
  text-transform: capitalize;
  color: #BA9765;
  font: 17px "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 10px;
}

.product-price {
  color: #426EAF;
  text-transform: uppercase;
  font: 20px "Source Sans Pro", sans-serif;
  font-weight: 600;
  display: block;
}

.sold-out {
  color: #A05050;
}

.product-price strong {
  font-weight: 600;
}

/* Cart Page design */
.woocommerce-cart .main-wrap, .woocommerce-cart .main-page-wrapper {
  height: auto;
}

.woocommerce-cart .main-page-wrapper {
  background-color: #e2ddd7;
}

.woocommerce-cart .main-page-wrapper .woocommerce {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 22px;
}

.woocommerce-cart .main-page-wrapper .woocommerce:after {
  content: "";
  clear: both;
  display: block;
}

.woocommerce-cart .main-page-wrapper .woocommerce .woocommerce-cart-form {
  width: 64%;
  float: left;
  padding: 0;
  margin-right: 3%;
}

.woocommerce-cart .main-page-wrapper .woocommerce .cart-collaterals {
  width: 33%;
  float: left;
}

.woocommerce-cart .main-page-wrapper .woocommerce .cart-collaterals .cart_totals {
  width: 100%;
  background-color: #FFF;
  padding: 30px;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.05);
}

.woocommerce-page .main-page-wrapper .woocommerce .cart_item {
  position: relative;
  padding: 20px 40px 20px 60px;
  background-color: #FFF;
  list-style: none;
  margin-bottom: 2px;
}

.woocommerce-page .main-page-wrapper .woocommerce .cart_item:after {
  content: "";
  clear: both;
  display: block;
}

.woocommerce-page .main-page-wrapper .woocommerce .cart_item .img-description {
  display: block;
  overflow: hidden;
  padding: 10px 0;
}

.woocommerce-cart .main-page-wrapper .cart_totals h2 {
  color: #1b3975;
  text-transform: capitalize;
  font: 30px "StrayhornMT-Bold", Arial, sans-serif;
  margin-bottom: 30px;
}

.woocommerce-cart .main-page-wrapper .cart-collaterals .cart_totals table {
  background-color: #FFF;
}

.woocommerce-cart .main-page-wrapper .cart-collaterals .cart_totals table tr th {
  color: #1b3975;
  font: 20px "StrayhornMT-Bold", Arial, sans-serif;
  vertical-align: middle;
}

.woocommerce-cart .main-page-wrapper .cart-collaterals .cart_totals table tr td {
  color: #000;
  font: 18px "Source Sans Pro", sans-serif;
  background-color: transparent;
  text-align: right;
}

.woocommerce-cart .main-page-wrapper .woocommerce .cart-collaterals .cart_totals .btn-outlined {
  display: block;
  margin-top: 30px;
}

.woocommerce-cart .main-page-wrapper .cart-collaterals .cart_totals table tr.order-total td {
  color: #1b3975;
  font: 30px "StrayhornMT-Bold", Arial, sans-serif;
}

.woocommerce-cart .main-page-wrapper .woocommerce table.shop_table td a {
  color: #000;
  font-weight: bold;
}

/* Cart Page design */
/* Checkout Page design */
.woocommerce-account .main-wrap, .woocommerce-account .main-page-wrapper {
  height: auto;
}

.woocommerce-account .main-page-wrapper {
  background-color: #e2ddd7;
}

.woocommerce-account .main-page-wrapper .woocommerce {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 22px 0;
}

.woocommerce-account .main-page-wrapper .woocommerce:after {
  content: "";
  clear: both;
  display: block;
}

.woocommerce-account .main-page-wrapper .woocommerce h2 {
  color: #1b3975;
}

.woocommerce-account .main-page-wrapper .woocommerce .woocommerce-form-login,
.woocommerce-account .main-page-wrapper .woocommerce .register {
  background-color: #FFF;
  padding: 30px;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  border: none;
}

.woocommerce-account .main-page-wrapper .woocommerce .woocommerce-form-row input,
.woocommerce-account .main-page-wrapper .woocommerce .woocommerce-form-row textarea {
  border: 1px solid #ba9662;
  border-radius: 0;
  box-shadow: none;
  height: 52px;
  background-color: transparent;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  padding: 13px 26px;
}

/* Checkout Page design */
.woocommerce-lost-password .main-page-wrapper .woocommerce {
  max-width: 550px;
}

.woocommerce-lost-password .main-page-wrapper .lost_reset_password {
  background-color: #FFF;
  padding: 30px;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.05);
}

.woocommerce-lost-password .main-page-wrapper .lost_reset_password .form-row-first {
  width: 100%;
}

.woocommerce-lost-password .main-page-wrapper .lost_reset_password p {
  margin-bottom: 20px;
}

.woocommerce-page .woocommerce-error li {
  background-image: none;
}

.woocommerce #customer_login .woocommerce-Button.button, .lost_reset_password .woocommerce-Button.button {
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: #1b3975;
  padding: 12px 30px;
  border: 2px solid #ba9662;
  text-transform: uppercase;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
  background: transparent;
  -webkit-appearance: none;
  margin-top: 15px;
  border-radius: 0px;
}

.lost_reset_password .woocommerce-Button.button {
  margin-top: 0;
}

.woocommerce #customer_login .woocommerce-Button.button:hover, .lost_reset_password .woocommerce-Button.button:hover {
  padding-left: 40px;
  padding-right: 40px;
}

.lost_password a:hover {
  color: #ba9662;
}

.woocommerce #customer_login .woocommerce-form__label-for-checkbox {
  margin-left: 20px;
}

.woocommerce #customer_login .woocommerce-form__label-for-checkbox input[type=checkbox] {
  display: none;
}

.woocommerce #customer_login .woocommerce-form__label-for-checkbox span {
  position: relative;
  padding-left: 32px;
  line-height: 20px;
  display: inline-block;
  cursor: pointer;
  font-size: 20px;
}

.woocommerce #customer_login .woocommerce-form__label-for-checkbox span:before {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #ba9765;
  border-radius: 5px;
  content: "";
  width: 20px;
  height: 20px;
}

.woocommerce #customer_login .woocommerce-form__label-for-checkbox span:after {
  content: "";
  border-bottom: 2px solid #FFF;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  position: absolute;
  left: 7px;
  top: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  opacity: 0;
}

.woocommerce #customer_login .woocommerce-form__label-for-checkbox input[type=checkbox]:checked + span:before {
  background-color: #ba9765;
}

.woocommerce #customer_login .woocommerce-form__label-for-checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}

.woocommerce #customer_login ul.register_form_error {
  margin: 0 0 10px !important;
}

.woocommerce #customer_login ul.register_form_error li {
  padding: 0;
  padding-left: 0;
  color: #ba9662;
}

.woocommerce-error {
  border-top-color: #ba9662;
  color: #ba9662;
}

.woocommerce-error::before {
  color: #ba9662;
}

/* Popup Page design */
.popup-close {
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 0;
  background: url(/wp-content/themes/kilchoman/img/close.png) no-repeat center center/100% auto;
  border: none;
  z-index: 999;
}

.woocommerce-popup {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  z-index: 99;
  overflow-y: auto;
  background: rgba(226, 221, 215, 0.9);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.page-template-tours_events .woocommerce-popup {
  position: absolute;
  height: 100%;
}

.woocommerce-popup-max {
  background-color: #e2ddd7;
  position: relative;
  width: 100%;
  max-width: 1186px;
  margin: 50px auto;
  box-shadow: 0px 0px 90px 3px rgba(0, 0, 0, 0.15);
}

.popup-product-img {
  width: 50%;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.popup-product-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.popup-product-form {
  padding: 70px 90px;
  float: right;
  width: 50%;
  text-align: left;
  position: relative;
}

.popup-product-form .selectric-label, .popup-product-form .selectric-button {
  height: 50px;
}

.selectric-subtitle {
  font-size: 90%;
  color: #ba9662;
  font-style: italic;
}

.popup-title {
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 17px;
}

.popup-product-form p {
  margin-bottom: 53px;
  line-height: 1.6em;
}

.popup-product-form .form-group {
  margin-bottom: 20px;
}

.ticket-price {
  float: left;
  color: #426eaf;
  font-size: 30px;
  padding: 5px 0;
  font-weight: bold;
}

.apply-btn {
  float: right;
}

.apply-btn a {
  margin-top: 0 !important;
}

.date-selector label, .selectric-label:before {
  content: "";
  color: #ba9662;
  text-transform: uppercase;
  margin-right: 10px;
  font: 16px "StrayhornMT-Bold", Arial, sans-serif;
}

.selectric-tour-type .selectric-label:before {
  content: "tour type:";
}

.selectric-number-people .selectric-label:before {
  content: "number of people:";
}

.selectric-date-book .selectric-label:before {
  content: "date";
}

.date-selector {
  position: relative;
  display: block;
}

.date-selector label {
  position: absolute;
  top: 50%;
  left: 26px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.date-selector input.form-control {
  padding-left: 74px;
}

.selectric-tour-type .selectric-items .selectric-scroll ul li:first-child span {
  display: none;
}

.datepicker-dropdown .table-condensed > tbody > tr > td {
  padding: 0;
  font: 19px "Source Sans Pro", sans-serif;
  color: #414042;
  min-width: 36px;
  height: 39px;
  line-height: 36px;
  border-radius: 100%;
  text-shadow: none !important;
}

.datepicker-dropdown .table-condensed > tbody > tr > td.active {
  background: #f0e9df !important;
  color: #ba9765 !important;
}

.datepicker-dropdown .table-condensed > tbody > tr > td.old,
.datepicker-dropdown .table-condensed > tbody > tr > td.new,
.datepicker-dropdown .table-condensed > tbody > tr > td.disabled.day {
  opacity: 0.5;
}

.over-class-header {
  overflow: hidden;
}

.over-class-header .preloader {
  top: 93px;
}

#new_loaded_content {
  padding: 10px 0;
  margin-bottom: 48px;
}

.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] {
  padding: 14px 30px;
}

.woocommerce-password-hint {
  font-size: 100%;
  font-weight: normal;
}

/*.grid-list-item {  }*/
.detail_block_md.with-bgemblom {
  position: relative;
}

.gridlists {
  margin-top: 120px;
}

.gridlists:after {
  content: "";
  display: block;
  clear: both;
}

.paroller-block-even, .paroller-block-odd {
  float: left;
  width: 50%;
  padding: 0 1.5%;
  position: relative;
}

.paroller-block-odd > .grid-list-item:first-child {
  margin-top: 80px;
}

.gridlists li:nth-child(2n+2) {
  top: 0 !important;
}

.paroller-block-even > .grid-list-item, .paroller-block-odd > .grid-list-item {
  width: 100% !important;
  margin-bottom: 60px;
  margin-top: 0;
  top: 0;
}

/* Shipping popup */
.woocommerce-checkout #shippingModal .popup-product-form {
  width: 100%;
}

.woocommerce-checkout #shippingModal .popup-product-form table {
  width: 100%;
}

.woocommerce-checkout #shippingModal .popup-product-form table td,
.popup-product-form table th {
  padding: 0 10px;
}

.woocommerce-checkout #shippingModal .popup-product-form table tr:first-of-type {
  font-weight: 700;
  font-size: 16px;
}

/* Popup Page design */
.detail-post-title {
  padding: 38px 57px 35px;
  margin-bottom: 75px;
}

.detail-post-title h5 {
  margin-bottom: 16px;
}

.detail-post-title h1 {
  font-size: 63px;
  margin-bottom: 17px;
}

.detail-post-title .date-elem {
  font-size: 14px;
  font-weight: 400;
}

.container-sm {
  max-width: 984px;
}

/*.container-sm-inner { max-width: 64%; 64% }
.container-sm-inner > * { max-width: 64%; margin: 0 auto; }
.container-sm-inner > .post-thumb { max-width: 984px; width: 100%; } */
.container-sm-inner p {
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.96em;
  margin-bottom: 34px;
}

.container-sm-inner p img {
  margin: 30px 0 41px;
  height: auto;
}

.container-sm-inner .wp-video {
  margin: 64px 0 82px;
}

.container-sm-inner h2 {
  color: #ba9662;
  font-size: 28px;
  margin: 52px 0 15px;
  text-transform: capitalize;
}

.container-sm-inner blockquote {
  font-style: italic;
  padding-left: 30px;
}

.container-sm-inner blockquote p {
  color: #426eaf;
  font-size: 100%;
  font-weight: 600;
  line-height: 1.6em;
  letter-spacing: 0;
}

.container-sm-inner ul {
  margin: 34px 0 38px;
}

.container-sm-inner .social-links2 {
  margin: 0;
}

.container-sm-inner ol {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.container-sm-inner ul li, .container-sm-inner ol li {
  background-image: none;
  position: relative;
  padding-left: 35px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.96em;
  margin-top: 20px;
  font-size: 18px;
}

.container-sm-inner ol li:first-child {
  margin-top: 0;
}

.container-sm-inner ul li:before {
  content: "";
  width: 13px;
  height: 13px;
  border: 3px solid #ba9662;
  position: absolute;
  left: 0;
  top: 12px;
  border-radius: 100%;
}

.container-sm-inner ol li {
  counter-increment: li;
}

.container-sm-inner ol li:before {
  content: counter(li);
  position: absolute;
  left: 0;
  top: 2px;
  color: #ba9662;
  font-weight: bold;
  font-size: 24px;
}

.container-sm-inner .social-links2 {
  margin-left: 20px;
}

.social-links2 .icon-social:before {
  content: none;
}

.social-links2 .icon-social {
  padding-left: 0;
}

.social-links2 .textgold {
  margin-top: 3px;
}

.container-sm-inner {
  max-width: 100%;
  /*64%*/
}

.container-sm-inner > * {
  max-width: 64%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.container-sm-inner > blockquote {
  max-width: 80%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.container-sm-inner > .wp-block-image,
.container-sm-inner > figure {
  max-width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.container-sm-inner .social-links2 {
  width: 100%;
  display: block;
  margin-top: 3rem;
}

.container-sm-inner > .post-thumb, .container-sm-inner > .wp-video {
  max-width: 100%;
}

.container-sm-inner > .wp-video .mejs-video {
  max-height: 100%;
}

.container-sm-inner > .wp-video .wp-video-shortcode video, video.wp-video-shortcode {
  max-height: 100%;
}

.group_owlcontol .customNextBtn:before {
  margin-left: 1px;
}

.group_owlcontol .customPrevBtn:before {
  margin-left: -1px;
}

/* Popup Page design */
/* woocommerce */
.page-template-woocommerceshop-php.woocommerce .product .popup-content form.cart .button {
  border-radius: 0;
}

.page-template-woocommerceshop-php.woocommerce .popup-content #respond input#submit.alt:hover,
.page-template-woocommerceshop-php.woocommerce .popup-content a.button.alt:hover,
.page-template-woocommerceshop-php.woocommerce .popup-content button.button.alt:hover,
.page-template-woocommerceshop-php.woocommerce .popup-content input.button.alt:hover {
  background-color: transparent;
  color: #1b3975;
}

.page-template-woocommerceshop-php.woocommerce #respond input#submit.loading:after,
.page-template-woocommerceshop-php.woocommerce a.button.loading:after,
.page-template-woocommerceshop-php.woocommerce button.button.loading:after,
.page-template-woocommerceshop-php.woocommerce input.button.loading:after {
  position: relative;
  top: 0;
  right: 0;
  margin-left: 0.53em;
}

.woocommerce-page ul li {
  background-image: none;
}

/* woocommerce check out page */
.checkout-form-new {
  width: 60%;
  float: left;
}

.sidebar-cart {
  width: 38%;
  float: right;
}

.woocommerce-checkout .checkout-form-new .content {
  margin: 0;
  background-color: #FFF;
  padding: 28px 35px 22px;
  overflow: visible;
}

.woocommerce-checkout .checkout-form-new .content .form-row {
  padding: 0;
  margin-bottom: 15px;
}

.checkout-form-new h4, .sidebar-cart h4 {
  color: #1b3975;
  font: 40px "StrayhornMT-Bold", Arial, sans-serif;
  position: relative;
  margin-bottom: 14px;
  text-transform: uppercase;
}

#checkout_cart .sidebar-cart-count .actions ul {
  width: 100%;
  display: block;
  text-align: right;
}

#checkout_cart .sidebar-cart-count .actions li {
  float: none;
}

#checkout_cart .sidebar-cart-count .actions li a {
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: #1b3975;
  padding: 14px 30px;
  border: 2px solid #ba9662;
  text-transform: uppercase;
  background: none;
  border-radius: 0px;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}

#checkout_cart .sidebar-cart-count .actions li a:hover {
  padding-left: 45px;
  padding-right: 45px;
}

/* woocommerce check out page */
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  float: right;
  width: 48%;
  margin-top: 39px;
}

.woocommerce-checkout .sidebar-cart .scrollwrap {
  margin: 0;
  background-color: #FFF;
}

.woocommerce-checkout .main-wrap, .woocommerce-cart .main-page-wrapper {
  height: auto;
}

.woocommerce-checkout .main-page-wrapper {
  background-color: #e2ddd7;
}

.woocommerce-checkout .main-page-wrapper .woocommerce {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 22px;
}

.woocommerce-checkout .main-page-wrapper .woocommerce:after {
  content: "";
  clear: both;
  display: block;
}

.woocommerce-checkout .main-page-wrapper .woocommerce .form-row input,
.woocommerce-checkout .main-page-wrapper .woocommerce .form-row textarea {
  border: 1px solid #ba9662;
  border-radius: 0;
  box-shadow: none;
  height: 52px;
  background-color: transparent;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  padding: 13px 26px;
}

.woocommerce-checkout .main-page-wrapper .woocommerce .form-row textarea {
  height: 150px;
}

.woocommerce-checkout .main-page-wrapper .woocommerce .form-row label,
.woocommerce-account .main-page-wrapper .woocommerce .woocommerce-form-row label {
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9765;
  margin-bottom: 5px;
  text-transform: none;
}

.woocommerce-account-fields {
  display: none;
}

/* Summary Product listing */
.sidebar-cart-count {
  padding: 0 35px 20px;
  background-color: #FFF;
  position: relative;
}

.cart-count {
  position: relative;
  padding: 28px 0 22px;
  margin-bottom: 20px;
}

.cart-count span {
  color: #1b3975;
  font: 28px "StrayhornMT-Bold", Arial, sans-serif;
}

.cart-count span.edit {
  float: right;
}

.cart-count span a {
  color: #e2ddd7;
}

.cart-item {
  position: relative;
  padding: 18px 0;
  background-color: #FFF;
  margin-bottom: 2px;
  overflow: hidden;
}

.cart-item:after {
  content: "";
  display: block;
  clear: both;
}

.cart-item:last-child:after {
  display: none;
}

.cart-item span {
  display: block;
}

.cart-item .cart-image {
  width: 120px;
  float: left;
  margin-right: 30px;
}

.cart-item .cart-image img {
  height: auto;
  max-width: 100%;
}

.cart-item .cart-title {
  text-transform: uppercase;
  margin-bottom: 0;
  font: 22px "StrayhornMT-Bold", Arial, sans-serif;
  margin-top: 17px;
  line-height: 1em;
}

.cart-item .cart-variation {
  font-size: 17px;
  font-style: italic;
  color: #ba9662;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-item .cart-price {
  font-size: 17px;
  font-weight: 600;
  color: #426eaf;
  margin-bottom: 17px;
}

.cart-item .cart-qty {
  font-size: 17px;
  font-weight: 400;
  color: #333;
}

.total-div {
  position: relative;
  padding: 14px 35px;
  background-color: #FFF;
  margin-top: 18px;
}

.total-div > span {
  display: block;
  font-size: 20px;
  color: #c9c1b9;
  clear: both;
  margin: 9px 0;
}

.total-div > span span {
  float: right;
  color: #1b3975;
  font: 20px "StrayhornMT-Bold", Arial, sans-serif;
}

.total-div > span span.total-label {
  font-size: 150%;
  color: #ba9765;
}

.total-div > span:last-child label {
  font-size: 130%;
}

.checkout-payment-images {
  position: relative;
  padding: 15px 25px;
  background-color: #FFF;
  margin-top: 18px;
}

.checkout-payment-images img {
  width: 100%;
}

.woocommerce-checkout .checkout-form-new .actions {
  padding: 20px 0;
  background: #FFF;
  padding-right: 35px;
}

.woocommerce-checkout .checkout-form-new .actions li {
  margin: 0 0 0 10px;
}

/* checkout Steps */
.woocommerce-checkout .woocommerce .woocommerce-checkout .steps {
  margin-bottom: 16px;
}

.woocommerce-checkout .woocommerce .woocommerce-checkout .steps ul {
  background-color: #FFF;
  display: block;
  overflow: hidden;
  padding: 30px;
  text-align: center;
}

.woocommerce-checkout .woocommerce .woocommerce-checkout .steps ul li {
  background-image: none;
  width: auto !important;
  float: none;
  padding: 0 3%;
  display: inline-block;
}

.woocommerce-checkout .woocommerce .woocommerce-checkout .steps ul li a {
  background: none;
  font: 18px "StrayhornMT-Bold", Arial, sans-serif;
  color: #cac3bb;
  text-transform: uppercase;
  padding: 0;
  display: inline-block;
  position: relative;
}

.woocommerce-checkout .woocommerce .woocommerce-checkout .steps ul li a .number {
  display: none;
}

.woocommerce-checkout .woocommerce .woocommerce-checkout .steps ul li.current a {
  color: #ba9765;
}

.woocommerce-checkout .woocommerce .woocommerce-checkout .steps ul li.current a:after {
  content: "";
  border-bottom: 2px dotted #1b3975;
  height: 2px;
  position: absolute;
  left: 10%;
  right: 10%;
  top: 28px;
}

/* checkbox */
.woocommerce-checkout .main-page-wrapper .woocommerce .form-row label.error,
.woocommerce-checkout .main-page-wrapper .woocommerce .form-row label.error-class {
  margin: 3px 0 0;
  text-transform: none;
  font-family: "Source Sans Pro", sans-serif;
  color: red;
  display: none;
}

.woocommerce-checkout .main-page-wrapper .woocommerce .form-row input.error {
  border-color: red;
}

.woocommerce-checkout .main-page-wrapper .woocommerce #wizard .checkbox {
  display: block;
}

.woocommerce-checkout .main-page-wrapper .woocommerce #wizard .checkbox span {
  width: auto;
  height: auto;
  border: none;
  position: relative;
  padding-left: 30px;
  line-height: 20px;
}

.woocommerce-checkout .main-page-wrapper .woocommerce #wizard .checkbox span:after {
  border: 1px solid #e3e3e3;
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
}

.woocommerce-checkout .main-page-wrapper .woocommerce #wizard .checkbox span:before {
  left: 10px;
}

/* contact page */
.wpcf7-form .bottom_elements .control_dotsgroup {
  margin-top: 16px;
  margin-bottom: 15px;
}

.wpcf7-form .form-control.error-field {
  border-color: red;
}

.wpcf7-form .bottom_elements .error-display {
  font-weight: 400;
  font-size: 16px;
  color: #9ba2a5;
  position: relative;
  top: -2px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.wpcf7-form .bottom_elements .error-display.compul {
  color: red;
}

.wpcf7-form .bottom_elements br {
  display: none;
}

textarea.form-control {
  height: 110px;
}

.page-template-contact-php.header_blue header {
  background-color: #213f71;
}

.page-template-contact-php .wpcf7-form .selectric-label {
  padding-left: 25px;
}

.selectric-label:before {
  display: none;
}

.page-template-contact-php div.wpcf7-response-output {
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 400;
  margin: 15px 0 0 0;
  color: #ff0000;
}

.page-template-contact-php div.wpcf7-mail-sent-ok {
  color: #398f14 !important;
}

/* My accout page setting */
/* Woocommerce Navigation */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background-color: #FFF;
  box-shadow: 2px 0px 3px 0px rgba(0, 0, 0, 0.1);
  padding: 21px 35px 60px;
  width: 38%;
  max-width: 454px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  padding: 0;
  margin-bottom: 7px;
  position: relative;
}

.woocommerce-checkout .checkout-form-new #wizard .content .checkout-login:after,
.woocommerce-account .main-page-wrapper .woocommerce h2:after,
.woocommerce-account .woocommerce-MyAccount-navigation ul li:after,
.cart-count:after,
.cart-item:after {
  content: "";
  border-bottom: 2px dotted #dad5cf;
  bottom: -4px;
  position: absolute;
  left: -10px;
  right: -10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  padding: 14px 0;
  font: 28px "StrayhornMT-Bold", Arial, sans-serif;
  color: #223f71;
  display: block;
  opacity: 0.4;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:hover a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a, .woocommerce-account .woocommerce-MyAccount-navigation ul li a.active {
  color: #ba9662;
  opacity: 1;
}

.cart-count:after {
  bottom: 0;
  border-bottom-style: solid;
  border-bottom-color: #cbc4bc;
  border-bottom-width: 1px;
}

.cart-item:after {
  bottom: 0;
}

/* Woocommerce Content */
.woocommerce-account .woocommerce-MyAccount-content {
  width: 60%;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.6em;
  margin-bottom: 25px;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p a {
  color: #ba9662;
}

.woocommerce-account .woocommerce-MyAccount-content p a:hover {
  color: #1b3975;
}

.woocommerce-account .woocommerce-MyAccount-content p#billing_myfield10_field, .woocommerce-account .woocommerce-MyAccount-content p#shipping_myfield2_field, .woocommerce-account .woocommerce-MyAccount-content p#shipping_myfield1_field {
  display: none;
}

.woocommerce-account-content-block {
  background-color: #FFF;
  box-shadow: 2px 0px 3px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 35px;
  position: relative;
  margin-bottom: 72px;
  border: none;
}

.woocommerce-account-content-block:after {
  content: "";
  border-bottom: 2px dotted #c9c2ba;
  bottom: -36px;
  position: absolute;
  left: 0;
  right: 0;
}

.woocommerce-account-content-block:last-child {
  margin-bottom: 0;
}

.woocommerce-account-content-block:last-child:after {
  display: none;
}

.woocommerce-checkout .checkout-form-new #wizard .content .checkout-login,
.woocommerce-account .main-page-wrapper .woocommerce h2 {
  color: #1b3975;
  font: 28px "StrayhornMT-Bold", Arial, sans-serif;
  padding: 6px 0 25px;
  position: relative;
  margin-bottom: 34px;
  border: none;
}

.woocommerce-checkout .checkout-form-new #wizard .content .checkout-login:after,
.woocommerce-account .main-page-wrapper .woocommerce h2:after {
  border-bottom-style: solid;
  border-bottom-color: #dad5cf;
  border-bottom-width: 2px;
  bottom: 0;
}

.woocommerce-account .main-page-wrapper .woocommerce .woocommerce-form-row label {
  text-transform: none;
  color: #ba9662;
}

.woocommerce-checkout .checkout-form-new #wizard form.login input.button,
.woocommerce-checkout .checkout-form-new #wizard form.register input.button,
.woocommerce-account .main-page-wrapper .woocommerce .woocommerce-account-content-block .button,
.woocommerce-checkout .checkout-form-new .actions li a {
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: #1b3975;
  padding: 14px 30px;
  border: 2px solid #ba9662;
  text-transform: uppercase;
  background: none;
  border-radius: 0px;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}

.woocommerce-checkout .checkout-form-new .actions li a:hover,
.woocommerce-checkout .checkout-form-new #wizard form.register input.button:hover,
.woocommerce-checkout .checkout-form-new #wizard form.login input.button:hover,
.woocommerce-account .main-page-wrapper .woocommerce .woocommerce-account-content-block .button:hover {
  padding-left: 45px;
  padding-right: 45px;
}

/* Order details page setting */
.modal-backdrop.in {
  display: none;
}

/* Order details page setting */
.radio-group {
  position: relative;
  display: block;
  margin: 3px 0;
}

.radio-group input[type=radio] {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  opacity: 0;
}

.radio-group label {
  position: relative;
  line-height: 20px;
  padding-left: 22px;
  font: 16px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9662;
  margin-bottom: 0;
}

.radio-group label:before {
  content: "";
  border: 1px solid #ba9662;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 3px;
}

.radio-group input[type=radio]:checked + label:before {
  border-width: 3px;
  background-color: #1b3975;
}

.radio-group input[type=radio]:checked + label {
  font-weight: bold;
  color: #1b3975;
}

.form-club .form-group {
  width: 65%;
  float: left;
  position: relative;
}

div.wpcf7 .form-club .ajax-loader {
  position: absolute;
  right: -20px;
  top: 16px;
}

.form-club .form-group:last-child {
  width: 30%;
  margin-left: 5%;
}

.form-club .form-group .wpcf7-submit {
  width: 100%;
  padding: 14px 10px;
}

.form-club .form-group .wpcf7-submit:hover {
  padding: 14px 10px;
}

.contactWrap > span {
  display: block;
  text-align: right;
  font-weight: 400;
  font-size: 14px;
}

.contactWrap div.wpcf7-validation-errors,
.contactWrap div.wpcf7-acceptance-missing {
  padding: 0;
  color: red;
  border: none;
  text-align: right;
  margin: 0 0 10px;
}

.contactWrap {
  margin-top: 40px;
}

.popup-product-form p {
  margin-bottom: 25px;
}

.club-product-block .wpb_wl_preview.open-popup-link {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  display: block !important;
  padding: 0;
  cursor: pointer;
  visibility: visible;
}

.club-product-block .wpb_wl_preview_area {
  left: 0;
  top: 0;
  text-indent: -999em;
  overflow: hidden;
  height: 100%;
}

#benifitModal .sub-tab-links li {
  width: auto;
}

#benifitModal .sub-tabs-content {
  padding: 0;
}

#benifitModal .sub-tabs-content p {
  color: #383838;
  font-weight: 400;
}

#benifitModal .popup-product-form {
  text-align: center;
}

.woocommerce-order-content {
  display: block;
}

.woocommerce-order-content-block {
  background-color: #FFF;
  padding: 30px 35px;
  margin-bottom: 30px;
}

.woocommerce-order-content table.order_details {
  background-color: #FFF;
  margin-bottom: 30px;
  border: none;
  border-radius: 0;
}

.woocommerce-order-received .woocommerce-order-content .woocommerce-order-details {
  width: 60%;
  float: left;
}

.woocommerce-order-received .woocommerce-order-content .woocommerce-customer-details {
  width: 38%;
  float: right;
}

.woocommerce-order-received .woocommerce-order-content .woocommerce-customer-details .woocommerce-column {
  width: 100%;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-content p {
  font-size: 18px;
  font-weight: 400;
  margin: 12px 0;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-content p:first-child {
  margin-top: 0;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-content ul.order_details {
  margin-bottom: 0;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-content ul li {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #988a75;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-content li strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0;
  color: #1b3975;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-content h2 {
  color: #1b3975;
  font-size: 40px;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.woocommerce-order-received .woocommerce-order-content table.shop_table th {
  padding: 18px 25px;
  font: 20px "StrayhornMT-Bold", Arial, sans-serif;
  color: #1b3975;
}

.woocommerce-order-received .woocommerce-order-content table.shop_table td {
  padding: 14px 25px;
  font: 16px "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #000;
}

.woocommerce-order-content .woocommerce-customer-details address {
  background-color: #FFF;
  padding: 35px;
  border: none;
  border-radius: 0;
  margin-bottom: 30px !important;
  font: 20px "Source Sans Pro", sans-serif;
  color: #8c867f;
  line-height: 1.4em;
  word-break: break-all;
}

.woocommerce-order-content .woocommerce-customer-details address br {
  display: none;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-content address .woocommerce-customer-details--phone {
  margin-top: 30px;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-content address p {
  font-size: 18px;
  margin: 0;
}

.woocommerce-order-content .woocommerce-customer-details address p:before {
  line-height: 1.8 !important;
}

#benifitModal .sub-tab-links li {
  width: auto;
}

#benifitModal .sub-tabs-content {
  padding: 0;
}

#benifitModal .sub-tabs-content p {
  color: #383838;
  font-weight: 400;
}

#benifitModal .popup-product-form {
  text-align: center;
}

/* Login page setting */
.woocommerce-checkout .checkout-form-new #wizard h2 {
  color: #1b3975;
  /*font-size: 28px; padding: 6px 0 25px; position: relative; margin-bottom: 34px; border: none;*/
}

/*.woocommerce-checkout .checkout-form-new #wizard h2:after { content: ""; border-bottom: 2px solid #dad5cf; bottom: -4px; position: absolute; left: -10px; right: -10px; }*/
.woocommerce-checkout .checkout-form-new #wizard form.register,
.woocommerce-checkout .checkout-form-new #wizard form.login {
  padding: 0;
  margin: 0;
  border: none;
}

.woocommerce-checkout .checkout-form-new #wizard form.register input.button,
.woocommerce-checkout .checkout-form-new #wizard form.login input.button {
  padding-top: 11px;
  padding-bottom: 11px;
  height: auto;
  float: right;
}

.woocommerce-checkout .checkout-form-new #wizard form.login .form-row .woocommerce-form__label-for-checkbox input {
  height: auto;
}

.woocommerce-checkout .checkout-form-new #wizard form.login .lost_password {
  font-weight: 400;
}

/* Order details page setting */
/* My Account Orders page setting / */
.woocommerce-orders .woocommerce-MyAccount-navigation {
  display: none;
}

.woocommerce-orders .woocommerce-MyAccount-content {
  width: 100%;
}

.woocommerce-orders .woocommerce-MyAccount-content .header-order {
  display: block;
}

.woocommerce-orders .woocommerce-MyAccount-content .header-order h4 {
  color: #1b3975;
  font: 44px "StrayhornMT-Bold", Arial, sans-serif;
  position: relative;
  margin-bottom: 14px;
  text-transform: uppercase;
  display: inline-block;
}

.woocommerce-orders .woocommerce-MyAccount-content .header-order label {
  float: right;
  margin-top: 17px;
}

.woocommerce-orders .woocommerce-MyAccount-content .header-order label a {
  color: #ba9765;
  font: 18px "StrayhornMT-Bold", Arial, sans-serif;
  text-transform: uppercase;
}

.order-left-container {
  float: left;
  width: 60%;
}

.order-right-container {
  float: right;
  width: 38%;
}

.order-container {
  margin-bottom: 72px;
  position: relative;
}

.order-container:after {
  clear: both;
  content: "";
  display: block;
}

.order-container:before {
  content: "";
  border-bottom: 2px dotted #c9c2ba;
  bottom: -36px;
  position: absolute;
  left: 0;
  right: 0;
}

.order-detail-container {
  padding: 0 25px 20px;
  background-color: #FFF;
}

.order-detail-number {
  background-color: #FFF;
  box-shadow: 2px 0px 3px 0px rgba(0, 0, 0, 0.1);
  padding: 25px 35px;
  position: relative;
  font: 29px "StrayhornMT-Bold", Arial, sans-serif;
  color: #1b3975;
  margin-bottom: 20px;
}

.order-detail-container .scrollwrap {
  padding-left: 10px;
  padding-right: 10px;
}

.edit-account {
  position: relative;
  padding: 28px 10px 22px;
  margin-bottom: 20px;
}

.edit-account:after {
  content: "";
  border-bottom: 2px solid #dad5cf;
  bottom: 0px;
  position: absolute;
  left: 0;
  right: 0;
}

.edit-account span {
  color: #1b3975;
  font: 28px "StrayhornMT-Bold", Arial, sans-serif;
}

.edit-account span strong {
  color: #ba9765;
}

.edit-account .item-total {
  float: right;
}

.order-detail-address {
  background-color: #FFF;
  box-shadow: 2px 0px 3px 0px rgba(0, 0, 0, 0.1);
  padding: 25px 35px 35px;
  word-break: break-all;
}

.order-detail-address > div {
  margin: 20px 0 0;
}

.order-detail-address span {
  display: block;
  font: 16px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9765;
}

.order-detail-address label {
  display: block;
  font-size: 20px;
}

.woocommerce-orders .woocommerce-MyAccount-content .woocommerce-pagination {
  text-align: right;
}

.woocommerce-orders .woocommerce-MyAccount-content .woocommerce-button {
  font: 16px "StrayhornMT-Bold", Arial, sans-serif;
  color: #1b3975;
  padding: 10px 20px;
  border: 2px solid #ba9662;
  text-transform: uppercase;
  background: none;
  border-radius: 0px;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
  height: auto;
}

.woocommerce-orders .woocommerce-MyAccount-content .woocommerce-button:hover {
  padding-left: 25px;
  padding-right: 25px;
  background-color: transparent;
}

/* Thank you page setting / */
.approved-page {
  min-height: 790px;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

.approved-page-container {
  max-width: 1150px;
  padding-left: 22px;
  padding-right: 22px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.approved-page-content {
  max-width: 450px;
  width: 100%;
  float: right;
  text-align: center;
  margin-top: 124px;
}

.approved-page-content h1 {
  text-transform: uppercase;
  font-size: 54px;
  color: #1b3975;
}

.approved-page-content p {
  font-weight: 400;
  letter-spacing: 0.1px;
  font-size: 17px;
  color: #444344;
  line-height: 26px;
  margin-bottom: 30px;
}

.approved-page-content .btn {
  font-size: 17px;
  margin-top: 20px;
}

/* Checkout page setting / */
.woocommerce-checkout .checkout-form-new #wizard .content .checkout-login {
  overflow: hidden;
  margin-bottom: 20px !important;
}

.woocommerce-checkout .checkout-form-new #wizard .content .checkout-login span {
  vertical-align: middle;
}

.woocommerce-checkout .checkout-form-new #wizard .content #billing_myfield11_field label span.required {
  display: none;
}

.wizard > .content > .body ul > li {
  padding: 10px;
  padding-left: 26px;
}

.woocommerce-checkout .woocommerce form .form-row-first,
.woocommerce-checkout .woocommerce form .form-row-first {
  width: 30%;
}

.woocommerce-checkout .woocommerce form .form-row-last,
.woocommerce-checkout .woocommerce form .form-row-last {
  width: 68%;
}

.woocommerce-checkout .woocommerce form .selectric-label,
.woocommerce-checkout .woocommerce form .selectric-button {
  height: 50px;
}

.woocommerce-checkout .woocommerce form #billing_myfield13_field,
.woocommerce-checkout .woocommerce form #billing_myfield14_field {
  width: 32%;
  margin-right: 2%;
}

.woocommerce-checkout .woocommerce form #billing_myfield9_field {
  width: 32%;
}

.woocommerce-checkout .woocommerce form #billing_myfield13_field,
.woocommerce-checkout .woocommerce form #billing_myfield14_field,
.woocommerce-checkout .woocommerce form #billing_myfield9_field {
  display: inline-block;
}

.woocommerce-checkout .woocommerce form #billing_myfield13_field + .clear,
.woocommerce-checkout .woocommerce form #billing_myfield14_field + .clear {
  position: absolute;
}

.woocommerce-checkout .woocommerce .checkout-login label {
  float: right;
  margin: 0;
}

.woocommerce-checkout .checkout-form-new .content .form-row#loader-field {
  width: 70%;
}

.shipping_address #shipping_loader_btn {
  padding: 0 30px;
  background: #ba9765;
  color: #FFF;
  border-radius: 0;
  height: 52px;
  display: inline-block;
  text-transform: uppercase;
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  line-height: 52px;
  margin-left: 20px;
  float: right;
}

.woocommerce-checkout .woocommerce #wizard-p-0 .woocommerce-form__label-for-checkbox input[type=checkbox], .woocommerce-checkout .woocommerce #wizard .woocommerce-form__label-for-checkbox input[type=checkbox] {
  display: none;
}

.woocommerce-checkout .woocommerce #wizard-p-0 .woocommerce-form__label-for-checkbox, .woocommerce-checkout .woocommerce #wizard .woocommerce-form__label-for-checkbox {
  margin: 15px 0;
}

.woocommerce-checkout .woocommerce #wizard-p-0 .woocommerce-form__label-for-checkbox span:nth-child(2), .woocommerce-checkout .woocommerce #wizard .woocommerce-form__label-for-checkbox span {
  position: relative;
  padding-left: 32px;
  line-height: 20px;
  display: inline-block;
  cursor: pointer;
  font-size: 20px;
}

.woocommerce-checkout .woocommerce #wizard-p-0 .woocommerce-form__label-for-checkbox span:nth-child(2):before, .woocommerce-checkout .woocommerce #wizard .woocommerce-form__label-for-checkbox span:before {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #ba9765;
  border-radius: 5px;
  content: "";
  width: 20px;
  height: 20px;
}

.woocommerce-checkout .woocommerce #wizard-p-0 .woocommerce-form__label-for-checkbox span:nth-child(2):after, .woocommerce-checkout .woocommerce #wizard .woocommerce-form__label-for-checkbox span:after {
  content: "";
  border-bottom: 2px solid #FFF;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  position: absolute;
  left: 7px;
  top: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  opacity: 0;
}

.woocommerce-checkout .woocommerce #wizard-p-0 .woocommerce-form__label-for-checkbox b, .woocommerce-checkout .woocommerce #wizard .woocommerce-form__label-for-checkbox b {
  font: 14px "Source Sans Pro", sans-serif;
  display: block;
  margin-top: 3px;
  color: #666;
}

.woocommerce-checkout .woocommerce #wizard-p-0 .woocommerce-form__label-for-checkbox input[type=checkbox]:checked + span:nth-child(2):before, .woocommerce-checkout .woocommerce #wizard .woocommerce-form__label-for-checkbox input[type=checkbox]:checked + span:before {
  background-color: #ba9765;
}

.woocommerce-checkout .woocommerce #wizard-p-0 .woocommerce-form__label-for-checkbox input[type=checkbox] + span:nth-child(2):after, input[type=checkbox]:checked + span:after {
  opacity: 1 !important;
}

.checkout-login-footer {
  text-transform: uppercase;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  color: #c9c1b9;
  margin-top: 20px;
}

.checkout-login-footer a {
  padding: 0;
  color: #ba9765;
}

.woocommerce-checkout .woocommerce .content #billing_myfield14_field label,
.woocommerce-checkout .woocommerce .content #billing_myfield9_field label,
.woocommerce-account .woocommerce-MyAccount-content #billing_myfield14_field label,
.woocommerce-account .woocommerce-MyAccount-content #billing_myfield9_field label {
  opacity: 0;
  pointer-events: none;
}

#shipping_postcode_selector {
  padding: 20px 20px 20px 20px;
  background: #ba9765;
  color: #FFF;
}

.wizard ul#shipping_postcode_selector li {
  padding-left: 5px !important;
}

#shipping_postcode_selector li {
  padding-left: 5px !important;
  cursor: pointer;
}

#shipping_loader_input.loader-field {
  opacity: 0.5;
  background: url("/wp-content/themes/kilchoman/img/loader-ring.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8%;
}

.woocommerce-order-received .woocommerce-order-content .woocommerce-order-details.order-confirm {
  width: 100%;
}

.order-confirm .order-container:before {
  content: none;
}

.order-confirm .order-container {
  padding-bottom: 77px;
}

.order-detail-status {
  padding-top: 0px;
  padding-bottom: 0px;
}

.woocommerce-checkout .no-shipping {
  display: none;
}

/* Checkout page setting / */
/*------ LOGIN CSS -----*/
.login-section {
  background: #e2ddd7;
  padding: 50px 0;
}

.login-container {
  width: 100%;
  max-width: 1295px;
  padding: 0 15px;
  margin: 0 auto;
}

.login-wrapper {
  position: relative;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0px 0px 60px 5px rgba(0, 0, 0, 0.2);
}

.login-image {
  width: 55%;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-image img {
  width: 100%;
  opacity: 0;
}

.login-data {
  float: right;
  width: 45%;
  padding: 50px;
  text-align: left;
}

.login-data h2 {
  text-transform: uppercase;
  padding-bottom: 20px;
}

.loign-form .form-row {
  margin: 0 0 30px;
}

.login-data input {
  border: 1px solid #ba9662;
  border-radius: 0;
  box-shadow: none;
  height: 45px;
  background-color: transparent;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  padding: 13px 26px;
  width: 100%;
}

.login-data input[type=submit] {
  float: right;
  width: auto;
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: #1b3975;
  padding: 14px 25px;
  border: 2px solid #ba9662;
  text-transform: uppercase;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
  height: auto;
  margin-top: 15px;
}

.login-data input[type=submit]:hover {
  padding-left: 35px;
  padding-right: 35px;
}

body.woocommerce-checkout .cart-item .cart-image {
  min-height: 110px;
}

body.woocommerce-checkout .cart-item .cart-qty {
  font: 22px "StrayhornMT-Bold", Arial, sans-serif;
  font-size: 15px;
}

#data_login_modal #main_form.popup-product-form .form-group {
  margin-bottom: 30px;
}

#data_login_modal #main_form.popup-product-form .form-group .woocommerce-form__label-for-checkbox, #data_login_modal #main_form.popup-product-form .form-group .lost-pwd {
  color: #ba9662;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
}

#data_login_modal #main_form.popup-product-form .form-group .lost-pwd {
  float: right;
  line-height: 24px;
  display: inline-block;
}

#data_login_modal #main_form.popup-product-form .form-group .woocommerce-form__label-for-checkbox span {
  position: relative;
  padding-left: 30px;
  line-height: 22px;
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
}

#data_login_modal #main_form.popup-product-form .form-group .woocommerce-form__label-for-checkbox input {
  display: none;
}

#data_login_modal #main_form.popup-product-form .form-group .woocommerce-form__label-for-checkbox span:before {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #ba9765;
  border-radius: 5px;
  content: "";
  width: 20px;
  height: 20px;
}

#data_login_modal #main_form.popup-product-form .form-group .woocommerce-form__label-for-checkbox span:after {
  content: "";
  border-bottom: 2px solid #FFF;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  position: absolute;
  left: 7px;
  top: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  opacity: 0;
}

#data_login_modal #main_form.popup-product-form .form-group .woocommerce-form__label-for-checkbox input[type=checkbox]:checked + span:before {
  background-color: #ba9765;
}

#data_login_modal #main_form.popup-product-form .form-group .woocommerce-form__label-for-checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}

#data_login_modal #main_form.popup-product-form .form-control.error {
  border-color: #F00;
}

#data_login_modal #main_form.popup-product-form #register {
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: #1b3975;
  margin: 15px 0;
  display: inline-block;
}

#data_login_modal #main_form.popup-product-form .bottom-button input.submit_button {
  float: right;
}

#data_reset_modal .login-form {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

#data_reset_modal .login-form input.login-field {
  border: 1px solid #ba9662;
  border-radius: 0;
  box-shadow: none;
  height: 52px;
  background-color: transparent;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  padding: 13px 26px;
}

#data_reset_modal .login-form .login-field-icon {
  display: none;
}

#data_reset_modal .login-form #submit-button {
  width: auto;
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: #1b3975;
  padding: 14px 30px;
  border: 2px solid #ba9662;
  text-transform: uppercase;
  background: transparent !important;
  border-radius: 0px;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}

#data_reset_modal .login-form #submit-button:hover {
  padding-left: 45px;
  padding-right: 45px;
}

#data_reset_modal .profilepress-reset-status {
  background-color: transparent;
  color: #ba9765;
  border: 0px;
  border-radius: 0px;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.4;
  padding: 0 0 10px;
  margin: 0;
}

#data_login_modal .messages {
  position: relative;
  top: -15px;
  color: #ba9662;
  margin-bottom: 15px;
}

#data_login_modal .form-error-message {
  padding-top: 5px;
  display: block;
  color: #ba9662;
}

.login-section .form-group {
  margin-bottom: 30px;
}

.login-section .form-group .form-control {
  height: 45px;
}

.login-section .profilepress-reg-status {
  color: #ba9662;
  margin-bottom: 30px;
  font-size: 20px;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  padding: 0;
  margin-top: 0;
  background: none;
  text-align: left;
}

.login-section .form-group.already {
  float: left;
  margin-top: 15px;
  color: #9f9f9f;
  margin-bottom: 30px;
  font-size: 20px;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
}

.login-section .form-group.already a {
  color: #ba9662;
}

.login-section .form-group:last-child {
  float: right;
}

.login-section .form-group:last-child input[type=submit] {
  margin-top: 0;
}

.woocommerce-MyAccount-content .woocommerce form .form-row {
  margin-bottom: 15px;
}

.woocommerce-MyAccount-content input.input-text {
  border: 1px solid #ba9662;
  border-radius: 0;
  box-shadow: none;
  height: 52px;
  background-color: transparent;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  padding: 13px 26px;
}

.woocommerce-MyAccount-content form .form-row-first {
  width: 30%;
}

.woocommerce-MyAccount-content form .form-row-last {
  width: 68%;
}

.woocommerce-MyAccount-content form .form-row label {
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9765;
  margin-bottom: 5px;
  text-transform: none;
}

.woocommerce-MyAccount-content form #billing_myfield13_field, .woocommerce-MyAccount-content form #billing_myfield14_field {
  width: 32%;
  margin-right: 2%;
}

.woocommerce-MyAccount-content form #billing_myfield9_field {
  width: 32%;
}

.woocommerce-MyAccount-content form #billing_myfield13_field {
  clear: both;
}

.woocommerce-MyAccount-content form .woocommerce-form__label-for-checkbox {
  margin: 15px 0;
}

.woocommerce-MyAccount-content form .woocommerce-form__label-for-checkbox input[type=checkbox] {
  display: none;
}

.woocommerce-MyAccount-content form .woocommerce-form__label-for-checkbox span {
  position: relative;
  padding-left: 32px;
  line-height: 20px;
  display: inline-block;
  cursor: pointer;
  font-size: 20px;
}

.woocommerce-MyAccount-content form .woocommerce-form__label-for-checkbox span:before {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #ba9765;
  border-radius: 5px;
  content: "";
  width: 20px;
  height: 20px;
}

.woocommerce-MyAccount-content form .woocommerce-form__label-for-checkbox span:after {
  content: "";
  border-bottom: 2px solid #FFF;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  position: absolute;
  left: 7px;
  top: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  opacity: 0;
}

.woocommerce-MyAccount-content form .woocommerce-form__label-for-checkbox input[type=checkbox]:checked + span:before, .woocommerce-MyAccount-content form .form-row input[type=checkbox]:checked ~ label span:before {
  background-color: #ba9765;
}

.woocommerce-MyAccount-content form .woocommerce-form__label-for-checkbox input[type=checkbox]:checked + span:after, .woocommerce-MyAccount-content form .form-row input[type=checkbox]:checked ~ label span:after {
  opacity: 1 !important;
}

.woocommerce-MyAccount-content form .form-row input[type=checkbox] {
  height: 0;
  width: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
}

.woocommerce-MyAccount-content form .woocommerce-form__label-for-checkbox b {
  font: 14px "Source Sans Pro", sans-serif;
  display: block;
  margin-top: 3px;
  color: #666;
}

.woocommerce-MyAccount-content form .woocommerce-form__label-for-checkbox .required {
  display: none;
}

.woocommerce-MyAccount-content #account-settings .form-row {
  float: none;
  width: 100%;
}

.woocommerce-MyAccount-content #account-settings .woocommerce-form__label-for-checkbox {
  margin: 15px 0;
}

.woocommerce-MyAccount-content #account-settings .woocommerce-form__label-for-checkbox input[type=checkbox],
.payment_methods.methods li input[type=radio] {
  display: none !important;
}

.woocommerce-MyAccount-content #account-settings .woocommerce-form__label-for-checkbox label, .payment_methods.methods li label {
  position: relative;
  padding-left: 32px;
  line-height: 20px;
  display: inline-block;
  cursor: pointer;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  font-size: 20px;
  color: #ba9662;
}

.woocommerce-MyAccount-content #account-settings {
  margin-bottom: 0;
  box-shadow: none;
}

.woocommerce-MyAccount-content #account-settings label:before, .payment_methods.methods li label:before {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #ba9765;
  border-radius: 5px;
  content: "";
  width: 20px;
  height: 20px;
}

.woocommerce-MyAccount-content #account-settings label:after, .payment_methods.methods li label:after {
  content: "";
  border-bottom: 2px solid #FFF;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  position: absolute;
  left: 7px;
  top: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  opacity: 0;
}

.woocommerce-MyAccount-content #account-settings .mc4wp-checkbox.mc4wp-checkbox-woocommerce label:before, .woocommerce-MyAccount-content #account-settings .mc4wp-checkbox.mc4wp-checkbox-woocommerce label:after {
  display: none;
}

.woocommerce-MyAccount-content #account-settings .mc4wp-checkbox.mc4wp-checkbox-woocommerce label input[type=checkbox], .billing-tab-contents .mc4wp-checkbox.mc4wp-checkbox-woocommerce label input[type=checkbox] {
  display: none;
}

.woocommerce-MyAccount-content #account-settings .mc4wp-checkbox.mc4wp-checkbox-woocommerce label span, .billing-tab-contents .mc4wp-checkbox.mc4wp-checkbox-woocommerce label span {
  position: relative;
  padding-left: 32px;
  line-height: 20px;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  display: inline-block;
  cursor: pointer;
  font-size: 20px;
  text-transform: none;
  color: #ba9662;
}

.woocommerce-MyAccount-content #account-settings .mc4wp-checkbox.mc4wp-checkbox-woocommerce label span:before, .billing-tab-contents .mc4wp-checkbox.mc4wp-checkbox-woocommerce label span:before {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #ba9765;
  border-radius: 5px;
  content: "";
  width: 20px;
  height: 20px;
}

.woocommerce-MyAccount-content #account-settings .mc4wp-checkbox.mc4wp-checkbox-woocommerce label span:after, .billing-tab-contents .mc4wp-checkbox.mc4wp-checkbox-woocommerce label span:after {
  content: "";
  border-bottom: 2px solid #FFF;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  position: absolute;
  left: 7px;
  top: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  opacity: 0;
}

.woocommerce-MyAccount-content #account-settings .mc4wp-checkbox.mc4wp-checkbox-woocommerce label input[type=checkbox]:checked + span:before, .billing-tab-contents .mc4wp-checkbox.mc4wp-checkbox-woocommerce label input[type=checkbox]:checked + span:before, .woocommerce-billing-fields__field-wrapper .form-row input[type=checkbox]:checked + label span:before, .woocommerce-shipping-fields__field-wrapper .form-row input[type=checkbox]:checked + label span:before, .woocommerce-billing-fields__field-wrapper .form-row input[type=checkbox]:checked ~ label span:before, .payment_methods.methods li input[type=radio]:checked + label:before {
  background-color: #ba9765;
}

.woocommerce-MyAccount-content #account-settings .mc4wp-checkbox.mc4wp-checkbox-woocommerce label input[type=checkbox]:checked + span:after, .billing-tab-contents .mc4wp-checkbox.mc4wp-checkbox-woocommerce label input[type=checkbox]:checked + span:after, .woocommerce-billing-fields__field-wrapper .form-row input[type=checkbox]:checked + label span:after, .woocommerce-billing-fields__field-wrapper .form-row input[type=checkbox]:checked ~ label span:after, .woocommerce-shipping-fields__field-wrapper .form-row input[type=checkbox]:checked ~ label span:after, .payment_methods.methods li input[type=radio]:checked + label:after {
  opacity: 1 !important;
}

.billing-tab-contents .mc4wp-checkbox.mc4wp-checkbox-woocommerce label b, .woocommerce-MyAccount-content #account-settings .mc4wp-checkbox.mc4wp-checkbox-woocommerce label b {
  font: 14px "Source Sans Pro", sans-serif;
  display: block;
  margin-top: 3px;
  color: #666;
}

.woocommerce-MyAccount-content #account-settings input[type=checkbox]:checked + label:before {
  background-color: #ba9765;
}

.woocommerce-MyAccount-content #account-settings input[type=checkbox]:checked + label:after {
  opacity: 1 !important;
}

.woocommerce-MyAccount-content .woocommerce-account-content-block:last-child {
  padding-bottom: 10px;
  box-shadow: none;
}

.woocommerce-MyAccount-content form #loader-field {
  width: 68%;
}

.woocommerce-MyAccount-content form #loader-field + p {
  width: 32%;
  float: right;
}

.woocommerce-MyAccount-content form #loader-field + p #shipping_loader_btn {
  padding: 0 30px;
  background: #ba9765;
  color: #FFF;
  border-radius: 0;
  height: 52px;
  display: inline-block;
  text-transform: uppercase;
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  line-height: 48px;
  margin-left: 20px;
  float: right;
}

.woocommerce-MyAccount-content .order-container .order-detail-address {
  min-height: 368px;
}

.billing-tab-contents .woocommerce-billing-fields__field-wrapper #billing_myfield10_field {
  display: none;
}

#forgot_password .form-group label, #forgot_password .status {
  color: #ba9662;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
}

#forgot_password .form-group {
  margin-bottom: 100px;
}

#forgot_password .submit_button {
  width: 100%;
}

.woocommerce-account .header-order {
  display: block;
}

.woocommerce-account .header-order h4 {
  color: #1b3975;
  font: 44px "StrayhornMT-Bold", Arial, sans-serif;
  position: relative;
  margin-bottom: 14px;
  text-transform: uppercase;
  display: inline-block;
}

.woocommerce-account .header-order label {
  float: right;
  margin-top: 17px;
}

.woocommerce-account .header-order label a {
  color: #ba9765;
  font: 18px "StrayhornMT-Bold", Arial, sans-serif;
  text-transform: uppercase;
}

.woocommerce-orders span.header-order.order-check {
  display: none;
}

.woocommerce-MyAccount-content .woocommerce-message, .cart_sidebar .woocommerce-message {
  border-bottom: 1px dashed #ba9765;
  font: 16px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9765;
}

.woocommerce-MyAccount-content .woocommerce-message:before, .cart_sidebar .woocommerce-message:before {
  color: #ba9765;
}

.required {
  text-decoration: none !important;
}

/* .woocommerce-checkout #payment .payment_method_paypal .about_paypal */
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
  line-height: 26px;
  margin-left: 10px;
}

.woocommerce-checkout .content .form-row input.woocommerce-form__input-checkbox[type=checkbox],
.woocommerce-account input.woocommerce-form__input-checkbox[type=checkbox],
.woocommerce-checkout .woocommerce #wizard-p-0 input.woocommerce-form__input-checkbox[type=checkbox] {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
}

.woocommerce-account .woocommerce-message,
.woocommerce-checkout .checkout-form-new .woocommerce-message {
  border-bottom: 1px dashed #ba9765;
  font: 16px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9765;
}

.woocommerce-account .woocommerce-message a {
  color: #ba9765;
  text-decoration: underline;
}

.woocommerce-account .woocommerce-message a:hover {
  color: #000;
  text-decoration: none;
}

.woocommerce-checkout .checkout-form-new .woocommerce-message:before,
.woocommerce-account .woocommerce-message:before {
  color: #ba9765;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  position: relative;
}

.woocommerce-account input.woocommerce-form__input-checkbox[type=checkbox]:checked + label span:before {
  background-color: #ba9765;
}

.woocommerce-account input.woocommerce-form__input-checkbox[type=checkbox]:checked + label span:after {
  opacity: 1;
}

.woocommerce form .form-row .required {
  font-weight: normal !important;
  font-family: "Source Sans Pro", sans-serif;
}

/* message-container */
.message-container {
  display: block;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 400;
}

#gdpr {
  position: absolute;
  left: 0;
  top: 0;
}

#gdpr span .wpcf7-list-item-label {
  position: relative;
  font-size: 0;
}

#gdpr span input[type=checkbox] {
  opacity: 0;
}

#gdpr + label {
  padding-left: 30px;
  position: relative;
  font-size: 15px;
}

#gdpr + label a {
  text-decoration: underline;
  color: #ba9765;
}

#gdpr span .wpcf7-list-item-label:before {
  content: "" !important;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -29px;
  top: -13px;
}

#gdpr span .wpcf7-list-item-label:after {
  content: "";
  border-bottom: 2px solid #FFF;
  width: 6px;
  height: 10px;
  border-right: 2px solid #FFF;
  position: absolute;
  left: -22px;
  top: -9px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  opacity: 0;
}

#gdpr input[type=checkbox]:checked + .wpcf7-list-item-label:before {
  border-color: #ba9765;
  background-color: #ba9765;
}

#gdpr input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}

label.error-field {
  color: #BF1D1D;
}

.wpcf7-list-item-label.error-field:before {
  border-color: #BF1D1D !important;
}

/* Custom checkbox design */
.checkbox-group .checkbox-kilcho {
  color: #ba9662;
  font: 16px "StrayhornMT-Bold", Arial, sans-serif;
}

.checkbox-group .checkbox-kilcho input[type=checkbox] {
  display: none;
}

.checkbox-group .checkbox-kilcho span {
  position: relative;
  padding-left: 30px;
  line-height: 22px;
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-group .checkbox-kilcho span:before {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #ba9765;
  border-radius: 5px;
  content: "";
  width: 20px;
  height: 20px;
}

.checkbox-group .checkbox-kilcho span:after {
  content: "";
  border-bottom: 2px solid #FFF;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  position: absolute;
  left: 7px;
  top: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  opacity: 0;
}

.checkbox-group .checkbox-kilcho input[type=checkbox]:checked + span:before {
  background-color: #ba9765;
}

.checkbox-group .checkbox-kilcho input[type=checkbox]:checked + span:after {
  opacity: 1;
}

.checkbox-group > span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.error-reg {
  font-size: 14px;
  font-weight: 400;
}

.page-template-tp-reg .login-section .form-group {
  margin-bottom: 37px;
}

#message {
  font: 18px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9765;
  margin-bottom: 30px;
}

#message .success-reg {
  background-color: green;
  color: white;
  display: block;
  padding: 8px 15px;
}

#message .email-message {
  margin-top: 15px;
  display: block;
}

.error-reg {
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 100%;
  color: red;
}

.woocommerce-checkout .checkout-form-new #wizard .content #billing_myfield18_field label span.required {
  display: none;
}

.sm-details del {
  opacity: 0.5;
}

.notice-red {
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  color: #bf2d2c;
  text-transform: uppercase;
}

.important-notice-login p {
  font-weight: 400;
  font-size: 14px;
}

.important-notice-login p a {
  color: #1B3975 !important;
  text-transform: uppercase;
  font-size: 100%;
}

/* total-div */
.total-div table.shop_table {
  border: none;
}

.total-div table.shop_table thead, .total-div .shop_table tbody {
  display: none;
}

.total-div table.shop_table tfoot tr th {
  border-top: none;
  padding: 8px 0;
}

.total-div table.shop_table tfoot tr td {
  border-top: none;
  padding: 8px 0;
}

.total-div table.shop_table tfoot tr th {
  font-weight: normal;
  font-size: 20px;
  color: #c9c1b9;
}

.total-div table.shop_table tfoot tr td {
  text-align: right;
  color: #1b3975;
  font: 20px "StrayhornMT-Bold", Arial, sans-serif;
}

.total-div table.shop_table tfoot tr.order-total th {
  font-size: 26px;
}

.total-div table.shop_table tfoot tr.order-total td {
  font-size: 30px;
  color: #ba9765;
}

.selectric-wrapper.selectric-time-slote .selectric:before {
  display: inline-block;
  color: #ba9662;
  text-transform: uppercase;
  margin-right: 0px;
  content: "Time Slot:";
  text-transform: uppercase;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  top: 16px;
  position: absolute;
  left: 26px;
}

.selectric-wrapper.selectric-time-slote .selectric .selectric-label {
  padding-left: 110px;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ba9662;
  line-height: 50px;
  margin-left: 0;
  padding-left: 26px;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  padding-top: 0;
  padding-bottom: 0;
  height: 52px;
  border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  height: 50px;
  line-height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  right: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-top-color: black;
}

.select2-container .select2-search.select2-search--dropdown {
  padding: 0;
}

.select2-container .select2-search.select2-search--dropdown .select2-search__field {
  border: none;
  padding: 0 26px;
  height: 50px;
  font: 20px "StrayhornMT-Bold", Arial, sans-serif;
  background-color: #fdfdfd;
  border-bottom: 1px solid #e2ddd7;
}

.select2-container .select2-dropdown {
  border: 0;
  box-shadow: 0px 0px 66px 3px rgba(0, 0, 0, 0.15);
  background: #fdfdfd;
  border-radius: 0;
}

.select2-container *:focus {
  outline: none !important;
}

.select2-container .select2-dropdown--below {
  margin-top: 19px;
}

.select2-container .select2-dropdown--below:after {
  content: "";
  display: inline-block;
  border: 10px solid transparent;
  border-bottom-color: white;
  position: absolute;
  top: -20px;
  right: 20px;
}

.select2-container .select2-dropdown--above {
  margin-top: -19px;
}

.select2-container .select2-dropdown--above:after {
  content: "";
  display: inline-block;
  border: 10px solid transparent;
  border-top-color: white;
  position: absolute;
  bottom: -20px;
  right: 20px;
}

.select2-container .select2-dropdown li {
  padding: 10px;
  padding-left: 26px;
  background-image: none;
  font: 20px "StrayhornMT-Bold", Arial, sans-serif;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: transparent;
  color: #2f2f2f;
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[data-selected=true] {
  background-color: transparent;
  color: #2f2f2f;
}

body.date_open {
  overflow: hidden !important;
}

#refresh_div tr.tax-rate, #refresh_div tr.tax-total {
  display: none;
}

@media screen and (max-width: 1366px) {
  .gridlists {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .popup-product-form {
    padding: 50px;
  }

  .woocommerce-order-received .woocommerce-order .woocommerce-order-content li strong {
    font-size: 16px;
  }

  .approved-page-content {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  .club-post-content {
    padding: 40px 30px;
    width: 84%;
  }

  .club-post-content h2 {
    font-size: 28px;
  }

  .club-post-content p {
    font-size: 14px;
  }

  .product-summary h3 {
    font-size: 22px;
  }

  .product-category-name {
    font-size: 15px;
  }

  .product-price {
    font-size: 16px;
  }

  .sub-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .club-row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .club-column {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }

  .woocommerce-cart .main-page-wrapper .cart-collaterals .cart_totals table tr td {
    font-size: 14px;
  }

  .woocommerce-cart .main-page-wrapper .cart-collaterals .cart_totals table tr.order-total td {
    font-size: 18px;
  }

  .popup-product-form {
    padding: 40px;
  }

  .popup-product-form p {
    margin-bottom: 20px;
  }

  .popup-title {
    font-size: 30px;
  }

  .woocommerce-checkout .woocommerce .woocommerce-checkout .steps ul li a {
    font-size: 16px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    font-size: 20px;
    padding: 10px 0;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 32%;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    width: 66%;
  }

  .cart-item .cart-image {
    width: 80px;
    margin-right: 20px;
  }

  .cart-item .cart-title {
    font-size: 18px;
  }

  .cart-item .cart-variation, .cart-item .cart-price, .cart-item .cart-qty {
    font-size: 15px;
    margin-bottom: 0px;
  }

  .cart-item {
    padding: 10px 0;
  }

  .woocommerce-order-received .woocommerce-order .woocommerce-order-content h2 {
    font-size: 28px;
  }

  .woocommerce-order-received .woocommerce-order .woocommerce-order-content ul li {
    width: 100%;
    border-right: none;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px dashed #d3ced2;
  }

  .woocommerce-order-received .woocommerce-order .woocommerce-order-content ul li:last-child {
    border: none;
  }

  .woocommerce-order-content .woocommerce-customer-details address {
    font-size: 16px;
  }

  .woocommerce-orders .woocommerce-MyAccount-content {
    width: 100%;
  }

  .woocommerce-checkout .checkout-form-new #wizard .content .checkout-login span {
    display: block;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .club-post-block {
    padding: 20px;
  }

  .club-post-content {
    padding: 30px;
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    left: 0;
    top: 0;
    width: 100%;
  }

  .club-post-content .btn-outlined {
    padding: 8px 20px;
    font-size: 14px;
  }

  .club-post-content h2 {
    font-size: 24px;
  }

  .club-post-content p {
    margin-bottom: 15px;
  }

  .club-post-block > img {
    display: none;
  }

  .club-column-70 {
    width: 100%;
  }

  .club-column-30 {
    width: 100%;
  }

  .woocommerce-lost-password .main-page-wrapper .woocommerce,
.woocommerce-account .main-page-wrapper .woocommerce,
.woocommerce-checkout .main-page-wrapper .woocommerce,
.woocommerce-account .main-page-wrapper .woocommerce,
.woocommerce-cart .main-page-wrapper .woocommerce {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .woocommerce-cart .main-page-wrapper .woocommerce .woocommerce-cart-form {
    width: 100%;
    margin-right: 0;
  }

  .woocommerce-cart .main-page-wrapper .woocommerce .cart_item > a {
    width: 70px;
  }

  .woocommerce-page .main-page-wrapper .woocommerce .cart_item .img-description {
    padding: 0;
  }

  .woocommerce-cart .main-page-wrapper .woocommerce .img-description h3 {
    font-size: 16px;
  }

  .woocommerce-cart .main-page-wrapper .woocommerce .img-description strong {
    font-size: 14px;
  }

  .woocommerce-cart .main-page-wrapper .woocommerce .cart-collaterals {
    width: 100%;
    margin-top: 30px;
  }

  .woocommerce-cart .main-page-wrapper .woocommerce .cart-collaterals .cart_totals .btn-outlined {
    margin-top: 0;
  }

  .woocommerce-checkout .main-page-wrapper .woocommerce .form-row {
    width: 100%;
  }

  .woocommerce-checkout .main-page-wrapper .woocommerce .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table {
    width: 100%;
  }

  .woocommerce-checkout .main-page-wrapper .woocommerce .woocommerce-checkout-review-order .woocommerce-checkout-payment {
    width: 100%;
  }

  .popup-product-img {
    width: 100%;
    position: relative;
  }

  .popup-product-img img {
    height: auto;
  }

  .popup-product-form p {
    font-size: 14px;
  }

  .popup-product-form {
    width: 100%;
    padding: 30px;
  }

  .paroller-block-even > .grid-list-item, .paroller-block-odd > .grid-list-item {
    margin-bottom: 40px;
  }

  .paroller-block-odd > .grid-list-item:first-child {
    margin-top: 0;
  }

  /* Content page */
  .container-sm-inner > * {
    max-width: 80%;
  }

  .container-sm-inner p {
    font-size: 15px;
    line-height: 1.6em;
    margin-bottom: 20px;
  }

  .container-sm-inner blockquote {
    font-size: 18px;
  }

  .container-sm-inner blockquote p {
    line-height: 1.4em;
  }

  .detail-post-title {
    padding: 30px;
  }

  .detail-post-title h1 {
    font-size: 40px;
  }

  .container-sm-inner h2 {
    margin: 20px 0;
    font-size: 24px;
  }

  .container-sm-inner p img {
    margin: 20px 0;
  }

  .container-sm-inner blockquote {
    margin: 30px 0;
    padding-left: 15px;
    padding-right: 0;
  }

  .container-sm-inner .social-links2, .container-sm-inner .wp-video {
    margin: 40px 0;
  }

  .container-sm-inner ul li, .container-sm-inner ol li {
    font-size: 15px;
    line-height: 1.6em;
    padding-left: 20px;
  }

  .container-sm-inner ul li:before {
    width: 10px;
    height: 10px;
    border-width: 2px;
    top: 7px;
  }

  .distillery .upcoming_post {
    padding: 30px 0;
  }

  .distillery .upcoming_post h2 {
    margin-bottom: 25px;
    font-size: 30px;
  }

  /* checkout woocommerce */
  .woocommerce-checkout .woocommerce .woocommerce-checkout .content {
    padding: 25px 25px;
  }

  .woocommerce-checkout .woocommerce .woocommerce-checkout .content .login-step h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .woocommerce-checkout .main-page-wrapper .woocommerce #wizard .checkout_coupon .form-row.form-row-first {
    width: 100%;
    margin-bottom: 15px;
  }

  .woocommerce-checkout .main-page-wrapper .woocommerce #wizard .checkout_coupon .form-row.form-row-last {
    width: 100%;
  }

  .woocommerce-checkout .main-page-wrapper .woocommerce #wizard .login-step .button, .woocommerce-checkout .main-page-wrapper .woocommerce #wizard .actions li a, .woocommerce-checkout .main-page-wrapper .woocommerce #wizard .checkout_coupon .form-row .button {
    font-size: 15px;
    padding: 10px 20px;
    height: auto;
  }

  .woocommerce-checkout .main-page-wrapper .woocommerce #wizard .checkout_coupon .form-row .button:hover, .woocommerce-checkout .main-page-wrapper .woocommerce #wizard .actions li a:hover, .woocommerce-checkout .main-page-wrapper .woocommerce #wizard .login-step .button:hover {
    padding-left: 30px;
    padding-right: 30px;
  }

  .woocommerce-checkout .main-page-wrapper .woocommerce table.shop_table th, .woocommerce-checkout .main-page-wrapper .woocommerce table.shop_table td {
    padding: 10px;
    font-size: 14px;
  }

  .woocommerce-checkout .woocommerce .woocommerce-checkout .steps ul li {
    padding: 4px;
  }

  .woocommerce-checkout .woocommerce .woocommerce-checkout .steps ul li.current a:after {
    top: 18px;
  }

  .checkout-form-new {
    width: 100%;
  }

  .sidebar-cart {
    width: 100%;
    margin-top: 30px;
  }

  .checkout-form-new h4, .sidebar-cart h4 {
    font-size: 30px;
  }

  .sidebar-cart-count {
    padding: 0 25px 20px;
  }

  .total-div {
    padding: 15px 25px;
  }

  .woocommerce-checkout .woocommerce .woocommerce-checkout .steps ul {
    padding: 25px;
  }

  .total-div > span {
    font-size: 16px;
    margin: 5px 0;
  }

  .woocommerce-order-received .woocommerce-order-content .woocommerce-order-details {
    width: 100%;
  }

  .woocommerce-order-received .woocommerce-order-content .woocommerce-customer-details {
    width: 100%;
  }

  .order-left-container {
    width: 100%;
  }

  .order-right-container {
    width: 100%;
    margin-top: 20px;
  }

  .woocommerce-orders .woocommerce-MyAccount-content .header-order h4 {
    font-size: 30px;
  }

  .woocommerce-orders .woocommerce-MyAccount-content .header-order label {
    margin-top: 10px;
  }

  .woocommerce-orders .woocommerce-MyAccount-content .header-order label a {
    font-size: 14px;
  }

  .order-detail-number {
    font-size: 20px;
  }

  .order-detail-address, .order-detail-number {
    padding: 15px 20px;
  }

  .order-detail-container {
    padding: 0 20px 20px;
  }

  .edit-account {
    padding: 20px 10px 20px;
  }

  .edit-account span {
    font-size: 22px;
  }

  .order-detail-address label {
    font-size: 16px;
  }

  .approved-page-content {
    max-width: 400px;
  }

  .approved-page-content h1 {
    font-size: 40px;
  }

  .approved-page-content p {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .approved-page-content .btn {
    font-size: 16px;
  }

  .woocommerce-checkout .woocommerce form #billing_myfield13_field, .woocommerce-checkout .woocommerce form #billing_myfield14_field, .woocommerce-checkout .woocommerce form #billing_myfield9_field {
    width: 100%;
  }

  .woocommerce-checkout .woocommerce .content #billing_myfield14_field label,
.woocommerce-checkout .woocommerce .content #billing_myfield9_field label,
.woocommerce-account .woocommerce-MyAccount-content #billing_myfield14_field label,
.woocommerce-account .woocommerce-MyAccount-content #billing_myfield9_field label {
    display: none;
  }

  .woocommerce-checkout .woocommerce .woocommerce-form__label-for-checkbox span {
    font-size: 16px;
  }

  .page-template-contact .divided_spotconent {
    height: auto !important;
    padding: 40px 0 90px;
  }

  .page-template-contact .divided_spotconent .img_place {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }

  .page-template-contact .divided_spotconent .in-contentsWrap {
    top: 0;
  }

  .page-template-contact .main-page-wrapper .form_mainwrap {
    clear: both;
  }

  .page-template-contact .divided_spotconent .in-contentsWrap {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  /* MY accout page design setting */
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
    padding: 25px;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    margin-top: 20px;
  }

  .woocommerce-account-content-block {
    margin-bottom: 42px;
    padding: 25px;
  }

  .woocommerce-account .main-page-wrapper .woocommerce h2 {
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }

  .woocommerce-account-content-block:after {
    bottom: -24px;
  }
}
@media screen and (max-width: 620px) {
  .sub-tab-links li {
    width: auto;
  }
}
.single-product .pop-effect {
  overflow: hidden;
}

.single-product .bgset_img .block_divide {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.single-product .block_divide .islay-map img {
  margin-left: 0;
  position: relative;
  top: 0;
}

.single-product figure.islay-map {
  text-align: left;
  width: 50%;
  position: relative;
  top: 17px;
}

.single-product .pro-machir-bay #svg-container svg {
  overflow: visible;
}

/*.single-product .machir-bay #machir_bay_button { pointer-events: none; opacity: 0; position: absolute; left: 0; top: 0; }*/
.single-product .pro-machir-bay #svg-container {
  top: -166px;
  width: 166px;
  left: 0px;
}

.single-product .pro-machir-bay .svg_solid_drow #svg_offset {
  stroke-dasharray: 631.062;
  -webkit-animation: machir 4s 0s linear;
          animation: machir 4s 0s linear;
}

@-webkit-keyframes machir {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 631.062;
  }
}
@keyframes machir {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 631.062;
  }
}
.single-product .pro-sanaig #svg-container svg {
  overflow: visible;
}

.single-product .pro-sanaig #svg-container {
  top: -132px;
  width: 220px;
  left: 0px;
}

.single-product .pro-sanaig .svg_solid_drow #svg_offset {
  stroke-dasharray: 680.251;
  -webkit-animation: sanaig 4s 0s linear;
          animation: sanaig 4s 0s linear;
}

@-webkit-keyframes sanaig {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 680.251;
  }
}
@keyframes sanaig {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 680.251;
  }
}
.single-product .pro-loch-gorm #svg-container svg {
  overflow: visible;
}

.single-product .pro-loch-gorm #svg-container {
  top: -205px;
  width: 210px;
  left: 0px;
}

.single-product .pro-loch-gorm .islay-map img {
  margin-left: 8px;
}

.single-product .pro-loch-gorm .svg_solid_drow #svg_offset {
  stroke-dasharray: 586.321;
  -webkit-animation: loch-gorm 4s 0s linear;
          animation: loch-gorm 4s 0s linear;
}

@-webkit-keyframes loch-gorm {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 586.321;
  }
}
@keyframes loch-gorm {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 586.321;
  }
}
.single-product .pro-100-islay #svg-container svg {
  overflow: visible;
}

.single-product .pro-100-islay #svg-container {
  top: -178px;
  width: 210px;
  left: 0px;
  padding: 0 10px 0 0;
}

.single-product .pro-100-islay .islay-map img {
  margin-left: 7px;
}

.single-product .pro-100-islay .svg_solid_drow #svg_offset {
  stroke-dasharray: 658.589;
  -webkit-animation: islay 4s 0s linear;
          animation: islay 4s 0s linear;
}

@-webkit-keyframes islay {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 658.589;
  }
}
@keyframes islay {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 658.589;
  }
}
.btnpathgroup {
  overflow: hidden;
}

.btnpathgroup.spot-path:after {
  height: 138px;
}

.btnpathgroup:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 3px;
  height: 51px;
  top: 52px;
  background: #ba9662;
  margin-left: -2px;
  -webkit-transition: linear 1s;
  transition: linear 1s;
}

.btnpathgroup:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  top: 103px;
  background: #1b3975;
  margin-left: -10.5px;
  border: 6px solid #ba9662;
  border-radius: 100%;
  -webkit-transition: linear 1s;
  transition: linear 1s;
  z-index: 2;
}

.btnpathgroup.spot-path:before {
  top: 190px;
}

.single-product .btnpathgroup:after {
  display: none;
}

.single-product .btnpathgroup:before {
  display: none;
}

.single-product .spotdotpath {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}

.single-product .spot-path .path1 {
  stroke-dasharray: 119;
  stroke-dashoffset: 119;
}

.btnpathgroup .svg-outer:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  top: 103px;
  background: #1b3975;
  margin-left: -10px;
  border: 6px solid #ba9662;
  border-radius: 100%;
  -webkit-transition: linear 1s;
  transition: linear 1s;
  z-index: 2;
}

.single-product .btnpathgroup .svg-outer:before {
  top: 120px;
  margin-left: -10px;
}

.btnpathgroup .svg-outer:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 3px;
  height: 51px;
  top: 0;
  background: #ba9662;
  margin-left: -1px;
  -webkit-transition: linear 1s;
  transition: linear 1s;
}

.single-product .btnpathgroup .svg-outer:after {
  height: 120px;
  margin-left: -1px;
}

.single-product .btnpathgroup .svg-outer:after {
  height: 120px;
}

.single-product .btnpathgroup .svg-outer:before {
  top: 120px;
}

.single-product .btnpathgroup.spot-path .svg-outer:after {
  height: 260px;
}

.single-product .btnpathgroup.spot-path .svg-outer:before {
  top: 260px;
}

.woocommerce form .form-row .select2-container {
  width: 100% !important;
}

body.page-template-tp-customorder-php .popup-product-form {
  min-height: 700px;
  overflow-y: auto;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: 100% !important;
  display: inline-block !important;
}

.notevidebutton .video-foreground video::-webkit-media-controls-panel {
  display: none;
  -webkit-appearance: none;
}

.mainloader .preloader {
  position: fixed;
}

.page-template-tp-customorder.modal-open .main-page-wrapper {
  position: relative;
  z-index: 12;
}

.page-template-tp-customorder.modal-open .woocommerce-popup {
  display: block;
}

footer .left-block .textwidget span {
  display: inline-block;
}

footer .left-block .textwidget p a {
  display: inline-block;
}

footer .left-block .textwidget span:before {
  border-left: 1px solid rgba(204, 204, 204, 0.8);
  content: "";
  margin: 0 8px 0 5px;
}

small.tax_label {
  display: none;
}

#cookie-law-info-again {
  color: #fff;
}

.single-distillery .container-sm {
  position: relative;
  z-index: 1;
}

.alignleft {
  margin: 0 20px 20px 0;
  float: left;
}

.alignright {
  margin: 0 0 20px 20px;
  float: right;
}

.aligncenter {
  margin: 0 auto 20px auto !important;
  float: none;
  display: block;
}

.wp-block-image .aligncenter {
  text-align: center;
}

.wp-block-image img {
  height: auto;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

span.button.product_type_simple.add_to_cart_button.ajax_add_to_cart.wpb_wl_preview.open-popup-link {
  cursor: pointer;
}

.checkout p#billing_address_2_field span.required {
  display: none;
}

.only-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  /*height: 100%;*/
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.scrollmain {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.scrollmain img, .behind-workshop img {
  opacity: 0;
  visibility: hidden;
}

.only-bottom img {
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.behind-workshop {
  display: block;
  position: fixed;
  left: 0;
  top: 100px;
  width: 100%;
}

.mainimg {
  width: 100%;
  height: 100%;
}

.workshop-section img {
  width: 100%;
  height: auto;
}

/*Added Changes on 26-09-2018*/
.textwidget p:after {
  content: "|";
  padding-left: 10px;
  text-align: center;
}

/*added changes on 03-oct-18*/
.video-lists_new .wrapvideo h3 a {
  display: none !important;
}

.video-lists_new .wrapvideo {
  overflow: initial;
}

.gridlists .itemdetals h3 a:hover, .gridlists .itemdetals h3 a:focus {
  opacity: 1;
  cursor: default;
}

.gridlists li .item-wrap a:hover, .gridlists li .item-wrap a:focus {
  cursor: default;
}

/*.taste_graph.machir-bay .circle { stroke: #222662; opacity: 1 !important; }
.taste_graph.machir-bay .circleone { stroke: #27357b; }
.taste_graph.machir-bay .circletwo { stroke: #283891; }
.taste_graph.machir-bay .circlethree { stroke: #3a4ea2; }
.taste_graph.machir-bay .circlefour { stroke: #5766a5; }

.taste_graph.round_100-islay .circle { stroke: #786432; opacity: 1 !important; }
.taste_graph.round_100-islay .circleone { stroke: #85754f; }
.taste_graph.round_100-islay .circletwo { stroke: #998c64; }
.taste_graph.round_100-islay .circlethree { stroke: #a99a77; }
.taste_graph.round_100-islay .circlefour { stroke: #aaa18d; }

.taste_graph.sanaig .circle { stroke: #49255e; opacity: 1 !important; }
.taste_graph.sanaig .circleone { stroke: #5c3778; }
.taste_graph.sanaig .circletwo { stroke: #734c95; }
.taste_graph.sanaig .circlethree { stroke: #8b69ae; }
.taste_graph.sanaig .circlefour { stroke: #af8fc2; }*/
body.modal-open {
  overflow: hidden !important;
}

.modal-open .main-page-wrapper {
  z-index: 99;
}

.modal.in:after {
  background: rgba(226, 221, 215, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}

.mfp-wrap .mfp-content {
  margin: 50px auto;
}

.mfp-container {
  height: auto;
}

.mfp-wrap .mfp-container .popup-content {
  height: auto;
}

.mfp-wrap {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1043;
  position: fixed !important;
}

body.mfp-pop-open {
  overflow: hidden !important;
}

.mfp-wrap {
  overflow: auto;
}

.checkout-form-new .billing-tab-contents .checkout-login {
  margin-bottom: 0 !important;
}

.checkout-form-new .wizard .actions {
  padding-top: 0;
}

@media (max-width: 1024px) {
  .poserimg:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #192341;
    opacity: 0.6;
  }
}
@media (max-width: 991px) {
  .checkout-form-new .checkout-login span {
    display: block !important;
  }

  .checkout-form-new .checkout-login label {
    float: none !important;
    margin: 10px 0 0 0 !important;
  }
}
@media (max-width: 767px) {
  .block-1 .spot_content .logo {
    width: 268px;
    margin-bottom: 48px;
  }

  .btnvideo {
    width: 98px;
    height: 98px;
  }

  .btnpathgroup {
    max-width: 314px;
    width: 100%;
  }

  /*.page-template-home .block-1 .btnpathgroup { bottom: 100px; }*/
  /*.btnpathgroup .btn-outlined { display: block; font-size: 20px; }*/
  .btnpathgroup:after {
    top: 100% !important;
  }

  .topaccount {
    vertical-align: top;
  }

  .topaccount .fa-user {
    background-image: url(/wp-content/themes/kilchoman/img/user-icon.png);
    width: 23px;
    height: 26px;
    font-size: 0 !important;
    background-size: contain;
    top: 0 !important;
  }
}
@media (max-width: 420px) {
  .page-template-home .block-1 .btnpathgroup {
    bottom: 100px;
  }
}
/*body.woocommerce-orders .woocommerce-error, body.woocommerce-account .woocommerce-error {display: none; }*/
body .fancybox-content {
  margin: 0;
  vertical-align: middle;
}

.btnvideo.fancybox-mob {
  display: block;
}

.video-lists_custom {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.home .fancybox-buttons {
  top: 10px;
  right: 10px;
  position: fixed;
}

.video-lists_custom:before, .video-lists_custom:after {
  display: none;
}

.video-lists_custom h2 {
  font-size: 18px;
  color: #F9F2DF;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  top: 100%;
  width: 100%;
  margin-top: 14px;
  margin-bottom: 0;
  z-index: 1;
}

.video-lists_custom .fancybox-mob {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  width: 64px;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 4px;
  font-size: 0;
}

.video-lists_custom .fancybox-mob:before {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  border-left: 19px solid #e4e4e4;
  top: 10px;
  left: 24px;
}

.video-lists_custom .itemvideo {
  background-color: #000;
  padding: 18px 0;
}

.video-lists_custom .itemvideo img {
  width: 100%;
}

@media (max-width: 767px) {
  .video-lists_custom {
    max-width: 370px;
  }
}
/* Fixes issues caused by WooCom updates 19th Sep 2019
 */
.slimScrollDiv .img-description h3 {
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 5px;
  margin-top: 0px;
  font: 19px "StrayhornMT-Bold", Arial, sans-serif;
}

.slimScrollDiv .img-description h3 a {
  color: #333;
}

.slimScrollDiv .img-description h3 a:hover {
  color: #23527c;
}

.slimScrollDiv .wc-proceed-to-checkout a {
  font: 17px "StrayhornMT-Bold", Arial, sans-serif !important;
  color: #426eaf !important;
  padding: 14px 30px !important;
  border: 2px solid #1b3975 !important;
  border-radius: 0px;
  text-transform: uppercase !important;
  -webkit-transition: padding 0.5s ease !important;
  transition: padding 0.5s ease !important;
  background-color: transparent !important;
}

/*.slimScrollDiv .quantity {
  margin: 0;
}*/
.cart_sidebar .cart-collaterals .cart-subtotal th {
  width: 100% !important;
  display: inline;
  position: absolute;
  color: #e2ddd7;
  font-weight: normal;
  border: none;
  left: 0;
}

/**
 * Select box styling
 */
body .selectric-wrapper {
  position: relative;
  cursor: pointer;
}

body .selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

body .selectric, .selectric-hover .selectric, .selectric-focus .selectric {
  border: 1px solid #ba9662;
  background: transparent;
}

body .selectric-label {
  line-height: 52px;
  margin-left: 0;
  padding-left: 26px;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  padding-top: 15px;
  padding-bottom: 15px;
}

body .selectric-label, .selectric-button {
  height: 52px;
}

body .selectric-label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 0;
  font-size: 12px;
  line-height: 18px;
  color: #2f2f2f;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body .selectric-button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: transparent;
  color: #b0b0b0;
  text-align: center;
  border: none;
  padding: 0;
}

#billing_myfield12_field {
  width: 30%;
  display: inline-block;
}

#billing_myfield12_field + .clear {
  display: none !important;
}

body.page-template-shop .product.grid-item {
  margin-top: 0px !important;
}

/*!
 * fullPage 2.9.0
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#superContainer {
  height: 100%;
  position: relative;
  /* Touch detection for Windows 8 */
  /* IE 11 on Windows Phone 8.1*/
  touch-action: none;
}

.fp-section {
  position: relative;
  /* Safari<=5 Android<=3 */
  /* <=28 */
  box-sizing: border-box;
}

.fp-slide {
  float: left;
}

.fp-slide, .fp-slidesContainer {
  height: 100%;
  display: block;
}

.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  /* Safari<=6 Android<=4.3 */
  transition: all 0.3s ease-out;
}

.fp-section.fp-table, .fp-slide.fp-table {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.fp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.fp-slidesContainer {
  float: left;
  position: relative;
}

.fp-controlArrow {
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -38px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff;
}

.fp-scrollable {
  overflow: hidden;
  position: relative;
}

.fp-scroller {
  overflow: hidden;
}

.iScrollIndicator {
  border: 0 !important;
}

.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}

#fp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
}

#fp-nav.right {
  right: 17px;
}

#fp-nav.left {
  left: 17px;
}

.fp-slidesNav {
  position: absolute;
  z-index: 4;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fp-slidesNav.bottom {
  bottom: 17px;
}

.fp-slidesNav.top {
  top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative;
}

.fp-slidesNav ul li {
  display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #fff;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 10px;
  height: 10px;
  margin: -5px 0px 0px -5px;
}

#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 0;
  width: 0;
  cursor: pointer;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1;
}

#fp-nav ul li .fp-tooltip.right {
  right: 20px;
}

#fp-nav ul li .fp-tooltip.left {
  left: 20px;
}

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
  height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
  height: auto !important;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("/wp-content/themes/kilchoman/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\F000";
}

.fa-music:before {
  content: "\F001";
}

.fa-search:before {
  content: "\F002";
}

.fa-envelope-o:before {
  content: "\F003";
}

.fa-heart:before {
  content: "\F004";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-o:before {
  content: "\F006";
}

.fa-user:before {
  content: "\F007";
}

.fa-film:before {
  content: "\F008";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-check:before {
  content: "\F00C";
}

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\F00D";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-signal:before {
  content: "\F012";
}

.fa-gear:before, .fa-cog:before {
  content: "\F013";
}

.fa-trash-o:before {
  content: "\F014";
}

.fa-home:before {
  content: "\F015";
}

.fa-file-o:before {
  content: "\F016";
}

.fa-clock-o:before {
  content: "\F017";
}

.fa-road:before {
  content: "\F018";
}

.fa-download:before {
  content: "\F019";
}

.fa-arrow-circle-o-down:before {
  content: "\F01A";
}

.fa-arrow-circle-o-up:before {
  content: "\F01B";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-play-circle-o:before {
  content: "\F01D";
}

.fa-rotate-right:before, .fa-repeat:before {
  content: "\F01E";
}

.fa-refresh:before {
  content: "\F021";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-lock:before {
  content: "\F023";
}

.fa-flag:before {
  content: "\F024";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-print:before {
  content: "\F02F";
}

.fa-camera:before {
  content: "\F030";
}

.fa-font:before {
  content: "\F031";
}

.fa-bold:before {
  content: "\F032";
}

.fa-italic:before {
  content: "\F033";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-list:before {
  content: "\F03A";
}

.fa-dedent:before, .fa-outdent:before {
  content: "\F03B";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-video-camera:before {
  content: "\F03D";
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\F03E";
}

.fa-pencil:before {
  content: "\F040";
}

.fa-map-marker:before {
  content: "\F041";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-tint:before {
  content: "\F043";
}

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\F044";
}

.fa-share-square-o:before {
  content: "\F045";
}

.fa-check-square-o:before {
  content: "\F046";
}

.fa-arrows:before {
  content: "\F047";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-play:before {
  content: "\F04B";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-eject:before {
  content: "\F052";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-times-circle-o:before {
  content: "\F05C";
}

.fa-check-circle-o:before {
  content: "\F05D";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-mail-forward:before, .fa-share:before {
  content: "\F064";
}

.fa-expand:before {
  content: "\F065";
}

.fa-compress:before {
  content: "\F066";
}

.fa-plus:before {
  content: "\F067";
}

.fa-minus:before {
  content: "\F068";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-plane:before {
  content: "\F072";
}

.fa-calendar:before {
  content: "\F073";
}

.fa-random:before {
  content: "\F074";
}

.fa-comment:before {
  content: "\F075";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-arrows-v:before {
  content: "\F07D";
}

.fa-arrows-h:before {
  content: "\F07E";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\F080";
}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-key:before {
  content: "\F084";
}

.fa-gears:before, .fa-cogs:before {
  content: "\F085";
}

.fa-comments:before {
  content: "\F086";
}

.fa-thumbs-o-up:before {
  content: "\F087";
}

.fa-thumbs-o-down:before {
  content: "\F088";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-heart-o:before {
  content: "\F08A";
}

.fa-sign-out:before {
  content: "\F08B";
}

.fa-linkedin-square:before {
  content: "\F08C";
}

.fa-thumb-tack:before {
  content: "\F08D";
}

.fa-external-link:before {
  content: "\F08E";
}

.fa-sign-in:before {
  content: "\F090";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-upload:before {
  content: "\F093";
}

.fa-lemon-o:before {
  content: "\F094";
}

.fa-phone:before {
  content: "\F095";
}

.fa-square-o:before {
  content: "\F096";
}

.fa-bookmark-o:before {
  content: "\F097";
}

.fa-phone-square:before {
  content: "\F098";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-facebook-f:before, .fa-facebook:before {
  content: "\F09A";
}

.fa-github:before {
  content: "\F09B";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-feed:before, .fa-rss:before {
  content: "\F09E";
}

.fa-hdd-o:before {
  content: "\F0A0";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-hand-o-right:before {
  content: "\F0A4";
}

.fa-hand-o-left:before {
  content: "\F0A5";
}

.fa-hand-o-up:before {
  content: "\F0A6";
}

.fa-hand-o-down:before {
  content: "\F0A7";
}

.fa-arrow-circle-left:before {
  content: "\F0A8";
}

.fa-arrow-circle-right:before {
  content: "\F0A9";
}

.fa-arrow-circle-up:before {
  content: "\F0AA";
}

.fa-arrow-circle-down:before {
  content: "\F0AB";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-arrows-alt:before {
  content: "\F0B2";
}

.fa-group:before, .fa-users:before {
  content: "\F0C0";
}

.fa-chain:before, .fa-link:before {
  content: "\F0C1";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-cut:before, .fa-scissors:before {
  content: "\F0C4";
}

.fa-copy:before, .fa-files-o:before {
  content: "\F0C5";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-save:before, .fa-floppy-o:before {
  content: "\F0C7";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\F0C9";
}

.fa-list-ul:before {
  content: "\F0CA";
}

.fa-list-ol:before {
  content: "\F0CB";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-magic:before {
  content: "\F0D0";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-pinterest-square:before {
  content: "\F0D3";
}

.fa-google-plus-square:before {
  content: "\F0D4";
}

.fa-google-plus:before {
  content: "\F0D5";
}

.fa-money:before {
  content: "\F0D6";
}

.fa-caret-down:before {
  content: "\F0D7";
}

.fa-caret-up:before {
  content: "\F0D8";
}

.fa-caret-left:before {
  content: "\F0D9";
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-columns:before {
  content: "\F0DB";
}

.fa-unsorted:before, .fa-sort:before {
  content: "\F0DC";
}

.fa-sort-down:before, .fa-sort-desc:before {
  content: "\F0DD";
}

.fa-sort-up:before, .fa-sort-asc:before {
  content: "\F0DE";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-linkedin:before {
  content: "\F0E1";
}

.fa-rotate-left:before, .fa-undo:before {
  content: "\F0E2";
}

.fa-legal:before, .fa-gavel:before {
  content: "\F0E3";
}

.fa-dashboard:before, .fa-tachometer:before {
  content: "\F0E4";
}

.fa-comment-o:before {
  content: "\F0E5";
}

.fa-comments-o:before {
  content: "\F0E6";
}

.fa-flash:before, .fa-bolt:before {
  content: "\F0E7";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-umbrella:before {
  content: "\F0E9";
}

.fa-paste:before, .fa-clipboard:before {
  content: "\F0EA";
}

.fa-lightbulb-o:before {
  content: "\F0EB";
}

.fa-exchange:before {
  content: "\F0EC";
}

.fa-cloud-download:before {
  content: "\F0ED";
}

.fa-cloud-upload:before {
  content: "\F0EE";
}

.fa-user-md:before {
  content: "\F0F0";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-bell-o:before {
  content: "\F0A2";
}

.fa-coffee:before {
  content: "\F0F4";
}

.fa-cutlery:before {
  content: "\F0F5";
}

.fa-file-text-o:before {
  content: "\F0F6";
}

.fa-building-o:before {
  content: "\F0F7";
}

.fa-hospital-o:before {
  content: "\F0F8";
}

.fa-ambulance:before {
  content: "\F0F9";
}

.fa-medkit:before {
  content: "\F0FA";
}

.fa-fighter-jet:before {
  content: "\F0FB";
}

.fa-beer:before {
  content: "\F0FC";
}

.fa-h-square:before {
  content: "\F0FD";
}

.fa-plus-square:before {
  content: "\F0FE";
}

.fa-angle-double-left:before {
  content: "\F100";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-angle-double-up:before {
  content: "\F102";
}

.fa-angle-double-down:before {
  content: "\F103";
}

.fa-angle-left:before {
  content: "\F104";
}

.fa-angle-right:before {
  content: "\F105";
}

.fa-angle-up:before {
  content: "\F106";
}

.fa-angle-down:before {
  content: "\F107";
}

.fa-desktop:before {
  content: "\F108";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-tablet:before {
  content: "\F10A";
}

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\F10B";
}

.fa-circle-o:before {
  content: "\F10C";
}

.fa-quote-left:before {
  content: "\F10D";
}

.fa-quote-right:before {
  content: "\F10E";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-circle:before {
  content: "\F111";
}

.fa-mail-reply:before, .fa-reply:before {
  content: "\F112";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-folder-o:before {
  content: "\F114";
}

.fa-folder-open-o:before {
  content: "\F115";
}

.fa-smile-o:before {
  content: "\F118";
}

.fa-frown-o:before {
  content: "\F119";
}

.fa-meh-o:before {
  content: "\F11A";
}

.fa-gamepad:before {
  content: "\F11B";
}

.fa-keyboard-o:before {
  content: "\F11C";
}

.fa-flag-o:before {
  content: "\F11D";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-code:before {
  content: "\F121";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\F122";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\F123";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-crop:before {
  content: "\F125";
}

.fa-code-fork:before {
  content: "\F126";
}

.fa-unlink:before, .fa-chain-broken:before {
  content: "\F127";
}

.fa-question:before {
  content: "\F128";
}

.fa-info:before {
  content: "\F129";
}

.fa-exclamation:before {
  content: "\F12A";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-microphone-slash:before {
  content: "\F131";
}

.fa-shield:before {
  content: "\F132";
}

.fa-calendar-o:before {
  content: "\F133";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-chevron-circle-left:before {
  content: "\F137";
}

.fa-chevron-circle-right:before {
  content: "\F138";
}

.fa-chevron-circle-up:before {
  content: "\F139";
}

.fa-chevron-circle-down:before {
  content: "\F13A";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-anchor:before {
  content: "\F13D";
}

.fa-unlock-alt:before {
  content: "\F13E";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-ellipsis-v:before {
  content: "\F142";
}

.fa-rss-square:before {
  content: "\F143";
}

.fa-play-circle:before {
  content: "\F144";
}

.fa-ticket:before {
  content: "\F145";
}

.fa-minus-square:before {
  content: "\F146";
}

.fa-minus-square-o:before {
  content: "\F147";
}

.fa-level-up:before {
  content: "\F148";
}

.fa-level-down:before {
  content: "\F149";
}

.fa-check-square:before {
  content: "\F14A";
}

.fa-pencil-square:before {
  content: "\F14B";
}

.fa-external-link-square:before {
  content: "\F14C";
}

.fa-share-square:before {
  content: "\F14D";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\F150";
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\F151";
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\F152";
}

.fa-euro:before, .fa-eur:before {
  content: "\F153";
}

.fa-gbp:before {
  content: "\F154";
}

.fa-dollar:before, .fa-usd:before {
  content: "\F155";
}

.fa-rupee:before, .fa-inr:before {
  content: "\F156";
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\F157";
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\F158";
}

.fa-won:before, .fa-krw:before {
  content: "\F159";
}

.fa-bitcoin:before, .fa-btc:before {
  content: "\F15A";
}

.fa-file:before {
  content: "\F15B";
}

.fa-file-text:before {
  content: "\F15C";
}

.fa-sort-alpha-asc:before {
  content: "\F15D";
}

.fa-sort-alpha-desc:before {
  content: "\F15E";
}

.fa-sort-amount-asc:before {
  content: "\F160";
}

.fa-sort-amount-desc:before {
  content: "\F161";
}

.fa-sort-numeric-asc:before {
  content: "\F162";
}

.fa-sort-numeric-desc:before {
  content: "\F163";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-youtube-square:before {
  content: "\F166";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-xing:before {
  content: "\F168";
}

.fa-xing-square:before {
  content: "\F169";
}

.fa-youtube-play:before {
  content: "\F16A";
}

.fa-dropbox:before {
  content: "\F16B";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-adn:before {
  content: "\F170";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-bitbucket-square:before {
  content: "\F172";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-tumblr-square:before {
  content: "\F174";
}

.fa-long-arrow-down:before {
  content: "\F175";
}

.fa-long-arrow-up:before {
  content: "\F176";
}

.fa-long-arrow-left:before {
  content: "\F177";
}

.fa-long-arrow-right:before {
  content: "\F178";
}

.fa-apple:before {
  content: "\F179";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-android:before {
  content: "\F17B";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-trello:before {
  content: "\F181";
}

.fa-female:before {
  content: "\F182";
}

.fa-male:before {
  content: "\F183";
}

.fa-gittip:before, .fa-gratipay:before {
  content: "\F184";
}

.fa-sun-o:before {
  content: "\F185";
}

.fa-moon-o:before {
  content: "\F186";
}

.fa-archive:before {
  content: "\F187";
}

.fa-bug:before {
  content: "\F188";
}

.fa-vk:before {
  content: "\F189";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-arrow-circle-o-right:before {
  content: "\F18E";
}

.fa-arrow-circle-o-left:before {
  content: "\F190";
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\F191";
}

.fa-dot-circle-o:before {
  content: "\F192";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-vimeo-square:before {
  content: "\F194";
}

.fa-turkish-lira:before, .fa-try:before {
  content: "\F195";
}

.fa-plus-square-o:before {
  content: "\F196";
}

.fa-space-shuttle:before {
  content: "\F197";
}

.fa-slack:before {
  content: "\F198";
}

.fa-envelope-square:before {
  content: "\F199";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\F19C";
}

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\F19D";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-reddit-square:before {
  content: "\F1A2";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-pied-piper-pp:before {
  content: "\F1A7";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-joomla:before {
  content: "\F1AA";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-spoon:before {
  content: "\F1B1";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-behance-square:before {
  content: "\F1B5";
}

.fa-steam:before {
  content: "\F1B6";
}

.fa-steam-square:before {
  content: "\F1B7";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-automobile:before, .fa-car:before {
  content: "\F1B9";
}

.fa-cab:before, .fa-taxi:before {
  content: "\F1BA";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-file-pdf-o:before {
  content: "\F1C1";
}

.fa-file-word-o:before {
  content: "\F1C2";
}

.fa-file-excel-o:before {
  content: "\F1C3";
}

.fa-file-powerpoint-o:before {
  content: "\F1C4";
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\F1C5";
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\F1C6";
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\F1C7";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\F1C8";
}

.fa-file-code-o:before {
  content: "\F1C9";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\F1CD";
}

.fa-circle-o-notch:before {
  content: "\F1CE";
}

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
  content: "\F1D0";
}

.fa-ge:before, .fa-empire:before {
  content: "\F1D1";
}

.fa-git-square:before {
  content: "\F1D2";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  content: "\F1D4";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-wechat:before, .fa-weixin:before {
  content: "\F1D7";
}

.fa-send:before, .fa-paper-plane:before {
  content: "\F1D8";
}

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\F1D9";
}

.fa-history:before {
  content: "\F1DA";
}

.fa-circle-thin:before {
  content: "\F1DB";
}

.fa-header:before {
  content: "\F1DC";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-sliders:before {
  content: "\F1DE";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-share-alt-square:before {
  content: "\F1E1";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\F1E3";
}

.fa-tty:before {
  content: "\F1E4";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-yelp:before {
  content: "\F1E9";
}

.fa-newspaper-o:before {
  content: "\F1EA";
}

.fa-wifi:before {
  content: "\F1EB";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-cc-visa:before {
  content: "\F1F0";
}

.fa-cc-mastercard:before {
  content: "\F1F1";
}

.fa-cc-discover:before {
  content: "\F1F2";
}

.fa-cc-amex:before {
  content: "\F1F3";
}

.fa-cc-paypal:before {
  content: "\F1F4";
}

.fa-cc-stripe:before {
  content: "\F1F5";
}

.fa-bell-slash:before {
  content: "\F1F6";
}

.fa-bell-slash-o:before {
  content: "\F1F7";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-at:before {
  content: "\F1FA";
}

.fa-eyedropper:before {
  content: "\F1FB";
}

.fa-paint-brush:before {
  content: "\F1FC";
}

.fa-birthday-cake:before {
  content: "\F1FD";
}

.fa-area-chart:before {
  content: "\F1FE";
}

.fa-pie-chart:before {
  content: "\F200";
}

.fa-line-chart:before {
  content: "\F201";
}

.fa-lastfm:before {
  content: "\F202";
}

.fa-lastfm-square:before {
  content: "\F203";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-bus:before {
  content: "\F207";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-cc:before {
  content: "\F20A";
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\F20B";
}

.fa-meanpath:before {
  content: "\F20C";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-leanpub:before {
  content: "\F212";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-cart-arrow-down:before {
  content: "\F218";
}

.fa-diamond:before {
  content: "\F219";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-heartbeat:before {
  content: "\F21E";
}

.fa-venus:before {
  content: "\F221";
}

.fa-mars:before {
  content: "\F222";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-intersex:before, .fa-transgender:before {
  content: "\F224";
}

.fa-transgender-alt:before {
  content: "\F225";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-mars-stroke-h:before {
  content: "\F22B";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-genderless:before {
  content: "\F22D";
}

.fa-facebook-official:before {
  content: "\F230";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-server:before {
  content: "\F233";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-user-times:before {
  content: "\F235";
}

.fa-hotel:before, .fa-bed:before {
  content: "\F236";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-train:before {
  content: "\F238";
}

.fa-subway:before {
  content: "\F239";
}

.fa-medium:before {
  content: "\F23A";
}

.fa-yc:before, .fa-y-combinator:before {
  content: "\F23B";
}

.fa-optin-monster:before {
  content: "\F23C";
}

.fa-opencart:before {
  content: "\F23D";
}

.fa-expeditedssl:before {
  content: "\F23E";
}

.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
  content: "\F240";
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "\F241";
}

.fa-battery-2:before, .fa-battery-half:before {
  content: "\F242";
}

.fa-battery-1:before, .fa-battery-quarter:before {
  content: "\F243";
}

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\F244";
}

.fa-mouse-pointer:before {
  content: "\F245";
}

.fa-i-cursor:before {
  content: "\F246";
}

.fa-object-group:before {
  content: "\F247";
}

.fa-object-ungroup:before {
  content: "\F248";
}

.fa-sticky-note:before {
  content: "\F249";
}

.fa-sticky-note-o:before {
  content: "\F24A";
}

.fa-cc-jcb:before {
  content: "\F24B";
}

.fa-cc-diners-club:before {
  content: "\F24C";
}

.fa-clone:before {
  content: "\F24D";
}

.fa-balance-scale:before {
  content: "\F24E";
}

.fa-hourglass-o:before {
  content: "\F250";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\F251";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\F252";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\F253";
}

.fa-hourglass:before {
  content: "\F254";
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "\F255";
}

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
  content: "\F256";
}

.fa-hand-scissors-o:before {
  content: "\F257";
}

.fa-hand-lizard-o:before {
  content: "\F258";
}

.fa-hand-spock-o:before {
  content: "\F259";
}

.fa-hand-pointer-o:before {
  content: "\F25A";
}

.fa-hand-peace-o:before {
  content: "\F25B";
}

.fa-trademark:before {
  content: "\F25C";
}

.fa-registered:before {
  content: "\F25D";
}

.fa-creative-commons:before {
  content: "\F25E";
}

.fa-gg:before {
  content: "\F260";
}

.fa-gg-circle:before {
  content: "\F261";
}

.fa-tripadvisor:before {
  content: "\F262";
}

.fa-odnoklassniki:before {
  content: "\F263";
}

.fa-odnoklassniki-square:before {
  content: "\F264";
}

.fa-get-pocket:before {
  content: "\F265";
}

.fa-wikipedia-w:before {
  content: "\F266";
}

.fa-safari:before {
  content: "\F267";
}

.fa-chrome:before {
  content: "\F268";
}

.fa-firefox:before {
  content: "\F269";
}

.fa-opera:before {
  content: "\F26A";
}

.fa-internet-explorer:before {
  content: "\F26B";
}

.fa-tv:before, .fa-television:before {
  content: "\F26C";
}

.fa-contao:before {
  content: "\F26D";
}

.fa-500px:before {
  content: "\F26E";
}

.fa-amazon:before {
  content: "\F270";
}

.fa-calendar-plus-o:before {
  content: "\F271";
}

.fa-calendar-minus-o:before {
  content: "\F272";
}

.fa-calendar-times-o:before {
  content: "\F273";
}

.fa-calendar-check-o:before {
  content: "\F274";
}

.fa-industry:before {
  content: "\F275";
}

.fa-map-pin:before {
  content: "\F276";
}

.fa-map-signs:before {
  content: "\F277";
}

.fa-map-o:before {
  content: "\F278";
}

.fa-map:before {
  content: "\F279";
}

.fa-commenting:before {
  content: "\F27A";
}

.fa-commenting-o:before {
  content: "\F27B";
}

.fa-houzz:before {
  content: "\F27C";
}

.fa-vimeo:before {
  content: "\F27D";
}

.fa-black-tie:before {
  content: "\F27E";
}

.fa-fonticons:before {
  content: "\F280";
}

.fa-reddit-alien:before {
  content: "\F281";
}

.fa-edge:before {
  content: "\F282";
}

.fa-credit-card-alt:before {
  content: "\F283";
}

.fa-codiepie:before {
  content: "\F284";
}

.fa-modx:before {
  content: "\F285";
}

.fa-fort-awesome:before {
  content: "\F286";
}

.fa-usb:before {
  content: "\F287";
}

.fa-product-hunt:before {
  content: "\F288";
}

.fa-mixcloud:before {
  content: "\F289";
}

.fa-scribd:before {
  content: "\F28A";
}

.fa-pause-circle:before {
  content: "\F28B";
}

.fa-pause-circle-o:before {
  content: "\F28C";
}

.fa-stop-circle:before {
  content: "\F28D";
}

.fa-stop-circle-o:before {
  content: "\F28E";
}

.fa-shopping-bag:before {
  content: "\F290";
}

.fa-shopping-basket:before {
  content: "\F291";
}

.fa-hashtag:before {
  content: "\F292";
}

.fa-bluetooth:before {
  content: "\F293";
}

.fa-bluetooth-b:before {
  content: "\F294";
}

.fa-percent:before {
  content: "\F295";
}

.fa-gitlab:before {
  content: "\F296";
}

.fa-wpbeginner:before {
  content: "\F297";
}

.fa-wpforms:before {
  content: "\F298";
}

.fa-envira:before {
  content: "\F299";
}

.fa-universal-access:before {
  content: "\F29A";
}

.fa-wheelchair-alt:before {
  content: "\F29B";
}

.fa-question-circle-o:before {
  content: "\F29C";
}

.fa-blind:before {
  content: "\F29D";
}

.fa-audio-description:before {
  content: "\F29E";
}

.fa-volume-control-phone:before {
  content: "\F2A0";
}

.fa-braille:before {
  content: "\F2A1";
}

.fa-assistive-listening-systems:before {
  content: "\F2A2";
}

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "\F2A4";
}

.fa-glide:before {
  content: "\F2A5";
}

.fa-glide-g:before {
  content: "\F2A6";
}

.fa-signing:before, .fa-sign-language:before {
  content: "\F2A7";
}

.fa-low-vision:before {
  content: "\F2A8";
}

.fa-viadeo:before {
  content: "\F2A9";
}

.fa-viadeo-square:before {
  content: "\F2AA";
}

.fa-snapchat:before {
  content: "\F2AB";
}

.fa-snapchat-ghost:before {
  content: "\F2AC";
}

.fa-snapchat-square:before {
  content: "\F2AD";
}

.fa-pied-piper:before {
  content: "\F2AE";
}

.fa-first-order:before {
  content: "\F2B0";
}

.fa-yoast:before {
  content: "\F2B1";
}

.fa-themeisle:before {
  content: "\F2B2";
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "\F2B3";
}

.fa-fa:before, .fa-font-awesome:before {
  content: "\F2B4";
}

.fa-handshake-o:before {
  content: "\F2B5";
}

.fa-envelope-open:before {
  content: "\F2B6";
}

.fa-envelope-open-o:before {
  content: "\F2B7";
}

.fa-linode:before {
  content: "\F2B8";
}

.fa-address-book:before {
  content: "\F2B9";
}

.fa-address-book-o:before {
  content: "\F2BA";
}

.fa-vcard:before, .fa-address-card:before {
  content: "\F2BB";
}

.fa-vcard-o:before, .fa-address-card-o:before {
  content: "\F2BC";
}

.fa-user-circle:before {
  content: "\F2BD";
}

.fa-user-circle-o:before {
  content: "\F2BE";
}

.fa-user-o:before {
  content: "\F2C0";
}

.fa-id-badge:before {
  content: "\F2C1";
}

.fa-drivers-license:before, .fa-id-card:before {
  content: "\F2C2";
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
  content: "\F2C3";
}

.fa-quora:before {
  content: "\F2C4";
}

.fa-free-code-camp:before {
  content: "\F2C5";
}

.fa-telegram:before {
  content: "\F2C6";
}

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  content: "\F2C7";
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\F2C8";
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\F2C9";
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\F2CA";
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\F2CB";
}

.fa-shower:before {
  content: "\F2CC";
}

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  content: "\F2CD";
}

.fa-podcast:before {
  content: "\F2CE";
}

.fa-window-maximize:before {
  content: "\F2D0";
}

.fa-window-minimize:before {
  content: "\F2D1";
}

.fa-window-restore:before {
  content: "\F2D2";
}

.fa-times-rectangle:before, .fa-window-close:before {
  content: "\F2D3";
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
  content: "\F2D4";
}

.fa-bandcamp:before {
  content: "\F2D5";
}

.fa-grav:before {
  content: "\F2D6";
}

.fa-etsy:before {
  content: "\F2D7";
}

.fa-imdb:before {
  content: "\F2D8";
}

.fa-ravelry:before {
  content: "\F2D9";
}

.fa-eercast:before {
  content: "\F2DA";
}

.fa-microchip:before {
  content: "\F2DB";
}

.fa-snowflake-o:before {
  content: "\F2DC";
}

.fa-superpowers:before {
  content: "\F2DD";
}

.fa-wpexplorer:before {
  content: "\F2DE";
}

.fa-meetup:before {
  content: "\F2E0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*======================================
  Selectric v1.13.0
======================================*/
.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric {
  border: 1px solid #ededed;
  border-radius: 0;
  background-color: #fdfdfd;
  position: relative;
  overflow: hidden;
}

.selectric-focus .selectric {
  border-color: #bababa;
}

.selectric-hover .selectric {
  border-color: #d4d4d4;
}

.selectric-label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 1em;
  font-size: 12px;
  line-height: 38px;
  color: #2f2f2f;
  height: 38px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: transparent;
  color: #b0b0b0;
  text-align: center;
  border: none;
  padding: 0;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric-button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
}

.selectric-hover .selectric-button {
  color: #979797;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-color: #d4d4d4;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  background: #fdfdfd;
  border: 1px solid #d4d4d4;
  box-shadow: 0 0 10px -6px;
  font-size: 12px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.selectric-items li {
  display: block;
  padding: 10px;
  color: #2f2f2f;
  cursor: pointer;
}

.selectric-items li.selected {
  background: #f0f0f0;
  color: #222222;
}

.selectric-items li.highlighted {
  background: #e4e4e4;
  color: #222222;
}

.selectric-items li:hover {
  background: #d7d7d7;
  color: #222222;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #2f2f2f !important;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #161616;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

.fancybox-enabled {
  overflow: hidden;
}

.fancybox-enabled body {
  overflow: visible;
  height: 100%;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox-container ~ .fancybox-container {
  z-index: 99992;
}

.fancybox-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f0f11;
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox-container--ready .fancybox-bg {
  opacity: 0.87;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 99994;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  direction: ltr;
}

.fancybox-show-controls .fancybox-controls {
  opacity: 1;
}

.fancybox-infobar {
  display: none;
}

.fancybox-show-infobar .fancybox-infobar {
  display: inline-block;
  pointer-events: all;
}

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  pointer-events: all;
}

.fancybox-show-buttons .fancybox-buttons {
  display: block;
}

.fancybox-slider-wrap {
  overflow: hidden;
  direction: ltr;
}

.fancybox-slider, .fancybox-slider-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
}

.fancybox-slide:before {
  content: "";
  height: 100%;
  width: 0;
}

.fancybox-slide:before, .fancybox-slide > * {
  display: inline-block;
  vertical-align: middle;
}

.fancybox-slide > * {
  position: relative;
  padding: 24px;
  margin: 44px 0;
  border-width: 0;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}

.fancybox-slide--image {
  overflow: hidden;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-content {
  display: inline-block;
  position: relative;
  margin: 44px auto;
  padding: 0;
  border: 0;
  width: 80%;
  height: calc(100% - 88px);
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  white-space: normal;
  outline: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.fancybox-slide--video .fancybox-content, .fancybox-slide--video .fancybox-iframe {
  background: transparent;
}

.fancybox-placeholder {
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
      transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox-image, .fancybox-placeholder, .fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.fancybox-image, .fancybox-spaceball {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  background: transparent;
  background-size: 100% 100%;
}

.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-controls--canzoomIn .fancybox-placeholder {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-controls--canGrab .fancybox-placeholder {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-controls--isGrabbing .fancybox-placeholder {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-error {
  position: absolute;
  margin: 0;
  padding: 40px;
  top: 50%;
  left: 50%;
  width: 380px;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  background: #fff;
  cursor: default;
}

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px Helvetica Neue, Helvetica, Arial, sans-serif;
}

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}

.fancybox-close-small:after {
  content: "\D7";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, Helvetica Neue, Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  box-sizing: border-box;
  z-index: 2;
}

.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}

.fancybox-slide--video .fancybox-close-small {
  top: -36px;
  right: -36px;
  background: transparent;
}

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}

.fancybox-caption-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0;
  z-index: 99998;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(20%, rgba(0, 0, 0, 0.1)), color-stop(40%, rgba(0, 0, 0, 0.2)), color-stop(80%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8));
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
}

.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}

.fancybox-caption a, .fancybox-caption button {
  pointer-events: all;
}

.fancybox-caption a {
  color: #fff;
  text-decoration: underline;
}

.fancybox-button {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: #fff;
  box-sizing: border-box;
  vertical-align: top;
  outline: none;
}

.fancybox-button--disabled {
  cursor: default;
  pointer-events: none;
}

.fancybox-button, .fancybox-infobar__body {
  background: rgba(30, 30, 30, 0.6);
}

.fancybox-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-button:after, .fancybox-button:before {
  content: "";
  pointer-events: none;
  position: absolute;
  border-color: #fff;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block;
}

.fancybox-button--disabled:after, .fancybox-button--disabled:before {
  opacity: 0.5;
}

.fancybox-button--left:after {
  left: 20px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
      transform: rotate(-135deg);
}

.fancybox-button--left:after, .fancybox-button--right:after {
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.fancybox-button--right:after {
  right: 20px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

.fancybox-button--left {
  border-bottom-left-radius: 5px;
}

.fancybox-button--right {
  border-bottom-right-radius: 5px;
}

.fancybox-button--close {
  float: right;
}

.fancybox-button--close:after, .fancybox-button--close:before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
}

.fancybox-button--close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

.fancybox-button--close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.fancybox-loading {
  border: 6px solid rgba(99, 99, 99, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: a 0.8s infinite linear;
  animation: a 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}

@-webkit-keyframes a {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes a {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@media (max-width: 800px) {
  .fancybox-controls {
    text-align: left;
  }

  .fancybox-button--left, .fancybox-button--right, .fancybox-buttons button:not(.fancybox-button--close) {
    display: none !important;
  }

  .fancybox-caption {
    padding: 20px 0;
    margin: 0;
  }
}
.fancybox-button--fullscreen:before {
  width: 15px;
  height: 11px;
  left: 15px;
  top: 16px;
  border: 2px solid;
  background: none;
}

.fancybox-button--play:before {
  top: 16px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
  background: transparent;
}

.fancybox-button--pause:before {
  top: 16px;
  left: 18px;
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px;
  background: transparent;
}

.fancybox-button--thumbs span {
  font-size: 23px;
}

.fancybox-button--thumbs:before {
  top: 20px;
  left: 21px;
  width: 3px;
  height: 3px;
  box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, inset 0 0 0 32px, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
}

.fancybox-container--thumbs .fancybox-caption-wrap, .fancybox-container--thumbs .fancybox-controls, .fancybox-container--thumbs .fancybox-slider-wrap {
  right: 220px;
}

.fancybox-thumbs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 220px;
  margin: 0;
  padding: 5px 5px 0 0;
  background: #fff;
  z-index: 99993;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
}

.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  max-width: 50%;
  padding: 0;
  margin: 0;
  width: 105px;
  height: 75px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 5px solid #fff;
  border-top-width: 0;
  border-right-width: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
}

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-thumbs > ul > li:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 800px) {
  .fancybox-thumbs {
    display: none !important;
  }

  .fancybox-container--thumbs .fancybox-caption-wrap, .fancybox-container--thumbs .fancybox-controls, .fancybox-container--thumbs .fancybox-slider-wrap {
    right: 0;
  }
}
/* -------------------------------- 

Primary style

-------------------------------- */
img {
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
}

.comparison_slider .btn {
  position: relative;
  z-index: 4;
}

.cd-image-bg {
  background-size: cover !important;
  -webkit-background-size: cover !important;
  background-color: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.comparison_slider .details {
  position: absolute;
  top: 50%;
  width: 40%;
  color: #fff;
  text-align: center;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 5;
}

.comparison_slider .details .detalwrap-block {
  width: 70%;
  margin: 0 auto;
  max-width: 390px;
}

.comparison_slider .details.rgt {
  right: 0;
}

.comparison_slider .details.lft {
  left: 0;
}

.cd-image-container {
  position: relative;
  width: 70%;
  /* max-width: 500px;*/
  max-width: 700px;
  margin: 0em auto;
  z-index: 9;
  position: absolute;
  left: 50%;
  top: 46%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}

.comparison_slider .btn-algnd {
  position: absolute;
  z-index: 99999;
  left: 50%;
  bottom: 50px;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

.cd-image-container img {
  display: block;
}

.cd-image-label {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ffffff;
  padding: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  -webkit-transition: opacity 0.3s 0.7s, -webkit-transform 0.3s 0.7s;
  transition: opacity 0.3s 0.7s, -webkit-transform 0.3s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0.3s 0.7s, -webkit-transform 0.3s 0.7s;
}

.cd-image-label.is-hidden {
  visibility: hidden;
}

.is-visible .cd-image-label {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.cd-resize-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cd-resize-img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}

.cd-resize-img .cd-image-label {
  right: auto;
  left: 0;
}

.is-visible .cd-resize-img {
  width: 50%;
  /* bounce in animation of the modified image */
  -webkit-animation: cd-bounce-in 0.7s;
  animation: cd-bounce-in 0.7s;
}

@-webkit-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
@keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
.cd-handle {
  position: absolute;
  height: 76px;
  width: 76px;
  /* center the element */
  left: 50%;
  top: 50%;
  margin-left: -38px;
  margin-top: -38px;
  border-radius: 50%;
  /*background: #dc717d url("/wp-content/themes/kilchoman/img/cd-arrows.svg") no-repeat center center;*/
  background: #f9f2df url("/wp-content/themes/kilchoman/img/slide_control.svg") no-repeat center center;
  cursor: move;
  /*box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);*/
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  -ms-transform: translate3d(0, 0, 0) scale(0);
  transform: translate3d(0, 0, 0) scale(0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.cd-handle:before {
  height: 97px;
  width: 97px;
  content: "";
  display: inline-block;
  border: 2px dotted #ffffff;
  border-radius: 50%;
  margin-left: -10px;
  margin-top: -10px;
}

.cd-handle:after {
  content: "";
  display: inline-block;
  background: url(/wp-content/themes/kilchoman/img/slide_bar.png) 0 0 no-repeat;
  width: 4px;
  height: 580px;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.is-visible .cd-handle {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s;
  -webkit-transition: opacity 0s 0.7s, -webkit-transform 0.3s 0.7s;
  transition: opacity 0s 0.7s, -webkit-transform 0.3s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0s 0.7s, -webkit-transform 0.3s 0.7s;
}

span.cd-handle {
  cursor: -webkit-grab;
  cursor: grab;
}

.cd-handle.draggable {
  /* change background color when element is active */
  /*background-color: #445b7c;*/
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
}

.shade_blue, .shade_brown {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transition: linear 0.4s;
  -webkit-transition: linear 0.4s;
  -moz-transition: linear 0.4s;
  /* position: absolute;
   top: 0;
   bottom: 0;
   right: 0;
   left: 0;*/
}

.shade_blue {
  /* background:url("/wp-content/themes/kilchoman/img/shade_blue.png") repeat-y top left;*/
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#233566+17,000000+100&0+17,1+17,0+100,0+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, color-stop(17%, #233566), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, #233566 17%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#233566", endColorstr="#00000000",GradientType=1 );
  /* IE6-9 */
}

.shade_brown {
  /*background:url("/wp-content/themes/kilchoman/img/shade_brown.png") repeat-y top right;*/
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,3e3642+83&0+0,1+83 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(83%, #3e3642));
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #3e3642 83%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#3e3642",GradientType=1 );
  /* IE6-9 */
}

.details.s1labe1 .detalwrap-block {
  left: 17%;
  right: auto;
}

/*!
 * Datepicker for Bootstrap v1.6.4 (https://github.com/eternicode/bootstrap-datepicker)
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */
.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
}

.datepicker-inline {
  width: 220px;
}

.datepicker.datepicker-rtl {
  direction: rtl;
}

.datepicker.datepicker-rtl table tr td span {
  float: right;
}

.datepicker-dropdown {
  top: 0;
  left: 0;
}

.datepicker-dropdown:before {
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}

.datepicker-dropdown:after {
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}

.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}

.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}

.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}

.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}

.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}

.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}

.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}

.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}

.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker td, .datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: none;
}

.table-striped .datepicker table tr td, .table-striped .datepicker table tr th {
  background-color: transparent;
}

.datepicker table tr td.day.focused, .datepicker table tr td.day:hover {
  background: #eee;
  cursor: pointer;
}

.datepicker table tr td.new, .datepicker table tr td.old {
  color: #999;
}

.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
  background: 0 0;
  color: #999;
  cursor: default;
}

.datepicker table tr td.highlighted {
  background: #d9edf7;
  border-radius: 0;
}

.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover {
  background-color: #fde19a;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fdd49a), to(#fdf59a));
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fdd49a", endColorstr="#fdf59a", GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}

.datepicker table tr td.today.active, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled.disabled, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today.disabled:hover.active, .datepicker table tr td.today.disabled:hover.disabled, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today.disabled:hover:hover, .datepicker table tr td.today.disabled:hover[disabled], .datepicker table tr td.today.disabled[disabled], .datepicker table tr td.today:active, .datepicker table tr td.today:hover, .datepicker table tr td.today:hover.active, .datepicker table tr td.today:hover.disabled, .datepicker table tr td.today:hover:active, .datepicker table tr td.today:hover:hover, .datepicker table tr td.today:hover[disabled], .datepicker table tr td.today[disabled] {
  background-color: #fdf59a;
}

.datepicker table tr td.today.active, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover.active, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today:active, .datepicker table tr td.today:hover.active, .datepicker table tr td.today:hover:active {
  background-color: #fbf069\9 ;
}

.datepicker table tr td.today:hover:hover {
  color: #000;
}

.datepicker table tr td.today.active:hover {
  color: #fff;
}

.datepicker table tr td.range, .datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:hover, .datepicker table tr td.range:hover {
  background: #eee;
  border-radius: 0;
}

.datepicker table tr td.range.today, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today:hover {
  background-color: #f3d17a;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f3c17a), to(#f3e97a));
  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3c17a", endColorstr="#f3e97a", GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border-radius: 0;
}

.datepicker table tr td.range.today.active, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled.active, .datepicker table tr td.range.today.disabled.disabled, .datepicker table tr td.range.today.disabled:active, .datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today.disabled:hover.active, .datepicker table tr td.range.today.disabled:hover.disabled, .datepicker table tr td.range.today.disabled:hover:active, .datepicker table tr td.range.today.disabled:hover:hover, .datepicker table tr td.range.today.disabled:hover[disabled], .datepicker table tr td.range.today.disabled[disabled], .datepicker table tr td.range.today:active, .datepicker table tr td.range.today:hover, .datepicker table tr td.range.today:hover.active, .datepicker table tr td.range.today:hover.disabled, .datepicker table tr td.range.today:hover:active, .datepicker table tr td.range.today:hover:hover, .datepicker table tr td.range.today:hover[disabled], .datepicker table tr td.range.today[disabled] {
  background-color: #f3e97a;
}

.datepicker table tr td.range.today.active, .datepicker table tr td.range.today.disabled.active, .datepicker table tr td.range.today.disabled:active, .datepicker table tr td.range.today.disabled:hover.active, .datepicker table tr td.range.today.disabled:hover:active, .datepicker table tr td.range.today:active, .datepicker table tr td.range.today:hover.active, .datepicker table tr td.range.today:hover:active {
  background-color: #efe24b\9 ;
}

.datepicker table tr td.selected, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected:hover {
  background-color: #9e9e9e;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), to(grey));
  background-image: linear-gradient(to bottom, #b3b3b3, grey);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b3b3b3", endColorstr="#808080", GradientType=0);
  border-color: grey grey #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.selected.active, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled.active, .datepicker table tr td.selected.disabled.disabled, .datepicker table tr td.selected.disabled:active, .datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected.disabled:hover.active, .datepicker table tr td.selected.disabled:hover.disabled, .datepicker table tr td.selected.disabled:hover:active, .datepicker table tr td.selected.disabled:hover:hover, .datepicker table tr td.selected.disabled:hover[disabled], .datepicker table tr td.selected.disabled[disabled], .datepicker table tr td.selected:active, .datepicker table tr td.selected:hover, .datepicker table tr td.selected:hover.active, .datepicker table tr td.selected:hover.disabled, .datepicker table tr td.selected:hover:active, .datepicker table tr td.selected:hover:hover, .datepicker table tr td.selected:hover[disabled], .datepicker table tr td.selected[disabled] {
  background-color: grey;
}

.datepicker table tr td.selected.active, .datepicker table tr td.selected.disabled.active, .datepicker table tr td.selected.disabled:active, .datepicker table tr td.selected.disabled:hover.active, .datepicker table tr td.selected.disabled:hover:active, .datepicker table tr td.selected:active, .datepicker table tr td.selected:hover.active, .datepicker table tr td.selected:hover:active {
  background-color: #666 \9 ;
}

.datepicker table tr td.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover {
  background-color: #006dcc;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#08c), to(#04c));
  background-image: linear-gradient(to bottom, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#08c", endColorstr="#0044cc", GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled] {
  background-color: #04c;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active:active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover:active {
  background-color: #039 \9 ;
}

.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}

.datepicker table tr td span.focused, .datepicker table tr td span:hover {
  background: #eee;
}

.datepicker table tr td span.disabled, .datepicker table tr td span.disabled:hover {
  background: 0 0;
  color: #999;
  cursor: default;
}

.datepicker table tr td span.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active:hover {
  background-color: #006dcc;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#08c), to(#04c));
  background-image: linear-gradient(to bottom, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#08c", endColorstr="#0044cc", GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled.disabled, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover.disabled, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active.disabled:hover[disabled], .datepicker table tr td span.active.disabled[disabled], .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover.disabled, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active:hover[disabled], .datepicker table tr td span.active[disabled] {
  background-color: #04c;
}

.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover:active {
  background-color: #039 \9 ;
}

.datepicker table tr td span.new, .datepicker table tr td span.old {
  color: #999;
}

.datepicker .datepicker-switch {
  width: 145px;
}

.datepicker .datepicker-switch, .datepicker .next, .datepicker .prev, .datepicker tfoot tr th {
  cursor: pointer;
}

.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
  background: #eee;
}

.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}

.input-append.date .add-on, .input-prepend.date .add-on {
  cursor: pointer;
}

.input-append.date .add-on i, .input-prepend.date .add-on i {
  margin-top: 3px;
}

.input-daterange input {
  text-align: center;
}

.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}

.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}

.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}

/*# sourceMappingURL=bootstrap-datepicker.min.css.map */
/**
 * Woocommerce Lighbox by WpBean
 */
/* ==========================================================================
   Popup layout
   ========================================================================== */
.woocommerce-page div.product.wpb_wl_quick_view_content div.images,
.wpb_wl_quick_view_content div.images {
  float: inherit;
  width: 100%;
}

.fancybox-container {
  z-index: 999939;
}

.wpb_wl_quick_view_content *, .wpb_wl_quick_view_content *:after, .wpb_wl_quick_view_content *:before {
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  /* Chrome and Safari */
  /* Firefox */
  /* Internet Explorer */
  /* opera */
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.wpb_wl_clearfix:before,
.wpb_wl_clearfix:after {
  display: table;
  content: "";
}

.wpb_wl_clearfix:after {
  clear: both;
}

.wpb_wl_quick_view_content {
  background: #fff;
  padding: 40px 40px 30px;
  max-width: 800px;
  text-align: left;
  margin: 30px auto;
  position: relative;
  font-weight: 400;
}

.wpb_wl_images {
  width: 65%;
  float: left;
  display: inline;
  margin: -40px 0 -30px -40px;
}

.wpb_wl_images img {
  border-radius: 0 !important;
  box-shadow: inherit !important;
  display: block;
}

.wpb_wl_summary {
  float: right;
  width: 35%;
  display: inline;
}

.wpb_wl_product_title {
  font-size: 27px;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.2;
}

.wpb_wl_product_price {
  margin: 0 0 25px;
  display: block !important;
}

.wpb_wl_product_price .amount {
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
}

.wpb_wl_summary p {
  font-size: 14px;
  color: #666;
  font-weight: normal;
  margin: 0 0 25px;
  line-height: 1.6;
}

.wpb_wl_summary form.cart {
  overflow: hidden;
  margin: 35px 0;
}

.wpb_wl_summary .quantity .minus,
.wpb_wl_summary .quantity .plus {
  display: none !important;
}

.wpb_wl_summary .quantity .qty {
  height: 35px !important;
  max-width: 40px !important;
  box-shadow: none !important;
  background: #f7f7f7 !important;
  border-radius: 3px !important;
  color: #888 !important;
  border: 1px solid #bbb !important;
  margin: 0 10px 0 0 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  font-family: inherit !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -moz-background-clip: padding !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  font-weight: normal !important;
}

.wpb_wl_summary .quantity {
  float: left;
  display: inline;
  width: auto;
  min-width: inherit !important;
  border: none;
  padding: 0;
  margin: 0;
}

.wpb_wl_summary .button {
  border: none !important;
  box-shadow: none !important;
  height: 35px !important;
  padding: 0 15px !important;
  font-weight: 400 !important;
  text-shadow: none !important;
  background: #47C285 !important;
  color: #ffffff !important;
  text-shadow: none !important;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 !important;
  border-radius: 3px !important;
  float: left !important;
  display: inline !important;
  width: auto !important;
  font-size: 14px !important;
  text-decoration: none !important;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.wpb_wl_summary .button:hover {
  opacity: 0.8 !important;
}

.wpb_wl_summary .button:focus {
  outline: 0;
}

.wpb_wl_preview_area {
  display: block;
  position: absolute;
  top: 35%;
  text-align: center;
  width: 100%;
  z-index: 999;
}

.wpb_wl_preview_area .wpb_wl_preview {
  /* background: #47C285; */
  background: none !important;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  color: #fff;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 3px !important;
  font-weight: lighter;
  visibility: hidden;
  opacity: 0;
  display: inline !important;
  cursor: pointer;
}

.wpb_wl_preview_area .wpb_wl_preview:focus,
.wpb_wl_preview_area .wpb_wl_preview:hover,
.wpb_wl_preview_area .wpb_wl_preview:active {
  outline: 0;
  color: #fff;
  text-decoration: none;
}

li.product:hover .wpb_wl_preview {
  visibility: visible;
  opacity: 1;
}

/* ==========================================================================
   Responsive css
   ========================================================================== */
@media (max-width: 768px) {
  .wpb_wl_quick_view_content {
    padding: 0;
    max-width: 80%;
  }

  .wpb_wl_images {
    display: block;
    float: inherit;
    margin: 0;
    width: auto;
  }

  .wpb_wl_images img {
    width: 100%;
  }

  .wpb_wl_summary {
    display: block;
    float: inherit;
    padding: 30px 15px 0;
    width: auto;
  }
}
/* 
====== Zoom effect ======
*/
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
      transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
      transform: scale(0.8);
  opacity: 0;
  filter: alpha(opacity=0);
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* 

====== Newspaper effect ======

*/
.mfp-newspaper .mfp-with-anim {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0) rotate(500deg);
  -ms-transform: scale(0) rotate(500deg);
      transform: scale(0) rotate(500deg);
}

.mfp-newspaper.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.mfp-newspaper.mfp-ready .mfp-with-anim {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1) rotate(0deg);
  -ms-transform: scale(1) rotate(0deg);
      transform: scale(1) rotate(0deg);
}

.mfp-newspaper.mfp-ready.mfp-bg {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-newspaper.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0) rotate(500deg);
  -ms-transform: scale(0) rotate(500deg);
      transform: scale(0) rotate(500deg);
  opacity: 0;
  filter: alpha(opacity=0);
}

.mfp-newspaper.mfp-removing.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* 

====== Move-horizontal effect ======

*/
.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
      transform: translateX(-50px);
}

.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
      transform: translateX(0);
}

.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
      transform: translateX(50px);
  opacity: 0;
  filter: alpha(opacity=0);
}

.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* 

====== Move-from-top effect ======

*/
.mfp-move-from-top .mfp-content {
  vertical-align: top;
}

.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
      transform: translateY(-100px);
}

.mfp-move-from-top.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-move-from-top.mfp-removing .mfp-with-anim {
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
      transform: translateY(-50px);
  opacity: 0;
  filter: alpha(opacity=0);
}

.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* 

====== 3d unfold ======

*/
.mfp-3d-unfold .mfp-content {
  -webkit-perspective: 2000px;
  perspective: 2000px;
}

.mfp-3d-unfold .mfp-with-anim {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(-60deg);
  transform: rotateY(-60deg);
}

.mfp-3d-unfold.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.mfp-3d-unfold.mfp-ready .mfp-with-anim {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.mfp-3d-unfold.mfp-ready.mfp-bg {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-3d-unfold.mfp-removing .mfp-with-anim {
  -webkit-transform: rotateY(60deg);
  transform: rotateY(60deg);
  opacity: 0;
  filter: alpha(opacity=0);
}

.mfp-3d-unfold.mfp-removing.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* 

====== Zoom-out effect ======

*/
.mfp-zoom-out .mfp-with-anim {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
      transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
      transform: scale(1.3);
  opacity: 0;
  filter: alpha(opacity=0);
}

.mfp-zoom-out.mfp-removing.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
}

/**
 * FlexSlider FIX 
 */
.wpb_wl_images .flexslider .slides > li {
  display: block;
}

.wpb_wl_images .flexslider {
  margin-bottom: 0 !important;
}

.equal_divide_blocks .inside_contents input[type=number] {
  display: block !important;
  width: 100%;
  margin-bottom: 15px;
}

.single_variation_wrap .variations_button .qty, .inside_contents .form-group .qty {
  line-height: 52px;
  margin-left: 0;
  padding-left: 26px;
  font: 15px "StrayhornMT-Bold", Arial, sans-serif;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 0;
  background-color: transparent;
  border: 1px solid #ba9662;
}

.equal_divide_blocks .single_variation_wrap .woocommerce-variation-price {
  display: none;
}

.equal_divide_blocks .wcpa_form_outer {
  margin: 0;
  /* display: block; */
}

.equal_divide_blocks .inside_contents .price {
  font-size: 35px;
  color: #426eaf;
  font-weight: 700;
  /*float: left;*/
}

@media (max-width: 767px) {
  .alignleft {
    margin: 0 0px 20px 0;
    float: none;
  }

  .alignright {
    margin: 0 0 20px 0px;
    float: none;
  }

  .plain-block {
    padding: 40px 20px;
  }

  .short_block {
    padding: 50px;
  }

  .base_detailblock p {
    width: 90%;
  }

  .minheight_imgspot .detail_block {
    max-width: 90%;
  }

  .minheight_imgspot, .img_equal_elem {
    height: 100%;
  }

  .img_list-wrap {
    margin-left: 0;
    margin-top: 20px;
  }

  .img_list-wrap .img_list_item {
    width: 48%;
    margin-left: 1%;
  }

  .plain_detailwrap {
    margin-top: -100px;
  }

  .grouped_lists {
    padding-top: 50px;
  }

  .grouped_lists li {
    width: 48%;
    margin-bottom: 15px;
  }

  .item-inner-content .details {
    padding: 0 20px;
  }

  .wrap-carousel .owl-dots {
    right: 20px;
  }

  .logo {
    width: 250px;
  }

  .video-lists_new {
    width: 90%;
    margin: 0px auto 0px 20px;
  }

  .video-lists_new .wrapvideo {
    width: 100%;
    margin-bottom: 30px;
  }

  .video-lists_new .wrapvideo h3 {
    margin-top: 20px;
  }

  .block-6 .menu-social_links-container {
    padding-bottom: 20px !important;
  }

  .page-template-contact .divided_spotconent {
    height: 115%;
  }

  .page-template-contact .img_equal_elem {
    height: 100%;
  }

  .page-template-contact .img_equal_elem.eqal_2:before {
    padding-bottom: 100%;
  }

  .page-template-contact .menu-social_links-container {
    padding-bottom: 40px;
  }

  .page-template-contact .form_inner.map_block {
    float: left;
    width: 100%;
    margin-bottom: 50px;
  }

  .page-template-contact .form_inner.with-bgemblom {
    float: left;
    width: 100%;
    padding: 40px;
  }

  .page-template-contact .form_mainwrap .form_inner p {
    width: 70%;
  }

  .page-template-comraich .minheight_imgspot .detail_block {
    max-width: 80%;
  }

  .gridlists {
    margin-top: 0;
  }

  .gridlists li {
    margin-bottom: 50px;
  }

  .gridlists .itemdetals {
    padding: 30px;
  }

  .listparlax_wrap {
    margin-bottom: 20px;
  }

  .listparlax_wrap ul li {
    width: 48%;
    min-height: 350px;
    margin-bottom: 10px;
  }

  .listparlax_wrap ul li .soldout {
    display: none;
  }

  .blog-list .blog-descript {
    margin-top: -100px;
  }

  .page-template-retailers .lined_list li {
    display: inline-block;
  }

  .page-template-tours_events .img_list-wrap .img_list_item {
    width: 100%;
    margin-left: 0px;
  }

  .page-template-tours_events .img_list_details {
    height: auto;
  }

  .page-template-tours_events .plain-block {
    padding: 40px 20px;
  }

  .grid {
    height: 100% !important;
  }

  .grid .element-item {
    width: 100%;
    position: relative !important;
    top: 0 !important;
    margin-bottom: 40px;
  }

  .detail-post-title {
    margin-bottom: 40px;
  }

  .blog-catagory {
    margin-bottom: 30px;
  }

  .scroll-wrapper .detail_block {
    max-width: 90%;
    top: 50px;
  }

  .scroll-wrapper .layer-2 {
    top: 15%;
  }

  .img-wraphold .img-prop {
    width: 100%;
  }

  .showproduct_spot {
    display: block;
    -webkit-display: block;
    background: transparent;
  }

  .showproduct_spot .element_holder {
    width: 100%;
  }

  .showproduct_spot .element_holder .elem_img img {
    width: 50%;
  }

  .list_type3 .groupitem .img_place {
    margin: 0 auto;
  }

  .list_type3 li {
    text-align: center;
    padding: 30px;
  }

  .groupitem .in-details {
    padding-left: 0;
  }

  .page-template-our_whisky .bggold {
    float: left;
    width: 100%;
    margin-top: 50px;
  }

  .blocktype_new {
    float: left;
    width: 100%;
  }

  .blocktype_new .block_single {
    width: 90%;
    margin-top: 0;
  }

  .block_single .lined_list li {
    display: inline-block;
  }

  .list_type4 li {
    width: 48%;
    float: left;
    height: 550px;
  }

  .single-product .block-11 .img_place {
    display: inline-block;
    max-width: 60%;
    width: 100%;
    background-size: cover !important;
  }

  .single-product .block-11 .group_contain {
    text-align: center;
  }

  .single-product .block-11 .group_contain .contentarea {
    text-align: center;
    width: 100%;
  }

  .single-product .block-11 .group_contain .contentarea h1 {
    font-size: 40px;
  }

  .single-product .block-11 .group_contain .contentarea p {
    max-width: 90%;
  }

  .single-product .block-12 .islay-map {
    position: relative;
    top: 0;
    left: 0;
  }

  .single-product .block-12 .block_divide .item_divide {
    width: 100%;
    margin-top: 0;
  }

  .single-product .smallcart_module {
    width: 150px;
  }

  .fp-section.fp-table, .fp-slide.fp-table {
    display: block;
    padding: 80px 30px;
    height: auto !important;
  }

  .fp-tableCell {
    display: block;
    padding: 80px 30px 250px 30px;
    height: 100% !important;
  }

  .home .islay-map {
    top: -159px;
  }

  .home .with-path:before {
    bottom: -3px;
  }

  .block-3 {
    padding: 0 !important;
  }

  .block-3 .fp-tableCell {
    padding: 0px !important;
  }

  .block-3 .item-selector {
    position: relative;
    display: inline-block;
    left: 0;
  }

  .block-4 .cd-image-container {
    width: 50%;
  }

  .block-4 .cd-image-bg {
    left: 0px;
  }

  .block-4 .comparison_slider .details {
    width: 100%;
    padding: 0 20px;
  }

  .block-4 .comparison_slider .details .detalwrap-block {
    width: 100%;
    margin: 0 auto;
    float: left;
    position: relative;
    bottom: 0;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin-top: 50%;
  }

  .block-4 .fp-tableCell {
    padding-top: 0;
  }

  .block-4 .btn-outlined {
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
  }

  .block-4 .comparison_slider {
    display: block;
    height: 1200px;
  }

  .block-4 .fp-tableCell {
    padding-bottom: 0;
  }

  .block-5 {
    padding: 0 !important;
  }

  .block-5 .valign_parent {
    display: block;
  }

  .block-16 {
    padding: 0 !important;
  }

  .block-16 .fp-tableCell {
    padding: 0 !important;
  }

  .block-16 .lined_listtwo {
    margin: 50px 0;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    float: left;
    padding: 0;
  }

  .block-16 .lined_listtwo li {
    float: left;
    width: 100%;
  }

  .block-16 .lined_listtwo li {
    border-bottom: 1px dotted #f9f2df;
    border-left: none;
  }

  .block-16 .product_showcase-wrap .product_showcaseDetailwrap {
    width: 100%;
    padding: 30px;
    position: relative;
  }

  .block-16 .img_place {
    margin-bottom: 10px;
    position: relative;
    width: 300px;
    left: 0;
    top: 0;
    height: 100%;
    margin: 0 auto;
    display: none;
  }

  .block-16 .product_showcase-wrap .product_showcaseDetail {
    padding-top: 0px;
  }

  .block-16 .product_showcase-wrap .progess-block {
    width: 100%;
  }

  .paroller-block-even, .paroller-block-odd {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    width: 100%;
    margin-top: 0 !important;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .listparlax_wrap ul li {
    width: 100%;
  }

  .listparlax_wrap ul li .soldout {
    display: none;
  }

  .img_list-wrap .img_list_item {
    width: 100%;
    margin-left: 0px;
  }

  .page-template-tours_events .img_list-wrap .img_list_item {
    width: 100%;
    margin-left: 0;
  }

  .list_type4 li {
    width: 100%;
    height: auto;
  }
}
.cart_sidebar {
  padding: 80px 0 0 0;
  z-index: 10;
}

.cart_sidebar .cart-collaterals {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #cac3bb;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 1000;
  display: table;
  width: 100%;
}

.cart_sidebar .cart-collaterals .shop_table.shop_table_responsive {
  border: none;
}

.cart_sidebar .cart-collaterals h2, .cart_sidebar .cart-collaterals .cart-subtotal, .cart_sidebar .cart-collaterals .shipping {
  /*display: none;*/
}

.cart_sidebar .cart-collaterals .order-total {
  display: none;
}

.cart_sidebar .cart-collaterals h2 {
  display: none;
}

.cart_sidebar .cart-collaterals .shipping {
  display: none;
}

.cart_sidebar .cart-collaterals .order-total, .cart_sidebar .cart-collaterals .cart-subtotal {
  border: none;
  position: absolute;
  left: 20px;
  width: 50%;
}

.cart_sidebar .cart-collaterals .cart-subtotal th {
  font-size: 16px !important;
  color: #f9f2df !important;
}

.cart_sidebar .cart-collaterals .order-total th, .cart_sidebar .cart-collaterals .cart-subtotal th {
  width: 100%;
  display: inline;
  position: absolute;
  color: #e2ddd7;
  font-weight: normal;
  border: none;
  left: 0;
}

.cart_sidebar .cart-collaterals .order-total td, .cart_sidebar .cart-collaterals .cart-subtotal td {
  margin-top: 30px;
  float: left;
  display: block;
  border: none;
  color: #426eaf;
  font: 35px "StrayhornMT-Bold", Arial, sans-serif;
}

@media (max-width: 1600px) {
  .video-lists_new .wrapvideo {
    margin-bottom: 20px;
  }

  .block-6 .logo {
    max-width: 300px;
    margin-bottom: 15px;
  }

  .video-lists_new {
    margin: 30px auto 20px;
  }

  .mejs-video, .wp-video-shortcode video, video.wp-video-shortcode {
    max-height: 162px;
  }

  .comparison_slider .btn-algnd {
    bottom: 30px;
  }

  .mainmap {
    margin-left: 57px;
    margin-top: 0px;
    margin-left: 85px;
  }

  .mainmap {
    width: 470px;
  }

  .product-template-default.single .group_contain .with-path:before {
    bottom: 140px;
  }

  .islay-map img {
    max-width: 550px;
  }

  .product_showcase-wrap .img_place.limited_edition:after {
    top: 12%;
    right: 2%;
  }

  .single-product .pro-machir-bay .islay-map img {
    margin-left: 15px;
  }

  .single-product .group_contain .img_place {
    background-position: left center !important;
  }

  #svg-container {
    top: -313px;
  }

  .single-product .pro-machir-bay #svg-container {
    top: -196px;
  }

  .single-product .btnpathgroup {
    padding-bottom: 140px;
  }

  .single-product .btnpathgroup svg {
    top: -50px;
  }

  .single-product .pro-sanaig .islay-map img {
    margin-left: 19px;
  }

  .single-product .pro-sanaig #svg-container {
    top: -150px;
  }

  .single-product .pro-loch-gorm #svg-container {
    top: -220px;
    width: 196px;
  }

  .single-product .pro-loch-gorm .islay-map img {
    margin-left: 12px;
  }

  .single-product .pro-100-islay .islay-map img {
    margin-left: 16px;
  }

  .single-product .pro-100-islay #svg-container {
    top: -201px;
    width: 204px;
    left: 0px;
    padding: 0 10px 0 0;
  }

  .single-product .btnpathgroup .svg-outer:after {
    height: 70px;
  }

  .single-product .btnpathgroup .svg-outer:before {
    top: 70px;
  }

  .single-product .btnpathgroup.spot-path .svg-outer:after {
    height: 140px;
  }

  .single-product .btnpathgroup.spot-path .svg-outer:before {
    top: 140px;
  }
}
@media (max-width: 1366px) {
  .video-lists_new .wrapvideo h3 {
    margin-top: 40px;
  }

  .video-lists_new .wrapvideo .itemvideo .widgettitle {
    font-size: 16px;
  }

  .video-lists_new .wrapvideo {
    margin-bottom: 15px;
  }

  .video-lists_new {
    margin: 30px auto 0px;
  }

  .block-6 .social-links {
    margin-bottom: 30px;
  }

  .mejs-video, .wp-video-shortcode video, video.wp-video-shortcode {
    max-height: 130px;
  }

  .mainmap {
    margin-left: 57px;
    margin-top: 70px;
    margin-left: 45px;
  }

  /*    .home-path {top: -4px;height: 365px;left: -33px;}*/
  .mainmap {
    width: 470px;
  }

  .cd-image-container .bottlewrap img {
    max-width: 320px;
  }

  .cd-handle:after {
    height: 560px;
  }

  .dragarrow {
    right: 150px;
    font-size: 15px;
    line-height: 20px;
  }

  .dragarrow:before {
    top: 110%;
  }

  .group_contain .contentarea p {
    max-width: 75%;
  }

  .product-template-default.single .group_contain .with-path:before {
    bottom: 160px;
  }

  .product_showcase-wrap .product_showcaseDetailwrap {
    padding: 0 9% 0 0;
  }

  .product_showcaseDetail .lined_listtwo {
    margin: 40px auto 40px;
  }

  .product_showcase-wrap .img_place.limited_edition:after {
    top: 12%;
    right: 2%;
    width: 105px;
    height: 105px;
    background-size: 105px;
  }

  .product-video .videotype2 {
    max-width: 817px;
  }

  .page-template-tours_events .img_switchgroup .itemz {
    height: 100%;
  }

  .page-template-tours_events .plain-block .img_place {
    height: 100%;
  }

  .page-template-tours_events .plain_detailwrap .plain_detail .owl-carousel {
    margin-left: -50px;
    padding-bottom: 70px;
  }

  .page-template-tours_events .plain_detailwrap .plain_detail {
    position: relative;
    margin: 30px 0;
    padding: 6% 7%;
    top: 0;
    bottom: 0;
  }

  .page-template-tours_events .plain-block .with-bgemblom .group_owlcontol {
    z-index: 9;
  }

  .plain_detailwrap .plain_detail:before {
    width: 80px;
    left: -80px;
  }

  .plain-block .group_owlcontol {
    left: -20px;
  }

  .islay-map img {
    max-width: 450px;
  }

  .block-6 .logo {
    max-width: 270px;
    margin-bottom: 10px;
  }

  .footer_bg .loadMoreBtn {
    padding: 11px 25px;
    font-size: 16px;
  }

  .single-product .pro-machir-bay .islay-map img {
    margin-left: 22px;
  }

  .single-product .block_divide .islay-map img {
    max-width: 500px;
  }

  #svg-container {
    top: -203px;
    width: 166px;
  }

  .block_single .lined_list li {
    margin: 0 2%;
  }

  .single-product .pro-machir-bay #svg-container {
    top: -219px;
    width: 158px;
  }

  .single-product .btnpathgroup {
    padding-bottom: 110px;
  }

  .single-product .btnpathgroup svg {
    top: -70px;
  }

  .single-product .pro-sanaig #svg-container {
    top: -169px;
    width: 203px;
  }

  .single-product .pro-loch-gorm .islay-map img {
    max-width: 520px;
    margin-left: 16px;
  }

  .single-product .pro-loch-gorm #svg-container {
    top: -232px;
    width: 190px;
    left: 0px;
  }

  .single-product .pro-100-islay .islay-map img {
    margin-left: 9px;
  }

  .single-product .pro-100-islay #svg-container {
    top: -210px;
    width: 180px;
    left: 0px;
    padding: 0 10px 0 0;
  }

  .btnpathgroup:before {
    width: 17px;
    height: 17px;
    border: 5px solid #ba9662;
    margin-left: -9px;
  }

  .btnpathgroup:after {
    height: 53px;
  }

  .single-product .btnpathgroup .svg-outer:after {
    height: 52px;
  }

  .single-product .btnpathgroup .svg-outer:before {
    top: 52px;
    width: 18px;
    height: 18px;
    border: 5px solid #ba9662;
    margin-left: -9px;
  }

  .single-product .btnpathgroup.spot-path .svg-outer:after {
    height: 110px;
  }

  .single-product .btnpathgroup.spot-path .svg-outer:before {
    top: 110px;
  }
}
@media (max-width: 1365px) {
  .detalwrap-block {
    right: 17%;
  }

  .details.s1labe1 .detalwrap-block {
    left: 17%;
  }

  .sidebar li a {
    font-size: 24px;
  }

  .sidebar li {
    margin-top: 10px;
  }

  .sidebar li a:hover {
    font-size: 24px;
  }

  .sidebar li a:hover > div {
    -ms-transform: scale(1.1) translateX(13px);
        transform: scale(1.1) translateX(13px);
    -webkit-transform: scale(1.1) translateX(13px);
    -moz-transform: scale(1.1) translateX(13px);
  }
}
@media (max-width: 1200px) {
  .block_divide .item_divide h2 {
    font-size: 35px;
  }

  .block_divide .item_divide h2:after {
    margin: 20px auto;
  }

  .block_divide .item_divide i {
    margin: 20px 0;
  }

  .sign {
    margin: 20px auto 20px;
  }

  .group_contain .contentarea h1 {
    font-size: 60px;
  }

  .product-template-default.single .group_contain .with-path:before {
    bottom: 150px;
  }
}
@media (max-width: 1199px) {
  .cd-image-container {
    max-width: 500px;
  }

  .cd-image-container .bottlewrap {
    width: 500px;
  }

  .cd-image-container .bottlewrap img {
    max-width: 352px;
  }

  .dragarrow {
    right: 25px;
  }

  .login-container {
    max-width: 960px;
  }

  .login-data h2 {
    font-size: 26px;
  }

  .shipping_address #shipping_loader_btn {
    font-size: 14px;
    padding: 0 20px;
    margin-left: 15px;
  }

  .woocommerce-MyAccount-content form #loader-field {
    width: 60%;
  }

  .woocommerce-MyAccount-content form #loader-field + p {
    width: 40%;
  }

  .login-section .form-group.already {
    float: none;
  }

  .login-section .form-group:last-child {
    float: left;
  }
}
@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }

  .comparison_slider .details .detalwrap-block {
    width: 70%;
  }

  .detalwrap-block {
    right: 30px;
  }

  .details.s1labe1 .detalwrap-block {
    left: 30px;
  }

  .cd-image-container {
    max-width: 350px;
  }

  .cd-image-container .bottlewrap {
    width: 350px;
  }

  .cd-image-container .bottlewrap img {
    max-width: 300px;
  }

  .dragarrow {
    right: 8px;
    max-width: 60px;
    font-size: 13px;
    top: 33%;
    line-height: 18px;
  }

  .mejs-container {
    min-width: 10px !important;
  }

  .loadMoreBtn {
    padding: 11px 30px;
  }

  .mejs-video, .wp-video-shortcode video, video.wp-video-shortcode {
    max-height: 97px;
  }

  .btn-outlined {
    font-size: 16px;
  }

  .kilchoman-club .item_info p {
    font-size: 16px;
    line-height: 25px;
  }

  .kilchoman-club .item_info i {
    font-size: 16px;
    line-height: 25px;
  }

  .block-3 .detail_elements p {
    font-size: 16px;
  }

  .kilchoman-club .kilcho-s1 p {
    font-size: 16px;
  }

  .block-2 .logo {
    max-width: 300px;
  }

  /*    .home-path {top: -100px;height: 370px;left: -33px;}*/
  .mainmap {
    margin-top: 50px;
    width: 330px;
    margin-left: 67px;
  }

  .kilchoman-club .item_info h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .product_showcase-wrap .img_place.limited_edition:after {
    top: 10%;
    right: -2%;
    width: 90px;
    height: 90px;
    background-size: 90px;
  }

  .img_switchgroup .itemz {
    height: 100%;
  }

  .plain-block .img_place {
    height: 100%;
  }

  .plain_detailwrap .plain_detail .owl-carousel {
    margin-left: -50px;
    padding-bottom: 70px;
  }

  .plain_detailwrap .plain_detail {
    position: relative;
    margin: 30px 0;
    padding: 58px;
    top: 0;
    bottom: 0;
  }

  .plain_detailwrap .plain_detail:before {
    left: -50px;
    width: 50px;
  }

  .plain-block .with-bgemblom .group_owlcontol {
    z-index: 9;
  }

  .plain-block .group_owlcontol {
    left: 10px;
  }

  .page-template-blog .item-inner-content {
    padding: 50px 0;
  }

  .page-template-blog .wrap-carousel .owl-dots {
    bottom: 64px;
  }

  .productslide_cover .group_owlcontol .custom_owlbtn {
    margin: 0 75px;
  }

  .plain_detailwrap_new .plain_detail .block_detailhead {
    margin-bottom: 40px;
  }

  .page-template-shop.woocommerce-page .listparlax_wrap ul li:nth-child(3n+2) {
    padding-top: 50px;
    padding-bottom: 10px;
  }

  .single-distillery .detail-post-container {
    height: 350px;
  }

  .single-distillery .container-sm {
    margin-top: 350px;
  }

  .page-template-tours_events .img_list-wrap .img_list_details h2 {
    font-size: 25px;
  }

  .page-template-tours_events .lined_elements {
    margin: 10px 0 20px;
  }

  .page-template-tours_events .img_list_details {
    padding: 30px 20px;
  }

  .page-template-tours_events .img_list_details .lined_elements strong {
    font-size: 17px;
  }

  .event-owners {
    font-size: 17px;
  }

  .page-template-tours_events .book_ticket .img_list_details {
    padding-bottom: 30px;
  }

  .page-template-tours_events .grouped_lists {
    padding: 50px 4% 0;
  }

  .popup-content .equal_divide_blocks .inside_contents .blockHead {
    font-size: 27px;
  }

  .section2mainimg {
    background-size: cover !important;
  }

  .approved-page-content {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    max-width: 372px;
  }

  .single-product .block_divide .islay-map img {
    margin-left: -16px;
  }

  #svg-container {
    width: 157px;
    top: -287px;
    left: 0;
  }

  .block_single .lined_list li {
    margin: 0 2%;
  }

  .single-product .block_divide .item_divide {
    padding: 0 3% !important;
  }

  .single-product .item_divide h4 {
    margin-bottom: 0;
  }

  .single-product figure.islay-map {
    top: 0;
  }

  .single-product .pro-machir-bay .islay-map img {
    margin-left: 0px;
  }

  .single-product .pro-machir-bay #svg-container {
    top: -227px;
    width: 156px;
    padding: 0 10px;
  }

  .single-product .pro-machir-bay .islay-map img {
    margin-left: 20px;
  }

  .single-product .block_divide .islay-map img {
    max-width: 450px;
  }

  .single-product .pro-machir-bay {
    margin-left: -24px;
  }

  /*    .single-product .btnpathgroup svg {height: 175px;}*/
  .single-product .group_contain .img_place {
    background-size: 77% auto !important;
  }

  .single-product .group_contain .product-contentarea {
    margin-left: -113px;
  }

  .single-product .pro-sanaig #svg-container {
    top: -188px;
    width: 210px;
    padding: 0 10px;
    left: -10px;
  }

  .single-product .pro-sanaig .islay-map img {
    margin-left: 24px;
  }

  .single-product .pro-loch-gorm #svg-container {
    top: -255px;
    width: 192px;
    left: -10px;
    padding: 0 10px;
  }

  .single-product .pro-loch-gorm .islay-map img {
    margin-left: 20px;
  }

  .single-product .pro-100-islay #svg-container {
    top: -222px;
    width: 160px;
  }

  .single-product .pro-100-islay .islay-map img {
    margin-left: 4px;
  }

  .btnpathgroup:before {
    width: 16px;
    height: 16px;
    border: 5px solid #ba9662;
    margin-left: -9px;
  }

  .single-product .btnpathgroup .svg-outer {
    top: 51px;
  }

  .single-product .btnpathgroup .svg-outer:before {
    width: 16px;
    height: 16px;
    border: 5px solid #ba9662;
    margin-left: -8px;
    top: 54px;
  }

  .single-product .btnpathgroup .svg-outer:after {
    height: 54px;
  }
}
@media (max-width: 992px) {
  .img-wraphold .img-prop {
    position: relative;
  }

  .mejs-video, .wp-video-shortcode video, video.wp-video-shortcode {
    max-height: 70px;
  }

  .mainmap {
    margin-top: 42px;
    width: 245px;
    margin-left: 0px;
    margin-right: 10px;
  }

  /*    .home-path {top: -243px;height: 475px;left: -10px;}*/
  .kilchoman-club .divide-blockwrap .path-mapcover {
    text-align: right;
  }

  .block-1 .btn-algnd {
    padding-bottom: 17%;
  }

  .block_divide .item_divide {
    padding: 30px 3%;
  }

  .islay-map img {
    max-width: 400px;
  }

  .dragarrow {
    right: 20px;
    top: 28%;
  }

  .product-template-default.single .group_contain .img_place {
    padding-top: 0;
  }

  .taste_graph {
    margin: 0 80px 40px 40px;
  }

  .productslide_cover .plain_detailwrap_new {
    width: 70%;
    margin: 0 auto;
  }

  .page-template-comraich .minheight_imgspot .detail_block {
    max-width: 500px;
    margin: 0 auto;
    width: 90%;
    top: 15%;
  }

  .minheight_imgspot .detail_block h2 {
    font-size: 35px;
    margin: 25px 0 15px;
  }

  .page-template-shop.woocommerce-page .listparlax_wrap ul li:nth-child(3n+2) {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px !important;
    margin-bottom: 0px;
  }

  .page-template-shop.woocommerce-page .listparlax_wrap .hot ul li:nth-child(3n+2) {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px !important;
    margin-bottom: 0px;
  }

  .page-template-shop.woocommerce-page .listparlax_wrap ul li {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
  }

  .page-template-shop .listparlax_wrap ul li .img-description h3 {
    font-size: 20px;
  }

  .page-template-shop .lined_list {
    margin-bottom: 60px;
  }

  .custom-container {
    padding-top: 0 !important;
  }

  .listparlax_wrap {
    margin: 25px 3% 60px;
  }

  .page-template-tours_events .plain_detailwrap .plain_detail .owl-carousel {
    margin-left: 0;
  }

  .page-template-tours_events .plain_detailwrap {
    width: 94%;
    margin-top: -80px;
    margin-left: 3%;
    margin-right: 3%;
  }

  .woocommerce .filters-button-group .lined_list li {
    margin-left: 0px;
  }

  .plain_detailwrap .plain_detail .owl-carousel {
    margin-left: 0px;
  }

  .product_type .selectric-items .dropdetails h3 {
    font-size: 18px;
  }

  .login-data {
    padding: 25px;
  }

  .login-data h2 {
    padding-bottom: 10px;
    font-size: 22px;
  }

  .loign-form .form-row {
    margin: 0 0 20px;
  }

  .woocommerce-checkout .checkout-form-new .content .form-row#loader-field, .woocommerce-MyAccount-content form #loader-field {
    width: 60%;
  }

  .woocommerce-checkout .checkout-form-new .content .form-row#loader-field + p, .woocommerce-MyAccount-content form #loader-field + p {
    width: 40%;
  }

  .shipping_address #shipping_loader_btn {
    font-size: 14px;
    padding: 0 20px;
    margin-left: 10px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    max-width: 100%;
    position: relative !important;
  }

  #data_login_modal #main_form.popup-product-form #register {
    font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  }

  .single-product .group_contain .contentarea {
    width: 100%;
  }

  .single-product .group_contain .product-contentarea {
    margin-left: 0px;
  }

  .single-product .group_contain .product-contentarea .with-path {
    left: 57px;
  }

  .section.block-12 .pop-effect-inner {
    vertical-align: top;
  }

  #svg-container {
    width: 210px;
    top: -387px;
  }

  #cookie-law-info-bar span {
    max-width: 690px;
  }

  #cookie-law-info-bar #cookie_action_close_header_reject.cli-plugin-button {
    right: 10px;
  }

  .blocktype_new .lined_list li {
    display: inline-block;
    margin: 0 9px;
  }

  .blocktype_new .lined_list li a {
    font-size: 15px;
  }

  .single-product .pro-machir-bay figure.islay-map {
    top: -99px;
    left: -10px;
  }

  .single-product .pro-machir-bay #svg-container {
    top: -164px;
    height: 488px;
    width: 148px;
  }

  .single-product .block_divide .item_divide {
    width: 50%;
    padding: 0 0 !important;
  }

  .single-product .block_divide .item_divide_inner {
    padding: 0 25px;
  }

  .single-product .pro-machir-bay .islay-map img {
    max-width: 350px;
    margin-top: 0;
    margin-left: 42px;
  }

  .single-product .bgset_img .pop-effect-inner {
    vertical-align: middle;
  }

  .single-product .pro-machir-bay {
    margin-left: 0;
  }

  /*    .single-product .btnpathgroup svg {height: 130px;}*/
  .single-product .pro-sanaig figure.islay-map {
    top: -150px;
    left: 0px;
  }

  .single-product .pro-sanaig #svg-container {
    top: -234px;
    width: 187px;
    padding: 0 7px;
    left: -7px;
  }

  .single-product .pro-sanaig .islay-map img {
    margin-left: 50px;
    max-width: 330px;
  }

  .single-product .pro-loch-gorm #svg-container {
    top: -311px;
    width: 175px;
    left: -7px;
    padding: 0 7px;
  }

  .single-product .pro-loch-gorm figure.islay-map {
    top: -102px;
  }

  .single-product .pro-loch-gorm .islay-map img {
    margin-left: 50px;
    max-width: 330px;
  }

  .single-product .group_contain .img_place {
    background-size: 100% auto !important;
    margin-bottom: 20px;
  }

  .single-product .pro-100-islay .islay-map img {
    margin-left: 30px;
    max-width: 350px;
  }

  .single-product .pro-100-islay #svg-container {
    top: -280px;
    width: 157px;
    padding: 0 7px 0 7px;
    left: -7px;
  }

  .single-product .pro-100-islay figure.islay-map {
    top: -110px;
  }

  .btnpathgroup:before {
    width: 18px;
    height: 18px;
    border: 5px solid #ba9662;
    margin-left: -10px;
  }

  .cart_sidebar .cart-collaterals .cart_totals td:before {
    display: none;
  }
}
@media (max-width: 989px) {
  /* .fp-tableCell {transform: scale(1); -webkit-transform: scale(1); -moz-transform: scale(1);}
   .img-wraphold .img-prop {position: relative;}
   .fp-responsive .fp-auto-height-responsive.fp-section, .fp-responsive .fp-auto-height-responsive .fp-slide, .fp-responsive .fp-auto-height-responsive .fp-tableCell {height: auto !important;}
   .fp-section.fp-table, .fp-slide.fp-table, .fp-tableCell {height: auto !important;}
   .section {min-height: inherit !important;}
   .comparison_slider .details.lft {left: 0;position: relative;top: 0;transform: none;float: left;}
   .comparison_slider .details.rgt {right: 0;position: relative;top: 0;transform: none;float: right;}
   .detalwrap-block {left: 0 !important; right: 0 !important; width: 100% !important;top: 0;transform: none;position: relative;}*/
}
@media (max-width: 767px) {
  .page-template-club-page .equal_divide_blocks {
    display: block;
  }

  .page-template-club-page .equal_divide_blocks .img_section, .page-template-club-page .equal_divide_blocks .inside_contents {
    display: block;
    width: 100%;
  }

  .page-template-club-page .equal_divide_blocks .inside_contents {
    padding: 30px;
  }

  .site-loader .cask-img {
    margin: 0 auto 35px;
  }

  body {
    overflow-x: hidden !important;
  }

  .fp-tableCell {
    padding: 0;
  }

  .fp-responsive .fp-auto-height-responsive.fp-section, .fp-responsive .fp-auto-height-responsive .fp-slide, .fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
  }

  .fp-section.fp-table, .fp-slide.fp-table, .fp-tableCell, .section {
    height: auto !important;
  }

  .section {
    min-height: inherit !important;
  }

  .fp-section.fp-table, .fp-slide.fp-table {
    padding: 0;
  }

  #section1 {
    height: 100vh !important;
  }

  .comparison_slider {
    display: none !important;
  }

  #section1 .menu-social_links-container {
    display: none;
  }

  #section1 .fp-tableCell {
    height: 100vh !important;
  }

  .btnvideo {
    display: block;
  }

  #section1 .btnplay {
    display: none;
  }

  .block-1 .logo {
    width: 250px;
    margin-bottom: 40px;
  }

  .block-1 .spot_content {
    -ms-transform: translate(-50%, -70%);
        transform: translate(-50%, -70%);
    -webkit-transform: translate(-50%, -70%);
  }

  .block-1 .btn-algnd {
    padding-bottom: 48%;
  }

  .home .with-path:before {
    bottom: 80px;
  }

  .opacity_base {
    opacity: 1 !important;
  }

  .opacity_base.sm-time, .opacity_base.md-time, .opacity_base.lg-time {
    -webkit-animation: none !important;
            animation: none !important;
  }

  .tap-to-compare {
    clear: both;
  }

  .divide-blockwrap .path-mapcover, .divide-blockwrap .kilcho-s1 {
    width: 100%;
    height: auto;
  }

  .mainmap {
    margin-top: 12px;
    margin-left: auto;
    display: block;
    margin-right: auto;
    width: 300px;
  }

  .kilchoman-club {
    padding: 50px 15px;
  }

  .block-2 .kilcho-s1 .btn {
    margin-top: 20px;
  }

  .block-2 .kilcho-s1 {
    padding: 60px 2% 2%;
  }

  .kilchoman-club .kilcho-s1 .logo {
    display: none;
  }

  .gradient-blue:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, #213f70));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #213f70 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#213f70", GradientType=0);
  }

  .gradient-blue .fp-tableCell {
    position: relative;
    z-index: 2;
  }

  .wrap_intab .in_blocks {
    width: 100%;
  }

  .wrap_intab.fade {
    opacity: 1;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
  }

  .img-wraphold .img-prop {
    height: 0;
    padding-top: 56.25%;
  }

  .wrap_intab .in_blocks.img-wraphold {
    margin-top: 99px;
  }

  .wrap_intab .v-alignparent {
    display: block;
  }

  .from_barleyicon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+35,ffffff+35,dbdbdb+100 */
    background: white;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, white), color-stop(35%, white), to(#dbdbdb));
    background: linear-gradient(to bottom, white 35%, white 35%, #dbdbdb 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#dbdbdb", GradientType=0);
    /* IE6-9 */
    padding: 36px 0 41px 0;
    text-align: center;
    height: auto;
  }

  #section3 .wrap_intab .v-content-anim {
    position: static;
    -webkit-animation: none;
            animation: none;
    opacity: 1;
  }

  .from_barleyicon img {
    width: 92%;
  }

  .item-selector-main {
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
  }

  .item-selector-main ul {
    margin-bottom: 0;
  }

  .fp-viewing-2 .wrap_intab .v-content-anim {
    opacity: 1;
  }

  .fp-viewing-2 .wrap_intab.active .v-content-anim {
    -webkit-animation: none;
            animation: none;
  }

  .wrap_intab .detail_elements {
    padding-bottom: 130px;
  }

  .wrap_intab .detail_elements .v-content-anim {
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .wrap_intab.active .detail_elements .v-content-anim {
    opacity: 1;
  }

  .kilchoman-club-section .kilchoman-club {
    padding: 90px 15px 350px;
  }

  .emblom1 {
    right: -30px;
  }

  .kilchoman-club-section .kilchoman-club .img_place {
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 270px;
    background-size: cover !important;
    right: 0;
    margin: 0 auto;
    height: 325px;
  }

  /*    #section5 {overflow-y: visible;overflow-x: hidden;}*/
  #section5 .wrap .bg {
    -ms-transform: none !important;
        transform: none !important;
    -webkit-transform: none !important;
  }

  .footer_bg .fp-tableCell {
    padding: 45px 0;
  }

  .mejs-video, .wp-video-shortcode video, video.wp-video-shortcode {
    max-height: 144px;
  }

  .video-lists_new .wrapvideo h3 {
    margin-top: 40px;
  }

  .video-lists_new .wrapvideo .itemvideo .widgettitle {
    margin-top: 25px;
  }

  .video-lists_new .wrapvideo {
    margin-bottom: 35px;
  }

  .video-lists_new {
    width: 100%;
  }

  .footer_bg .btn-outlined {
    padding-left: 30px;
    padding-right: 30px;
  }

  footer ul.left-block {
    width: 100%;
    float: none;
  }

  .footer_bg footer {
    margin-top: 60px;
  }

  .footer_bg footer .textwidget p {
    margin-bottom: 5px;
  }

  .sidebar #menu-primary_menu li {
    text-align: center;
  }

  header {
    z-index: 13;
  }

  .togglemenu {
    z-index: 14;
  }

  .sidebar .menu-social_links-container {
    text-align: center;
  }

  .togglemenu .menutxt {
    display: inline-block;
  }

  .mobile-tab {
    display: block;
  }

  .home-path {
    display: none;
  }

  .mobilesvg {
    display: block;
    width: 100%;
    overflow: visible !important;
  }

  .showproduct_spot .elem_img, .showproduct_spot.zoomingstop .elem_img {
    transform: scale(1, 1) translate3d(0px, 0%, 0px) !important;
    -webkit-transform: scale(1, 1) translate3d(0px, 0%, 0px) !important;
  }

  .menu-inner {
    width: 100%;
  }

  .sidebar .slimScrollDiv, .sidebar .scrollwrap {
    width: 100% !important;
  }

  .sidebar .slimScrollDiv {
    padding-bottom: 50px;
  }

  .sidebar li a:hover div {
    -ms-transform: scale(1.1) translateX(0px);
        transform: scale(1.1) translateX(0px);
    -webkit-transform: scale(1.1) translateX(0px);
    -moz-transform: scale(1.1) translateX(0px);
  }

  .tag_textstyle {
    font-size: 12px;
  }

  .tag_textstyle strong .symbol_type {
    width: 22px;
    height: 22px;
  }

  .tag_textstyle strong:before, .tag_textstyle strong:after {
    width: 30px;
  }

  .head_logo {
    left: 50%;
  }

  .topaccount {
    font-size: 0;
    line-height: 0;
  }

  .topaccount .fa {
    font-size: 21px;
    /* vertical-align: middle; */
    display: block;
    position: relative;
    top: 3px;
    line-height: normal;
  }

  .head_logo {
    left: 50%;
    top: 45%;
  }

  header {
    height: 60px;
  }

  .togglemenu {
    top: 18px;
  }

  .sidebar-open .togglemenu button {
    margin-top: -14px;
  }

  .sidebar-open .togglemenu .menutxt {
    position: relative;
    top: 3px;
  }

  .tag_textstyle strong {
    padding: 0 10px;
  }

  .with-bgemblom .groupitem .in-details {
    padding-right: 0;
  }

  .single-product .block-11 .group_contain {
    padding: 80px 15px 20px;
  }

  .group_contain .contentarea p {
    max-width: 100% !important;
  }

  .single-product .smallcart_module {
    position: relative;
    right: 0;
    margin: 20px auto 0;
    bottom: 0;
  }

  .single-product .group_contain .with-path {
    padding-bottom: 70px;
    position: relative;
    left: 0;
  }

  .product-template-default.single .group_contain .with-path:before {
    bottom: 10px;
  }

  .product_showcase-wrap .product_showcaseDetailwrap {
    width: 100%;
    left: 0;
    transition: none;
    -webkit-transition: none;
  }

  .block-16.active .product_showcase-wrap .product_showcaseDetailwrap {
    transition: none;
    -webkit-transition: none;
  }

  .product_showcase-wrap .img_place {
    transition: none;
    -webkit-transition: none;
    -ms-transform: none;
        transform: none;
    -webkit-transform: none;
    position: absolute;
    left: 0;
    width: 250px;
    height: 443px;
    display: block;
    right: 0;
    margin: 0 auto;
  }

  .block-16.active .product_showcase-wrap .img_place {
    transition: none;
    -webkit-transition: none;
    -ms-transform: none;
        transform: none;
    -webkit-transform: none;
    left: 0;
  }

  .taste_graph {
    margin: 0 0px 40px 0px;
  }

  .product_showcaseDetail_inner .block-md-head {
    width: 100%;
  }

  .product_showcase-wrap .product_showcaseDetailwrap {
    padding: 450px 20px 50px !important;
  }

  .cask-barmain h3 {
    font-size: 20px;
  }

  .product_showcaseDetail .lined_listtwo {
    margin: 25px auto 30px;
  }

  .product_showcaseDetail .lined_listtwo li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .product_showcaseDetail .block-md-head, .product_showcaseDetail .lined_listtwo, .product_showcaseDetail .listblocks {
    opacity: 1;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
  }

  .circular-chart {
    opacity: 1;
    -webkit-animation-delay: inherit;
            animation-delay: inherit;
    -webkit-animation: none;
            animation: none;
  }

  .active .circular-chart {
    -webkit-animation-delay: inherit;
            animation-delay: inherit;
    -webkit-animation: none;
            animation: none;
  }

  .fp-viewing-2 .circular-chart .circle {
    -webkit-animation: none;
            animation: none;
    -webkit-animation-delay: inherit;
            animation-delay: inherit;
  }

  .single-product .islay-map {
    padding-bottom: 40px;
  }

  .single-product .block_divide {
    padding-bottom: 40px;
  }

  .details-imgcontent .block_divide {
    overflow: hidden;
    padding-top: 40px;
  }

  .product_showcase-wrap .img_place.limited_edition:after {
    top: 15%;
  }

  .group_contain .contentarea.limited_edition h1:after {
    top: -30px;
    right: -10px;
    width: 60px;
    height: 60px;
    background-size: 60px;
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none !important;
  }

  .product-video {
    padding: 50px 0 !important;
  }

  .product-video .tag_typetext strong {
    font-size: 19px;
    letter-spacing: 0;
  }

  .product-video .tag_typetext strong small {
    margin: 0px 10px 2px;
    margin-left: 10px;
    background-size: 30px;
    width: 30px;
  }

  .product-video .btnplay {
    width: 50px;
    height: 50px;
  }

  .product-video .btnplay:before {
    position: absolute;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #f9f2df;
    content: "";
    left: 20px;
    top: 15px;
  }

  .plain_detailwrap .plain_detail {
    padding: 30px 25px 25px;
  }

  .page-template-blog .item-inner-content {
    padding: 50px 0 70px;
  }

  .page-template-blog .item-inner-content .details {
    text-align: center;
  }

  .page-template-blog .wrap-carousel .owl-dots {
    bottom: 30px;
    right: 0;
    text-align: center;
    width: 100%;
  }

  .page-template-blog .wrap-carousel .owl-dot {
    margin-right: 5px;
    margin-left: 5px;
  }

  .lined_list li {
    margin-left: 0px;
  }

  .grid .element-item .blog-list .img_place {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .grid .element-item .blog-list .blog-descript {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .grid .element-item .blog-list .btn {
    opacity: 1;
    -webkit-transition: all 0s;
    transition: all 0s;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }

  .lined_list {
    margin-bottom: 30px;
  }

  .over-class-header .preloader {
    top: 177px;
  }

  .minheight_imgspot .detail_block p {
    line-height: 24px;
  }

  .page-template-comraich .minheight_imgspot .detail_block img {
    width: 100px;
  }

  .minheight_imgspot .detail_block h2 {
    margin-top: 15px;
  }

  .productslide_cover .plain_detailwrap_new {
    width: 100%;
  }

  .productslide_cover .img_switchgroup {
    width: 80%;
  }

  .productslide_cover .group_owlcontol .custom_owlbtn {
    margin: 0 0px;
  }

  .productslide_cover .group_owlcontol .customPrevBtn {
    float: left;
  }

  .productslide_cover .group_owlcontol .customNextBtn {
    float: right;
  }

  .productslide_cover .group_owlcontol {
    height: 30px;
  }

  .bottom-conatent-slider {
    width: 100%;
    clear: both;
    top: -27px;
  }

  .bottom-conatent-slider .owl-stage-outer {
    width: 100%;
  }

  .productslide_cover {
    padding: 0 0 30px;
  }

  .single-distillery .detail-post-container {
    background-attachment: inherit;
  }

  .single-distillery .detail-post-container {
    top: 60px;
  }

  .single-distillery .detail-post-container {
    height: 250px;
  }

  .single-distillery .container-sm {
    margin-top: 250px;
  }

  .page-template-tours_events .taxtdetail_block {
    width: 100%;
  }

  .page-template-tours_events .grouped_lists li {
    width: 50%;
  }

  .page-template-tours_events .plain_detailwrap .plain_detail .owl-carousel {
    padding-bottom: 30px;
  }

  .woocommerce .popup-content .equal_divide_blocks {
    display: block;
    margin: 0px 0;
  }

  .woocommerce .popup-content .equal_divide_blocks .img_section, .woocommerce .popup-content .equal_divide_blocks .inside_contents {
    display: block;
    width: 100%;
  }

  .woocommerce .popup-content .equal_divide_blocks .inside_contents {
    padding: 30px 30px;
  }

  .gradient-blue .divide-blockwrap {
    position: relative;
    z-index: 2;
  }

  .gradient-blue .section2mainimg:after {
    display: block;
  }

  .woocommerce .popup-content .mfp-close {
    top: 40px;
  }

  .login-container {
    max-width: 100%;
  }

  .login-section {
    padding: 30px 0;
  }

  .login-image {
    width: 100%;
    float: left;
    position: relative;
  }

  .login-data {
    width: 100%;
  }

  .login-data h2 {
    padding-bottom: 10px;
    font-size: 22px;
  }

  .woocommerce div.product .popup-content span.price, .woocommerce div.product .popup-content .popup-price span {
    font-size: 18px;
    margin-top: -38px;
  }

  .woocommerce-checkout .checkout-form-new .content .form-row#loader-field, .woocommerce-checkout .checkout-form-new .content .form-row#loader-field + p {
    width: 100%;
  }

  .shipping_address #shipping_loader_btn {
    font-size: 17px;
    padding: 0 30px;
    margin-left: 0;
    float: none;
    margin-bottom: 10px;
  }

  .approved-page-content {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .approved-page {
    top: 0;
  }

  .woocommerce-MyAccount-content form .form-row-first, .woocommerce-MyAccount-content form .form-row-last, .woocommerce-MyAccount-content form #billing_myfield13_field, .woocommerce-MyAccount-content form #billing_myfield14_field, .woocommerce-MyAccount-content form #billing_myfield9_field, .woocommerce-MyAccount-content form #loader-field, .woocommerce-MyAccount-content form #loader-field + p {
    width: 100%;
  }

  .woocommerce-MyAccount-content form #loader-field + p #shipping_loader_btn {
    float: left;
    margin-left: 0;
  }

  .woocommerce-MyAccount-content .order-container .order-detail-address {
    min-height: 100%;
  }

  #forgot_password .form-group {
    margin-bottom: 50px;
  }

  #forgot_password .btn-outlined {
    font-size: 14px;
    padding: 15px;
  }

  .woocommerce-account .header-order h4 {
    font-size: 30px;
  }

  .woocommerce-account .header-order label {
    margin-top: 10px;
  }

  .pop-effect, .pop-effect-inner {
    display: block;
    height: auto;
  }

  .single-product .group_contain .product-contentarea .with-path {
    left: 0;
  }

  #cookie-law-info-bar span {
    text-align: center;
    padding: 7px 15px 7px 15px;
  }

  #cookie-law-info-bar .cli-plugin-button {
    position: relative;
    right: 0;
    top: 0;
    display: block;
    margin: 12px auto 0px;
    width: 150px;
    padding: 7px 19px;
  }

  #cookie-law-info-bar #cookie_action_close_header_reject.cli-plugin-button {
    position: absolute !important;
    bottom: auto;
    right: -10px;
    top: 6px !important;
  }

  .blocktype_new .lined_list li {
    /*display: block;*/
    padding-bottom: 6px;
  }

  .blocktype_new .lined_list li.active:after {
    bottom: 0;
  }

  .single-product .bgset_img .block_divide {
    display: -webkit-block;
    display: -ms-block;
    display: -webkit-block;
    display: block;
  }

  .single-product .block_divide figure.islay-map {
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .single-product .block_divide figure.islay-map {
    width: 100%;
  }

  .single-product .block_divide figure.islay-map img {
    width: 100%;
    margin-left: -30px;
    margin-top: 0;
    max-width: 100%;
  }

  .single-product .btnpathgroup {
    margin: 30px 0 0 0;
    bottom: 0;
    position: relative;
    left: 0;
    -ms-transform: translateX(0%);
        transform: translateX(0%);
    -webkit-transform: translateX(0%);
    padding-bottom: 0px;
  }

  .single-product .group_contain .with-path {
    padding-bottom: 14px;
    position: relative;
    left: 0;
    padding: 10px 20px;
  }

  .single-product .btnpathgroup svg {
    display: none;
  }

  .single-product .block_divide #svg-container {
    display: none;
  }

  .single-product .block_divide .item_divide {
    width: 100%;
  }

  .site-loader-inner {
    max-width: 333px;
  }

  .site-loader-inner .cask-bar {
    max-width: 240px;
  }

  .spotpathwrap {
    display: none !important;
  }

  .page-template-home .btnpathgroup {
    bottom: 40px;
  }

  #mobilesvg {
    display: none !important;
  }

  footer .left-block .textwidget span {
    display: block;
  }

  footer .left-block .textwidget span:before {
    display: none;
  }

  .plain_detail .owl-carousel .owl-item {
    left: 0 !important;
  }

  .plain_detail .owl-carousel .owl-item.active {
    left: 0 !important;
  }

  .datepicker-dropdown.dropdown-menu {
    min-width: 280px;
    left: 0 !important;
    width: 90%;
    right: 0;
    margin: 0 auto;
  }

  .cart_sidebar {
    width: 350px;
  }

  .cart_sidebar tr.cart-subtotal td {
    font-size: 22px !important;
  }

  .cart_sidebar tr.cart-subtotal th, .cart_sidebar tr.cart-subtotal td {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-template-distillery .v-alignparent .detail_elements .v-content-anim {
    position: static;
  }

  .plain-block .block-3 .v-alignparent .detail_elements .v-content-anim {
    position: static;
  }

  .block_single .lined_list {
    overflow-x: auto;
    white-space: nowrap;
  }

  .detail_block_md.with-bgemblom {
    background-position: center -89px;
  }

  .page-template-shop .base_detailblock {
    background-position: center -89px;
  }

  .listparlax_wrap ul {
    height: auto !important;
  }

  .listparlax_wrap ul li {
    width: 100%;
    margin-top: 0 !important;
    position: relative !important;
    top: 0 !important;
    margin-bottom: 50px;
  }

  .page-template-shop .footer_bg {
    margin-top: 0 !important;
  }

  .mfp-wrap .popup-content .equal_divide_blocks .img_section {
    padding: 25px 0 0 0;
  }

  .date-selector input.form-control {
    font-size: 16px;
  }

  .cart_sidebar .cart-collaterals {
    padding: 25px 20px;
  }

  .cart_sidebar .cart-collaterals .wc-proceed-to-checkout .btn {
    padding: 14px 20px;
  }

  .form-control {
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    border-radius: 0;
    box-shadow: none;
  }

  .page-template-comraich .img_place:before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: #000;
    opacity: 0.3;
  }

  .page-template-tours_events .woocommerce-popup {
    height: auto;
  }

  #checkout_cart .total-div {
    padding-bottom: 90px;
  }

  .woocommerce-checkout .checkout-form-new .actions {
    position: absolute;
    background: none;
    bottom: 152px;
    left: 22px;
    padding: 22px 35px;
    width: auto;
    text-align: right;
    right: 22px;
    z-index: 99;
  }

  .woocommerce-checkout .checkout-form-new .actions li:first-child {
    margin-left: 0;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) {
  .block-1 .btn-algnd {
    padding-bottom: 13%;
  }

  .home .with-path:before {
    bottom: 25px;
  }
}
@media (max-width: 480px) {
  .woocommerce-checkout .checkout-form-new .actions {
    bottom: 110px;
    padding: 22px 15px;
  }
}
@media (min-width: 1000px) {
  .page-template-blog .item-inner-content {
    height: 450px;
  }
}
/*-- float utilities --*/
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.position-relative {
  position: relative !important;
}

@media (min-width: 768px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
/*-- text utilities --*/
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 768px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
/*-- spacing utilities --*/
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

@media (min-width: 768px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0 {
    margin-left: 0 !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3 {
    margin-left: 1rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5 {
    margin-left: 3rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto {
    margin-left: auto !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0 {
    padding-left: 0 !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3 {
    padding-left: 1rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5 {
    padding-left: 3rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 992px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0 {
    margin-left: 0 !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1 {
    margin-left: 0.25rem !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2 {
    margin-left: 0.5rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3 {
    margin-left: 1rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4 {
    margin-left: 1.5rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5 {
    margin-left: 3rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto {
    margin-left: auto !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0 {
    padding-left: 0 !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1 {
    padding-left: 0.25rem !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2 {
    padding-left: 0.5rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3 {
    padding-left: 1rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4 {
    padding-left: 1.5rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5 {
    padding-left: 3rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0 {
    margin-left: 0 !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3 {
    margin-left: 1rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5 {
    margin-left: 3rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto {
    margin-left: auto !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0 {
    padding-left: 0 !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3 {
    padding-left: 1rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5 {
    padding-left: 3rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
.margin-collapse {
  padding-top: 1px;
  margin-top: -1px;
}

.basic-cards-cont {
  position: relative;
}

@media (min-width: 768px) {
  .row.equal {
    display: -webkit-box;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
  }
}
.text-brand-blue {
  color: #1b3975;
}

.card-bg {
  background: #f6f4f1;
}

.basic-cards-cont {
  padding-bottom: 4rem;
}

.basic-cards-cont h1, .basic-cards-cont h2, .basic-cards-cont h3, .basic-cards-cont h4, .basic-cards-cont h5, .basic-cards-cont h6 {
  color: #1b3975;
}

.basic-cards-cont .card {
  margin-bottom: 20px;
}

.basic-cards-cont .card-body {
  background: #f6f4f1;
  padding: 20px;
  text-align: center;
}

.blog-card {
  margin-bottom: 40px;
}

.blog-card h2 a {
  color: #1b3975;
}

.blog-card-image {
  position: relative;
  max-height: 320px;
  overflow: hidden;
}

.blog-category-text {
  position: absolute;
  top: 0px;
  left: 0px;
  color: #fff;
  padding: 5px 8px;
  font-family: "StrayhornMT-Bold", Arial, sans-serif;
  background: #ba9662;
}

body.page-template-blog {
  background-color: #efeae8;
  background-image: url("/wp-content/themes/kilchoman/img/news-bg-image.svg");
  background-size: cover;
  background-position: center center;
}

body.main-page-wrapper {
  background-color: transparent;
}

.distillery.type-distillery {
  background-color: #fff;
  background-image: url("/wp-content/themes/kilchoman/img/news-bg-image-light.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

body.page-template-video-page {
  background-color: #efeae8;
  background-image: url("/wp-content/themes/kilchoman/img/news-bg-image.svg");
  background-size: cover;
  background-position: center center;
}

body.page-template-video-page .main-page-wrapper {
  background: transparent;
}

.img-fluid {
  width: 100%;
  max-width: none;
  height: auto;
}

.lined_list_nav {
  text-align: center;
}

.lined_list_nav li {
  padding-left: 0px;
  display: inline-block;
  background-image: none;
  margin-bottom: 15px;
  margin-left: 1.5rem;
}

.lined_list_nav li:first-child {
  padding-left: 0;
  margin-left: 0;
}

.lined_list_nav li a {
  text-transform: uppercase;
  color: #cac3bb;
  font: 18px "StrayhornMT-Bold", Arial, sans-serif;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.lined_list_nav li.active {
  position: relative;
}

.lined_list_nav li.active a {
  color: #ba9662;
}

.lined_list_nav li.active:after {
  bottom: 0;
  content: "";
  display: block;
  border-bottom: 2px dotted #1b3975;
  width: 70px;
  height: 2px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: -100%;
  right: -100%;
  top: 28px;
}

@media (min-width: 992px) {
  .lined_list_nav li {
    display: inline-block;
  }
}
.remove-negative-margin {
  margin-top: 0;
}

.hero-image-standard2020-without-overlay,
.hero-image-standard2020 {
  position: relative;
  height: 800px;
}
.hero-image-standard2020-without-overlay p,
.hero-image-standard2020 p {
  color: #616161;
}

.hero-image-standard2020:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.hero-image-standard2020-without-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}

.hero-image-standard2020-with-overlay-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(transparent)) !important;
  background: linear-gradient(180deg, white, transparent) !important;
}

.hero-image-standard2020 .detail_block,
.hero-image-standard2020-without-overlay .detail_block {
  position: absolute;
  top: 2%;
  left: 2%;
  right: 2%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.hero-image-standard2020 .detail_block h2,
.hero-image-standard2020-without-overlay .detail_block h2 {
  color: #f9f2df;
  text-transform: uppercase;
  font-size: 50px;
  margin: 25px 0;
}
.hero-image-standard2020 .detail_block p,
.hero-image-standard2020-without-overlay .detail_block p {
  font-size: 18px;
  color: #f9f2df;
}

.hero-image-standard2020-without-overlay .detail_block p {
  color: #000;
}

.page-template-comraich .short_block {
  padding: 15px 20px;
  background-color: #fff;
  font-size: 18px;
  margin: 60px auto;
  position: relative;
  max-width: 90%;
  text-align: center;
  box-shadow: 0px 0px 66px 3px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
  .page-template-comraich .short_block {
    padding: 60px 75px;
    max-width: 750px;
  }
}
.tours-list-2020 {
  margin-top: 30px;
}

.img_list-wrap.tours-list-2020 .img_list_item {
  z-index: 2;
}

@media (min-width: 992px) {
  .tours-list-2020 {
    margin-top: 60px;
  }
}
body.page-template-our_whisky {
  background-color: #fff;
  background-image: url("/wp-content/themes/kilchoman/img/news-bg-image-light.svg?v1");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

body.page-template-our_whisky .main-page-wrapper {
  background-color: transparent;
}

.btn-gold, .woocommerce-checkout .woocommerce #respond input#submit.alt, .woocommerce-checkout .woocommerce a.button.alt, .woocommerce-checkout .woocommerce button.button.alt, .woocommerce-checkout .woocommerce input.button.alt {
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: #fff;
  background: #ba9662;
  padding: 14px 30px;
  border: 2px solid #ba9662;
  text-transform: uppercase;
  -webkit-transition: padding, color, background-color 0.5s ease;
  transition: padding, color, background-color 0.5s ease;
  display: inline-block;
  line-height: normal;
  margin: 5px 0;
}
.btn-gold:hover, .woocommerce-checkout .woocommerce #respond input#submit.alt:hover, .woocommerce-checkout .woocommerce a.button.alt:hover, .woocommerce-checkout .woocommerce button.button.alt:hover, .woocommerce-checkout .woocommerce input.button.alt:hover, .btn-gold:focus, .woocommerce-checkout .woocommerce #respond input#submit.alt:focus, .woocommerce-checkout .woocommerce a.button.alt:focus, .woocommerce-checkout .woocommerce button.button.alt:focus, .woocommerce-checkout .woocommerce input.button.alt:focus, .btn-gold:active, .woocommerce-checkout .woocommerce #respond input#submit.alt:active, .woocommerce-checkout .woocommerce a.button.alt:active, .woocommerce-checkout .woocommerce button.button.alt:active, .woocommerce-checkout .woocommerce input.button.alt:active {
  color: #fff !important;
  background: #9f7f52;
}

.btn-gold-outline {
  font: 17px "StrayhornMT-Bold", Arial, sans-serif;
  color: #ba9662;
  padding: 14px 30px;
  border: 2px solid #ba9662;
  text-transform: uppercase;
  -webkit-transition: padding, color, background-color 0.5s ease;
  transition: padding, color, background-color 0.5s ease;
  display: inline-block;
  line-height: normal;
  margin: 5px 0;
}
.btn-gold-outline:hover, .btn-gold-outline:focus, .btn-gold-outline:active {
  color: #fff !important;
  background: #ba9662;
}

.tour-button-width {
  display: block;
}

@media (min-width: 900px) {
  .tour-button-width {
    display: block;
    margin: 15px auto;
    width: 330px;
  }
}
.heading-brand-blue {
  text-transform: uppercase;
  color: #1b3975;
  margin: 15px 0;
}

.heading-brand-blue {
  text-transform: uppercase;
  color: #ba9662;
  margin: 15px 0;
}

.background-image-cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.tour-intro-text {
  color: #111 !important;
  margin-bottom: 3rem;
}
.tour-intro-text p {
  color: #111 !important;
}

body.logged-in.admin-bar header {
  top: 32px !important;
}

.woocommerce-page-container {
  height: 100%;
  min-height: 80vh;
}

.woocommerce-checkout #customer_details {
  padding: 5rem 4rem;
  background: #fff;
  margin-bottom: 4rem;
  box-shadow: 0px 0px 58px -1px rgba(0, 0, 0, 0.15);
}
.woocommerce-checkout #order_review {
  padding: 5rem 4rem;
  background: #fff;
  margin-bottom: 4rem;
  box-shadow: 0px 0px 58px -1px rgba(0, 0, 0, 0.15);
}
.woocommerce-checkout #add_payment_method #payment, .woocommerce-checkout .woocommerce-cart #payment, .woocommerce-checkout .woocommerce-checkout #payment {
  background: #ffffff;
  border-radius: 0px;
}
body.woocommerce-checkout.woocommerce-page,
body.woocommerce-cart.woocommerce-page {
  background-color: #fff;
  background-image: url(/wp-content/themes/kilchoman/img/news-bg-image-light.svg?v1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.woocommerce-checkout .main-page-wrapper,
.woocommerce-cart .main-page-wrapper {
  background: transparent;
}

.woocommerce-cart-form .card {
  position: relative;
  padding: 20px;
  background-color: #FFF;
  list-style: none;
  margin-bottom: 10px;
  box-shadow: 0px 0px 58px -1px rgba(0, 0, 0, 0.15);
}

.woocommerce table.shop_table {
  border: 0;
  margin: 0px;
  text-align: left;
  width: 100%;
  border-collapse: collapse;
  border-radius: 0px;
}

.woocommerce table.shop_table th {
  font-weight: 700;
  padding: 9px 12px;
  line-height: 1.5em;
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-remove {
  position: relative;
}

.woocommerce-cart .main-page-wrapper .woocommerce .cart-collaterals .cart_totals {
  box-shadow: 0px 0px 58px -1px rgba(0, 0, 0, 0.15);
}

.mc4wp-checkbox-woocommerce label {
  font-size: 2rem;
}
.mc4wp-checkbox-woocommerce input[type=checkbox] {
  margin-right: 5px;
}

.homepage-barely-to-bottle-signpost .detail_elements {
  background-color: #efeae8 !important;
}
.homepage-barely-to-bottle-signpost .b2b {
  max-width: 445px;
  margin: 20px auto;
}
.homepage-barely-to-bottle-signpost .b2b .st0 {
  fill: #ba9764;
}
.homepage-barely-to-bottle-signpost .b2b .st1 {
  fill: #c09a5e;
}

@media (min-width: 800px) and (max-height: 980px) {
  .homepage-barely-to-bottle-signpost .b2b svg {
    max-width: 250px;
  }
}
.animated-delay-100ms {
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.animated-delay-200ms {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}

.animated-delay-300ms {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

.animated-delay-400ms {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}

.animated-delay-500ms {
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}

.block-4.active .fullscreen_animate__animated {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (max-width: 750px) {
  .page-template-our_whisky .taste_graph {
    display: none;
  }
}
.home.fp-viewing-2 h3, .home.fp-viewing-2 p, .home.fp-viewing-2 .b2b, .home.fp-viewing-2 .button-cont {
  opacity: 0;
}

.home.fp-viewing-2 .active h3, .home.fp-viewing-2 .active p {
  -webkit-animation: opacityB 1s ease-in-out forwards;
          animation: opacityB 1s ease-in-out forwards;
}
.home.fp-viewing-2 .active h3 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.home.fp-viewing-2 .active p {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.home.fp-viewing-2 .active .b2b {
  -webkit-animation: zoomIn 1s ease-in;
          animation: zoomIn 1s ease-in;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 1;
}
.home.fp-viewing-2 .active .button-cont {
  -webkit-animation: opacityB 1s ease-in-out forwards;
          animation: opacityB 1s ease-in-out forwards;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.product .quantity input,
.single_variation_wrap .variations_button .qty {
  border-radius: 0;
  color: #fff !important;
  width: auto !important;
  padding: 15px 4px !important;
  line-height: normal;
  background: transparent;
  border: 1px solid #ba9662;
}

.card .quantity input {
  border: 1px solid #ba9662;
  border-radius: 0;
  color: #000 !important;
  width: auto !important;
  padding: 5px 4px !important;
  line-height: normal;
  background: transparent;
}

.video-card {
  margin-bottom: 2.5rem;
}

.product .selectric-label {
  color: #fff;
}

.product .selectric-label {
  height: auto;
  padding: 10px;
}

.product .selectric-button {
  height: 38px;
  width: 38px;
}

.product-add-to-cart-cont .price del {
  display: none;
}

.woocommerce div.product form.cart div.quantity {
  float: left !important;
  margin: 0 4px 0 0 !important;
}

.woocommerce div.product form.cart .quantity-table label {
  font-weight: 700;
}

.product-add-to-cart-cont {
  margin: 5px auto;
  max-width: 350px;
}

@media (min-width: 990px) {
  .product-add-to-cart-cont {
    margin: 5px 0;
    max-width: 350px;
  }
}
@media (max-width: 992px) {
  .page-template-contact .form_mainwrap {
    max-width: 90%;
    position: relative;
    background-color: #fff;
    display: block;
    width: 100%;
    box-shadow: 0px 0px 100px -1px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 100px -1px rgba(0, 0, 0, 0.15);
    margin: 0 auto 25px !important;
    height: auto !important;
    max-height: none;
  }
}
.outofstock .price {
  display: none;
}

.outofstock .amount {
  display: none;
}

.single-product p.price, .single-product span.price {
  font-size: 1.5em !important;
  color: #ba9662 !important;
  text-transform: uppercase !important;
  font-family: "StrayhornMT-Bold", Arial, sans-serif !important;
}

.showproduct_spot {
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  background-image: url(/wp-content/themes/kilchoman/img/news-bg-image-light.svg?v1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.showproduct_spot .element_holder {
  width: 22%;
  /* float: left; */
}

.showproduct_spot .element_holder .elem_detail {
  max-width: 77%;
  margin: 0 auto;
}

.showproduct_spot .element_holder .elem_detail h3 {
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: #424045;
  line-height: 1;
  margin-bottom: 0;
}

.showproduct_spot .element_holder .elem_detail h3 span {
  left: auto;
  right: -67px;
  top: -30px;
  bottom: 0;
}

.showproduct_spot .element_holder .elem_detail h3:after {
  bottom: 0;
  content: "";
  display: block;
  border-bottom: 2px dotted #ba9662;
  width: 70px;
  height: 2px;
  text-align: center;
  margin: 10px 0;
  /* position: absolute; */
  /* left: 50%; */
  /* transform: translatex(-50%); */
  margin-left: auto;
  margin-right: auto;
}

.showproduct_spot .element_holder .elem_detail p {
  font-size: 17px;
  color: #ba9662;
  margin-bottom: 0;
}

.showproduct_spot:before {
  content: "";
  display: block;
  background-color: #e2ddd7;
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: -50%;
  left: 0;
  right: 0;
  z-index: 1;
}

.home {
  /*
    .showproduct_spot:before {
      content: "";
      display: block;
      background: rgb(31, 80, 154);
      background: linear-gradient(56deg, rgba(31, 80, 154, 1) 0%, rgba(129, 114, 142, 1) 100%);
      height: 100%;
      width: 100%;
      position: absolute;
      bottom: -50%;
      left: 0;
      right: 0;
      z-index: 0;
    }
  */
}
.home .showproduct_spot .element_holder .elem_detail h3 {
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: #000;
  line-height: 1;
  margin-bottom: 0;
}
.home .showproduct_spot .element_holder .elem_detail p {
  font-size: 17px;
  color: #000e14;
  margin-bottom: 0;
}

.single-product .showproduct_spot .element_holder .elem_detail h3 {
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: #000;
  line-height: 1;
  margin-bottom: 0;
}
.single-product .showproduct_spot .element_holder .elem_detail p {
  font-size: 17px;
  color: #000e14;
  margin-bottom: 0;
}
.single-product .showproduct_spot:before {
  content: "";
  display: block;
  background-color: #e2ddd7;
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: -50%;
  left: 0;
  right: 0;
  z-index: 0;
}

@media (max-width: 767px) {
  .showproduct_spot {
    overflow: hidden;
    text-align: center;
    display: block !important;
    width: 100%;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    position: relative;
  }

  .home .showproduct_spot:before {
    content: "";
    display: block;
    background-color: #e2ddd7;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0 !important;
    left: 0;
    right: 0;
    z-index: 0;
  }

  .single-product .showproduct_spot:before {
    content: "";
    display: block;
    background-color: #e2ddd7;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0 !important;
    left: 0;
    right: 0;
    z-index: 0;
  }

  .home.showproduct_spot,
.whisky-related-gray.showproduct_spot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    padding-bottom: 5rem;
  }

  .showproduct_spot .element_holder {
    width: 100%;
  }

  .showproduct_spot .element_holder .elem_img img {
    width: 50%;
  }
}
.showproduct_spot .elem_img a {
  display: block;
}
.showproduct_spot .elem_img a img {
  max-height: 752px;
}

#ship-to-different-address {
  display: block;
  float: none;
}
#ship-to-different-address .checkbox input[type=checkbox], #ship-to-different-address .checkbox input[type=radio], #ship-to-different-address .radio input[type=checkbox], #ship-to-different-address .radio input[type=radio] {
  position: relative;
  opacity: 1;
}
#ship-to-different-address .checkbox span {
  border: none;
  width: 100%;
  height: auto !important;
}

#add_payment_method .checkout .col-2 h3#ship-to-different-address, .woocommerce-cart .checkout .col-2 h3#ship-to-different-address, .woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
  clear: none !important;
  display: block !important;
  float: none !important;
}

.payment_methods.methods li label {
  position: relative;
  padding-left: 32px;
  line-height: 20px;
  display: inline-block;
  cursor: pointer;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  font-size: 20px;
  color: #ba9662;
  width: 100%;
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: 0.92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #f5f5f5;
  color: #515151;
}

#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
  content: "";
  display: block;
  border: 1em solid #f5f5f5;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -0.75em;
  left: 0;
  margin: -1em 0 0 2em;
}

.wc-stripe-elements-field, .wc-stripe-iban-element-field {
  border: 1px solid #ddd;
  margin: 5px 0;
  padding: 5px;
  background-color: #fff;
  outline: 0;
  max-width: 400px;
}

#wc-stripe-cc-form label {
  position: relative;
  padding-left: 0px;
  line-height: normal;
  display: inline-block;
  cursor: pointer;
  font: 14px "StrayhornMT-Bold", Arial, sans-serif;
  font-size: 1.25rem;
  color: #ba9662;
  width: 100%;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
#wc-stripe-cc-form label:before {
  position: relative;
  left: 0;
  top: 0;
  border: 1px solid #ba9765;
  border-radius: 5px;
  content: none;
  width: 0px;
  height: 0px;
}
#wc-stripe-cc-form label:after {
  content: none;
  border-bottom: none;
  width: 0px;
  height: 0px;
  border-right: 0px solid #fff;
  position: relative;
  left: 0px;
  top: 0px;
  opacity: 0;
}

svg {
  -webkit-transform-box: fill-box;
  transform-box: fill-box;
}

svg * {
  -webkit-transform-box: fill-box;
  transform-box: fill-box;
}

.excluding-vat-text {
  font-size: 1.4rem !important;
  margin: -1px 0px 12px !important;
  display: block !important;
  color: #666 !important;
  text-decoration: none;
  font-style: normal !important;
  font-weight: normal !important;
  border: none !important;
  background: none !important;
  line-height: 1 !important;
}

a:focus.excluding-vat-text,
a:visited.excluding-vat-text,
a:hover.excluding-vat-text {
  text-decoration: none !important;
}

.single-product .excluding-vat-text {
  color: #c3c3c3 !important;
}

@media (min-width: 1000px) {
  .section2mainimg {
    background-position: right center !important;
    background-size: cover !important;
    background-color: #213f70 !important;
    background-repeat: no-repeat !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}
@media (min-width: 800px) and (min-height: 500px) and (max-height: 840px) {
  .btnpathgroup svg {
    height: 40px !important;
  }
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  display: none !important;
}

.woocommerce div.product p.price ins, .woocommerce div.product span.price ins {
  text-decoration: none !important;
}

.woocommerce-info a {
  color: #1b3975;
  text-decoration: underline;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
  font-weight: bold;
}
.woocommerce-info a:hover {
  color: #0c5983;
  text-decoration: underline;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    #svg-container .home-path path.svg-round {
      display: none !important;
    }
  }
}
#svg-container .home-path path.svg-round {
  display: none !important;
}

.footer-content {
  padding: 1.5rem 0;
}

@media (min-width: 800px) and (min-height: 480px) and (max-height: 767px) {
  .showproduct_spot .element_holder {
    z-index: 2;
    padding: 1rem 0 3rem !important;
  }

  .btnpathgroup svg {
    height: 20px;
  }

  .footer-content {
    padding: 2.5rem 0;
  }

  .block-5 .valign_parent .item_info {
    padding: 3rem 2%;
  }

  .product_showcaseDetail .lined_listtwo {
    margin: 3rem auto;
  }

  .listblocks li {
    margin-top: 2rem;
  }
}
@media (min-width: 800px) and (min-height: 768px) and (max-height: 920px) {
  .showproduct_spot .element_holder {
    width: 18%;
  }
}
body.home.fp-viewing-3 #fp-nav ul li a span {
  background: #000;
}

body.home.fp-viewing-3 #fp-nav ul li a.active span {
  background: #ba9966;
}

body.single-product.postid-737.fp-viewing-4 #fp-nav ul li a span,
body.single-product.postid-737.fp-viewing-2 #fp-nav ul li a span {
  background: #000;
}

body.single-product.postid-737.fp-viewing-4 #fp-nav ul li a.active span,
body.single-product.postid-737.fp-viewing-2 #fp-nav ul li a.active span {
  background: #ba9966;
}

.single-product.fp-viewing-1 .togglemenu button .bars .single-product.postid-737.fp-viewing-1 .togglemenu button .bars {
  background-color: #fff;
}
.single-product.fp-viewing-1 .togglemenu button .bars .single-product.postid-737.fp-viewing-1 header nav a {
  color: #fff;
}
.single-product.fp-viewing-1 .togglemenu button .bars .single-product.postid-737.fp-viewing-3 .toggle-menu, .single-product.fp-viewing-1 .togglemenu button .bars .single-product.postid-737.fp-viewing-2 .toggle-menu {
  color: #213f70;
}
.single-product.fp-viewing-1 .togglemenu button .bars .single-product.postid-737.fp-viewing-3 .togglemenu button .bars, .single-product.fp-viewing-1 .togglemenu button .bars .single-product.postid-737.fp-viewing-2 .togglemenu button .bars {
  color: #213f70;
}

.postid-737.fp-viewing-1 .togglemenu button .bars {
  background-color: #fff;
}
.postid-737.fp-viewing-1 header nav a {
  color: #fff;
}
.postid-737.fp-viewing-1 .menutxt {
  color: #fff;
}

.postid-737.fp-viewing-2 .togglemenu button .bars {
  background-color: #213f70;
}
.postid-737.fp-viewing-2 header nav a {
  color: #213f70;
}
.postid-737.fp-viewing-2 .menutxt {
  color: #213f70;
}

.postid-737.fp-viewing-3 .togglemenu button .bars {
  background-color: #213f70;
}
.postid-737.fp-viewing-3 header nav a {
  color: #213f70;
}
.postid-737.fp-viewing-3 .menutxt {
  color: #213f70;
}

.postid-14188.fp-viewing-1 .togglemenu button .bars {
  background-color: #fff;
}
.postid-14188.fp-viewing-1 header nav a {
  color: #213f70;
}
.postid-14188.fp-viewing-1 .menutxt {
  color: #fff;
}

.postid-14188.fp-viewing-2 .togglemenu button .bars {
  background-color: #213f70;
}
.postid-14188.fp-viewing-2 header nav a {
  color: #213f70;
}
.postid-14188.fp-viewing-2 .menutxt {
  color: #213f70;
}

.postid-14188.fp-viewing-3 .togglemenu button .bars {
  background-color: #213f70;
}
.postid-14188.fp-viewing-3 header nav a {
  color: #213f70;
}
.postid-14188.fp-viewing-3 .menutxt {
  color: #213f70;
}

.postid-642.fp-viewing-1 .togglemenu button .bars {
  background-color: #fff;
}
.postid-642.fp-viewing-1 header nav a {
  color: #fff;
}
.postid-642.fp-viewing-1 .menutxt {
  color: #fff;
}

.postid-642.fp-viewing-2 .togglemenu button .bars {
  background-color: #213f70;
}
.postid-642.fp-viewing-2 header nav a {
  color: #213f70;
}
.postid-642.fp-viewing-2 .menutxt {
  color: #213f70;
}

.postid-642.fp-viewing-3 .togglemenu button .bars {
  background-color: #213f70;
}
.postid-642.fp-viewing-3 header nav a {
  color: #213f70;
}
.postid-642.fp-viewing-3 .menutxt {
  color: #213f70;
}

.postid-565.fp-viewing-1 .togglemenu button .bars {
  background-color: #fff;
}
.postid-565.fp-viewing-1 header nav a {
  color: #fff;
}
.postid-565.fp-viewing-1 .menutxt {
  color: #fff;
}

.postid-565.fp-viewing-2 .togglemenu button .bars {
  background-color: #213f70;
}
.postid-565.fp-viewing-2 header nav a {
  color: #213f70;
}
.postid-565.fp-viewing-2 .menutxt {
  color: #213f70;
}

.postid-565.fp-viewing-3 .togglemenu button .bars {
  background-color: #fff;
}
.postid-565.fp-viewing-3 header nav a {
  color: #fff;
}
.postid-565.fp-viewing-3 .menutxt {
  color: #fff;
}

.postid-748.fp-viewing-1 .togglemenu button .bars {
  background-color: #fff;
}
.postid-748.fp-viewing-1 .menutxt {
  color: #fff;
}

.postid-748.fp-viewing-2 .togglemenu button .bars {
  background-color: #213f70;
}
.postid-748.fp-viewing-2 header nav a {
  color: #213f70;
}
.postid-748.fp-viewing-2 .menutxt {
  color: #213f70;
}

.product-cat-id-19.fp-viewing-1 .togglemenu button .bars {
  background-color: #fff;
}
.product-cat-id-19.fp-viewing-1 header nav a {
  color: #fff;
}
.product-cat-id-19.fp-viewing-1 .menutxt {
  color: #fff;
}

.product-cat-club.fp-viewing-1 .togglemenu button .bars {
  background-color: #fff;
}
.product-cat-club.fp-viewing-1 header nav a {
  color: #fff;
}
.product-cat-club.fp-viewing-1 .menutxt {
  color: #fff;
}