body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.react-spinner-loader-swing div {
  border-radius: 50%;
  float: left;
  height: 1em;
  width: 1em;
}
.react-spinner-loader-swing div:nth-of-type(1) {
  background: -webkit-linear-gradient(left, #385c78 0%, #325774 100%);
  background: linear-gradient(to right, #385c78 0%, #325774 100%);
}
.react-spinner-loader-swing div:nth-of-type(2) {
  background: -webkit-linear-gradient(left, #325774 0%, #47536a 100%);
  background: linear-gradient(to right, #325774 0%, #47536a 100%);
}
.react-spinner-loader-swing div:nth-of-type(3) {
  background: -webkit-linear-gradient(left, #4a5369 0%, #6b4d59 100%);
  background: linear-gradient(to right, #4a5369 0%, #6b4d59 100%);
}
.react-spinner-loader-swing div:nth-of-type(4) {
  background: -webkit-linear-gradient(left, #744c55 0%, #954646 100%);
  background: linear-gradient(to right, #744c55 0%, #954646 100%);
}
.react-spinner-loader-swing div:nth-of-type(5) {
  background: -webkit-linear-gradient(left, #9c4543 0%, #bb4034 100%);
  background: linear-gradient(to right, #9c4543 0%, #bb4034 100%);
}
.react-spinner-loader-swing div:nth-of-type(6) {
  background: -webkit-linear-gradient(left, #c33f31 0%, #d83b27 100%);
  background: linear-gradient(to right, #c33f31 0%, #d83b27 100%);
}
.react-spinner-loader-swing div:nth-of-type(7) {
  background: -webkit-linear-gradient(left, #da3b26 0%, #db412c 100%);
  background: linear-gradient(to right, #da3b26 0%, #db412c 100%);
}
.react-spinner-loader-shadow {
  clear: left;
  padding-top: 1.5em;
}
.react-spinner-loader-shadow div {
  -webkit-filter: blur(1px);
  filter: blur(1px);
  float: left;
  width: 1em;
  height: .25em;
  border-radius: 50%;
  background: #e3dbd2;
}
.react-spinner-loader-shadow .react-spinner-loader-shadow-l {
  background: #d5d8d6;
}
.react-spinner-loader-shadow .react-spinner-loader-shadow-r {
  background: #eed3ca;
}
@-webkit-keyframes ball-l {
  0%, 50% {
    -webkit-transform: rotate(0) translateX(0);
    transform: rotate(0) translateX(0);
  }
  100% {
    -webkit-transform: rotate(50deg) translateX(-2.5em);
    transform: rotate(50deg) translateX(-2.5em);
  }
}
@keyframes ball-l {
  0%, 50% {
    -webkit-transform: rotate(0) translate(0);
    transform: rotate(0) translateX(0);
  }
  100% {
    -webkit-transform: rotate(50deg) translateX(-2.5em);
    transform: rotate(50deg) translateX(-2.5em);
  }
}
@-webkit-keyframes ball-r {
  0% {
    -webkit-transform: rotate(-50deg) translateX(2.5em);
    transform: rotate(-50deg) translateX(2.5em);
  }
  50%,
  100% {
    -webkit-transform: rotate(0) translateX(0);
    transform: rotate(0) translateX(0);
  }
}
@keyframes ball-r {
  0% {
    -webkit-transform: rotate(-50deg) translateX(2.5em);
    transform: rotate(-50deg) translateX(2.5em);
  }
  50%,
  100% {
    -webkit-transform: rotate(0) translateX(0);
    transform: rotate(0) translateX(0)
  }
}
@-webkit-keyframes shadow-l-n {
  0%, 50% {
    opacity: .5;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: .125;
    -webkit-transform: translateX(-1.57em);
    transform: translateX(-1.75em);
  }
}
@keyframes shadow-l-n {
  0%, 50% {
    opacity: .5;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: .125;
    -webkit-transform: translateX(-1.75);
    transform: translateX(-1.75em);
  }
}
@-webkit-keyframes shadow-r-n {
  0% {
    opacity: .125;
    -webkit-transform: translateX(1.75em);
    transform: translateX(1.75em);
  }
  50%,
  100% {
    opacity: .5;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes shadow-r-n {
  0% {
    opacity: .125;
    -webkit-transform: translateX(1.75em);
    transform: translateX(1.75em);
  }
  50%,
  100% {
    opacity: .5;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.react-spinner-loader-swing-l {
  -webkit-animation: ball-l .425s ease-in-out infinite alternate;
  animation: ball-l .425s ease-in-out infinite alternate;
}
.react-spinner-loader-swing-r {
  -webkit-animation: ball-r .425s ease-in-out infinite alternate;
  animation: ball-r .425s ease-in-out infinite alternate;
}
.react-spinner-loader-shadow-l {
  -webkit-animation: shadow-l-n .425s ease-in-out infinite alternate;
  animation: shadow-l-n .425s ease-in-out infinite alternate;
}
.react-spinner-loader-shadow-r {
  -webkit-animation: shadow-r-n .425s ease-in-out infinite alternate;
  animation: shadow-r-n .425s ease-in-out infinite alternate;
}


.react-spinner-loader-svg svg {
  -webkit-transform-origin: 50% 65%;
          transform-origin: 50% 65%;
}

.react-spinner-loader-svg svg polygon {
  stroke-dasharray: 17;
  -webkit-animation: dash 2.5s cubic-bezier(0.35, 0.04, 0.63, 0.95) infinite;
          animation: dash 2.5s cubic-bezier(0.35, 0.04, 0.63, 0.95) infinite;
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 136;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 136;
  }
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


.react-spinner-loader-svg-calLoader {
  width: 230px;
  height: 230px;
  transform-origin: 115px 115px;
  animation: 1.4s linear infinite loader-spin;
}

.react-spinner-loader-svg-cal-loader__path {

  animation: 1.4s ease-in-out infinite loader-path;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loader-path {
  0% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }
  50% {
    stroke-dasharray: 0, 450, 10, 30, 10, 30, 10, 30, 10;
  }
  100% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }
}

@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;
}

.Toastify__toast-container{z-index:9999;-webkit-transform:translateZ(9999px);position:fixed;padding:4px;width:320px;box-sizing:border-box;color:#fff}.Toastify__toast-container--top-left{top:1em;left:1em}.Toastify__toast-container--top-center{top:1em;left:50%;margin-left:-160px}.Toastify__toast-container--top-right{top:1em;right:1em}.Toastify__toast-container--bottom-left{bottom:1em;left:1em}.Toastify__toast-container--bottom-center{bottom:1em;left:50%;margin-left:-160px}.Toastify__toast-container--bottom-right{bottom:1em;right:1em}@media only screen and (max-width:480px){.Toastify__toast-container{width:100vw;padding:0;left:0;margin:0}.Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right{top:0}.Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right{bottom:0}.Toastify__toast-container--rtl{right:0;left:auto}}.Toastify__toast{position:relative;min-height:64px;box-sizing:border-box;margin-bottom:1rem;padding:8px;border-radius:1px;box-shadow:0 1px 10px 0 rgba(0,0,0,.1),0 2px 15px 0 rgba(0,0,0,.05);display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;max-height:800px;overflow:hidden;font-family:sans-serif;cursor:pointer;direction:ltr}.Toastify__toast--rtl{direction:rtl}.Toastify__toast--default{background:#fff;color:#aaa}.Toastify__toast--info{background:#3498db}.Toastify__toast--success{background:#07bc0c}.Toastify__toast--warning{background:#f1c40f}.Toastify__toast--error{background:#e74c3c}.Toastify__toast-body{margin:auto 0;-ms-flex:1;flex:1}@media only screen and (max-width:480px){.Toastify__toast{margin-bottom:0}}.Toastify__close-button{color:#fff;font-weight:700;font-size:14px;background:transparent;outline:none;border:none;padding:0;cursor:pointer;opacity:.7;transition:.3s ease;-ms-flex-item-align:start;align-self:flex-start}.Toastify__close-button--default{color:#000;opacity:.3}.Toastify__close-button:focus,.Toastify__close-button:hover{opacity:1}@keyframes Toastify__trackProgress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}.Toastify__progress-bar{position:absolute;bottom:0;left:0;width:100%;height:5px;z-index:9999;opacity:.7;background-color:hsla(0,0%,100%,.7);transform-origin:left}.Toastify__progress-bar--animated{animation:Toastify__trackProgress linear 1 forwards}.Toastify__progress-bar--controlled{transition:transform .2s}.Toastify__progress-bar--rtl{right:0;left:auto;transform-origin:right}.Toastify__progress-bar--default{background:linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55)}@keyframes Toastify__bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}@keyframes Toastify__bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes Toastify__bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}@keyframes Toastify__bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes Toastify__bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}@keyframes Toastify__bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left{animation-name:Toastify__bounceInLeft}.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right{animation-name:Toastify__bounceInRight}.Toastify__bounce-enter--top-center{animation-name:Toastify__bounceInDown}.Toastify__bounce-enter--bottom-center{animation-name:Toastify__bounceInUp}.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left{animation-name:Toastify__bounceOutLeft}.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right{animation-name:Toastify__bounceOutRight}.Toastify__bounce-exit--top-center{animation-name:Toastify__bounceOutUp}.Toastify__bounce-exit--bottom-center{animation-name:Toastify__bounceOutDown}@keyframes Toastify__zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes Toastify__zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.Toastify__zoom-enter{animation-name:Toastify__zoomIn}.Toastify__zoom-exit{animation-name:Toastify__zoomOut}@keyframes Toastify__flipIn{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}@keyframes Toastify__flipOut{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.Toastify__flip-enter{animation-name:Toastify__flipIn}.Toastify__flip-exit{animation-name:Toastify__flipOut}@keyframes Toastify__slideInRight{0%{transform:translate3d(110%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInLeft{0%{transform:translate3d(-110%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInUp{0%{transform:translate3d(0,110%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInDown{0%{transform:translate3d(0,-110%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(110%,0,0)}}@keyframes Toastify__slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-110%,0,0)}}@keyframes Toastify__slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,500px,0)}}@keyframes Toastify__slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-500px,0)}}.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left{animation-name:Toastify__slideInLeft}.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right{animation-name:Toastify__slideInRight}.Toastify__slide-enter--top-center{animation-name:Toastify__slideInDown}.Toastify__slide-enter--bottom-center{animation-name:Toastify__slideInUp}.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left{animation-name:Toastify__slideOutLeft}.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right{animation-name:Toastify__slideOutRight}.Toastify__slide-exit--top-center{animation-name:Toastify__slideOutUp}.Toastify__slide-exit--bottom-center{animation-name:Toastify__slideOutDown}
/* Animation for image fade-in */
.fade-in-img {
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
}

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

.custom-modal .modal-dialog {
    width: 33%;
    height: auto;
    max-width: none;
    margin: auto;
}

.custom-modal .modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.balloons-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: transparent;
    z-index: 999;
    animation: balloon-float 10s linear infinite;
}

.flowers-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: transparent;
    z-index: 998;
    animation: flower-fall 10s linear infinite;
}

.fireworks-canvas {
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

@keyframes balloon-float {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

@keyframes flower-fall {
    0% { transform: translateY(-10%); }
    100% { transform: translateY(100%); }
}

.App {
  text-align: center;
}

.App-logo {
  animation: App-logo-spin infinite 20s linear;
  height: 80px;
}

.App-header {
  background-color: #222;
  height: 150px;
  padding: 20px;
  color: white;
}

.App-intro {
  font-size: large;
}

@keyframes App-logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* mega menu */
.mega-menu{margin:0 auto;padding:0;display:block;float:none;position:relative;z-index:999;max-width:1280px;width:100%;font-size:16px;font-family:Open Sans,sans-serif;min-height:50px;clear:both;box-sizing:border-box}@media screen and (max-width:767px){.mega-menu{float:left;margin:0;min-width:200px}}.mega-menu *{outline:none;list-style:none;text-decoration:none;box-sizing:border-box!important;font-family:Open Sans,sans-serif;font-weight:400;-webkit-tap-highlight-color:transparent;text-align:left}@media screen and (max-width:767px){.mega-menu *{word-break:break-all}}.mega-menu i.fa{font-family:FontAwesome}.mega-menu img{margin:0;padding:0;display:block;max-width:100%!important;float:left}.mega-menu input{border:none}.mega-menu>section.menu-list-items{margin:0;padding:0;display:block;float:left;width:100%;background-color:#333}@media screen and (min-width:768px){.mega-menu.menuFullWidth.vertical-left>section.menu-list-items{max-width:250px}.mega-menu.menuFullWidth.vertical-right>section.menu-list-items{max-width:250px}}.mega-menu .menu-logo{margin:0;padding:0;display:block;float:left;position:relative}@media screen and (min-width:768px){.mega-menu .menu-logo.menu-logo-align-right{float:right}}@media screen and (max-width:767px){.mega-menu .menu-logo{width:100%}}.mega-menu .menu-logo>li{margin:0;padding:0;display:block;float:left;font-size:1em;line-height:50px}@media screen and (max-width:767px){.mega-menu .menu-logo>li{width:100%;line-height:normal}}.mega-menu .menu-logo>li>a{margin:0;display:inline-block;float:left;width:100%;color:#fff;font-size:.8125em;padding:0 20px 0 45px;line-height:50px;transition:background-color 200ms ease}.mega-menu .menu-logo>li>a:hover{background-color:tomato}@media screen and (max-width:767px){.mega-menu .menu-logo>li>a{line-height:normal;padding-top:16px;padding-bottom:16px;position:relative;z-index:10;width:auto}}.mega-menu .menu-logo>li>a i.fa{padding:0;display:inline-block;font-size:1.25em;position:absolute;top:0;left:20px;bottom:0;margin:auto 0;line-height:50px}.mega-menu .menu-logo>li>a img{width:20px;height:20px;position:absolute;top:0;left:15px;bottom:0;margin:auto 0}.mega-menu .menu-links{margin:0;padding:0;display:block;float:left}@media screen and (max-width:767px){.mega-menu .menu-links{width:100%}}@media screen and (min-width:768px){.mega-menu .menu-links{display:block!important;max-height:100%!important;overflow:visible!important}.mega-menu .menu-links.menu-links-align-right{float:right}}.mega-menu .menu-links>li{margin:0;padding:0;display:block;float:left;transition:background-color 200ms ease;font-size:1em}@media screen and (max-width:767px){.mega-menu .menu-links>li{width:100%;position:relative;cursor:pointer;line-height:normal;z-index:50}.mega-menu .menu-links>li.activeTriggerMobile{background-color:tomato}}@media screen and (min-width:768px){.mega-menu .menu-links>li.activeTrigger{background-color:tomato}}.mega-menu .menu-links>li.active{background-color:tomato}.mega-menu .menu-links>li:hover{background-color:tomato}.mega-menu .menu-links>li>a{margin:0;padding:0 20px;display:inline-block;float:none;width:100%;color:#fff;font-size:.8125em;line-height:50px;position:relative}@media screen and (max-width:767px){.mega-menu .menu-links>li>a{width:auto;line-height:normal;padding-top:15px;padding-bottom:15px;position:static;padding-right:10px;z-index:20}}.mega-menu .menu-links>li>a i.fa{font-size:1em;line-height:.8125em;padding-right:2px}.mega-menu .menu-links>li>a i.fa.fa-indicator{padding-right:0;padding-left:2px}@media screen and (max-width:767px){.mega-menu .menu-links>li>a i.fa.fa-indicator{float:right;position:absolute;right:20px;top:0;bottom:0;line-height:50px;height:50px;z-index:-1}}.mega-menu .menu-social-bar{margin:0;display:block;float:left;padding:0 10px}@media screen and (min-width:768px){.mega-menu .menu-social-bar{display:block!important}}@media screen and (min-width:768px){.mega-menu .menu-social-bar.menu-social-bar-right{float:right}}@media screen and (max-width:767px){.mega-menu .menu-social-bar{width:100%;text-align:center}}.mega-menu .menu-social-bar>li{margin:0;padding:0;display:block;float:left;font-size:1em;line-height:50px}.mega-menu .menu-social-bar>li[data-color=blue]>a:hover{background-color:#3b5998}.mega-menu .menu-social-bar>li[data-color=sky-blue]>a:hover{background-color:#2caae1}.mega-menu .menu-social-bar>li[data-color=orange]>a:hover{background-color:#dd4b39}.mega-menu .menu-social-bar>li[data-color=red]>a:hover{background-color:#bd081c}@media screen and (max-width:767px){.mega-menu .menu-social-bar>li{float:none;display:inline-block;margin-bottom:-5px}}.mega-menu .menu-social-bar>li>a{margin:0;display:inline-block;float:left;width:100%;color:#fff;font-size:.875em;padding:0 5px;transition:background-color 200ms ease;line-height:50px}@media screen and (max-width:767px){.mega-menu .menu-social-bar>li>a{padding-left:10px;padding-right:10px}}.mega-menu .menu-social-bar>li>a i.fa{margin:0;padding:0;display:inline-block;float:left;width:100%;font-size:1.125em;line-height:50px}.mega-menu .menu-search-bar{margin:0;padding:0;display:block;float:right;position:relative;height:50px}@media screen and (min-width:768px){.mega-menu .menu-search-bar.menu-search-bar-left{float:left}}@media screen and (max-width:767px){.mega-menu .menu-search-bar{width:100%;position:absolute;top:0;right:0}}.mega-menu .menu-search-bar li,.mega-menu .menu-search-bar form,.mega-menu .menu-search-bar label{margin:0;padding:0;display:block;float:left;width:100%;line-height:50px}.mega-menu .menu-search-bar li:hover i.fa.fa-search{background:tomato}.mega-menu .menu-search-bar input{max-width:0;width:100%;margin:0;padding:5px 50px 5px 0;font-size:.8125em;transition:max-width 400ms ease,background 400ms ease,padding-left 400ms ease;height:50px;display:block;background:none;color:#fff;font-weight:400}.mega-menu .menu-search-bar input:focus{max-width:170px;background:tomato;padding-left:20px}@media screen and (max-width:767px){.mega-menu .menu-search-bar input:focus{max-width:100%;position:relative;z-index:20}}.mega-menu .menu-search-bar i.fa.fa-search{position:absolute;top:0;right:0;bottom:0;width:50px;text-align:center;line-height:50px;color:#fff;cursor:text;transition:background 200ms ease;z-index:40}.mega-menu .menu-search-bar :-moz-placeholder{opacity:1!important;color:#fff!important}.mega-menu .menu-search-bar ::-moz-placeholder{opacity:1!important;color:#fff!important}.mega-menu .menu-search-bar :-ms-input-placeholder{opacity:1!important;color:#fff!important}.mega-menu .menu-search-bar ::-webkit-input-placeholder{opacity:1!important;color:#fff!important}@media screen and (max-width:767px){.mega-menu .menu-search-bar.active input{padding-right:150px}.mega-menu .menu-search-bar.active i.fa.fa-search{right:70px}}.mega-menu .menu-mobile-collapse-trigger{margin:0;padding:0;height:50px;width:70px;background:#1a1a1a;display:none;position:absolute;top:0;right:0;z-index:100;float:right;cursor:pointer;transition:background 200ms ease}.mega-menu .menu-mobile-collapse-trigger:hover{background:black}.mega-menu .menu-mobile-collapse-trigger:before,.mega-menu .menu-mobile-collapse-trigger:after,.mega-menu .menu-mobile-collapse-trigger span{content:"";display:block;height:4px;width:40px;background:#fff;position:absolute;top:13px;left:0;right:0;margin:0 auto;transition:opacity 400ms ease,-webkit-transform 400ms ease 0s;transition:transform 400ms ease 0s,opacity 400ms ease;transition:transform 400ms ease 0s,opacity 400ms ease,-webkit-transform 400ms ease 0s;-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:0 50% 0;-ms-transform-origin:0 50% 0;transform-origin:0 50% 0}.mega-menu .menu-mobile-collapse-trigger:after{top:33px}.mega-menu .menu-mobile-collapse-trigger span{top:23px}.mega-menu .menu-mobile-collapse-trigger.active span{opacity:0}.mega-menu .menu-mobile-collapse-trigger.active:before{-webkit-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg)}.mega-menu .menu-mobile-collapse-trigger.active:after{-webkit-transform:rotate(-30deg);-ms-transform:rotate(-30deg);transform:rotate(-30deg)}@media screen and (max-width:767px){.mega-menu .menu-mobile-collapse-trigger{display:block}}.mega-menu .drop-down-multilevel{margin:0;padding:0;display:block;position:absolute;top:auto;left:auto;right:auto;z-index:50;width:100%;background:#fff;float:left;max-width:200px}.mega-menu .drop-down-multilevel *{color:#555}@media screen and (min-width:768px){.mega-menu .drop-down-multilevel{display:block!important;opacity:0;visibility:hidden}}@media screen and (max-width:767px){.mega-menu .drop-down-multilevel{max-width:100%!important;position:relative;left:0;top:0;padding:10px;display:none}}.mega-menu .drop-down-multilevel li{margin:0;padding:0;display:block;float:left;width:100%;position:relative;transition:background 200ms ease;z-index:50}.mega-menu .drop-down-multilevel li:hover{background:tomato}.mega-menu .drop-down-multilevel li:hover>a{color:#fff}.mega-menu .drop-down-multilevel li:hover>a i.fa{color:#fff}@media screen and (min-width:768px){.mega-menu .drop-down-multilevel li.activeTrigger{background:tomato}.mega-menu .drop-down-multilevel li.activeTrigger>a{color:#fff}.mega-menu .drop-down-multilevel li.activeTrigger>a i.fa{color:#fff}}@media screen and (max-width:767px){.mega-menu .drop-down-multilevel li.activeTriggerMobile{background:tomato}.mega-menu .drop-down-multilevel li.activeTriggerMobile>a{color:#fff}.mega-menu .drop-down-multilevel li.activeTriggerMobile>a i.fa{color:#fff}}.mega-menu .drop-down-multilevel a{margin:0;padding:15px 20px;font-size:.8125em;display:inline-block;float:left;width:100%;color:#555;transition:color 200ms ease;min-height:48px}@media screen and (max-width:767px){.mega-menu .drop-down-multilevel a{width:auto}}.mega-menu .drop-down-multilevel i.fa{float:left;line-height:1.375em;font-size:1em;display:block;padding-right:10px;transition:color 200ms ease}.mega-menu .drop-down-multilevel i.fa.fa-indicator{float:right;line-height:1.375em;font-size:1em;display:block;padding-left:10px;padding-right:0}@media screen and (max-width:767px){.mega-menu .drop-down-multilevel i.fa.fa-indicator{float:right;height:50px;position:absolute;top:0;right:20px;line-height:50px;z-index:-1}}.mega-menu .drop-down-multilevel .drop-down-multilevel{left:100%;top:0}@media screen and (min-width:768px){.mega-menu .drop-down-multilevel .drop-down-multilevel.left-side{left:-100%}}@media screen and (max-width:767px){.mega-menu .drop-down-multilevel .drop-down-multilevel{left:0;border:1px solid #ccc}}.mega-menu .drop-down,.mega-menu .drop-down-tab-bar{position:absolute;left:auto;top:auto;right:auto;background:#fff;float:left;padding:10px;z-index:999;display:block;cursor:default;overflow:hidden}.mega-menu .drop-down *,.mega-menu .drop-down-tab-bar *{color:#555}@media screen and (min-width:768px){.mega-menu .drop-down,.mega-menu .drop-down-tab-bar{display:block!important;opacity:0;visibility:hidden}.mega-menu.vertical-left.desktopTopFixed .drop-down,.mega-menu.vertical-left.desktopTopFixed .drop-down-tab-bar{margin-left:0!important;margin-right:0!important}.mega-menu.vertical-right.desktopTopFixed .drop-down,.mega-menu.vertical-right.desktopTopFixed .drop-down-tab-bar{margin-left:0!important;margin-right:0!important}}@media screen and (max-width:767px){.mega-menu .drop-down,.mega-menu .drop-down-tab-bar{width:100%!important;top:0;left:0;position:relative;display:none}}.mega-menu .drop-down .grid-row,.mega-menu .drop-down-tab-bar .grid-row{margin:0;padding:0;min-height:1px;width:100%;float:left;clear:both}.mega-menu .drop-down [class*=grid-col-],.mega-menu .drop-down-tab-bar [class*=grid-col-]{margin:0;float:left;padding:10px;position:relative}.mega-menu .drop-down .grid-col-1,.mega-menu .drop-down-tab-bar .grid-col-1{width:8.333333333333333%}.mega-menu .drop-down .grid-col-2,.mega-menu .drop-down-tab-bar .grid-col-2{width:16.66666666666667%}.mega-menu .drop-down .grid-col-3,.mega-menu .drop-down-tab-bar .grid-col-3{width:25%}.mega-menu .drop-down .grid-col-4,.mega-menu .drop-down-tab-bar .grid-col-4{width:33.33333333333333%}.mega-menu .drop-down .grid-col-5,.mega-menu .drop-down-tab-bar .grid-col-5{width:41.66666666666667%}.mega-menu .drop-down .grid-col-6,.mega-menu .drop-down-tab-bar .grid-col-6{width:50%}.mega-menu .drop-down .grid-col-7,.mega-menu .drop-down-tab-bar .grid-col-7{width:58.33333333333333%}.mega-menu .drop-down .grid-col-8,.mega-menu .drop-down-tab-bar .grid-col-8{width:66.66666666666667%}.mega-menu .drop-down .grid-col-9,.mega-menu .drop-down-tab-bar .grid-col-9{width:75%}.mega-menu .drop-down .grid-col-10,.mega-menu .drop-down-tab-bar .grid-col-10{width:83.33333333333333%}.mega-menu .drop-down .grid-col-11,.mega-menu .drop-down-tab-bar .grid-col-11{width:91.66666666666667%}.mega-menu .drop-down .grid-col-12,.mega-menu .drop-down-tab-bar .grid-col-12{width:100%}.mega-menu .drop-down.grid-col-1,.mega-menu .drop-down-tab-bar.grid-col-1{width:8.333333333333333%}.mega-menu .drop-down.grid-col-2,.mega-menu .drop-down-tab-bar.grid-col-2{width:16.66666666666667%}.mega-menu .drop-down.grid-col-3,.mega-menu .drop-down-tab-bar.grid-col-3{width:25%}.mega-menu .drop-down.grid-col-4,.mega-menu .drop-down-tab-bar.grid-col-4{width:33.33333333333333%}.mega-menu .drop-down.grid-col-5,.mega-menu .drop-down-tab-bar.grid-col-5{width:41.66666666666667%}.mega-menu .drop-down.grid-col-6,.mega-menu .drop-down-tab-bar.grid-col-6{width:50%}.mega-menu .drop-down.grid-col-7,.mega-menu .drop-down-tab-bar.grid-col-7{width:58.33333333333333%}.mega-menu .drop-down.grid-col-8,.mega-menu .drop-down-tab-bar.grid-col-8{width:66.66666666666667%}.mega-menu .drop-down.grid-col-9,.mega-menu .drop-down-tab-bar.grid-col-9{width:75%}.mega-menu .drop-down.grid-col-10,.mega-menu .drop-down-tab-bar.grid-col-10{width:83.33333333333333%}.mega-menu .drop-down.grid-col-11,.mega-menu .drop-down-tab-bar.grid-col-11{width:91.66666666666667%}.mega-menu .drop-down.grid-col-12,.mega-menu .drop-down-tab-bar.grid-col-12{width:100%;left:0}@media screen and (max-width:992px){.mega-menu .drop-down [class*=grid-col-],.mega-menu .drop-down-tab-bar [class*=grid-col-]{width:50%}}@media screen and (max-width:767px){.mega-menu .drop-down [class*=grid-col-],.mega-menu .drop-down-tab-bar [class*=grid-col-]{width:100%}}.mega-menu .drop-down.grid-demo span,.mega-menu .drop-down-tab-bar.grid-demo span{float:left;display:inline-block;width:100%;padding:4px 6px;background:#bfbfbf;font-size:.75em;color:#555}.mega-menu .drop-down .space-0,.mega-menu .drop-down-tab-bar .space-0{padding:0!important;margin:0!important}.mega-menu .drop-down a,.mega-menu .drop-down-tab-bar a{font-size:.8125em;display:inline-block;padding:8px 0;width:100%;max-width:100%}.mega-menu .drop-down h1,.mega-menu .drop-down h2,.mega-menu .drop-down h3,.mega-menu .drop-down h4,.mega-menu .drop-down h5,.mega-menu .drop-down h6,.mega-menu .drop-down-tab-bar h1,.mega-menu .drop-down-tab-bar h2,.mega-menu .drop-down-tab-bar h3,.mega-menu .drop-down-tab-bar h4,.mega-menu .drop-down-tab-bar h5,.mega-menu .drop-down-tab-bar h6{margin-top:0;font-weight:700}.mega-menu .drop-down h1,.mega-menu .drop-down-tab-bar h1{font-size:1.5em;line-height:1;padding-top:.53em;margin-bottom:.5em}.mega-menu .drop-down h2,.mega-menu .drop-down-tab-bar h2{font-size:1.375em;padding-top:.25em;margin-bottom:.5em}.mega-menu .drop-down h3,.mega-menu .drop-down-tab-bar h3{font-size:1.125em;line-height:1;padding-top:.35em;margin-bottom:.65em}.mega-menu .drop-down h4,.mega-menu .drop-down-tab-bar h4{font-size:1em;line-height:1.25;padding-top:.45em;margin-bottom:.8em}.mega-menu .drop-down h5,.mega-menu .drop-down-tab-bar h5{font-size:.875em;font-weight:700;padding-top:.6em;margin-bottom:.9em}.mega-menu .drop-down h6,.mega-menu .drop-down-tab-bar h6{font-size:.75em;font-weight:700;margin-bottom:0}.mega-menu .drop-down figure img,.mega-menu .drop-down-tab-bar figure img{width:100%;height:auto;display:block}.mega-menu .drop-down figcaption,.mega-menu .drop-down-tab-bar figcaption{font-size:small;font-style:italic;color:#666}.mega-menu .drop-down ul,.mega-menu .drop-down ol,.mega-menu .drop-down dl,.mega-menu .drop-down-tab-bar ul,.mega-menu .drop-down-tab-bar ol,.mega-menu .drop-down-tab-bar dl{padding:0;margin:0 0 14px}.mega-menu .drop-down form,.mega-menu .drop-down-tab-bar form{margin-bottom:1.5em}.mega-menu .drop-down form ul,.mega-menu .drop-down-tab-bar form ul{list-style:none none;margin:0;padding:0}.mega-menu .drop-down form ul li,.mega-menu .drop-down-tab-bar form ul li{margin-bottom:1.5em}.mega-menu .drop-down form ul li:before,.mega-menu .drop-down form ul li:after,.mega-menu .drop-down-tab-bar form ul li:before,.mega-menu .drop-down-tab-bar form ul li:after{content:"";display:table}.mega-menu .drop-down form ul li:after,.mega-menu .drop-down-tab-bar form ul li:after{clear:both}.mega-menu .drop-down fieldset,.mega-menu .drop-down-tab-bar fieldset{margin:0;padding:1.5em}.mega-menu .drop-down label,.mega-menu .drop-down-tab-bar label{display:block}.mega-menu .drop-down label.inline,.mega-menu .drop-down-tab-bar label.inline{display:inline;padding-right:24px}.mega-menu .drop-down input[type=text],.mega-menu .drop-down input[type=url],.mega-menu .drop-down input[type=email],.mega-menu .drop-down input[type=password],.mega-menu .drop-down input[type=search],.mega-menu .drop-down input[type=number],.mega-menu .drop-down input[type=date],.mega-menu .drop-down input[type=month],.mega-menu .drop-down input[type=week],.mega-menu .drop-down input[type=time],.mega-menu .drop-down input[type=datetime],.mega-menu .drop-down input[type=datetime-local],.mega-menu .drop-down input[type=tel],.mega-menu .drop-down textarea,.mega-menu .drop-down-tab-bar input[type=text],.mega-menu .drop-down-tab-bar input[type=url],.mega-menu .drop-down-tab-bar input[type=email],.mega-menu .drop-down-tab-bar input[type=password],.mega-menu .drop-down-tab-bar input[type=search],.mega-menu .drop-down-tab-bar input[type=number],.mega-menu .drop-down-tab-bar input[type=date],.mega-menu .drop-down-tab-bar input[type=month],.mega-menu .drop-down-tab-bar input[type=week],.mega-menu .drop-down-tab-bar input[type=time],.mega-menu .drop-down-tab-bar input[type=datetime],.mega-menu .drop-down-tab-bar input[type=datetime-local],.mega-menu .drop-down-tab-bar input[type=tel],.mega-menu .drop-down-tab-bar textarea{display:block;width:100%;margin:0 0 .75em;padding:10px;font-size:.8125em;border:1px solid #e8e8e8;line-height:1.5em;font-family:Open Sans,sans-serif}.mega-menu .drop-down select,.mega-menu .drop-down-tab-bar select{width:100%;height:2.1em;margin-bottom:.9em;border:1px solid #ccc;font-family:Open Sans,sans-serif}.mega-menu .drop-down input[type=range],.mega-menu .drop-down input[type=color],.mega-menu .drop-down-tab-bar input[type=range],.mega-menu .drop-down-tab-bar input[type=color]{vertical-align:middle;height:1.5em;width:100%;font-family:Open Sans,sans-serif}.mega-menu .drop-down input[type=range],.mega-menu .drop-down-tab-bar input[type=range]{height:1.4em}.mega-menu .drop-down input[type=color],.mega-menu .drop-down-tab-bar input[type=color]{width:1.5em;font-family:Open Sans,sans-serif}.mega-menu .drop-down input[type=time],.mega-menu .drop-down-tab-bar input[type=time]{margin:0 0 .55em}.mega-menu .drop-down progress,.mega-menu .drop-down meter,.mega-menu .drop-down-tab-bar progress,.mega-menu .drop-down-tab-bar meter{display:block;width:100%;height:1.5em}.mega-menu .drop-down table,.mega-menu .drop-down-tab-bar table{margin-bottom:1.4em;width:100%;border:1px solid #ccc}.mega-menu .drop-down thead,.mega-menu .drop-down-tab-bar thead{text-align:left;font-weight:700}.mega-menu .drop-down tbody tr:nth-child(even) td,.mega-menu .drop-down-tab-bar tbody tr:nth-child(even) td{background:#ddd}.mega-menu .drop-down tfoot,.mega-menu .drop-down-tab-bar tfoot{font-style:italic}.mega-menu .drop-down tfoot td,.mega-menu .drop-down tfoot th,.mega-menu .drop-down-tab-bar tfoot td,.mega-menu .drop-down-tab-bar tfoot th{padding:.75em 10px}.mega-menu .drop-down th,.mega-menu .drop-down td,.mega-menu .drop-down caption,.mega-menu .drop-down-tab-bar th,.mega-menu .drop-down-tab-bar td,.mega-menu .drop-down-tab-bar caption{border:1px solid #ccc}.mega-menu .drop-down td,.mega-menu .drop-down th,.mega-menu .drop-down-tab-bar td,.mega-menu .drop-down-tab-bar th{padding:0 10px;line-height:1.45em}.mega-menu .drop-down caption,.mega-menu .drop-down-tab-bar caption{border-bottom:0;padding:.75em 10px;line-height:1.45em;text-align:left;font-style:italic}.mega-menu .drop-down p,.mega-menu .drop-down-tab-bar p{margin:0 0 1.5em;font-size:.8125em}.mega-menu .drop-down blockquote,.mega-menu .drop-down-tab-bar blockquote{margin:0 1.5em 1.5em;font-style:italic}.mega-menu .drop-down mark,.mega-menu .drop-down-tab-bar mark{line-height:1.5;background:#78aace;color:#fff}.mega-menu .drop-down del,.mega-menu .drop-down-tab-bar del{color:#ddd}.mega-menu .drop-down code,.mega-menu .drop-down kbd,.mega-menu .drop-down pre,.mega-menu .drop-down samp,.mega-menu .drop-down-tab-bar code,.mega-menu .drop-down-tab-bar kbd,.mega-menu .drop-down-tab-bar pre,.mega-menu .drop-down-tab-bar samp{font-family:Open Sans,sans-serif}.mega-menu .drop-down ins,.mega-menu .drop-down small,.mega-menu .drop-down-tab-bar ins,.mega-menu .drop-down-tab-bar small{line-height:1.5}.mega-menu .drop-down kbd,.mega-menu .drop-down samp,.mega-menu .drop-down-tab-bar kbd,.mega-menu .drop-down-tab-bar samp{line-height:1.4}.mega-menu .drop-down hr,.mega-menu .drop-down-tab-bar hr{background:#ccc;color:#ccc;clear:both;float:none;width:100%;height:1px;margin:0 0 1.4em;border:none}.mega-menu .drop-down input[type=submit],.mega-menu .drop-down input[type=button],.mega-menu .drop-down button[type=submit],.mega-menu .drop-down button[type=reset],.mega-menu .drop-down-tab-bar input[type=submit],.mega-menu .drop-down-tab-bar input[type=button],.mega-menu .drop-down-tab-bar button[type=submit],.mega-menu .drop-down-tab-bar button[type=reset]{background:tomato;padding:10px 20px;margin:5px 10px 0 0;font-family:Open Sans,sans-serif;line-height:1.5em;font-weight:600;font-size:.8125em;color:#fff;border-radius:0;display:block;float:left;transition:background-color 200ms ease;border:none;text-align:center}.mega-menu .drop-down input[type=submit]:hover,.mega-menu .drop-down input[type=button]:hover,.mega-menu .drop-down button[type=submit]:hover,.mega-menu .drop-down button[type=reset]:hover,.mega-menu .drop-down-tab-bar input[type=submit]:hover,.mega-menu .drop-down-tab-bar input[type=button]:hover,.mega-menu .drop-down-tab-bar button[type=submit]:hover,.mega-menu .drop-down-tab-bar button[type=reset]:hover{background-color:#333}@media screen and (max-width:767px){.mega-menu .drop-down input[type=submit],.mega-menu .drop-down input[type=button],.mega-menu .drop-down button[type=submit],.mega-menu .drop-down button[type=reset],.mega-menu .drop-down-tab-bar input[type=submit],.mega-menu .drop-down-tab-bar input[type=button],.mega-menu .drop-down-tab-bar button[type=submit],.mega-menu .drop-down-tab-bar button[type=reset]{width:100%}}.mega-menu .drop-down a,.mega-menu .drop-down-tab-bar a{transition:color 200ms ease}.mega-menu .drop-down a:hover,.mega-menu .drop-down-tab-bar a:hover{color:tomato}@media screen and (max-width:767px){.mega-menu .drop-down a,.mega-menu .drop-down-tab-bar a{width:auto}}.mega-menu .drop-down ::-moz-selection,.mega-menu .drop-down-tab-bar ::-moz-selection{background:#ffb9ad}.mega-menu .drop-down ::selection,.mega-menu .drop-down-tab-bar ::selection{background:#ffb9ad}.mega-menu .drop-down .list-description span,.mega-menu .drop-down-tab-bar .list-description span{color:#aeaeae;display:inline-block;width:100%}.mega-menu .drop-down .image-description,.mega-menu .drop-down-tab-bar .image-description{position:relative}.mega-menu .drop-down .image-description img,.mega-menu .drop-down-tab-bar .image-description img{display:inline-block;float:left;max-width:100%;position:absolute;left:0;right:0;height:40px;width:40px}.mega-menu .drop-down .image-description a,.mega-menu .drop-down-tab-bar .image-description a{padding-left:50px}.mega-menu .drop-down .image-description span,.mega-menu .drop-down-tab-bar .image-description span{color:#aeaeae;display:inline-block;width:100%}.mega-menu .drop-down i.fa,.mega-menu .drop-down-tab-bar i.fa{padding-right:10px}.mega-menu .drop-down iframe,.mega-menu .drop-down-tab-bar iframe{width:100%;display:block;margin:0;padding:0;border:none}@media screen and (min-width:768px){.mega-menu .drop-down.offset-1,.mega-menu .drop-down-tab-bar.offset-1{margin-left:100px}.mega-menu .drop-down.offset-2,.mega-menu .drop-down-tab-bar.offset-2{margin-left:-150px}.mega-menu .drop-down.offset-3,.mega-menu .drop-down-tab-bar.offset-3{margin-left:-200px}.mega-menu .drop-down.offset-4,.mega-menu .drop-down-tab-bar.offset-4{margin-left:-250px}.mega-menu .drop-down.offset-5,.mega-menu .drop-down-tab-bar.offset-5{margin-left:-300px}}.mega-menu .drop-down .menu-contact-form,.mega-menu .drop-down-tab-bar .menu-contact-form{margin:0;display:block;float:left;width:100%;background:#f7f7f7;padding:20px}.mega-menu .drop-down .menu-contact-form input[type=submit],.mega-menu .drop-down .menu-contact-form input[type=reset],.mega-menu .drop-down-tab-bar .menu-contact-form input[type=submit],.mega-menu .drop-down-tab-bar .menu-contact-form input[type=reset]{text-align:center}.mega-menu .drop-down .menu-contact-form button i.fa,.mega-menu .drop-down-tab-bar .menu-contact-form button i.fa{display:none;color:#fff;line-height:normal;min-height:1px;height:auto;margin:0;padding:0;position:relative;left:.625em}.mega-menu .drop-down .menu-contact-form .nav_form_notification,.mega-menu .drop-down-tab-bar .menu-contact-form .nav_form_notification{display:block;width:100%;clear:both;font-size:.75em;padding:0;margin:0;position:relative;top:.625em;color:red}.mega-menu .mobileTriggerButton{margin:0;padding:0;position:absolute;top:0;left:0;right:0;height:50px;display:none;z-index:-1}@media screen and (max-width:767px){.mega-menu .mobileTriggerButton{display:block}}.mega-menu .desktopTriggerButton{margin:0;padding:0;position:absolute;top:0;left:0;right:0;bottom:0;z-index:10;display:block;opacity:.2}@media screen and (max-width:767px){.mega-menu .desktopTriggerButton{display:none}}@media screen and (min-width:768px){.mega-menu.desktopTopFixed .menu-list-items{position:fixed;top:0;left:0;right:0;max-width:100%;padding:0 5%}.desktopTopFixed.mega-menu.vertical-left .menu-list-items{max-width:250px}.desktopTopFixed.mega-menu.vertical-right .menu-list-items{max-width:250px;left:auto}.mega-menu.desktopTopFixed .menu-list-items .drop-down.grid-col-12,.mega-menu.desktopTopFixed .menu-list-items .drop-down-tab-bar.grid-col-12{width:90%;margin:0 5%}}@media screen and (max-width:767px){.mega-menu.mobileTopFixed .menu-list-items{position:fixed;top:0;left:0;right:0;max-width:100%}}.mega-menu .drop-down-tab-bar{margin:0;padding:10px;float:left}.mega-menu .drop-down-tab-bar li{float:left;margin:0;padding:0;display:block}@media screen and (max-width:767px){.mega-menu .drop-down-tab-bar li{width:100%;position:relative}}.mega-menu .drop-down-tab-bar a{float:left;width:100%;display:inline-block;padding:5px 10px;font-size:.8125em}@media screen and (max-width:767px){.mega-menu .drop-down-tab-bar a{width:auto;padding-right:20px}}.mega-menu .drop-down-tab-bar i.fa{display:inline-block;padding-right:5px}.mega-menu .drop-down-tab-bar i.fa.fa-indicator{padding-right:0;padding-left:10px;line-height:.8125em}@media screen and (max-width:767px){.mega-menu .drop-down-tab-bar i.fa.fa-indicator{float:right;position:absolute;right:12px;top:0;bottom:0;line-height:25px}}@media screen and (min-width:768px){.mega-menu .menu-links li.hoverTrigger>.drop-down.effect-scale,.mega-menu .menu-links li.hoverTrigger>.drop-down-tab-bar.effect-scale,.mega-menu .menu-links li.hoverTrigger>.drop-down-multilevel.effect-scale,.mega-menu .menu-links li.ClickTrigger .drop-down.effect-scale,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.effect-scale,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.effect-scale{-webkit-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8)}.mega-menu .menu-links li.hoverTrigger>.drop-down.effect-expand-top,.mega-menu .menu-links li.hoverTrigger>.drop-down-tab-bar.effect-expand-top,.mega-menu .menu-links li.hoverTrigger>.drop-down-multilevel.effect-expand-top,.mega-menu .menu-links li.ClickTrigger .drop-down.effect-expand-top,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.effect-expand-top,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.effect-expand-top{-webkit-transform:rotateX(90deg);transform:rotateX(90deg);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}.mega-menu .menu-links li.hoverTrigger>.drop-down.effect-expand-bottom,.mega-menu .menu-links li.hoverTrigger>.drop-down-tab-bar.effect-expand-bottom,.mega-menu .menu-links li.hoverTrigger>.drop-down-multilevel.effect-expand-bottom,.mega-menu .menu-links li.ClickTrigger .drop-down.effect-expand-bottom,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.effect-expand-bottom,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.effect-expand-bottom{-webkit-transform:rotateX(90deg);transform:rotateX(90deg);-webkit-transform-origin:0 100%;-ms-transform-origin:0 100%;transform-origin:0 100%}.mega-menu .menu-links li.hoverTrigger>.drop-down.effect-expand-left,.mega-menu .menu-links li.hoverTrigger>.drop-down-tab-bar.effect-expand-left,.mega-menu .menu-links li.hoverTrigger>.drop-down-multilevel.effect-expand-left,.mega-menu .menu-links li.ClickTrigger .drop-down.effect-expand-left,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.effect-expand-left,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.effect-expand-left{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}.mega-menu .menu-links li.hoverTrigger>.drop-down.effect-expand-right,.mega-menu .menu-links li.hoverTrigger>.drop-down-tab-bar.effect-expand-right,.mega-menu .menu-links li.hoverTrigger>.drop-down-multilevel.effect-expand-right,.mega-menu .menu-links li.ClickTrigger .drop-down.effect-expand-right,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.effect-expand-right,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.effect-expand-right{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);-webkit-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.mega-menu .menu-links li.hoverTrigger:hover>.drop-down,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-tab-bar,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-multilevel,.mega-menu .menu-links li.ClickTrigger .drop-down.active,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.active,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.active{transition-delay:200ms!important}.mega-menu .menu-links li.hoverTrigger:hover>.drop-down.effect-fade,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-tab-bar.effect-fade,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-multilevel.effect-fade,.mega-menu .menu-links li.ClickTrigger .drop-down.active.effect-fade,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.active.effect-fade,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.active.effect-fade{opacity:1;visibility:visible}.mega-menu .menu-links li.hoverTrigger:hover>.drop-down.effect-scale,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-tab-bar.effect-scale,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-multilevel.effect-scale,.mega-menu .menu-links li.ClickTrigger .drop-down.active.effect-scale,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.active.effect-scale,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.active.effect-scale{opacity:1;visibility:visible;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mega-menu .menu-links li.hoverTrigger:hover>.drop-down.effect-expand-top,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-tab-bar.effect-expand-top,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-multilevel.effect-expand-top,.mega-menu .menu-links li.ClickTrigger .drop-down.active.effect-expand-top,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.active.effect-expand-top,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.active.effect-expand-top{opacity:1;visibility:visible;-webkit-transform:rotateX(0deg);transform:rotateX(0deg)}.mega-menu .menu-links li.hoverTrigger:hover>.drop-down.effect-expand-bottom,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-tab-bar.effect-expand-bottom,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-multilevel.effect-expand-bottom,.mega-menu .menu-links li.ClickTrigger .drop-down.active.effect-expand-bottom,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.active.effect-expand-bottom,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.active.effect-expand-bottom{opacity:1;visibility:visible;-webkit-transform:rotateX(0deg);transform:rotateX(0deg)}.mega-menu .menu-links li.hoverTrigger:hover>.drop-down.effect-expand-left,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-tab-bar.effect-expand-left,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-multilevel.effect-expand-left,.mega-menu .menu-links li.ClickTrigger .drop-down.active.effect-expand-left,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.active.effect-expand-left,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.active.effect-expand-left{opacity:1;visibility:visible;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.mega-menu .menu-links li.hoverTrigger:hover>.drop-down.effect-expand-right,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-tab-bar.effect-expand-right,.mega-menu .menu-links li.hoverTrigger:hover>.drop-down-multilevel.effect-expand-right,.mega-menu .menu-links li.ClickTrigger .drop-down.active.effect-expand-right,.mega-menu .menu-links li.ClickTrigger .drop-down-tab-bar.active.effect-expand-right,.mega-menu .menu-links li.ClickTrigger .drop-down-multilevel.active.effect-expand-right{opacity:1;visibility:visible;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}}@media screen and (max-width:767px){.mega-menu .menu-links li .drop-down,.mega-menu .menu-links li .drop-down-tab-bar,.mega-menu .menu-links li .drop-down-multilevel{transition:none!important}}@media screen and (min-width:768px){.mega-menu.vertical-left,.mega-menu.vertical-right{float:left;width:auto;display:block;max-width:250px}.mega-menu.vertical-left .menu-logo,.mega-menu.vertical-right .menu-logo{clear:both;width:100%}.mega-menu.vertical-left .menu-logo>li,.mega-menu.vertical-right .menu-logo>li{width:100%}.mega-menu.vertical-left .menu-logo>li>a,.mega-menu.vertical-right .menu-logo>li>a{width:100%}.mega-menu.vertical-left .menu-links,.mega-menu.vertical-right .menu-links{clear:both;width:100%}.mega-menu.vertical-left .menu-links>li,.mega-menu.vertical-right .menu-links>li{clear:both;width:100%;position:relative}.mega-menu.vertical-left .menu-links>li>a,.mega-menu.vertical-right .menu-links>li>a{width:100%;position:relative;line-height:48px}.mega-menu.vertical-left .menu-links>li>a i.fa.fa-indicator,.mega-menu.vertical-right .menu-links>li>a i.fa.fa-indicator{float:right;line-height:48px}.mega-menu.vertical-left .menu-social-bar,.mega-menu.vertical-right .menu-social-bar{width:100%;text-align:center}.mega-menu.vertical-left .menu-social-bar>li,.mega-menu.vertical-right .menu-social-bar>li{display:inline-block;float:none}.mega-menu.vertical-left .menu-social-bar>li>a,.mega-menu.vertical-right .menu-social-bar>li>a{padding-left:10px;padding-right:10px}.mega-menu.vertical-left .drop-down-multilevel,.mega-menu.vertical-right .drop-down-multilevel{top:0;left:100%}.mega-menu.vertical-left .drop-down,.mega-menu.vertical-left .drop-down-tab-bar,.mega-menu.vertical-right .drop-down,.mega-menu.vertical-right .drop-down-tab-bar{left:100%;top:0;min-width:600px}.mega-menu.vertical-left .drop-down.grid-col-12,.mega-menu.vertical-left .drop-down-tab-bar.grid-col-12,.mega-menu.vertical-right .drop-down.grid-col-12,.mega-menu.vertical-right .drop-down-tab-bar.grid-col-12{min-width:1000px}.mega-menu.vertical-left .offset-1,.mega-menu.vertical-left .offset-2,.mega-menu.vertical-left .offset-3,.mega-menu.vertical-left .offset-4,.mega-menu.vertical-left .offset-5,.mega-menu.vertical-right .offset-1,.mega-menu.vertical-right .offset-2,.mega-menu.vertical-right .offset-3,.mega-menu.vertical-right .offset-4,.mega-menu.vertical-right .offset-5{margin-left:0}.mega-menu.vertical-left .offset-1-vertical,.mega-menu.vertical-right .offset-1-vertical{margin-top:-100px!important}.mega-menu.vertical-left .offset-2-vertical,.mega-menu.vertical-right .offset-2-vertical{margin-top:-150px!important}.mega-menu.vertical-left .offset-3-vertical,.mega-menu.vertical-right .offset-3-vertical{margin-top:-200px!important}.mega-menu.vertical-left .offset-4-vertical,.mega-menu.vertical-right .offset-4-vertical{margin-top:-250px!important}.mega-menu.vertical-left .offset-5-vertical,.mega-menu.vertical-right .offset-5-vertical{margin-top:-300px!important}.mega-menu.vertical-left.desktopTopFixed,.mega-menu.vertical-right.desktopTopFixed{float:left;right:auto;padding:0;height:100%}.mega-menu.vertical-left.desktopTopFixed .menu-list-items,.mega-menu.vertical-right.desktopTopFixed .menu-list-items{padding:0;height:100%}.mega-menu.vertical-left.desktopTopFixed .drop-down,.mega-menu.vertical-left.desktopTopFixed .drop-down-tab-bar,.mega-menu.vertical-right.desktopTopFixed .drop-down,.mega-menu.vertical-right.desktopTopFixed .drop-down-tab-bar{margin:0}.mega-menu.vertical-right{float:right}.mega-menu.vertical-right .drop-down-multilevel{left:auto;right:100%}}@media screen and (min-width:768px) and (min-width:768px){.mega-menu.vertical-right .drop-down-multilevel.left-side{left:100%}}@media screen and (min-width:768px){.mega-menu.vertical-right .drop-down,.mega-menu.vertical-right .drop-down-tab-bar{left:auto;right:100%}.mega-menu.vertical-right.desktopTopFixed{float:right;left:auto;right:0;padding:0;height:100%}}@media screen and (min-width:768px){.mega-menu.vertical-left .menu-search-bar,.mega-menu.vertical-right .menu-search-bar{width:100%}.mega-menu.vertical-left .menu-search-bar input,.mega-menu.vertical-left .menu-search-bar li,.mega-menu.vertical-left .menu-search-bar form,.mega-menu.vertical-left .menu-search-bar label,.mega-menu.vertical-right .menu-search-bar input,.mega-menu.vertical-right .menu-search-bar li,.mega-menu.vertical-right .menu-search-bar form,.mega-menu.vertical-right .menu-search-bar label{width:100%;max-width:100%;background:tomato;transition:none}.mega-menu.vertical-left .menu-search-bar input,.mega-menu.vertical-right .menu-search-bar input{padding-left:20px}}@media screen and (min-width:768px){.mega-menu.menuFullWidth{max-width:100%}}.mega-menu[data-color=blue-grey]>section.menu-list-items{background-color:#333}.mega-menu[data-color=blue-grey] .menu-logo>li>a:hover{background-color:#607d8b}@media screen and (max-width:767px){.mega-menu[data-color=blue-grey] .menu-links>li.activeTriggerMobile{background-color:#607d8b}}@media screen and (min-width:768px){.mega-menu[data-color=blue-grey] .menu-links>li.activeTrigger{background-color:#607d8b}}.mega-menu[data-color=blue-grey] .menu-links>li.active{background-color:#607d8b}.mega-menu[data-color=blue-grey] .menu-links>li:hover{background-color:#607d8b}.mega-menu[data-color=blue-grey] .menu-search-bar li:hover i.fa.fa-search{background:#607d8b}.mega-menu[data-color=blue-grey] .menu-search-bar input:focus{background:#607d8b}.mega-menu[data-color=blue-grey] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=blue-grey] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=blue-grey] .drop-down-multilevel li:hover{background:#607d8b}@media screen and (min-width:768px){.mega-menu[data-color=blue-grey] .drop-down-multilevel li.activeTrigger{background:#607d8b}}@media screen and (max-width:767px){.mega-menu[data-color=blue-grey] .drop-down-multilevel li.activeTriggerMobile{background:#607d8b}}.mega-menu[data-color=blue-grey] .drop-down input[type=submit],.mega-menu[data-color=blue-grey] .drop-down input[type=button],.mega-menu[data-color=blue-grey] .drop-down button[type=submit],.mega-menu[data-color=blue-grey] .drop-down button[type=reset],.mega-menu[data-color=blue-grey] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=blue-grey] .drop-down-tab-bar input[type=button],.mega-menu[data-color=blue-grey] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=blue-grey] .drop-down-tab-bar button[type=reset]{background:#607d8b}.mega-menu[data-color=blue-grey] .drop-down input[type=submit]:hover,.mega-menu[data-color=blue-grey] .drop-down input[type=button]:hover,.mega-menu[data-color=blue-grey] .drop-down button[type=submit]:hover,.mega-menu[data-color=blue-grey] .drop-down button[type=reset]:hover,.mega-menu[data-color=blue-grey] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=blue-grey] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=blue-grey] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=blue-grey] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=blue-grey] .drop-down a:hover,.mega-menu[data-color=blue-grey] .drop-down-tab-bar a:hover{color:#607d8b}.mega-menu[data-color=blue-grey] .drop-down ::-moz-selection,.mega-menu[data-color=blue-grey] .drop-down-tab-bar ::-moz-selection{background:#99aeb8}.mega-menu[data-color=blue-grey] .drop-down ::selection,.mega-menu[data-color=blue-grey] .drop-down-tab-bar ::selection{background:#99aeb8}@media screen and (min-width:768px){.mega-menu[data-color=blue-grey].vertical-left .menu-search-bar input,.mega-menu[data-color=blue-grey].vertical-left .menu-search-bar li,.mega-menu[data-color=blue-grey].vertical-left .menu-search-bar form,.mega-menu[data-color=blue-grey].vertical-left .menu-search-bar label,.mega-menu[data-color=blue-grey].vertical-right .menu-search-bar input,.mega-menu[data-color=blue-grey].vertical-right .menu-search-bar li,.mega-menu[data-color=blue-grey].vertical-right .menu-search-bar form,.mega-menu[data-color=blue-grey].vertical-right .menu-search-bar label{background:#607d8b}}.mega-menu[data-color=blue-grey-invert]>section.menu-list-items{background-color:#607d8b}.mega-menu[data-color=blue-grey-invert] .menu-logo>li>a:hover{background-color:#566f7c}@media screen and (max-width:767px){.mega-menu[data-color=blue-grey-invert] .menu-links>li.activeTriggerMobile{background-color:#566f7c}}@media screen and (min-width:768px){.mega-menu[data-color=blue-grey-invert] .menu-links>li.activeTrigger{background-color:#566f7c}}.mega-menu[data-color=blue-grey-invert] .menu-links>li.active{background-color:#566f7c}.mega-menu[data-color=blue-grey-invert] .menu-links>li:hover{background-color:#566f7c}.mega-menu[data-color=blue-grey-invert] .menu-search-bar li:hover i.fa.fa-search{background:#566f7c}.mega-menu[data-color=blue-grey-invert] .menu-search-bar input:focus{background:#566f7c}.mega-menu[data-color=blue-grey-invert] .menu-mobile-collapse-trigger{background:#4b626d}.mega-menu[data-color=blue-grey-invert] .menu-mobile-collapse-trigger:hover{background:#36474f}.mega-menu[data-color=blue-grey-invert] .drop-down-multilevel li:hover{background:#566f7c}@media screen and (min-width:768px){.mega-menu[data-color=blue-grey-invert] .drop-down-multilevel li.activeTrigger{background:#566f7c}}@media screen and (max-width:767px){.mega-menu[data-color=blue-grey-invert] .drop-down-multilevel li.activeTriggerMobile{background:#566f7c}}.mega-menu[data-color=blue-grey-invert] .drop-down input[type=submit],.mega-menu[data-color=blue-grey-invert] .drop-down input[type=button],.mega-menu[data-color=blue-grey-invert] .drop-down button[type=submit],.mega-menu[data-color=blue-grey-invert] .drop-down button[type=reset],.mega-menu[data-color=blue-grey-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=blue-grey-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=blue-grey-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=blue-grey-invert] .drop-down-tab-bar button[type=reset]{background:#566f7c}.mega-menu[data-color=blue-grey-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=blue-grey-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=blue-grey-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=blue-grey-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=blue-grey-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=blue-grey-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=blue-grey-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=blue-grey-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#607d8b}.mega-menu[data-color=blue-grey-invert] .drop-down a:hover,.mega-menu[data-color=blue-grey-invert] .drop-down-tab-bar a:hover{color:#566f7c}.mega-menu[data-color=blue-grey-invert] .drop-down ::-moz-selection,.mega-menu[data-color=blue-grey-invert] .drop-down-tab-bar ::-moz-selection{background:#8aa2ae}.mega-menu[data-color=blue-grey-invert] .drop-down ::selection,.mega-menu[data-color=blue-grey-invert] .drop-down-tab-bar ::selection{background:#8aa2ae}@media screen and (min-width:768px){.mega-menu[data-color=blue-grey-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=blue-grey-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=blue-grey-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=blue-grey-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=blue-grey-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=blue-grey-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=blue-grey-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=blue-grey-invert].vertical-right .menu-search-bar label{background:#566f7c}}.mega-menu[data-color=brown]>section.menu-list-items{background-color:#333}.mega-menu[data-color=brown] .menu-logo>li>a:hover{background-color:#795547}@media screen and (max-width:767px){.mega-menu[data-color=brown] .menu-links>li.activeTriggerMobile{background-color:#795547}}@media screen and (min-width:768px){.mega-menu[data-color=brown] .menu-links>li.activeTrigger{background-color:#795547}}.mega-menu[data-color=brown] .menu-links>li.active{background-color:#795547}.mega-menu[data-color=brown] .menu-links>li:hover{background-color:#795547}.mega-menu[data-color=brown] .menu-search-bar li:hover i.fa.fa-search{background:#795547}.mega-menu[data-color=brown] .menu-search-bar input:focus{background:#795547}.mega-menu[data-color=brown] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=brown] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=brown] .drop-down-multilevel li:hover{background:#795547}@media screen and (min-width:768px){.mega-menu[data-color=brown] .drop-down-multilevel li.activeTrigger{background:#795547}}@media screen and (max-width:767px){.mega-menu[data-color=brown] .drop-down-multilevel li.activeTriggerMobile{background:#795547}}.mega-menu[data-color=brown] .drop-down input[type=submit],.mega-menu[data-color=brown] .drop-down input[type=button],.mega-menu[data-color=brown] .drop-down button[type=submit],.mega-menu[data-color=brown] .drop-down button[type=reset],.mega-menu[data-color=brown] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=brown] .drop-down-tab-bar input[type=button],.mega-menu[data-color=brown] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=brown] .drop-down-tab-bar button[type=reset]{background:#795547}.mega-menu[data-color=brown] .drop-down input[type=submit]:hover,.mega-menu[data-color=brown] .drop-down input[type=button]:hover,.mega-menu[data-color=brown] .drop-down button[type=submit]:hover,.mega-menu[data-color=brown] .drop-down button[type=reset]:hover,.mega-menu[data-color=brown] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=brown] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=brown] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=brown] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=brown] .drop-down a:hover,.mega-menu[data-color=brown] .drop-down-tab-bar a:hover{color:#795547}.mega-menu[data-color=brown] .drop-down ::-moz-selection,.mega-menu[data-color=brown] .drop-down-tab-bar ::-moz-selection{background:#af8777}.mega-menu[data-color=brown] .drop-down ::selection,.mega-menu[data-color=brown] .drop-down-tab-bar ::selection{background:#af8777}@media screen and (min-width:768px){.mega-menu[data-color=brown].vertical-left .menu-search-bar input,.mega-menu[data-color=brown].vertical-left .menu-search-bar li,.mega-menu[data-color=brown].vertical-left .menu-search-bar form,.mega-menu[data-color=brown].vertical-left .menu-search-bar label,.mega-menu[data-color=brown].vertical-right .menu-search-bar input,.mega-menu[data-color=brown].vertical-right .menu-search-bar li,.mega-menu[data-color=brown].vertical-right .menu-search-bar form,.mega-menu[data-color=brown].vertical-right .menu-search-bar label{background:#795547}}.mega-menu[data-color=brown-invert]>section.menu-list-items{background-color:#896050}.mega-menu[data-color=brown-invert] .menu-logo>li>a:hover{background-color:#694a3e}@media screen and (max-width:767px){.mega-menu[data-color=brown-invert] .menu-links>li.activeTriggerMobile{background-color:#694a3e}}@media screen and (min-width:768px){.mega-menu[data-color=brown-invert] .menu-links>li.activeTrigger{background-color:#694a3e}}.mega-menu[data-color=brown-invert] .menu-links>li.active{background-color:#694a3e}.mega-menu[data-color=brown-invert] .menu-links>li:hover{background-color:#694a3e}.mega-menu[data-color=brown-invert] .menu-search-bar li:hover i.fa.fa-search{background:#694a3e}.mega-menu[data-color=brown-invert] .menu-search-bar input:focus{background:#694a3e}.mega-menu[data-color=brown-invert] .menu-mobile-collapse-trigger{background:#694a3e}.mega-menu[data-color=brown-invert] .menu-mobile-collapse-trigger:hover{background:#49332b}.mega-menu[data-color=brown-invert] .drop-down-multilevel li:hover{background:#694a3e}@media screen and (min-width:768px){.mega-menu[data-color=brown-invert] .drop-down-multilevel li.activeTrigger{background:#694a3e}}@media screen and (max-width:767px){.mega-menu[data-color=brown-invert] .drop-down-multilevel li.activeTriggerMobile{background:#694a3e}}.mega-menu[data-color=brown-invert] .drop-down input[type=submit],.mega-menu[data-color=brown-invert] .drop-down input[type=button],.mega-menu[data-color=brown-invert] .drop-down button[type=submit],.mega-menu[data-color=brown-invert] .drop-down button[type=reset],.mega-menu[data-color=brown-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=brown-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=brown-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=brown-invert] .drop-down-tab-bar button[type=reset]{background:#694a3e}.mega-menu[data-color=brown-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=brown-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=brown-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=brown-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=brown-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=brown-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=brown-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=brown-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#896050}.mega-menu[data-color=brown-invert] .drop-down a:hover,.mega-menu[data-color=brown-invert] .drop-down-tab-bar a:hover{color:#694a3e}.mega-menu[data-color=brown-invert] .drop-down ::-moz-selection,.mega-menu[data-color=brown-invert] .drop-down-tab-bar ::-moz-selection{background:#a67867}.mega-menu[data-color=brown-invert] .drop-down ::selection,.mega-menu[data-color=brown-invert] .drop-down-tab-bar ::selection{background:#a67867}@media screen and (min-width:768px){.mega-menu[data-color=brown-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=brown-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=brown-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=brown-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=brown-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=brown-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=brown-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=brown-invert].vertical-right .menu-search-bar label{background:#694a3e}}.mega-menu[data-color=cyan]>section.menu-list-items{background-color:#333}.mega-menu[data-color=cyan] .menu-logo>li>a:hover{background-color:#00bcd5}@media screen and (max-width:767px){.mega-menu[data-color=cyan] .menu-links>li.activeTriggerMobile{background-color:#00bcd5}}@media screen and (min-width:768px){.mega-menu[data-color=cyan] .menu-links>li.activeTrigger{background-color:#00bcd5}}.mega-menu[data-color=cyan] .menu-links>li.active{background-color:#00bcd5}.mega-menu[data-color=cyan] .menu-links>li:hover{background-color:#00bcd5}.mega-menu[data-color=cyan] .menu-search-bar li:hover i.fa.fa-search{background:#00bcd5}.mega-menu[data-color=cyan] .menu-search-bar input:focus{background:#00bcd5}.mega-menu[data-color=cyan] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=cyan] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=cyan] .drop-down-multilevel li:hover{background:#00bcd5}@media screen and (min-width:768px){.mega-menu[data-color=cyan] .drop-down-multilevel li.activeTrigger{background:#00bcd5}}@media screen and (max-width:767px){.mega-menu[data-color=cyan] .drop-down-multilevel li.activeTriggerMobile{background:#00bcd5}}.mega-menu[data-color=cyan] .drop-down input[type=submit],.mega-menu[data-color=cyan] .drop-down input[type=button],.mega-menu[data-color=cyan] .drop-down button[type=submit],.mega-menu[data-color=cyan] .drop-down button[type=reset],.mega-menu[data-color=cyan] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=cyan] .drop-down-tab-bar input[type=button],.mega-menu[data-color=cyan] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=cyan] .drop-down-tab-bar button[type=reset]{background:#00bcd5}.mega-menu[data-color=cyan] .drop-down input[type=submit]:hover,.mega-menu[data-color=cyan] .drop-down input[type=button]:hover,.mega-menu[data-color=cyan] .drop-down button[type=submit]:hover,.mega-menu[data-color=cyan] .drop-down button[type=reset]:hover,.mega-menu[data-color=cyan] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=cyan] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=cyan] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=cyan] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=cyan] .drop-down a:hover,.mega-menu[data-color=cyan] .drop-down-tab-bar a:hover{color:#00bcd5}.mega-menu[data-color=cyan] .drop-down ::-moz-selection,.mega-menu[data-color=cyan] .drop-down-tab-bar ::-moz-selection{background:#3ce8ff}.mega-menu[data-color=cyan] .drop-down ::selection,.mega-menu[data-color=cyan] .drop-down-tab-bar ::selection{background:#3ce8ff}@media screen and (min-width:768px){.mega-menu[data-color=cyan].vertical-left .menu-search-bar input,.mega-menu[data-color=cyan].vertical-left .menu-search-bar li,.mega-menu[data-color=cyan].vertical-left .menu-search-bar form,.mega-menu[data-color=cyan].vertical-left .menu-search-bar label,.mega-menu[data-color=cyan].vertical-right .menu-search-bar input,.mega-menu[data-color=cyan].vertical-right .menu-search-bar li,.mega-menu[data-color=cyan].vertical-right .menu-search-bar form,.mega-menu[data-color=cyan].vertical-right .menu-search-bar label{background:#00bcd5}}.mega-menu[data-color=cyan-invert]>section.menu-list-items{background-color:#00bcd5}.mega-menu[data-color=cyan-invert] .menu-logo>li>a:hover{background-color:#00a5bc}@media screen and (max-width:767px){.mega-menu[data-color=cyan-invert] .menu-links>li.activeTriggerMobile{background-color:#00a5bc}}@media screen and (min-width:768px){.mega-menu[data-color=cyan-invert] .menu-links>li.activeTrigger{background-color:#00a5bc}}.mega-menu[data-color=cyan-invert] .menu-links>li.active{background-color:#00a5bc}.mega-menu[data-color=cyan-invert] .menu-links>li:hover{background-color:#00a5bc}.mega-menu[data-color=cyan-invert] .menu-search-bar li:hover i.fa.fa-search{background:#00a5bc}.mega-menu[data-color=cyan-invert] .menu-search-bar input:focus{background:#00a5bc}.mega-menu[data-color=cyan-invert] .menu-mobile-collapse-trigger{background:#008fa2}.mega-menu[data-color=cyan-invert] .menu-mobile-collapse-trigger:hover{background:#00626f}.mega-menu[data-color=cyan-invert] .drop-down-multilevel li:hover{background:#00a5bc}@media screen and (min-width:768px){.mega-menu[data-color=cyan-invert] .drop-down-multilevel li.activeTrigger{background:#00a5bc}}@media screen and (max-width:767px){.mega-menu[data-color=cyan-invert] .drop-down-multilevel li.activeTriggerMobile{background:#00a5bc}}.mega-menu[data-color=cyan-invert] .drop-down input[type=submit],.mega-menu[data-color=cyan-invert] .drop-down input[type=button],.mega-menu[data-color=cyan-invert] .drop-down button[type=submit],.mega-menu[data-color=cyan-invert] .drop-down button[type=reset],.mega-menu[data-color=cyan-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=cyan-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=cyan-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=cyan-invert] .drop-down-tab-bar button[type=reset]{background:#00a5bc}.mega-menu[data-color=cyan-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=cyan-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=cyan-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=cyan-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=cyan-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=cyan-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=cyan-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=cyan-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#00bcd5}.mega-menu[data-color=cyan-invert] .drop-down a:hover,.mega-menu[data-color=cyan-invert] .drop-down-tab-bar a:hover{color:#00a5bc}.mega-menu[data-color=cyan-invert] .drop-down ::-moz-selection,.mega-menu[data-color=cyan-invert] .drop-down-tab-bar ::-moz-selection{background:#22e5ff}.mega-menu[data-color=cyan-invert] .drop-down ::selection,.mega-menu[data-color=cyan-invert] .drop-down-tab-bar ::selection{background:#22e5ff}@media screen and (min-width:768px){.mega-menu[data-color=cyan-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=cyan-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=cyan-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=cyan-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=cyan-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=cyan-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=cyan-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=cyan-invert].vertical-right .menu-search-bar label{background:#00a5bc}}.mega-menu[data-color=deep-orange]>section.menu-list-items{background-color:#333}.mega-menu[data-color=deep-orange] .menu-logo>li>a:hover{background-color:#fe5722}@media screen and (max-width:767px){.mega-menu[data-color=deep-orange] .menu-links>li.activeTriggerMobile{background-color:#fe5722}}@media screen and (min-width:768px){.mega-menu[data-color=deep-orange] .menu-links>li.activeTrigger{background-color:#fe5722}}.mega-menu[data-color=deep-orange] .menu-links>li.active{background-color:#fe5722}.mega-menu[data-color=deep-orange] .menu-links>li:hover{background-color:#fe5722}.mega-menu[data-color=deep-orange] .menu-search-bar li:hover i.fa.fa-search{background:#fe5722}.mega-menu[data-color=deep-orange] .menu-search-bar input:focus{background:#fe5722}.mega-menu[data-color=deep-orange] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=deep-orange] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=deep-orange] .drop-down-multilevel li:hover{background:#fe5722}@media screen and (min-width:768px){.mega-menu[data-color=deep-orange] .drop-down-multilevel li.activeTrigger{background:#fe5722}}@media screen and (max-width:767px){.mega-menu[data-color=deep-orange] .drop-down-multilevel li.activeTriggerMobile{background:#fe5722}}.mega-menu[data-color=deep-orange] .drop-down input[type=submit],.mega-menu[data-color=deep-orange] .drop-down input[type=button],.mega-menu[data-color=deep-orange] .drop-down button[type=submit],.mega-menu[data-color=deep-orange] .drop-down button[type=reset],.mega-menu[data-color=deep-orange] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=deep-orange] .drop-down-tab-bar input[type=button],.mega-menu[data-color=deep-orange] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=deep-orange] .drop-down-tab-bar button[type=reset]{background:#fe5722}.mega-menu[data-color=deep-orange] .drop-down input[type=submit]:hover,.mega-menu[data-color=deep-orange] .drop-down input[type=button]:hover,.mega-menu[data-color=deep-orange] .drop-down button[type=submit]:hover,.mega-menu[data-color=deep-orange] .drop-down button[type=reset]:hover,.mega-menu[data-color=deep-orange] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=deep-orange] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=deep-orange] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=deep-orange] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=deep-orange] .drop-down a:hover,.mega-menu[data-color=deep-orange] .drop-down-tab-bar a:hover{color:#fe5722}.mega-menu[data-color=deep-orange] .drop-down ::-moz-selection,.mega-menu[data-color=deep-orange] .drop-down-tab-bar ::-moz-selection{background:#fea488}.mega-menu[data-color=deep-orange] .drop-down ::selection,.mega-menu[data-color=deep-orange] .drop-down-tab-bar ::selection{background:#fea488}@media screen and (min-width:768px){.mega-menu[data-color=deep-orange].vertical-left .menu-search-bar input,.mega-menu[data-color=deep-orange].vertical-left .menu-search-bar li,.mega-menu[data-color=deep-orange].vertical-left .menu-search-bar form,.mega-menu[data-color=deep-orange].vertical-left .menu-search-bar label,.mega-menu[data-color=deep-orange].vertical-right .menu-search-bar input,.mega-menu[data-color=deep-orange].vertical-right .menu-search-bar li,.mega-menu[data-color=deep-orange].vertical-right .menu-search-bar form,.mega-menu[data-color=deep-orange].vertical-right .menu-search-bar label{background:#fe5722}}.mega-menu[data-color=deep-orange-invert]>section.menu-list-items{background-color:#fe6a3b}.mega-menu[data-color=deep-orange-invert] .menu-logo>li>a:hover{background-color:#fe4409}@media screen and (max-width:767px){.mega-menu[data-color=deep-orange-invert] .menu-links>li.activeTriggerMobile{background-color:#fe4409}}@media screen and (min-width:768px){.mega-menu[data-color=deep-orange-invert] .menu-links>li.activeTrigger{background-color:#fe4409}}.mega-menu[data-color=deep-orange-invert] .menu-links>li.active{background-color:#fe4409}.mega-menu[data-color=deep-orange-invert] .menu-links>li:hover{background-color:#fe4409}.mega-menu[data-color=deep-orange-invert] .menu-search-bar li:hover i.fa.fa-search{background:#fe4409}.mega-menu[data-color=deep-orange-invert] .menu-search-bar input:focus{background:#fe4409}.mega-menu[data-color=deep-orange-invert] .menu-mobile-collapse-trigger{background:#fe4409}.mega-menu[data-color=deep-orange-invert] .menu-mobile-collapse-trigger:hover{background:#d33301}.mega-menu[data-color=deep-orange-invert] .drop-down-multilevel li:hover{background:#fe4409}@media screen and (min-width:768px){.mega-menu[data-color=deep-orange-invert] .drop-down-multilevel li.activeTrigger{background:#fe4409}}@media screen and (max-width:767px){.mega-menu[data-color=deep-orange-invert] .drop-down-multilevel li.activeTriggerMobile{background:#fe4409}}.mega-menu[data-color=deep-orange-invert] .drop-down input[type=submit],.mega-menu[data-color=deep-orange-invert] .drop-down input[type=button],.mega-menu[data-color=deep-orange-invert] .drop-down button[type=submit],.mega-menu[data-color=deep-orange-invert] .drop-down button[type=reset],.mega-menu[data-color=deep-orange-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=deep-orange-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=deep-orange-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=deep-orange-invert] .drop-down-tab-bar button[type=reset]{background:#fe4409}.mega-menu[data-color=deep-orange-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=deep-orange-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=deep-orange-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=deep-orange-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=deep-orange-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=deep-orange-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=deep-orange-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=deep-orange-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#fe6a3b}.mega-menu[data-color=deep-orange-invert] .drop-down a:hover,.mega-menu[data-color=deep-orange-invert] .drop-down-tab-bar a:hover{color:#fe4409}.mega-menu[data-color=deep-orange-invert] .drop-down ::-moz-selection,.mega-menu[data-color=deep-orange-invert] .drop-down-tab-bar ::-moz-selection{background:#fe916e}.mega-menu[data-color=deep-orange-invert] .drop-down ::selection,.mega-menu[data-color=deep-orange-invert] .drop-down-tab-bar ::selection{background:#fe916e}@media screen and (min-width:768px){.mega-menu[data-color=deep-orange-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=deep-orange-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=deep-orange-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=deep-orange-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=deep-orange-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=deep-orange-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=deep-orange-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=deep-orange-invert].vertical-right .menu-search-bar label{background:#fe4409}}.mega-menu[data-color=deep-purple]>section.menu-list-items{background-color:#333}.mega-menu[data-color=deep-purple] .menu-logo>li>a:hover{background-color:#673bb7}@media screen and (max-width:767px){.mega-menu[data-color=deep-purple] .menu-links>li.activeTriggerMobile{background-color:#673bb7}}@media screen and (min-width:768px){.mega-menu[data-color=deep-purple] .menu-links>li.activeTrigger{background-color:#673bb7}}.mega-menu[data-color=deep-purple] .menu-links>li.active{background-color:#673bb7}.mega-menu[data-color=deep-purple] .menu-links>li:hover{background-color:#673bb7}.mega-menu[data-color=deep-purple] .menu-search-bar li:hover i.fa.fa-search{background:#673bb7}.mega-menu[data-color=deep-purple] .menu-search-bar input:focus{background:#673bb7}.mega-menu[data-color=deep-purple] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=deep-purple] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=deep-purple] .drop-down-multilevel li:hover{background:#673bb7}@media screen and (min-width:768px){.mega-menu[data-color=deep-purple] .drop-down-multilevel li.activeTrigger{background:#673bb7}}@media screen and (max-width:767px){.mega-menu[data-color=deep-purple] .drop-down-multilevel li.activeTriggerMobile{background:#673bb7}}.mega-menu[data-color=deep-purple] .drop-down input[type=submit],.mega-menu[data-color=deep-purple] .drop-down input[type=button],.mega-menu[data-color=deep-purple] .drop-down button[type=submit],.mega-menu[data-color=deep-purple] .drop-down button[type=reset],.mega-menu[data-color=deep-purple] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=deep-purple] .drop-down-tab-bar input[type=button],.mega-menu[data-color=deep-purple] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=deep-purple] .drop-down-tab-bar button[type=reset]{background:#673bb7}.mega-menu[data-color=deep-purple] .drop-down input[type=submit]:hover,.mega-menu[data-color=deep-purple] .drop-down input[type=button]:hover,.mega-menu[data-color=deep-purple] .drop-down button[type=submit]:hover,.mega-menu[data-color=deep-purple] .drop-down button[type=reset]:hover,.mega-menu[data-color=deep-purple] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=deep-purple] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=deep-purple] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=deep-purple] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=deep-purple] .drop-down a:hover,.mega-menu[data-color=deep-purple] .drop-down-tab-bar a:hover{color:#673bb7}.mega-menu[data-color=deep-purple] .drop-down ::-moz-selection,.mega-menu[data-color=deep-purple] .drop-down-tab-bar ::-moz-selection{background:#a081d7}.mega-menu[data-color=deep-purple] .drop-down ::selection,.mega-menu[data-color=deep-purple] .drop-down-tab-bar ::selection{background:#a081d7}@media screen and (min-width:768px){.mega-menu[data-color=deep-purple].vertical-left .menu-search-bar input,.mega-menu[data-color=deep-purple].vertical-left .menu-search-bar li,.mega-menu[data-color=deep-purple].vertical-left .menu-search-bar form,.mega-menu[data-color=deep-purple].vertical-left .menu-search-bar label,.mega-menu[data-color=deep-purple].vertical-right .menu-search-bar input,.mega-menu[data-color=deep-purple].vertical-right .menu-search-bar li,.mega-menu[data-color=deep-purple].vertical-right .menu-search-bar form,.mega-menu[data-color=deep-purple].vertical-right .menu-search-bar label{background:#673bb7}}.mega-menu[data-color=deep-purple-invert]>section.menu-list-items{background-color:#7448c4}.mega-menu[data-color=deep-purple-invert] .menu-logo>li>a:hover{background-color:#5c35a4}@media screen and (max-width:767px){.mega-menu[data-color=deep-purple-invert] .menu-links>li.activeTriggerMobile{background-color:#5c35a4}}@media screen and (min-width:768px){.mega-menu[data-color=deep-purple-invert] .menu-links>li.activeTrigger{background-color:#5c35a4}}.mega-menu[data-color=deep-purple-invert] .menu-links>li.active{background-color:#5c35a4}.mega-menu[data-color=deep-purple-invert] .menu-links>li:hover{background-color:#5c35a4}.mega-menu[data-color=deep-purple-invert] .menu-search-bar li:hover i.fa.fa-search{background:#5c35a4}.mega-menu[data-color=deep-purple-invert] .menu-search-bar input:focus{background:#5c35a4}.mega-menu[data-color=deep-purple-invert] .menu-mobile-collapse-trigger{background:#5c35a4}.mega-menu[data-color=deep-purple-invert] .menu-mobile-collapse-trigger:hover{background:#46287d}.mega-menu[data-color=deep-purple-invert] .drop-down-multilevel li:hover{background:#5c35a4}@media screen and (min-width:768px){.mega-menu[data-color=deep-purple-invert] .drop-down-multilevel li.activeTrigger{background:#5c35a4}}@media screen and (max-width:767px){.mega-menu[data-color=deep-purple-invert] .drop-down-multilevel li.activeTriggerMobile{background:#5c35a4}}.mega-menu[data-color=deep-purple-invert] .drop-down input[type=submit],.mega-menu[data-color=deep-purple-invert] .drop-down input[type=button],.mega-menu[data-color=deep-purple-invert] .drop-down button[type=submit],.mega-menu[data-color=deep-purple-invert] .drop-down button[type=reset],.mega-menu[data-color=deep-purple-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=deep-purple-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=deep-purple-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=deep-purple-invert] .drop-down-tab-bar button[type=reset]{background:#5c35a4}.mega-menu[data-color=deep-purple-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=deep-purple-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=deep-purple-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=deep-purple-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=deep-purple-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=deep-purple-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=deep-purple-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=deep-purple-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#7448c4}.mega-menu[data-color=deep-purple-invert] .drop-down a:hover,.mega-menu[data-color=deep-purple-invert] .drop-down-tab-bar a:hover{color:#5c35a4}.mega-menu[data-color=deep-purple-invert] .drop-down ::-moz-selection,.mega-menu[data-color=deep-purple-invert] .drop-down-tab-bar ::-moz-selection{background:#916ed0}.mega-menu[data-color=deep-purple-invert] .drop-down ::selection,.mega-menu[data-color=deep-purple-invert] .drop-down-tab-bar ::selection{background:#916ed0}@media screen and (min-width:768px){.mega-menu[data-color=deep-purple-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=deep-purple-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=deep-purple-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=deep-purple-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=deep-purple-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=deep-purple-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=deep-purple-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=deep-purple-invert].vertical-right .menu-search-bar label{background:#5c35a4}}.mega-menu[data-color=grey]>section.menu-list-items{background-color:#333}.mega-menu[data-color=grey] .menu-logo>li>a:hover{background-color:#787878}@media screen and (max-width:767px){.mega-menu[data-color=grey] .menu-links>li.activeTriggerMobile{background-color:#787878}}@media screen and (min-width:768px){.mega-menu[data-color=grey] .menu-links>li.activeTrigger{background-color:#787878}}.mega-menu[data-color=grey] .menu-links>li.active{background-color:#787878}.mega-menu[data-color=grey] .menu-links>li:hover{background-color:#787878}.mega-menu[data-color=grey] .menu-search-bar li:hover i.fa.fa-search{background:#787878}.mega-menu[data-color=grey] .menu-search-bar input:focus{background:#787878}.mega-menu[data-color=grey] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=grey] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=grey] .drop-down-multilevel li:hover{background:#787878}@media screen and (min-width:768px){.mega-menu[data-color=grey] .drop-down-multilevel li.activeTrigger{background:#787878}}@media screen and (max-width:767px){.mega-menu[data-color=grey] .drop-down-multilevel li.activeTriggerMobile{background:#787878}}.mega-menu[data-color=grey] .drop-down input[type=submit],.mega-menu[data-color=grey] .drop-down input[type=button],.mega-menu[data-color=grey] .drop-down button[type=submit],.mega-menu[data-color=grey] .drop-down button[type=reset],.mega-menu[data-color=grey] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=grey] .drop-down-tab-bar input[type=button],.mega-menu[data-color=grey] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=grey] .drop-down-tab-bar button[type=reset]{background:#787878}.mega-menu[data-color=grey] .drop-down input[type=submit]:hover,.mega-menu[data-color=grey] .drop-down input[type=button]:hover,.mega-menu[data-color=grey] .drop-down button[type=submit]:hover,.mega-menu[data-color=grey] .drop-down button[type=reset]:hover,.mega-menu[data-color=grey] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=grey] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=grey] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=grey] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=grey] .drop-down a:hover,.mega-menu[data-color=grey] .drop-down-tab-bar a:hover{color:#787878}.mega-menu[data-color=grey] .drop-down ::-moz-selection,.mega-menu[data-color=grey] .drop-down-tab-bar ::-moz-selection{background:#ababab}.mega-menu[data-color=grey] .drop-down ::selection,.mega-menu[data-color=grey] .drop-down-tab-bar ::selection{background:#ababab}@media screen and (min-width:768px){.mega-menu[data-color=grey].vertical-left .menu-search-bar input,.mega-menu[data-color=grey].vertical-left .menu-search-bar li,.mega-menu[data-color=grey].vertical-left .menu-search-bar form,.mega-menu[data-color=grey].vertical-left .menu-search-bar label,.mega-menu[data-color=grey].vertical-right .menu-search-bar input,.mega-menu[data-color=grey].vertical-right .menu-search-bar li,.mega-menu[data-color=grey].vertical-right .menu-search-bar form,.mega-menu[data-color=grey].vertical-right .menu-search-bar label{background:#787878}}.mega-menu[data-color=grey-invert]>section.menu-list-items{background-color:#787878}.mega-menu[data-color=grey-invert] .menu-logo>li>a:hover{background-color:#6b6b6b}@media screen and (max-width:767px){.mega-menu[data-color=grey-invert] .menu-links>li.activeTriggerMobile{background-color:#6b6b6b}}@media screen and (min-width:768px){.mega-menu[data-color=grey-invert] .menu-links>li.activeTrigger{background-color:#6b6b6b}}.mega-menu[data-color=grey-invert] .menu-links>li.active{background-color:#6b6b6b}.mega-menu[data-color=grey-invert] .menu-links>li:hover{background-color:#6b6b6b}.mega-menu[data-color=grey-invert] .menu-search-bar li:hover i.fa.fa-search{background:#6b6b6b}.mega-menu[data-color=grey-invert] .menu-search-bar input:focus{background:#6b6b6b}.mega-menu[data-color=grey-invert] .menu-mobile-collapse-trigger{background:#5e5e5e}.mega-menu[data-color=grey-invert] .menu-mobile-collapse-trigger:hover{background:#454545}.mega-menu[data-color=grey-invert] .drop-down-multilevel li:hover{background:#6b6b6b}@media screen and (min-width:768px){.mega-menu[data-color=grey-invert] .drop-down-multilevel li.activeTrigger{background:#6b6b6b}}@media screen and (max-width:767px){.mega-menu[data-color=grey-invert] .drop-down-multilevel li.activeTriggerMobile{background:#6b6b6b}}.mega-menu[data-color=grey-invert] .drop-down input[type=submit],.mega-menu[data-color=grey-invert] .drop-down input[type=button],.mega-menu[data-color=grey-invert] .drop-down button[type=submit],.mega-menu[data-color=grey-invert] .drop-down button[type=reset],.mega-menu[data-color=grey-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=grey-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=grey-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=grey-invert] .drop-down-tab-bar button[type=reset]{background:#6b6b6b}.mega-menu[data-color=grey-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=grey-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=grey-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=grey-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=grey-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=grey-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=grey-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=grey-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#787878}.mega-menu[data-color=grey-invert] .drop-down a:hover,.mega-menu[data-color=grey-invert] .drop-down-tab-bar a:hover{color:#6b6b6b}.mega-menu[data-color=grey-invert] .drop-down ::-moz-selection,.mega-menu[data-color=grey-invert] .drop-down-tab-bar ::-moz-selection{background:#9e9e9e}.mega-menu[data-color=grey-invert] .drop-down ::selection,.mega-menu[data-color=grey-invert] .drop-down-tab-bar ::selection{background:#9e9e9e}@media screen and (min-width:768px){.mega-menu[data-color=grey-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=grey-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=grey-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=grey-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=grey-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=grey-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=grey-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=grey-invert].vertical-right .menu-search-bar label{background:#6b6b6b}}.mega-menu[data-color=indigo]>section.menu-list-items{background-color:#333}.mega-menu[data-color=indigo] .menu-logo>li>a:hover{background-color:#3f51b5}@media screen and (max-width:767px){.mega-menu[data-color=indigo] .menu-links>li.activeTriggerMobile{background-color:#3f51b5}}@media screen and (min-width:768px){.mega-menu[data-color=indigo] .menu-links>li.activeTrigger{background-color:#3f51b5}}.mega-menu[data-color=indigo] .menu-links>li.active{background-color:#3f51b5}.mega-menu[data-color=indigo] .menu-links>li:hover{background-color:#3f51b5}.mega-menu[data-color=indigo] .menu-search-bar li:hover i.fa.fa-search{background:#3f51b5}.mega-menu[data-color=indigo] .menu-search-bar input:focus{background:#3f51b5}.mega-menu[data-color=indigo] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=indigo] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=indigo] .drop-down-multilevel li:hover{background:#3f51b5}@media screen and (min-width:768px){.mega-menu[data-color=indigo] .drop-down-multilevel li.activeTrigger{background:#3f51b5}}@media screen and (max-width:767px){.mega-menu[data-color=indigo] .drop-down-multilevel li.activeTriggerMobile{background:#3f51b5}}.mega-menu[data-color=indigo] .drop-down input[type=submit],.mega-menu[data-color=indigo] .drop-down input[type=button],.mega-menu[data-color=indigo] .drop-down button[type=submit],.mega-menu[data-color=indigo] .drop-down button[type=reset],.mega-menu[data-color=indigo] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=indigo] .drop-down-tab-bar input[type=button],.mega-menu[data-color=indigo] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=indigo] .drop-down-tab-bar button[type=reset]{background:#3f51b5}.mega-menu[data-color=indigo] .drop-down input[type=submit]:hover,.mega-menu[data-color=indigo] .drop-down input[type=button]:hover,.mega-menu[data-color=indigo] .drop-down button[type=submit]:hover,.mega-menu[data-color=indigo] .drop-down button[type=reset]:hover,.mega-menu[data-color=indigo] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=indigo] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=indigo] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=indigo] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=indigo] .drop-down a:hover,.mega-menu[data-color=indigo] .drop-down-tab-bar a:hover{color:#3f51b5}.mega-menu[data-color=indigo] .drop-down ::-moz-selection,.mega-menu[data-color=indigo] .drop-down-tab-bar ::-moz-selection{background:#8591d5}.mega-menu[data-color=indigo] .drop-down ::selection,.mega-menu[data-color=indigo] .drop-down-tab-bar ::selection{background:#8591d5}@media screen and (min-width:768px){.mega-menu[data-color=indigo].vertical-left .menu-search-bar input,.mega-menu[data-color=indigo].vertical-left .menu-search-bar li,.mega-menu[data-color=indigo].vertical-left .menu-search-bar form,.mega-menu[data-color=indigo].vertical-left .menu-search-bar label,.mega-menu[data-color=indigo].vertical-right .menu-search-bar input,.mega-menu[data-color=indigo].vertical-right .menu-search-bar li,.mega-menu[data-color=indigo].vertical-right .menu-search-bar form,.mega-menu[data-color=indigo].vertical-right .menu-search-bar label{background:#3f51b5}}.mega-menu[data-color=indigo-invert]>section.menu-list-items{background-color:#4d5ec1}.mega-menu[data-color=indigo-invert] .menu-logo>li>a:hover{background-color:#3849a2}@media screen and (max-width:767px){.mega-menu[data-color=indigo-invert] .menu-links>li.activeTriggerMobile{background-color:#3849a2}}@media screen and (min-width:768px){.mega-menu[data-color=indigo-invert] .menu-links>li.activeTrigger{background-color:#3849a2}}.mega-menu[data-color=indigo-invert] .menu-links>li.active{background-color:#3849a2}.mega-menu[data-color=indigo-invert] .menu-links>li:hover{background-color:#3849a2}.mega-menu[data-color=indigo-invert] .menu-search-bar li:hover i.fa.fa-search{background:#3849a2}.mega-menu[data-color=indigo-invert] .menu-search-bar input:focus{background:#3849a2}.mega-menu[data-color=indigo-invert] .menu-mobile-collapse-trigger{background:#3849a2}.mega-menu[data-color=indigo-invert] .menu-mobile-collapse-trigger:hover{background:#2b387c}.mega-menu[data-color=indigo-invert] .drop-down-multilevel li:hover{background:#3849a2}@media screen and (min-width:768px){.mega-menu[data-color=indigo-invert] .drop-down-multilevel li.activeTrigger{background:#3849a2}}@media screen and (max-width:767px){.mega-menu[data-color=indigo-invert] .drop-down-multilevel li.activeTriggerMobile{background:#3849a2}}.mega-menu[data-color=indigo-invert] .drop-down input[type=submit],.mega-menu[data-color=indigo-invert] .drop-down input[type=button],.mega-menu[data-color=indigo-invert] .drop-down button[type=submit],.mega-menu[data-color=indigo-invert] .drop-down button[type=reset],.mega-menu[data-color=indigo-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=indigo-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=indigo-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=indigo-invert] .drop-down-tab-bar button[type=reset]{background:#3849a2}.mega-menu[data-color=indigo-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=indigo-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=indigo-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=indigo-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=indigo-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=indigo-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=indigo-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=indigo-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#4d5ec1}.mega-menu[data-color=indigo-invert] .drop-down a:hover,.mega-menu[data-color=indigo-invert] .drop-down-tab-bar a:hover{color:#3849a2}.mega-menu[data-color=indigo-invert] .drop-down ::-moz-selection,.mega-menu[data-color=indigo-invert] .drop-down-tab-bar ::-moz-selection{background:#7280ce}.mega-menu[data-color=indigo-invert] .drop-down ::selection,.mega-menu[data-color=indigo-invert] .drop-down-tab-bar ::selection{background:#7280ce}@media screen and (min-width:768px){.mega-menu[data-color=indigo-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=indigo-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=indigo-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=indigo-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=indigo-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=indigo-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=indigo-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=indigo-invert].vertical-right .menu-search-bar label{background:#3849a2}}.mega-menu[data-color=light-blue]>section.menu-list-items{background-color:#333}.mega-menu[data-color=light-blue] .menu-logo>li>a:hover{background-color:#0af}@media screen and (max-width:767px){.mega-menu[data-color=light-blue] .menu-links>li.activeTriggerMobile{background-color:#0af}}@media screen and (min-width:768px){.mega-menu[data-color=light-blue] .menu-links>li.activeTrigger{background-color:#0af}}.mega-menu[data-color=light-blue] .menu-links>li.active{background-color:#0af}.mega-menu[data-color=light-blue] .menu-links>li:hover{background-color:#0af}.mega-menu[data-color=light-blue] .menu-search-bar li:hover i.fa.fa-search{background:#0af}.mega-menu[data-color=light-blue] .menu-search-bar input:focus{background:#0af}.mega-menu[data-color=light-blue] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=light-blue] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=light-blue] .drop-down-multilevel li:hover{background:#0af}@media screen and (min-width:768px){.mega-menu[data-color=light-blue] .drop-down-multilevel li.activeTrigger{background:#0af}}@media screen and (max-width:767px){.mega-menu[data-color=light-blue] .drop-down-multilevel li.activeTriggerMobile{background:#0af}}.mega-menu[data-color=light-blue] .drop-down input[type=submit],.mega-menu[data-color=light-blue] .drop-down input[type=button],.mega-menu[data-color=light-blue] .drop-down button[type=submit],.mega-menu[data-color=light-blue] .drop-down button[type=reset],.mega-menu[data-color=light-blue] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=light-blue] .drop-down-tab-bar input[type=button],.mega-menu[data-color=light-blue] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=light-blue] .drop-down-tab-bar button[type=reset]{background:#0af}.mega-menu[data-color=light-blue] .drop-down input[type=submit]:hover,.mega-menu[data-color=light-blue] .drop-down input[type=button]:hover,.mega-menu[data-color=light-blue] .drop-down button[type=submit]:hover,.mega-menu[data-color=light-blue] .drop-down button[type=reset]:hover,.mega-menu[data-color=light-blue] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=light-blue] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=light-blue] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=light-blue] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=light-blue] .drop-down a:hover,.mega-menu[data-color=light-blue] .drop-down-tab-bar a:hover{color:#0af}.mega-menu[data-color=light-blue] .drop-down ::-moz-selection,.mega-menu[data-color=light-blue] .drop-down-tab-bar ::-moz-selection{background:#6cf}.mega-menu[data-color=light-blue] .drop-down ::selection,.mega-menu[data-color=light-blue] .drop-down-tab-bar ::selection{background:#6cf}@media screen and (min-width:768px){.mega-menu[data-color=light-blue].vertical-left .menu-search-bar input,.mega-menu[data-color=light-blue].vertical-left .menu-search-bar li,.mega-menu[data-color=light-blue].vertical-left .menu-search-bar form,.mega-menu[data-color=light-blue].vertical-left .menu-search-bar label,.mega-menu[data-color=light-blue].vertical-right .menu-search-bar input,.mega-menu[data-color=light-blue].vertical-right .menu-search-bar li,.mega-menu[data-color=light-blue].vertical-right .menu-search-bar form,.mega-menu[data-color=light-blue].vertical-right .menu-search-bar label{background:#0af}}.mega-menu[data-color=light-blue-invert]>section.menu-list-items{background-color:#0af}.mega-menu[data-color=light-blue-invert] .menu-logo>li>a:hover{background-color:#008fd6}@media screen and (max-width:767px){.mega-menu[data-color=light-blue-invert] .menu-links>li.activeTriggerMobile{background-color:#008fd6}}@media screen and (min-width:768px){.mega-menu[data-color=light-blue-invert] .menu-links>li.activeTrigger{background-color:#008fd6}}.mega-menu[data-color=light-blue-invert] .menu-links>li.active{background-color:#008fd6}.mega-menu[data-color=light-blue-invert] .menu-links>li:hover{background-color:#008fd6}.mega-menu[data-color=light-blue-invert] .menu-search-bar li:hover i.fa.fa-search{background:#008fd6}.mega-menu[data-color=light-blue-invert] .menu-search-bar input:focus{background:#008fd6}.mega-menu[data-color=light-blue-invert] .menu-mobile-collapse-trigger{background:#08c}.mega-menu[data-color=light-blue-invert] .menu-mobile-collapse-trigger:hover{background:#069}.mega-menu[data-color=light-blue-invert] .drop-down-multilevel li:hover{background:#008fd6}@media screen and (min-width:768px){.mega-menu[data-color=light-blue-invert] .drop-down-multilevel li.activeTrigger{background:#008fd6}}@media screen and (max-width:767px){.mega-menu[data-color=light-blue-invert] .drop-down-multilevel li.activeTriggerMobile{background:#008fd6}}.mega-menu[data-color=light-blue-invert] .drop-down input[type=submit],.mega-menu[data-color=light-blue-invert] .drop-down input[type=button],.mega-menu[data-color=light-blue-invert] .drop-down button[type=submit],.mega-menu[data-color=light-blue-invert] .drop-down button[type=reset],.mega-menu[data-color=light-blue-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=light-blue-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=light-blue-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=light-blue-invert] .drop-down-tab-bar button[type=reset]{background:#008fd6}.mega-menu[data-color=light-blue-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=light-blue-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=light-blue-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=light-blue-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=light-blue-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=light-blue-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=light-blue-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=light-blue-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#0af}.mega-menu[data-color=light-blue-invert] .drop-down a:hover,.mega-menu[data-color=light-blue-invert] .drop-down-tab-bar a:hover{color:#008fd6}.mega-menu[data-color=light-blue-invert] .drop-down ::-moz-selection,.mega-menu[data-color=light-blue-invert] .drop-down-tab-bar ::-moz-selection{background:#3dbeff}.mega-menu[data-color=light-blue-invert] .drop-down ::selection,.mega-menu[data-color=light-blue-invert] .drop-down-tab-bar ::selection{background:#3dbeff}@media screen and (min-width:768px){.mega-menu[data-color=light-blue-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=light-blue-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=light-blue-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=light-blue-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=light-blue-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=light-blue-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=light-blue-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=light-blue-invert].vertical-right .menu-search-bar label{background:#008fd6}}.mega-menu[data-color=light-green]>section.menu-list-items{background-color:#333}.mega-menu[data-color=light-green] .menu-logo>li>a:hover{background-color:#8bc24a}@media screen and (max-width:767px){.mega-menu[data-color=light-green] .menu-links>li.activeTriggerMobile{background-color:#8bc24a}}@media screen and (min-width:768px){.mega-menu[data-color=light-green] .menu-links>li.activeTrigger{background-color:#8bc24a}}.mega-menu[data-color=light-green] .menu-links>li.active{background-color:#8bc24a}.mega-menu[data-color=light-green] .menu-links>li:hover{background-color:#8bc24a}.mega-menu[data-color=light-green] .menu-search-bar li:hover i.fa.fa-search{background:#8bc24a}.mega-menu[data-color=light-green] .menu-search-bar input:focus{background:#8bc24a}.mega-menu[data-color=light-green] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=light-green] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=light-green] .drop-down-multilevel li:hover{background:#8bc24a}@media screen and (min-width:768px){.mega-menu[data-color=light-green] .drop-down-multilevel li.activeTrigger{background:#8bc24a}}@media screen and (max-width:767px){.mega-menu[data-color=light-green] .drop-down-multilevel li.activeTriggerMobile{background:#8bc24a}}.mega-menu[data-color=light-green] .drop-down input[type=submit],.mega-menu[data-color=light-green] .drop-down input[type=button],.mega-menu[data-color=light-green] .drop-down button[type=submit],.mega-menu[data-color=light-green] .drop-down button[type=reset],.mega-menu[data-color=light-green] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=light-green] .drop-down-tab-bar input[type=button],.mega-menu[data-color=light-green] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=light-green] .drop-down-tab-bar button[type=reset]{background:#8bc24a}.mega-menu[data-color=light-green] .drop-down input[type=submit]:hover,.mega-menu[data-color=light-green] .drop-down input[type=button]:hover,.mega-menu[data-color=light-green] .drop-down button[type=submit]:hover,.mega-menu[data-color=light-green] .drop-down button[type=reset]:hover,.mega-menu[data-color=light-green] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=light-green] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=light-green] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=light-green] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=light-green] .drop-down a:hover,.mega-menu[data-color=light-green] .drop-down-tab-bar a:hover{color:#8bc24a}.mega-menu[data-color=light-green] .drop-down ::-moz-selection,.mega-menu[data-color=light-green] .drop-down-tab-bar ::-moz-selection{background:#bcdc96}.mega-menu[data-color=light-green] .drop-down ::selection,.mega-menu[data-color=light-green] .drop-down-tab-bar ::selection{background:#bcdc96}@media screen and (min-width:768px){.mega-menu[data-color=light-green].vertical-left .menu-search-bar input,.mega-menu[data-color=light-green].vertical-left .menu-search-bar li,.mega-menu[data-color=light-green].vertical-left .menu-search-bar form,.mega-menu[data-color=light-green].vertical-left .menu-search-bar label,.mega-menu[data-color=light-green].vertical-right .menu-search-bar input,.mega-menu[data-color=light-green].vertical-right .menu-search-bar li,.mega-menu[data-color=light-green].vertical-right .menu-search-bar form,.mega-menu[data-color=light-green].vertical-right .menu-search-bar label{background:#8bc24a}}.mega-menu[data-color=light-green-invert]>section.menu-list-items{background-color:#8bc24a}.mega-menu[data-color=light-green-invert] .menu-logo>li>a:hover{background-color:#7eb53d}@media screen and (max-width:767px){.mega-menu[data-color=light-green-invert] .menu-links>li.activeTriggerMobile{background-color:#7eb53d}}@media screen and (min-width:768px){.mega-menu[data-color=light-green-invert] .menu-links>li.activeTrigger{background-color:#7eb53d}}.mega-menu[data-color=light-green-invert] .menu-links>li.active{background-color:#7eb53d}.mega-menu[data-color=light-green-invert] .menu-links>li:hover{background-color:#7eb53d}.mega-menu[data-color=light-green-invert] .menu-search-bar li:hover i.fa.fa-search{background:#7eb53d}.mega-menu[data-color=light-green-invert] .menu-search-bar input:focus{background:#7eb53d}.mega-menu[data-color=light-green-invert] .menu-mobile-collapse-trigger{background:#71a237}.mega-menu[data-color=light-green-invert] .menu-mobile-collapse-trigger:hover{background:#567c2a}.mega-menu[data-color=light-green-invert] .drop-down-multilevel li:hover{background:#7eb53d}@media screen and (min-width:768px){.mega-menu[data-color=light-green-invert] .drop-down-multilevel li.activeTrigger{background:#7eb53d}}@media screen and (max-width:767px){.mega-menu[data-color=light-green-invert] .drop-down-multilevel li.activeTriggerMobile{background:#7eb53d}}.mega-menu[data-color=light-green-invert] .drop-down input[type=submit],.mega-menu[data-color=light-green-invert] .drop-down input[type=button],.mega-menu[data-color=light-green-invert] .drop-down button[type=submit],.mega-menu[data-color=light-green-invert] .drop-down button[type=reset],.mega-menu[data-color=light-green-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=light-green-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=light-green-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=light-green-invert] .drop-down-tab-bar button[type=reset]{background:#7eb53d}.mega-menu[data-color=light-green-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=light-green-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=light-green-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=light-green-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=light-green-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=light-green-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=light-green-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=light-green-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#8bc24a}.mega-menu[data-color=light-green-invert] .drop-down a:hover,.mega-menu[data-color=light-green-invert] .drop-down-tab-bar a:hover{color:#7eb53d}.mega-menu[data-color=light-green-invert] .drop-down ::-moz-selection,.mega-menu[data-color=light-green-invert] .drop-down-tab-bar ::-moz-selection{background:#b0d583}.mega-menu[data-color=light-green-invert] .drop-down ::selection,.mega-menu[data-color=light-green-invert] .drop-down-tab-bar ::selection{background:#b0d583}@media screen and (min-width:768px){.mega-menu[data-color=light-green-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=light-green-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=light-green-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=light-green-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=light-green-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=light-green-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=light-green-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=light-green-invert].vertical-right .menu-search-bar label{background:#7eb53d}}.mega-menu[data-color=lime]>section.menu-list-items{background-color:#333}.mega-menu[data-color=lime] .menu-logo>li>a:hover{background-color:#b2c022}@media screen and (max-width:767px){.mega-menu[data-color=lime] .menu-links>li.activeTriggerMobile{background-color:#b2c022}}@media screen and (min-width:768px){.mega-menu[data-color=lime] .menu-links>li.activeTrigger{background-color:#b2c022}}.mega-menu[data-color=lime] .menu-links>li.active{background-color:#b2c022}.mega-menu[data-color=lime] .menu-links>li:hover{background-color:#b2c022}.mega-menu[data-color=lime] .menu-search-bar li:hover i.fa.fa-search{background:#b2c022}.mega-menu[data-color=lime] .menu-search-bar input:focus{background:#b2c022}.mega-menu[data-color=lime] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=lime] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=lime] .drop-down-multilevel li:hover{background:#b2c022}@media screen and (min-width:768px){.mega-menu[data-color=lime] .drop-down-multilevel li.activeTrigger{background:#b2c022}}@media screen and (max-width:767px){.mega-menu[data-color=lime] .drop-down-multilevel li.activeTriggerMobile{background:#b2c022}}.mega-menu[data-color=lime] .drop-down input[type=submit],.mega-menu[data-color=lime] .drop-down input[type=button],.mega-menu[data-color=lime] .drop-down button[type=submit],.mega-menu[data-color=lime] .drop-down button[type=reset],.mega-menu[data-color=lime] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=lime] .drop-down-tab-bar input[type=button],.mega-menu[data-color=lime] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=lime] .drop-down-tab-bar button[type=reset]{background:#b2c022}.mega-menu[data-color=lime] .drop-down input[type=submit]:hover,.mega-menu[data-color=lime] .drop-down input[type=button]:hover,.mega-menu[data-color=lime] .drop-down button[type=submit]:hover,.mega-menu[data-color=lime] .drop-down button[type=reset]:hover,.mega-menu[data-color=lime] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=lime] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=lime] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=lime] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=lime] .drop-down a:hover,.mega-menu[data-color=lime] .drop-down-tab-bar a:hover{color:#b2c022}.mega-menu[data-color=lime] .drop-down ::-moz-selection,.mega-menu[data-color=lime] .drop-down-tab-bar ::-moz-selection{background:#d8e464}.mega-menu[data-color=lime] .drop-down ::selection,.mega-menu[data-color=lime] .drop-down-tab-bar ::selection{background:#d8e464}@media screen and (min-width:768px){.mega-menu[data-color=lime].vertical-left .menu-search-bar input,.mega-menu[data-color=lime].vertical-left .menu-search-bar li,.mega-menu[data-color=lime].vertical-left .menu-search-bar form,.mega-menu[data-color=lime].vertical-left .menu-search-bar label,.mega-menu[data-color=lime].vertical-right .menu-search-bar input,.mega-menu[data-color=lime].vertical-right .menu-search-bar li,.mega-menu[data-color=lime].vertical-right .menu-search-bar form,.mega-menu[data-color=lime].vertical-right .menu-search-bar label{background:#b2c022}}.mega-menu[data-color=lime-invert]>section.menu-list-items{background-color:#b2c022}.mega-menu[data-color=lime-invert] .menu-logo>li>a:hover{background-color:#9daa1e}@media screen and (max-width:767px){.mega-menu[data-color=lime-invert] .menu-links>li.activeTriggerMobile{background-color:#9daa1e}}@media screen and (min-width:768px){.mega-menu[data-color=lime-invert] .menu-links>li.activeTrigger{background-color:#9daa1e}}.mega-menu[data-color=lime-invert] .menu-links>li.active{background-color:#9daa1e}.mega-menu[data-color=lime-invert] .menu-links>li:hover{background-color:#9daa1e}.mega-menu[data-color=lime-invert] .menu-search-bar li:hover i.fa.fa-search{background:#9daa1e}.mega-menu[data-color=lime-invert] .menu-search-bar input:focus{background:#9daa1e}.mega-menu[data-color=lime-invert] .menu-mobile-collapse-trigger{background:#89951a}.mega-menu[data-color=lime-invert] .menu-mobile-collapse-trigger:hover{background:#616913}.mega-menu[data-color=lime-invert] .drop-down-multilevel li:hover{background:#9daa1e}@media screen and (min-width:768px){.mega-menu[data-color=lime-invert] .drop-down-multilevel li.activeTrigger{background:#9daa1e}}@media screen and (max-width:767px){.mega-menu[data-color=lime-invert] .drop-down-multilevel li.activeTriggerMobile{background:#9daa1e}}.mega-menu[data-color=lime-invert] .drop-down input[type=submit],.mega-menu[data-color=lime-invert] .drop-down input[type=button],.mega-menu[data-color=lime-invert] .drop-down button[type=submit],.mega-menu[data-color=lime-invert] .drop-down button[type=reset],.mega-menu[data-color=lime-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=lime-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=lime-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=lime-invert] .drop-down-tab-bar button[type=reset]{background:#9daa1e}.mega-menu[data-color=lime-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=lime-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=lime-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=lime-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=lime-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=lime-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=lime-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=lime-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#b2c022}.mega-menu[data-color=lime-invert] .drop-down a:hover,.mega-menu[data-color=lime-invert] .drop-down-tab-bar a:hover{color:#9daa1e}.mega-menu[data-color=lime-invert] .drop-down ::-moz-selection,.mega-menu[data-color=lime-invert] .drop-down-tab-bar ::-moz-selection{background:#d2e04f}.mega-menu[data-color=lime-invert] .drop-down ::selection,.mega-menu[data-color=lime-invert] .drop-down-tab-bar ::selection{background:#d2e04f}@media screen and (min-width:768px){.mega-menu[data-color=lime-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=lime-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=lime-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=lime-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=lime-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=lime-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=lime-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=lime-invert].vertical-right .menu-search-bar label{background:#9daa1e}}.mega-menu[data-color=orange]>section.menu-list-items{background-color:#333}.mega-menu[data-color=orange] .menu-logo>li>a:hover{background-color:#ff9700}@media screen and (max-width:767px){.mega-menu[data-color=orange] .menu-links>li.activeTriggerMobile{background-color:#ff9700}}@media screen and (min-width:768px){.mega-menu[data-color=orange] .menu-links>li.activeTrigger{background-color:#ff9700}}.mega-menu[data-color=orange] .menu-links>li.active{background-color:#ff9700}.mega-menu[data-color=orange] .menu-links>li:hover{background-color:#ff9700}.mega-menu[data-color=orange] .menu-search-bar li:hover i.fa.fa-search{background:#ff9700}.mega-menu[data-color=orange] .menu-search-bar input:focus{background:#ff9700}.mega-menu[data-color=orange] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=orange] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=orange] .drop-down-multilevel li:hover{background:#ff9700}@media screen and (min-width:768px){.mega-menu[data-color=orange] .drop-down-multilevel li.activeTrigger{background:#ff9700}}@media screen and (max-width:767px){.mega-menu[data-color=orange] .drop-down-multilevel li.activeTriggerMobile{background:#ff9700}}.mega-menu[data-color=orange] .drop-down input[type=submit],.mega-menu[data-color=orange] .drop-down input[type=button],.mega-menu[data-color=orange] .drop-down button[type=submit],.mega-menu[data-color=orange] .drop-down button[type=reset],.mega-menu[data-color=orange] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=orange] .drop-down-tab-bar input[type=button],.mega-menu[data-color=orange] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=orange] .drop-down-tab-bar button[type=reset]{background:#ff9700}.mega-menu[data-color=orange] .drop-down input[type=submit]:hover,.mega-menu[data-color=orange] .drop-down input[type=button]:hover,.mega-menu[data-color=orange] .drop-down button[type=submit]:hover,.mega-menu[data-color=orange] .drop-down button[type=reset]:hover,.mega-menu[data-color=orange] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=orange] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=orange] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=orange] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=orange] .drop-down a:hover,.mega-menu[data-color=orange] .drop-down-tab-bar a:hover{color:#ff9700}.mega-menu[data-color=orange] .drop-down ::-moz-selection,.mega-menu[data-color=orange] .drop-down-tab-bar ::-moz-selection{background:#ffc166}.mega-menu[data-color=orange] .drop-down ::selection,.mega-menu[data-color=orange] .drop-down-tab-bar ::selection{background:#ffc166}@media screen and (min-width:768px){.mega-menu[data-color=orange].vertical-left .menu-search-bar input,.mega-menu[data-color=orange].vertical-left .menu-search-bar li,.mega-menu[data-color=orange].vertical-left .menu-search-bar form,.mega-menu[data-color=orange].vertical-left .menu-search-bar label,.mega-menu[data-color=orange].vertical-right .menu-search-bar input,.mega-menu[data-color=orange].vertical-right .menu-search-bar li,.mega-menu[data-color=orange].vertical-right .menu-search-bar form,.mega-menu[data-color=orange].vertical-right .menu-search-bar label{background:#ff9700}}.mega-menu[data-color=orange-invert]>section.menu-list-items{background-color:#ff9700}.mega-menu[data-color=orange-invert] .menu-logo>li>a:hover{background-color:#eb8b00}@media screen and (max-width:767px){.mega-menu[data-color=orange-invert] .menu-links>li.activeTriggerMobile{background-color:#eb8b00}}@media screen and (min-width:768px){.mega-menu[data-color=orange-invert] .menu-links>li.activeTrigger{background-color:#eb8b00}}.mega-menu[data-color=orange-invert] .menu-links>li.active{background-color:#eb8b00}.mega-menu[data-color=orange-invert] .menu-links>li:hover{background-color:#eb8b00}.mega-menu[data-color=orange-invert] .menu-search-bar li:hover i.fa.fa-search{background:#eb8b00}.mega-menu[data-color=orange-invert] .menu-search-bar input:focus{background:#eb8b00}.mega-menu[data-color=orange-invert] .menu-mobile-collapse-trigger{background:#cc7900}.mega-menu[data-color=orange-invert] .menu-mobile-collapse-trigger:hover{background:#995b00}.mega-menu[data-color=orange-invert] .drop-down-multilevel li:hover{background:#eb8b00}@media screen and (min-width:768px){.mega-menu[data-color=orange-invert] .drop-down-multilevel li.activeTrigger{background:#eb8b00}}@media screen and (max-width:767px){.mega-menu[data-color=orange-invert] .drop-down-multilevel li.activeTriggerMobile{background:#eb8b00}}.mega-menu[data-color=orange-invert] .drop-down input[type=submit],.mega-menu[data-color=orange-invert] .drop-down input[type=button],.mega-menu[data-color=orange-invert] .drop-down button[type=submit],.mega-menu[data-color=orange-invert] .drop-down button[type=reset],.mega-menu[data-color=orange-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=orange-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=orange-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=orange-invert] .drop-down-tab-bar button[type=reset]{background:#eb8b00}.mega-menu[data-color=orange-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=orange-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=orange-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=orange-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=orange-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=orange-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=orange-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=orange-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#ff9700}.mega-menu[data-color=orange-invert] .drop-down a:hover,.mega-menu[data-color=orange-invert] .drop-down-tab-bar a:hover{color:#eb8b00}.mega-menu[data-color=orange-invert] .drop-down ::-moz-selection,.mega-menu[data-color=orange-invert] .drop-down-tab-bar ::-moz-selection{background:#ffb852}.mega-menu[data-color=orange-invert] .drop-down ::selection,.mega-menu[data-color=orange-invert] .drop-down-tab-bar ::selection{background:#ffb852}@media screen and (min-width:768px){.mega-menu[data-color=orange-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=orange-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=orange-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=orange-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=orange-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=orange-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=orange-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=orange-invert].vertical-right .menu-search-bar label{background:#eb8b00}}.mega-menu[data-color=pink]>section.menu-list-items{background-color:#333}.mega-menu[data-color=pink] .menu-logo>li>a:hover{background-color:#ea1e63}@media screen and (max-width:767px){.mega-menu[data-color=pink] .menu-links>li.activeTriggerMobile{background-color:#ea1e63}}@media screen and (min-width:768px){.mega-menu[data-color=pink] .menu-links>li.activeTrigger{background-color:#ea1e63}}.mega-menu[data-color=pink] .menu-links>li.active{background-color:#ea1e63}.mega-menu[data-color=pink] .menu-links>li:hover{background-color:#ea1e63}.mega-menu[data-color=pink] .menu-search-bar li:hover i.fa.fa-search{background:#ea1e63}.mega-menu[data-color=pink] .menu-search-bar input:focus{background:#ea1e63}.mega-menu[data-color=pink] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=pink] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=pink] .drop-down-multilevel li:hover{background:#ea1e63}@media screen and (min-width:768px){.mega-menu[data-color=pink] .drop-down-multilevel li.activeTrigger{background:#ea1e63}}@media screen and (max-width:767px){.mega-menu[data-color=pink] .drop-down-multilevel li.activeTriggerMobile{background:#ea1e63}}.mega-menu[data-color=pink] .drop-down input[type=submit],.mega-menu[data-color=pink] .drop-down input[type=button],.mega-menu[data-color=pink] .drop-down button[type=submit],.mega-menu[data-color=pink] .drop-down button[type=reset],.mega-menu[data-color=pink] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=pink] .drop-down-tab-bar input[type=button],.mega-menu[data-color=pink] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=pink] .drop-down-tab-bar button[type=reset]{background:#ea1e63}.mega-menu[data-color=pink] .drop-down input[type=submit]:hover,.mega-menu[data-color=pink] .drop-down input[type=button]:hover,.mega-menu[data-color=pink] .drop-down button[type=submit]:hover,.mega-menu[data-color=pink] .drop-down button[type=reset]:hover,.mega-menu[data-color=pink] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=pink] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=pink] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=pink] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=pink] .drop-down a:hover,.mega-menu[data-color=pink] .drop-down-tab-bar a:hover{color:#ea1e63}.mega-menu[data-color=pink] .drop-down ::-moz-selection,.mega-menu[data-color=pink] .drop-down-tab-bar ::-moz-selection{background:#f37ba4}.mega-menu[data-color=pink] .drop-down ::selection,.mega-menu[data-color=pink] .drop-down-tab-bar ::selection{background:#f37ba4}@media screen and (min-width:768px){.mega-menu[data-color=pink].vertical-left .menu-search-bar input,.mega-menu[data-color=pink].vertical-left .menu-search-bar li,.mega-menu[data-color=pink].vertical-left .menu-search-bar form,.mega-menu[data-color=pink].vertical-left .menu-search-bar label,.mega-menu[data-color=pink].vertical-right .menu-search-bar input,.mega-menu[data-color=pink].vertical-right .menu-search-bar li,.mega-menu[data-color=pink].vertical-right .menu-search-bar form,.mega-menu[data-color=pink].vertical-right .menu-search-bar label{background:#ea1e63}}.mega-menu[data-color=pink-invert]>section.menu-list-items{background-color:#ec3573}.mega-menu[data-color=pink-invert] .menu-logo>li>a:hover{background-color:#da1457}@media screen and (max-width:767px){.mega-menu[data-color=pink-invert] .menu-links>li.activeTriggerMobile{background-color:#da1457}}@media screen and (min-width:768px){.mega-menu[data-color=pink-invert] .menu-links>li.activeTrigger{background-color:#da1457}}.mega-menu[data-color=pink-invert] .menu-links>li.active{background-color:#da1457}.mega-menu[data-color=pink-invert] .menu-links>li:hover{background-color:#da1457}.mega-menu[data-color=pink-invert] .menu-search-bar li:hover i.fa.fa-search{background:#da1457}.mega-menu[data-color=pink-invert] .menu-search-bar input:focus{background:#da1457}.mega-menu[data-color=pink-invert] .menu-mobile-collapse-trigger{background:#da1457}.mega-menu[data-color=pink-invert] .menu-mobile-collapse-trigger:hover{background:#ab1045}.mega-menu[data-color=pink-invert] .drop-down-multilevel li:hover{background:#da1457}@media screen and (min-width:768px){.mega-menu[data-color=pink-invert] .drop-down-multilevel li.activeTrigger{background:#da1457}}@media screen and (max-width:767px){.mega-menu[data-color=pink-invert] .drop-down-multilevel li.activeTriggerMobile{background:#da1457}}.mega-menu[data-color=pink-invert] .drop-down input[type=submit],.mega-menu[data-color=pink-invert] .drop-down input[type=button],.mega-menu[data-color=pink-invert] .drop-down button[type=submit],.mega-menu[data-color=pink-invert] .drop-down button[type=reset],.mega-menu[data-color=pink-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=pink-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=pink-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=pink-invert] .drop-down-tab-bar button[type=reset]{background:#da1457}.mega-menu[data-color=pink-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=pink-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=pink-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=pink-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=pink-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=pink-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=pink-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=pink-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#ec3573}.mega-menu[data-color=pink-invert] .drop-down a:hover,.mega-menu[data-color=pink-invert] .drop-down-tab-bar a:hover{color:#da1457}.mega-menu[data-color=pink-invert] .drop-down ::-moz-selection,.mega-menu[data-color=pink-invert] .drop-down-tab-bar ::-moz-selection{background:#f16494}.mega-menu[data-color=pink-invert] .drop-down ::selection,.mega-menu[data-color=pink-invert] .drop-down-tab-bar ::selection{background:#f16494}@media screen and (min-width:768px){.mega-menu[data-color=pink-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=pink-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=pink-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=pink-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=pink-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=pink-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=pink-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=pink-invert].vertical-right .menu-search-bar label{background:#da1457}}.mega-menu[data-color=purple]>section.menu-list-items{background-color:#333}.mega-menu[data-color=purple] .menu-logo>li>a:hover{background-color:#9c28b1}@media screen and (max-width:767px){.mega-menu[data-color=purple] .menu-links>li.activeTriggerMobile{background-color:#9c28b1}}@media screen and (min-width:768px){.mega-menu[data-color=purple] .menu-links>li.activeTrigger{background-color:#9c28b1}}.mega-menu[data-color=purple] .menu-links>li.active{background-color:#9c28b1}.mega-menu[data-color=purple] .menu-links>li:hover{background-color:#9c28b1}.mega-menu[data-color=purple] .menu-search-bar li:hover i.fa.fa-search{background:#9c28b1}.mega-menu[data-color=purple] .menu-search-bar input:focus{background:#9c28b1}.mega-menu[data-color=purple] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=purple] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=purple] .drop-down-multilevel li:hover{background:#9c28b1}@media screen and (min-width:768px){.mega-menu[data-color=purple] .drop-down-multilevel li.activeTrigger{background:#9c28b1}}@media screen and (max-width:767px){.mega-menu[data-color=purple] .drop-down-multilevel li.activeTriggerMobile{background:#9c28b1}}.mega-menu[data-color=purple] .drop-down input[type=submit],.mega-menu[data-color=purple] .drop-down input[type=button],.mega-menu[data-color=purple] .drop-down button[type=submit],.mega-menu[data-color=purple] .drop-down button[type=reset],.mega-menu[data-color=purple] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=purple] .drop-down-tab-bar input[type=button],.mega-menu[data-color=purple] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=purple] .drop-down-tab-bar button[type=reset]{background:#9c28b1}.mega-menu[data-color=purple] .drop-down input[type=submit]:hover,.mega-menu[data-color=purple] .drop-down input[type=button]:hover,.mega-menu[data-color=purple] .drop-down button[type=submit]:hover,.mega-menu[data-color=purple] .drop-down button[type=reset]:hover,.mega-menu[data-color=purple] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=purple] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=purple] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=purple] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=purple] .drop-down a:hover,.mega-menu[data-color=purple] .drop-down-tab-bar a:hover{color:#9c28b1}.mega-menu[data-color=purple] .drop-down ::-moz-selection,.mega-menu[data-color=purple] .drop-down-tab-bar ::-moz-selection{background:#c963dc}.mega-menu[data-color=purple] .drop-down ::selection,.mega-menu[data-color=purple] .drop-down-tab-bar ::selection{background:#c963dc}@media screen and (min-width:768px){.mega-menu[data-color=purple].vertical-left .menu-search-bar input,.mega-menu[data-color=purple].vertical-left .menu-search-bar li,.mega-menu[data-color=purple].vertical-left .menu-search-bar form,.mega-menu[data-color=purple].vertical-left .menu-search-bar label,.mega-menu[data-color=purple].vertical-right .menu-search-bar input,.mega-menu[data-color=purple].vertical-right .menu-search-bar li,.mega-menu[data-color=purple].vertical-right .menu-search-bar form,.mega-menu[data-color=purple].vertical-right .menu-search-bar label{background:#9c28b1}}.mega-menu[data-color=purple-invert]>section.menu-list-items{background-color:#ae2dc6}.mega-menu[data-color=purple-invert] .menu-logo>li>a:hover{background-color:#9125a5}@media screen and (max-width:767px){.mega-menu[data-color=purple-invert] .menu-links>li.activeTriggerMobile{background-color:#9125a5}}@media screen and (min-width:768px){.mega-menu[data-color=purple-invert] .menu-links>li.activeTrigger{background-color:#9125a5}}.mega-menu[data-color=purple-invert] .menu-links>li.active{background-color:#9125a5}.mega-menu[data-color=purple-invert] .menu-links>li:hover{background-color:#9125a5}.mega-menu[data-color=purple-invert] .menu-search-bar li:hover i.fa.fa-search{background:#9125a5}.mega-menu[data-color=purple-invert] .menu-search-bar input:focus{background:#9125a5}.mega-menu[data-color=purple-invert] .menu-mobile-collapse-trigger{background:#8a239c}.mega-menu[data-color=purple-invert] .menu-mobile-collapse-trigger:hover{background:#651a73}.mega-menu[data-color=purple-invert] .drop-down-multilevel li:hover{background:#9125a5}@media screen and (min-width:768px){.mega-menu[data-color=purple-invert] .drop-down-multilevel li.activeTrigger{background:#9125a5}}@media screen and (max-width:767px){.mega-menu[data-color=purple-invert] .drop-down-multilevel li.activeTriggerMobile{background:#9125a5}}.mega-menu[data-color=purple-invert] .drop-down input[type=submit],.mega-menu[data-color=purple-invert] .drop-down input[type=button],.mega-menu[data-color=purple-invert] .drop-down button[type=submit],.mega-menu[data-color=purple-invert] .drop-down button[type=reset],.mega-menu[data-color=purple-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=purple-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=purple-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=purple-invert] .drop-down-tab-bar button[type=reset]{background:#9125a5}.mega-menu[data-color=purple-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=purple-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=purple-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=purple-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=purple-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=purple-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=purple-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=purple-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#ae2dc6}.mega-menu[data-color=purple-invert] .drop-down a:hover,.mega-menu[data-color=purple-invert] .drop-down-tab-bar a:hover{color:#9125a5}.mega-menu[data-color=purple-invert] .drop-down ::-moz-selection,.mega-menu[data-color=purple-invert] .drop-down-tab-bar ::-moz-selection{background:#c557d9}.mega-menu[data-color=purple-invert] .drop-down ::selection,.mega-menu[data-color=purple-invert] .drop-down-tab-bar ::selection{background:#c557d9}@media screen and (min-width:768px){.mega-menu[data-color=purple-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=purple-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=purple-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=purple-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=purple-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=purple-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=purple-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=purple-invert].vertical-right .menu-search-bar label{background:#9125a5}}.mega-menu[data-color=red]>section.menu-list-items{background-color:#333}.mega-menu[data-color=red] .menu-logo>li>a:hover{background-color:#f44236}@media screen and (max-width:767px){.mega-menu[data-color=red] .menu-links>li.activeTriggerMobile{background-color:#f44236}}@media screen and (min-width:768px){.mega-menu[data-color=red] .menu-links>li.activeTrigger{background-color:#f44236}}.mega-menu[data-color=red] .menu-links>li.active{background-color:#f44236}.mega-menu[data-color=red] .menu-links>li:hover{background-color:#f44236}.mega-menu[data-color=red] .menu-search-bar li:hover i.fa.fa-search{background:#f44236}.mega-menu[data-color=red] .menu-search-bar input:focus{background:#f44236}.mega-menu[data-color=red] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=red] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=red] .drop-down-multilevel li:hover{background:#f44236}@media screen and (min-width:768px){.mega-menu[data-color=red] .drop-down-multilevel li.activeTrigger{background:#f44236}}@media screen and (max-width:767px){.mega-menu[data-color=red] .drop-down-multilevel li.activeTriggerMobile{background:#f44236}}.mega-menu[data-color=red] .drop-down input[type=submit],.mega-menu[data-color=red] .drop-down input[type=button],.mega-menu[data-color=red] .drop-down button[type=submit],.mega-menu[data-color=red] .drop-down button[type=reset],.mega-menu[data-color=red] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=red] .drop-down-tab-bar input[type=button],.mega-menu[data-color=red] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=red] .drop-down-tab-bar button[type=reset]{background:#f44236}.mega-menu[data-color=red] .drop-down input[type=submit]:hover,.mega-menu[data-color=red] .drop-down input[type=button]:hover,.mega-menu[data-color=red] .drop-down button[type=submit]:hover,.mega-menu[data-color=red] .drop-down button[type=reset]:hover,.mega-menu[data-color=red] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=red] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=red] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=red] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=red] .drop-down a:hover,.mega-menu[data-color=red] .drop-down-tab-bar a:hover{color:#f44236}.mega-menu[data-color=red] .drop-down ::-moz-selection,.mega-menu[data-color=red] .drop-down-tab-bar ::-moz-selection{background:#f99d97}.mega-menu[data-color=red] .drop-down ::selection,.mega-menu[data-color=red] .drop-down-tab-bar ::selection{background:#f99d97}@media screen and (min-width:768px){.mega-menu[data-color=red].vertical-left .menu-search-bar input,.mega-menu[data-color=red].vertical-left .menu-search-bar li,.mega-menu[data-color=red].vertical-left .menu-search-bar form,.mega-menu[data-color=red].vertical-left .menu-search-bar label,.mega-menu[data-color=red].vertical-right .menu-search-bar input,.mega-menu[data-color=red].vertical-right .menu-search-bar li,.mega-menu[data-color=red].vertical-right .menu-search-bar form,.mega-menu[data-color=red].vertical-right .menu-search-bar label{background:#f44236}}.mega-menu[data-color=red-invert]>section.menu-list-items{background-color:#f5594e}.mega-menu[data-color=red-invert] .menu-logo>li>a:hover{background-color:#f32b1e}@media screen and (max-width:767px){.mega-menu[data-color=red-invert] .menu-links>li.activeTriggerMobile{background-color:#f32b1e}}@media screen and (min-width:768px){.mega-menu[data-color=red-invert] .menu-links>li.activeTrigger{background-color:#f32b1e}}.mega-menu[data-color=red-invert] .menu-links>li.active{background-color:#f32b1e}.mega-menu[data-color=red-invert] .menu-links>li:hover{background-color:#f32b1e}.mega-menu[data-color=red-invert] .menu-search-bar li:hover i.fa.fa-search{background:#f32b1e}.mega-menu[data-color=red-invert] .menu-search-bar input:focus{background:#f32b1e}.mega-menu[data-color=red-invert] .menu-mobile-collapse-trigger{background:#f32b1e}.mega-menu[data-color=red-invert] .menu-mobile-collapse-trigger:hover{background:#d2180b}.mega-menu[data-color=red-invert] .drop-down-multilevel li:hover{background:#f32b1e}@media screen and (min-width:768px){.mega-menu[data-color=red-invert] .drop-down-multilevel li.activeTrigger{background:#f32b1e}}@media screen and (max-width:767px){.mega-menu[data-color=red-invert] .drop-down-multilevel li.activeTriggerMobile{background:#f32b1e}}.mega-menu[data-color=red-invert] .drop-down input[type=submit],.mega-menu[data-color=red-invert] .drop-down input[type=button],.mega-menu[data-color=red-invert] .drop-down button[type=submit],.mega-menu[data-color=red-invert] .drop-down button[type=reset],.mega-menu[data-color=red-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=red-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=red-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=red-invert] .drop-down-tab-bar button[type=reset]{background:#f32b1e}.mega-menu[data-color=red-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=red-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=red-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=red-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=red-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=red-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=red-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=red-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#f5594e}.mega-menu[data-color=red-invert] .drop-down a:hover,.mega-menu[data-color=red-invert] .drop-down-tab-bar a:hover{color:#f32b1e}.mega-menu[data-color=red-invert] .drop-down ::-moz-selection,.mega-menu[data-color=red-invert] .drop-down-tab-bar ::-moz-selection{background:#f8867f}.mega-menu[data-color=red-invert] .drop-down ::selection,.mega-menu[data-color=red-invert] .drop-down-tab-bar ::selection{background:#f8867f}@media screen and (min-width:768px){.mega-menu[data-color=red-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=red-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=red-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=red-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=red-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=red-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=red-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=red-invert].vertical-right .menu-search-bar label{background:#f32b1e}}.mega-menu[data-color=teal]>section.menu-list-items{background-color:#333}.mega-menu[data-color=teal] .menu-logo>li>a:hover{background-color:#009788}@media screen and (max-width:767px){.mega-menu[data-color=teal] .menu-links>li.activeTriggerMobile{background-color:#009788}}@media screen and (min-width:768px){.mega-menu[data-color=teal] .menu-links>li.activeTrigger{background-color:#009788}}.mega-menu[data-color=teal] .menu-links>li.active{background-color:#009788}.mega-menu[data-color=teal] .menu-links>li:hover{background-color:#009788}.mega-menu[data-color=teal] .menu-search-bar li:hover i.fa.fa-search{background:#009788}.mega-menu[data-color=teal] .menu-search-bar input:focus{background:#009788}.mega-menu[data-color=teal] .menu-mobile-collapse-trigger{background:#1a1a1a}.mega-menu[data-color=teal] .menu-mobile-collapse-trigger:hover{background:black}.mega-menu[data-color=teal] .drop-down-multilevel li:hover{background:#009788}@media screen and (min-width:768px){.mega-menu[data-color=teal] .drop-down-multilevel li.activeTrigger{background:#009788}}@media screen and (max-width:767px){.mega-menu[data-color=teal] .drop-down-multilevel li.activeTriggerMobile{background:#009788}}.mega-menu[data-color=teal] .drop-down input[type=submit],.mega-menu[data-color=teal] .drop-down input[type=button],.mega-menu[data-color=teal] .drop-down button[type=submit],.mega-menu[data-color=teal] .drop-down button[type=reset],.mega-menu[data-color=teal] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=teal] .drop-down-tab-bar input[type=button],.mega-menu[data-color=teal] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=teal] .drop-down-tab-bar button[type=reset]{background:#009788}.mega-menu[data-color=teal] .drop-down input[type=submit]:hover,.mega-menu[data-color=teal] .drop-down input[type=button]:hover,.mega-menu[data-color=teal] .drop-down button[type=submit]:hover,.mega-menu[data-color=teal] .drop-down button[type=reset]:hover,.mega-menu[data-color=teal] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=teal] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=teal] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=teal] .drop-down-tab-bar button[type=reset]:hover{background-color:#333}.mega-menu[data-color=teal] .drop-down a:hover,.mega-menu[data-color=teal] .drop-down-tab-bar a:hover{color:#009788}.mega-menu[data-color=teal] .drop-down ::-moz-selection,.mega-menu[data-color=teal] .drop-down-tab-bar ::-moz-selection{background:#00fde4}.mega-menu[data-color=teal] .drop-down ::selection,.mega-menu[data-color=teal] .drop-down-tab-bar ::selection{background:#00fde4}@media screen and (min-width:768px){.mega-menu[data-color=teal].vertical-left .menu-search-bar input,.mega-menu[data-color=teal].vertical-left .menu-search-bar li,.mega-menu[data-color=teal].vertical-left .menu-search-bar form,.mega-menu[data-color=teal].vertical-left .menu-search-bar label,.mega-menu[data-color=teal].vertical-right .menu-search-bar input,.mega-menu[data-color=teal].vertical-right .menu-search-bar li,.mega-menu[data-color=teal].vertical-right .menu-search-bar form,.mega-menu[data-color=teal].vertical-right .menu-search-bar label{background:#009788}}.mega-menu[data-color=teal-invert]>section.menu-list-items{background-color:#009788}.mega-menu[data-color=teal-invert] .menu-logo>li>a:hover{background-color:#007e71}@media screen and (max-width:767px){.mega-menu[data-color=teal-invert] .menu-links>li.activeTriggerMobile{background-color:#007e71}}@media screen and (min-width:768px){.mega-menu[data-color=teal-invert] .menu-links>li.activeTrigger{background-color:#007e71}}.mega-menu[data-color=teal-invert] .menu-links>li.active{background-color:#007e71}.mega-menu[data-color=teal-invert] .menu-links>li:hover{background-color:#007e71}.mega-menu[data-color=teal-invert] .menu-search-bar li:hover i.fa.fa-search{background:#007e71}.mega-menu[data-color=teal-invert] .menu-search-bar input:focus{background:#007e71}.mega-menu[data-color=teal-invert] .menu-mobile-collapse-trigger{background:#00645a}.mega-menu[data-color=teal-invert] .menu-mobile-collapse-trigger:hover{background:#00312c}.mega-menu[data-color=teal-invert] .drop-down-multilevel li:hover{background:#007e71}@media screen and (min-width:768px){.mega-menu[data-color=teal-invert] .drop-down-multilevel li.activeTrigger{background:#007e71}}@media screen and (max-width:767px){.mega-menu[data-color=teal-invert] .drop-down-multilevel li.activeTriggerMobile{background:#007e71}}.mega-menu[data-color=teal-invert] .drop-down input[type=submit],.mega-menu[data-color=teal-invert] .drop-down input[type=button],.mega-menu[data-color=teal-invert] .drop-down button[type=submit],.mega-menu[data-color=teal-invert] .drop-down button[type=reset],.mega-menu[data-color=teal-invert] .drop-down-tab-bar input[type=submit],.mega-menu[data-color=teal-invert] .drop-down-tab-bar input[type=button],.mega-menu[data-color=teal-invert] .drop-down-tab-bar button[type=submit],.mega-menu[data-color=teal-invert] .drop-down-tab-bar button[type=reset]{background:#007e71}.mega-menu[data-color=teal-invert] .drop-down input[type=submit]:hover,.mega-menu[data-color=teal-invert] .drop-down input[type=button]:hover,.mega-menu[data-color=teal-invert] .drop-down button[type=submit]:hover,.mega-menu[data-color=teal-invert] .drop-down button[type=reset]:hover,.mega-menu[data-color=teal-invert] .drop-down-tab-bar input[type=submit]:hover,.mega-menu[data-color=teal-invert] .drop-down-tab-bar input[type=button]:hover,.mega-menu[data-color=teal-invert] .drop-down-tab-bar button[type=submit]:hover,.mega-menu[data-color=teal-invert] .drop-down-tab-bar button[type=reset]:hover{background-color:#009788}.mega-menu[data-color=teal-invert] .drop-down a:hover,.mega-menu[data-color=teal-invert] .drop-down-tab-bar a:hover{color:#007e71}.mega-menu[data-color=teal-invert] .drop-down ::-moz-selection,.mega-menu[data-color=teal-invert] .drop-down-tab-bar ::-moz-selection{background:#00e4cd}.mega-menu[data-color=teal-invert] .drop-down ::selection,.mega-menu[data-color=teal-invert] .drop-down-tab-bar ::selection{background:#00e4cd}@media screen and (min-width:768px){.mega-menu[data-color=teal-invert].vertical-left .menu-search-bar input,.mega-menu[data-color=teal-invert].vertical-left .menu-search-bar li,.mega-menu[data-color=teal-invert].vertical-left .menu-search-bar form,.mega-menu[data-color=teal-invert].vertical-left .menu-search-bar label,.mega-menu[data-color=teal-invert].vertical-right .menu-search-bar input,.mega-menu[data-color=teal-invert].vertical-right .menu-search-bar li,.mega-menu[data-color=teal-invert].vertical-right .menu-search-bar form,.mega-menu[data-color=teal-invert].vertical-right .menu-search-bar label{background:#007e71}}

/*!
 * SlickNav Responsive Mobile Menu v1.0.10
 * (c) 2016 Josh Cope
 * licensed under MIT
 */.slicknav_btn,.slicknav_nav .slicknav_item{cursor:pointer}.slicknav_menu,.slicknav_menu *{box-sizing:border-box}.slicknav_btn{position:relative;display:block;vertical-align:middle;float:right;padding:.438em .625em;line-height:1.125em}.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar{margin-top:.188em}.slicknav_menu .slicknav_menutxt{display:block;line-height:1.188em;float:left;color:#fff;font-weight:700;text-shadow:0 1px 3px #000}.slicknav_menu .slicknav_icon{float:left;width:1.125em;height:.875em;margin:.188em 0 0 .438em}.slicknav_menu .slicknav_icon:before{background:0 0;width:1.125em;height:.875em;display:block;content:"";position:absolute}.slicknav_menu .slicknav_no-text{margin:0}.slicknav_menu .slicknav_icon-bar{display:block;width:1.125em;height:.125em;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,.25);box-shadow:0 1px 0 rgba(0,0,0,.25)}.slicknav_menu:after,.slicknav_menu:before{content:" ";display:table}.slicknav_menu:after{clear:both}.slicknav_nav li,.slicknav_nav ul{display:block}.slicknav_nav .slicknav_arrow{font-size:.8em;margin:0 0 0 .4em}.slicknav_nav .slicknav_item a{display:inline}.slicknav_nav .slicknav_row,.slicknav_nav a{display:block}.slicknav_nav .slicknav_parent-link a{display:inline}.slicknav_menu{*zoom:1;font-size:16px;background:#4c4c4c;padding:5px}.slicknav_nav,.slicknav_nav ul{list-style:none;overflow:hidden;padding:0}.slicknav_menu .slicknav_icon-bar{background-color:#fff}.slicknav_btn{margin:5px 5px 6px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,.75);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;background-color:#222}.slicknav_nav{clear:both;color:#fff;margin:0;font-size:.875em}.slicknav_nav ul{margin:0 0 0 20px}.slicknav_nav .slicknav_row,.slicknav_nav a{padding:5px 10px;margin:2px 5px}.slicknav_nav .slicknav_row:hover{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;background:#ccc;color:#fff}.slicknav_nav a{text-decoration:none;color:#fff}.slicknav_nav a:hover{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;background:#ccc;color:#222}.slicknav_nav .slicknav_txtnode{margin-left:15px}.slicknav_nav .slicknav_item a,.slicknav_nav .slicknav_parent-link a{padding:0;margin:0}.slicknav_brand{float:left;color:#fff;font-size:18px;line-height:30px;padding:7px 12px;height:44px}


/* select2 */
.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle; }
    .select2-container .select2-selection--single {
      box-sizing: border-box;
      cursor: pointer;
      display: block;
      height: 28px;
      user-select: none;
      -webkit-user-select: none; }
      .select2-container .select2-selection--single .select2-selection__rendered {
        display: block;
        padding-left: 8px;
        padding-right: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .select2-container .select2-selection--single .select2-selection__clear {
        position: relative; }
    .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
      padding-right: 8px;
      padding-left: 20px; }
    .select2-container .select2-selection--multiple {
      box-sizing: border-box;
      cursor: pointer;
      display: block;
      min-height: 32px;
      user-select: none;
      -webkit-user-select: none; }
      .select2-container .select2-selection--multiple .select2-selection__rendered {
        display: inline-block;
        overflow: hidden;
        padding-left: 8px;
        text-overflow: ellipsis;
        white-space: nowrap; }
    .select2-container .select2-search--inline {
      float: left; }
      .select2-container .select2-search--inline .select2-search__field {
        box-sizing: border-box;
        border: none;
        font-size: 100%;
        margin-top: 5px;
        padding: 0; }
        .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
          -webkit-appearance: none; }
  
  .select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051; }
  
  .select2-results {
    display: block; }
  
  .select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0; }
  
  .select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-results__option[aria-selected] {
      cursor: pointer; }
  
  .select2-container--open .select2-dropdown {
    left: 0; }
  
  .select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  
  .select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  
  .select2-search--dropdown {
    display: block;
    padding: 4px; }
    .select2-search--dropdown .select2-search__field {
      padding: 4px;
      width: 100%;
      box-sizing: border-box; }
      .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }
    .select2-search--dropdown.select2-search--hide {
      display: none; }
  
  .select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0); }
  
  .select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important; }
  
  .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px; }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
      color: #444;
      line-height: 28px; }
    .select2-container--default .select2-selection--single .select2-selection__clear {
      cursor: pointer;
      float: right;
      font-weight: bold; }
    .select2-container--default .select2-selection--single .select2-selection__placeholder {
      color: #999; }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
      height: 26px;
      position: absolute;
      top: 1px;
      right: 1px;
      width: 20px; }
      .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: #888 transparent transparent transparent;
        border-style: solid;
        border-width: 5px 4px 0 4px;
        height: 0;
        left: 50%;
        margin-left: -4px;
        margin-top: -2px;
        position: absolute;
        top: 50%;
        width: 0; }
  
  .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left; }
  
  .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto; }
  
  .select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default; }
    .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
      display: none; }
  
  .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px; }
  
  .select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered {
      box-sizing: border-box;
      list-style: none;
      margin: 0;
      padding: 0 5px;
      width: 100%; }
      .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
        list-style: none; }
    .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
      color: #999;
      margin-top: 5px;
      float: left; }
    .select2-container--default .select2-selection--multiple .select2-selection__clear {
      cursor: pointer;
      float: right;
      font-weight: bold;
      margin-top: 5px;
      margin-right: 10px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
      background-color: #e4e4e4;
      border: 1px solid #aaa;
      border-radius: 4px;
      cursor: default;
      float: left;
      margin-right: 5px;
      margin-top: 5px;
      padding: 0 5px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
      color: #999;
      cursor: pointer;
      display: inline-block;
      font-weight: bold;
      margin-right: 2px; }
      .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
        color: #333; }
  
  .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right; }
  
  .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto; }
  
  .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto; }
  
  .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0; }
  
  .select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default; }
  
  .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none; }
  
  .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  
  .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  
  .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa; }
  
  .select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield; }
  
  .select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto; }
  
  .select2-container--default .select2-results__option[role=group] {
    padding: 0; }
  
  .select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999; }
  
  .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd; }
  
  .select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
      padding-left: 0; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -1em;
      padding-left: 2em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -2em;
        padding-left: 3em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -3em;
          padding-left: 4em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -4em;
            padding-left: 5em; }
            .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
              margin-left: -5em;
              padding-left: 6em; }
  
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb;
    color: white; }
  
  .select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px; }
  
  .select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
    background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
    background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
    .select2-container--classic .select2-selection--single:focus {
      border: 1px solid #5897fb; }
    .select2-container--classic .select2-selection--single .select2-selection__rendered {
      color: #444;
      line-height: 28px; }
    .select2-container--classic .select2-selection--single .select2-selection__clear {
      cursor: pointer;
      float: right;
      font-weight: bold;
      margin-right: 10px; }
    .select2-container--classic .select2-selection--single .select2-selection__placeholder {
      color: #999; }
    .select2-container--classic .select2-selection--single .select2-selection__arrow {
      background-color: #ddd;
      border: none;
      border-left: 1px solid #aaa;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      height: 26px;
      position: absolute;
      top: 1px;
      right: 1px;
      width: 20px;
      background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
      background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
      background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
      background-repeat: repeat-x;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
      .select2-container--classic .select2-selection--single .select2-selection__arrow b {
        border-color: #888 transparent transparent transparent;
        border-style: solid;
        border-width: 5px 4px 0 4px;
        height: 0;
        left: 50%;
        margin-left: -4px;
        margin-top: -2px;
        position: absolute;
        top: 50%;
        width: 0; }
  
  .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left; }
  
  .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto; }
  
  .select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
      background: transparent;
      border: none; }
      .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
        border-color: transparent transparent #888 transparent;
        border-width: 0 4px 5px 4px; }
  
  .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  
  .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
  
  .select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0; }
    .select2-container--classic .select2-selection--multiple:focus {
      border: 1px solid #5897fb; }
    .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
      list-style: none;
      margin: 0;
      padding: 0 5px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__clear {
      display: none; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice {
      background-color: #e4e4e4;
      border: 1px solid #aaa;
      border-radius: 4px;
      cursor: default;
      float: left;
      margin-right: 5px;
      margin-top: 5px;
      padding: 0 5px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
      color: #888;
      cursor: pointer;
      display: inline-block;
      font-weight: bold;
      margin-right: 2px; }
      .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
        color: #555; }
  
  .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    float: right;
    margin-left: 5px;
    margin-right: auto; }
  
  .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto; }
  
  .select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb; }
  
  .select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  
  .select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  
  .select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0; }
  
  .select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none; }
  
  .select2-container--classic .select2-dropdown {
    background-color: white;
    border: 1px solid transparent; }
  
  .select2-container--classic .select2-dropdown--above {
    border-bottom: none; }
  
  .select2-container--classic .select2-dropdown--below {
    border-top: none; }
  
  .select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto; }
  
  .select2-container--classic .select2-results__option[role=group] {
    padding: 0; }
  
  .select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey; }
  
  .select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: white; }
  
  .select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px; }
  
  .select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb; }

    
/* slick */
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* slick theme */
/* Slider */

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/static/media/slick.ced611da.eot);
    src: url(/static/media/slick.ced611da.eot?#iefix) format('embedded-opentype'), url(/static/media/slick.b7c9e1e4.woff) format('woff'), url(/static/media/slick.d41f55a7.ttf) format('truetype'), url(/static/media/slick.f97e3bbf.svg#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
 .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;/*background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;*/-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

 /**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}

/* Flat Icons */

@font-face {
	font-family: "pgsicon-ecommerce";
	src: url(/static/media/ecommerce.7526de39.eot);
	src: url(/static/media/ecommerce.7526de39.eot?#iefix) format("embedded-opentype"),
		url(/static/media/ecommerce.58c2acb0.woff) format("woff"),
		url(/static/media/ecommerce.869c316d.ttf) format("truetype"),
		url(/static/media/ecommerce.af0d5968.svg#pgsicon-ecommerce) format("svg");
	font-weight: normal;
	font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	@font-face {
		font-family: "pgsicon-ecommerce";
		src: url(/static/media/ecommerce.af0d5968.svg#pgsicon-ecommerce) format("svg");
	}
}

[class^="pgsicon-ecommerce-"]:before, [class*=" pgsicon-ecommerce-"]:before,
[class^="pgsicon-ecommerce-"]:after, [class*=" pgsicon-ecommerce-"]:after {   
	font-family: pgsicon-ecommerce;
	font-style: normal;
 }

.pgsicon-ecommerce-locked:before { content: "\f100"; }
.pgsicon-ecommerce-unlocked:before { content: "\f101"; }
.pgsicon-ecommerce-mobile-shopping:before { content: "\f102"; }
.pgsicon-ecommerce-commerce-4:before { content: "\f103"; }
.pgsicon-ecommerce-shopping-cart-7:before { content: "\f104"; }
.pgsicon-ecommerce-shopping-cart-6:before { content: "\f105"; }
.pgsicon-ecommerce-fashion-1:before { content: "\f106"; }
.pgsicon-ecommerce-arrows-10:before { content: "\f107"; }
.pgsicon-ecommerce-bag-6:before { content: "\f108"; }
.pgsicon-ecommerce-view:before { content: "\f109"; }
.pgsicon-ecommerce-repeat-3:before { content: "\f10a"; }
.pgsicon-ecommerce-delete-2:before { content: "\f10b"; }
.pgsicon-ecommerce-commerce-3:before { content: "\f10c"; }
.pgsicon-ecommerce-shopping-bag-6:before { content: "\f10d"; }
.pgsicon-ecommerce-shopping-bag-5:before { content: "\f10e"; }
.pgsicon-ecommerce-shopping-bag-4:before { content: "\f10f"; }
.pgsicon-ecommerce-shop-1:before { content: "\f110"; }
.pgsicon-ecommerce-placeholder-2:before { content: "\f111"; }
.pgsicon-ecommerce-share-1:before { content: "\f112"; }
.pgsicon-ecommerce-handbag:before { content: "\f113"; }
.pgsicon-ecommerce-filter:before { content: "\f114"; }
.pgsicon-ecommerce-calculator:before { content: "\f115"; }
.pgsicon-ecommerce-barcode:before { content: "\f116"; }
.pgsicon-ecommerce-wallet-1:before { content: "\f117"; }
.pgsicon-ecommerce-invoice-2:before { content: "\f118"; }
.pgsicon-ecommerce-invoice-1:before { content: "\f119"; }
.pgsicon-ecommerce-invoice:before { content: "\f11a"; }
.pgsicon-ecommerce-laptop-1:before { content: "\f11b"; }
.pgsicon-ecommerce-laptop:before { content: "\f11c"; }
.pgsicon-ecommerce-buy:before { content: "\f11d"; }
.pgsicon-ecommerce-24-hours-1:before { content: "\f11e"; }
.pgsicon-ecommerce-online-shop-3:before { content: "\f11f"; }
.pgsicon-ecommerce-new:before { content: "\f120"; }
.pgsicon-ecommerce-shop:before { content: "\f121"; }
.pgsicon-ecommerce-communication:before { content: "\f122"; }
.pgsicon-ecommerce-telephone-1:before { content: "\f123"; }
.pgsicon-ecommerce-24-hours:before { content: "\f124"; }
.pgsicon-ecommerce-like-1:before { content: "\f125"; }
.pgsicon-ecommerce-coupon:before { content: "\f126"; }
.pgsicon-ecommerce-bag-5:before { content: "\f127"; }
.pgsicon-ecommerce-transport:before { content: "\f128"; }
.pgsicon-ecommerce-shapes-3:before { content: "\f129"; }
.pgsicon-ecommerce-worldwide:before { content: "\f12a"; }
.pgsicon-ecommerce-email:before { content: "\f12b"; }
.pgsicon-ecommerce-delivery-truck-1:before { content: "\f12c"; }
.pgsicon-ecommerce-shopping-bag-3:before { content: "\f12d"; }
.pgsicon-ecommerce-box-2:before { content: "\f12e"; }
.pgsicon-ecommerce-box-1:before { content: "\f12f"; }
.pgsicon-ecommerce-telephone:before { content: "\f130"; }
.pgsicon-ecommerce-commerce-2:before { content: "\f131"; }
.pgsicon-ecommerce-shield:before { content: "\f132"; }
.pgsicon-ecommerce-tag:before { content: "\f133"; }
.pgsicon-ecommerce-gift-1:before { content: "\f134"; }
.pgsicon-ecommerce-list:before { content: "\f135"; }
.pgsicon-ecommerce-clipboard:before { content: "\f136"; }
.pgsicon-ecommerce-online-shop-2:before { content: "\f137"; }
.pgsicon-ecommerce-shopping-cart-5:before { content: "\f138"; }
.pgsicon-ecommerce-commerce-1:before { content: "\f139"; }
.pgsicon-ecommerce-commerce:before { content: "\f13a"; }
.pgsicon-ecommerce-headphones-1:before { content: "\f13b"; }
.pgsicon-ecommerce-money-2:before { content: "\f13c"; }
.pgsicon-ecommerce-business-1:before { content: "\f13d"; }
.pgsicon-ecommerce-shopping-bag-2:before { content: "\f13e"; }
.pgsicon-ecommerce-online-shop-1:before { content: "\f13f"; }
.pgsicon-ecommerce-monitor:before { content: "\f140"; }
.pgsicon-ecommerce-shopping-bag-1:before { content: "\f141"; }
.pgsicon-ecommerce-delivery-truck:before { content: "\f142"; }
.pgsicon-ecommerce-box:before { content: "\f143"; }
.pgsicon-ecommerce-online-shop:before { content: "\f144"; }
.pgsicon-ecommerce-shopping-cart-4:before { content: "\f145"; }
.pgsicon-ecommerce-sale-1:before { content: "\f146"; }
.pgsicon-ecommerce-sale:before { content: "\f147"; }
.pgsicon-ecommerce-gift:before { content: "\f148"; }
.pgsicon-ecommerce-credit-card:before { content: "\f149"; }
.pgsicon-ecommerce-shopping-cart-3:before { content: "\f14a"; }
.pgsicon-ecommerce-money-1:before { content: "\f14b"; }
.pgsicon-ecommerce-shopping-cart-2:before { content: "\f14c"; }
.pgsicon-ecommerce-bell:before { content: "\f14d"; }
.pgsicon-ecommerce-arrows-9:before { content: "\f14e"; }
.pgsicon-ecommerce-send-mail:before { content: "\f14f"; }
.pgsicon-ecommerce-wallet:before { content: "\f150"; }
.pgsicon-ecommerce-dollar:before { content: "\f151"; }
.pgsicon-ecommerce-shapes-2:before { content: "\f152"; }
.pgsicon-ecommerce-bag-4:before { content: "\f153"; }
.pgsicon-ecommerce-trash:before { content: "\f154"; }
.pgsicon-ecommerce-money:before { content: "\f155"; }
.pgsicon-ecommerce-cancel:before { content: "\f156"; }
.pgsicon-ecommerce-shopping-1:before { content: "\f157"; }
.pgsicon-ecommerce-security:before { content: "\f158"; }
.pgsicon-ecommerce-recommended:before { content: "\f159"; }
.pgsicon-ecommerce-luxury:before { content: "\f15a"; }
.pgsicon-ecommerce-polo:before { content: "\f15b"; }
.pgsicon-ecommerce-pijama:before { content: "\f15c"; }
.pgsicon-ecommerce-mail:before { content: "\f15d"; }
.pgsicon-ecommerce-paper:before { content: "\f15e"; }
.pgsicon-ecommerce-arrows-8:before { content: "\f15f"; }
.pgsicon-ecommerce-hanger:before { content: "\f160"; }
.pgsicon-ecommerce-google-plus-1:before { content: "\f161"; }
.pgsicon-ecommerce-signs:before { content: "\f162"; }
.pgsicon-ecommerce-shopping-cart-1:before { content: "\f163"; }
.pgsicon-ecommerce-envelope-1:before { content: "\f164"; }
.pgsicon-ecommerce-user-2:before { content: "\f165"; }
.pgsicon-ecommerce-heart-2:before { content: "\f166"; }
.pgsicon-ecommerce-delete-1:before { content: "\f167"; }
.pgsicon-ecommerce-google-plus:before { content: "\f168"; }
.pgsicon-ecommerce-whatsapp:before { content: "\f169"; }
.pgsicon-ecommerce-skype:before { content: "\f16a"; }
.pgsicon-ecommerce-twitter:before { content: "\f16b"; }
.pgsicon-ecommerce-viber:before { content: "\f16c"; }
.pgsicon-ecommerce-snapchat:before { content: "\f16d"; }
.pgsicon-ecommerce-instagram:before { content: "\f16e"; }
.pgsicon-ecommerce-android:before { content: "\f16f"; }
.pgsicon-ecommerce-apple:before { content: "\f170"; }
.pgsicon-ecommerce-google-play:before { content: "\f171"; }
.pgsicon-ecommerce-pinterest:before { content: "\f172"; }
.pgsicon-ecommerce-youtube:before { content: "\f173"; }
.pgsicon-ecommerce-linkedin:before { content: "\f174"; }
.pgsicon-ecommerce-shapes-1:before { content: "\f175"; }
.pgsicon-ecommerce-arrows-7:before { content: "\f176"; }
.pgsicon-ecommerce-360-degrees:before { content: "\f177"; }
.pgsicon-ecommerce-internet:before { content: "\f178"; }
.pgsicon-ecommerce-facebook:before { content: "\f179"; }
.pgsicon-ecommerce-social-media:before { content: "\f17a"; }
.pgsicon-ecommerce-arrows-6:before { content: "\f17b"; }
.pgsicon-ecommerce-arrows-5:before { content: "\f17c"; }
.pgsicon-ecommerce-user-1:before { content: "\f17d"; }
.pgsicon-ecommerce-arrows-4:before { content: "\f17e"; }
.pgsicon-ecommerce-checked:before { content: "\f17f"; }
.pgsicon-ecommerce-heart-1:before { content: "\f180"; }
.pgsicon-ecommerce-repeat-2:before { content: "\f181"; }
.pgsicon-ecommerce-arrows-3:before { content: "\f182"; }
.pgsicon-ecommerce-repeat-1:before { content: "\f183"; }
.pgsicon-ecommerce-user:before { content: "\f184"; }
.pgsicon-ecommerce-placeholder-1:before { content: "\f185"; }
.pgsicon-ecommerce-unlink:before { content: "\f186"; }
.pgsicon-ecommerce-square:before { content: "\f187"; }
.pgsicon-ecommerce-search:before { content: "\f188"; }
.pgsicon-ecommerce-alarm:before { content: "\f189"; }
.pgsicon-ecommerce-like:before { content: "\f18a"; }
.pgsicon-ecommerce-share:before { content: "\f18b"; }
.pgsicon-ecommerce-multiply:before { content: "\f18c"; }
.pgsicon-ecommerce-zoom-in:before { content: "\f18d"; }
.pgsicon-ecommerce-check:before { content: "\f18e"; }
.pgsicon-ecommerce-dress:before { content: "\f18f"; }
.pgsicon-ecommerce-bag-3:before { content: "\f190"; }
.pgsicon-ecommerce-market:before { content: "\f191"; }
.pgsicon-ecommerce-shopping:before { content: "\f192"; }
.pgsicon-ecommerce-arrows-2:before { content: "\f193"; }
.pgsicon-ecommerce-repeat:before { content: "\f194"; }
.pgsicon-ecommerce-arrows-1:before { content: "\f195"; }
.pgsicon-ecommerce-envelope:before { content: "\f196"; }
.pgsicon-ecommerce-shopping-bag:before { content: "\f197"; }
.pgsicon-ecommerce-shopping-cart:before { content: "\f198"; }
.pgsicon-ecommerce-headphones:before { content: "\f199"; }
.pgsicon-ecommerce-reload:before { content: "\f19a"; }
.pgsicon-ecommerce-house:before { content: "\f19b"; }
.pgsicon-ecommerce-avatar-1:before { content: "\f19c"; }
.pgsicon-ecommerce-shuffle:before { content: "\f19d"; }
.pgsicon-ecommerce-avatar:before { content: "\f19e"; }
.pgsicon-ecommerce-star:before { content: "\f19f"; }
.pgsicon-ecommerce-link:before { content: "\f1a0"; }
.pgsicon-ecommerce-padlock:before { content: "\f1a1"; }
.pgsicon-ecommerce-settings:before { content: "\f1a2"; }
.pgsicon-ecommerce-paper-plane:before { content: "\f1a3"; }
.pgsicon-ecommerce-magnifying-glass-1:before { content: "\f1a4"; }
.pgsicon-ecommerce-heart:before { content: "\f1a5"; }
.pgsicon-ecommerce-placeholder:before { content: "\f1a6"; }
.pgsicon-ecommerce-garbage:before { content: "\f1a7"; }
.pgsicon-ecommerce-business:before { content: "\f1a8"; }
.pgsicon-ecommerce-dollar-symbol:before { content: "\f1a9"; }
.pgsicon-ecommerce-magnifying-glass:before { content: "\f1aa"; }
.pgsicon-ecommerce-bag-2:before { content: "\f1ab"; }
.pgsicon-ecommerce-phone-call-1:before { content: "\f1ac"; }
.pgsicon-ecommerce-phone-call:before { content: "\f1ad"; }
.pgsicon-ecommerce-fashion:before { content: "\f1ae"; }
.pgsicon-ecommerce-delete:before { content: "\f1af"; }
.pgsicon-ecommerce-technical-support-line:before { content: "\f1b0"; }
.pgsicon-ecommerce-bag-1:before { content: "\f1b1"; }
.pgsicon-ecommerce-menu-of-three-horizontal-parallel-straight-lines-outline:before { content: "\f1b2"; }
.pgsicon-ecommerce-favorite:before { content: "\f1b3"; }
.pgsicon-ecommerce-e-mail-envelope:before { content: "\f1b4"; }
.pgsicon-ecommerce-replay-arrow:before { content: "\f1b5"; }
.pgsicon-ecommerce-sign:before { content: "\f1b6"; }
.pgsicon-ecommerce-rightwards-pointing-arrow:before { content: "\f1b7"; }
.pgsicon-ecommerce-medical:before { content: "\f1b8"; }
.pgsicon-ecommerce-downwards-pointer:before { content: "\f1b9"; }
.pgsicon-ecommerce-sports:before { content: "\f1ba"; }
.pgsicon-ecommerce-ribbon:before { content: "\f1bb"; }
.pgsicon-ecommerce-arrow:before { content: "\f1bc"; }
.pgsicon-ecommerce-circle-with-left-arrow:before { content: "\f1bd"; }
.pgsicon-ecommerce-play:before { content: "\f1be"; }
.pgsicon-ecommerce-empty-shopping-cart:before { content: "\f1bf"; }
.pgsicon-ecommerce-rightwards-pointer-button:before { content: "\f1c0"; }
.pgsicon-ecommerce-arrow-chevron:before { content: "\f1c1"; }
.pgsicon-ecommerce-arrows:before { content: "\f1c2"; }
.pgsicon-ecommerce-shapes:before { content: "\f1c3"; }
.pgsicon-ecommerce-leftwards-pointer:before { content: "\f1c4"; }
.pgsicon-ecommerce-bag:before { content: "\f1c5"; }
.pgsicon-ecommerce-rounded-magnifying-glass:before { content: "\f1c6"; }
.pgsicon-ecommerce-shopping-basket:before { content: "\f1c7"; }

/* Line Icons */

@font-face{font-family:linecons;src:url(/static/media/linecons.37cb8c1a.eot);src:url(/static/media/linecons.37cb8c1a.eot#iefix) format('embedded-opentype'),url(/static/media/linecons.f7e1d7f9.woff) format('woff'),url(/static/media/linecons.05cadd86.ttf) format('truetype'),url(/static/media/linecons.7be74dee.svg#openiconic) format('svg');font-weight:400;font-style:normal}[class*=" li-"]:before,[class^=li-]:before{font-family:linecons;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:0;text-align:center;font-variant:normal;text-transform:none;line-height:inherit;margin-left:0}.li-heart:before{content:"\e000"}.li-cloud:before{content:"\e001"}.li-star:before{content:"\e002"}.li-tv:before{content:"\e003"}.li-sound:before{content:"\e004"}.li-video:before{content:"\e005"}.li-trash:before{content:"\e006"}.li-user:before{content:"\e007"}.li-key:before{content:"\e008"}.li-search:before{content:"\e009"}.li-settings:before{content:"\e00a"}.li-camera:before{content:"\e00b"}.li-tag:before{content:"\e00c"}.li-lock:before{content:"\e00d"}.li-bulb:before{content:"\e00e"}.li-pen:before{content:"\e00f"}.li-diamond:before{content:"\e010"}.li-display:before{content:"\e011"}.li-location:before{content:"\e012"}.li-eye:before{content:"\e013"}.li-bubble:before{content:"\e014"}.li-stack:before{content:"\e015"}.li-cup:before{content:"\e016"}.li-phone:before{content:"\e017"}.li-news:before{content:"\e018"}.li-mail:before{content:"\e019"}.li-like:before{content:"\e01a"}.li-photo:before{content:"\e01b"}.li-note:before{content:"\e01c"}.li-clock:before{content:"\e01d"}.li-paperplane:before{content:"\e01e"}.li-params:before{content:"\e01f"}.li-banknote:before{content:"\e020"}.li-data:before{content:"\e021"}.li-music:before{content:"\e022"}.li-megaphone:before{content:"\e023"}.li-study:before{content:"\e024"}.li-lab:before{content:"\e025"}.li-food:before{content:"\e026"}.li-t-shirt:before{content:"\e027"}.li-fire:before{content:"\e028"}.li-clip:before{content:"\e029"}.li-shop:before{content:"\e02a"}.li-calendar:before{content:"\e02b"}.li-vallet:before{content:"\e02c"}.li-vynil:before{content:"\e02d"}.li-truck:before{content:"\e02e"}.li-world:before{content:"\e02f"}

/* Font Awesome */

@font-face {
    font-family: 'FontAwesome';
    src: url(/static/media/fontawesome-webfont.674f50d2.eot);
    src: url(/static/media/fontawesome-webfont.674f50d2.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(/static/media/fontawesome-webfont.af7ae505.woff2) format('woff2'), url(/static/media/fontawesome-webfont.fee66e71.woff) format('woff'), url(/static/media/fontawesome-webfont.b06871f2.ttf) format('truetype'), url(/static/media/fontawesome-webfont.912ec66d.svg#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;
  }
  /* makes the font 33% larger relative to the icon container */
  .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: .2em .25em .15em;
    border: solid 0.08em #eeeeee;
    border-radius: .1em;
  }
  .fa-pull-left {
    float: left;
  }
  .fa-pull-right {
    float: right;
  }
  .fa.fa-pull-left {
    margin-right: .3em;
  }
  .fa.fa-pull-right {
    margin-left: .3em;
  }
  /* Deprecated as of 4.4.0 */
  .pull-right {
    float: right;
  }
  .pull-left {
    float: left;
  }
  .fa.pull-left {
    margin-right: .3em;
  }
  .fa.pull-right {
    margin-left: .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 {
    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: #ffffff;
  }
  /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
     readers do not read off random characters that represent icons */
  .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;
  }
  
  /*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-button {
	padding: .4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	/* Support: IE <= 11 */
	overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
	text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap;

}

input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-controlgroup {
	vertical-align: middle;
	display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
	z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
	border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
	border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

	/* Support: IE8 only, Android < 4.4 only */
	width: 75%;
	width: calc( 100% - 2.4em );
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none;
}
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid;
}
.ui-checkboxradio-disabled {
	pointer-events: none;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0;
}
.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0;
}
.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0;
}
.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px;
}
.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0;
}
.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25); /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em;
}
.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .222em 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 2em;
}
.ui-spinner-button {
	width: 1.6em;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}
/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #d3d3d3;
}
.ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff;
	color: #222222;
}
.ui-widget-content a {
	color: #222222;
}
.ui-widget-header {
	border: 1px solid #aaaaaa;
	background: #cccccc;
	color: #222222;
	font-weight: bold;
}
.ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #d3d3d3;
	background: #e6e6e6;
	font-weight: normal;
	color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #555555;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #999999;
	background: #dadada;
	font-weight: normal;
	color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #212121;
	text-decoration: none;
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #aaaaaa;
	background: #ffffff;
	font-weight: normal;
	color: #212121;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #aaaaaa;
	background-color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee;
	color: #363636;
}
.ui-state-checked {
	border: 1px solid #fcefa1;
	background: #fbf9ee;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec;
	color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70); /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35); /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}


/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa;
	opacity: .3;
	filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
	-webkit-box-shadow: -8px -8px 8px #aaaaaa;
	box-shadow: -8px -8px 8px #aaaaaa;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

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

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

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

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

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

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

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

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:.875em;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated select.form-control:valid,select.form-control.is-valid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated select.form-control:invalid,select.form-control.is-invalid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.width{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.width{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:1px solid #adb5bd}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item,.nav-fill>.nav-link{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentcolor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentcolor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
.ReactTable{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border:1px solid rgba(0,0,0,0.1);}.ReactTable *{box-sizing:border-box}.ReactTable .rt-table{-webkit-box-flex:1;-ms-flex:auto 1;flex:auto 1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%;border-collapse:collapse;overflow:auto}.ReactTable .rt-thead{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.ReactTable .rt-thead.-headerGroups{background:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.05)}.ReactTable .rt-thead.-filters{border-bottom:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-thead.-filters input,.ReactTable .rt-thead.-filters select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .rt-thead.-filters .rt-th{border-right:1px solid rgba(0,0,0,0.02)}.ReactTable .rt-thead.-header{box-shadow:0 2px 15px 0 rgba(0,0,0,0.15)}.ReactTable .rt-thead .rt-tr{text-align:center}.ReactTable .rt-thead .rt-th,.ReactTable .rt-thead .rt-td{padding:5px 5px;line-height:normal;position:relative;border-right:1px solid rgba(0,0,0,0.05);transition:box-shadow .3s cubic-bezier(.175,.885,.32,1.275);box-shadow:inset 0 0 0 0 transparent;}.ReactTable .rt-thead .rt-th.-sort-asc,.ReactTable .rt-thead .rt-td.-sort-asc{box-shadow:inset 0 3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-sort-desc,.ReactTable .rt-thead .rt-td.-sort-desc{box-shadow:inset 0 -3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-cursor-pointer,.ReactTable .rt-thead .rt-td.-cursor-pointer{cursor:pointer}.ReactTable .rt-thead .rt-th:last-child,.ReactTable .rt-thead .rt-td:last-child{border-right:0}.ReactTable .rt-thead .rt-th:focus{outline-width:0}.ReactTable .rt-thead .rt-resizable-header{overflow:visible;}.ReactTable .rt-thead .rt-resizable-header:last-child{overflow:hidden}.ReactTable .rt-thead .rt-resizable-header-content{overflow:hidden;text-overflow:ellipsis}.ReactTable .rt-thead .rt-header-pivot{border-right-color:#f7f7f7}.ReactTable .rt-thead .rt-header-pivot:after,.ReactTable .rt-thead .rt-header-pivot:before{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.ReactTable .rt-thead .rt-header-pivot:after{border-color:rgba(255,255,255,0);border-left-color:#fff;border-width:8px;margin-top:-8px}.ReactTable .rt-thead .rt-header-pivot:before{border-color:rgba(102,102,102,0);border-left-color:#f7f7f7;border-width:10px;margin-top:-10px}.ReactTable .rt-tbody{-webkit-box-flex:99999;-ms-flex:99999 1 auto;flex:99999 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow:auto;}.ReactTable .rt-tbody .rt-tr-group{border-bottom:solid 1px rgba(0,0,0,0.05);}.ReactTable .rt-tbody .rt-tr-group:last-child{border-bottom:0}.ReactTable .rt-tbody .rt-td{border-right:1px solid rgba(0,0,0,0.02);}.ReactTable .rt-tbody .rt-td:last-child{border-right:0}.ReactTable .rt-tbody .rt-expandable{cursor:pointer;text-overflow:clip}.ReactTable .rt-tr-group{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.ReactTable .rt-tr{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.ReactTable .rt-th,.ReactTable .rt-td{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;white-space:nowrap;text-overflow:ellipsis;padding:7px 5px;overflow:hidden;transition:.3s ease;transition-property:width,min-width,padding,opacity;}.ReactTable .rt-th.-hidden,.ReactTable .rt-td.-hidden{width:0 !important;min-width:0 !important;padding:0 !important;border:0 !important;opacity:0 !important}.ReactTable .rt-expander{display:inline-block;position:relative;margin:0;color:transparent;margin:0 10px;}.ReactTable .rt-expander:after{content:'';position:absolute;width:0;height:0;top:50%;left:50%;-webkit-transform:translate(-50%,-50%) rotate(-90deg);transform:translate(-50%,-50%) rotate(-90deg);border-left:5.04px solid transparent;border-right:5.04px solid transparent;border-top:7px solid rgba(0,0,0,0.8);transition:all .3s cubic-bezier(.175,.885,.32,1.275);cursor:pointer}.ReactTable .rt-expander.-open:after{-webkit-transform:translate(-50%,-50%) rotate(0);transform:translate(-50%,-50%) rotate(0)}.ReactTable .rt-resizer{display:inline-block;position:absolute;width:36px;top:0;bottom:0;right:-18px;cursor:col-resize;z-index:10}.ReactTable .rt-tfoot{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;box-shadow:0 0 15px 0 rgba(0,0,0,0.15);}.ReactTable .rt-tfoot .rt-td{border-right:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-tfoot .rt-td:last-child{border-right:0}.ReactTable.-striped .rt-tr.-odd{background:rgba(0,0,0,0.03)}.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover{background:rgba(0,0,0,0.05)}.ReactTable .-pagination{z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:3px;box-shadow:0 0 15px 0 rgba(0,0,0,0.1);border-top:2px solid rgba(0,0,0,0.1);}.ReactTable .-pagination input,.ReactTable .-pagination select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .-pagination .-btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:block;width:100%;height:100%;border:0;border-radius:3px;padding:6px;font-size:1em;color:rgba(0,0,0,0.6);background:rgba(0,0,0,0.1);transition:all .1s ease;cursor:pointer;outline-width:0;}.ReactTable .-pagination .-btn[disabled]{opacity:.5;cursor:default}.ReactTable .-pagination .-btn:not([disabled]):hover{background:rgba(0,0,0,0.3);color:#fff}.ReactTable .-pagination .-previous,.ReactTable .-pagination .-next{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center}.ReactTable .-pagination .-center{-webkit-box-flex:1.5;-ms-flex:1.5;flex:1.5;text-align:center;margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ReactTable .-pagination .-pageInfo{display:inline-block;margin:3px 10px;white-space:nowrap}.ReactTable .-pagination .-pageJump{display:inline-block;}.ReactTable .-pagination .-pageJump input{width:70px;text-align:center}.ReactTable .-pagination .-pageSizeOptions{margin:3px 10px}.ReactTable .rt-noData{display:block;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:1;pointer-events:none;padding:20px;color:rgba(0,0,0,0.5)}.ReactTable .-loading{display:block;position:absolute;left:0;right:0;top:0;bottom:0;background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:-1;opacity:0;pointer-events:none;}.ReactTable .-loading > div{position:absolute;display:block;text-align:center;width:100%;top:50%;left:0;font-size:15px;color:rgba(0,0,0,0.6);-webkit-transform:translateY(-52%);transform:translateY(-52%);transition:all .3s cubic-bezier(.25,.46,.45,.94)}.ReactTable .-loading.-active{opacity:1;z-index:2;pointer-events:all;}.ReactTable .-loading.-active > div{-webkit-transform:translateY(50%);transform:translateY(50%)}.ReactTable .rt-resizing .rt-th,.ReactTable .rt-resizing .rt-td{transition:none !important;cursor:col-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.m-0 {
  margin: 0px;
}

.p-0 {
  padding: 0px;
}

.m-1 {
  margin: 10px;
}

.p-1 {
  padding: 10px;
}

.m-2 {
  margin: 20px;
}

.p-2 {
  padding: 20px;
}

.m-3 {
  margin: 30px;
}

.p-3 {
  padding: 30px;
}

.m-4 {
  margin: 40px;
}

.p-4 {
  padding: 40px;
}

.m-5 {
  margin: 50px;
}

.p-5 {
  padding: 50px;
}

.m-6 {
  margin: 60px;
}

.p-6 {
  padding: 60px;
}

.m-7 {
  margin: 70px;
}

.p-7 {
  padding: 70px;
}

.m-8 {
  margin: 80px;
}

.p-8 {
  padding: 80px;
}

.m-9 {
  margin: 90px;
}

.p-9 {
  padding: 90px;
}

.m-10 {
  margin: 100px;
}

.p-10 {
  padding: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.mt-1 {
  margin-top: 10px;
}

.pt-1 {
  padding-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-2 {
  padding-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.pt-3 {
  padding-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.pt-4 {
  padding-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.pt-5 {
  padding-top: 50px;
}

.mt-6 {
  margin-top: 60px;
}

.pt-6 {
  padding-top: 60px;
}

.mt-7 {
  margin-top: 70px;
}

.pt-7 {
  padding-top: 70px;
}

.mt-8 {
  margin-top: 80px;
}

.pt-8 {
  padding-top: 80px;
}

.mt-9 {
  margin-top: 90px;
}

.pt-9 {
  padding-top: 90px;
}

.mt-10 {
  margin-top: 100px;
}

.pt-10 {
  padding-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.mb-1 {
  margin-bottom: 10px;
}

.pb-1 {
  padding-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.pb-2 {
  padding-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.pb-3 {
  padding-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.pb-4 {
  padding-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.pb-5 {
  padding-bottom: 50px;
}

.mb-6 {
  margin-bottom: 60px;
}

.pb-6 {
  padding-bottom: 60px;
}

.mb-7 {
  margin-bottom: 70px;
}

.pb-7 {
  padding-bottom: 70px;
}

.mb-8 {
  margin-bottom: 80px;
}

.pb-8 {
  padding-bottom: 80px;
}

.mb-9 {
  margin-bottom: 90px;
}

.pb-9 {
  padding-bottom: 90px;
}

.mb-10 {
  margin-bottom: 100px;
}

.pb-10 {
  padding-bottom: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.ml-1 {
  margin-left: 10px;
}

.pl-1 {
  padding-left: 10px;
}

.ml-2 {
  margin-left: 20px;
}

.pl-2 {
  padding-left: 20px;
}

.ml-3 {
  margin-left: 30px;
}

.pl-3 {
  padding-left: 30px;
}

.ml-4 {
  margin-left: 40px;
}

.pl-4 {
  padding-left: 40px;
}

.ml-5 {
  margin-left: 50px;
}

.pl-5 {
  padding-left: 50px;
}

.ml-6 {
  margin-left: 60px;
}

.pl-6 {
  padding-left: 60px;
}

.ml-7 {
  margin-left: 70px;
}

.pl-7 {
  padding-left: 70px;
}

.ml-8 {
  margin-left: 80px;
}

.pl-8 {
  padding-left: 80px;
}

.ml-9 {
  margin-left: 90px;
}

.pl-9 {
  padding-left: 90px;
}

.ml-10 {
  margin-left: 100px;
}

.pl-10 {
  padding-left: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.mr-1 {
  margin-right: 10px;
}

.pr-1 {
  padding-right: 10px;
}

.mr-2 {
  margin-right: 20px;
}

.pr-2 {
  padding-right: 20px;
}

.mr-3 {
  margin-right: 30px;
}

.pr-3 {
  padding-right: 30px;
}

.mr-4 {
  margin-right: 40px;
}

.pr-4 {
  padding-right: 40px;
}

.mr-5 {
  margin-right: 50px;
}

.pr-5 {
  padding-right: 50px;
}

.mr-6 {
  margin-right: 60px;
}

.pr-6 {
  padding-right: 60px;
}

.mr-7 {
  margin-right: 70px;
}

.pr-7 {
  padding-right: 70px;
}

.mr-8 {
  margin-right: 80px;
}

.pr-8 {
  padding-right: 80px;
}

.mr-9 {
  margin-right: 90px;
}

.pr-9 {
  padding-right: 90px;
}

.mr-10 {
  margin-right: 100px;
}

.pr-10 {
  padding-right: 100px;
}

@media (min-width:576px) {
  .m-xs-0 {
    margin: 0px;
  }

  .p-xs-0 {
    padding: 0px;
  }

}

@media (min-width:576px) {
  .m-xs-1 {
    margin: 10px;
  }

  .p-xs-1 {
    padding: 10px;
  }

}

@media (min-width:576px) {
  .m-xs-2 {
    margin: 20px;
  }

  .p-xs-2 {
    padding: 20px;
  }

}

@media (min-width:576px) {
  .m-xs-3 {
    margin: 30px;
  }

  .p-xs-3 {
    padding: 30px;
  }

}

@media (min-width:576px) {
  .m-xs-4 {
    margin: 40px;
  }

  .p-xs-4 {
    padding: 40px;
  }

}

@media (min-width:576px) {
  .m-xs-5 {
    margin: 50px;
  }

  .p-xs-5 {
    padding: 50px;
  }

}

@media (min-width:576px) {
  .m-xs-6 {
    margin: 60px;
  }

  .p-xs-6 {
    padding: 60px;
  }

}

@media (min-width:576px) {
  .m-xs-7 {
    margin: 70px;
  }

  .p-xs-7 {
    padding: 70px;
  }

}

@media (min-width:576px) {
  .m-xs-8 {
    margin: 80px;
  }

  .p-xs-8 {
    padding: 80px;
  }

}

@media (min-width:576px) {
  .m-xs-9 {
    margin: 90px;
  }

  .p-xs-9 {
    padding: 90px;
  }

}

@media (min-width:576px) {
  .m-xs-10 {
    margin: 100px;
  }

  .p-xs-10 {
    padding: 100px;
  }

}

@media (min-width:576px) {
  .mt-xs-0 {
    margin-top: 0px;
  }

  .pt-xs-0 {
    padding-top: 0px;
  }

}

@media (min-width:576px) {
  .mt-xs-1 {
    margin-top: 10px;
  }

  .pt-xs-1 {
    padding-top: 10px;
  }

}

@media (min-width:576px) {
  .mt-xs-2 {
    margin-top: 20px;
  }

  .pt-xs-2 {
    padding-top: 20px;
  }

}

@media (min-width:576px) {
  .mt-xs-3 {
    margin-top: 30px;
  }

  .pt-xs-3 {
    padding-top: 30px;
  }

}

@media (min-width:576px) {
  .mt-xs-4 {
    margin-top: 40px;
  }

  .pt-xs-4 {
    padding-top: 40px;
  }

}

@media (min-width:576px) {
  .mt-xs-5 {
    margin-top: 50px;
  }

  .pt-xs-5 {
    padding-top: 50px;
  }

}

@media (min-width:576px) {
  .mt-xs-6 {
    margin-top: 60px;
  }

  .pt-xs-6 {
    padding-top: 60px;
  }

}

@media (min-width:576px) {
  .mt-xs-7 {
    margin-top: 70px;
  }

  .pt-xs-7 {
    padding-top: 70px;
  }

}

@media (min-width:576px) {
  .mt-xs-8 {
    margin-top: 80px;
  }

  .pt-xs-8 {
    padding-top: 80px;
  }

}

@media (min-width:576px) {
  .mt-xs-9 {
    margin-top: 90px;
  }

  .pt-xs-9 {
    padding-top: 90px;
  }

}

@media (min-width:576px) {
  .mt-xs-10 {
    margin-top: 100px;
  }

  .pt-xs-10 {
    padding-top: 100px;
  }

}

@media (min-width:576px) {
  .mb-xs-0 {
    margin-bottom: 0px;
  }

  .pb-xs-0 {
    padding-bottom: 0px;
  }

}

@media (min-width:576px) {
  .mb-xs-1 {
    margin-bottom: 10px;
  }

  .pb-xs-1 {
    padding-bottom: 10px;
  }

}

@media (min-width:576px) {
  .mb-xs-2 {
    margin-bottom: 20px;
  }

  .pb-xs-2 {
    padding-bottom: 20px;
  }

}

@media (min-width:576px) {
  .mb-xs-3 {
    margin-bottom: 30px;
  }

  .pb-xs-3 {
    padding-bottom: 30px;
  }

}

@media (min-width:576px) {
  .mb-xs-4 {
    margin-bottom: 40px;
  }

  .pb-xs-4 {
    padding-bottom: 40px;
  }

}

@media (min-width:576px) {
  .mb-xs-5 {
    margin-bottom: 50px;
  }

  .pb-xs-5 {
    padding-bottom: 50px;
  }

}

@media (min-width:576px) {
  .mb-xs-6 {
    margin-bottom: 60px;
  }

  .pb-xs-6 {
    padding-bottom: 60px;
  }

}

@media (min-width:576px) {
  .mb-xs-7 {
    margin-bottom: 70px;
  }

  .pb-xs-7 {
    padding-bottom: 70px;
  }

}

@media (min-width:576px) {
  .mb-xs-8 {
    margin-bottom: 80px;
  }

  .pb-xs-8 {
    padding-bottom: 80px;
  }

}

@media (min-width:576px) {
  .mb-xs-9 {
    margin-bottom: 90px;
  }

  .pb-xs-9 {
    padding-bottom: 90px;
  }

}

@media (min-width:576px) {
  .mb-xs-10 {
    margin-bottom: 100px;
  }

  .pb-xs-10 {
    padding-bottom: 100px;
  }

}

@media (min-width:576px) {
  .ml-xs-0 {
    margin-left: 0px;
  }

  .pl-xs-0 {
    padding-left: 0px;
  }

}

@media (min-width:576px) {
  .ml-xs-1 {
    margin-left: 10px;
  }

  .pl-xs-1 {
    padding-left: 10px;
  }

}

@media (min-width:576px) {
  .ml-xs-2 {
    margin-left: 20px;
  }

  .pl-xs-2 {
    padding-left: 20px;
  }

}

@media (min-width:576px) {
  .ml-xs-3 {
    margin-left: 30px;
  }

  .pl-xs-3 {
    padding-left: 30px;
  }

}

@media (min-width:576px) {
  .ml-xs-4 {
    margin-left: 40px;
  }

  .pl-xs-4 {
    padding-left: 40px;
  }

}

@media (min-width:576px) {
  .ml-xs-5 {
    margin-left: 50px;
  }

  .pl-xs-5 {
    padding-left: 50px;
  }

}

@media (min-width:576px) {
  .ml-xs-6 {
    margin-left: 60px;
  }

  .pl-xs-6 {
    padding-left: 60px;
  }

}

@media (min-width:576px) {
  .ml-xs-7 {
    margin-left: 70px;
  }

  .pl-xs-7 {
    padding-left: 70px;
  }

}

@media (min-width:576px) {
  .ml-xs-8 {
    margin-left: 80px;
  }

  .pl-xs-8 {
    padding-left: 80px;
  }

}

@media (min-width:576px) {
  .ml-xs-9 {
    margin-left: 90px;
  }

  .pl-xs-9 {
    padding-left: 90px;
  }

}

@media (min-width:576px) {
  .ml-xs-10 {
    margin-left: 100px;
  }

  .pl-xs-10 {
    padding-left: 100px;
  }

}

@media (min-width:576px) {
  .mr-xs-0 {
    margin-right: 0px;
  }

  .pr-xs-0 {
    padding-right: 0px;
  }

}

@media (min-width:576px) {
  .mr-xs-1 {
    margin-right: 10px;
  }

  .pr-xs-1 {
    padding-right: 10px;
  }

}

@media (min-width:576px) {
  .mr-xs-2 {
    margin-right: 20px;
  }

  .pr-xs-2 {
    padding-right: 20px;
  }

}

@media (min-width:576px) {
  .mr-xs-3 {
    margin-right: 30px;
  }

  .pr-xs-3 {
    padding-right: 30px;
  }

}

@media (min-width:576px) {
  .mr-xs-4 {
    margin-right: 40px;
  }

  .pr-xs-4 {
    padding-right: 40px;
  }

}

@media (min-width:576px) {
  .mr-xs-5 {
    margin-right: 50px;
  }

  .pr-xs-5 {
    padding-right: 50px;
  }

}

@media (min-width:576px) {
  .mr-xs-6 {
    margin-right: 60px;
  }

  .pr-xs-6 {
    padding-right: 60px;
  }

}

@media (min-width:576px) {
  .mr-xs-7 {
    margin-right: 70px;
  }

  .pr-xs-7 {
    padding-right: 70px;
  }

}

@media (min-width:576px) {
  .mr-xs-8 {
    margin-right: 80px;
  }

  .pr-xs-8 {
    padding-right: 80px;
  }

}

@media (min-width:576px) {
  .mr-xs-9 {
    margin-right: 90px;
  }

  .pr-xs-9 {
    padding-right: 90px;
  }

}

@media (min-width:576px) {
  .mr-xs-10 {
    margin-right: 100px;
  }

  .pr-xs-10 {
    padding-right: 100px;
  }

}

@media (min-width:768px) {
  .m-sm-0 {
    margin: 0px;
  }

  .p-sm-0 {
    padding: 0px;
  }

}

@media (min-width:768px) {
  .m-sm-1 {
    margin: 10px;
  }

  .p-sm-1 {
    padding: 10px;
  }

}

@media (min-width:768px) {
  .m-sm-2 {
    margin: 20px;
  }

  .p-sm-2 {
    padding: 20px;
  }

}

@media (min-width:768px) {
  .m-sm-3 {
    margin: 30px;
  }

  .p-sm-3 {
    padding: 30px;
  }

}

@media (min-width:768px) {
  .m-sm-4 {
    margin: 40px;
  }

  .p-sm-4 {
    padding: 40px;
  }

}

@media (min-width:768px) {
  .m-sm-5 {
    margin: 50px;
  }

  .p-sm-5 {
    padding: 50px;
  }

}

@media (min-width:768px) {
  .m-sm-6 {
    margin: 60px;
  }

  .p-sm-6 {
    padding: 60px;
  }

}

@media (min-width:768px) {
  .m-sm-7 {
    margin: 70px;
  }

  .p-sm-7 {
    padding: 70px;
  }

}

@media (min-width:768px) {
  .m-sm-8 {
    margin: 80px;
  }

  .p-sm-8 {
    padding: 80px;
  }

}

@media (min-width:768px) {
  .m-sm-9 {
    margin: 90px;
  }

  .p-sm-9 {
    padding: 90px;
  }

}

@media (min-width:768px) {
  .m-sm-10 {
    margin: 100px;
  }

  .p-sm-10 {
    padding: 100px;
  }

}

@media (min-width:768px) {
  .mt-sm-0 {
    margin-top: 0px;
  }

  .pt-sm-0 {
    padding-top: 0px;
  }

}

@media (min-width:768px) {
  .mt-sm-1 {
    margin-top: 10px;
  }

  .pt-sm-1 {
    padding-top: 10px;
  }

}

@media (min-width:768px) {
  .mt-sm-2 {
    margin-top: 20px;
  }

  .pt-sm-2 {
    padding-top: 20px;
  }

}

@media (min-width:768px) {
  .mt-sm-3 {
    margin-top: 30px;
  }

  .pt-sm-3 {
    padding-top: 30px;
  }

}

@media (min-width:768px) {
  .mt-sm-4 {
    margin-top: 40px;
  }

  .pt-sm-4 {
    padding-top: 40px;
  }

}

@media (min-width:768px) {
  .mt-sm-5 {
    margin-top: 50px;
  }

  .pt-sm-5 {
    padding-top: 50px;
  }

}

@media (min-width:768px) {
  .mt-sm-6 {
    margin-top: 60px;
  }

  .pt-sm-6 {
    padding-top: 60px;
  }

}

@media (min-width:768px) {
  .mt-sm-7 {
    margin-top: 70px;
  }

  .pt-sm-7 {
    padding-top: 70px;
  }

}

@media (min-width:768px) {
  .mt-sm-8 {
    margin-top: 80px;
  }

  .pt-sm-8 {
    padding-top: 80px;
  }

}

@media (min-width:768px) {
  .mt-sm-9 {
    margin-top: 90px;
  }

  .pt-sm-9 {
    padding-top: 90px;
  }

}

@media (min-width:768px) {
  .mt-sm-10 {
    margin-top: 100px;
  }

  .pt-sm-10 {
    padding-top: 100px;
  }

}

@media (min-width:768px) {
  .mb-sm-0 {
    margin-bottom: 0px;
  }

  .pb-sm-0 {
    padding-bottom: 0px;
  }

}

@media (min-width:768px) {
  .mb-sm-1 {
    margin-bottom: 10px;
  }

  .pb-sm-1 {
    padding-bottom: 10px;
  }

}

@media (min-width:768px) {
  .mb-sm-2 {
    margin-bottom: 20px;
  }

  .pb-sm-2 {
    padding-bottom: 20px;
  }

}

@media (min-width:768px) {
  .mb-sm-3 {
    margin-bottom: 30px;
  }

  .pb-sm-3 {
    padding-bottom: 30px;
  }

}

@media (min-width:768px) {
  .mb-sm-4 {
    margin-bottom: 40px;
  }

  .pb-sm-4 {
    padding-bottom: 40px;
  }

}

@media (min-width:768px) {
  .mb-sm-5 {
    margin-bottom: 50px;
  }

  .pb-sm-5 {
    padding-bottom: 50px;
  }

}

@media (min-width:768px) {
  .mb-sm-6 {
    margin-bottom: 60px;
  }

  .pb-sm-6 {
    padding-bottom: 60px;
  }

}

@media (min-width:768px) {
  .mb-sm-7 {
    margin-bottom: 70px;
  }

  .pb-sm-7 {
    padding-bottom: 70px;
  }

}

@media (min-width:768px) {
  .mb-sm-8 {
    margin-bottom: 80px;
  }

  .pb-sm-8 {
    padding-bottom: 80px;
  }

}

@media (min-width:768px) {
  .mb-sm-9 {
    margin-bottom: 90px;
  }

  .pb-sm-9 {
    padding-bottom: 90px;
  }

}

@media (min-width:768px) {
  .mb-sm-10 {
    margin-bottom: 100px;
  }

  .pb-sm-10 {
    padding-bottom: 100px;
  }

}

@media (min-width:768px) {
  .ml-sm-0 {
    margin-left: 0px;
  }

  .pl-sm-0 {
    padding-left: 0px;
  }

}

@media (min-width:768px) {
  .ml-sm-1 {
    margin-left: 10px;
  }

  .pl-sm-1 {
    padding-left: 10px;
  }

}

@media (min-width:768px) {
  .ml-sm-2 {
    margin-left: 20px;
  }

  .pl-sm-2 {
    padding-left: 20px;
  }

}

@media (min-width:768px) {
  .ml-sm-3 {
    margin-left: 30px;
  }

  .pl-sm-3 {
    padding-left: 30px;
  }

}

@media (min-width:768px) {
  .ml-sm-4 {
    margin-left: 40px;
  }

  .pl-sm-4 {
    padding-left: 40px;
  }

}

@media (min-width:768px) {
  .ml-sm-5 {
    margin-left: 50px;
  }

  .pl-sm-5 {
    padding-left: 50px;
  }

}

@media (min-width:768px) {
  .ml-sm-6 {
    margin-left: 60px;
  }

  .pl-sm-6 {
    padding-left: 60px;
  }

}

@media (min-width:768px) {
  .ml-sm-7 {
    margin-left: 70px;
  }

  .pl-sm-7 {
    padding-left: 70px;
  }

}

@media (min-width:768px) {
  .ml-sm-8 {
    margin-left: 80px;
  }

  .pl-sm-8 {
    padding-left: 80px;
  }

}

@media (min-width:768px) {
  .ml-sm-9 {
    margin-left: 90px;
  }

  .pl-sm-9 {
    padding-left: 90px;
  }

}

@media (min-width:768px) {
  .ml-sm-10 {
    margin-left: 100px;
  }

  .pl-sm-10 {
    padding-left: 100px;
  }

}

@media (min-width:768px) {
  .mr-sm-0 {
    margin-right: 0px;
  }

  .pr-sm-0 {
    padding-right: 0px;
  }

}

@media (min-width:768px) {
  .mr-sm-1 {
    margin-right: 10px;
  }

  .pr-sm-1 {
    padding-right: 10px;
  }

}

@media (min-width:768px) {
  .mr-sm-2 {
    margin-right: 20px;
  }

  .pr-sm-2 {
    padding-right: 20px;
  }

}

@media (min-width:768px) {
  .mr-sm-3 {
    margin-right: 30px;
  }

  .pr-sm-3 {
    padding-right: 30px;
  }

}

@media (min-width:768px) {
  .mr-sm-4 {
    margin-right: 40px;
  }

  .pr-sm-4 {
    padding-right: 40px;
  }

}

@media (min-width:768px) {
  .mr-sm-5 {
    margin-right: 50px;
  }

  .pr-sm-5 {
    padding-right: 50px;
  }

}

@media (min-width:768px) {
  .mr-sm-6 {
    margin-right: 60px;
  }

  .pr-sm-6 {
    padding-right: 60px;
  }

}

@media (min-width:768px) {
  .mr-sm-7 {
    margin-right: 70px;
  }

  .pr-sm-7 {
    padding-right: 70px;
  }

}

@media (min-width:768px) {
  .mr-sm-8 {
    margin-right: 80px;
  }

  .pr-sm-8 {
    padding-right: 80px;
  }

}

@media (min-width:768px) {
  .mr-sm-9 {
    margin-right: 90px;
  }

  .pr-sm-9 {
    padding-right: 90px;
  }

}

@media (min-width:768px) {
  .mr-sm-10 {
    margin-right: 100px;
  }

  .pr-sm-10 {
    padding-right: 100px;
  }

}

@media (min-width:992px) {
  .m-md-0 {
    margin: 0px;
  }

  .p-md-0 {
    padding: 0px;
  }

}

@media (min-width:992px) {
  .m-md-1 {
    margin: 10px;
  }

  .p-md-1 {
    padding: 10px;
  }

}

@media (min-width:992px) {
  .m-md-2 {
    margin: 20px;
  }

  .p-md-2 {
    padding: 20px;
  }

}

@media (min-width:992px) {
  .m-md-3 {
    margin: 30px;
  }

  .p-md-3 {
    padding: 30px;
  }

}

@media (min-width:992px) {
  .m-md-4 {
    margin: 40px;
  }

  .p-md-4 {
    padding: 40px;
  }

}

@media (min-width:992px) {
  .m-md-5 {
    margin: 50px;
  }

  .p-md-5 {
    padding: 50px;
  }

}

@media (min-width:992px) {
  .m-md-6 {
    margin: 60px;
  }

  .p-md-6 {
    padding: 60px;
  }

}

@media (min-width:992px) {
  .m-md-7 {
    margin: 70px;
  }

  .p-md-7 {
    padding: 70px;
  }

}

@media (min-width:992px) {
  .m-md-8 {
    margin: 80px;
  }

  .p-md-8 {
    padding: 80px;
  }

}

@media (min-width:992px) {
  .m-md-9 {
    margin: 90px;
  }

  .p-md-9 {
    padding: 90px;
  }

}

@media (min-width:992px) {
  .m-md-10 {
    margin: 100px;
  }

  .p-md-10 {
    padding: 100px;
  }

}

@media (min-width:992px) {
  .mt-md-0 {
    margin-top: 0px;
  }

  .pt-md-0 {
    padding-top: 0px;
  }

}

@media (min-width:992px) {
  .mt-md-1 {
    margin-top: 10px;
  }

  .pt-md-1 {
    padding-top: 10px;
  }

}

@media (min-width:992px) {
  .mt-md-2 {
    margin-top: 20px;
  }

  .pt-md-2 {
    padding-top: 20px;
  }

}

@media (min-width:992px) {
  .mt-md-3 {
    margin-top: 30px;
  }

  .pt-md-3 {
    padding-top: 30px;
  }

}

@media (min-width:992px) {
  .mt-md-4 {
    margin-top: 40px;
  }

  .pt-md-4 {
    padding-top: 40px;
  }

}

@media (min-width:992px) {
  .mt-md-5 {
    margin-top: 50px;
  }

  .pt-md-5 {
    padding-top: 50px;
  }

}

@media (min-width:992px) {
  .mt-md-6 {
    margin-top: 60px;
  }

  .pt-md-6 {
    padding-top: 60px;
  }

}

@media (min-width:992px) {
  .mt-md-7 {
    margin-top: 70px;
  }

  .pt-md-7 {
    padding-top: 70px;
  }

}

@media (min-width:992px) {
  .mt-md-8 {
    margin-top: 80px;
  }

  .pt-md-8 {
    padding-top: 80px;
  }

}

@media (min-width:992px) {
  .mt-md-9 {
    margin-top: 90px;
  }

  .pt-md-9 {
    padding-top: 90px;
  }

}

@media (min-width:992px) {
  .mt-md-10 {
    margin-top: 100px;
  }

  .pt-md-10 {
    padding-top: 100px;
  }

}

@media (min-width:992px) {
  .mb-md-0 {
    margin-bottom: 0px;
  }

  .pb-md-0 {
    padding-bottom: 0px;
  }

}

@media (min-width:992px) {
  .mb-md-1 {
    margin-bottom: 10px;
  }

  .pb-md-1 {
    padding-bottom: 10px;
  }

}

@media (min-width:992px) {
  .mb-md-2 {
    margin-bottom: 20px;
  }

  .pb-md-2 {
    padding-bottom: 20px;
  }

}

@media (min-width:992px) {
  .mb-md-3 {
    margin-bottom: 30px;
  }

  .pb-md-3 {
    padding-bottom: 30px;
  }

}

@media (min-width:992px) {
  .mb-md-4 {
    margin-bottom: 40px;
  }

  .pb-md-4 {
    padding-bottom: 40px;
  }

}

@media (min-width:992px) {
  .mb-md-5 {
    margin-bottom: 50px;
  }

  .pb-md-5 {
    padding-bottom: 50px;
  }

}

@media (min-width:992px) {
  .mb-md-6 {
    margin-bottom: 60px;
  }

  .pb-md-6 {
    padding-bottom: 60px;
  }

}

@media (min-width:992px) {
  .mb-md-7 {
    margin-bottom: 70px;
  }

  .pb-md-7 {
    padding-bottom: 70px;
  }

}

@media (min-width:992px) {
  .mb-md-8 {
    margin-bottom: 80px;
  }

  .pb-md-8 {
    padding-bottom: 80px;
  }

}

@media (min-width:992px) {
  .mb-md-9 {
    margin-bottom: 90px;
  }

  .pb-md-9 {
    padding-bottom: 90px;
  }

}

@media (min-width:992px) {
  .mb-md-10 {
    margin-bottom: 100px;
  }

  .pb-md-10 {
    padding-bottom: 100px;
  }

}

@media (min-width:992px) {
  .ml-md-0 {
    margin-left: 0px;
  }

  .pl-md-0 {
    padding-left: 0px;
  }

}

@media (min-width:992px) {
  .ml-md-1 {
    margin-left: 10px;
  }

  .pl-md-1 {
    padding-left: 10px;
  }

}

@media (min-width:992px) {
  .ml-md-2 {
    margin-left: 20px;
  }

  .pl-md-2 {
    padding-left: 20px;
  }

}

@media (min-width:992px) {
  .ml-md-3 {
    margin-left: 30px;
  }

  .pl-md-3 {
    padding-left: 30px;
  }

}

@media (min-width:992px) {
  .ml-md-4 {
    margin-left: 40px;
  }

  .pl-md-4 {
    padding-left: 40px;
  }

}

@media (min-width:992px) {
  .ml-md-5 {
    margin-left: 50px;
  }

  .pl-md-5 {
    padding-left: 50px;
  }

}

@media (min-width:992px) {
  .ml-md-6 {
    margin-left: 60px;
  }

  .pl-md-6 {
    padding-left: 60px;
  }

}

@media (min-width:992px) {
  .ml-md-7 {
    margin-left: 70px;
  }

  .pl-md-7 {
    padding-left: 70px;
  }

}

@media (min-width:992px) {
  .ml-md-8 {
    margin-left: 80px;
  }

  .pl-md-8 {
    padding-left: 80px;
  }

}

@media (min-width:992px) {
  .ml-md-9 {
    margin-left: 90px;
  }

  .pl-md-9 {
    padding-left: 90px;
  }

}

@media (min-width:992px) {
  .ml-md-10 {
    margin-left: 100px;
  }

  .pl-md-10 {
    padding-left: 100px;
  }

}

@media (min-width:992px) {
  .mr-md-0 {
    margin-right: 0px;
  }

  .pr-md-0 {
    padding-right: 0px;
  }

}

@media (min-width:992px) {
  .mr-md-1 {
    margin-right: 10px;
  }

  .pr-md-1 {
    padding-right: 10px;
  }

}

@media (min-width:992px) {
  .mr-md-2 {
    margin-right: 20px;
  }

  .pr-md-2 {
    padding-right: 20px;
  }

}

@media (min-width:992px) {
  .mr-md-3 {
    margin-right: 30px;
  }

  .pr-md-3 {
    padding-right: 30px;
  }

}

@media (min-width:992px) {
  .mr-md-4 {
    margin-right: 40px;
  }

  .pr-md-4 {
    padding-right: 40px;
  }

}

@media (min-width:992px) {
  .mr-md-5 {
    margin-right: 50px;
  }

  .pr-md-5 {
    padding-right: 50px;
  }

}

@media (min-width:992px) {
  .mr-md-6 {
    margin-right: 60px;
  }

  .pr-md-6 {
    padding-right: 60px;
  }

}

@media (min-width:992px) {
  .mr-md-7 {
    margin-right: 70px;
  }

  .pr-md-7 {
    padding-right: 70px;
  }

}

@media (min-width:992px) {
  .mr-md-8 {
    margin-right: 80px;
  }

  .pr-md-8 {
    padding-right: 80px;
  }

}

@media (min-width:992px) {
  .mr-md-9 {
    margin-right: 90px;
  }

  .pr-md-9 {
    padding-right: 90px;
  }

}

@media (min-width:992px) {
  .mr-md-10 {
    margin-right: 100px;
  }

  .pr-md-10 {
    padding-right: 100px;
  }

}

@media (min-width:1200px) {
  .m-lg-0 {
    margin: 0px;
  }

  .p-lg-0 {
    padding: 0px;
  }

}

@media (min-width:1200px) {
  .m-lg-1 {
    margin: 10px;
  }

  .p-lg-1 {
    padding: 10px;
  }

}

@media (min-width:1200px) {
  .m-lg-2 {
    margin: 20px;
  }

  .p-lg-2 {
    padding: 20px;
  }

}

@media (min-width:1200px) {
  .m-lg-3 {
    margin: 30px;
  }

  .p-lg-3 {
    padding: 30px;
  }

}

@media (min-width:1200px) {
  .m-lg-4 {
    margin: 40px;
  }

  .p-lg-4 {
    padding: 40px;
  }

}

@media (min-width:1200px) {
  .m-lg-5 {
    margin: 50px;
  }

  .p-lg-5 {
    padding: 50px;
  }

}

@media (min-width:1200px) {
  .m-lg-6 {
    margin: 60px;
  }

  .p-lg-6 {
    padding: 60px;
  }

}

@media (min-width:1200px) {
  .m-lg-7 {
    margin: 70px;
  }

  .p-lg-7 {
    padding: 70px;
  }

}

@media (min-width:1200px) {
  .m-lg-8 {
    margin: 80px;
  }

  .p-lg-8 {
    padding: 80px;
  }

}

@media (min-width:1200px) {
  .m-lg-9 {
    margin: 90px;
  }

  .p-lg-9 {
    padding: 90px;
  }

}

@media (min-width:1200px) {
  .m-lg-10 {
    margin: 100px;
  }

  .p-lg-10 {
    padding: 100px;
  }

}

@media (min-width:1200px) {
  .mt-lg-0 {
    margin-top: 0px;
  }

  .pt-lg-0 {
    padding-top: 0px;
  }

}

@media (min-width:1200px) {
  .mt-lg-1 {
    margin-top: 10px;
  }

  .pt-lg-1 {
    padding-top: 10px;
  }

}

@media (min-width:1200px) {
  .mt-lg-2 {
    margin-top: 20px;
  }

  .pt-lg-2 {
    padding-top: 20px;
  }

}

@media (min-width:1200px) {
  .mt-lg-3 {
    margin-top: 30px;
  }

  .pt-lg-3 {
    padding-top: 30px;
  }

}

@media (min-width:1200px) {
  .mt-lg-4 {
    margin-top: 40px;
  }

  .pt-lg-4 {
    padding-top: 40px;
  }

}

@media (min-width:1200px) {
  .mt-lg-5 {
    margin-top: 50px;
  }

  .pt-lg-5 {
    padding-top: 50px;
  }

}

@media (min-width:1200px) {
  .mt-lg-6 {
    margin-top: 60px;
  }

  .pt-lg-6 {
    padding-top: 60px;
  }

}

@media (min-width:1200px) {
  .mt-lg-7 {
    margin-top: 70px;
  }

  .pt-lg-7 {
    padding-top: 70px;
  }

}

@media (min-width:1200px) {
  .mt-lg-8 {
    margin-top: 80px;
  }

  .pt-lg-8 {
    padding-top: 80px;
  }

}

@media (min-width:1200px) {
  .mt-lg-9 {
    margin-top: 90px;
  }

  .pt-lg-9 {
    padding-top: 90px;
  }

}

@media (min-width:1200px) {
  .mt-lg-10 {
    margin-top: 100px;
  }

  .pt-lg-10 {
    padding-top: 100px;
  }

}

@media (min-width:1200px) {
  .mb-lg-0 {
    margin-bottom: 0px;
  }

  .pb-lg-0 {
    padding-bottom: 0px;
  }

}

@media (min-width:1200px) {
  .mb-lg-1 {
    margin-bottom: 10px;
  }

  .pb-lg-1 {
    padding-bottom: 10px;
  }

}

@media (min-width:1200px) {
  .mb-lg-2 {
    margin-bottom: 20px;
  }

  .pb-lg-2 {
    padding-bottom: 20px;
  }

}

@media (min-width:1200px) {
  .mb-lg-3 {
    margin-bottom: 30px;
  }

  .pb-lg-3 {
    padding-bottom: 30px;
  }

}

@media (min-width:1200px) {
  .mb-lg-4 {
    margin-bottom: 40px;
  }

  .pb-lg-4 {
    padding-bottom: 40px;
  }

}

@media (min-width:1200px) {
  .mb-lg-5 {
    margin-bottom: 50px;
  }

  .pb-lg-5 {
    padding-bottom: 50px;
  }

}

@media (min-width:1200px) {
  .mb-lg-6 {
    margin-bottom: 60px;
  }

  .pb-lg-6 {
    padding-bottom: 60px;
  }

}

@media (min-width:1200px) {
  .mb-lg-7 {
    margin-bottom: 70px;
  }

  .pb-lg-7 {
    padding-bottom: 70px;
  }

}

@media (min-width:1200px) {
  .mb-lg-8 {
    margin-bottom: 80px;
  }

  .pb-lg-8 {
    padding-bottom: 80px;
  }

}

@media (min-width:1200px) {
  .mb-lg-9 {
    margin-bottom: 90px;
  }

  .pb-lg-9 {
    padding-bottom: 90px;
  }

}

@media (min-width:1200px) {
  .mb-lg-10 {
    margin-bottom: 100px;
  }

  .pb-lg-10 {
    padding-bottom: 100px;
  }

}

@media (min-width:1200px) {
  .ml-lg-0 {
    margin-left: 0px;
  }

  .pl-lg-0 {
    padding-left: 0px;
  }

}

@media (min-width:1200px) {
  .ml-lg-1 {
    margin-left: 10px;
  }

  .pl-lg-1 {
    padding-left: 10px;
  }

}

@media (min-width:1200px) {
  .ml-lg-2 {
    margin-left: 20px;
  }

  .pl-lg-2 {
    padding-left: 20px;
  }

}

@media (min-width:1200px) {
  .ml-lg-3 {
    margin-left: 30px;
  }

  .pl-lg-3 {
    padding-left: 30px;
  }

}

@media (min-width:1200px) {
  .ml-lg-4 {
    margin-left: 40px;
  }

  .pl-lg-4 {
    padding-left: 40px;
  }

}

@media (min-width:1200px) {
  .ml-lg-5 {
    margin-left: 50px;
  }

  .pl-lg-5 {
    padding-left: 50px;
  }

}

@media (min-width:1200px) {
  .ml-lg-6 {
    margin-left: 60px;
  }

  .pl-lg-6 {
    padding-left: 60px;
  }

}

@media (min-width:1200px) {
  .ml-lg-7 {
    margin-left: 70px;
  }

  .pl-lg-7 {
    padding-left: 70px;
  }

}

@media (min-width:1200px) {
  .ml-lg-8 {
    margin-left: 80px;
  }

  .pl-lg-8 {
    padding-left: 80px;
  }

}

@media (min-width:1200px) {
  .ml-lg-9 {
    margin-left: 90px;
  }

  .pl-lg-9 {
    padding-left: 90px;
  }

}

@media (min-width:1200px) {
  .ml-lg-10 {
    margin-left: 100px;
  }

  .pl-lg-10 {
    padding-left: 100px;
  }

}

@media (min-width:1200px) {
  .mr-lg-0 {
    margin-right: 0px;
  }

  .pr-lg-0 {
    padding-right: 0px;
  }

}

@media (min-width:1200px) {
  .mr-lg-1 {
    margin-right: 10px;
  }

  .pr-lg-1 {
    padding-right: 10px;
  }

}

@media (min-width:1200px) {
  .mr-lg-2 {
    margin-right: 20px;
  }

  .pr-lg-2 {
    padding-right: 20px;
  }

}

@media (min-width:1200px) {
  .mr-lg-3 {
    margin-right: 30px;
  }

  .pr-lg-3 {
    padding-right: 30px;
  }

}

@media (min-width:1200px) {
  .mr-lg-4 {
    margin-right: 40px;
  }

  .pr-lg-4 {
    padding-right: 40px;
  }

}

@media (min-width:1200px) {
  .mr-lg-5 {
    margin-right: 50px;
  }

  .pr-lg-5 {
    padding-right: 50px;
  }

}

@media (min-width:1200px) {
  .mr-lg-6 {
    margin-right: 60px;
  }

  .pr-lg-6 {
    padding-right: 60px;
  }

}

@media (min-width:1200px) {
  .mr-lg-7 {
    margin-right: 70px;
  }

  .pr-lg-7 {
    padding-right: 70px;
  }

}

@media (min-width:1200px) {
  .mr-lg-8 {
    margin-right: 80px;
  }

  .pr-lg-8 {
    padding-right: 80px;
  }

}

@media (min-width:1200px) {
  .mr-lg-9 {
    margin-right: 90px;
  }

  .pr-lg-9 {
    padding-right: 90px;
  }

}

@media (min-width:1200px) {
  .mr-lg-10 {
    margin-right: 100px;
  }

  .pr-lg-10 {
    padding-right: 100px;
  }

}

.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-image {
  background-image: url(/static/media/img-02.f1db2bf5.jpeg);
}

.bg-image-1 {
  background-image: url(/static/media/small-banner.c249a9ee.jpg);
}

.bg-gray {
  background: #f5f5f5;
}

.bg-dark-gray {
  background: #323232;
}

.bg-yellow {
  background-color: #ff0 !important;
}

.bg-primary {
  background-color: #04d39f !important;
}

.row-equal-height {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row-equal-height [class*="col-"] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.owl-carousel .owl-nav {
  display: block;
  position: absolute;
  text-indent: inherit;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  left: 0;
  width: 100%;
  cursor: pointer;
  z-index: 999;
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  display: block;
  position: absolute;
  text-indent: inherit;
  width: auto;
  cursor: pointer;
  opacity: 0;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  top: 50%;
  background: 0 0;
  padding: 0;
  border: none;
}

.owl-carousel .owl-nav .owl-prev {
  left: 0;
}

.owl-carousel .owl-nav .owl-next {
  right: 0;
}

.owl-carousel .owl-nav i {
  font-size: 18px;
  width: 28px;
  height: 40px;
  line-height: 40px;
  background: #323232;
  color: #fff;
  border-radius: 2px;
  border: 0 solid rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.09);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.09);
  padding-left: 2px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  margin-top: -3px;
}

.owl-carousel:hover .owl-nav .owl-next,
.owl-carousel:hover .owl-nav .owl-prev {
  opacity: 1;
  background: 0 0;
  padding: 0;
}

.owl-carousel:hover .owl-nav .owl-next:hover i,
.owl-carousel:hover .owl-nav .owl-prev:hover i {
  background: #04d39f;
}

.owl-carousel:hover .owl-nav .owl-next:focus,
.owl-carousel:hover .owl-nav .owl-prev:focus {
  outline: 0;
}

.owl-carousel:hover .owl-nav .owl-prev {
  left: 15px;
}

.owl-carousel:hover .owl-nav .owl-next {
  right: 15px;
}

.owl-carousel .owl-dots {
  display: inline-block;
  position: absolute;
  bottom: -35px;
  text-indent: inherit;
  left: 0;
  width: 100%;
  cursor: pointer;
  text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
  background: 0 0;
  padding: 0;
  border: none;
}

.owl-carousel .owl-dots .owl-dot span {
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  cursor: pointer;
  display: inline-block;
  margin: 0 3px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  background: #555;
}

.owl-carousel .owl-dots .owl-dot.active span {
  width: 20px;
  background: #04d39f;
}

.owl-carousel .owl-dots .owl-dot:focus {
  outline: 0;
}

.owl-theme .owl-nav {
  margin-top: -17px;
}

::selection {
  background: #999999;
  color: #fff;
  text-shadow: none;
}

body {
  color: #969696;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
}

.button,
a,
button,
input,
input[type=submit],
select,
textarea {
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

btn,
input,
select,
textarea {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #323232;
  margin-top: 0;
  margin-bottom: 15px;
}

h1 {
  font-size: 36px;
  line-height: 44px;
}

h2 {
  font-size: 30px;
  line-height: 38px;
}

h3 {
  font-size: 26px;
  line-height: 34px;
}

h4 {
  font-size: 22px;
  line-height: 30px;
}

h5 {
  font-size: 20px;
  line-height: 28px;
}

h6 {
  font-size: 18px;
  line-height: 22px;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  word-break: break-word;
}

table {
  border: 1px solid #f5f5f5;
  margin-bottom: 20px;
}

table#wp-calendar {
  background: #fff;
}

table caption {
  color: #969696;
}

table th {
  background: #fbfbfb;
  color: #323232;
}

table td,
table th {
  border: 1px solid #eaeaea;
  padding: 4px 8px;
}

dl dd {
  margin-bottom: 15px;
}

dl dd:last-child {
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 25px;
  margin-bottom: 1em;
}

ol {
  padding-left: 0;
}

ol li {
  list-style: decimal inside;
}

ol ol {
  padding-left: 25px;
}

ul li {
  list-style: inherit;
}

ul.list-inside {
  padding-left: 15px;
}

ul.list-inside li {
  list-style-position: inside;
}

a {
  color: #04d39f;
  outline: 0;
}

a:focus,
a:hover {
  color: #323232;
  text-decoration: none;
}

ins {
  background: #fff9c0;
  text-decoration: none;
}

img {
  max-width: 100%;
}

pre {
  background: #f5f5f5;
  padding: 20px;
  border: 1px solid #e1e1e1;
}

select {
  border-color: #e8e8e8;
  border: 1px solid #e8e8e8;
  height: 43px;
  padding: 0 10px;
}

abbr[title] {
  text-decoration: none;
}

audio,
video {
  width: 100%;
  vertical-align: top;
}

btn,
input,
select,
textarea {
  outline: 0;
}

button.submit {
  background: #04d39f;
  border: none;
  color: #fff;
  line-height: 38px;
  padding: 0 18px;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
}

.form-control,
input[type=email],
input[type=password],
input[type=search],
input[type=text],
textarea {
  width: 100%;
  padding: 10px 15px;
  height: 46px;
  background: #fff;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #969696;
  font-size: 14px;
}

.form-control:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=text]:focus,
textarea:focus {
  border-color: #04d39f;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
  padding: 13px;
}

input[type=submit] {
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  background: #04d39f;
  border: none;
  color: #fff;
  line-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
}

input[type=submit]:hover,
input[type=submit]:focus {
  background: #323232;
  color: #fff;
}

textarea {
  padding: 13px;
  height: auto;
}

/**************************
    HEADER CLASSIC
**************************/
.menu-list-items .navbar {
  padding: 0;
}

header.site-header {
  position: relative;
  z-index: 1021;
  background: #fff;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

header.site-header .logo-wrapper {
  text-align: left;
}

header.site-header .logo-wrapper img {
  width: 200px;
}

header.site-header .topbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 7px 0;
}

header.site-header .topbar .topbar-link ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

header.site-header .topbar .topbar-link ul li {
  font-size: 13px;
  padding-right: 15px;
  line-height: 30px;
}

header.site-header .topbar .topbar-link ul li a {
  color: #323232;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header.site-header .topbar .topbar-link ul li a:hover {
  color: #04d39f;
}

header.site-header .topbar .topbar-link ul li a:first-child {
  padding-left: 0;
}

header.site-header .topbar .topbar-link ul li i {
  padding-right: 5px;
  color: inherit;
}

header.site-header .topbar .topbar-link .topbar-social_profiles {
  padding-left: 0;
}

header.site-header .topbar .topbar-link .topbar-social_profiles li {
  padding: 0;
  text-align: center;
}

header.site-header .topbar .topbar-right .topbar-link {
  display: inline-block;
  vertical-align: top;
}

header.site-header .topbar .topbar-right .topbar-link > ul > li {
  padding-right: 0;
  padding-left: 12px;
}

header.site-header .topbar .topbar-right .topbar-link > ul > li a {
  color: #323232;
}

header.site-header .topbar .topbar-right .topbar-link > ul > li a:hover {
  color: #04d39f;
}

header.site-header .topbar .topbar-right .topbar-link > ul > li .top-menu li:first-child {
  padding-left: 0;
}

header.site-header .topbar .topbar-right .topbar-link > ul > li .topbar-social_profiles {
  padding-left: 0;
}

header.site-header .topbar .topbar-right .topbar-link > ul > li .topbar-social_profiles li:first-child {
  padding-right: 0;
}

header.site-header .topbar .topbar-right .topbar-link > ul > li .topbar-social_profiles li a {
  padding: 10px 6px;
}

header.site-header .topbar .topbar-right .topbar-link > ul > li .topbar-social_profiles li a i {
  padding-right: 0;
}

header.site-header .topbar .dropdown-menu {
  min-width: 6.5rem;
  overflow-y: auto;
  padding: 0;
  border-radius: 0;
  top: 12px !important;
}

header.site-header .topbar .dropdown-menu .dropdown-item {
  padding: 0 15px;
  color: #969696;
  font-size: 13px;
  line-height: 32px;
  background: #fff;
}

header.site-header .topbar .dropdown-menu .dropdown-item:focus,
header.site-header .topbar .dropdown-menu .dropdown-item:hover {
  background-color: #04d39f;
  color: #fff;
}

header.site-header .dropdown-toggle:after {
  content: "";
  margin-left: 12px;
  border-top: .35em solid;
  border-left: .35em solid transparent;
  border-right: .35em solid transparent;
  vertical-align: middle;
}

header.site-header .logo-wrapper {
  padding: 20px 0;
}

header.site-header .header-style-default .ciya-tools {
  margin-top: 0;
  margin-left: 15px;
  display: inline-block;
}

header.site-header .ciya-tools {
  float: right;
  margin-left: 15px;
}

header.site-header .ciya-tools-actions {
  padding: 0;
  margin: 0;
}

header.site-header .ciya-tools-actions > li {
  list-style-type: none;
  display: inline-block;
  width: 38px;
  height: 38px;
  padding: 0;
  line-height: 45px;
  text-align: center;
  position: relative;
}

header.site-header .ciya-tools-actions > li .glyph-icon {
  font-size: 20px;
}

header.site-header .ciya-tools-actions > li i {
  font-size: 18px;
  margin-right: 0;
  color: #323232;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

header.site-header .ciya-tools-actions > li.ciya-tools-search i {
  color: rgba(0, 0, 0, 0.5);
}

header.site-header .ciya-tools-actions > li a {
  color: #323232;
}

header.site-header .ciya-tools-actions > li a:hover {
  color: #04d39f;
}

header.site-header .ciya-tools-actions > li a:hover i,
header.site-header .ciya-tools-actions > li.ciya-tools-search a:hover i {
  color: #04d39f;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart {
  background-color: #fff;
  color: #323232;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  width: 350px;
  z-index: 9999;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  padding: 15px;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .pgs-product-list-widget-container {
  position: relative;
  width: 100%;
  max-height: 338px;
  overflow: hidden;
  max-height: 340px;
  padding-bottom: 0;
  padding: 0;
  overflow: auto;
  margin-bottom: 15px;
  border-bottom: 3px double #f5f5f5;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .pgs-product-list-widget-container .ciyashop-mini-cart {
  padding: 0;
  margin: 0;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .pgs-product-list-widget-container .ciyashop-mini-cart .ciya-mini-cart-item {
  list-style-type: none;
  text-align: left;
  position: relative;
  margin-bottom: 10px;
  line-height: 18px;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .pgs-product-list-widget-container .ciyashop-mini-cart .ciya-mini-cart-item img {
  max-width: 60px;
  margin-right: 10px;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .pgs-product-list-widget-container .ciyashop-mini-cart .ciya-mini-cart-item a {
  font-weight: 400;
  margin-bottom: 3px;
  overflow: hidden;
  display: inline-block;
  line-height: 18px;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .pgs-product-list-widget-container .ciyashop-mini-cart .ciya-mini-cart-item a.remove {
  font-size: 18px;
  color: #323232 !important;
  position: absolute;
  top: 0;
  left: auto;
  right: 5px;
  margin-top: 0;
  margin-left: 0;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .pgs-product-list-widget-container .ciyashop-mini-cart .ciya-mini-cart-item a.product-title {
  font-size: 13px;
  color: #323232;
  margin-right: 20px;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .pgs-product-list-widget-container .ciyashop-mini-cart .ciya-mini-cart-item a.product-title:hover {
  color: #04d39f;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .quantity {
  padding: 0;
  position: relative;
  display: block;
  line-height: 18px;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .quantity .amount {
  font-weight: 600;
  color: #04d39f;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__total {
  border: none;
  border-top: 0 solid #f5f5f5;
  margin: 0;
  padding: 5px 0;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__total.total {
  border-top: 0 double #f5f5f5;
  padding: 0;
  margin-bottom: 0;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__total.total strong {
  color: #323232;
  min-width: 40px;
  display: inline-block;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__total.total .amount {
  float: right;
  font-size: 20px;
  font-weight: 600;
  padding-left: 5px;
  color: #04d39f;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__buttons {
  padding: 0;
  margin: 0;
  display: flex;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__buttons .button {
  margin: 0;
  padding: 5px 27px;
  margin-right: 5px;
  line-height: 34px;
  width: 49%;
  border-radius: 0;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__buttons a.button {
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__buttons a.button:last-child {
  background: #323232;
  margin-right: 0;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__buttons a.button:last-child:hover {
  background: #04d39f;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__buttons a.button:first-child {
  background: #04d39f;
}

header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__buttons a.button:first-child:hover {
  background: #323232;
}

header.site-header .ciya-tools-actions li:hover .cart-contents .widget-shopping-cart {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}

header.site-header .ciya-tools-actions li:hover .cart-contents .widget-shopping-cart .ciyashop-mini-cart-empty-message {
  margin: 10px 0;
}

header.site-header .ciya-tools-cart .cart-link,
header.site-header .ciya-tools-cart a,
header.site-header .ciya-tools-wishlist .cart-link,
header.site-header .ciya-tools-wishlist a {
  position: relative;
}

header.site-header .ciya-tools-cart .cart-link .count,
header.site-header .ciya-tools-cart .cart-link .ciyashop-wishlist-count,
header.site-header .ciya-tools-cart a .count,
header.site-header .ciya-tools-cart a .ciyashop-wishlist-count,
header.site-header .ciya-tools-wishlist .cart-link .count,
header.site-header .ciya-tools-wishlist .cart-link .ciyashop-wishlist-count,
header.site-header .ciya-tools-wishlist a .count,
header.site-header .ciya-tools-wishlist a .ciyashop-wishlist-count {
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  position: absolute;
  top: 0;
  right: 50%;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  margin-top: -12px;
  margin-right: -17px;
  color: #fff;
  background: #04d39f;
  border-radius: 50%;
}

header.site-header .header-nav {
  background: #04d39f;
}

header.site-header .sticky-wrapper {
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 96px;
  overflow: hidden;
}

header.site-header .sticky-wrapper.is-sticky {
  opacity: 1;
  z-index: 9999;
}

header.site-header.is-sticky {
  width: 100%;
  left: 0;
  z-index: 999;
  position: fixed;
  top: 0px;
}

header.site-header.is-sticky .container-fluid {
  max-width: 1300px;
  padding-right: 15px;
  padding-left: 15px;
}

header.site-header.is-sticky .topbar {
  display: none;
}

header.site-header.is-sticky .logo-wrapper {
  padding: 14px 0px;
}

header.site-header.is-sticky .header-search-wrap {
  display: none;
}

header.site-header.is-sticky .mega-menu .menu-links > li > a {
  height: 70px;
  line-height: 70px;
}

header.site-header.is-sticky .mega-menu .menu-links > li .drop-down.grid-col-12 {
  width: 1270px;
  left: 50%;
  margin-left: -635px;
}

.mega-menu .menu-links > li:hover {
  background-color: transparent !important;
}

.mega-menu .menu-links > li:hover > a {
  color: #04d39f;
}

.mega-menu .menu-links > li > a {
  border: 0 solid #fff;
  outline: none;
  text-decoration: none;
  padding: 0 10px 0 10px;
  line-height: 83px;
  font-weight: 400;
  height: 83px;
  vertical-align: baseline;
  text-align: left;
  width: auto;
  display: block;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(0, 0, 0, 0);
  border-radius: 0 0 0 0;
  font-family: inherit;
  font-size: 14px;
}

.mega-menu .menu-links > li > a i {
  padding-left: 5px !important;
}

.mega-menu .menu-links > li.active {
  background-color: transparent;
}

.mega-menu .menu-links > li.active > a {
  color: #04d39f !important;
}

.mega-menu .menu-links .drop-down-multilevel {
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.mega-menu .menu-links .drop-down-multilevel li:hover {
  background-color: transparent;
  color: #04d39f;
}

.mega-menu .menu-links .drop-down-multilevel li:hover > a {
  color: #04d39f;
}

.mega-menu .menu-links .drop-down-multilevel li:hover > a i {
  color: #04d39f !important;
}

.mega-menu .menu-links .drop-down-multilevel a {
  background: rgba(255, 255, 255, 0);
  color: #969696;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 15px 8px 15px;
  line-height: 22px;
  min-height: auto;
}

.mega-menu .menu-links .drop-down-multilevel a span {
  transition: all 0.3s ease-in-out;
}

.mega-menu .menu-links .drop-down-multilevel a:hover span {
  color: #04d39f;
}

.mega-menu .menu-links .drop-down {
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.mega-menu .menu-links .drop-down h4 {
  color: #323232;
  margin-bottom: 15px;
}

.mega-menu .menu-links .drop-down a {
  color: #969696;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  padding: 3px 0 3px 0;
  line-height: 22px;
  min-height: auto;
  color: #969696;
}

.mega-menu .menu-links .drop-down a:hover {
  color: #04d39f;
}

.mega-menu .menu-links .drop-down .grid-col-2 {
  width: 20%;
}

.mega-menu > section.menu-list-items {
  background-color: transparent;
}

.search_form-wrap {
  float: right;
}

.search_form-wrap .select2-container {
  width: 225px !important;
}

.search_form-wrap .search_form-inner input.form-control {
  background: 0 0;
  border: 1px solid rgba(0, 0, 0, 0.07);
  width: 450px;
  padding-right: 50px;
  font-size: 15px;
  box-shadow: none;
  height: 45px;
  min-width: 220px;
  padding: 0 25px;
  border-radius: 0 50px 50px 0;
}

.search_form-wrap .search_form-inner .select2-selection.select2-selection--single {
  border: none;
}

.search_form-wrap .search_form-search-button {
  position: absolute;
  top: 0;
  width: 45px;
  height: 45px;
  right: 5px;
}

.search_form-wrap .search_form-search-button:before {
  content: "\f002";
  right: 0;
  position: relative;
  height: 45px;
  width: 45px;
  display: inline-block;
  text-align: center;
  top: 0;
  font-size: 16px;
  line-height: 43px;
  font-family: FontAwesome;
  color: #04d39f;
  transition: all .5s ease-out 0s;
}

.search_form-wrap .search_form-search-button input[type=submit] {
  border: none;
  height: 45px;
  font-size: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  z-index: 9;
  transition: none;
  background: 0 0;
}

.search_form-wrap .search_form-input-wrap {
  position: relative;
}

.search_form-wrap .search-form {
  display: flex;
}

.search_form-wrap .search-form .screen-reader-text {
  display: none;
}

.search_form-wrap .search-form .search_form-search-field {
  position: relative;
  vertical-align: top;
}

.search_form-wrap .select2-selection--single {
  border-radius: 50px 0 0 50px;
  height: 45px;
  border: none;
  background: rgba(0, 0, 0, 0.04);
  padding-left: 15px;
}

.search_form-wrap .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
  color: #969696;
}

.search_form-wrap .select2-selection--single .select2-selection__arrow {
  height: 41px;
  width: 30px;
}

.select2-container--default .select2-dropdown {
  border: none;
  border-color: #e8e8e8;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 400px;
  overflow: auto;
}

.select2-container--default .select2-selection--single {
  height: 45px;
  background: #fff;
  box-shadow: none;
  border: 1px solid #e8e8e8;
  padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
  color: #969696;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 41px;
  width: 30px;
}

.select2-container--default .select2-results__option {
  padding: 5px 15px;
  line-height: 24px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #04d39f;
  color: #fff;
}

.select2-container--default .select2-results__option:hover {
  background-color: #04d39f;
  color: #fff;
}

.select2-container--default .select2-results__option.select2-results__option--highlighted {
  background-color: #04d39f;
  color: #fff;
}

.select2-search--dropdown {
  display: none;
}

/********************************
    header-style-menu-default
********************************/
.header-style-menu-default .topbar .topbar-link ul li:first-child {
  padding-right: 10px;
}

.header-style-menu-default .topbar .topbar-link ul li:last-child {
  padding-right: 0;
}

/********************************
    Header-style-logo-center
********************************/
.header-style-logo-center .header-search-wrap .search-button-wrap .search-button {
  width: 35px;
  height: 45px;
  line-height: 45px;
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #323232;
  display: inline-block;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.header-style-logo-center .header-search-wrap .search-button-wrap .search-button:hover {
  color: #04d39f;
}

.header-style-logo-center .header-search-wrap .search-button-wrap .btn.focus,
.header-style-logo-center .header-search-wrap .search-button-wrap .btn:focus,
.header-style-logo-center .header-search-wrap .search-button-wrap .btn-primary,
.header-style-logo-center .header-search-wrap .search-button-wrap .btn-primary:focus {
  box-shadow: none;
}

.header-style-logo-center .logo-wrapper {
  text-align: center !important;
}

.header-style-logo-center .logo-wrapper img {
  max-height: 45px;
}

.header-style-logo-center .primary-nav-wrapper {
  vertical-align: middle;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}

/********************************
    Header-style-menu-center
********************************/
.header-style-menu-center .container-fluid {
  padding-left: 35px;
  padding-right: 35px;
}

.header-style-menu-center .topbar {
  padding: 0 !important;
}

.header-style-menu-center .topbar .topbar-link ul {
  align-items: center;
}

.header-style-menu-center .topbar .topbar-left li.topbar_item {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding: 7px 14px;
}

.header-style-menu-center .topbar .topbar-left li.topbar_item:first-child {
  border: none;
  padding-left: 0;
}

.header-style-menu-center .topbar .topbar-left li.topbar_item:first-child a {
  padding-left: 0;
}

.header-style-menu-center .topbar .topbar-left li.topbar_item:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.header-style-menu-center .topbar .topbar-right .topbar-link > ul > li .top-menu li {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding: 7px 14px;
}

.header-style-menu-center .topbar .topbar-right .topbar-link > ul > li .top-menu li:first-child {
  padding-left: 14px !important;
}

.header-style-menu-center .topbar .topbar-right .topbar-link > ul > li .top-menu li:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.header-style-menu-center .header-nav-right-wrapper {
  text-align: right;
}

.header-style-menu-center .header-nav-right-wrapper .ciya-tools {
  float: none;
  display: inline-block;
  vertical-align: middle;
}

.header-style-menu-center .header-search-wrap {
  display: inline-block;
  vertical-align: middle;
}

.header-style-menu-center .header-search-wrap .search-button-wrap .search-button {
  width: 35px;
  height: 45px;
  line-height: 45px;
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #323232;
  display: inline-block;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.header-style-menu-center .header-search-wrap .search-button-wrap .search-button:hover {
  color: #04d39f;
}

.header-style-menu-center .header-search-wrap .search-button-wrap .btn.focus,
.header-style-menu-center .header-search-wrap .search-button-wrap .btn:focus,
.header-style-menu-center .header-search-wrap .search-button-wrap .btn-primary,
.header-style-menu-center .header-search-wrap .search-button-wrap .btn-primary:focus {
  box-shadow: none;
}

.header-style-menu-center .header-search-wrap .search-button-wrap span {
  display: none;
}

.header-style-menu-center .header-nav {
  background: transparent !important;
}

.header-style-menu-center .mega-menu .menu-links > li > a {
  color: #323232;
}

.header-style-menu-center .mega-menu .menu-links > li:hover > a,
.header-style-menu-center .mega-menu .menu-links > li:focus > a {
  color: #04d39f;
}

.header-style-menu-center .primary-nav-wrapper {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  vertical-align: middle;
}

.header-style-menu-center .logo-wrapper {
  text-align: center;
}

.header-style-menu-center .logo-wrapper img {
  max-height: 45px;
}

.header-style-menu-center .drop-down.grid-col-12 {
  width: 1170px;
  left: 50%;
  margin-left: -585px;
}

/********************************
    Header-style-menu-right
********************************/
.header-style-menu-right .container-fluid {
  padding-left: 35px;
  padding-right: 35px;
}

.header-style-menu-right .topbar {
  padding: 0 !important;
}

.header-style-menu-right .topbar .topbar-link ul {
  align-items: center;
}

.header-style-menu-right .topbar .topbar-left li.topbar_item {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding: 7px 14px;
}

.header-style-menu-right .topbar .topbar-left li.topbar_item:first-child {
  border: none;
  padding-left: 0;
}

.header-style-menu-right .topbar .topbar-left li.topbar_item:first-child a {
  padding-left: 0;
}

.header-style-menu-right .topbar .topbar-left li.topbar_item:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.header-style-menu-right .topbar .topbar-right .topbar-link > ul > li .top-menu li {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding: 7px 14px;
}

.header-style-menu-right .topbar .topbar-right .topbar-link > ul > li .top-menu li:first-child {
  padding-left: 14px !important;
}

.header-style-menu-right .topbar .topbar-right .topbar-link > ul > li .top-menu li:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.header-style-menu-right .logo-wrapper {
  text-align: center;
}

.header-style-menu-right .logo-wrapper img {
  max-height: 45px;
}

.header-style-menu-right .header-nav {
  background: transparent !important;
  text-align: right;
}

.header-style-menu-right .mega-menu .menu-links > li > a {
  color: #323232;
}

.header-style-menu-right .primary-nav-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: right;
}

.header-style-menu-right .header-search-wrap {
  display: inline-block;
  vertical-align: middle;
}

.header-style-menu-right .header-search-wrap .search-button-wrap .search-button {
  width: 35px;
  height: 45px;
  line-height: 45px;
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #323232;
  display: inline-block;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.header-style-menu-right .header-search-wrap .search-button-wrap .search-button:hover {
  color: #04d39f;
}

.header-style-menu-right .header-search-wrap .search-button-wrap .btn.focus,
.header-style-menu-right .header-search-wrap .search-button-wrap .btn:focus,
.header-style-menu-right .header-search-wrap .search-button-wrap .btn-primary,
.header-style-menu-right .header-search-wrap .search-button-wrap .btn-primary:focus {
  box-shadow: none;
}

.header-style-menu-right .header-search-wrap .search-button-wrap span {
  display: none;
}

.header-style-menu-right .header-nav-right-wrapper {
  text-align: right;
  padding-right: 15px;
}

.header-style-menu-right .header-nav-right-wrapper .ciya-tools {
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
}

/********************************
    Header-style-Topbar-with-Main-Header
********************************/
.header-style-topbar-with-main-header .logo-wrapper {
  text-align: center;
}

.header-style-topbar-with-main-header .logo-wrapper img {
  max-height: 45px;
}

.header-style-topbar-with-main-header .header-nav-right-wrapper {
  text-align: right;
  padding-right: 0px;
}

.header-style-topbar-with-main-header .header-nav-right-wrapper .ciya-tools {
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
}

.header-style-topbar-with-main-header .ciya-tools-actions > li i {
  color: #fff !important;
}

.header-style-topbar-with-main-header .ciya-tools-actions > li i:hover:hover {
  color: #323232 !important;
}

.header-style-topbar-with-main-header .ciya-tools-cart a .count,
.header-style-topbar-with-main-header .ciya-tools-wishlist a .ciyashop-wishlist-count {
  background: #323232 !important;
}

.header-style-topbar-with-main-header .header-search-wrap {
  display: inline-block;
  vertical-align: middle;
}

.header-style-topbar-with-main-header .header-search-wrap .search-button-wrap .search-button {
  width: 35px;
  height: 45px;
  line-height: 45px;
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.header-style-topbar-with-main-header .header-search-wrap .search-button-wrap .search-button:hover {
  color: #323232;
}

.header-style-topbar-with-main-header .header-search-wrap .search-button-wrap .btn.focus,
.header-style-topbar-with-main-header .header-search-wrap .search-button-wrap .btn:focus,
.header-style-topbar-with-main-header .header-search-wrap .search-button-wrap .btn-primary,
.header-style-topbar-with-main-header .header-search-wrap .search-button-wrap .btn-primary:focus {
  box-shadow: none;
}

.header-style-topbar-with-main-header .header-search-wrap .search-button-wrap span {
  display: none;
}

.header-style-topbar-with-main-header .primary-nav-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}

.header-style-topbar-with-main-header .header-main-bg-color-default {
  background-color: #04d39f;
}

/********************************
    header-style-right-topbar-main
********************************/
.header-style-right-topbar-main .topbar-bg-color-default {
  background: #04d39f;
}

.header-style-right-topbar-main .topbar-link > ul > li a {
  color: #fff !important;
}

.header-style-right-topbar-main .topbar {
  padding: 5px 20px !important;
}

.header-style-right-topbar-main .logo-wrapper {
  text-align: center;
}

.header-style-right-topbar-main .logo-wrapper img {
  max-height: 45px;
}

.header-style-right-topbar-main .header-search-wrap {
  display: inline-block;
  vertical-align: middle;
}

.header-style-right-topbar-main .header-search-wrap .search-button-wrap .search-button {
  width: 35px;
  height: 45px;
  line-height: 45px;
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #323232;
  display: inline-block;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.header-style-right-topbar-main .header-search-wrap .search-button-wrap .search-button:hover {
  color: #04d39f;
}

.header-style-right-topbar-main .header-search-wrap .search-button-wrap .btn.focus,
.header-style-right-topbar-main .header-search-wrap .search-button-wrap .btn:focus,
.header-style-right-topbar-main .header-search-wrap .search-button-wrap .btn-primary,
.header-style-right-topbar-main .header-search-wrap .search-button-wrap .btn-primary:focus {
  box-shadow: none;
}

.header-style-right-topbar-main .header-search-wrap .search-button-wrap span {
  display: none;
}

.header-style-right-topbar-main .header-nav-right-wrapper {
  text-align: right;
  padding-right: 0px;
}

.header-style-right-topbar-main .header-nav-right-wrapper .ciya-tools {
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
}

.header-style-right-topbar-main .header-main-bg-color-default {
  background-color: transparent;
  padding: 5px 15px;
}

.header-style-right-topbar-main .header-nav {
  background: transparent !important;
}

.header-style-right-topbar-main .mega-menu .menu-links > li > a {
  color: #323232;
}

.header-style-right-topbar-main .border-left {
  border-color: #ddd;
}

#primary-menu i.hot-label,
#primary-menu i.new-label,
#primary-menu i.popular-label,
#primary-menu i.sale-label {
  background: #ffba03;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  padding: 2px 5px;
  line-height: 16px;
  margin-left: 5px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}

.mobile-menu {
  display: none;
}

.search-modal {
  margin: 20px;
  background: #fff;
}

.search-modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.search-modal .search-wrapper {
  max-width: 100%;
  margin: 0;
  display: table;
  width: 100%;
  height: 100%;
}

.search-modal .search-wrapper .search-modal-content {
  background: 0 0;
  border: none;
  padding: 0;
  margin: 0;
  display: table-cell;
  vertical-align: middle;
}

.search-modal .search-wrapper .search-modal-content .search_form-wrap {
  float: none;
  text-align: left;
}

.search-modal .search-wrapper .search-modal-content .search_form-wrap .search-form {
  align-items: center;
}

.search-modal .search-wrapper .search-modal-content .search_form-wrap .search_form-inner {
  padding: 0;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.search-modal .search-wrapper .search-modal-content .search_form-wrap .search_form-inner .search_form-input-wrap {
  width: 100%;
}

.search-modal .search-wrapper .search-modal-content .search_form-wrap .search_form-inner input.form-control {
  width: 100%;
  min-width: 100%;
  border-radius: 0;
  width: 100%;
  height: 55px;
  padding: 0 15px;
  font-size: 16px;
  border: none;
  padding-right: 60px;
}

.search-modal .search-wrapper .search-modal-content .search_form-wrap .search_form-inner .select2-selection.select2-selection--single {
  border-radius: 0;
  background: transparent;
}

.search-modal .search-wrapper .search-modal-content .search_form-wrap .search_form-inner .search_form-category-wrap {
  position: relative;
  padding-right: 10px;
  vertical-align: middle;
  display: table-cell;
}

.search-modal .search-wrapper .search-modal-content .search_form-wrap .search_form-inner .search_form-category-wrap:before {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: #ddd;
}

.search-modal .search-wrapper .search-modal-content .search_form-wrap .search_form-search-button {
  width: 50px;
  height: 55px;
}

.search-modal .search-wrapper .search-modal-content .search_form-wrap .search_form-search-button:before {
  line-height: 55px;
}

.search-modal .search-wrapper .search-modal-content .modal-header {
  background: 0 0;
  border: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 40px;
  right: 40px;
}

.search-modal .search-wrapper .search-modal-content .modal-header .close span {
  font-size: 0;
}

.search-modal .search-wrapper .search-modal-content .modal-header .close span:before {
  content: "\f156";
  font-family: pgsicon-ecommerce;
  font-size: 22px;
}

.search-modal .search-wrapper .search-modal-content .search-modal-content-inner {
  width: 50%;
  margin: auto;
}

.search-modal .search-wrapper .search-modal-content .search-modal-content-inner .search_form-keywords-title {
  font-size: 22px;
  text-align: center;
  padding: 60px 0 20px 0;
  color: #323232;
  font-weight: 600;
}

.search-modal .search-wrapper .search-modal-content .search-modal-content-inner .search_form-keywords-list {
  text-align: center;
}

.search-modal .search-wrapper .search-modal-content .search-modal-content-inner .search_form-keywords-list li {
  list-style: none;
  display: inline-block;
}

.search-modal .search-wrapper .search-modal-content .search-modal-content-inner .search_form-keywords-list li a {
  display: inline-block;
  color: #969696;
  line-height: 24px;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  margin: 5px 3px;
  padding: 4px 18px;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.compare-modal {
  display: none;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
}

.compare-modal.show {
  display: block;
  visibility: visible;
  opacity: 1;
}

.compare-modal .compare-wrapper {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 11000;
  width: 100%;
  height: 100%;
  border: 20px solid #fff;
  overflow: hidden;
  overflow-y: auto;
}

.compare-modal .compare-content {
  padding: 10px;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.compare-modal .compare-content .compare-title {
  position: relative;
  margin-bottom: 15px;
}

.compare-modal .compare-content .compare-title h1 {
  background: 0 0;
  font-size: 22px;
  color: #04d39f;
  font-weight: 600;
  margin-bottom: 5px;
  padding: 10px 0;
  text-transform: uppercase;
  border-bottom: 2px solid #fff;
  text-align: center;
}

.compare-modal .compare-content .compare-title button.close {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.compare-modal .compare-content .compare-title button.close:focus {
  box-shadow: none;
  outline: none;
}

.compare-modal .compare-content table td,
.compare-modal .compare-content table th {
  vertical-align: middle;
}

.compare-modal .compare-content table th {
  width: 20%;
}

.compare-modal .compare-content table td {
  width: 26%;
}

.compare-modal .compare-content table tbody tr th {
  text-align: right;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.compare-modal .compare-content table tbody tr td {
  text-align: center;
}

.compare-modal .compare-content table tbody tr td:nth-of-type(odd) {
  background: #f7f7f7;
}

.compare-modal .compare-content table tbody tr td a {
  color: #969696;
}

.compare-modal .compare-content table tbody tr td a span {
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 16px;
  border-radius: 18px;
  display: inline-block;
  font-weight: 600;
  color: red;
  font-size: 1em;
}

.compare-modal .compare-content table tbody tr td a span:hover {
  background-color: red;
  color: #fff;
}

.compare-modal .compare-content table tbody tr.image .image-wrap img {
  background: none repeat scroll 0 0 #FFFFFF;
  border: 1px solid #DADADA;
  height: auto;
  max-width: 100%;
  padding: 3px;
  margin-bottom: 20px;
  max-width: none;
  width: 220px;
}

.compare-modal .compare-content table tbody tr.price .ciya-Price-amount.amount {
  font-size: 16px;
  text-decoration: none;
  padding: 0 5px;
  display: inline-block;
  font-weight: 600;
  color: #04d39f;
}

.compare-modal .compare-content table tbody tr.add-to-cart a {
  background: #04d39f;
  border: none;
  color: #fff;
  line-height: 38px;
  padding: 0 18px;
  margin: 10px 0;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
}

.compare-modal .compare-content table tbody tr.add-to-cart a:hover {
  background: #323232;
}

.compare-modal .compare-content table tbody tr.description p,
.compare-modal .compare-content table tbody tr.description span,
.compare-modal .compare-content table tbody tr.description td,
.compare-modal .compare-content table tbody tr.dimensions p,
.compare-modal .compare-content table tbody tr.dimensions span,
.compare-modal .compare-content table tbody tr.dimensions td,
.compare-modal .compare-content table tbody tr.pa-size p,
.compare-modal .compare-content table tbody tr.pa-size span,
.compare-modal .compare-content table tbody tr.pa-size td,
.compare-modal .compare-content table tbody tr.sku p,
.compare-modal .compare-content table tbody tr.sku span,
.compare-modal .compare-content table tbody tr.sku td {
  color: #969696;
}

.compare-modal .compare-content table tbody tr.stock span {
  color: #009900;
}

.compare-modal .compare-content table tbody .remove th,
.compare-modal .compare-content table tbody .remove td {
  border-top: none;
  border-bottom: none;
}

.compare-modal .compare-content table tbody .image th,
.compare-modal .compare-content table tbody .image td {
  border-top: none;
}

.compare-modal .compare-content table tbody tr.title td {
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: #323232;
}

/* Responsive */
@media screen and (max-width:991px) {
  .header-style-menu-center .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mobile-menu {
    display: block;
  }

  #mainMenu,
  .slicknav_btn {
    display: none;
  }

  header.site-header .ciya-tools {
    margin-left: 0;
  }

  header.site-header .ciya-tools .ciya-tools-action i {
    font-size: 18px;
  }

  .mobile-butoon-menu {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0 8px;
    padding-right: 0px;
  }

  .mobile-butoon-menu a {
    text-align: center;
    display: block;
    color: #323232;
    font-size: 18px;
    position: relative;
    width: 20px;
    height: 24px;
    margin-left: 5px;
  }

  .mobile-butoon-menu a span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #323232;
    left: 0;
    top: 11px;
  }

  .mobile-butoon-menu a span:after,
  .mobile-butoon-menu a span:before {
    -webkit-transition: all .2s ease-in-out 0s;
    -moz-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #323232;
    left: 0;
  }

  .mobile-butoon-menu a span:before {
    top: -7px;
  }

  .mobile-butoon-menu a span:after {
    top: 7px;
  }

  .slicknav_menu {
    background: #fff;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    max-height: 400px;
    overflow: auto;
    z-index: 99;
    padding: 0px 0;
    -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    text-align: left;
    margin-top: -1px;
  }

}

/*-----------------Header mobile menu---------------------*/
header.site-header .dropdown-toggle:after {
  content: "\f107";
  font-family: FontAwesome;
  margin-left: 6px;
  vertical-align: middle;
  border: medium none;
}

.navbar-nav .dropdown-menu {
  -webkit-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  border: medium none;
}

.navbar-expand-md .navbar-nav .dropdown-menu.dropdown-menu-right.show {
  transform: rotateX(0deg);
  transition: all 400ms ease 0s;
  padding: 0;
  border-radius: 0;
}

.navbar-expand-md .navbar-nav .dropdown-menu {
  position: absolute;
  top: 59px;
  left: auto;
  width: 210px;
  right: auto;
  transition: all 400ms ease 0s;
  -webkit-transition: all 400ms ease 0s;
  -o-transition: all 400ms ease 0s;
  transform: rotateX(90deg);
  transform-origin: 0 0;
  margin-top: -5px;
}

.navbar-nav .dropdown-menu .dropdown-item:first-child {
  padding-top: 10px;
}

.navbar-nav .dropdown-menu .dropdown-item {
  padding: 10px 20px;
}

.navbar-nav .dropdown-menu .dropdown-item:last-child {
  padding-bottom: 10px;
}

.navbar-nav .dropdown-menu .dropdown-item {
  padding: 6px 20px;
}

.navbar-nav .dropdown-menu .dropdown-item a {
  color: #969696;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
  background: transparent;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: #04d39f;
}

.navbar-nav .dropdown-menu .dropdown-item  a {
  color: #969696;
  padding: 8px 15px 8px 15px;
  display: block;
}

.navbar-light .navbar-nav .nav-link {
  color: #323232;
  font-size: 14px;
  padding: 5px 10px;
  text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #04d39f;
}

nav.navbar.navbar-light.bg-faded {
  display: none;
}

.navbar.navbar-light .navbar-toggler {
  border: medium none;
  position: absolute;
  right: 0px;
  top: -54px;
}

.navbar-expand-md .navbar-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: auto;
  right: auto;
  transition: all 0.3s ease-in-out;
  transform: rotateX(90deg);
  transform-origin: 0 0;
}

.navbar-expand-md .navbar-nav .dropdown-menu.dropdown-menu-right.show {
  transform: rotateX(0deg);
  transition: all 0.3s ease-in-out;
}

.navbar-expand-md .navbar-nav .dropdown-menu.show {
  transform: rotateX(0deg);
  transition: all 0.3s ease-in-out;
}

.navbar-nav .dropdown-menu .dropdown-item a {
  color: #323232;
}

.navbar-light .navbar-nav .nav-link {
  color: #323232;
  font-size: 14px;
  padding: 29px 10px;
  text-transform: uppercase;
}

nav.navbar.navbar-light.bg-faded {
  display: none;
}

.navbar.navbar-light .navbar-toggler {
  border: medium none;
  position: absolute;
  right: 0px;
  top: -54px;
}

.navbar-light .navbar-toggler-icon {
  background-image: url(/static/media/toggle.f8b5dccf.svg)
}

/********************************
    footer-default
********************************/
footer.site-footer {
  background: #fff;
  -webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06);
}

footer.site-footer .footer-widgets-wrapper {
  padding: 80px 0 80px;
}

footer.site-footer .logo-wrapper {
  text-align: left;
}

footer.site-footer .logo-wrapper img {
  max-width: 200px;
}

footer.site-footer .footer-title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #323232;
  margin-bottom: 20px;
}

footer.site-footer .widget ul {
  margin-bottom: 0;
  padding-left: 0;
}

footer.site-footer .widget ul li {
  margin: 5px 0;
  line-height: 24px;
  list-style-type: none;
}

footer.site-footer .widget ul li a {
  color: #969696;
  display: inline-block;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
}

footer.site-footer .widget ul li:hover a {
  color: #04d39f;
}

footer.site-footer .widget.pgs-newsletter-widget {
  margin-top: 20px;
}

footer.site-footer .pgs-social-profiles .social-profiles ul {
  display: inline-block;
  margin-bottom: 0;
  padding-left: 0;
}

footer.site-footer .pgs-social-profiles .social-profiles ul li {
  display: inline-block;
  margin: 0;
  margin-right: 4px;
  list-style-type: none;
}

footer.site-footer .pgs-social-profiles .social-profiles ul li a i {
  border: 1px solid rgba(173, 173, 173, 0.5);
  font-size: 13px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 3px;
  vertical-align: top;
  text-align: center;
  color: #969696;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

footer.site-footer .pgs-social-profiles .social-profiles ul li a:hover i {
  background-color: #04d39f;
  border-color: #04d39f;
  color: #fff;
}

footer.site-footer .footer-nav-menu .footer-title {
  margin-bottom: 20px;
  text-transform: capitalize;
}

footer.site-footer .footer-nav-menu ul {
  padding-left: 0;
  margin-bottom: 0;
}

footer.site-footer .footer-nav-menu ul li {
  list-style-type: none;
}

footer.site-footer .footer-nav-menu ul li a {
  position: relative;
  padding: 0;
  padding-left: 15px;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

footer.site-footer .footer-nav-menu ul li a:after,
footer.site-footer .footer-nav-menu ul li a:before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  opacity: 1;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

footer.site-footer .footer-nav-menu ul li a:after {
  left: -10px;
  opacity: 0;
}

footer.site-footer .footer-nav-menu ul li a:hover:after {
  left: 0px;
  opacity: 1;
}

footer.site-footer .footer-nav-menu ul li a:hover:before {
  left: 10px;
  opacity: 0;
}

footer.site-footer .pgs-contact-widget ul li i {
  display: table-cell;
  padding-right: 10px;
  min-width: 24px;
  color: #04d39f;
}

footer.site-footer .pgs-contact-widget ul li span {
  display: table-cell;
}

footer.site-footer .pgs-newsletter-widget .newsletter_form {
  position: relative;
}

footer.site-footer .pgs-newsletter-widget .newsletter_form .newsletter-email {
  margin-bottom: 0;
  color: #323232;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  width: 100%;
  padding: 0 55px 0 15px;
  height: 46px;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
}

footer.site-footer .pgs-newsletter-widget .newsletter_form .newsletter-email:focus {
  border-color: #04d39f;
}

footer.site-footer .pgs-newsletter-widget .newsletter_form .button-area .input-group-btn > .btn {
  width: 43px;
  height: 46px;
  position: absolute;
  font-size: 0;
  top: 0;
  right: 0;
  padding: 0;
  line-height: 46px;
  background: #04d39f;
  color: #fff;
  border-radius: 0 3px 3px 0;
  overflow: hidden;
}

footer.site-footer .pgs-newsletter-widget .newsletter_form .button-area .input-group-btn > .btn:before {
  content: "\f1d9";
  font-family: FontAwesome;
  font-size: 14px;
}

footer.site-footer .pgs-opening-widget .pgs-opening-hours ul li {
  list-style-type: none;
  color: #969696;
  margin: 3px 0;
}

footer.site-footer .pgs-opening-widget .pgs-opening-hours ul li i {
  margin-right: 8px;
  color: #04d39f;
}

footer.site-footer .pgs-opening-widget .pgs-opening-hours ul li span {
  font-weight: 600;
  width: 120px;
  display: inline-block;
}

footer.site-footer .pgs-opening-widget .pgs-opening-hours ul li label {
  margin-bottom: 0;
}

footer.site-footer .pgs-instagram-widget .pgs-instgram-widget .instgram-item {
  width: 29%;
  margin-top: 10px;
  margin-right: 10px;
  float: left;
}

footer.site-footer .pgs-instagram-widget .pgs-instgram-widget .instgram-item:nth-child(-n+3) {
  margin-top: 0;
}

footer.site-footer .pgs-gallery-widget .pgs-gallery {
  display: inline-block;
  width: 100%;
}

footer.site-footer .pgs-gallery-widget .pgs-gallery .gallery-item {
  border: 1px solid #ddd;
  margin-right: 4%;
  margin-bottom: 4%;
  border-radius: 3px;
  width: 29%;
  float: left;
}

footer.site-footer .pgs-gallery-widget .pgs-gallery .gallery-item img {
  margin-bottom: 0;
  border-radius: 3px;
}

footer.site-footer .pgs-recent-entries .recent-post {
  border-bottom: none;
  margin-bottom: 15px;
  padding-bottom: 0;
  display: table;
  width: 100%;
}

footer.site-footer .pgs-recent-entries .recent-post .recent-post-image {
  width: 65px;
  display: table-cell;
  vertical-align: middle;
  padding-right: 12px;
}

footer.site-footer .pgs-recent-entries .recent-post .recent-post-info {
  display: table-cell;
  vertical-align: middle;
}

footer.site-footer .pgs-recent-entries .recent-post .recent-post-info a {
  font-size: 14px;
  font-weight: 500;
  color: #323232;
  line-height: 20px;
  margin-bottom: 3px;
  display: inline-block;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

footer.site-footer .pgs-recent-entries .recent-post .recent-post-info .post-date {
  display: block;
  font-size: 12px;
}

footer.site-footer .pgs-recent-entries .recent-post .recent-post-info .post-date i {
  margin-right: 7px;
  color: #04d39f;
}

footer.site-footer .pgs-apps-store .apps-store-img .apps-store-item {
  margin-bottom: 3px;
  margin-right: 3px;
  display: inline-block;
}

footer.site-footer .pgs-apps-store .apps-store-img .apps-store-item img {
  width: 140px;
}

footer.site-footer .pgs-products .product-list-widget li {
  padding: 10px 0;
}

footer.site-footer .pgs-products .product-list-widget li a {
  font-weight: 500;
  color: #323232;
  font-size: 13px;
}

footer.site-footer .pgs-products .product-list-widget li a .media img {
  margin-right: 15px;
  margin-left: 0;
  width: 60px;
}

footer.site-footer .pgs-products .product-list-widget li a .media .amount {
  color: #04d39f;
  font-weight: 600;
  font-size: 14px;
  margin-right: 5px;
}

footer.site-footer .footer-bottom-wrapper .footer-bottom {
  padding-bottom: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(142, 142, 142, 0.2);
}

footer.site-footer .footer-bottom-wrapper .footer-bottom .pgs-social-profiles {
  margin-bottom: 20px;
}

footer.site-footer .footer-bottom-wrapper .footer-bottom .pgs-social-profiles .social-profiles ul li a i {
  background-color: transparent;
  border: none;
  width: auto;
  height: auto;
}

footer.site-footer .footer-bottom-wrapper .footer-bottom .pgs-social-profiles .social-profiles ul li a:hover i {
  background-color: none;
  border: none;
  color: #04d39f;
}

footer.site-footer .footer-bottom-wrapper .footer-bottom h5 {
  display: inline-block;
  margin-bottom: 0;
}

footer.site-footer .footer-bottom-wrapper .footer-bottom .apps-store-img {
  margin-left: 3px;
  display: inline-block;
}

footer.site-footer .footer-bottom-wrapper .footer-bottom .pgs-newsletter-widget .newsletter_form {
  position: relative;
}

footer.site-footer .footer-bottom-wrapper .footer-bottom .pgs-newsletter-widget .newsletter_form .button-area .input-group-btn > .btn.submit {
  width: auto;
  background: none;
  padding: 0 15px;
  padding-left: 25px;
  font-size: 13px;
  font-weight: 600;
  line-height: 46px;
  color: #323232;
  text-transform: uppercase;
  -webkit-border-radius: 0 50px 50px 0;
  -moz-border-radius: 0 50px 50px 0;
  border-radius: 0 50px 50px 0;
}

footer.site-footer .footer-bottom-wrapper .footer-bottom .pgs-newsletter-widget .newsletter_form .button-area .input-group-btn > .btn:before {
  margin-right: 14px;
}

footer.site-footer .site-info {
  background: whitesmoke;
  padding: 25px 0;
}

footer.site-footer .site-info .footer-widget p {
  margin-bottom: 0;
  color: #969696;
}

footer.site-footer .site-info .footer-widget p a {
  color: #969696;
}

footer.site-footer .site-info .footer-widget p a:hover {
  color: #04d39f;
}

footer.site-footer .product-tag-cloud .tagcloud a {
  background: 0 0;
  color: #969696;
  margin-bottom: 8px;
  margin-right: 4px;
  display: inline-block;
  border: 1px solid #f2f2f2;
  line-height: 28px;
  padding: 0 12px;
  text-transform: uppercase;
  border-radius: 2px;
}

footer.site-footer .product-tag-cloud .tagcloud a:hover,
footer.site-footer .product-tag-cloud .tagcloud a:focus {
  background: #04d39f;
  color: #fff;
  border-color: #04d39f;
}

footer.site-footer .product-tag-cloud .tagcloud a.tag-cloud-link {
  border: 1px solid rgba(150, 150, 150, 0.25);
  padding: 0 17px;
  font-size: 13px !important;
}

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

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

footer.site-footer .footer-align-center .footer-nav-menu ul li a {
  padding-left: 0;
}

footer.site-footer .footer-align-center .footer-nav-menu ul li a:before,
footer.site-footer .footer-align-center .footer-nav-menu ul li a:after {
  content: "";
}

footer.site-footer .footer-align-center .pgs-contact-widget ul li i {
  display: inline-block;
}

footer.site-footer .footer-align-center .pgs-contact-widget ul li span {
  display: inline-block;
}

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

/********************************
    footer-style-2
********************************/
footer.site-footer.footer-style-2 .footer-widgets {
  text-align: center;
}

footer.site-footer.footer-style-2 .footer-nav-menu ul li {
  padding: 0 10px;
  display: inline-block;
}

footer.site-footer.footer-style-2 .footer-widgets-wrapper {
  padding: 30px 0 50px;
}

/********************************
    footer-style-4
********************************/
@media (min-width:1200px) {
  .container {
    max-width: 1300px;
  }

}

#preloader {
  background-color: #fff;
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden !important;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 99999999;
}

#preloader > div {
  height: 100%;
  position: relative;
  width: 100%;
}

#preloader > div svg {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

#back-to-top .top {
  z-index: 999;
  margin: 0;
  color: #fff;
  position: fixed;
  bottom: 50px;
  right: 40px;
  font-size: 24px;
  background: #04d39f;
  width: 40px;
  height: 40px;
  line-height: 37px;
  text-align: center;
  display: inline-block;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.header_intro_bg-image {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  background-position: center center !important;
  background-image: url(/static/media/img-01.09bfaaa6.jpeg) !important;
}

.header_intro_opacity::before {
  background-color: rgba(30, 30, 30, 0.8);
}

.inner-intro {
  height: auto !important;
  background: #fbfbfb;
  padding: 10px 0;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
}

.inner-intro.header_intro {
  height: 200px !important;
  position: relative;
  z-index: 0;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
  -ms-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
}

.inner-intro.header_intro.header_intro_opacity-custom:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.inner-intro.header_intro h1 {
  color: #fff;
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  text-transform: capitalize;
}

.inner-intro.header_intro .page-breadcrumb {
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0;
  width: 100%;
  margin-bottom: 0;
  margin-top: 6px;
}

.inner-intro.header_intro .page-breadcrumb li {
  line-height: 22px;
  color: #fff;
  display: inline;
  list-style: none;
  position: relative;
  margin-right: 5px;
  padding-left: 8px;
}

.inner-intro.header_intro .page-breadcrumb li:before {
  content: "/";
  font-family: FontAwesome;
  position: relative;
  left: -8px;
  height: 20px;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.inner-intro.header_intro .page-breadcrumb li.home:before {
  content: "\f015";
  line-height: 19px;
}

.inner-intro.header_intro .page-breadcrumb li span {
  position: relative;
  padding-left: 0;
}

.inner-intro.header_intro .page-breadcrumb li span a {
  color: inherit;
}

.inner-intro.header_intro .page-breadcrumb li:last-child {
  margin-right: 0;
}

.inner-intro.header_intro .page-breadcrumb li:hover a,
.inner-intro.header_intro .page-breadcrumb li:focus a {
  color: #04d39f;
}

.inner-intro.header_intro .page-breadcrumb li:hover.home:before,
.inner-intro.header_intro .page-breadcrumb li:focus.home:before {
  color: #04d39f;
}

.inner-intro h1 {
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 0;
  word-wrap: break-word;
  text-transform: capitalize;
  font-weight: 600;
}

.inner-intro .page-breadcrumb {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  width: 100%;
  margin-bottom: 0;
}

.inner-intro .page-breadcrumb li {
  line-height: 22px;
  color: #323232;
  display: inline;
  list-style: none;
  position: relative;
  margin-right: 5px;
  padding-left: 8px;
}

.inner-intro .page-breadcrumb li:before {
  content: "/";
  font-family: FontAwesome;
  position: relative;
  left: -8px;
  height: 20px;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.inner-intro .page-breadcrumb li.home:before {
  content: "\f015";
  line-height: 19px;
}

.inner-intro .page-breadcrumb li span {
  position: relative;
  padding-left: 0;
}

.inner-intro .page-breadcrumb li span a {
  color: inherit;
}

.inner-intro .page-breadcrumb li:last-child {
  margin-right: 0;
}

.inner-intro .page-breadcrumb li:hover a,
.inner-intro .page-breadcrumb li:focus a {
  color: #04d39f;
}

.inner-intro .page-breadcrumb li:hover.home:before,
.inner-intro .page-breadcrumb li:focus.home:before {
  color: #04d39f;
}

.inner-intro .container {
  height: 100%;
}

.inner-intro .intro-title {
  height: 100%;
  position: relative;
  z-index: 9;
}

.inner-intro .intro-title-inner {
  margin-bottom: 0;
  width: 100%;
}

.inner-intro .intro-section-center .intro-title-inner,
.inner-intro .intro-section-center .page-breadcrumb {
  text-align: center;
  padding-bottom: 0;
}

.inner-intro .intro-section-right .intro-title-inner,
.inner-intro .intro-section-right .page-breadcrumb {
  text-align: right;
}

.inner-intro .intro-section-left .intro-title-inner,
.inner-intro .intro-section-left .page-breadcrumb {
  text-align: left;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  font-weight: 700;
}

.bg-dark-gray .section-title h1,
.bg-dark-gray .section-title h2,
.bg-dark-gray .section-title h3,
.bg-dark-gray .section-title h4,
.bg-dark-gray .section-title h5,
.bg-dark-gray .section-title h6 {
  color: #fff;
}

.bg-dark-gray p {
  color: #fff;
}

.table {
  border: 1px solid #e8e8e8;
  border-radius: 0;
}

.table th {
  line-height: 1.5em;
  font-weight: 700;
}

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

.ciyashop_info_box-content_alignment-center .ciyashop_info_box-icon-inner {
  margin: 0 auto;
}

.ciyashop_info_box-layout-style_1.ciyashop_info_box-content_alignment-center .ciyashop_info_box-icon,
.ciyashop_info_box-layout-style_1.ciyashop_info_box-content_alignment-right .ciyashop_info_box-icon {
  display: inline-block;
}

.ciyashop_info_box-layout-style_1 .ciyashop_info_box-icon {
  margin-bottom: 15px;
}

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

.ciyashop_info_box-layout-style_2 .ciyashop_info_box-inner {
  clear: both;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon {
  font-size: 22px;
  line-height: 22px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon {
  width: 65px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon {
  font-size: 33px;
  line-height: 33px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon {
  width: 77px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon {
  font-size: 44px;
  line-height: 44px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon {
  width: 87px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon {
  font-size: 55px;
  line-height: 55px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon {
  width: 75px;
  padding-left: 0;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon i:before {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 15px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon i:before {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 15px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon i:before {
  font-size: 38px;
  line-height: 48px;
  margin-bottom: 15px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon i:before {
  font-size: 48px;
  line-height: 88px;
  margin-bottom: 15px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon_position-left .ciyashop_info_box-inner {
  display: table;
  width: 100%;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon_position-left .ciyashop_info_box-icon {
  width: 6%;
  padding-right: 20px;
  display: table-cell;
  vertical-align: top;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon_position-left .left-info-icon-bottom .ciyashop_info_box-icon {
  width: 87px;
  float: left;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon_position-left .ciyashop-info-left-icon .ciyashop_info_box-icon {
  display: table-cell;
  float: none;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon_position-right .ciyashop_info_box-icon {
  float: right;
  padding-left: 15px;
}

.col-sm-3 .ciyashop_info_box-with-icon.ciyashop_info_box-icon_position-right .ciyashop_info_box-content {
  width: 78%;
}

.col-sm-4 .ciyashop_info_box-with-icon.ciyashop_info_box-icon_position-right .ciyashop_info_box-content {
  width: 83%;
}

.col-sm-5 .ciyashop_info_box-with-icon.ciyashop_info_box-icon_position-right .ciyashop_info_box-content {
  width: 87%;
}

.col-sm-6 .ciyashop_info_box-with-icon.ciyashop_info_box-icon_position-right .ciyashop_info_box-content {
  width: 90%;
}

.col-sm-3 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-lg .ciyashop_info_box-content {
  width: 70%;
}

.col-sm-4 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-lg .ciyashop_info_box-content {
  width: 75%;
}

.col-sm-5 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-lg .ciyashop_info_box-content {
  width: 72%;
}

.col-sm-6 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-lg .ciyashop_info_box-content {
  width: 77%;
}

.col-sm-3 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-md .ciyashop_info_box-content {
  width: 75%;
}

.col-sm-4 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-md .ciyashop_info_box-content {
  width: 67%;
}

.col-sm-5 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-md .ciyashop_info_box-content {
  width: 74%;
}

.col-sm-6 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-md .ciyashop_info_box-content {
  width: 79%;
}

.col-sm-3 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-sm .ciyashop_info_box-content {
  width: 78%;
}

.col-sm-4 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-sm .ciyashop_info_box-content {
  width: 70%;
}

.col-sm-5 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-sm .ciyashop_info_box-content {
  width: 76%;
}

.col-sm-6 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-sm .ciyashop_info_box-content {
  width: 81%;
}

.col-sm-3 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-xs .ciyashop_info_box-content {
  width: 80%;
}

.col-sm-4 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-xs .ciyashop_info_box-content {
  width: 73%;
}

.col-sm-5 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-xs .ciyashop_info_box-content {
  width: 78%;
}

.col-sm-6 .ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-xs .ciyashop_info_box-content {
  width: 82%;
}

.col-sm-3 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-lg .ciyashop_info_box-content {
  width: 72%;
}

.col-sm-4 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-lg .ciyashop_info_box-content {
  width: 66%;
}

.col-sm-5 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-lg .ciyashop_info_box-content {
  width: 72%;
}

.col-sm-6 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-lg .ciyashop_info_box-content {
  width: 77%;
}

.col-sm-3 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-md .ciyashop_info_box-content {
  width: 73%;
}

.col-sm-4 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-md .ciyashop_info_box-content {
  width: 77%;
}

.col-sm-5 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-md .ciyashop_info_box-content {
  width: 74%;
}

.col-sm-6 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-md .ciyashop_info_box-content {
  width: 76%;
}

.col-sm-3 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-sm .ciyashop_info_box-content {
  width: 75%;
}

.col-sm-4 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-sm .ciyashop_info_box-content {
  width: 72%;
}

.col-sm-5 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-sm .ciyashop_info_box-content {
  width: 76%;
}

.col-sm-6 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-sm .ciyashop_info_box-content {
  width: 81%;
}

.col-sm-3 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-xs .ciyashop_info_box-content {
  width: 78%;
}

.col-sm-4 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-xs .ciyashop_info_box-content {
  width: 75%;
}

.col-sm-5 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-xs .ciyashop_info_box-content {
  width: 78%;
}

.col-sm-6 .ciyashop_info_box-icon-style-border.ciyashop_info_box-icon_position-right.ciyashop_info_box-icon-size-xs .ciyashop_info_box-content {
  width: 82%;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-style-border .ciyashop_info_box-icon-inner,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-style-border .ciyashop_info_box-icon-outer {
  display: inline-block;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-style-flat .ciyashop_info_box-icon-inner,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-style-flat .ciyashop_info_box-icon-outer {
  display: inline-block;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-style-flat .ciyashop_info_box-icon-inner {
  background-color: #878787;
  color: #fff;
}

.ciyashop_info_box-icon-shape-rounded .ciyashop_info_box-icon-inner,
.ciyashop_info_box-icon-shape-rounded .ciyashop_info_box-icon-outer {
  border-radius: 5px;
}

.ciyashop_info_box-icon-shape-round .ciyashop_info_box-icon-inner,
.ciyashop_info_box-icon-shape-round .ciyashop_info_box-icon-outer {
  border-radius: 50%;
}

.ciyashop_info_box-icon-style-border .ciyashop_info_box-icon-inner {
  border: 1px solid #878787;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-border.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon-inner,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon-inner {
  height: 50px;
  line-height: 50px;
  width: 50px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-border.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon-inner,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon-inner {
  height: 60px;
  line-height: 60px;
  width: 60px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-border.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon-inner,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon-inner {
  height: 70px;
  line-height: 70px;
  width: 70px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-border.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon-inner,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon-inner {
  height: 80px;
  line-height: 80px;
  width: 80px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-border.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon-inner .vc-mono,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon-inner .vc-mono {
  line-height: 11px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-border.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon-inner .vc-mono,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon-inner .vc-mono {
  line-height: 14px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-border.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon-inner .vc-mono,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon-inner .vc-mono,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-border.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon-inner .vc-mono,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon-inner .vc-mono {
  line-height: 26px;
}

.ciyashop_info_box.ciyashop_info_box-icon-style-border .ciyashop_info_box-icon-inner,
.ciyashop_info_box.ciyashop_info_box-icon-style-flat .ciyashop_info_box-icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ciyashop_info_box.ciyashop_info_box-icon-style-border.ciyashop_info_box-icon-source-image .ciyashop_info_box-icon-inner,
.ciyashop_info_box.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-source-image .ciyashop_info_box-icon-inner {
  display: inline-block;
}

.ciyashop_info_box-icon-shape-square .ciyashop_info_box-icon {
  font-size: 30px;
}

.ciyashop_info_box-outer-border .ciyashop_info_box-icon-outer {
  border: 1px solid #323232;
  padding: 5px;
}

.ciyashop_info_box-description p {
  margin-bottom: 0;
  line-height: 22px;
}

.ciyashop_info_box-title {
  margin-bottom: 10px;
  font-weight: 600;
}

.ciyashop_info_box-icon-source-image .ciyashop_info_box-icon {
  display: inline-block;
}

.ciyashop_info_box-icon-source-image .ciyashop_info_box-icon img {
  width: 100%;
  padding: 10px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon img {
  padding: 20px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon img {
  padding: 16px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon img {
  padding: 14px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon img {
  padding: 12px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon {
  width: 42px;
  margin-bottom: 15px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon {
  width: 52px;
  margin-bottom: 15px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon {
  width: 62px;
  margin-bottom: 15px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon {
  width: 82px;
  margin-bottom: 15px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-xs.ciyashop_info_box-icon_position-left .ciyashop_info_box-icon,
.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-xs.ciyashop_info_box-icon_position-right .ciyashop_info_box-icon {
  width: 82px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-sm.ciyashop_info_box-icon_position-left .ciyashop_info_box-icon,
.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-sm.ciyashop_info_box-icon_position-right .ciyashop_info_box-icon {
  width: 94px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-md.ciyashop_info_box-icon_position-left .ciyashop_info_box-icon,
.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-md.ciyashop_info_box-icon_position-right .ciyashop_info_box-icon {
  width: 99px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-lg.ciyashop_info_box-icon_position-left .ciyashop_info_box-icon,
.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-lg.ciyashop_info_box-icon_position-right .ciyashop_info_box-icon {
  width: 110px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-style-default .ciyashop_info_box-icon img {
  padding: 0;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-style-default.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon {
  width: 42px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-style-default.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon {
  width: 52px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-style-default.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon {
  width: 62px;
}

.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-style-default.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon {
  width: 72px;
}

.ciyashop_info_box.ciyashop_info_box-icon-style-default.ciyashop_info_box-icon_position-left .ciyashop_info_box-icon {
  padding-right: 25px;
}

.ciyashop_info_box.ciyashop_info_box-icon-style-default.ciyashop_info_box-icon_position-left.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon {
  padding-right: 18px;
}

.info_box-step_position-above_title .ciyashop_info_box-inner {
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.info_box-step_position-above_title .ciyashop_info_box-step {
  font-size: 36px;
  font-weight: 700;
  color: #ddd;
}

.theme-dark .info_box-step_position-above_title .ciyashop_info_box-step {
  color: #fff;
}

.info_box-step_position-under_icon .ciyashop_info_box-step {
  font-weight: 700;
  color: #323232;
  opacity: .1;
  line-height: 95px;
}

.info_box-step_position-under_icon .ciyashop_info_box-icon-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.info_box-step_position-under_icon .ciyashop_info_box-step-wrapper {
  text-align: center;
}

.info_box-step_position-under_icon .ciyashop_info_box-icon-wrap {
  position: relative;
  min-width: 100px;
}

.info_box-step_position-under_icon .ciyashop_info_box-inner {
  padding: 15px;
  -webkit-box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.13);
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.13);
}

.info_box-step_position-under_icon.ciyashop_info_box-icon-size-lg .ciyashop_info_box-step {
  font-size: 60px;
}

.info_box-step_position-under_icon.ciyashop_info_box-icon-size-md .ciyashop_info_box-step {
  font-size: 50px;
}

.info_box-step_position-under_icon.ciyashop_info_box-icon-size-sm .ciyashop_info_box-step {
  font-size: 40px;
}

.info_box-step_position-under_icon.ciyashop_info_box-icon-size-xs .ciyashop_info_box-step {
  font-size: 30px;
}

.info_box-step_position-opposite_icon .ciyashop_info_box-content {
  position: relative;
}

.info_box-step_position-opposite_icon .ciyashop_info_box-step-wrapper {
  position: absolute;
  right: 0;
  top: 0;
}

.info_box-step_position-opposite_icon .ciyashop_info_box-step {
  font-size: 95px;
  font-weight: 700;
  color: #777;
  opacity: .1;
  line-height: 95px;
}

.info_box-step_position-under_icon.ciyashop_info_box-icon-source-image .ciyashop_info_box-icon-wrap,
.info_box-step_position-under_icon.ciyashop_info_box-with-icon .ciyashop_info_box-icon-wrap {
  min-width: inherit;
}

.info_box-step_position-under_icon.ciyashop_info_box-icon-source-image .ciyashop_info_box-icon img {
  padding: 4px;
}

.theme-dark .info_box-step_position-opposite_icon .ciyashop_info_box-step {
  color: #fff;
}

.ciyashop_info_box-layout-style_3 .ciyashop_info_box-content {
  margin-top: 15px;
}

.ciyashop_info_box-layout-style_3 .ciyashop_info_box-icon-wrap {
  position: relative;
  padding: 15px 0;
}

.ciyashop_info_box.ciyashop_info_box-layout-style_3 .ciyashop_info_box-icon-outer {
  display: table-cell;
  min-width: 70px;
  text-align: center;
}

.ciyashop_info_box.ciyashop_info_box-layout-style_3 .ciyashop_info_box-title {
  display: table-cell;
  padding: 0 0 0 15px;
  margin: 0;
  vertical-align: middle;
}

.ciyashop_info_box-layout-style_3 .ciyashop_info_box-step-wrapper {
  position: absolute;
  left: 0;
  top: 0;
}

.ciyashop_info_box-layout-style_3 .ciyashop_info_box-step {
  font-size: 85px;
  font-weight: 700;
  color: #000;
  opacity: .03;
  line-height: 85px;
}

.ciyashop_info_box-layout-style_3.ciyashop_info_box-icon-style-border .ciyashop_info_box-icon-outer,
.ciyashop_info_box-layout-style_3.ciyashop_info_box-icon-style-flat .ciyashop_info_box-icon-outer {
  margin-bottom: 15px;
}

.ciyashop_info_box-layout-style_3.ciyashop_info_box-content_alignment-center .ciyashop_info_box-title,
.ciyashop_info_box-layout-style_3.ciyashop_info_box-content_alignment-right .ciyashop_info_box-title {
  display: inherit;
}

.ciyashop_info_box-layout-style_3.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon,
.ciyashop_info_box-layout-style_3.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon,
.ciyashop_info_box-layout-style_3.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon,
.ciyashop_info_box-layout-style_3.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon {
  width: inherit;
  margin-bottom: inherit;
}

.ciyashop_info_box-layout-style_3.ciyashop_info_box-content_alignment-right .ciyashop_info_box-step-wrapper {
  left: auto;
  right: 0;
}

.ciyashop_info_box.ciyashop_info_box-layout-style_3.ciyashop_info_box-content_alignment-right .ciyashop_info_box-icon-outer {
  display: inline-block;
  float: right;
}

.ciyashop_info_box-layout-style_3.ciyashop_info_box-content_alignment-right .ciyashop_info_box-title {
  display: inline-block;
  padding: 0 15px 0 0;
}

.ciyashop_info_box-layout-style_3.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon-outer {
  min-width: 70px;
}

.ciyashop_info_box-layout-style_3.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon-outer {
  min-width: 65px;
}

.ciyashop_info_box-layout-style_3.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-sm .ciyashop_info_box-icon-outer {
  min-width: 60px;
}

.ciyashop_info_box-layout-style_3.ciyashop_info_box-icon-source-image.ciyashop_info_box-icon-size-xs .ciyashop_info_box-icon-outer {
  min-width: 55px;
}

.ciyashop_info_box-layout-style_4 .ciyashop_info_box-step-wrapper {
  display: table-cell;
  padding-right: 15px;
  vertical-align: middle;
}

.ciyashop_info_box-layout-style_4 .ciyashop_info_box-step {
  color: #04d39f;
  margin-bottom: 0;
}

.ciyashop_info_box-layout-style_4 h2.ciyashop_info_box-step {
  font-size: 50px;
  line-height: 50px;
}

.ciyashop_info_box-layout-style_4 h3.ciyashop_info_box-step {
  font-size: 40px;
  line-height: 40px;
}

.ciyashop_info_box-layout-style_4 h4.ciyashop_info_box-step {
  font-size: 34px;
  line-height: 34px;
}

.ciyashop_info_box-layout-style_4 h5.ciyashop_info_box-step {
  font-size: 28px;
  line-height: 28px;
}

.ciyashop_info_box-layout-style_4 h6.ciyashop_info_box-step {
  font-size: 22px;
  line-height: 22px;
}

.ciyashop_info_box-layout-style_4 .ciyashop_info_box-title {
  display: table-cell;
  padding: 0;
  margin: 0;
  vertical-align: middle;
  font-weight: 700;
}

.ciyashop_info_box-layout-style_4 .ciyashop_info_box-content {
  margin-top: 5px;
}

.ciyashop_info_box-layout-style_5 .ciyashop_info_box-icon {
  display: table-cell;
  padding-right: 65px;
  text-align: center;
  position: relative;
  vertical-align: top;
  padding-top: 2px;
}

.ciyashop_info_box-layout-style_5 .ciyashop_info_box-icon:before {
  content: "";
  position: absolute;
  top: 14px;
  left: 40px;
  width: 30px;
  height: 1px;
  background: #ccc;
}

.ciyashop_info_box-layout-style_5 .ciyashop_info_box-content {
  display: table-cell;
}

.ciyashop_info_box-layout-style_5 .ciyashop_info_box-icon-outer {
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}

.ciyashop_info_box-layout-style_5 .ciyashop_info_box-icon-outer:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #969696;
}

.ciyashop_info_box-layout-style_5 .ciyashop_info_box-icon-outer .ciyashop_info_box-icon-inner {
  font-size: 24px;
}

.ciyashop_info_box-layout-style_5 .ciyashop_info_box-step {
  font-size: 16px;
  color: #04d39f;
  font-weight: 700;
  line-height: 22px;
  vertical-align: top;
}

.ciyashop_info_box-layout-style_5 .ciyashop_info_box-title {
  font-weight: 600;
}

.ciyashop_info_box-layout-style_5 h2.ciyashop_info_box-title {
  font-size: 26px;
  line-height: 32px;
}

.ciyashop_info_box-layout-style_5 h3.ciyashop_info_box-title {
  font-size: 24px;
  line-height: 30px;
}

.ciyashop_info_box-layout-style_5 h4.ciyashop_info_box-title {
  font-size: 22px;
  line-height: 28px;
}

.ciyashop_info_box-layout-style_5 h5.ciyashop_info_box-title {
  font-size: 20px;
  line-height: 26px;
}

.ciyashop_info_box-layout-style_5 h6.ciyashop_info_box-title {
  font-size: 18px;
  line-height: 22px;
}

.theme-dark .ciyashop_info_box-layout-style_5 .ciyashop_info_box-icon:before {
  background: rgba(255, 255, 255, 0.2);
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-style-border.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon i:before,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-md .ciyashop_info_box-icon i:before {
  font-size: 32px;
}

.ciyashop_info_box-with-icon.ciyashop_info_box-icon-style-border.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon i:before,
.ciyashop_info_box-with-icon.ciyashop_info_box-icon-style-flat.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon i:before {
  font-size: 36px;
}

.ciyashop_info_box.ciyashop_info_box-layout-style_1.ciyashop_info_box-icon-style-default.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon i:before {
  line-height: 55px;
}

.ciyashop_info_box.ciyashop_info_box-layout-style_2.ciyashop_info_box-icon-style-default.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon i:before {
  line-height: 60px;
}

.info_box-step_position-above_title .ciyashop_info_box-step {
  line-height: 34px;
}

.info_box-step_position-under_icon .ciyashop_info_box-inner {
  -webkit-box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.13);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 10px 0;
}

.info_box-step_position-opposite_icon .ciyashop_info_box-step {
  font-size: 80px;
  line-height: 60px;
}

.ciyashop_info_box-layout-style_3 .ciyashop_info_box-icon-wrap {
  padding: 0;
}

.ciyashop_info_box.ciyashop_info_box-layout-style_3 .ciyashop_info_box-icon-outer {
  min-width: 20px;
}

.ciyashop_info_box-layout-style_3.ciyashop_info_box-with-icon.ciyashop_info_box-icon-source-font.ciyashop_info_box-icon-size-lg .ciyashop_info_box-icon i:before {
  line-height: 66px;
}

.ciyashop_info_box_2 .ciyashop_info_box_2-title {
  margin-bottom: 10px;
}

.ciyashop_info_box_2 .ciyashop_info_box_2-content p {
  margin-bottom: 0;
}

.ciyashop_info_box_2.ciyashop_info_box_2-icon-shape-rounded .ciyashop_info_box_2-icon-inner {
  border-radius: 3px;
}

.ciyashop_info_box_2.ciyashop_info_box_2-icon-shape-round .ciyashop_info_box_2-icon-inner {
  border-radius: 75px;
  overflow: hidden;
}

.ciyashop_info_box_2.ciyashop_info_box_2-icon-size-lg.ciyashop_info_box_2-icon-shape-round .ciyashop_info_box_2-icon-inner img {
  padding: 10px !important;
}

.ciyashop_info_box_2.ciyashop_info_box_2-icon-size-xlg.ciyashop_info_box_2-icon-shape-round .ciyashop_info_box_2-icon-inner img {
  padding: 15px !important;
}

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

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

.ciyashop_info_box_2-icon-style-default .ciyashop_info_box_2-icon {
  margin-bottom: 15px;
  display: inline-block;
}

.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-source-image .ciyashop_info_box_2-icon {
  margin-bottom: 20px;
}

.ciyashop_info_box_2-icon-style-default .ciyashop_info_box_2-icon-inner i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-xs .ciyashop_info_box_2-icon-inner {
  font-size: 28px;
  line-height: 28px;
}

.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-sm .ciyashop_info_box_2-icon-inner {
  font-size: 35px;
  line-height: 35px;
}

.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-md .ciyashop_info_box_2-icon-inner {
  font-size: 45px;
  line-height: 45px;
}

.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-lg .ciyashop_info_box_2-icon-inner {
  font-size: 55px;
  line-height: 55px;
}

.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-xlg .ciyashop_info_box_2-icon-inner {
  font-size: 70px;
  line-height: 70px;
}

.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-xs.ciyashop_info_box_2-icon_position-left .ciyashop_info_box_2-icon,
.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-xs.ciyashop_info_box_2-icon_position-right .ciyashop_info_box_2-icon {
  width: 35px;
}

.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-sm.ciyashop_info_box_2-icon_position-left .ciyashop_info_box_2-icon,
.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-sm.ciyashop_info_box_2-icon_position-right .ciyashop_info_box_2-icon {
  width: 45px;
}

.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-md.ciyashop_info_box_2-icon_position-left .ciyashop_info_box_2-icon,
.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-md.ciyashop_info_box_2-icon_position-right .ciyashop_info_box_2-icon {
  width: 55px;
}

.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-lg.ciyashop_info_box_2-icon_position-left .ciyashop_info_box_2-icon,
.ciyashop_info_box_2-icon-style-default.ciyashop_info_box_2-icon-size-lg.ciyashop_info_box_2-icon_position-right .ciyashop_info_box_2-icon {
  width: 65px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-xs .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-xs .ciyashop_info_box_2-icon-inner {
  font-size: 20px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-sm .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-sm .ciyashop_info_box_2-icon-inner {
  font-size: 25px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-md .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-md .ciyashop_info_box_2-icon-inner {
  font-size: 30px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-lg .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-lg .ciyashop_info_box_2-icon-inner {
  font-size: 38px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-xlg .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-xlg .ciyashop_info_box_2-icon-inner {
  font-size: 44px;
}

.ciyashop_info_box_2-icon-style-border .ciyashop_info_box_2-icon-inner {
  border-width: 2px;
  border-style: solid;
  border-color: #04d39f;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.ciyashop_info_box_2-icon-style-flat .ciyashop_info_box_2-icon-inner {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.ciyashop_info_box_2-icon-style-border .ciyashop_info_box_2-icon-inner img,
.ciyashop_info_box_2-icon-style-flat .ciyashop_info_box_2-icon-inner img {
  padding: 12px;
  width: 100%;
  height: 100%;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-xs .ciyashop_info_box_2-icon-inner img,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-xs .ciyashop_info_box_2-icon-inner img {
  padding: 4px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-sm .ciyashop_info_box_2-icon-inner img,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-sm .ciyashop_info_box_2-icon-inner img {
  padding: 5px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-md .ciyashop_info_box_2-icon-inner img,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-md .ciyashop_info_box_2-icon-inner img {
  padding: 6px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-lg .ciyashop_info_box_2-icon-inner img,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-lg .ciyashop_info_box_2-icon-inner img {
  padding: 8px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-xlg .ciyashop_info_box_2-icon-inner img,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-xlg .ciyashop_info_box_2-icon-inner img {
  padding: 10px;
}

.ciyashop_info_box_2.ciyashop_info_box_2-icon-style-border .ciyashop_info_box_2-icon,
.ciyashop_info_box_2.ciyashop_info_box_2-icon-style-flat .ciyashop_info_box_2-icon {
  display: inline-block;
  margin-bottom: 20px;
  color: #04d39f;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-xs .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-xs .ciyashop_info_box_2-icon-inner {
  width: 45px;
  height: 45px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-sm .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-sm .ciyashop_info_box_2-icon-inner {
  width: 55px;
  height: 55px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-md .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-md .ciyashop_info_box_2-icon-inner {
  width: 75px;
  height: 75px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-lg .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-lg .ciyashop_info_box_2-icon-inner {
  width: 85px;
  height: 85px;
}

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-xlg .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-xlg .ciyashop_info_box_2-icon-inner {
  width: 100px;
  height: 100px;
}

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

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

.ciyashop_info_box_2-icon_position-left .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2-icon_position-right .ciyashop_info_box_2-icon-inner {
  margin-bottom: 0;
}

.ciyashop_info_box_2-icon_position-left .ciyashop_info_box_2-inner,
.ciyashop_info_box_2-icon_position-right .ciyashop_info_box_2-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.ciyashop_info_box_2-icon_position-left .ciyashop_info_box_2-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.ciyashop_info_box_2-icon_position-right .ciyashop_info_box_2-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.ciyashop_info_box_2-icon_position-left .ciyashop_info_box_2-inner .ciyashop_info_box_2-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 0;
  margin-right: 0;
  text-align: center;
}

.ciyashop_info_box_2-icon-source-image .ciyashop_info_box_2-icon-inner {
  display: inline-block;
}

.ciyashop_info_box_2-icon-source-image.ciyashop_info_box_2-icon-size-xs .ciyashop_info_box_2-icon {
  width: 50px;
}

.ciyashop_info_box_2-icon-source-image.ciyashop_info_box_2-icon-size-sm .ciyashop_info_box_2-icon {
  width: 60px;
}

.ciyashop_info_box_2-icon-source-image.ciyashop_info_box_2-icon-size-md .ciyashop_info_box_2-icon {
  width: 70px;
}

.ciyashop_info_box_2-icon-source-image.ciyashop_info_box_2-icon-size-lg .ciyashop_info_box_2-icon {
  width: 85px;
}

.ciyashop_info_box_2-icon-source-image.ciyashop_info_box_2-icon-size-xlg .ciyashop_info_box_2-icon {
  width: 100px;
}

.ciyashop_info_box_2-icon_position-left .ciyashop_info_box_2-inner .ciyashop_info_box_2-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.ciyashop_info_box_2-icon_position-right .ciyashop_info_box_2-inner .ciyashop_info_box_2-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.ciyashop_info_box_2-icon_position-right .ciyashop_info_box_2-inner .ciyashop_info_box_2-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 0;
  margin-left: 15px;
  text-align: center;
}

.ciyashop_info_box_2-layout-style_3 .ciyashop_info_box_2-title {
  margin: 10px 0;
}

.ciyashop_info_box_2-layout-style_3 .ciyashop_info_box_2-inner {
  padding: 25px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  min-height: 225px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.ciyashop_info_box_2.ciyashop_info_box_2-layout-style_1.animated .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2.ciyashop_info_box_2-layout-style_2.animated .ciyashop_info_box_2-icon-inner {
  transition: all 0.3s ease-in-out;
}

.ciyashop_info_box_2.ciyashop_info_box_2-layout-style_1.animated:hover .ciyashop_info_box_2-icon-inner,
.ciyashop_info_box_2.ciyashop_info_box_2-layout-style_2.animated:hover .ciyashop_info_box_2-icon-inner {
  transform: scale(1.2);
}

.ciyashop_info_box_2.ciyashop_info_box_2-layout-style_2.ciyashop_info_box_2-content_alignment-left.ciyashop_info_box_2-with-icon.ciyashop_info_box_2-icon-source-font.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-lg.ciyashop_info_box_2-icon-shape-round.ciyashop_info_box_2-icon_position-left {
  padding-left: 0;
}

/* Address Block */
.address-block {
  position: relative;
  padding-left: 80px;
}

.address-block.default {
  padding-left: 70px;
}

.address-block.default i:before {
  font-size: 40px;
}

.address-block i {
  width: 60px;
  height: 60px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  line-height: 54px;
  color: #04d39f;
}

.address-block i:before {
  font-size: 26px;
}

.address-block .title {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
}

.address-block span {
  display: block;
  line-height: 20px;
}

.address-block.border {
  border: none !important;
}

.address-block.border i {
  border: 2px solid #04d39f;
}

.address-block.rounded i {
  border-radius: 10%;
}

.address-block.round i {
  border-radius: 100%;
}

.address-block.flat i {
  line-height: 60px;
  background: #04d39f;
  color: #fff;
}

/* Banners */
@-webkit-keyframes ciya-shine {
  100% {
    left: 125%;
  }

}

@keyframes ciya-shine {
  100% {
    left: 125%;
  }

}

.ciyashop_banner_wrapper {
  background-size: cover;
  background-position: center center;
}

.ciyashop_banner {
  position: relative;
  overflow: hidden;
  background: none;
  font-family: "Open Sans", sans-serif;
}

.ciyashop_banner .ciyashop_banner-image {
  -webkit-transition: .5s all ease-in-out;
  -moz-transition: .5s all ease-in-out;
  -ms-transition: .5s all ease-in-out;
  -o-transition: .5s all ease-in-out;
  transition: .5s all ease-in-out;
}

.ciyashop_banner .ciyashop_banner-content {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 10;
  padding: 25px;
  -webkit-transition: background .5s ease;
  -o-transition: background .5s ease;
  transition: background .5s ease;
}

.ciyashop_banner-style-style-1.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-vtop {
  bottom: inherit;
}

.ciyashop_banner-style-style-1.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-vbottom {
  top: inherit;
}

.ciyashop_banner-style-style-1.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-vbottom .ciyashop_banner-content-wrapper {
  justify-content: center;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper {
  vertical-align: top;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text {
  line-height: normal;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  font-size: 30px;
  font-weight: 700;
  color: #323232;
}

.ciyashop_banner-style-style-1.ciyashop_banner-effect-none.ciya-banner-3.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text {
  line-height: 40px;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap {
  position: relative;
  z-index: 9;
  margin-top: 15px;
  display: flex;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap .ciyashop_banner-btn {
  font-weight: 500;
  display: inline-block;
  font-size: 14px;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap.ciyashop_banner-btn-style-link .ciyashop_banner-btn {
  font-weight: 600;
  border-bottom: 0px solid;
  padding-left: 0;
  padding-right: 0;
  color: #04d39f;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap.ciyashop_banner-btn-size-md .ciyashop_banner-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 44px;
  padding: 0 25px;
  border: 2px solid #323232;
  color: #323232;
  background: none;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap.ciyashop_banner-btn-size-md .ciyashop_banner-btn:hover,
.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap.ciyashop_banner-btn-size-md .ciyashop_banner-btn:focus {
  border: 2px solid #04d39f;
  color: #04d39f;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap.ciyashop_banner-btn-style-flat .ciyashop_banner-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 44px;
  padding: 0 25px;
  background: #04d39f;
  color: #fff;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap.ciyashop_banner-btn-style-flat .ciyashop_banner-btn:hover,
.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap.ciyashop_banner-btn-style-flat .ciyashop_banner-btn:focus {
  background: #323232;
  color: #fff;
}

.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-hcenter .ciyashop_banner-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-hright .ciyashop_banner-btn-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.ciyashop_banner .ciyashop_banner-content-hleft {
  text-align: left;
}

.ciyashop_banner .ciyashop_banner-content-hcenter {
  text-align: center;
}

.ciyashop_banner .ciyashop_banner-content-hright {
  text-align: right;
}

.ciyashop_banner .ciyashop_banner-content-wrapper {
  display: table;
  height: 100%;
  width: 100%;
}

.ciyashop_banner .ciyashop_banner-content-inner-wrapper {
  display: table-cell;
}

.ciyashop_banner .ciyashop_banner-content-vtop .ciyashop_banner-content-inner-wrapper {
  vertical-align: top;
  font-size: 70px;
}

.ciyashop_banner .ciyashop_banner-content-vmiddle .ciyashop_banner-content-inner-wrapper {
  vertical-align: middle;
}

.ciyashop_banner .ciyashop_banner-content-vbottom .ciyashop_banner-content-inner-wrapper {
  vertical-align: bottom;
}

.ciyashop_banner.ciyashop_banner-effect-zoom:hover .ciyashop_banner-image {
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -o-transform: scale(1.08);
  transform: scale(1.08);
}

.ciyashop_banner.ciyashop_banner-effect-flash:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 150px;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.5) 100%);
  -webkit-transform: skewX(-25deg);
  -moz-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.ciyashop_banner.ciyashop_banner-effect-flash:hover:before {
  -webkit-animation: ciya-shine 1.5s;
  -moz-animation: ciya-shine 1.5s;
  animation: ciya-shine 1.5s;
  -webkit-transition: all .6s ease-in-out;
  -moz-transition: all .6s ease-in-out;
  -ms-transition: all .6s ease-in-out;
  -o-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  left: -100%;
}

.ciyashop_banner.ciyashop_banner-effect-border:after,
.ciyashop_banner.ciyashop_banner-effect-border:before {
  content: "";
  position: absolute;
  opacity: 0;
  -webkit-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  z-index: 2;
}

.ciyashop_banner.ciyashop_banner-effect-border:before {
  border-top: 1px dotted rgba(255, 255, 255, 0.7);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.7);
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  top: 30px;
  right: 15px;
  bottom: 30px;
  left: 15px;
}

.ciyashop_banner.ciyashop_banner-effect-border:after {
  border-left: 1px dotted rgba(255, 255, 255, 0.7);
  border-right: 1px dotted rgba(255, 255, 255, 0.7);
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  top: 15px;
  right: 30px;
  bottom: 15px;
  left: 30px;
}

.ciyashop_banner.ciyashop_banner-effect-border:hover:before {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.ciyashop_banner.ciyashop_banner-effect-border:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.ciyashop_banner .ciyashop_banner-badge {
  border-radius: 50%;
  color: #323232;
  display: inline-block;
  font-size: 15px;
  height: 70px;
  line-height: 15px;
  max-height: 100%;
  padding: 5px;
  position: absolute;
  width: 70px;
  margin: 30px;
}

.ciyashop_banner .ciyashop_banner-badge.ciyashop_banner-badge_type-flat {
  width: 50px;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  background-color: #ff0000;
  color: #fff;
}

.ciyashop_banner .ciyashop_banner-badge.ciyashop_banner-badge_style-style-1.ciyashop_banner-badge_type-flat.ciyashop_banner-badge_align-vtop.ciyashop_banner-badge_align-hleft {
  width: 80px;
  height: 80px;
  font-size: 18px;
  font-weight: 700;
  line-height: 14px;
  background-color: #ffffff;
  bottom: inherit;
  color: #04d39f;
}

.ciyashop_banner .ciyashop_banner-badge .ciyashop_banner-badge-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.ciyashop_banner .ciyashop_banner-badge .ciyashop_banner-badge-inner .ciyashop_banner-badge-text {
  overflow: hidden;
  padding: 3px;
}

.ciyashop_banner .ciyashop_banner-badge_align-vtop {
  top: 0;
}

.ciyashop_banner .ciyashop_banner-badge_align-vbottom {
  bottom: 0;
}

.ciyashop_banner .ciyashop_banner-badge_align-hleft {
  left: 0;
}

.ciyashop_banner .ciyashop_banner-badge_align-hright {
  right: 0;
}

.ciyashop_banner .ciyashop_banner-badge_align-hcenter {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
}

.ciyashop_banner .ciyashop_banner-badge_align-vbottom.ciyashop_banner-badge_align-hcenter,
.ciyashop_banner .ciyashop_banner-badge_align-vtop.ciyashop_banner-badge_align-hcenter {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.ciyashop_banner .ciyashop_banner-badge_type-border {
  color: #008000;
  width: 50px;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  border-color: #008000;
  border-width: 2px;
  border-style: solid;
}

.ciyashop_categorybox_wrapper {
  margin-bottom: 30px;
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.ciyashop_categorybox_wrapper:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 155px 160px 155px;
  border-color: transparent transparent rgba(0, 0, 0, 0.05) transparent;
  position: absolute;
  right: -20px;
  bottom: 0;
}

.ciyashop_categorybox_wrapper .category-box {
  padding: 20px 0 20px 20px;
  background-repeat: no-repeat;
  background-position: 120% 100%;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  position: relative;
  overflow: hidden;
}

.ciyashop_categorybox_wrapper .category-box h2 {
  color: #04d39f;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.ciyashop_categorybox_wrapper .category-box .subhead {
  display: block;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #323232;
}

.ciyashop_categorybox_wrapper .category-box .category-box-link ul {
  padding: 0;
  margin-bottom: 0;
}

.ciyashop_categorybox_wrapper .category-box .category-box-link ul li {
  margin-bottom: 0;
  text-transform: capitalize;
  list-style: none;
  line-height: 30px;
}

.ciyashop_categorybox_wrapper .category-box .category-box-link ul li a {
  color: #969696;
}

.ciyashop_categorybox_wrapper .category-box .category-box-link ul li a i {
  margin-right: 12px;
  font-size: 16px;
  color: #969696;
}

.ciyashop_categorybox_wrapper .category-box .category-box-link ul li a:hover,
.ciyashop_categorybox_wrapper .category-box .category-box-link ul li a:focus {
  padding-left: 4px;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  color: #04d39f;
}

.ciyashop_categorybox_wrapper .category-box .category-box-link ul li.view-all {
  margin-top: 5px;
  padding-bottom: 0;
}

.ciyashop_categorybox_wrapper .category-box .category-box-link ul li.view-all a {
  color: #04d39f;
  padding-left: 0;
  text-decoration: underline;
}

.ciyashop_categorybox_wrapper .category-box .category-box-link ul li.view-all a:hover,
.ciyashop_categorybox_wrapper .category-box .category-box-link ul li.view-all a:focus {
  text-decoration: none;
  color: #323232;
}

.ciyashop_categorybox_wrapper .category-box:hover {
  background-position: 110% 100%;
}

.ciyashop_clients .list-inline {
  margin: 0;
}

.ciyashop_clients.ciyashop_clients-list-type-grid.ciyashop_clients-grid-column-4 {
  padding: 0;
}

.ciyashop_clients .list-inline li {
  float: left;
  margin-bottom: 10px;
  margin-right: 2%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.ciyashop_clients.ciyashop_clients-grid-column-5 li {
  width: 18.4%;
}

.ciyashop_clients.ciyashop_clients-grid-column-5 li:nth-child(5n+5) {
  margin-right: 0;
}

.ciyashop_clients.ciyashop_clients-grid-column-4 li {
  width: 23.5%;
}

.ciyashop_clients.ciyashop_clients-grid-column-4 li:nth-child(4n+4) {
  margin-right: 0;
}

.ciyashop_clients.ciyashop_clients-grid-column-3 li {
  width: 32%;
}

.ciyashop_clients.ciyashop_clients-grid-column-3 li:nth-child(3n+3) {
  margin-right: 0;
}

.ciyashop_clients.ciyashop_clients-grid-column-2 li {
  width: 49%;
}

.ciyashop_clients.ciyashop_clients-grid-column-2 li:nth-child(2n+2) {
  margin-right: 0;
}

.ciyashop_banner.ciyashop_banner-3.ciyashop_banner-style-style-1.ciyashop_banner-effect-none .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
  line-height: 100px !important;
  margin-bottom: 30px;
}

.image-slider-items .pro-deta {
  text-align: center;
  position: relative;
}

.image-slider-items .pro-deta .about-image img {
  display: inline-block;
  transform-style: inherit;
  width: 100%;
}

.errorMessageRemove {
  display: none;
}

.fileUploader .errorMessage {
  word-break: break-all;
  padding: 5px;
  line-height: 20px;
  box-shadow: none;
  border: 1px solid #e2e2e2;
  display: none;
}

.image-slider-items.image-slider-style-1 .about-details {
  background: #fff;
  padding: 25px 30px;
  text-align: center;
  border: 1px solid #f1f1f1;
  border-top: none;
}

.image-slider-items.image-slider-style-1 .about-details .about-des {
  display: inline-block;
  margin-bottom: 5px;
  padding: 0 22px;
  line-height: 20px;
  position: relative;
}

.image-slider-items.image-slider-style-1 .about-details .about-des:before,
.image-slider-items.image-slider-style-1 .about-details .about-des:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 25px;
  height: 1px;
  background: #ddd;
}

.image-slider-items.image-slider-style-1 .about-details .about-des:before {
  left: -20px;
}

.image-slider-items.image-slider-style-1 .about-details .about-des:after {
  right: -20px;
}

.image-slider-items.image-slider-style-1 .about-details .title {
  font-size: 16px;
  margin-bottom: 0;
}

.image-slider-items.image-slider-style-2 .about-details {
  background: rgba(255, 255, 255, 0.92);
  padding: 15px 20px;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.image-slider-items.image-slider-style-2 .about-details .about-des {
  display: inline-block;
  margin-bottom: 5px;
  line-height: 20px;
  color: #04d39f;
}

.image-slider-items.image-slider-style-2 .about-details .title {
  font-size: 16px;
  margin-bottom: 0;
}

.kite-box {
  display: table;
  position: relative;
  overflow: hidden;
  font-family: "Open Sans", sans-serif;
}

.kite-box .kite-images-wrapper {
  position: relative;
  left: -15%;
  width: 55%;
  max-width: 55%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.kite-box .kite-images-wrapper .image-inner {
  margin: 7px;
  overflow: hidden;
  position: relative;
}

.kite-box .kite-images-wrapper .image-inner .kite-image {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.kite-box .kite-images-wrapper .image-inner .kite-image img {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  transform: scale(1.5);
}

.kite-box .kite-images-wrapper .image-inner .kite-images-actions {
  position: absolute;
  right: 20px;
  top: 50%;
  text-align: right;
  z-index: 9;
  transform: translateY(-50%);
}

.kite-box .kite-images-wrapper .image-inner .kite-images-actions .kite-actions-wrapper {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.kite-box .kite-images-wrapper .image-inner .kite-images-actions .title {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.kite-box .kite-images-wrapper .image-inner .kite-images-actions .kite-btn {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  padding: 8px 20px;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out 0s;
  -moz-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
  border-radius: 3px;
}

.kite-box .kite-steps-wrapper {
  display: table-cell;
  width: 45%;
  max-width: 45%;
}

.kite-box .kite-steps-wrapper .kite-step-inner {
  margin: 30px 0;
  display: inline-block;
  width: 100%;
  margin-left: 0;
}

.kite-box .kite-steps-wrapper .kite-step-inner.top-step {
  margin-left: -100px;
}

.kite-box .kite-steps-wrapper .kite-step-inner.middle-step {
  margin-left: 0px;
}

.kite-box .kite-steps-wrapper .kite-step-inner.bottom-step {
  margin-left: -100px;
}

.kite-box .kite-steps-wrapper .step-number {
  display: table-cell;
  font-size: 150px;
  color: #04d39f;
  font-weight: 900;
  line-height: 115px;
  vertical-align: top;
  padding-right: 20px;
}

.kite-box .kite-steps-wrapper .step-content {
  display: table-cell;
  vertical-align: top;
}

.kite-box .kite-steps-wrapper .step-content .step-title {
  font-size: 26px;
  color: #323232;
  font-weight: 600;
  margin-bottom: 10px;
}

.kite-box .kite-steps-wrapper .step-content .step-description {
  font-size: 16px;
  color: #969696;
  font-weight: 400;
  line-height: 30px;
}

.ciyashop_list {
  padding-left: 0;
}

.ciyashop_list.icon-list-type-none li {
  list-style-type: none;
}

.ciyashop_list.icon-list-type-none li p {
  margin-bottom: 0;
}

.ciyashop_list.list-unstyled li {
  list-style-type: none;
  line-height: 24px;
  display: table;
  margin: 0;
}

.ciyashop_list.list-unstyled li .ciyashop-list-info {
  display: table-cell;
  vertical-align: top;
  padding-left: 10px;
  padding-bottom: 0;
}

.ciyashop_list li {
  list-style-type: circle;
}

.ciyashop_list li a {
  color: #969696;
}

.ciyashop_list li a:hover,
.ciyashop_list li a:focus {
  color: #04d39f;
}

.ciyashop_list li .ciyashop-list-info {
  display: table-cell;
  vertical-align: top;
  padding-left: 10px;
  padding-bottom: 0;
}

.ciyashop_list i {
  color: #04d39f;
  display: table-cell;
  padding-top: 5px;
}

.ciyashop_button_wrapper.ciyashop_button_width_default .ciyashop_button_default .banner-link {
  color: #323232;
  font-weight: 600;
}

.ciyashop_button_wrapper.ciyashop_button_width_default .ciyashop_button_default .banner-link:hover {
  color: #04d39f;
}

.newsletter-wrapper.newsletter-style-1 {
  text-align: center;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-1 > div {
  background-size: cover;
}

.newsletter-wrapper.newsletter-style-1 .newsletter p {
  padding: 0 50px;
  margin-bottom: 0;
}

.newsletter-wrapper.newsletter-style-1 .newsletter p + .section-field {
  margin-top: 25px;
}

.newsletter-wrapper.newsletter-style-1 .newsletter .section-field {
  margin-top: 15px;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-1 .newsletter_form {
  display: block;
  width: 100%;
  position: relative;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-1 .input-area {
  display: block;
  padding-right: 0;
  position: relative;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-1 .input-area input[type=text] {
  border-right: none;
  background: #fff;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  padding-right: 134px;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-1 .button-area {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-1 .button-area button {
  color: #04d39f;
  font-weight: 700;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-1 .button-area .btn.submit {
  min-width: 125px;
  line-height: 46px;
  padding: 0 10px;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-1 .button-area .btn.submit:hover,
.newsletter-wrapper.newsletter-style-1.newsletter-design-1 .button-area .btn.submit:focus {
  background: #323232;
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-2 .newsletter_form {
  display: block;
  width: 100%;
  position: relative;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-2 .input-area {
  display: block;
  padding-right: 165px;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-2 .input-area input[type=text] {
  border: 0 solid #e5e5e5;
  background: #fff;
  padding-left: 25px;
  padding-right: 25px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-2 .button-area {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-2 .button-area .btn.submit {
  background: #04d39f;
  padding: 0 40px;
  min-width: 155px;
  line-height: 46px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-3 .newsletter_form {
  display: block;
  width: 100%;
  position: relative;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-3 .input-area {
  display: block;
  padding-right: 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-3 .input-area input[type=text] {
  border: none;
  background: #04d39f;
  padding-left: 25px;
  padding-right: 130px;
  height: 50px;
  color: #fff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-3 .input-area input[type=text]::-webkit-input-placeholder {

  /* Edge */
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-3 .input-area input[type=text]:-ms-input-placeholder {

  /* Internet Explorer 10-11 */
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-3 .input-area input[type=text]::placeholder {
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-3 .button-area {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-3 .button-area .btn.submit {
  background: 0 0;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  min-width: 120px;
  line-height: 50px;
  -webkit-border-radius: 0 50px 50px 0;
  -moz-border-radius: 0 50px 50px 0;
  border-radius: 0 50px 50px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-3 .button-area .btn.submit:hover,
.newsletter-wrapper.newsletter-style-1.newsletter-design-3 .button-area .btn.submit:focus {
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .newsletter_form {
  display: block;
  width: 100%;
  position: relative;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .input-area {
  display: block;
  padding-right: 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .input-area input[type=text] {
  border: none;
  background: #323232;
  padding-left: 20px;
  padding-right: 140px;
  height: 50px;
  color: #fff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .input-area input[type=text]::-webkit-input-placeholder {

  /* Edge */
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .input-area input[type=text]:-ms-input-placeholder {

  /* Internet Explorer 10-11 */
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .input-area input[type=text]::placeholder {
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .button-area {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .button-area .btn.submit {
  background: 0 0;
  min-width: 115px;
  border: none;
  padding: 0 20px;
  padding-left: 30px;
  font-size: 13px;
  font-weight: 600;
  line-height: 50px;
  -webkit-border-radius: 0 50px 50px 0;
  -moz-border-radius: 0 50px 50px 0;
  border-radius: 0 50px 50px 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .button-area .btn.submit:hover,
.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .button-area .btn.submit:focus {
  color: #04d39f;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .button-area:before {
  content: "\f1d9";
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .button-area:hover:before,
.newsletter-wrapper.newsletter-style-1.newsletter-design-5 .button-area:focus:before {
  color: #04d39f;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .newsletter_form {
  display: block;
  width: 100%;
  position: relative;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .input-area {
  display: block;
  padding-right: 0;
  position: relative;
  padding-left: 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .input-area input[type=email] {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: 0 0;
  padding-right: 120px;
  height: 50px;
  border-radius: 0;
}

.newsletter-wrapper .newsletter_form .error {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  color: #dc3545;
  bottom: -24px;
  text-align: center;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area .btn.btn-icon:hover {
  color: #04d39f;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area .btn.submit {
  background: 0 0;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  min-width: 120px;
  line-height: 46px;
  -webkit-border-radius: 0 50px 50px 0;
  -moz-border-radius: 0 50px 50px 0;
  border-radius: 0 50px 50px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: #323232;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area .btn.submit:hover,
.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area .btn.submit:focus {
  color: #04d39f;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area:before {
  content: "\f1d9";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 0;
  color: #323232;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area:hover:before,
.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area:focus:before {
  color: #04d39f;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .newsletter_form {
  display: block;
  width: 100%;
  position: relative;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .input-area {
  display: block;
  padding-right: 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .input-area input[type=text] {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding-left: 15px;
  padding-right: 130px;
  height: 50px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.newsletter-style-2.ciyashop_newsletter-content-alignment-center.newsletter-bg-type-light .input-area {
  position: relative;
  margin-bottom: 24px;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .input-area input[type=text]::-webkit-input-placeholder {

  /* Edge */
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .input-area input[type=text]:-ms-input-placeholder {

  /* Internet Explorer 10-11 */
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .input-area input[type=text]::placeholder {
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area .btn.submit {
  background: 0 0;
  min-width: 115px;
  padding: 0 15px;
  padding-left: 25px;
  font-size: 13px;
  font-weight: 600;
  line-height: 50px;
  color: #fff;
  -webkit-border-radius: 0 50px 50px 0;
  -moz-border-radius: 0 50px 50px 0;
  border-radius: 0 50px 50px 0;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area .btn.submit:hover,
.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area .btn.submit:focus {
  color: #fff;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area:before {
  content: "\f1d9";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 0;
  color: #fff;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.newsletter-wrapper .newsletter-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 10px;
}

.newsletter-wrapper .input-area input[type=text] {
  width: 100%;
}

.newsletter-wrapper .button-area {
  display: inline-block;
  position: relative;
}

.newsletter-bg {
  margin-top: 10px;
}

.newsletter-bg p.title {
  text-align: center;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area .input-group-btn button {
  font-weight: 600;
  padding: 13px 20px;
  color: #04d39f;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area:before {
  color: #04d39f;
}

.product-deals-items-column .product-deals-item {
  display: table;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #e8e8e8;
  min-height: 140px;
}

.product-deals-items-column .product-deals-item .product-deals-item-left {
  display: table-cell;
  width: 35%;
  background-color: #fff;
  vertical-align: middle;
}

.product-deals-items-column .product-deals-item .product-deals-item-right {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 50px;
  background-color: #fff;
}

.product-deals-items-column .product-deals-item .product-deals-item-right .product-deal-content .product-deal-title {
  display: block;
  margin: 0;
  margin-bottom: 5px;
  color: #323232;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.product-deals-items-column .product-deals-item .product-deals-item-right .product-deal-content .product-deal-title a {
  color: #323232;
}

.product-deals-items-column .product-deals-item .product-deals-item-right .product-deal-content .product-deal-title a:hover,
.product-deals-items-column .product-deals-item .product-deals-item-right .product-deal-content .product-deal-title a:focus {
  color: #04d39f;
}

.product-deals-items-column .product-deals-item .product-deals-item-right .product-deal-content .product-deal-content-rating .star-rating {
  font-size: 12px;
}

.product-deals-items-column .product-deals-item .product-deals-item-right .product-deal-content .product-deal-content-price ins {
  background: 0;
  font-size: 18px;
  color: #04d39f;
  font-weight: 600;
  margin-left: 5px;
}

.product-reviews .rating {
  display: flex;
}

.product-reviews .rating li {
  margin-right: 2px;
}

.product-reviews .rating li .fa-star,
.product-reviews .rating li .fa-star-half-o {
  color: #ffbe00;
}

.product-reviews .product-reviews-comment {
  display: flex;
}

.product-reviews .product-reviews-comment .comment-avatar {
  width: 80px;
  margin-right: 20px;
}

.product-reviews .product-reviews-comment .comment-text {
  width: 100%;
  border: 1px solid #e4e1e3;
  padding: 15px;
}

.products-listing-intro-wrapper {
  height: 100%;
  padding: 25px 25px 85px 25px;
  position: relative;
  z-index: 1;
}

.products-listing-intro-wrapper.products-listing-intro-content-alignment-left {
  text-align: left;
}

.products-listing-intro-wrapper.products-listing-intro-content-alignment-right {
  text-align: right;
}

.products-listing-intro-wrapper .products-listing-title h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.products-listing-intro-wrapper .products-listing-control {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px;
  padding-top: 0;
  width: 100%;
}

.products-listing-intro-wrapper .products-listing-nav > div {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  color: #969696;
  line-height: 48px;
  cursor: pointer;
  margin-right: 5px;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.09);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.09);
}

.products-listing-intro-wrapper .products-listing-link {
  margin-top: 15px;
}

.products-listing-intro-wrapper .products-listing-link a {
  font-weight: 600;
  text-decoration: underline;
  color: #fff;
}

.products-listing-intro-wrapper .products-listing-intro-wrapper-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.7);
}

.products-listing-intro-bg_type-image,
.products-listing-intro-bg_type-image h2 {
  color: #fff;
}

.ciyashop-products-shortcode .btn.btn-solid {
  border: 1px solid #e5e5e5;
}

.ciyashop-products-shortcode .btn.btn-solid:hover {
  background: #f5f5f5;
  color: #323232;
}

.latest-post-wrapper .latest-post-item .latest-post-item-inner {
  position: relative;
  display: table;
  height: 100%;
}

.latest-post-wrapper .latest-post-item .latest-post-image {
  display: table-cell;
  width: 50%;
  height: 100%;
}

.latest-post-wrapper .latest-post-item .latest-post-image img {
  width: 100%;
}

.latest-post-wrapper .latest-post-item .latest-post-content {
  display: table-cell;
  vertical-align: top;
  padding: 20px;
  position: relative;
  height: 100%;
}

.latest-post-wrapper .latest-post-item .post-date {
  position: absolute;
  top: 5px;
  left: 0;
  margin-left: -85px;
  width: 60px;
  height: 60px;
  background: #fff;
  text-align: center;
  color: #04d39f;
  font-size: 18px;
  font-weight: 600;
  padding-top: 7px;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}

.latest-post-wrapper .latest-post-item .post-date span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 16px;
}

.latest-post-wrapper .latest-post-item .latest-post-meta {
  display: inline-block;
}

.latest-post-wrapper .latest-post-item .latest-post-meta ul {
  padding: 0;
  margin: 0;
}

.latest-post-wrapper .latest-post-item .latest-post-meta ul li {
  list-style-type: none;
  float: left;
  margin-right: 10px;
  display: inline-block;
  font-size: 13px;
  color: #969696;
  line-height: 24px;
}

.latest-post-wrapper .latest-post-item .latest-post-meta ul li a {
  color: #969696;
}

.latest-post-wrapper .latest-post-item .latest-post-meta ul li a:hover,
.latest-post-wrapper .latest-post-item .latest-post-meta ul li a:focus {
  color: #04d39f;
}

.latest-post-wrapper .latest-post-item .latest-post-meta ul li i {
  margin-right: 5px;
  color: #04d39f;
}

.latest-post-wrapper .latest-post-item .blog-title {
  font-size: 18px;
  color: #323232;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 5px;
}

.latest-post-wrapper .latest-post-item .latest-post-excerpt p {
  margin-bottom: 0;
}

.latest-post-wrapper .latest-post-item .blog-title a {
  color: #323232;
}

.latest-post-wrapper .latest-post-item .blog-title a:hover,
.latest-post-wrapper .latest-post-item .blog-title a:focus {
  color: #04d39f;
}

.latest-post-wrapper .latest-post-item .latest-post-category span {
  background: #04d39f;
  padding: 0 25px;
  display: inline-block;
  color: #fff;
  line-height: 28px;
  text-transform: capitalize;
}

.latest-post-wrapper .latest-post-item .latest-post-entry-footer {
  display: inline-block;
  width: 100%;
}

.latest-post-wrapper .latest-post-item .latest-post-entry-footer a {
  float: left;
  line-height: 28px;
  margin-bottom: -58px;
  padding-top: 30px;
}

.latest-post-wrapper .latest-post-item .latest-post-entry-footer a:hover,
.latest-post-wrapper .latest-post-item .latest-post-entry-footer a:focus {
  color: #04d39f;
}

.latest-post-wrapper .latest-post-item .latest-post-entry-footer .latest-post-social-share {
  margin-left: -9px;
}

.latest-post-wrapper .latest-post-item .latest-post-entry-footer .latest-post-social-share ul {
  padding: 0;
  margin: 0;
}

.latest-post-wrapper .latest-post-item .latest-post-entry-footer .latest-post-social-share ul li {
  list-style-type: none;
  display: table-cell;
}

.latest-post-wrapper .latest-post-item .latest-post-entry-footer .latest-post-social-share ul li a {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  display: inline-block;
  color: #969696;
}

.latest-post-wrapper.latest-post-style-1 .latest-post-item .latest-post-content {
  padding: 0;
  padding-left: 30px;
  vertical-align: middle;
  position: static;
  text-align: left;
}

.latest-post-wrapper.latest-post-style-1 .latest-post-item .post-date {
  position: absolute;
  left: 15px;
  top: 15px;
  background: #323232;
  color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  margin-left: 0;
  width: auto;
  height: auto;
  display: inline-block;
  padding: 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}

.latest-post-wrapper.latest-post-style-1 .latest-post-item .post-date span {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
  line-height: inherit;
  padding-left: 5px;
}

.latest-post-wrapper.latest-post-style-1 .latest-post-item .latest-post-entry-footer {
  display: inline-block;
  width: 100%;
}

.latest-post-wrapper.latest-post-style-1 .latest-post-item .latest-post-entry-footer a {
  float: none;
  color: #323232;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0;
  display: inline-block;
  padding-top: 0;
  margin-top: 10px;
}

.latest-post-wrapper.latest-post-style-1 .latest-post-item .latest-post-entry-footer a:hover,
.latest-post-wrapper.latest-post-style-1 .latest-post-item .latest-post-entry-footer a:focus {
  color: #04d39f;
}

.latest-post-wrapper.latest-post-style-1 .latest-post-item .latest-post-entry-footer .latest-post-social-share {
  display: none;
}

.latest-post-wrapper.latest-post-style-2 .latest-post-item .latest-post-item-inner {
  background: #fff;
  border: 1px solid #eeeeee;
  display: block;
}

.latest-post-wrapper.latest-post-style-2 .latest-post-item .latest-post-image {
  width: 100%;
  height: auto;
  display: block;
}

.latest-post-wrapper.latest-post-style-2 .latest-post-item .latest-post-content {
  width: 100%;
  height: auto;
  display: block;
  padding: 20px;
  background: 0 0;
  position: static;
}

.latest-post-wrapper.latest-post-style-2 .latest-post-item .post-date {
  position: absolute;
  left: 0;
  top: 15px;
  background: #323232;
  color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  margin-left: 0;
  width: auto;
  height: auto;
  display: inline-block;
  padding: 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}

.latest-post-wrapper.latest-post-style-2 .latest-post-item .post-date span {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
  line-height: inherit;
  padding-left: 5px;
}

.latest-post-wrapper.latest-post-style-2 .latest-post-item .blog-title a {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.latest-post-wrapper.latest-post-style-2 .latest-post-item .latest-post-entry-footer {
  display: none;
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .latest-post-item-inner {
  box-shadow: none;
  padding-bottom: 30px;
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .latest-post-image {
  width: 100%;
  height: auto;
  display: block;
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .latest-post-content {
  background: #fff;
  width: 91%;
  height: auto;
  display: block;
  margin: 0 4.5%;
  margin-top: -40px;
  padding: 40px 20px 15px;
  position: relative;
  z-index: 9;
  text-align: center;
  -webkit-box-shadow: 0 3px 25px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 3px 25px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.05);
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .post-date {
  left: 50%;
  top: -35px;
  margin-left: -30px;
  background: #04d39f;
  color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transform: inherit;
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .post-date .post-date-inner {
  transform: inherit;
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .blog-title {
  font-size: 16px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .blog-title a {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .latest-post-meta {
  display: none;
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .latest-post-entry-footer {
  position: relative;
  bottom: auto;
  top: -5px;
  left: 0;
  padding: 0;
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .latest-post-entry-footer a {
  float: none;
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .latest-post-entry-footer a:hover,
.latest-post-wrapper.latest-post-style-3 .latest-post-item .latest-post-entry-footer a:focus {
  color: #323232;
}

.latest-post-wrapper.latest-post-style-3 .latest-post-item .latest-post-social-share {
  display: none;
}

.latest-post-wrapper.latest-post-style-4 .latest-post-item .latest-post-content {
  padding: 15px 0 15px 50px;
  vertical-align: middle;
}

.latest-post-wrapper.latest-post-style-4 .latest-post-item .post-date {
  background: #04d39f;
  color: #fff;
  margin-left: -30px;
  top: 30px;
}

.latest-post-wrapper.latest-post-style-4 .latest-post-item .latest-post-entry-footer a {
  margin-bottom: 0;
  padding: 2px 26px;
  border: 2px solid #e8e8e8;
  color: #969696;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.latest-post-wrapper.latest-post-style-4 .latest-post-item .latest-post-entry-footer a:hover,
.latest-post-wrapper.latest-post-style-4 .latest-post-item .latest-post-entry-footer a:focus {
  border-color: #04d39f;
  color: #04d39f;
}

.latest-post-wrapper.latest-post-style-4 .latest-post-item .latest-post-social-share {
  display: none;
}

.latest-post-wrapper.latest-post-style-5 .latest-post-item .latest-post-item-inner {
  display: block;
  height: auto;
}

.latest-post-wrapper.latest-post-style-5 .latest-post-item .latest-post-item-inner .latest-post-image {
  display: block;
  width: 100%;
  height: auto;
}

.latest-post-wrapper.latest-post-style-5 .latest-post-item .latest-post-item-inner .latest-post-content {
  display: block;
  vertical-align: inherit;
  padding: 20px 0 0;
}

.latest-post-wrapper.latest-post-style-5 .latest-post-item .latest-post-item-inner .post-date {
  top: 10px;
  left: inherit;
  right: 10px;
  margin-left: 0;
  width: auto;
  height: auto;
  color: #969696;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 12px;
}

.latest-post-wrapper.latest-post-style-5 .latest-post-item .latest-post-item-inner .post-date i {
  color: #04d39f;
  margin-right: 3px;
}

.latest-post-wrapper.latest-post-style-5 .latest-post-item .latest-post-item-inner .latest-post-meta {
  margin-bottom: 0;
}

.latest-post-wrapper.latest-post-style-5 .latest-post-item .latest-post-item-inner .latest-post-entry-footer a {
  float: none;
  line-height: inherit;
  margin-bottom: 0;
  padding-top: 0;
  color: #969696;
  position: relative;
}

.latest-post-wrapper.latest-post-style-5 .latest-post-item .latest-post-item-inner .latest-post-entry-footer a:after {
  content: "";
  background: #e5e5e5;
  height: 1px;
  width: 45px;
  display: inline-block;
  top: 50%;
  position: absolute;
  margin-top: 1px;
  margin-left: 8px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.latest-post-wrapper.latest-post-style-5 .latest-post-item .latest-post-item-inner .latest-post-social-share {
  display: none;
}

.latest-post-wrapper.latest-post-style-6 .latest-post-item .latest-post-content {
  padding: 0 0 0 60px;
}

.latest-post-wrapper.latest-post-style-6 .latest-post-item .post-date {
  top: 0;
  left: 0;
  margin-left: 0;
  width: auto;
  height: auto;
  color: #323232;
  font-size: 32px;
  font-weight: 900;
  padding: 0 0 5px 0;
  box-shadow: none;
  background: 0 0;
  border-bottom: 2px solid #e5e5e5;
  line-height: 32px;
}

.latest-post-wrapper.latest-post-style-6 .latest-post-item .post-date span {
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 2px;
}

.latest-post-wrapper.latest-post-style-6 .latest-post-item .latest-post-category {
  margin-bottom: 10px;
}

.latest-post-wrapper.latest-post-style-6 .latest-post-item .latest-post-category span {
  padding: 0 15px;
  line-height: 24px;
  font-size: 11px;
  text-transform: uppercase;
}

.latest-post-wrapper.latest-post-style-6 .latest-post-item .latest-post-meta {
  margin-bottom: 0;
}

.latest-post-wrapper.latest-post-style-6 .latest-post-item .latest-post-entry-footer a {
  margin-bottom: 0;
  padding: 2px 26px;
  border: 2px solid #e8e8e8;
  color: #969696;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.latest-post-wrapper.latest-post-style-6 .latest-post-item .latest-post-entry-footer a:hover,
.latest-post-wrapper.latest-post-style-6 .latest-post-item .latest-post-entry-footer a:focus {
  border-color: #04d39f;
  color: #04d39f;
}

.latest-post-wrapper.latest-post-style-6 .latest-post-item .latest-post-social-share {
  display: none;
}

.latest-post-wrapper.latest-post-style-7 .latest-post-item .latest-post-content {
  padding: 0 0 0 20px;
  vertical-align: middle;
}

.latest-post-wrapper.latest-post-style-7 .latest-post-item .latest-post-category {
  margin-bottom: 5px;
}

.latest-post-wrapper.latest-post-style-7 .latest-post-item .latest-post-category span {
  padding: 0 15px;
  line-height: 24px;
  font-size: 11px;
  text-transform: uppercase;
}

.latest-post-wrapper.latest-post-style-7 .latest-post-item .latest-post-meta {
  margin-bottom: 0;
}

.latest-post-wrapper.latest-post-style-7 .latest-post-item .latest-post-entry-footer a {
  margin-bottom: 0;
  padding: 2px 26px;
  border: 2px solid #e8e8e8;
  color: #969696;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.latest-post-wrapper.latest-post-style-7 .latest-post-item .latest-post-entry-footer a:hover,
.latest-post-wrapper.latest-post-style-7 .latest-post-item .latest-post-entry-footer a:focus {
  border-color: #04d39f;
  color: #04d39f;
}

.latest-post-wrapper.latest-post-style-7 .latest-post-item .latest-post-social-share {
  display: none;
}

.latest-post-type-grid .latest-post-item .latest-post-content,
.latest-post-type-carousel .latest-post-item .latest-post-content {
  height: 100%;
}

.latest-post-type-grid .latest-post-main {
  margin-top: -30px;
}

.latest-post-type-grid .latest-post-main .latest-post-item {
  margin-bottom: 0;
  padding-top: 30px;
  height: 100%;
}

.latest-post-type-carousel.latest-post-style-2 .owl-carousel .latest-post-item {
  padding-bottom: 1px;
}

.latest-post-type-carousel.latest-post-style-2 .owl-carousel .latest-post-item-inner {
  box-shadow: none;
  border: 1px solid #e8e8e8;
}

@-webkit-keyframes ciyashop-social-toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }

}

@-moz-keyframes ciyashop-social-toTopFromBottom {
  49% {
    -moz-transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }

}

@keyframes ciyashop-social-toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }

}

.ciyashop-social-icons ul {
  display: inline-block;
  padding: 0;
  margin: 0;
  vertical-align: top;
}

.ciyashop-social-icons ul li {
  float: left;
  list-style: none;
  padding: 0;
  margin: 4px 8px 4px 0;
  margin-bottom: 10px;
}

.ciyashop-social-icons ul li a {
  float: left;
  height: 32px;
  width: 32px;
  line-height: 33px;
  font-size: 16px;
  text-align: center;
  margin: 0;
  border: 0;
  background: 0 0;
  color: #323232;
  overflow: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.ciyashop-social-icons ul li:hover i {
  webkit-animation: ciyashop-social-toTopFromBottom .3s forwards;
  -moz-animation: ciyashop-social-toTopFromBottom .3s forwards;
  animation: ciyashop-social-toTopFromBottom .3s forwards;
}

.ciyashop-social-icons.ciyashop-social-size-medium ul li a {
  height: 42px;
  width: 42px;
  line-height: 42px;
  font-size: 18px;
}

.ciyashop-social-icons.ciyashop-social-size-large ul li a {
  height: 48px;
  width: 48px;
  line-height: 48px;
  font-size: 20px;
}

.ciyashop-social-icons.ciyashop-social-size-extra-large ul li a {
  height: 54px;
  width: 54px;
  line-height: 54px;
  font-size: 20px;
}

.ciyashop-social-icons.ciyashop-social-style-border ul li a {
  border: 1px solid #eee;
  background: 0 0;
}

.bg-dark-gray .ciyashop-social-icons li a {
  color: #fff;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color a {
  color: #fff;
  border: 0;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-rss a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-rss a {
  background-color: #faa33d;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-facebook a:hover,
.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-facebook-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-facebook a,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-facebook-square a {
  background-color: #5d82d1;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-twitter a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-twitter a {
  background-color: #40bff5;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-vimeo a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-vimeo a {
  background-color: #35c6ea;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-myspace a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-myspace a {
  background-color: #008dde;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-youtube a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-youtube a {
  background-color: #ef4e41;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-instagram a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-instagram a {
  background-color: #548bb6;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-gplus a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-gplus a {
  background-color: #d68400;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-stumbleupon a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-stumbleupon a {
  background-color: #ff5c30;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-lastfm a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-lastfm a {
  background-color: #f34320;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-pinterest a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-pinterest a {
  background-color: #e13138;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-google a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-google a {
  background-color: #eb5e4c;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-evernote a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-evernote a {
  background-color: #9acf4f;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-dribbble a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-dribbble a {
  background-color: #f7659c;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-skype a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-skype a {
  background-color: #13c1f3;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-forrst a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-forrst a {
  background-color: #45ad76;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-linkedin a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-linkedin a {
  background-color: #238cc8;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-wordpress a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-wordpress a {
  background-color: #2592c3;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-grooveshark a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-grooveshark a {
  background-color: #ffb21d;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-delicious a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-delicious a {
  background-color: #377bda;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-behance a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-behance a {
  background-color: #1879fd;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-dropbox a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-dropbox a {
  background-color: #17a3eb;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-soundcloud a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-soundcloud a {
  background-color: #ff7e30;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-deviantart a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-deviantart a {
  background-color: #6a8a7b;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-yahoo a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-yahoo a {
  background-color: #ab47ac;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-flickr a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-flickr a {
  background-color: #ff48a3;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-digg a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-digg a {
  background-color: #75788d;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-blogger a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-blogger a {
  background-color: #ff9233;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-tumblr a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-tumblr a {
  background-color: #426d9b;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-quora a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-quora a {
  background-color: #ea3d23;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-github a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-github a {
  background-color: #3f91cb;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-amazon a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-amazon a {
  background-color: #ff8e2e;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-xing a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-xing a {
  background-color: #1a8e8c;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-wikipedia a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-wikipedia a {
  background-color: #b3b5b8;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-android a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-android a {
  background-color: #a4c639;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-google a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-google a {
  background-color: #d34836;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-apple a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-apple a {
  background-color: #999;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-twitter-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-twitter-square a {
  background-color: #40bff5;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-linkedin-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-linkedin-square a {
  background-color: #238cc8;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-github-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-github-square a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-pinterest-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-pinterest-square a {
  background-color: #e13138;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-google-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-google-square a {
  background-color: #da4f43;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-google a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-google a {
  background-color: #da4f43;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-github-alt a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-github-alt a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-maxcdn a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-maxcdn a {
  background-color: #ff5b02;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-html5 a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-html5 a {
  background-color: #e44d26;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-css3 a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-css3 a {
  background-color: #0071bb;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-btc a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-btc a {
  background-color: #f7931a;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-youtube-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-youtube-square a {
  background-color: #c12025;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-stack-overflow a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-stack-overflow a {
  background-color: #f48023;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-xing-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-xing-square a {
  background-color: #006567;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-youtube-play a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-youtube-play a {
  background-color: #c12025;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-adn a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-adn a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-bitbucket a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-bitbucket a {
  background-color: #205081;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-bitbucket-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-bitbucket-square a {
  background-color: #205081;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-tumblr-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-tumblr-square a {
  background-color: #395976;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-windows a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-windows a {
  background-color: #04aef4;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-linux a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-linux a {
  background-color: #fc0;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-foursquare a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-foursquare a {
  background-color: #fa4778;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-trello a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-trello a {
  background-color: #007cc3;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-gratipay a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-gratipay a {
  background-color: #630;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-vk a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-vk a {
  background-color: #4c75a3;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-vk a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-vk a {
  background-color: #4c75a3;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-weibo a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-weibo a {
  background-color: #f93;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-renren a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-renren a {
  background-color: #005eac;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-pagelines a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-pagelines a {
  background-color: #1996fc;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-stack-exchange a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-stack-exchange a {
  background-color: #f48023;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-vimeo-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-vimeo-square a {
  background-color: #23b6ea;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-slack a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-slack a {
  background-color: #78d4b6;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-yahoo a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-yahoo a {
  background-color: #7b0099;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-reddit a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-reddit a {
  background-color: #ff4500;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-reddit-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-reddit-square a {
  background-color: #ff4500;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-stumbleupon-circle a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-stumbleupon-circle a {
  background-color: #eb4924;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-pied-piper-pp a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-pied-piper-pp a {
  background-color: #388e3c;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-pied-piper-alt a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-pied-piper-alt a {
  background-color: #388e3c;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-drupal a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-drupal a {
  background-color: #2aa9e0;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-joomla a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-joomla a {
  background-color: #116faf;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-behance-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-behance-square a {
  background-color: #005cff;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-steam a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-steam a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-steam-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-steam-square a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-spotify a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-spotify a {
  background-color: #1dd069;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-openid a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-openid a {
  background-color: #f7931e;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-vine a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-vine a {
  background-color: #1ccd94;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-codepen a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-codepen a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-jsfiddle a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-jsfiddle a {
  background-color: #4679a4;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-rebel a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-rebel a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-empire a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-empire a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-git-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-git-square a {
  background-color: #f05033;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-hacker-news a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-hacker-news a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-tencent-weibo a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-tencent-weibo a {
  background-color: #006cb6;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-qq a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-qq a {
  background-color: #4d97d4;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-weixin a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-weixin a {
  background-color: #50b31b;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-share-alt a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-share-alt a {
  background-color: #02bf01;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-share-alt-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-share-alt-square a {
  background-color: #02bf01;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-slideshare a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-slideshare a {
  background-color: #42c0fb;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-twitch a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-twitch a {
  background-color: #6441a4;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-yelp a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-yelp a {
  background-color: #d32323;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-paypal a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-paypal a {
  background-color: #253b80;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-google-wallet a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-google-wallet a {
  background-color: #d7d7d7;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-cc-visa a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-cc-visa a {
  background-color: #3958a6;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-cc-mastercard a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-cc-mastercard a {
  background-color: #003663;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-git a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-git a {
  background-color: #f05033;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-cc-discover a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-cc-discover a {
  background-color: #f60;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-cc-amex a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-cc-amex a {
  background-color: #2f77bf;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-cc-paypal a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-cc-paypal a {
  background-color: #002f86;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-cc-stripe a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-cc-stripe a {
  background-color: #009cde;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-lastfm a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-lastfm a {
  background-color: #d20039;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-lastfm-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-lastfm-square a {
  background-color: #d20039;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-ioxhost a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-ioxhost a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-angellist a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-angellist a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-meanpath a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-meanpath a {
  background-color: #538dd6;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-buysellads a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-buysellads a {
  background-color: #f05033;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-connectdevelop a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-connectdevelop a {
  background-color: #3b164a;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-dashcube a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-dashcube a {
  background-color: #ff7f00;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-forumbee a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-forumbee a {
  background-color: #86ad22;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-leanpub a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-leanpub a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-sellsy a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-sellsy a {
  background-color: #0075c8;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-shirtsinbulk a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-shirtsinbulk a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-skyatlas a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-skyatlas a {
  background-color: #4cc3c8;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-facebook-official a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-facebook-official a {
  background-color: #3b5998;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-pinterest-p a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-pinterest-p a {
  background-color: #cb2027;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-whatsapp a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-whatsapp a {
  background-color: #29a71a;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-viacoin a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-viacoin a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-medium a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-medium a {
  background-color: #263238;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-y-combinator a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-y-combinator a {
  background-color: #f26522;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-optin-monster a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-optin-monster a {
  background-color: #9cff00;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-opencart a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-opencart a {
  background-color: #23c1f0;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-expeditedssl a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-expeditedssl a {
  background-color: #455a64;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-cc-jcb a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-cc-jcb a {
  background-color: #fba51a;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-cc-diners-club a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-cc-diners-club a {
  background-color: #1b458e;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-gg a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-gg a {
  background-color: #f7931e;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-gg-circle a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-gg-circle a {
  background-color: #f7931e;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-tripadvisor a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-tripadvisor a {
  background-color: #7db557;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-odnoklassniki a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-odnoklassniki a {
  background-color: #f96200;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-odnoklassniki-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-odnoklassniki-square a {
  background-color: #f96200;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-get-pocket a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-get-pocket a {
  background-color: #ef4056;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-wikipedia-w a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-wikipedia-w a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-safari a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-safari a {
  background-color: #409ed4;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-chrome a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-chrome a {
  background-color: #333;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-firefox a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-firefox a {
  background-color: #f58d00;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-opera a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-opera a {
  background-color: #ff1a2e;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-internet-explorer a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-internet-explorer a {
  background-color: #2672ec;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-contao a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-contao a {
  background-color: #f47c00;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-500px a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-500px a {
  background-color: #1e88e5;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-houzz a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-houzz a {
  background-color: #8ac541;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-black-tie a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-black-tie a {
  background-color: #000;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-fonticons a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-fonticons a {
  background-color: #109d58;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-reddit-alien a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-reddit-alien a {
  background-color: #ff4500;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-edge a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-edge a {
  background-color: #2c74be;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-codiepie a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-codiepie a {
  background-color: #96deda;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-modx a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-modx a {
  background-color: #61a349;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-fort-awesome a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-fort-awesome a {
  background-color: #1d9e74;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-usb a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-usb a {
  background-color: #0054a6;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-product-hunt a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-product-hunt a {
  background-color: #da542f;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-mixcloud a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-mixcloud a {
  background-color: #27394d;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-scribd a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-scribd a {
  background-color: #32201e;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-bluetooth a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-bluetooth a {
  background-color: #0a3c91;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-bluetooth-b a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-bluetooth-b a {
  background-color: #0a3c91;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-gitlab a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-gitlab a {
  background-color: #30353e;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-wpbeginner a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-wpbeginner a {
  background-color: #f60;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-wpforms a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-wpforms a {
  background-color: #b85a1b;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-envira a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-envira a {
  background-color: #7cc048;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-glide a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-glide a {
  background-color: #00a7ff;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-glide-g a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-glide-g a {
  background-color: #00a7ff;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-viadeo a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-viadeo a {
  background-color: #ff7e00;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-viadeo-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-viadeo-square a {
  background-color: #ff7e00;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-snapchat a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-snapchat a {
  background-color: #fff010;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-snapchat-ghost a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-snapchat-ghost a {
  background-color: #fff010;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-snapchat-square a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-snapchat-square a {
  background-color: #fff010;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-pied-piper a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-pied-piper a {
  background-color: #2e9e48;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-first-order a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-first-order a {
  background-color: maroon;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-yoast a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-yoast a {
  background-color: #9d2563;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-themeisle a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-themeisle a {
  background-color: #1599c4;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-google-official a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-google-official a {
  background-color: #dd5044;
}

.ciyashop-social-icons.ciyashop-social-effect-color-hover .ciyashop-social-color-font-awesome a:hover,
.ciyashop-social-icons.ciyashop-social-style-flat-color .ciyashop-social-color-font-awesome a {
  background-color: #1d9e74;
}

.ciyashop-social-icons.ciyashop-social-shape-rounded li a {
  border-radius: 3px;
}

.ciyashop-social-icons.ciyashop-social-shape-round li a {
  border-radius: 100%;
}

.team {
  background: #fff;
  border: none;
  padding-top: 0;
  text-align: center;
  position: relative;
  cursor: default;
  overflow: hidden;
}

.team .team-description {
  opacity: 0;
  background: #323232;
  text-align: center;
  padding: 10px 15px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.team .team-description h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}

.team .team-description span {
  color: #04d39f;
}

.team .team-social-icon {
  background: #04d39f;
  color: #fff;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  padding: 0 10px 15px 10px;
}

.team .team-social-icon ul {
  display: inline-block;
  vertical-align: top;
  padding: 0px;
  margin-bottom: 0;
}

.team .team-social-icon ul li {
  display: inline-block;
  margin: 0 2px;
}

.team .team-social-icon ul li a {
  line-height: 24px;
  font-size: 18px;
  color: #fff;
  border: 2px solid #fff;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  margin-bottom: 0;
}

.team .team-social-icon ul li a:last-child {
  margin-right: 0;
}

.team:hover .team-description {
  opacity: 1;
}

.team:hover .team-social-icon {
  bottom: 68px;
}

.team.shadow {
  border: 1px solid #f5f5f5;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05) !important;
  -moz-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05) !important;
}

.team.shadow .team-info {
  background: #fff;
  width: 100%;
  position: absolute;
  bottom: -65px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.team.shadow .team-info .team-description {
  background: 0 0;
  position: initial;
  padding: 15px 10px 26px;
  opacity: 1;
}

.team.shadow .team-info .team-description h4 {
  color: #323232;
}

.team.shadow .team-info .team-description span {
  color: #969696;
}

.team.shadow .team-info .team-social-icon {
  position: inherit;
  background: none;
  bottom: 0;
  position: relative;
  z-index: 9;
}

.team.shadow .team-images img {
  width: 100%;
}

.team.shadow:hover .team-info {
  bottom: 0;
  background: #04d39f;
}

.team.shadow:hover .team-info .team-description {
  padding: 15px 10px 6px;
}

.team.shadow:hover .team-info .team-description h4 {
  color: #fff;
}

.team.shadow:hover .team-info .team-description span {
  color: #fff;
}

.ciyashop_team_members_style_style-1 .owl-carousel .owl-item img {
  display: inline-block;
}

.ciyashop_team_members_style_style-3 .team.shadow:hover .team-social-icon a {
  border: 2px solid #fff;
}

.testimonial {
  background: 0 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  position: relative;
}

.testimonial .slick-initialized .slick-slide {
  outline: 0;
}

.testimonial i.fa-quote-left {
  font-size: 70px;
  margin-bottom: 10px;
  color: rgba(4, 211, 159, 0.15);
}

.testimonial p {
  font-size: 18px;
  line-height: 34px;
  color: #323232;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial .client-info {
  margin-bottom: 20px;
}

.testimonial .client-info .author-name {
  display: inline-block;
  font-size: 14px;
  color: #04d39f;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 28px;
}

.testimonial .client-info .author-name + span:before {
  content: "|";
  font-size: 14px;
  padding: 0 6px;
  color: #969696;
}

.testimonial .testimonial-nav {
  margin-bottom: 0;
  width: 200px;
  margin: 0 auto;
}

.testimonial .testimonial-nav .slick-slide {
  margin: 0;
}

.testimonial .testimonial-nav .slick-slide .author-photo {
  margin-bottom: 0;
  cursor: pointer;
}

.testimonial .testimonial-nav .slick-slide img {
  padding: 8px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  border-radius: 80px;
}

.testimonial .testimonial-nav .slick-current img {
  padding: 0;
  border: 3px solid #04d39f;
}

.testimonial.testimonial-style-1 .author-photo {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.testimonial.testimonial-style-1 .author-photo img {
  margin: 0 auto;
}

.testimonial.testimonial-style-1 .slick-prev:before,
.testimonial.testimonial-style-1 .slick-next:before {
  color: #323232;
}

.testimonial.testimonial-style-1 .slick-prev:hover:before,
.testimonial.testimonial-style-1 .slick-next:hover:before {
  color: #04d39f;
}

.testimonial.testimonial-style-1 .slick-next {
  right: 40%;
  top: inherit;
  bottom: 10px;
  z-index: 9;
}

.testimonial.testimonial-style-1 .slick-prev {
  left: 40%;
  top: inherit;
  bottom: 10px;
  z-index: 9;
}

.testimonial.testimonial-style-1 .slick-next:before {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  font-size: 18px;
  color: #323232;
}

.testimonial.testimonial-style-1 .slick-prev:before {
  content: "\f104";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  font-size: 18px;
  color: #323232;
}

.testimonial.testimonial-style-2 .client-image {
  margin-bottom: 20px;
  padding-top: 20px;
}

.testimonial.testimonial-style-2 .client-image .author-photo img {
  width: 125px;
  height: auto;
  display: inline-block;
  border: 4px solid #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  border-radius: 80px;
}

.testimonial.testimonial-style-2 .client-info p {
  color: #969696;
  font-style: normal;
  font-size: 15px;
  margin-top: 15px;
}

.testimonial.testimonial-style-2 .testimonials-title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
}

.testimonial.testimonial-style-3 {
  text-align: left;
}

.testimonial.testimonial-style-3 .owl-item {
  padding: 0 20px;
}

.testimonial.testimonial-style-3 .owl-item .item {
  background: #fff;
  margin: 20px 0;
  padding: 23px;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
}

.testimonial.testimonial-style-3 .testimonial-content p {
  line-height: 28px;
  color: #e8e8e8;
  font-size: 15px;
  font-style: normal;
  margin: 0;
}

.testimonial.testimonial-style-3 .testimonial-meta {
  display: table;
  padding-top: 20px;
}

.testimonial.testimonial-style-3 .testimonial-meta .client-image {
  display: table-cell;
  padding-right: 15px;
}

.testimonial.testimonial-style-3 .testimonial-meta .client-image .author-photo img {
  width: 65px;
  border: 2px solid #04d39f;
  border-radius: 50%;
}

.testimonial.testimonial-style-3 .testimonial-meta .client-info {
  margin-bottom: 20px;
  display: table-cell;
  position: relative;
  vertical-align: bottom;
  color: #e8e8e8;
}

.testimonial.testimonial-style-3 .testimonial-meta .client-info:before {
  content: "\f10d";
  font-family: FontAwesome;
  font-size: 46px;
  position: absolute;
  left: 3px;
  top: 12px;
  opacity: .1;
  color: #e8e8e8;
}

.testimonial.testimonial-style-3 .testimonial-meta .client-info span:before {
  color: #e8e8e8;
}

.bg-dark-gray .testimonial.testimonial-style-3 .owl-item .item {
  background: rgba(255, 255, 255, 0.03);
}

.insta-feed-wrapper img {
  width: 100%;
  height: auto;
}

.insta_v2_header {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
}

.insta_v2_header--title {
  -webkit-box-flex: 0;
  -ms-box-flex: 0 0 auto;
  flex: 1 1 auto;
  margin-right: 10px;
}

.insta_v2_header--title .insta_v2_title {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}

.insta_v2_header--button {
  margin-left: auto;
  -webkit-flex: 0 0 132px;
  -ms-flex: 0 0 132px;
  flex: 0 0 132px;
}

.insta_v2_header--button a {
  background: #04d39f;
  border: none;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  line-height: 24px;
  padding: 8px 18px 8px 35px;
  position: relative;
}

.insta_v2_header--button a i {
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: 18px;
}

.insta_v2_header--button a:hover {
  background: #323232;
}

.pgs-mtpl-header-wrapper .nav {
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}

.pgs-mtpl-header-wrapper .nav li {
  list-style-type: none;
  margin: 2px;
  display: inline-block;
}

.pgs-mtpl-header-wrapper .nav li a {
  color: #323232;
}

.pgs-mtpl-header-wrapper .mtpl-tabs--tabs_style-style-1 {
  position: relative;
}

.pgs-mtpl-header-wrapper .mtpl-tabs--tabs_style-style-1 li {
  position: relative;
  margin: 2px 8px;
}

.pgs-mtpl-header-wrapper .mtpl-tabs--tabs_style-style-1 li a {
  padding: 0 8px;
  font-size: 18px;
  font-weight: 400;
}

.pgs-mtpl-header-wrapper .mtpl-tabs--tabs_style-style-1 li a.active {
  color: #04d39f;
}

.pgs-mtpl-header-tabs_alignment-center .nav {
  text-align: center;
}

@keyframes animateZoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

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

}

.sidebar .widget {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.sidebar .widget:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.sidebar .shop-sidebar-widgets .widget_price_filter .price_slider_wrapper .price_slider_wrapper-inner {
  width: 100%;
}

.sidebar .shop-sidebar-widgets .widget_price_filter .price_slider_wrapper .button {
  font-size: 14px;
  float: right;
  background: 0 0;
  color: #323232;
  padding: 0;
  line-height: 24px;
  font-weight: 600;
  margin-top: 0px;
  position: relative;
}

.sidebar .shop-sidebar-widgets .widget_price_filter .price_slider_wrapper .button:before {
  content: "\f0b0";
  font-family: FontAwesome;
  padding-right: 10px;
}

.sidebar .shop-sidebar-widgets .widget_price_filter .price_slider_wrapper .button:hover {
  color: #04d39f;
}

.sidebar .shop-sidebar-widgets .widget_price_filter .price_slider_wrapper .ui-slider {
  margin-bottom: 20px;
}

.sidebar .shop-sidebar-widgets .widget_price_filter .price_slider_wrapper input#amount {
  height: auto;
  color: #969696;
  border: 0;
  position: absolute;
  padding: 0;
  width: auto;
}

.price_slider_wrapper {
  margin-top: 30px;
}

.price_slider_wrapper .input-range__track--active {
  background: #04d39f;
}

.price_slider_wrapper .input-range__slider {
  background: #04d39f;
  border-color: #04d39f;
}

.price_slider_wrapper .input-range__label--value {
  top: -30px;
}

.price_slider_wrapper .input-range__label {
  left: 0;
  font-size: 14px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.price_slider_wrapper .input-range__label--max,
.price_slider_wrapper .input-range__label--min {
  right: 10px;
  left: inherit;
  display: none;
}

.sidebar .shop-sidebar-widgets .widget_price_filter .price_slider_wrapper .price_slider_wrapper-inner {
  margin-bottom: 10px;
}

.sidebar .shop-sidebar-widgets .ui-slider {
  margin-top: 5px;
  margin-bottom: 5px;
  background: #e9e9e9;
  height: 5px;
  border-radius: 1em;
  border: 0;
}

.sidebar .shop-sidebar-widgets .ui-slider .ui-slider-range {
  background-color: #04d39f;
  border-radius: 0;
}

.sidebar .shop-sidebar-widgets .ui-slider .ui-slider-handle {
  background-color: #fff;
  border: 2px solid #04d39f;
  top: -7px;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  cursor: ew-resize;
}

.sidebar .shop-sidebar-widgets .ui-slider .ui-slider-handle:focus {
  outline: 0;
}

.sidebar .shop-sidebar-widgets .button {
  background: #04d39f;
  border: none;
  color: #fff;
  line-height: 38px;
  padding: 0 18px;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  float: right;
  padding: 0 15px;
  line-height: 33px;
  font-size: 13px;
}

.sidebar .shop-sidebar-widgets .button:hover {
  background: #323232;
}

.sidebar .shop-sidebar-widgets .button:focus {
  outline: 0;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container {
  position: relative;
  width: 100%;
  min-height: 215px;
  max-height: 215px;
  overflow-x: hidden;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list {
  position: absolute;
  overflow: scroll;
  overflow-x: hidden;
  top: 0;
  right: 0 !important;
  bottom: 0;
  left: 0;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list:focus {
  outline: none;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term {
  padding: 0;
  margin: 6px 0;
  padding-right: 50px;
  padding-left: 25px;
  position: relative;
  margin-right: 10px;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term:first-child {
  margin-top: 0;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term > a {
  color: #969696;
  padding: 0;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term > a > span {
  background: #e8e8e8;
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term > a > span:before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 11px;
  color: #fff;
  font-weight: 400;
  position: absolute;
  top: 1px;
  line-height: 16px;
  left: 3px;
  opacity: 0;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term:hover a > span {
  background: #04d39f;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term:hover a > span:before {
  opacity: 1;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term:hover span {
  color: #04d39f;
  border-color: #04d39f;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term .woocommerce_attribute_item-title {
  font-size: 14px;
  line-height: 18px;
  color: #969696;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term > .count {
  position: absolute;
  right: 0;
  top: 50%;
  border: 1px solid rgba(130, 130, 130, 0.3);
  width: 35px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  border-radius: 50px;
  font-size: 12px;
  color: #969696;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term .attribute_item-title {
  display: inline-block;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.sidebar .shop-sidebar-widgets .pgs-widget-layered-nav-list div span {
  text-transform: capitalize;
  padding-left: 10px;
}

.sidebar .pgs-widget-layered-nav-list-container .custom-control-label {
  text-transform: capitalize;
}

.custom-control-input:checked~.custom-control-label::before {
  background: #04d39f;
  border-color: #04d39f;
}

.custom-control-input:focus~.custom-control-label::before {
  box-shadow: none;
}

.custom-control-label:after {
  position: absolute;
  top: 5px;
  left: -20px;
  width: 13px;
  height: 13px;
}

.sidebar .pgs-widget-layered-nav-list-container .custom-control-input:checked~.custom-control-label::before {
  background: #04d39f;
  border-color: #04d39f;
}

.sidebar .pgs-widget-layered-nav-list-container div label {
  padding-left: 10px;
  margin-bottom: 0;
}

.sidebar .pgs-widget-layered-nav-list-container .pgs-filter-checkbox label {
  padding-left: 10px;
  text-transform: capitalize;
  margin-bottom: 5px !important;
}

.sidebar .shop-sidebar-widgets .widget_product_categories {
  max-height: inherit;
  height: auto !important;
  padding-bottom: 10px;
}

.sidebar .shop-sidebar-widgets .widget_product_categories .product-categories {
  position: relative;
  margin-top: 0;
  left: auto;
  right: auto !important;
  overflow: inherit;
  padding: 0;
}

.sidebar .shop-sidebar-widgets .widget_product_categories .product-categories li {
  list-style-type: none;
  position: relative;
  margin: 0;
}

.sidebar .shop-sidebar-widgets .widget_product_categories .product-categories li a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  line-height: 24px;
}

.sidebar .shop-sidebar-widgets .widget_product_categories .product-categories li a:hover {
  color: #04d39f;
}

.sidebar .shop-sidebar-widgets .pgs_brand_filters .pgs-brand-items {
  padding: 0;
  margin: 0;
}

.sidebar .shop-sidebar-widgets .pgs_brand_filters .pgs-brand-items li {
  position: relative;
  list-style-type: none;
  padding: 12px 15px;
  border: 1px solid #e8e8e8;
  margin: 6px 0;
}

.sidebar .shop-sidebar-widgets .pgs_brand_filters .pgs-brand-items li h5 {
  margin-bottom: 0;
}

.sidebar .shop-sidebar-widgets .pgs_brand_filters .pgs-brand-items li h5 a {
  display: block;
}

.sidebar .shop-sidebar-widgets .pgs_brand_filters .pgs-brand-items li h5 a:hover {
  color: #04d39f;
}

.sidebar .shop-sidebar-widgets .pgs_brand_filters .pgs-brand-items li img {
  height: 23px;
  width: auto;
}

.sidebar .shop-sidebar-widgets .pgs_brand_filters .pgs-brand-items .widget_brand-product-count {
  position: absolute;
  right: 15px;
  top: 12px;
  font-size: 13px;
  font-weight: 400;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar .shop-sidebar-widgets .widget_pgs_social_profiles {
  border-top: 1px solid #f1f1f1;
  margin-top: 30px;
  padding-top: 30px;
  margin-bottom: 30px;
}

.sidebar .shop-sidebar-widgets .widget.widget_price_filter {
  padding-bottom: 30px;
}

.carousel-wrapper .item a {
  display: inline-block;
  border: 1px solid #f7f7f7;
  background: #fff;
  width: 100%;
  text-align: center;
  margin-bottom: 7px;
  padding: 15px;
  padding-top: 10px;
  position: relative;
}

.carousel-wrapper .item a:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 45px;
  height: 1px;
  background: #fff;
  z-index: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

.carousel-wrapper .item a:hover {
  border-color: #04d39f;
}

.carousel-wrapper .item a:hover .category-name,
.carousel-wrapper .item a:hover .category-products-count {
  color: #04d39f;
}

.carousel-wrapper .item a:hover .cat-count {
  border-color: #04d39f;
  color: #04d39f;
}

.carousel-wrapper .category-image img {
  display: inline;
  width: auto;
}

.carousel-wrapper .category-name {
  color: #969696;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.carousel-wrapper .category-products-count {
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-wrapper .category-products-count .cat-count {
  display: inline-block;
  position: relative;
  border: 1px solid #e8e8e8;
  color: #969696;
  min-width: 33px;
  border-radius: 50px;
  line-height: 16px;
  font-size: 12px;
  background: #fff;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.carousel-wrapper .category-products-count .cat-label {
  display: none;
}

.products-header .right-banner,
.products-header .loop-header {
  margin-bottom: 30px;
}

.products-header .loop-header-filters {
  margin-bottom: 15px;
}

.products-header .loop-header-filters .widget {
  margin-bottom: 0;
}

.products-header .loop-header-filters .widget .widgettitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 26px;
  text-transform: uppercase;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #f1f1f1;
  padding-top: 30px;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .row > .widget {
  border-left: 1px solid #f1f1f1;
  padding-left: 25px;
  padding-right: 25px;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .row > .widget:first-child {
  border-left: none;
  padding-left: 15px;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .row > .widget:last-child {
  padding-right: 15px;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget-title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 30px;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget_price_filter .price_slider_wrapper .price_slider_wrapper-inner {
  width: 100%;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget_price_filter .price_slider_wrapper .button {
  font-size: 14px;
  float: right;
  background: 0 0;
  color: #323232;
  padding: 0;
  line-height: 24px;
  font-weight: 600;
  margin-top: 0px;
  position: relative;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget_price_filter .price_slider_wrapper .button:before {
  content: "\f0b0";
  font-family: FontAwesome;
  padding-right: 10px;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget_price_filter .price_slider_wrapper .button:hover {
  color: #04d39f;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget_price_filter .price_slider_wrapper .ui-slider {
  margin-bottom: 20px;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container {
  position: relative;
  width: 100%;
  min-height: 215px;
  max-height: 215px;
  overflow: hidden;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container.has-scrollbar {
  min-height: inherit;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list {
  position: absolute;
  overflow: scroll;
  overflow-x: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term {
  padding: 0;
  margin: 6px 0;
  padding-right: 50px;
  padding-left: 25px;
  position: relative;
  margin-right: 10px;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term:first-child {
  margin-top: 0;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term > a {
  color: #969696;
  padding: 0;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term > a > span {
  background: #e8e8e8;
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term > a > span:before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 11px;
  color: #fff;
  font-weight: 400;
  position: absolute;
  top: 1px;
  line-height: 16px;
  left: 3px;
  opacity: 0;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term:hover a > span {
  background: #04d39f;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term:hover a > span:before {
  opacity: 1;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term:hover span {
  color: #04d39f;
  border-color: #04d39f;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term .woocommerce_attribute_item-title {
  font-size: 14px;
  line-height: 18px;
  color: #969696;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term > .count {
  position: absolute;
  right: 0;
  top: 50%;
  border: 1px solid rgba(130, 130, 130, 0.3);
  width: 35px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  border-radius: 50px;
  font-size: 12px;
  color: #969696;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list-container > .pgs-widget-layered-nav-list > .wc-layered-nav-term .attribute_item-title {
  display: inline-block;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .pgs-widget-layered-nav-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget_rating_filter ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget_rating_filter ul li {
  padding: 0 0 1px;
  list-style: none;
  margin: 5px 0px;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget_rating_filter ul li a {
  padding: 1px 0;
  text-decoration: none;
  display: inline-block;
  color: #969696;
  line-height: 24px;
  font-weight: 400;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget_rating_filter ul li a:hover {
  color: #04d39f;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget_rating_filter ul li .star-rating {
  float: none;
  display: inline-block;
}

.products-header .loop-header-filters .pgs_widgets_shop-filters .widget_rating_filter ul li .star-rating .fa-star {
  color: #ffbe00;
}

.products-header .pgs-shop-filters-wrapper .shop-filter {
  padding: 0;
  padding-right: 10px;
}

.products-header .pgs-shop-filters-wrapper .shop-filter .select2 {
  width: 100%;
}

.products-header .pgs-shop-filters-wrapper .row > div:last-child .shop-filter {
  padding-right: 0;
}

.products-header .pgs-shop-filters-wrapper .row > [class*=col] {
  margin-bottom: 10px;
}

.products-header .pgs-shop-filters-wrapper .shop-filter-search {
  position: relative;
}

.products-header .pgs-shop-filters-wrapper .shop-filter-search:before {
  content: "\f002";
  font-family: FontAwesome;
  position: absolute;
  top: 11px;
  left: 15px;
  margin-right: 0;
}

.products-header .pgs-shop-filters-wrapper .shop-filter-search input.search-field {
  padding-left: 35px;
  background: #fff;
  box-shadow: none;
  border: 1px solid #e8e8e8;
  height: 45px;
  border-radius: 0;
}

.products-header .pgs-shop-filters-wrapper .price_slider_wrapper .price_slider_wrapper-inner {
  float: left;
  width: 67%;
  position: relative;
}

.products-header .pgs-shop-filters-wrapper .price_slider_wrapper .price_slider_wrapper-inner input#amount {
  height: auto;
  color: #969696;
  border: 0;
  position: absolute;
  padding: 0;
}

.products-header .pgs-shop-filters-wrapper .price_slider_wrapper .ui-slider {
  margin-top: 5px;
  margin-bottom: 5px;
  background: #e9e9e9;
  height: 5px;
  border-radius: 1em;
  border: 0;
}

.products-header .pgs-shop-filters-wrapper .price_slider_wrapper .ui-slider .ui-slider-range {
  background-color: #04d39f;
  border-radius: 0;
}

.products-header .pgs-shop-filters-wrapper .price_slider_wrapper .ui-slider .ui-slider-handle {
  background-color: #fff;
  border: 2px solid #04d39f;
  top: -7px;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  cursor: ew-resize;
}

.products-header .pgs-shop-filters-wrapper .price_slider_wrapper .ui-slider .ui-slider-handle:focus {
  outline: 0;
}

.products-header .pgs-shop-filters-wrapper .price_slider_wrapper .button {
  background: #04d39f;
  border: none;
  color: #fff;
  line-height: 38px;
  padding: 0 18px;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  float: right;
  padding: 0 15px;
  line-height: 33px;
  font-size: 13px;
}

.products-header .pgs-shop-filters-wrapper .price_slider_wrapper .button:hover {
  background: #323232;
}

.products-header .pgs-shop-filters-wrapper .price_slider_wrapper .button:focus {
  outline: 0;
}

.products-header .select2-container {
  width: 100% !important;
}

.products-header .select2-container.select2-container--default {
  padding-left: 0;
  height: 35px;
}

.products-header .select2-container.select2-container--default .select2-selection--single {
  border-color: #e8e8e8;
  padding-left: 5px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  outline: 0;
  height: 35px;
}

.products-header .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 33px;
  font-size: 14px;
  color: #969696;
}

.products-header .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 30px;
  height: 33px;
  line-height: 33px;
}

.products-header .loop-header-tools {
  padding: 10px 0;
}

.products-header .loop-header-tools .result-count {
  float: left;
  padding: 0;
  margin: 0;
  line-height: 42px;
  margin-right: 15px;
}

.products-header .loop-header-tools .ordering {
  float: right;
  display: inline-block;
  margin: 0 0 0 10px;
  width: 206px;
}

.products-header .loop-header-tools .ordering select {
  width: 100%;
}

.products-header .loop-header-tools .gridlist-toggle-wrap {
  float: right;
  margin-left: 15px;
}

.products-header .loop-header-tools .gridlist-toggle-wrap .gridlist-toggle {
  padding: 0;
  margin: 0;
  margin-top: 12px;
}

.products-header .loop-header-tools .gridlist-toggle-wrap .gridlist-toggle .gridlist-button {
  display: inline-block;
  background-color: #ddd;
  width: 19px;
  height: 19px;
  color: #323232;
  font-size: 0;
  line-height: normal !important;
  padding: 0;
  margin-left: 8px;
  text-align: center;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.products-header .loop-header-tools .gridlist-toggle-wrap .gridlist-toggle .gridlist-button em {
  display: none;
}

.products-header .loop-header-tools .gridlist-toggle-wrap .gridlist-toggle .grid-2-column {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATAQMAAABInqSPAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABVJREFUCNdjYHjAgBf///8AhgmpBQBbshab5Q9hwwAAAABJRU5ErkJggg==);
}

.products-header .loop-header-tools .gridlist-toggle-wrap .gridlist-toggle .grid-3-column {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATAQMAAABInqSPAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABRJREFUCNdjYONhwMD//z8AYVLlAN0VDIfsUYs8AAAAAElFTkSuQmCC);
}

.products-header .loop-header-tools .gridlist-toggle-wrap .gridlist-toggle .grid-4-column {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATAQMAAABInqSPAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABNJREFUCNdj4HBiQMH//z8gVwwA99QNO/drNWsAAAAASUVORK5CYII=);
}

.products-header .loop-header-tools .gridlist-toggle-wrap .gridlist-toggle .gridlist-toggle-list {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATAQMAAABInqSPAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABJJREFUCNdjQAb//z9Ax6TIAwBDRhytPv/RAAAAAABJRU5ErkJggg==);
}

.products-header .loop-header-tools .gridlist-toggle-wrap .gridlist-toggle a:hover,
.products-header .loop-header-tools .gridlist-toggle-wrap .gridlist-toggle a.active {
  background-color: #04d39f;
}

.products .product {
  -webkit-animation: animateZoom .5s ease-in-out;
  animation: animateZoom .5s ease-in-out;
  margin-bottom: 30px;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.products .product .product-thumbnail .product-thumbnail-main {
  overflow: hidden;
}

.products .product .product-thumbnail .product-thumbnail-swap {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  overflow: hidden;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.products .product a img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: none;
}

.products .product .price {
  margin-bottom: 0;
  font-size: .857em;
  display: block;
  font-weight: 400;
  color: #323232;
}

.products .product .price del {
  color: inherit;
  opacity: .5;
  display: inline-block;
}

.products .product .price ins {
  background: 0 0;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.products .product .product-actions {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  opacity: 1;
  text-align: center;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  z-index: 9;
}

.products .product .product-actions .product-action-add-to-cart {
  display: inline-block;
}

.products .product .product-actions a {
  width: 45px;
  height: 45px;
  padding: 0;
  margin: 0 2px !important;
  display: inline-block;
  font-size: 0;
  background: #04d39f;
  line-height: 32px;
  position: relative;
  color: #fff;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.products .product .product-actions a:before {
  content: "";
  position: relative;
  left: 0;
  top: 6px;
  font-family: FontAwesome;
  font-size: 16px;
}

.products .product .product-actions .product-action-wishlist a:before {
  content: "\f004";
}

.products .product:hover .product-actions {
  opacity: 1;
}

.products .product .onsale,
.products .product .featured {
  position: absolute;
  top: 15px !important;
  left: auto;
  right: 0;
  z-index: 5;
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  height: 20px;
  line-height: 20px;
  padding: 0 8px 0 8px;
  border-radius: 0;
  transform: rotate(-45deg) translateY(-100%);
  -webkit-transform: rotate(0) translateY(0);
  transform-origin: right top;
  -webkit-transform-origin: right top;
  text-align: center;
  min-height: inherit;
  min-width: inherit;
  margin: 0 !important;
  background: #323232;
}

.products .product .onsale:before,
.products .product .onsale:after,
.products .product .featured:before,
.products .product .featured:after {
  content: "";
  position: absolute;
  left: -10px;
  color: #323232;
  border: solid 10px transparent;
  border-left-color: #323232;
}

.products .product .onsale:before,
.products .product .featured:before {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.products .product .onsale:after,
.products .product .featured:after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.products .product .featured {
  background: #f4524d;
}

.products .product .featured:before,
.products .product .featured:after {
  content: "";
  position: absolute;
  left: -10px;
  color: #f4524d;
  border: solid 10px transparent;
  border-left-color: #f4524d;
}

.products .product-inner .stock {
  display: inline-block;
  background: rgba(97, 208, 8, 0.8);
  font-size: 12px;
  line-height: 22px;
  color: #fff;
  padding: 0 7px;
  position: absolute;
  left: 15px;
  bottom: 15px;
  margin-bottom: 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.products .product-inner .out-of-stock {
  background: #de4646;
  font-size: 14px;
  min-width: 110px;
  text-align: center;
}

.products .product-inner:hover .product-thumbnail .product-thumbnail-main img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.products .product-inner:hover .product-thumbnail .product-thumbnail-swap {
  opacity: 1;
}

.products .product-inner:hover .product-thumbnail .product-thumbnail-swap img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.products .product-thumbnail {
  position: relative;
  overflow: hidden;
}

.products a {
  text-decoration: none;
}

.products .product-thumbnail-inner {
  position: relative;
}

.products .product-thumbnail-inner img {
  width: 100%;
  -webkit-transition: all .6s ease-out 0s;
  -moz-transition: all .6s ease-out 0s;
  transition: all .6s ease-out 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}

.products .product-info {
  text-align: center;
  padding: 20px;
}

.products .product-info .ciyashop-product-category {
  text-transform: capitalize;
  display: flex;
}

.products .product-info .fa-star,
.products .product-info .fa-star-half-o {
  color: #ffbe00;
}

.products .product-info .ciyashop-product-category,
.products .product-info .ciyashop-product-category a {
  font-size: 14px;
  color: #ababab;
  line-height: 18px;
  display: block;
}

.products .product-info .ciyashop-product-category a:hover {
  color: #323232;
}

.products .product-info .product-name {
  padding-bottom: 0;
  margin: 0;
}

.products .product-info .product-name a {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
  display: block;
  color: #323232;
}

.products .product-info .product-name a:hover,
.products .product-info .product-name a:focus {
  color: #04d39f;
}

.products .product-info .price .amount {
  font-size: 16px;
  font-weight: 600;
}

.products .product_title_type-single_line .product-info .product-name a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.products .product_icon_type-line-icon .product-actions .product-action-wishlist .add_to_wishlist:before {
  content: "\f18a";
  font-family: pgsicon-ecommerce;
  font-size: 18px;
}

.products .product_icon_type-line-icon .product-actions .product-action-compare a:before {
  content: "\f176";
  font-family: pgsicon-ecommerce;
  font-size: 18px;
}

.products .product_icon_type-line-icon .product-actions .product-action-add-to-cart a:before {
  content: "\f1bf";
  font-family: pgsicon-ecommerce;
  font-size: 18px;
}

.products .product_icon_type-line-icon .product-actions .product-action-quick-view a:before {
  content: "\f109";
  font-family: pgsicon-ecommerce;
  font-size: 18px;
}

.products .product-details__short-description {
  display: none;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
  max-height: inherit;
  overflow: hidden;
}

.products .product-details__short-description p {
  margin: 0;
}

.products .open-quick-view {
  position: absolute;
  top: 15px;
  left: 50%;
  min-width: 115px;
  background: #04d39f;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  padding: 7px 20px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
}

.products .open-edit-view {
  position: absolute;
  top: 15px;
  right: 60px;
  background: #04d39f;
  color: #ffffff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  z-index: 9;
}

.product-delete {
  position: absolute;
  top: 15px;
  right: 20px;
  background: #dc3545;
  color: #ffffff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  z-index: 9;
}

.products .open-edit-view:hover,
.product-delete:hover,
.product-delete:focus {
  color: #ffffff;
  background: #323232;
}

.products .product-hover-style-default {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-default .product-inner .stock {
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  opacity: 1;
}

.products .product-hover-style-default .product-inner .out-of-stock {
  width: calc(100% - 30px);
  line-height: 28px;
  font-size: 13px;
}

.products .product-hover-style-default .open-quick-view {
  top: 5px;
  left: 5px;
  opacity: 1;
  transform: translate(0, 0);
  font-size: 0;
  color: #323232;
  background: 0 0;
  min-width: auto;
  padding: 10px;
  line-height: normal;
  vertical-align: top;
  border-radius: 0;
}

.products .product-hover-style-default .open-quick-view:before {
  content: "\f109";
  font-family: pgsicon-ecommerce;
  font-size: 18px;
  position: relative;
  left: 0;
  top: 0;
}

.products .product-hover-style-default .open-quick-view:hover {
  color: #04d39f;
}

.products .product-hover-style-default .product-actions {
  padding-left: 15px;
  padding-right: 15px;
  bottom: 10px;
  opacity: 0;
}

.products .product-hover-style-default .product-actions .product-actions-inner {
  background: #323232;
}

.products .product-hover-style-default .product-actions .product-actions-inner > .product-action {
  display: inline-block;
  vertical-align: top;
}

.products .product-hover-style-default .product-actions .product-actions-inner.product-action-wishlist {
  float: none;
}

.products .product-hover-style-default .product-actions .product-actions-inner > .product-action-add-to-cart + .product-action-wishlist {
  float: left;
}

.products .product-hover-style-default .product-actions .product-action-add-to-cart {
  width: calc(100% - 46px);
  border-left: 1px solid #5a5a5a;
}

.products .product-hover-style-default .product-actions .product-action-add-to-cart a {
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  color: #a7a5a6;
  line-height: 40px;
  text-transform: uppercase;
}

.products .product-hover-style-default .product-actions a {
  background: 0 0;
  box-shadow: inherit;
  margin: 0 !important;
  border-radius: 0;
  color: #a7a5a6;
}

.products .product-hover-style-default .product-actions a:hover {
  color: #fff;
}

.products .product-hover-style-default .product-info {
  padding: 0;
  margin-top: 10px;
  text-align: left;
  position: relative;
}

.products .product-hover-style-default .product-info .product-name {
  padding-top: 5px;
  margin-bottom: 3px;
}

.products .product-hover-style-default .product-info .price {
  text-align: inherit;
}

.products .product-hover-style-default .product-rating-price {
  display: flex;
}

.products .product-hover-style-default .product-rating-price .product-rating {
  margin-left: auto;
}

.products .product-hover-style-default:hover .product-inner .stock {
  opacity: 0;
}

.products .product-hover-style-default:hover .open-quick-view {
  opacity: 1;
  background: 0 0;
}

.products .product-hover-style-default:hover .product-actions {
  bottom: 15px;
}

.products .product-hover-style-default.product_icon_type-line-icon .open-quick-view:before {
  content: "\f109";
  font-family: pgsicon-ecommerce;
  font-size: 18px;
}

.products .product-hover-style-default.product-hover-button-style-light .product-actions-inner {
  background: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.products .product-hover-style-default.product-hover-button-style-light .product-actions .product-action-add-to-cart {
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
}

.products .product-hover-style-default.product-hover-button-style-light .product-actions .product-action-add-to-cart a {
  color: #323232;
}

.products .product-hover-style-default.product-hover-button-style-light .product-actions .product-action-add-to-cart a:hover,
.products .product-hover-style-default.product-hover-button-style-light .product-actions .product-action-add-to-cart a:focus {
  color: #04d39f;
}

.products .product-hover-style-default.product-hover-button-style-light .product-actions .product-action-add-to-cart a:before {
  content: '';
}

.products .product-hover-style-default.product-hover-button-style-light .product-actions a {
  color: #323232;
}

.products .product-hover-style-default.product-hover-button-style-light .product-actions a:hover,
.products .product-hover-style-default.product-hover-button-style-light .product-actions a:focus {
  color: #04d39f;
}

.products .product-hover-style-icon-top-left,
.products .product-hover-style-icon-top-right {
  border: none;
  box-shadow: none;
}

.products .product-hover-style-icon-top-left .product-actions,
.products .product-hover-style-icon-top-right .product-actions {
  position: absolute;
  top: 15px;
  bottom: auto;
  left: -5px;
  width: auto;
  opacity: 0;
  visibility: hidden;
}

.products .product-hover-style-icon-top-left .product-actions .product-actions-inner,
.products .product-hover-style-icon-top-right .product-actions .product-actions-inner {
  background: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.products .product-hover-style-icon-top-left .product-actions .product-actions-inner > .product-action,
.products .product-hover-style-icon-top-right .product-actions .product-actions-inner > .product-action {
  position: relative;
}

.products .product-hover-style-icon-top-left .product-actions .product-actions-inner > .product-action:after,
.products .product-hover-style-icon-top-right .product-actions .product-actions-inner > .product-action:after {
  content: "";
  width: 25px;
  height: 1px;
  background: #e5e5e5;
  position: absolute;
  left: 15px;
  bottom: 0;
}

.products .product-hover-style-icon-top-left .product-actions a,
.products .product-hover-style-icon-top-right .product-actions a {
  width: 55px;
  height: 55px;
  line-height: 40px;
  margin: 0 !important;
  background: 0 0;
  color: #323232;
  border-radius: 0;
  box-shadow: none;
}

.products .product-hover-style-icon-top-left .product-actions a:hover,
.products .product-hover-style-icon-top-right .product-actions a:hover {
  color: #04d39f;
}

.products .product-hover-style-icon-top-left .open-quick-view,
.products .product-hover-style-icon-top-right .open-quick-view {
  min-width: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
}

.products .product-hover-style-icon-top-left .product-inner .stock,
.products .product-hover-style-icon-top-right .product-inner .stock {
  bottom: auto;
  top: 15px;
}

.products .product-hover-style-icon-top-left .product-inner .out-of-stock,
.products .product-hover-style-icon-top-right .product-inner .out-of-stock {
  width: calc(100% - 30px);
  line-height: 28px;
  font-size: 13px;
  top: auto;
  bottom: 15px;
  opacity: 1;
}

.products .product-hover-style-icon-top-left .product-info,
.products .product-hover-style-icon-top-right .product-info {
  padding: 0;
  padding-top: 12px;
  padding-right: 35px;
  position: relative;
  text-align: left;
}

.products .product-hover-style-icon-top-left .product-info .ciyashop-product-category,
.products .product-hover-style-icon-top-right .product-info .ciyashop-product-category {
  display: none;
}

.products .product-hover-style-icon-top-left .product-info .product-name,
.products .product-hover-style-icon-top-right .product-info .product-name {
  padding: 0;
}

.products .product-hover-style-icon-top-left .product-info .price,
.products .product-hover-style-icon-top-right .product-info .price {
  text-align: left;
}

.products .product-hover-style-icon-top-left .product-info .price .amount,
.products .product-hover-style-icon-top-right .product-info .price .amount {
  color: #04d39f;
}

.products .product-hover-style-icon-top-left .product-info .price del .amount,
.products .product-hover-style-icon-top-right .product-info .price del .amount {
  color: #323232;
}

.products .product-hover-style-icon-top-left .product-action-wishlist,
.products .product-hover-style-icon-top-right .product-action-wishlist {
  position: absolute;
  right: 0;
  top: 0;
}

.products .product-hover-style-icon-top-left .product-action-wishlist a,
.products .product-hover-style-icon-top-right .product-action-wishlist a {
  width: 25px;
  height: 45px;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-size: 0;
  line-height: 32px;
  color: #323232;
}

.products .product-hover-style-icon-top-left .product-action-wishlist a:before,
.products .product-hover-style-icon-top-right .product-action-wishlist a:before {
  position: relative;
  left: 0;
  top: 6px;
  content: "\f18a";
  font-family: pgsicon-ecommerce;
  font-size: 18px;
}

.products .product-hover-style-icon-top-left:hover .product-actions,
.products .product-hover-style-icon-top-right:hover .product-actions {
  left: 15px;
  opacity: 1;
  visibility: visible;
}

.products .product-hover-style-icon-top-right .product-actions {
  left: auto;
  right: -5px;
}

.products .product-hover-style-icon-top-right .product-inner .stock {
  left: auto;
  right: 15px;
}

.products .product-hover-style-icon-top-right:hover .product-actions {
  right: 15px;
  opacity: 1;
  visibility: visible;
  left: auto;
}

.products .product-hover-style-icon-bottom-right {
  border: none;
  box-shadow: none;
}

.products .product-hover-style-icon-bottom-right .product-actions {
  width: auto;
  transform: inherit;
  top: auto;
  bottom: 30px;
  opacity: 0;
  left: auto;
  right: 15px;
}

.products .product-hover-style-icon-bottom-right .product-actions .product-actions-inner {
  background: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.products .product-hover-style-icon-bottom-right .product-actions .product-actions-inner > .product-action {
  position: relative;
}

.products .product-hover-style-icon-bottom-right .product-actions .product-actions-inner > .product-action:after {
  content: "";
  width: 25px;
  height: 1px;
  background: #e5e5e5;
  position: absolute;
  left: 15px;
  bottom: 0;
}

.products .product-hover-style-icon-bottom-right .product-actions .product-actions-inner > .product-action:last-child:after {
  height: 0 !important;
}

.products .product-hover-style-icon-bottom-right .product-actions a {
  width: 55px;
  height: 55px;
  line-height: 40px;
  margin: 0 !important;
  background: 0 0;
  color: #323232;
  border-radius: 0;
  box-shadow: none;
}

.products .product-hover-style-icon-bottom-right .product-actions a:hover {
  color: #04d39f;
}

.products .product-hover-style-icon-bottom-right .open-quick-view {
  min-width: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
}

.products .product-hover-style-icon-bottom-right .product-inner .stock {
  bottom: auto;
  top: 15px;
}

.products .product-hover-style-icon-bottom-right .product-inner .out-of-stock {
  width: calc(100% - 30px);
  line-height: 28px;
  font-size: 13px;
  top: auto;
  bottom: 15px;
  opacity: 1;
}

.products .product-hover-style-icon-bottom-right .product-info {
  padding: 0;
  padding-top: 15px;
  position: relative;
}

.products .product-hover-style-icon-bottom-right .product-info .product-name {
  padding-top: 5px;
}

.products .product-hover-style-icon-bottom-right:hover .product-actions {
  bottom: 15px;
  opacity: 1;
}

.products .product-hover-style-image-center {
  box-shadow: none;
  border: 1px solid #eee;
}

.products .product-hover-style-image-center .stock {
  bottom: auto;
  top: 15px;
}

.products .product-hover-style-image-center .open-quick-view {
  top: auto;
  bottom: 30px;
  opacity: 0;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.products .product-hover-style-image-center .product-actions {
  bottom: auto;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.products .product-hover-style-image-center .product-actions .product-actions-inner > .product-action {
  display: inline-block;
  vertical-align: top;
}

.products .product-hover-style-image-center .open-quick-view {
  top: auto;
  bottom: 30px;
  opacity: 0;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.products .product-hover-style-image-center .product-info {
  position: relative;
  border: none;
  min-height: 118px;
}

.products .product-hover-style-image-center .product-info .product-name {
  padding-top: 5px;
}

.products .product-hover-style-image-center.product-hover-button-style-border .product-actions a {
  color: #fff;
}

.products .product-hover-style-image-center.product-hover-button-style-border .open-quick-view {
  background: #fff;
  color: #323232;
}

.products .product-hover-style-image-center.product-hover-button-style-border .open-quick-view:hover {
  color: #fff;
}

.products .product-hover-style-image-center:hover {
  -webkit-box-shadow: 0 3px 22px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 3px 22px rgba(0, 0, 0, 0.07);
  box-shadow: 0 3px 22px rgba(0, 0, 0, 0.07);
}

.products .product-hover-style-image-center:hover .product-actions {
  opacity: 1;
  bottom: auto;
  top: 50%;
}

.products .product-hover-style-image-center:hover .open-quick-view {
  bottom: 15px;
  opacity: 1;
}

.products .product-hover-style-image-center:hover .open-quick-view:hover {
  background: #323232;
}

.products .product-hover-style-image-left {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-image-left .product-actions {
  width: auto;
  transform: inherit;
  top: auto;
  bottom: 30px;
  opacity: 0;
  left: 15px;
}

.products .product-hover-style-image-left .product-actions .product-actions-inner {
  background: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.products .product-hover-style-image-left .product-actions .product-actions-inner > .product-action {
  position: relative;
}

.products .product-hover-style-image-left .product-actions .product-actions-inner > .product-action:after {
  content: "";
  width: 25px;
  height: 1px;
  background: #e5e5e5;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 99;
}

.products .product-hover-style-image-left .product-actions .product-actions-inner > .product-action:last-child:after {
  content: "";
  width: 25px;
  height: 0;
  background: #e5e5e5;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 99;
}

.products .product-hover-style-image-left .product-actions a {
  width: 55px;
  height: 55px;
  min-width: inherit;
  line-height: 40px;
  margin: 0 !important;
  background: 0 0;
  color: #323232;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.products .product-hover-style-image-left .price {
  overflow: hidden;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.products .product-hover-style-image-left .price > * {
  position: relative;
  top: 0;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.products .product-hover-style-image-left .price + .product-action-add-to-cart {
  margin-top: -30px;
}

.products .product-hover-style-image-left .product-info .product-name {
  padding: 5px 0px;
}

.products .product-hover-style-image-left .product-action-add-to-cart {
  margin: 0;
  margin-top: 0;
  line-height: 22px;
  overflow: hidden;
}

.products .product-hover-style-image-left .product-action-add-to-cart .button {
  margin: 0;
  background: 0 0;
  color: #323232;
  padding: 0;
  line-height: 22px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
  bottom: -22px;
}

.products .product-hover-style-image-left .product-action-add-to-cart .button:before {
  position: relative;
  left: 0;
  top: 0;
  padding-right: 10px;
  font-weight: 400;
  content: "\f139";
  font-family: pgsicon-ecommerce;
  font-size: 18px;
}

.products .product-hover-style-image-left .product-action-add-to-cart .button:hover {
  color: #04d39f;
}

.products .product-hover-style-image-left .product-inner .stock {
  bottom: auto;
  top: 15px;
}

.products .product-hover-style-image-left .open-quick-view {
  top: inherit;
  left: inherit;
  transform: inherit;
}

.products .product-hover-style-image-left:hover {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-image-left:hover .product-actions {
  bottom: 15px;
  opacity: 1;
}

.products .product-hover-style-image-left:hover .price {
  opacity: 0;
}

.products .product-hover-style-image-left:hover .product-action-add-to-cart .button {
  bottom: 0;
}

.products .product-hover-style-image-left.product-hover-button-style-flat.product-hover-button-style-dark .product-actions .product-actions-inner {
  background: #323232;
}

.products .product-hover-button-style-flat .product-actions a {
  background: #fff;
  color: #323232;
}

.products .product-hover-button-style-flat .product-actions a:hover {
  color: #04d39f;
}

.products .product-hover-button-style-border .product-thumbnail {
  z-index: 0;
}

.products .product-hover-button-style-border .product-thumbnail:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
  background: #04d39f;
  z-index: 1;
}

.products .product-hover-button-style-border .product-actions a {
  background: 0 0;
  box-shadow: none;
  border: 2px solid #fff;
  color: #fff;
  width: 43px;
  height: 43px;
  line-height: 28px;
}

.products .product-hover-button-style-border .product-actions a:hover {
  background: #fff;
  border-color: transparent !important;
  color: #04d39f;
}

.products .product-hover-button-style-border:hover .product-thumbnail:after {
  opacity: .8;
}

.products .product-hover-style-icons-transparent-center {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-icons-transparent-center .product-inner .stock {
  top: 15px;
  bottom: auto;
}

.products .product-hover-style-icons-transparent-center .product-inner .stock.out-of-stock {
  top: auto;
  bottom: 15px;
}

.products .product-hover-style-icons-transparent-center .product-actions {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
  opacity: 0;
  visibility: hidden;
}

.products .product-hover-style-icons-transparent-center .product-actions .product-actions-inner {
  display: inline-block;
  text-align: center;
  position: relative;
  top: 45%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.products .product-hover-style-icons-transparent-center .product-actions .product-actions-inner > .product-action {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.products .product-hover-style-icons-transparent-center .product-actions .product-actions-inner > .product-action:after {
  content: "";
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: -2px;
  top: 13px;
}

.products .product-hover-style-icons-transparent-center .product-actions .product-actions-inner > .product-action a {
  background: 0 0;
  box-shadow: none;
}

.products .product-hover-style-icons-transparent-center .product-actions .product-actions-inner .product-action-add-to-cart {
  float: none;
  width: 100%;
  display: inline-block;
  margin-top: 10px;
}

.products .product-hover-style-icons-transparent-center .product-actions .product-actions-inner .product-action-add-to-cart a {
  margin: 0 !important;
  width: 100%;
  height: auto;
  font-size: 13px;
  background: 0 0;
  border: 2px solid #fff;
  border-radius: 0;
  padding: 8px 25px;
  display: inline;
  text-transform: uppercase;
  cursor: pointer;
}

.products .product-hover-style-icons-transparent-center .product-actions .product-actions-inner .product-action-add-to-cart a:hover {
  background: #fff;
  color: #323232;
}

.products .product-hover-style-icons-transparent-center .product-action-quick-view:after {
  width: 0 !important;
}

.products .product-hover-style-icons-transparent-center .open-quick-view {
  min-width: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
}

.products .product-hover-style-icons-transparent-center .product-action-add-to-cart a:before {
  content: '' !important;
}

.products .product-hover-style-icons-transparent-center .product-action-add-to-cart:after {
  width: 0 !important;
}

.products .product-hover-style-icons-transparent-center .product-inner .out-of-stock {
  width: calc(100% - 30px);
  line-height: 28px;
  font-size: 13px;
}

.products .product-hover-style-icons-transparent-center:hover .product-actions {
  visibility: visible;
  opacity: 1;
}

.products .product-hover-style-icons-transparent-center:hover .product-actions .product-actions-inner {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.products .product-hover-style-info-transparent-center {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-info-transparent-center .product-inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .25s ease-out 0s;
  -moz-transition: all .25s ease-out 0s;
  transition: all .25s ease-out 0s;
}

.products .product-hover-style-info-transparent-center .product-info {
  position: absolute;
  left: 0;
  top: 48%;
  z-index: 2;
  text-align: center;
  width: 100%;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

.products .product-hover-style-info-transparent-center .product-info .ciyashop-product-category,
.products .product-hover-style-info-transparent-center .product-info .ciyashop-product-category a {
  color: rgba(255, 255, 255, 0.9);
}

.products .product-hover-style-info-transparent-center .product-info .product-name {
  padding-top: 0.5em;
}

.products .product-hover-style-info-transparent-center .product-info .product-name a {
  color: #fff;
}

.products .product-hover-style-info-transparent-center .product-info .product-name a:hover {
  color: #04d39f;
}

.products .product-hover-style-info-transparent-center .product-info .price {
  line-height: 24px;
}

.products .product-hover-style-info-transparent-center .product-info .price del .amount {
  color: #fff;
  opacity: 0.5;
}

.products .product-hover-style-info-transparent-center .product-info .price ins .amount {
  color: #fff;
}

.products .product-hover-style-info-transparent-center .product-actions {
  position: relative;
  bottom: auto;
  margin-bottom: 5px;
}

.products .product-hover-style-info-transparent-center .product-actions .product-actions-inner > .product-action {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.products .product-hover-style-info-transparent-center .product-actions .product-actions-inner > .product-action:after {
  content: "";
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: -2px;
  top: 13px;
}

.products .product-hover-style-info-transparent-center .product-actions .product-actions-inner > .product-action a {
  background: 0 0;
  box-shadow: none;
}

.products .product-hover-style-info-transparent-center .product-action-add-to-cart {
  float: none;
  width: 100%;
  display: inline-block;
  margin-top: 10px;
}

.products .product-hover-style-info-transparent-center .product-action-add-to-cart a {
  margin: 0 !important;
  width: 100%;
  height: auto;
  font-size: 13px;
  background: 0 0;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 0;
  padding: 8px 25px;
  display: inline;
  text-transform: uppercase;
  cursor: pointer;
}

.products .product-hover-style-info-transparent-center .product-action-add-to-cart a:hover {
  background: #fff;
  color: #323232;
}

.products .product-hover-style-info-transparent-center .product-action-quick-view:after {
  width: 0 !important;
}

.products .product-hover-style-info-transparent-center .open-quick-view {
  min-width: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
}

.products .product-hover-style-info-transparent-center .product-action-add-to-cart a:before {
  content: '' !important;
}

.products .product-hover-style-info-transparent-center .product-action-add-to-cart:after {
  width: 0 !important;
}

.products .product-hover-style-info-transparent-center .product-inner .out-of-stock {
  width: calc(100% - 30px);
  line-height: 28px;
  font-size: 13px;
}

.products .product-hover-style-info-transparent-center:hover .product-actions {
  opacity: 1;
}

.products .product-hover-style-info-transparent-center:hover .product-info {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.products .product-hover-style-info-transparent-center:hover .product-inner:before {
  opacity: 1;
  visibility: visible;
}

.products .product-hover-style-standard-info-transparent {
  border: none;
  box-shadow: none;
}

.products .product-hover-style-standard-info-transparent .product-inner .stock {
  bottom: 20px;
  right: 15px;
  left: auto;
  z-index: 1;
}

.products .product-hover-style-standard-info-transparent .product-actions {
  position: absolute;
  bottom: auto;
  left: auto;
  top: 15px;
  right: -5px;
  width: auto;
  opacity: 0;
  visibility: hidden;
}

.products .product-hover-style-standard-info-transparent .product-actions .product-actions-inner {
  background: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.products .product-hover-style-standard-info-transparent .product-actions .product-actions-inner > .product-action {
  position: relative;
}

.products .product-hover-style-standard-info-transparent .product-actions .product-actions-inner > .product-action:after {
  content: "";
  width: 25px;
  height: 1px;
  background: #e5e5e5;
  position: absolute;
  left: 15px;
  bottom: 0;
}

.products .product-hover-style-standard-info-transparent .product-actions a {
  width: 55px;
  height: 50px;
  line-height: 40px;
  margin: 0 !important;
  background: 0 0;
  color: #323232;
  border-radius: 0;
  box-shadow: none;
}

.products .product-hover-style-standard-info-transparent .product-actions a:hover {
  color: #04d39f;
}

.products .product-hover-style-standard-info-transparent .product-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  padding-right: 85px;
  text-align: left;
  background: rgba(0, 0, 0, 0.1);
}

.products .product-hover-style-standard-info-transparent .product-info .ciyashop-product-category,
.products .product-hover-style-standard-info-transparent .product-info .ciyashop-product-category a,
.products .product-hover-style-standard-info-transparent .product-info .ciyashop-product-category a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-size: 12px;
}

.products .product-hover-style-standard-info-transparent .product-info .product-name {
  padding-top: 5px;
}

.products .product-hover-style-standard-info-transparent .product-info .product-name a {
  color: #fff;
}

.products .product-hover-style-standard-info-transparent .product-info .product-name a:hover {
  color: #04d39f;
}

.products .product-hover-style-standard-info-transparent .product-info .standard-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  padding-right: 90px;
}

.products .product-hover-style-standard-info-transparent .product-info .standard-info .price {
  line-height: 24px;
  color: #fff;
}

.products .product-hover-style-standard-info-transparent:hover {
  border: none;
  box-shadow: none;
}

.products .product-hover-style-standard-info-transparent:hover .product-actions {
  right: 15px;
  opacity: 1;
  visibility: visible;
}

.products .product-hover-style-standard-quick-shop {
  border: none;
  box-shadow: none;
}

.products .product-hover-style-standard-quick-shop .onsale {
  right: auto;
  left: 0;
}

.products .product-hover-style-standard-quick-shop .product-actions {
  position: absolute;
  bottom: auto;
  left: auto;
  top: 15px;
  right: -5px;
  width: auto;
  opacity: 0;
  visibility: hidden;
}

.products .product-hover-style-standard-quick-shop .product-actions .product-actions-inner {
  background: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.products .product-hover-style-standard-quick-shop .product-actions .product-actions-inner > .product-action {
  position: relative;
}

.products .product-hover-style-standard-quick-shop .product-actions .product-actions-inner > .product-action a {
  width: 55px;
  height: 50px;
  line-height: 40px;
  margin: 0 !important;
  background: 0 0;
  color: #323232;
  border-radius: 0;
  box-shadow: none;
}

.products .product-hover-style-standard-quick-shop .product-actions .product-actions-inner > .product-action a:hover {
  color: #04d39f;
}

.products .product-hover-style-standard-quick-shop .product-actions .product-actions-inner > .product-action:after {
  content: "";
  width: 25px;
  height: 1px;
  background: #e5e5e5;
  position: absolute;
  left: 15px;
  bottom: 0;
}

.products .product-hover-style-standard-quick-shop .product-action-add-to-cart {
  display: block;
  margin-bottom: 10px;
  margin-top: 5px;
}

.products .product-hover-style-standard-quick-shop .product-action-add-to-cart a {
  margin-top: 0;
  position: relative;
  background: #04d39f;
  border: none;
  color: #fff;
  line-height: 38px;
  padding: 0 18px;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
}

.products .product-hover-style-standard-quick-shop .product-action-add-to-cart a:hover {
  background: #323232;
}

.products .product-hover-style-standard-quick-shop:hover .product-actions {
  right: 15px;
  opacity: 1;
  visibility: visible;
}

.products .product-hover-style-minimal {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-minimal .stock {
  bottom: auto;
  top: 15px;
}

.products .product-hover-style-minimal .product-action-quick-view {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  padding: 7px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .25s ease-out 0s;
  -moz-transition: all .25s ease-out 0s;
  transition: all .25s ease-out 0s;
}

.products .product-hover-style-minimal .product-action-quick-view .open-quick-view {
  min-width: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 0;
  padding: 5px 0;
  background: #fff;
  color: #969696;
}

.products .product-hover-style-minimal .product-action-quick-view .open-quick-view:before {
  content: "\f06e";
  position: relative;
  font-family: FontAwesome;
  font-size: 14px;
  font-weight: 400;
  padding-right: 8px;
}

.products .product-hover-style-minimal .product-info {
  padding: 0;
  padding-top: 10px;
  text-align: left;
  position: relative;
}

.products .product-hover-style-minimal .product-info .ciyashop-product-category {
  display: none;
}

.products .product-hover-style-minimal .product-info .product-name {
  padding-top: 5px;
}

.products .product-hover-style-minimal .product-info .product-actions {
  position: relative;
  bottom: auto;
  width: auto;
  left: auto;
  float: right;
  line-height: 20px;
}

.products .product-hover-style-minimal .product-info .product-actions .product-actions-inner > .product-action {
  float: left;
}

.products .product-hover-style-minimal .product-info .product-actions .product-actions-inner > .product-action a {
  margin: 0 !important;
  background: 0 0;
  color: #323232;
  box-shadow: none;
  width: 35px;
  height: 30px;
  line-height: 20px;
  vertical-align: top;
}

.products .product-hover-style-minimal .product-info .product-actions .product-actions-inner > .product-action a:hover {
  color: #04d39f;
}

.products .product-hover-style-minimal .product-info .price {
  line-height: 28px;
  text-align: left;
  visibility: visible;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.products .product-hover-style-minimal .product-info .price + .product-action-add-to-cart {
  margin-top: -27px;
}

.products .product-hover-style-minimal .product-info .price + .product-action-add-to-cart a {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
}

.products .product-hover-style-minimal .product-info .product-action-add-to-cart {
  line-height: 20px;
  height: 25px;
  margin-top: 0;
  overflow: hidden;
}

.products .product-hover-style-minimal .product-info .product-action-add-to-cart a {
  margin-top: 0;
  background: 0 0;
  color: #04d39f;
  padding: 0;
  line-height: 20px;
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all .25s ease-out 0s;
  -moz-transition: all .25s ease-out 0s;
  transition: all .25s ease-out 0s;
}

.products .product-hover-style-minimal:hover {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-minimal:hover .product-action-quick-view {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.products .product-hover-style-minimal:hover .product-action-quick-view .open-quick-view {
  min-width: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 0;
  padding: 5px 0;
  background: #fff;
  color: #969696;
}

.products .product-hover-style-minimal:hover .product-info .price {
  opacity: 0;
  visibility: hidden;
}

.products .product-hover-style-minimal:hover .product-info .product-action-add-to-cart a {
  transform: translateY(0);
}

.products .product-hover-style-minimal-hover-cart {
  border: none;
  box-shadow: none;
  background: 0 0;
  margin-bottom: 60px;
}

.products .product-hover-style-minimal-hover-cart .product-action-add-to-cart {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.products .product-hover-style-minimal-hover-cart .product-action-add-to-cart a {
  font-size: 0;
  color: #fff;
  background: 0 0;
  padding: 0;
  position: relative;
  top: 47%;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

.products .product-hover-style-minimal-hover-cart .product-action-add-to-cart a:before {
  content: "\f139";
  font-family: pgsicon-ecommerce;
  font-size: 42px;
}

.products .product-hover-style-minimal-hover-cart .product-name {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px;
  width: 100%;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  margin: 0;
}

.products .product-hover-style-minimal-hover-cart .product-name a {
  background: #fff;
  padding: 10px 10px;
  text-align: center;
  font-size: 13px;
  color: #323232;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
  display: block;
}

.products .product-hover-style-minimal-hover-cart .product-name a:hover {
  color: #04d39f;
}

.products .product-hover-style-minimal-hover-cart .product-info {
  position: relative;
  padding: 0;
  padding-top: 10px;
  padding-right: 110px;
}

.products .product-hover-style-minimal-hover-cart .product-info .price {
  line-height: 22px;
  text-align: left;
  padding-top: 5px;
  float: left;
}

.products .product-hover-style-minimal-hover-cart .open-quick-view {
  min-width: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
}

.products .product-hover-style-minimal-hover-cart .product-actions {
  bottom: auto;
  width: auto;
  left: auto;
  right: 0;
  line-height: 20px;
  overflow: hidden;
}

.products .product-hover-style-minimal-hover-cart .product-actions .product-actions-inner {
  transform: translateY(-90%);
  display: inline-block;
  position: relative;
  top: 0;
  width: 100%;
  vertical-align: top;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.products .product-hover-style-minimal-hover-cart .product-actions .product-actions-inner > .product-action {
  float: left;
}

.products .product-hover-style-minimal-hover-cart .product-actions .product-actions-inner > .product-action a {
  margin: 0 !important;
  background: 0 0;
  color: #323232;
  box-shadow: none;
  width: 35px;
  height: 30px;
  line-height: 20px;
  vertical-align: top;
}

.products .product-hover-style-minimal-hover-cart .product-actions .product-actions-inner > .product-action a:hover {
  color: #04d39f;
}

.products .product-hover-style-minimal-hover-cart .ciyashop-product-category {
  display: none;
}

.products .product-hover-style-minimal-hover-cart:hover {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-minimal-hover-cart:hover .product-name {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

.products .product-hover-style-minimal-hover-cart:hover .product-action-add-to-cart {
  opacity: 1;
  visibility: visible;
}

.products .product-hover-style-minimal-hover-cart:hover .product-action-add-to-cart a {
  top: 50%;
}

.products .product-hover-style-minimal-hover-cart:hover .product-actions {
  opacity: 1;
}

.products .product-hover-style-minimal-hover-cart:hover .product-actions .product-actions-inner {
  transform: translateY(0);
}

.products .product-hover-style-hover-summary {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-hover-summary .content-hover-block {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: 0;
  z-index: 8;
  visibility: hidden;
  opacity: 0;
  background-color: #fff;
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.products .product-hover-style-hover-summary .product-thumbnail {
  z-index: 8;
}

.products .product-hover-style-hover-summary .product-action-wishlist {
  position: absolute;
  top: 18px;
  left: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.products .product-hover-style-hover-summary .product-action-wishlist a {
  width: 45px;
  height: 45px;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: center;
  font-size: 0;
  line-height: 32px;
  color: #323232;
}

.products .product-hover-style-hover-summary .product-action-wishlist a:before {
  content: "\f08a";
  position: relative;
  left: 0;
  top: 6px;
  font-family: FontAwesome;
  font-size: 16px;
}

.products .product-hover-style-hover-summary .product-actions {
  bottom: 0;
  background: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #efefef;
  z-index: 11;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.products .product-hover-style-hover-summary .product-actions a {
  width: 50px;
  height: 40px;
  line-height: 30px;
  margin: 0 !important;
  background: 0 0;
  color: #323232;
  border-radius: 0;
  box-shadow: none;
}

.products .product-hover-style-hover-summary .product-action-add-to-cart {
  width: calc(100% - 102px);
  display: inline-block;
}

.products .product-hover-style-hover-summary .product-action-add-to-cart a {
  background: #04d39f;
  color: #fff;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 36px;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 0;
  box-shadow: none;
  margin: 0 !important;
}

.products .product-hover-style-hover-summary .product-action-add-to-cart a:before {
  content: '' !important;
}

.products .product-hover-style-hover-summary .product-action-add-to-cart a:hover {
  background: #323232;
}

.products .product-hover-style-hover-summary .product-action-compare {
  float: left;
}

.products .product-hover-style-hover-summary .product-action-quick-view {
  float: right;
}

.products .product-hover-style-hover-summary .product-action-quick-view .open-quick-view {
  min-width: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
}

.products .product-hover-style-hover-summary .product-info {
  text-align: center;
  padding: 0;
  padding-top: 15px;
  position: relative;
  top: 0;
  z-index: 8;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.products .product-hover-style-hover-summary .product-info .ciyashop-product-category,
.products .product-hover-style-hover-summary .product-info .ciyashop-product-category a {
  display: block;
  line-height: 18px;
}

.products .product-hover-style-hover-summary .product-info .product-name {
  padding-top: 3px;
}

.products .product-hover-style-hover-summary .product-info .product-name a {
  font-weight: 600;
}

.products .product-hover-style-hover-summary .product-info .ciyashop-product-description {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  -webkit-transition: all .15s ease-out 0s;
  -moz-transition: all .15s ease-out 0s;
  transition: all .15s ease-out 0s;
}

.products .product-hover-style-hover-summary .product-info .ciyashop-product-description.ciyashop-short-description .ciyashop-description-inner {
  max-height: 75px !important;
}

.products .product-hover-style-hover-summary .stock {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

.products .product-hover-style-hover-summary .stock.out-of-stock {
  width: calc(100% - 30px);
  line-height: 28px;
  font-size: 13px;
}

.products .product-hover-style-hover-summary:hover {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-hover-summary:hover .product-inner {
  position: relative;
  z-index: 9;
}

.products .product-hover-style-hover-summary:hover .content-hover-block {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out;
}

.products .product-hover-style-hover-summary:hover .product-action-wishlist {
  top: 10px;
  opacity: 1;
  visibility: visible;
}

.products .product-hover-style-hover-summary:hover .product-actions {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

.products .product-hover-style-hover-summary:hover .product-info {
  top: -5px;
}

.products .product-hover-style-hover-summary:hover .product-info .ciyashop-product-description {
  opacity: 1;
  visibility: visible;
  color: #969696;
}

.products .product-hover-style-hover-summary:hover .product-info .ciyashop-product-description .ciyashop-description-inner {
  line-height: 24px;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
  max-height: inherit;
  overflow: hidden;
}

.products .product-hover-style-hover-summary:hover .product-info .ciyashop-product-description .cs-more-btn {
  display: block;
  color: #ccc;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 22px;
  position: relative;
  overflow: hidden;
}

.products .product-hover-style-hover-summary:hover .product-info .ciyashop-product-description .cs-more-btn span {
  vertical-align: top;
  position: relative;
  padding: 0 15px;
}

.products .product-hover-style-hover-summary:hover .product-info .ciyashop-product-description .cs-more-btn span:before,
.products .product-hover-style-hover-summary:hover .product-info .ciyashop-product-description .cs-more-btn span:after {
  content: "";
  background: #ddd;
  height: 1px;
  width: 300px;
  position: absolute;
  top: 10px;
  left: 100%;
}

.products .product-hover-style-hover-summary:hover .product-info .ciyashop-product-description .cs-more-btn span:after {
  left: auto;
  right: 100%;
}

.products .product-hover-style-info-bottom-bar {
  box-shadow: none;
  border: 1px solid #eee;
}

.products .product-hover-style-info-bottom-bar .open-quick-view {
  background: #fff !important;
  color: #323232;
  font-size: 13px;
  width: 135px;
  height: 42px;
  opacity: 0;
  line-height: 41px;
  padding: 0;
  top: 60%;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transform: translate(-50%, -70%);
  -moz-transform: translate(-50%, -70%);
  transform: translate(-50%, -70%);
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.products .product-hover-style-info-bottom-bar .open-quick-view:hover {
  color: #04d39f;
}

.products .product-hover-style-info-bottom-bar .open-quick-view:before {
  content: "\f06e";
  position: relative;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  padding-right: 4px;
}

.products .product-hover-style-info-bottom-bar .product-info {
  z-index: 9;
  background: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  top: 0;
  min-height: 100px;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.products .product-hover-style-info-bottom-bar .product-info .ciyashop-product-category {
  display: none;
}

.products .product-hover-style-info-bottom-bar .product-info .product-name {
  padding-top: 0;
}

.products .product-hover-style-info-bottom-bar .product-actions {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  bottom: 10px;
  opacity: 0;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.products .product-hover-style-info-bottom-bar .product-actions .product-action-add-to-cart {
  width: calc(100% - 90px);
  background: #fff;
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  display: inline-flex;
}

.products .product-hover-style-info-bottom-bar .product-actions .product-action-add-to-cart a {
  font-size: 13px;
  font-weight: 400;
  width: 100%;
  background: #04d39f;
  color: #fff;
  line-height: 40px;
  text-transform: uppercase;
}

.products .product-hover-style-info-bottom-bar .product-actions .product-action-add-to-cart a:before {
  content: "\f1bf";
  font-family: pgsicon-ecommerce;
  font-size: 18px;
  top: 0;
  padding-right: 10px;
  position: relative;
  left: 0;
}

.products .product-hover-style-info-bottom-bar .product-actions a {
  margin: 0 !important;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  color: #323232;
}

.products .product-hover-style-info-bottom-bar .product-actions a:hover {
  color: #fff;
  background: #04d39f;
}

.products .product-hover-style-info-bottom-bar .product-actions .product-action-wishlist {
  float: left;
}

.products .product-hover-style-info-bottom-bar .product-actions .product-action-compare {
  float: right;
}

.products .product-hover-style-info-bottom-bar .stock {
  left: 15px;
  top: 15px;
  bottom: auto;
}

.products .product-hover-style-info-bottom-bar:hover {
  -webkit-box-shadow: 0 3px 22px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 3px 22px rgba(0, 0, 0, 0.07);
  box-shadow: 0 3px 22px rgba(0, 0, 0, 0.07);
}

.products .product-hover-style-info-bottom-bar:hover .product-info {
  top: -40px;
}

.products .product-hover-style-info-bottom-bar:hover .open-quick-view {
  opacity: 1;
  top: 50%;
}

.products .product-hover-style-info-bottom-bar:hover .product-actions {
  bottom: -1px;
  opacity: 1;
}

.products .product-hover-style-info-bottom {
  box-shadow: none;
  border: 1px solid #eee;
  padding-bottom: 65px;
  position: relative;
}

.products .product-hover-style-info-bottom .open-quick-view {
  background: #fff !important;
  color: #323232;
  font-size: 13px;
  width: 135px;
  height: 42px;
  opacity: 0;
  line-height: 41px;
  padding: 0;
  top: 60%;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transform: translate(-50%, -70%);
  -moz-transform: translate(-50%, -70%);
  transform: translate(-50%, -70%);
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.products .product-hover-style-info-bottom .open-quick-view:hover {
  color: #04d39f;
}

.products .product-hover-style-info-bottom .open-quick-view:before {
  content: "\f06e";
  position: relative;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  padding-right: 4px;
}

.products .product-hover-style-info-bottom .product-info {
  padding: 20px 20px;
  padding-bottom: 0;
  position: relative;
}

.products .product-hover-style-info-bottom .product-info .ciyashop-product-category {
  display: none;
}

.products .product-hover-style-info-bottom .product-info .product-name {
  padding-top: 0;
}

.products .product-hover-style-info-bottom .product-actions {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  margin-top: 0;
}

.products .product-hover-style-info-bottom .product-actions .product-action {
  display: inline-block;
  vertical-align: top;
}

.products .product-hover-style-info-bottom .product-actions .product-action-add-to-cart {
  width: calc(100% - 115px);
}

.products .product-hover-style-info-bottom .product-actions .product-action-add-to-cart a {
  font-size: 13px;
  font-weight: 400;
  width: 100%;
  background: #04d39f;
  color: #fff;
  line-height: 36px;
  text-transform: uppercase;
}

.products .product-hover-style-info-bottom .product-actions .product-action-add-to-cart a:hover {
  color: #fff;
}

.products .product-hover-style-info-bottom .product-actions .product-action-add-to-cart a:before {
  content: "\f1bf";
  font-family: pgsicon-ecommerce;
  font-size: 18px;
  top: 0;
  padding-right: 10px;
  position: relative;
  left: 0;
}

.products .product-hover-style-info-bottom .product-actions a {
  width: 55px;
  height: 40px;
  margin: 0 !important;
  border-radius: 0;
  box-shadow: none;
  background: 0 0;
  color: #323232;
}

.products .product-hover-style-info-bottom .product-actions a:hover {
  color: #04d39f;
}

.products .product-hover-style-info-bottom .product-actions .product-action-wishlist {
  float: left;
}

.products .product-hover-style-info-bottom .product-actions .product-action-compare {
  float: right;
}

.products .product-hover-style-info-bottom .stock {
  left: 15px;
  top: 15px;
  bottom: auto;
}

.products .product-hover-style-info-bottom:hover {
  -webkit-box-shadow: 0 3px 22px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 3px 22px rgba(0, 0, 0, 0.07);
  box-shadow: 0 3px 22px rgba(0, 0, 0, 0.07);
}

.products .product-hover-style-info-bottom:hover .open-quick-view {
  opacity: 1;
  top: 50%;
}

.products .product-hover-style-image-bottom-bar {
  box-shadow: none;
  border: 0;
}

.products .product-hover-style-image-bottom-bar .open-quick-view {
  background: #fff !important;
  color: #323232;
  font-size: 13px;
  width: 135px;
  height: 42px;
  opacity: 0;
  line-height: 41px;
  padding: 0;
  top: 60%;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transform: translate(-50%, -70%);
  -moz-transform: translate(-50%, -70%);
  transform: translate(-50%, -70%);
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.products .product-hover-style-image-bottom-bar .open-quick-view:hover {
  color: #04d39f;
}

.products .product-hover-style-image-bottom-bar .open-quick-view:before {
  content: "\f06e";
  position: relative;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  padding-right: 4px;
}

.products .product-hover-style-image-bottom-bar .product-info {
  z-index: 9;
  background: #fff;
  padding: 0;
  padding-top: 15px;
  position: relative;
  top: 0;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.products .product-hover-style-image-bottom-bar .product-info .ciyashop-product-category {
  display: none;
}

.products .product-hover-style-image-bottom-bar .product-info .product-name {
  padding-top: 0;
}

.products .product-hover-style-image-bottom-bar .product-actions {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  bottom: -46px;
  opacity: 0;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.products .product-hover-style-image-bottom-bar .product-actions .product-action-add-to-cart {
  width: calc(100% - 90px);
  background: #fff;
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  display: inline-flex;
}

.products .product-hover-style-image-bottom-bar .product-actions .product-action-add-to-cart a {
  font-size: 13px;
  font-weight: 400;
  width: 100%;
  background: #04d39f;
  color: #fff;
  line-height: 40px;
  text-transform: uppercase;
}

.products .product-hover-style-image-bottom-bar .product-actions .product-action-add-to-cart a:before {
  content: "\f1bf";
  font-family: pgsicon-ecommerce;
  font-size: 18px;
  top: 0;
  padding-right: 10px;
  position: relative;
  left: 0;
}

.products .product-hover-style-image-bottom-bar .product-actions a {
  margin: 0 !important;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  color: #323232;
}

.products .product-hover-style-image-bottom-bar .product-actions a:hover {
  color: #fff;
  background: #04d39f;
}

.products .product-hover-style-image-bottom-bar .product-actions .product-action-wishlist {
  float: left;
}

.products .product-hover-style-image-bottom-bar .product-actions .product-action-compare {
  float: right;
}

.products .product-hover-style-image-bottom-bar .stock {
  left: 15px;
  top: 15px;
  bottom: auto;
}

.products .product-hover-style-image-bottom-bar:hover {
  border: 0;
  box-shadow: none;
}

.products .product-hover-style-image-bottom-bar:hover .open-quick-view {
  opacity: 1;
  top: 50%;
}

.products .product-hover-style-image-bottom-bar:hover .product-actions {
  bottom: 0px;
  opacity: 1;
}

.products .product-hover-style-image-bottom-2 {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-image-bottom-2 .product-actions {
  bottom: -5px;
  opacity: 0;
}

.products .product-hover-style-image-bottom-2 .product-actions .product-actions-inner {
  background: #fff;
  display: inline-block;
  padding: 0 8px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  padding: 0 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.products .product-hover-style-image-bottom-2 .product-actions .product-action {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.products .product-hover-style-image-bottom-2 .product-actions .product-action:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #e5e5e5;
  width: 1px;
  height: 20px;
}

.products .product-hover-style-image-bottom-2 .product-actions .product-action:last-child:before {
  width: 0;
}

.products .product-hover-style-image-bottom-2 .product-actions a {
  width: 45px;
  height: 55px;
  line-height: 40px;
  margin: 0 !important;
  background: 0 0;
  box-shadow: none;
}

.products .product-hover-style-image-bottom-2 .product-actions a:hover {
  color: #fff;
}

.products .product-hover-style-image-bottom-2 .open-quick-view {
  min-width: auto;
  left: inherit;
  top: inherit;
  transform: inherit;
}

.products .product-hover-style-image-bottom-2 .stock {
  bottom: auto;
  top: 15px;
}

.products .product-hover-style-image-bottom-2 .product-info .price ins .amount {
  color: #04d39f;
}

.products .product-hover-style-image-bottom-2.product-hover-button-style-dark .product-actions .product-actions-inner {
  background: #323232;
}

.products .product-hover-style-image-bottom-2.product-hover-button-style-dark .product-actions .product-action:before {
  background: #545454;
}

.products .product-hover-style-image-bottom-2.product-hover-button-style-dark .product-actions .product-action.product-action-add-to-cart a:before {
  content: '' !important;
}

.products .product-hover-style-image-bottom-2.product-hover-button-style-dark .product-actions a {
  color: #a7a5a6;
}

.products .product-hover-style-image-bottom-2.product-hover-button-style-dark .product-actions a:hover {
  color: #fff;
}

.products .product-hover-style-image-bottom-2.product-hover-button-style-dark.product-hover-button-shape-round .product-actions .product-action.product-action-add-to-cart a:before {
  content: '\f1bf' !important;
  font-family: pgsicon-ecommerce;
  font-size: 18px;
}

.products .product-hover-style-image-bottom-2.product-hover-button-style-light .product-actions .product-actions-inner {
  border-radius: 2px;
}

.products .product-hover-style-image-bottom-2.product-hover-button-style-light .product-actions .product-action:before {
  background: #e5e5e5;
}

.products .product-hover-style-image-bottom-2.product-hover-button-style-light .product-actions a {
  color: #323232;
}

.products .product-hover-style-image-bottom-2.product-hover-button-style-light .product-actions a:hover {
  color: #04d39f;
}

.products .product-hover-style-image-bottom-2:hover {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-image-bottom-2:hover .product-actions {
  opacity: 1;
  bottom: 15px;
}

.products .product-hover-style-image-bottom {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-image-bottom .product-actions {
  bottom: -10px;
  opacity: 0;
  text-align: center;
}

.products .product-hover-style-image-bottom .product-actions .product-actions-inner {
  display: inline-block;
  vertical-align: top;
}

.products .product-hover-style-image-bottom .product-actions .product-actions-inner > .product-action {
  float: left;
}

.products .product-hover-style-image-bottom .open-quick-view {
  min-width: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
}

.products .product-hover-style-image-bottom:hover {
  border: none;
  box-shadow: none;
  background: 0 0;
}

.products .product-hover-style-image-bottom:hover .product-actions {
  opacity: 1;
  bottom: 15px;
}

.products .product-hover-style-image-bottom .stock {
  bottom: auto;
  top: 15px;
}

.products .product-hover-style-icons-rounded {
  border: 0;
  box-shadow: none;
}

.products .product-hover-style-icons-rounded .product-action-add-to-cart {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.products .product-hover-style-icons-rounded .product-action-add-to-cart a {
  width: 100%;
  margin: 0;
  border-radius: 0;
  padding: 2px 0;
  text-align: center;
  background: #04d39f;
  border: none;
  color: #fff;
  line-height: 38px;
  padding: 0 18px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
}

.products .product-hover-style-icons-rounded .product-action-add-to-cart a:hover {
  background: #323232;
}

.products .product-hover-style-icons-rounded .product-actions {
  position: absolute;
  top: 15px;
  bottom: auto;
  left: -5px;
  width: auto;
  opacity: 0;
  visibility: hidden;
}

.products .product-hover-style-icons-rounded .product-actions .product-actions-inner > .product-action {
  margin-bottom: 6px;
}

.products .product-hover-style-icons-rounded .product-actions a {
  margin: 0 !important;
  background: #fff;
  color: #323232;
  border-radius: 70px;
}

.products .product-hover-style-icons-rounded .product-actions a:hover {
  color: #04d39f;
}

.products .product-hover-style-icons-rounded .open-quick-view {
  min-width: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
}

.products .product-hover-style-icons-rounded .stock {
  left: 15px;
  top: 15px;
  bottom: auto;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
  opacity: 1;
}

.products .product-hover-style-icons-rounded .stock.out-of-stock {
  bottom: 15px;
  top: auto;
}

.products .product-hover-style-icons-rounded:hover {
  border: 0;
  box-shadow: none;
}

.products .product-hover-style-icons-rounded:hover .product-action-add-to-cart {
  bottom: 0;
}

.products .product-hover-style-icons-rounded:hover .product-actions {
  left: 15px;
  opacity: 1;
  visibility: visible;
}

.products.list li.product {
  width: 100%;
  margin-right: 0;
  padding: 0;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border: none;
  border-bottom: 1px solid #e8e8e8;
}

.products.list .product.product-hover-style-hover-summary:hover {
  border-bottom: 1px solid #e8e8e8;
}

.products.list li.product:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.products.list li.product:hover {
  box-shadow: none;
}

.products.list .product .product-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

.products.list .product-thumbnail {
  position: relative;
  -ms-flex: 0 0 280px;
  flex: 0 0 280px;
}

.products.list .product-thumbnail img {
  width: 100% !important;
  margin-right: 0 !important;
}

.products.list .product-info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: left;
  position: relative;
  top: 0;
  padding: 0px;
  margin-left: 30px;
}

.products.list .product-info .gridlist-buttonwrap {
  display: none;
}

.products.list .product-hover-style-image-center .product-info .product-actions,
.products.list .product-hover-style-image-left .product-info .product-actions,
.products.list .product-hover-style-image-bottom .product-info .product-actions,
.products.list .product .product-info .product-actions {
  display: block;
  opacity: 1;
  position: relative;
  left: 0;
  top: 0;
  transform: inherit;
  text-align: left;
  width: inherit;
  visibility: visible;
}

.products.list li.product-hover-style-info-bottom .product-name,
.products.list li.product-hover-style-info-bottom-bar .product-name {
  padding: 0.5em 0;
}

.products.list li.product-hover-style-info-bottom .product-info .product-actions a {
  width: 45px;
}

.products.list .product-hover-style-info-bottom .product-thumbnail .product-actions,
.products.list .product-hover-style-info-bottom-bar .product-thumbnail .product-actions {
  display: none;
}

.products.list .product-hover-style-icon-top-left .product-actions-inner {
  box-shadow: none;
}

.products.list li.product.product-hover-style-icon-top-left .product-info .product-actions .product-action {
  float: left;
}

.products.list li.product.product-hover-style-icon-top-left .product-info .product-actions a {
  line-height: 34px;
}

.products.list .star-rating-wrapper {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 7px;
}

.products.list .star-rating-wrapper:after {
  width: 80px;
  left: 0;
  top: 3px;
  z-index: -1;
  background: #ffffff;
  margin-left: 0;
}

.products.list .star-rating-wrapper .star-rating {
  margin: 0;
}

.products.list li.product .ciyashop-product-category {
  padding-bottom: 7px;
}

.products.list li.product .product-name {
  padding: 0;
  padding-bottom: 5px;
}

.products.list li.product .price {
  float: none;
  width: 100%;
  text-align: left;
  margin: 0;
}

.products.list li.product.product-hover-style-icons-rounded .price,
.products.list li.product-hover-style-icons-bottom-right .price,
.products.list li.product-hover-style-image-bottom .price {
  margin-bottom: 5px;
}

.products.list li.product.product-hover-style-image-left .woocommerce-product-details__short-description,
.products.list li.product.product-hover-style-button-standard .woocommerce-product-details__short-description,
.products.list li.product.product-hover-style-icons-left .woocommerce-product-details__short-description,
.products.list li.product-hover-style-icons-rounded .woocommerce-product-details__short-description,
.products.list li.product-hover-style-image-bottom .woocommerce-product-details__short-description {
  margin-top: 10px;
  margin-bottom: 0;
}

.products.list li.product .price del .amount {
  font-size: 18px;
  margin-right: 5px;
  color: #969696;
}

.products.list li.product .price .amount {
  font-size: 18px;
  color: #04d39f;
}

.products.list li.product img {
  margin-bottom: 0;
}

ul.products .woocommerce-product-details__short-description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
  max-height: inherit;
  overflow: hidden;
}

.products.list .woocommerce-product-details__short-description {
  margin-bottom: 0;
}

ul.products .woocommerce-product-details__short-description p {
  margin: 0;
}

.products.list li.product .woocommerce-product-details__short-description strong {
  display: inline-block;
}

.products.list .product-thumbnail .stock,
ul.products .product-inner .product-info .stock {
  display: none;
}

.products.list .product-info .stock {
  display: inline-block;
  position: absolute;
  left: -120px;
  bottom: auto;
  top: 28px;
  margin-top: -5px;
  margin-bottom: 15px;
  transform: inherit;
}

.products.list .product-hover-style-standard-quick-shop .product-info .ciyashop-product-variations-wrapper {
  text-align: left;
}

.products.list .product-hover-style-standard-quick-shop .product-info .stock {
  position: relative;
  left: 0;
  margin: 0;
  top: 0;
  min-width: inherit;
  padding: 3px 15px;
}

.products.list li.product .product-info .product-actions a {
  background: none;
  color: #04d39f;
  border: 1px solid #eeeeee;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  vertical-align: top;
  line-height: 30px;
  margin: 0 !important;
  margin-right: 5px !important;
  box-shadow: none;
}

.products.list li.product .product-info .product-actions .product-action-add-to-cart a {
  background: #04d39f;
  color: #ffffff;
  width: auto;
  font-size: 14px;
  line-height: 45px;
  padding: 0 15px;
  border: none;
}

.products.list li.product .product-info .product-actions .product-action-add-to-cart a:hover {
  background: #323232;
}

.products.list li.product .product-info .product-actions .product-action {
  float: none;
}

.products.list li.product .product-info .product-actions,
.products.list li.product .product-info .product-actions .product-action-add-to-cart {
  width: auto;
  border: none;
}

.products.list li.product .product-info .product-actions .product-action-add-to-cart a:before {
  top: 0;
  padding-right: 7px;
}

.products.list .countdown {
  margin: 15px 0px !important;
}

/* Quick View List Style */
.products.list .product-hover-style-icon-top-left .open-quick-view {
  transform: inherit;
  left: 0;
}

.products.list .product-hover-style-default .open-quick-view {
  top: 0 !important;
  left: 0 !important;
  transform: inherit;
}

.ciyashop-pagination {
  text-align: center;
  justify-content: center;
}

.ciyashop-pagination ul {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border: 1px solid #d3ced2;
  border-right: 0;
  margin: 1px;
  border: none;
}

.ciyashop-pagination ul li {
  line-height: inherit;
  list-style: none;
  overflow: hidden;
  float: left;
  padding: 0;
  border: none;
  margin: 0 4px;
  display: inline-block;
}

.ciyashop-pagination ul li span,
.ciyashop-pagination ul li a {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1;
  min-width: 1em;
  display: block;
  font-size: 15px;
  color: #323232;
  font-weight: 600;
  border: 1px solid #ececec;
  background: #f5f5f5;
  padding: 13px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.ciyashop-pagination ul li span.current,
.ciyashop-pagination ul li a.current {
  background: #04d39f;
  border-color: #04d39f;
  color: #fff;
}

.ciyashop-pagination ul li a:hover {
  border-color: #04d39f;
  background: #04d39f;
  color: #fff;
}

.inner-intro.inner-intro-alt {
  height: auto !important;
  background: #fbfbfb;
  padding: 10px 0;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
}

.inner-intro.inner-intro-alt .page-breadcrumb {
  margin-top: 0;
}

.inner-intro.inner-intro-alt .page-breadcrumb li {
  color: #323232;
}

.product-hover-button-style-dark .product-actions .product-action.product-action-add-to-cart a:before {
  content: '' !important;
}

.wishlist-not-found {
  text-align: center;
}

.wishlist-not-found .btn.btn-solid {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.wishlist-not-found .btn.btn-solid:hover {
  background: #04d39f;
  color: #ffffff;
}

.wishlist-no-found img {
  height: 80px;
}

.ciyashop-product-gallery {
  position: relative;
}

.ciyashop-product-gallery .ciyashop-product-gallery_buttons_wrapper {
  position: absolute;
  right: 0;
  bottom: 7px;
  background: #fff;
  padding: 5px;
  -webkit-border-radius: 5px 0 0;
  -moz-border-radius: 5px 0 0;
  border-radius: 5px 0 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ciyashop-product-gallery .ciyashop-product-gallery_buttons_wrapper .ciyashop-product-gallery_button {
  display: table-cell;
  padding: 3px;
  vertical-align: top;
}

.ciyashop-product-gallery .ciyashop-product-gallery_buttons_wrapper .ciyashop-product-gallery_button a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  color: #323232;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  vertical-align: top;
}

.ciyashop-product-gallery .ciyashop-product-gallery_buttons_wrapper .ciyashop-product-gallery_button a:hover {
  background: #323232;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.ciyashop-gallery-style-default .ciyashop-product-thumbnails {
  margin-top: 10px;
}

.ciyashop-gallery-style-default .ciyashop-product-thumbnails .slick-slide {
  margin: 0;
  margin-right: 5px;
  cursor: pointer;
}

.slick-slider .slide-inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.ciyashop-gallery-style-default .ciyashop-product-thumbnails .slick-slider .slick-arrow {
  background: #fff;
  width: 25px;
  height: 25px;
  z-index: 10;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  opacity: 0;
  font-size: 0;
  line-height: 35px;
  border-radius: 3px;
}

.ciyashop-gallery-style-default .ciyashop-product-thumbnails .slick-slider .slick-arrow:before {
  font-family: FontAwesome;
  color: #04d39f;
  font-size: 12px;
  opacity: 1;
  line-height: 22px;
}

.ciyashop-gallery-style-default .ciyashop-product-thumbnails .slick-slider .slick-arrow.slick-prev:before {
  content: "\f053";
}

.ciyashop-gallery-style-default .ciyashop-product-thumbnails .slick-slider .slick-arrow.slick-next:before {
  content: "\f054";
}

.ciyashop-gallery-style-default .ciyashop-product-thumbnails .slick-slider:hover .slick-prev {
  left: 5px;
  opacity: 1;
  background: #fff;
}

.ciyashop-gallery-style-default .ciyashop-product-thumbnails .slick-slider:hover .slick-next {
  right: 5px;
  opacity: 1;
  background: #fff;
}

.single-product .product_title {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  word-wrap: break-word;
}

.single-product .edit-icon {
  position: relative;
}

.single-product .edit-icon:before {
  position: absolute;
  left: 0;
  top: 0;
}

.single-product .product-rating {
  margin-bottom: 20px;
}

.single-product .product-rating .star-rating {
  float: left;
  line-height: 20px;
  margin-right: 10px;
}

.single-product .product-rating .star-rating .fa-star {
  color: #ffbe00;
}

.single-product .product-rating .review-link {
  color: #969696;
  font-size: 13px;
  line-height: 18px;
}

.single-product .price {
  font-size: 26px;
  line-height: 32px;
  color: #04d39f;
  font-weight: 600;
}

.single-product .product-details__short-description {
  padding-bottom: 20px;
  max-height: inherit;
}

.single-product .product-size-guide {
  margin-bottom: 20px;
}

.single-product .product-size-guide .open-product-size-guide {
  background: #fff;
  border: 1px solid #e8e8e8;
  color: #969696;
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 15px;
  padding-left: 12px;
  display: inline-block;
  position: relative;
  border-radius: 3px;
}

.single-product .product-size-guide .open-product-size-guide:before {
  content: "";
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAQBAMAAAAPAfkrAAAAJFBMVEUAAACcnJycnJycnJycnJycnJycnJycnJycnJycnJycnJycnJxz++mLAAAAC3RSTlMA3SJmVRHMu6qZMxU58oMAAABCSURBVAjXY9iNABsYgJAbivBzGLgZgGADEKNz4ACTsxBIsW1UAHNYBEGCnA4QGUUQRz0AwWFuYkBwoncb4DMaxQsAH+Ipp3o5sP0AAAAASUVORK5CYII=);
  width: 23px;
  height: 16px;
  display: inline-block;
  position: relative;
  top: 3px;
  margin-right: 7px;
}

.single-product .product-size-guide .open-product-size-guide:hover {
  background: #fbfbfb;
}

.single-product .cart {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.single-product .cart .quantity {
  position: relative;
  padding: 0 24px;
  display: inline-block;
  float: left;
  margin: 0 10px 0 0;
}

.single-product .cart .quantity .qty {
  text-align: center;
}

.single-product .cart .quantity input {
  width: 50px !important;
  height: 45px;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0 10px;
  margin: 0;
  font-size: 16px;
  color: #969696;
  border: 1px solid #e6e6e6;
  height: 45px;
  background: #f8f8f8;
}

.single-product .cart .quantity .quantity-button {
  position: relative;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e6e6e6;
  width: 20px;
  text-align: center;
  color: #969696;
  font-size: 20px;
  font-family: "Trebuchet MS", Helvetica, sans-serif !important;
  line-height: 45px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  line-height: 45px;
  background: #fff;
}

.single-product .cart .quantity .quantity-button.quantity-up {
  position: absolute;
  width: 26px;
  height: 100%;
  right: 0;
  top: 0;
}

.single-product .cart .quantity .quantity-button.quantity-down {
  position: absolute;
  width: 26px;
  height: 100%;
  left: 0;
  top: 0;
}

.single-product .cart .button {
  vertical-align: middle;
  float: left;
  padding: 9px 20px;
  position: relative;
  border: none;
  font-size: 14px;
  background: #04d39f;
  border: none;
  color: #fff;
  line-height: 26px;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
}

.single-product .cart .button:before {
  content: "\f217";
  font-family: FontAwesome;
  font-size: 16px;
  padding-right: 15px;
}

.single-product .cart .button:hover {
  background: #323232;
}

.single-product .product-summary-actions {
  margin-bottom: 0;
  border-bottom: 1px solid #d3ced2;
  padding-bottom: 15px;
  display: inline-block;
  width: 100%;
}

.single-product .product-summary-actions .add-to-wishlist {
  float: left;
  margin: 0;
  margin-right: 20px;
  position: relative;
}

.single-product .product-summary-actions .add-to-wishlist a {
  color: #323232;
  line-height: 30px;
  font-size: 15px;
}

.single-product .product-summary-actions .add-to-wishlist a:before {
  content: "\f08a";
  position: relative;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  font-size: 16px;
  padding-right: 7px;
  color: #04d39f;
}

.single-product .product-summary-actions .add-to-wishlist-fill a:before {
  content: "\f004";
  position: relative;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  font-size: 16px;
  padding-right: 7px;
  color: #04d39f;
}

.single-product .product-summary-actions .add-to-wishlist a:hover {
  color: #04d39f;
}

.single-product .product-summary-actions .compare {
  background: 0 0;
  font-size: 15px;
  color: #323232;
  padding: 0;
  line-height: 30px;
  text-transform: capitalize;
  margin-right: 20px;
}

.single-product .product-summary-actions .compare:before {
  content: "\f066";
  position: relative;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  font-size: 16px;
  padding-right: 7px;
  color: #04d39f;
}

.single-product .product-summary-actions .compare:hover {
  color: #04d39f;
}

.single-product .product_meta {
  margin-bottom: 25px;
}

.single-product .product_meta > span {
  display: block;
  font-size: 15px;
  margin: 8px 0;
  color: #969696;
}

.single-product .product_meta > span label {
  padding-right: 5px;
  margin-bottom: 0;
  color: #323232;
  font-weight: 600;
}

.single-product .product_meta > span a {
  color: #969696;
}

.single-product .product_meta > span a:hover {
  color: #04d39f;
}

.single-product .social-profiles {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #d3ced2;
  border-bottom: 1px solid #d3ced2;
  position: relative;
  padding-left: 60px;
}

.single-product .social-profiles .share-label {
  float: left;
  margin-top: 3px;
  color: #323232;
  font-weight: 600;
  font-size: 15px;
  position: absolute;
  left: 0;
  top: 10px;
}

.single-product .social-profiles ul {
  padding: 0;
  margin: 0;
}

.single-product .social-profiles ul li {
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 0;
  float: left;
}

.single-product .social-profiles ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 0;
  text-align: center;
  line-height: 30px;
  background: 0 0;
  border-radius: 3px;
  color: #04d39f;
}

.single-product .social-profiles ul li a:hover {
  background: #04d39f;
  color: #fff;
}

.single-product .sidebar > .widget {
  border: 1px solid #ececec;
  padding: 18px;
  margin-bottom: 20px;
}

.single-product .sidebar .pgs_brand_filters .block-content {
  text-align: center;
}

.single-product .sidebar .pgs_brand_filters .block-content h5 {
  margin-bottom: 20px;
}

.single-product .sidebar .pgs_brand_filters .brand-products {
  padding: 6px 20px;
  background: #323232;
  color: #fff;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}

.single-product .sidebar .pgs_brand_filters .brand-products:hover {
  background: #04d39f;
}

.single-product .sidebar .pgs_qr_code {
  position: relative;
  border: 2px dashed #ddd;
}

.single-product .sidebar .pgs_qr_code .pgs-qrcode-style-popup {
  padding: 15px 15px 0 15px;
}

.single-product .sidebar .pgs_qr_code .pgs-qrcode-style-popup .pgs-qrcode-popup-link {
  text-decoration: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEIAAABRBAMAAACUOG3uAAAAG1BMVEUAAAABAQEHBwcJCQgTExITExIGBgYDAwMQEA+GNdz4AAAACXRSTlMALiAWCgUlKhHDmbOdAAACq0lEQVRIx92Vz3OaQBTHmQQcrw8d8Yg0Oj2CRPRIUm087iTYegydiD2WGdQe6TTh7+7C7rK/dHJu3kHE+fDe933fPjH+u/gSyvGmAk+gxCBWiADUKGTAysE5iZGDLRMm2Esp1rmNFKLXXB+zLPObb+ngHIGMBwBwCWEbOoHwFfeJLhHdDMcPz/Mm9RWluo4rEKM8Rzgej5owNMIWbvM6x7uEDEwVQtMxh3eIayDEBkf9gTTijhIVNiLBbrxoSgP4XBMoCMP91l5M+5rSkZM0OSLzrdoe1gkhkESsCNEZVtsife2boFX5RIjrF0xEy5qQp/9Alc5jK9oWxlbX0aVEcMwGWyfb64RREQJvxCLBJ2Smz8WaN0SCDyiqb3XXNyapcjphfVG50Yin/EiUrpIIGamvzdZKqdKoe1ttpovQV4krYESnV20gDtyaGEiDsydtDjRdjPxaB/iipaVJdLwuJ1gHuA3RFwkk9IKiCcnhIIGYma0fFqLnFGAsjGXgqSd5home1gtv/x5OgOMWsR9GCvEVaNy0s/X2ImHmjOAdJ9K+fAc4emHo7bmU61Sqcgc/UZMrAohZuxIRQNwKdOmGqUTZ1num3dqhXOX3ivlwaK7fYCftfgcrvaHrWlDi2VS7dUqSo6DP9NaaYztaha1+Lrv+NyAPd2qwDtV1hNvZib0YjzJh1Vl9MnWXvVyU6QdAbv7wwVjyvyXAmLvLCRDCRmRNHCQQJk+Rw44aYxsCIW1YTG0YnidMrJOaXVwihmyErkTwiMbMyfICYbFcAyQQ9mrTBtsSSX4OQvhMxuHSG/lAm2YoaV1MMiY/MRlseHOwQxoxLcL9Ug2kRagbupNtJ45UhA+Sa+eW81WTikqd8APFecEuvvK/hJrAdEp5XdFkpluyRFR67xsfMP4BgxK73lGvlO0AAAAASUVORK5CYII=);
  background-position: right center;
  background-size: auto;
  display: block;
  background-repeat: no-repeat;
  height: auto;
  min-height: 72px;
}

.single-product .sidebar .pgs_qr_code .pgs-qrcode-style-popup .pgs-qrcode-popup-link .pgs-qrcode-popup-link-inner {
  width: calc(100% - 75px);
  text-align: left;
}

.single-product .sidebar .pgs_qr_code .pgs-qrcode-style-popup .pgs-qrcode-popup-link .pgs-qrcode-label {
  font-size: 16px;
  font-weight: 600;
}

.single-product .sidebar .pgs_qr_code .pgs-qrcode-style-popup .pgs-qrcode-popup-link .pgs-qrcode-desc {
  color: #969696;
  font-size: 13px;
  line-height: 19px;
}

.single-product .sidebar .pgs_qr_code .pgs-qrcode-style-popup .pgs-qrcode-popup-link .pgs-qrcode-desc p {
  margin-bottom: 0;
}

.single-product .sidebar .widget_media_image {
  background: 0 0;
  border: none;
  padding: 0;
}

.product_list_widget {
  list-style: none outside;
  padding: 0;
  margin: 0;
}

.product_list_widget li {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.product_list_widget li a {
  line-height: 18px !important;
  font-weight: 500;
  color: #323232 !important;
  font-size: 13px;
  display: block !important;
}

.product_list_widget li a:hover {
  color: #04d39f !important;
}

.product_list_widget li img {
  height: auto;
  box-shadow: none;
  float: left;
  margin-right: 15px;
  margin-left: 0;
  width: 60px;
}

.product_list_widget li .price_code {
  color: #04d39f;
  font-weight: 600;
  font-size: 14px;
  margin-right: 5px;
}

.request-box .form-control {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.05);
  vertical-align: top;
}

.request-box .form-control:focus {
  border-color: #04d39f;
}

.request-box .btn {
  display: block;
  width: 100%;
  background: #323232;
  box-shadow: none;
}

.request-box .btn:hover {
  background: #04d39f;
}

.widget_product_tag_cloud .tagcloud a {
  background: 0 0;
  color: #969696;
  margin-bottom: 8px;
  margin-right: 4px;
  display: inline-block;
  border: 1px solid #f2f2f2;
  line-height: 28px;
  padding: 0 12px;
  font-size: 12px !important;
  text-transform: uppercase;
  border-radius: 2px;
}

.widget_product_tag_cloud .tagcloud a:hover {
  color: #fff;
  border-color: #04d39f;
  background: #04d39f;
}

.ciyashop-sticky-btn {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
  width: 100%;
  background: #fff;
  padding: 25px 0;
  -webkit-box-shadow: 0 -3px 13px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 -3px 13px rgba(0, 0, 0, 0.1);
  box-shadow: 0 -3px 13px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .25s ease-out 0s;
  -moz-transition: all .25s ease-out 0s;
  transition: all .25s ease-out 0s;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
}

.ciyashop-sticky-btn.sticky {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-content {
  float: left;
  display: table;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-content .ciyashop-sticky-btn-thumbnail {
  display: table-cell;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-content .ciyashop-sticky-btn-thumbnail img {
  width: 45px;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-content .ciyashop-sticky-btn-info {
  display: table-cell;
  padding-left: 15px;
  vertical-align: middle;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-content .product-title {
  margin-bottom: 0;
  display: block;
  width: 400px;
  font-size: 14px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-content .star-rating {
  float: none;
  margin: 0;
  margin-top: 5px;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-content .star-rating .fa-star {
  color: #ffbe00;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-cart {
  float: right;
  display: table;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-cart .wishlist-compare-button {
  width: 75px;
  margin-top: 7px;
  margin-right: 10px;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-cart .wishlist-compare-button > div {
  display: inline-block;
  vertical-align: top;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-cart .wishlist-compare-button .product-action-wishlist a {
  display: inline-block;
  background: 0 0;
  font-size: 0;
  padding: 0;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-cart .wishlist-compare-button .product-action-wishlist a:before {
  content: "\f08a";
  position: relative;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  font-size: 16px;
  color: #323232;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-cart .wishlist-compare-button .product-action-compare a {
  display: inline-block;
  background: 0 0;
  font-size: 0;
  padding: 0;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-cart .wishlist-compare-button .product-action-compare a:before {
  content: "\f066";
  position: relative;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  font-size: 16px;
  color: #323232;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-cart .price {
  font-size: 18px;
  line-height: 26px;
  padding-right: 10px;
  display: table-cell;
  vertical-align: middle;
}

.ciyashop-sticky-btn .ciyashop-sticky-btn-cart .cart {
  margin: 0;
  padding: 0;
  display: table-cell;
  vertical-align: top;
}

.product-nav-btn {
  position: fixed;
  bottom: 125px;
  right: 35px;
  z-index: 9;
  box-shadow: none;
}

.product-nav-btn .product-nav-arrow {
  position: absolute;
  left: 14px;
  top: 18px;
  opacity: 0;
  color: #969696;
}

.product-nav-btn .product-nav-arrow:before {
  content: attr(data-title);
  color: #fff;
}

.product-nav-btn .product-nav-arrow i {
  display: none;
}

.product-nav-btn .product-nav-image {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background: #fff;
}

.product-nav-btn .product-nav-image img {
  opacity: 1;
  -webkit-transition: all .5s ease-out 0s;
  -moz-transition: all .5s ease-out 0s;
  transition: all .5s ease-out 0s;
}

.product-nav-btn .product-nav-content {
  position: absolute;
  top: 8px;
  width: 180px;
  text-align: right;
  opacity: 0;
  -webkit-transition: all .5s ease-out 0s;
  -moz-transition: all .5s ease-out 0s;
  transition: all .5s ease-out 0s;
  visibility: hidden;
}

.product-nav-btn .product-nav-content .product_nav_title {
  font-size: 14px;
  color: #323232;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 6px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.product-nav-btn .product-nav-content .product-nav-content-rating {
  display: none;
}

.product-nav-btn .product-nav-content .product-nav-content-price del {
  color: #323232;
}

.product-nav-btn .product-nav-content .product-nav-content-price ins {
  background: 0 0;
  color: #04d39f;
}

.product-nav-btn.product-nav-btn-next .product-nav-content {
  right: 95px;
}

.product-nav-btn:hover .product-nav-image {
  background: #323232;
}

.product-nav-btn:hover .product-nav-image img {
  opacity: 0;
}

.product-nav-btn:hover .product-nav-arrow {
  opacity: 1;
  background: 0 0 !important;
}

.product-nav-btn:hover .product-nav-content {
  right: 75px;
  opacity: 1;
  visibility: visible;
}

.product-content-bottom {
  margin-top: 40px;
}

.product-content-bottom .nav-tabs {
  list-style: none;
  padding: 0 0 0 1em;
  margin: 0 0 1.618em;
  position: relative;
}

.product-content-bottom .nav-tabs li {
  margin-right: 5px;
}

.product-content-bottom .nav-tabs li a {
  position: relative;
  cursor: pointer;
  border: 1px solid #d3ced2;
  padding: 0;
  border-radius: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: #323232;
  padding: 12px 22px;
}

.product-content-bottom .nav-tabs li a:before {
  content: "";
  width: 20%;
  height: 3px;
  background: #04d39f;
  top: -1px;
  left: 30%;
  box-shadow: none;
  border: none;
  border-radius: 0;
  -webkit-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
  opacity: 0;
  position: absolute;
  width: 5px;
  height: 5px;
}

.product-content-bottom .nav-tabs li a:hover {
  border: 1px solid #d3ced2;
}

.product-content-bottom .nav-tabs li a:hover:before {
  width: 100%;
  left: 0;
  opacity: 1;
  box-shadow: none;
  background: #04d39f;
}

.product-content-bottom .nav-tabs li a.active {
  background: #fff;
  z-index: 2;
  border-bottom-color: #fff;
  color: #04d39f;
}

.product-content-bottom .nav-tabs li a.active:before {
  width: 100%;
  left: 0;
  opacity: 1;
  box-shadow: none;
  background: #04d39f;
}

.product-content-bottom .tab-content {
  margin-bottom: 35px;
}

.product-content-bottom .tab-content .tab-pane h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 6px;
  margin-top: 20px;
}

.ciyashop_info_box_2-icon_position-left {
  padding: 30px;
}

.ciyashop_info_box_2-icon_position-left .ciyashop_info_box_2-icon {
  padding-right: 25px;
  font-size: 44px;
  line-height: 44px;
  color: #04d39f;
}

.products.related h2 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-wrapper {
  padding: 70px;
}

.contact-wrapper .form-group {
  width: 100%;
}

.contact-wrapper .btn.btn-default {
  width: auto;
  background: #04d39f;
  border-color: #04d39f;
  color: #ffffff;
}

.contact-wrapper .btn.btn-default:hover {
  background: #323232;
  border-color: #323232;
}

.form-group .error {
  color: #dc3545;
}

.error-block {
  margin-bottom: 20px;
}

.error-block h1 {
  font-size: 200px;
  line-height: 260px;
  margin-bottom: 0;
  color: #04d39f;
  font-weight: 600;
}

.error-block p {
  font-size: 30px;
  line-height: 30px;
  font-weight: 600;
  color: #323232;
}

.error-search-box {
  width: 100%;
  margin: 0;
}

.error-search-box p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 30px;
}

.error-search-box #searchform {
  position: relative;
}

.error-search-box #searchform .screen-reader-text {
  word-wrap: normal !important;
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 0;
  width: 1px;
  overflow: hidden;
}

.error-search-box #searchform input {
  padding-right: 85px;
}

.error-search-box #searchform .search-button {
  margin: 0;
  min-width: 70px;
  font-size: 15px;
  display: inline-block;
  padding: 11px 20px;
  border: none;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  height: 46px;
  width: 46px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  line-height: normal;
  background: #04d39f;
}

.content-404-image {
  margin-bottom: -60px;
}

.maintenance {
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
}

.maintenance .header {
  background: 0 0;
  text-align: center;
}

.maintenance .header img {
  margin: 20px 0;
}

.maintenance .mntc-cs-item.mntc-cs-content h1 {
  font-size: 42px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

.maintenance .mntc-cs-item.mntc-cs-content p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 30px;
}

.maintenance footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  box-shadow: none;
}

.coming-soon {
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
}

.coming-soon .header {
  background: 0 0;
  text-align: center;
}

.coming-soon .header img {
  margin: 20px 0;
}

.coming-soon .mntc-cs-item.mntc-cs-content i {
  font-size: 100px;
  margin-bottom: 25px;
  color: #e4e4e4;
}

.coming-soon .mntc-cs-item.mntc-cs-content h1 {
  font-size: 42px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

.coming-soon .mntc-cs-item.mntc-cs-content > p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 30px;
}

.coming-soon .commingsoon_countdown {
  padding: 0;
  margin-top: 60px;
  display: inline-block;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  vertical-align: top;
}

.coming-soon .commingsoon_countdown li {
  list-style-type: none;
  display: inline-block;
  text-align: center;
  padding: 14px;
  margin-right: 6px;
  background: #323232;
  min-width: 70px;
  color: #ffffff;
  border-radius: 3px;
}

.coming-soon .commingsoon_countdown li span {
  vertical-align: top;
  color: #ffffff;
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
}

.coming-soon .commingsoon_countdown li p {
  margin: 0;
  font-size: 15px;
  line-height: 28px;
  vertical-align: top;
  text-transform: capitalize;
}

.coming-soon .commingsoon_countdown li:last-child {
  border-right: none;
}

.coming-soon-social {
  margin-top: 20px;
}

.coming-soon-social ul {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  padding: 0;
}

.coming-soon-social ul li {
  list-style: none;
  margin-right: 10px;
}

.coming-soon-social ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  background: #f5f5f5;
  color: #323232;
  text-align: center;
  border-radius: 50%;
}

.coming-soon-social ul li a:hover {
  background: #04d39f;
  color: #ffffff;
}

.coming-soon footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  box-shadow: none;
}

.wishlist-table thead th {
  background: 0 0;
  border: none;
  padding: 15px 10px;
  text-align: left;
  font-weight: 700;
  color: #323232;
  vertical-align: middle;
}

.wishlist-table thead th.product-thumbnail {
  width: 100px;
}

.wishlist-table thead td {
  vertical-align: middle;
  line-height: 1.5em;
  text-align: left;
  border: none;
  border-top: 1px solid #e7e7e7;
  padding: 16px 12px;
  color: #969696;
}

.wishlist-table thead td.product-thumbnail a {
  display: block;
  border: none;
  max-width: 80px;
}

.wishlist-table thead td.product-thumbnail a img {
  width: 70px;
  height: auto;
}

.wishlist-table thead td.product-stock-status .wishlist-in-stock {
  color: #61d008;
}

.wishlist-table thead td.product-stock-status .wishlist-out-of-stock {
  color: #f00;
}

.wishlist-table thead td.product-add-to-cart .add_to_cart_button {
  font-weight: 500;
  line-height: 26px;
  background: #04d39f;
  color: #fff;
  display: block !important;
  margin: 0;
  text-align: center;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
  text-transform: uppercase;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.wishlist-table thead td.product-add-to-cart .add_to_cart_button:hover,
.wishlist-table thead td.product-add-to-cart .add_to_cart_button:focus {
  background: #323232;
}

.cart-table thead th {
  background: 0 0;
  border: none;
  padding: 15px 10px;
  text-align: left;
  font-weight: 700;
  color: #323232;
}

.cart-table thead th.product-thumbnail {
  width: 100px;
}

.cart-table thead td {
  vertical-align: middle;
  line-height: 1.5em;
  text-align: left;
  border: none;
  border-top: 1px solid #e7e7e7;
  padding: 16px 12px;
  color: #969696;
}

.cart-table thead td.product-remove {
  text-align: center;
  width: 50px;
}

.cart-table thead td.product-remove .remove {
  display: inline-block;
  font-size: 0;
  color: #969696;
}

.cart-table thead td.product-remove .remove:before {
  content: "\f014";
  position: relative;
  left: 6px;
  top: 0;
  font-family: FontAwesome;
  font-size: 16px;
  font-weight: 400;
}

.cart-table thead td.product-thumbnail a {
  display: block;
  border: none;
  width: 80px;
}

.cart-table thead td.product-thumbnail a img {
  width: 70px;
  height: auto;
}

.cart-table thead td.product-quantity {
  min-width: 80px;
}

.cart-table thead td.product-quantity .quantity {
  position: relative;
  padding: 0 24px;
  display: inline-block;
  width: auto;
}

.cart-table thead td.product-quantity .quantity .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 0;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.cart-table thead td.product-quantity .quantity input {
  width: 50px !important;
  height: 45px;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0 10px;
  margin: 0;
  font-size: 16px;
  color: #969696;
  border: 1px solid #e6e6e6;
  background: #f8f8f8;
  vertical-align: middle;
  text-align: center;
}

.cart-table thead td.product-quantity .quantity .quantity-button {
  position: relative;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e6e6e6;
  width: 20px;
  text-align: center;
  color: #969696;
  font-size: 20px;
  font-family: "Trebuchet MS", Helvetica, sans-serif !important;
  line-height: 45px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.cart-table thead td.product-quantity .quantity .quantity-button.quantity-up {
  position: absolute;
  width: 26px;
  height: 100%;
  right: 0;
  top: 0;
}

.cart-table thead td.product-quantity .quantity .quantity-button.quantity-down {
  position: absolute;
  width: 26px;
  height: 100%;
  left: 0;
  top: 0;
}

.cart-table thead td.actions {
  text-align: right;
}

.cart-table thead td.actions .coupon {
  float: left;
}

.cart-table thead td.actions .coupon label {
  display: none;
}

.cart-table thead td.actions .coupon .input-text {
  float: left;
  box-sizing: border-box;
  border: 1px solid #d3ced2;
  padding: 6px 6px 5px;
  margin: 0 4px 0 0;
  outline: 0;
  width: 250px;
  margin-right: 0;
  padding: 0 15px;
  background: #f5f5f5;
  border: none;
  height: 40px;
  border-radius: 0;
}

.cart-table thead td.actions .button {
  background: #04d39f;
  border: none;
  color: #fff;
  line-height: 38px;
  padding: 0 18px;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  float: none;
  height: 40px;
  border-radius: 0;
  color: #fff;
}

.cart-table thead td.actions .button:hover {
  background: #323232;
}

.cart-table thead td.actions .button:disabled[disabled] {
  cursor: not-allowed;
  opacity: .5;
  padding: 0 18px;
  color: #fff;
}

.cart-table thead td.actions .button:disabled[disabled]:hover {
  opacity: .1;
}

.cart_totals {
  float: none;
  width: auto;
  border: 1px solid #e8e8e8;
  background: #f9f9f9;
  padding: 0 20px 20px;
}

.cart_totals h2 {
  font-size: 20px;
  line-height: 30px;
  padding: 20px;
  margin: 0;
  font-weight: 600;
  text-align: center;
}

.cart_totals .shop_table {
  text-align: left;
  width: 100%;
  border-radius: 0;
  border-collapse: separate;
  margin: 0 -1px 20px 0;
  padding: 0;
  border: none;
  background: #fff;
}

.cart_totals .shop_table .cart-subtotal th,
.cart_totals .shop_table .cart-subtotal td {
  border-top: 0;
}

.cart_totals .shop_table th {
  width: 35%;
  vertical-align: top;
  line-height: 1.5em;
  border: none;
  background: 0 0;
  text-align: left;
  font-size: 18px;
  color: #323232;
  padding: 15px 20px;
  font-weight: 600;
  border-top: 1px solid #e8e8e8;
}

.cart_totals .shop_table .order-total th {
  vertical-align: middle;
}

.cart_totals .shop_table td {
  font-weight: 600;
  color: #323232;
  text-align: right;
  font-size: 18px;
  border: none;
  padding: 20px;
  line-height: 1.5em;
  vertical-align: top;
  border-top: 1px solid #e8e8e8;
}

.cart_totals .shop_table .shipping {
  padding-top: 25px;
}

.cart_totals .shop_table .shipping th,
.cart_totals .shop_table .shipping td {
  font-size: 14px;
}

.cart_totals .shop_table .order-total td {
  font-size: 26px;
  color: #04d39f;
}

.cart_totals .shop_table #shipping_method {
  list-style: none outside;
  margin: 0;
  padding: 0;
}

.cart_totals .shop_table #shipping_method li {
  margin: 0 0 .5em;
  line-height: 1.5em;
  list-style: none outside;
}

.cart_totals .shop_table #shipping_method li input {
  margin: 5px .4375em 0 0;
  vertical-align: top;
}

.cart_totals .shop_table #shipping_method label {
  font-weight: 400;
}

.cart_totals .shop_table #shipping_method .amount {
  font-weight: 700;
}

.cart_totals .shop_table p {
  margin-bottom: 0;
  font-weight: 400;
}

.cart_totals .shop_table .shipping-calculator-button {
  float: none;
  margin-top: .5em;
  display: inline-block;
  font-weight: 400;
}

.cart_totals .shipping-calculator .popup-content {
  padding: 15px 0 !important;
}

.cart_totals .shipping-calculator .popup-content .shop_table td {
  padding: 20px 0px 20px 20px;
  border: none;
}

.cart_totals .shipping-calculator .popup-content .shop_table td
.cart_totals .shop_table .shipping-calculator-button:after {
  font-family: FontAwesome;
  font-weight: 400;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-left: .618em;
  text-decoration: none;
  content: "\f0d1";
}

.cart_totals .proceed-to-checkout a.button {
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  border-radius: 0;
  background: #323232;
  color: #fff;
  display: block;
  text-align: center;
  text-transform: uppercase;
}

.cart_totals .proceed-to-checkout a.button:hover {
  background: #04d39f;
}

.user-info {
  color: #fff;
  font-size: 14px;
  padding: 25px 190px;
  padding-left: 60px;
  margin: 0;
  margin-bottom: 20px;
  border: none;
  line-height: 30px;
  padding-left: 120px;
  padding-right: 25px;
  color: #323232;
  border: none;
  background: #f9f9f9;
  font-weight: 700;
  margin-bottom: 20px;
}

.user-info:before {
  display: inline-block;
  position: absolute;
  font-size: 18px;
  position: absolute;
  left: 50px;
  top: 26px;
  font-family: FontAwesome;
  color: #000;
  opacity: .1;
  font-size: 64px;
}

.user-info.message:before {
  content: "\f090";
}

.user-info.coupon:before {
  content: "\f145";
}

.user-info a {
  padding-left: 5px;
  text-decoration: underline;
  color: #323232;
  font-weight: 400;
}

.user-info a:hover {
  text-decoration: none;
  color: #04d39f;
}

.billing-fields label {
  display: block;
}

.billing-fields .select2-container,
.billing-fields .select2-selection--single {
  width: 100% !important;
}

.checkout-review-order {
  border: 1px solid #e5e5e5;
  padding: 15px 30px 0 30px;
  position: relative;
}

.checkout-review-order .checkout-review-order-table {
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-radius: 0;
  border: none;
  border-collapse: collapse;
}

.checkout-review-order .checkout-review-order-table th {
  font-weight: 700;
  padding: 15px 0;
  line-height: 1.5em;
  background: 0 0;
  border: none;
  font-size: 18px;
  color: #323232;
  border-top: 1px solid #ececec;
}

.checkout-review-order .checkout-review-order-table td {
  vertical-align: middle;
  line-height: 1.5em;
  border: none;
  border-color: rgba(255, 255, 255, 0.08);
  padding: 15px 0px;
  font-size: 14px;
  border-top: 1px solid #ececec;
}

.checkout-review-order .checkout-review-order-table thead th {
  border-top: none;
}

.checkout-review-order .checkout-review-order-table .cart-subtotal td {
  font-weight: 700;
  font-size: 18px;
  color: #323232;
}

.checkout-review-order .checkout-review-order-table #shipping_method {
  list-style: none outside;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.checkout-review-order .checkout-review-order-table #shipping_method li {
  margin: 0 0 .5em;
  line-height: 1.5em;
  list-style: none outside;
}

.checkout-review-order .checkout-review-order-table #shipping_method li input {
  margin: 3px .4375em 0 0;
  vertical-align: top;
}

.checkout-review-order .checkout-review-order-table #shipping_method li label {
  display: inline;
}

.checkout-review-order .checkout-review-order-table #shipping_method li label .amount {
  font-weight: 700;
}

.checkout-review-order .checkout-review-order-table .order-total td {
  color: #04d39f;
  font-size: 26px;
}

.checkout-review-order .payment_methods {
  margin: 0;
  list-style: none outside;
  text-align: left;
  padding: 0;
  border: none;
}

.checkout-review-order .payment_methods li {
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: 400;
  list-style: none;
  color: #323232;
  margin: 18px 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  background: 0;
}

.checkout-review-order .payment_methods li input {
  margin: 0 1em 0 0;
  margin-right: 5px;
}

.checkout-review-order .payment_methods li label {
  margin-bottom: 0;
  font-weight: 600;
}

.checkout-review-order .payment_box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: .92em;
  border-radius: 2px;
  line-height: 1.5;
  background: #f3f3f3;
  color: #323232;
  border-radius: 3px;
}

.checkout-review-order .payment_box:before {
  content: '';
  display: block;
  border: 1em solid #dfdcde;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -.75em;
  left: 0;
  margin: -1em 0 0 2em;
  border-bottom-color: #f3f3f3;
}

.checkout-review-order .payment_box p {
  line-height: 24px;
  margin-bottom: 0;
}

.checkout-review-order .payment_method_paypal img {
  max-height: 52px;
  vertical-align: middle;
  margin: -2px 0 0 .5em;
  padding: 0;
  position: relative;
  box-shadow: none;
}

.checkout-review-order .payment_method_paypal .about_paypal {
  float: right;
  font-size: .83em;
  line-height: 30px;
  padding-left: 5px;
}

.checkout-review-order .place-order {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-left: -30px;
  margin-right: -30px;
  padding-bottom: 0;
  width: auto;
}

.checkout-review-order .place-order .terms-and-conditions-wrapper p {
  margin: 0 30px 30px;
}

.checkout-review-order .place-order .terms-and-conditions {
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 1.618em;
  padding: 1.618em;
}

.checkout-review-order #place_order {
  padding: 15px 40px;
  margin-bottom: 0;
  font-size: 16px;
  float: none;
  width: 100%;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  border: none;
  background: #323232;
  color: #fff;
}

.checkout-review-order #place_order:hover {
  background: #04d39f;
}

.sidebar .widget {
  margin-bottom: 30px;
}

.sidebar .widget.widget_search #searchform {
  position: relative;
}

.sidebar .widget.widget_search #searchform .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 0;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.sidebar .widget.widget_search #searchform input {
  padding-right: 30px;
  border: 1px solid #e5e5e5;
}

.sidebar .widget.widget_search #searchform input:focus {
  border-color: #04d39f;
}

.sidebar .widget.widget_search .search-button {
  background: 0 0;
  border: none;
  position: absolute;
  right: 2px;
  top: 0;
  line-height: 46px;
  padding: 0 10px;
  color: #969696;
  cursor: pointer;
}

.sidebar .widget.widget_recent_entries .recent-post,
.sidebar .widget.widget_recent_entries ul li {
  display: table;
  margin-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  width: 100%;
}

.sidebar .widget.widget_recent_entries .recent-post:last-child,
.sidebar .widget.widget_recent_entries ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.sidebar .widget.widget_recent_entries .recent-post .recent-post-image,
.sidebar .widget.widget_recent_entries .recent-post .recent-post-info {
  display: table-cell;
  vertical-align: middle;
}

.sidebar .widget.widget_recent_entries .recent-post .recent-post-image {
  width: 65px;
  padding-right: 12px;
}

.sidebar .widget.widget_recent_entries .recent-post .recent-post-info a {
  font-size: 14px;
  color: #323232;
  line-height: 20px;
  margin-bottom: 3px;
  display: inline-block;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.sidebar .widget.widget_recent_entries .recent-post .recent-post-info a:hover {
  color: #04d39f;
}

.sidebar .widget.widget_recent_entries .recent-post .recent-post-info .post-date {
  display: block;
  font-size: 12px;
  color: #969696;
}

.sidebar .widget.widget_recent_entries .recent-post .recent-post-info .post-date i {
  margin-right: 7px;
  color: #04d39f;
}

.sidebar .widget.widget_archive ul,
.sidebar .widget.widget_categories ul,
.sidebar .widget.widget_meta ul,
.sidebar .widget.widget_pages ul,
.sidebar .widget.widget_pgs_contact_widget ul,
.sidebar .widget.widget_pgs_social_profiles ul,
.sidebar .widget.widget_recent_comments ul,
.sidebar .widget.widget_rss ul {
  padding-left: 0;
  margin-bottom: 0;
}

.sidebar .widget.widget_archive ul li,
.sidebar .widget.widget_categories ul li,
.sidebar .widget.widget_meta ul li,
.sidebar .widget.widget_pages ul li {
  padding-left: 15px;
  position: relative;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 10px;
  color: #04d39f;
}

.sidebar .widget.widget_archive ul li:last-child {
  margin-bottom: 0;
}

.sidebar .widget.widget_archive ul li:before,
.sidebar .widget.widget_categories ul li:before,
.sidebar .widget.widget_meta ul li:before,
.sidebar .widget.widget_pages ul li:before {
  content: "\f105";
  font-family: FontAwesome;
  height: 24px;
  width: 10px;
  display: inline-block;
  text-align: left;
  color: #969696;
  margin-right: 15px;
  font-weight: 100;
  line-height: 22px;
  padding-left: 2px;
  position: absolute;
  left: 0;
  top: 2px;
}

.sidebar .widget.widget_categories ul li:last-child,
.sidebar .widget.widget_meta ul li:last-child {
  margin-bottom: 0;
}

.sidebar .widget.widget_archive ul li {
  font-weight: 600;
}

.sidebar .widget.widget_categories ul li {
  font-weight: 600;
}

.sidebar .widget.widget_categories ul li .widget_categories-post-count {
  margin-left: 5px;
  color: #04d39f;
  font-weight: 600;
}

.sidebar .widget .social-profiles ul li {
  display: inline-block;
  margin: 0;
  margin-right: 7px;
  margin-bottom: 7px;
  float: left;
  list-style-type: none;
  text-align: center;
}

.sidebar .widget .social-profiles ul li a {
  width: auto;
  height: auto;
  background: 0 0;
  border: none;
  border-radius: 0;
  vertical-align: top;
  line-height: inherit;
  transition: inherit;
}

.sidebar .widget .social-profiles ul li a:hover i {
  border-color: transparent;
  background: #04d39f;
  color: #fff;
}

.sidebar .widget .social-profiles ul li i {
  border: 1px solid rgba(173, 173, 173, 0.5);
  font-size: 13px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 3px;
  vertical-align: top;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar .widget ul li {
  list-style-type: none;
  margin: 5px 0;
}

.sidebar .widget ul li a {
  font-weight: 400;
  text-transform: capitalize;
  color: #969696;
  display: inline-block;
  line-height: 24px;
}

.sidebar .widget ul li a:hover {
  color: #04d39f;
}

.sidebar .widget .widget-title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  position: relative;
  margin-bottom: 15px;
}

.post {
  margin-bottom: 60px;
}

.post .blog-entry-audio,
.post .blog-entry-grid,
.post .blog-entry-html-video,
.post .blog-entry-quote,
.post .blog-entry-slider,
.post .blog-entry-vimeo,
.post .blog-entry-you-tube,
.post .post-entry-image {
  margin-bottom: 15px;
}

.post .blog-entry-audio img,
.post .blog-entry-grid img,
.post .blog-entry-html-video img,
.post .blog-entry-quote img,
.post .blog-entry-slider img,
.post .blog-entry-vimeo img,
.post .blog-entry-you-tube img,
.post .post-entry-image img {
  width: 100%;
}

.post .entry-header-section {
  position: relative;
  margin-bottom: 10px;
}

.post .entry-header-section .entry-meta-date {
  display: block;
  margin-bottom: 5px;
}

.post .entry-header-section .entry-meta-date a {
  color: #04d39f;
  text-transform: uppercase;
  font-weight: 600;
}

.post .entry-header-section .entry-title {
  color: #323232;
  font-weight: 600;
  margin-bottom: 5px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-size: 24px;
  line-height: 34px;
}

.post .entry-header-section .entry-title a {
  color: #323232;
}

.post .entry-header-section .entry-meta ul {
  padding-left: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.post .entry-header-section .entry-meta ul li {
  list-style-type: none;
  display: inline;
  margin-right: 8px;
  line-height: 20px;
  color: #bbb;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.post .entry-header-section .entry-meta ul li .fa-comments-o {
  padding-right: 3px;
}

.post .entry-header-section .entry-meta ul li:after {
  content: "/";
  padding-left: 8px;
  color: #ccc;
  font-size: 11px;
  position: relative;
  top: 1px;
}

.post .entry-header-section .entry-meta ul li:last-child {
  margin-right: 0;
}

.post .entry-header-section .entry-meta ul li:last-child:after {
  content: '';
}

.post .entry-header-section .entry-meta ul li a {
  color: #bbb;
  font-size: 12px;
}

.post .entry-header-section .entry-meta ul li a:hover {
  color: #04d39f;
}

.post .entry-header-section .entry-content {
  margin-bottom: 30px;
}

.post .entry-footer {
  position: relative;
  clear: both;
}

.post .entry-footer .readmore {
  background: #323232;
  font-size: 13px;
  color: #fff;
  line-height: 29px;
  display: inline-block;
  padding: 0 18px;
  text-transform: uppercase;
  border-radius: 3px;
}

.post .entry-footer .readmore:hover {
  background: #04d39f;
}

.post .share {
  position: absolute;
  cursor: pointer;
  right: 0;
  z-index: 9;
  top: 0;
}

.post .share .share-button {
  background: 0 0;
  border-radius: 3px;
  padding: 2px 12px;
  font-size: 13px;
  color: #323232;
  position: relative;
  display: inline-block;
  z-index: 99;
  border: 1px solid #e5e5e5;
}

.post .share a {
  font-weight: 500;
  line-height: 22px;
  font-size: 18px;
}

.post .share ul {
  float: none;
  opacity: 0;
  background: #f9f9f9;
  border-radius: 3px;
  padding: 2px 10px;
  margin-bottom: 0;
  right: 10px;
  top: 0;
  position: absolute;
  display: table;
  visibility: hidden;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  font-weight: 500;
  line-height: 22px;
  font-size: 18px;
  list-style-type: none;
}

.post .share ul:before {
  position: absolute;
  z-index: 999;
  content: "";
  right: -10px;
  top: 9px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent #f9f9f9;
  box-shadow: 0 0 black;
}

.post .share ul li {
  display: table-cell;
  line-height: 26px;
  list-style: none;
}

.post .share ul li a {
  display: block;
  padding: 2px 10px 2px;
  font-size: 14px;
}

.post .share ul li .facebook-share {
  color: #3b5998;
}

.post .share ul li .twitter-share {
  color: #55acee;
}

.post .share ul li .linkedin-share {
  color: #007bb5;
}

.post .share ul li .facebook-share {
  color: #3b5998;
}

.post .share ul li .google-share {
  color: #fc5b4d;
}

.post .share ul li .pinterest-share {
  color: #ca2028;
}

.post .share:hover ul {
  opacity: 1;
  right: 55px;
  visibility: visible;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.post .blog-entry-quote blockquote {
  background: #04d39f;
  color: #fff;
  border-left: none;
  padding: 25px;
  font-size: 16px;
  line-height: 28px;
  position: relative;
  padding-left: 50px;
  padding-top: 40px;
  border-radius: 5px;
}

.post .blog-entry-quote blockquote .fa,
.post .blog-entry-quote blockquote i {
  float: left;
}

.post .blog-entry-quote blockquote i {
  position: absolute;
  left: 25px;
  top: 15px;
  opacity: .25;
  margin: 0;
  font-size: 80px;
  color: #fff;
}

.post .blog-entry-quote blockquote p {
  display: table;
  vertical-align: top;
  margin-bottom: 10px;
}

.post .blog-entry-quote blockquote .quote-author {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
  text-align: left !important;
}

.navigation.pagination {
  padding-left: 15px;
  display: block;
}

.navigation.pagination .page-numbers {
  border: none;
  padding-left: 0;
  margin-bottom: 0;
}

.navigation.pagination .page-numbers li {
  border: none;
  margin: 4px;
  list-style: none;
  display: inline-block;
  line-height: inherit;
}

.navigation.pagination .page-numbers li > span,
.navigation.pagination .page-numbers li > a {
  background: #fff;
  font-size: 15px;
  color: #323232;
  font-weight: 400;
  border: 1px solid #e5e5e5;
  padding: 8px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  display: inline-block;
}

.navigation.pagination .page-numbers li a:hover {
  background: #04d39f;
  border-color: #04d39f;
  color: #fff;
}

.navigation.pagination .page-numbers li .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 0;
  width: 1px;
  overflow: hidden;
}

.navigation.pagination .page-numbers li .current {
  background: #04d39f;
  border-color: #04d39f;
  color: #fff;
}

.blog-grid .post {
  background: #fff;
  position: relative;
  border: 1px solid #f2f2f2;
  padding: 20px;
  margin-bottom: 50px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.blog-grid .post .entry-meta-date {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 2;
}

.blog-grid .post .entry-meta-date a {
  background: #04d39f;
  color: #fff;
  padding: 0 18px;
  line-height: 32px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.blog-grid .post.format-quote .entry-meta-date {
  position: relative;
  top: 0;
  margin-bottom: 10px;
}

.single-post .entry-content {
  margin-bottom: 40px;
}

.single-post .entry-footer .share {
  position: initial;
  padding-left: 25%;
}

.single-post .entry-footer .share .share-button {
  position: absolute;
  left: 0;
  top: 7px;
  background: 0 0;
  padding: 0;
  color: #323232;
  font-weight: 500;
  font-size: 14px;
  cursor: default;
  border: none;
}

.single-post .entry-footer .share .share-button:after {
  content: attr(data-title);
  padding-left: 8px;
}

.single-post .entry-footer .share ul {
  position: relative;
  visibility: visible;
  opacity: 1;
  background: 0 0;
  right: 0;
  padding: 0;
}

.single-post .entry-footer .share ul li {
  display: inline;
  float: right;
  list-style-type: none;
}

.single-post .entry-footer .share ul li a {
  display: block;
  padding: 5px 25px;
  font-size: 14px;
  border: 1px solid #e5e5e5;
  margin: 2px;
  border-radius: 3px;
}

.single-post .entry-footer .share ul li .facebook-share:hover {
  color: #fff;
  background: #3b5998;
  border-color: #3b5998;
}

.single-post .entry-footer .share ul li .twitter-share:hover {
  color: #fff;
  background: #55acee;
  border-color: #55acee;
}

.single-post .entry-footer .share ul li .linkedin-share:hover {
  color: #fff;
  background: #007bb5;
  border-color: #007bb5;
}

.single-post .entry-footer .share ul li .facebook-share:hover {
  color: #fff;
  background: #3b5998;
  border-color: #3b5998;
}

.single-post .entry-footer .share ul li .google-share:hover {
  color: #fff;
  background: #fc5b4d;
  border-color: #fc5b4d;
}

.single-post .entry-footer .share ul li .pinterest-share:hover {
  color: #fff;
  background: #ca2028;
  border-color: #ca2028;
}

.single-post .entry-footer .share:hover ul {
  position: relative;
  visibility: visible;
  opacity: 1;
  background: 0 0;
  right: 0;
  padding: 0;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 0;
  width: 1px;
  overflow: hidden;
}

.post-navigation .nav-links {
  display: table;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.post-navigation .nav-links:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
}

.post-navigation .nav-links .nav-next,
.post-navigation .nav-links .nav-previous {
  display: inline-block;
  width: 50%;
  vertical-align: middle;
}

.post-navigation .nav-links .nav-next a,
.post-navigation .nav-links .nav-previous a {
  background: 0 0;
  color: #323232;
  padding: 15px 0;
  font-weight: 500;
  border-radius: 3px;
  display: block;
  -ms-word-break: break-all;
  word-break: break-all;
}

.post-navigation .nav-links .nav-previous {
  padding-right: 1%;
  float: left;
}

.post-navigation .nav-links .nav-next {
  padding-left: 1%;
  float: right;
}

.related-posts {
  margin-bottom: 30px;
}

.related-posts h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.related-posts .related-post-info h5 {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
}

.related-posts .related-post-info h5 a {
  color: #969696;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.ReactTable .rt-noData {
  padding: 8px 20px;
  margin-top: 2px;
}

.comments-area .comment-respond {
  margin-bottom: 30px;
  margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent input[type=checkbox] {
  margin-right: 10px;
  margin-top: 6px;
}

.comments-area .comment-respond .section-field,
.comments-area .respond-form .section-field {
  display: inline-block;
  width: 31.33333%;
  float: left;
  margin-right: 3%;
  margin-bottom: 3%;
}

.comments-area .comment-respond .section-field i,
.comments-area .respond-form .section-field i {
  display: none;
}

.comments-area .comment-respond .section-field.comment-form-url,
.comments-area .respond-form .section-field.comment-form-url {
  margin-right: 0;
}

.comments-area .comment-respond .section-field.textarea,
.comments-area .respond-form .section-field.textarea {
  width: 100%;
  float: none;
}

.comments-area .comment-respond .section-field.textarea textarea,
.comments-area .respond-form .section-field.textarea textarea {
  width: 100%;
  height: auto;
}

.comments-area .comment-respond .form-submit,
.comments-area .respond-form .form-submit {
  display: inline-block;
  margin-bottom: 0;
}

.comments-area .respond-form .form-submit .submit {
  background: #04d39f;
  color: #ffffff;
  border-color: #04d39f;
}

.comments-area .respond-form .form-submit .submit:hover {
  background: #323232;
  border-color: #323232;
}

.my-account h2 {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 25px;
  position: absolute;
  top: 30px;
  left: 50px;
  font-weight: 600;
}

.my-account .form {
  padding: 30px;
  padding-top: 80px;
  margin-bottom: 0;
  height: 100%;
  border: solid;
  border-width: 3px;
  border-color: #e8ebf1;
}

.my-account .form .required {
  color: red;
  font-weight: 700;
  border: 0 !important;
  text-decoration: none;
}

.my-account .form .form-row {
  margin: 0;
  margin-bottom: 20px;
}

.my-account .form button.button {
  margin-right: 10px;
  border: none;
  color: #fff;
  line-height: 38px;
  padding: 0 18px;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  background: #04d39f;
}

.my-account .form button.button:hover {
  background: #323232;
}

.my-account .form .remember {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 10px;
  margin-left: 15px;
}

.my-account .form.register .form-row {
  margin-bottom: 0;
}

.shop-filter-wrapper .rangeslider-horizontal .rangeslider__fill {
  background: #04d39f;
  box-shadow: none;
}

.shop-filter-wrapper .rangeslider {
  box-shadow: none;
}

.shop-filter-wrapper .rangeslider-horizontal {
  height: 6px;
}

.shop-filter-wrapper .rangeslider-horizontal .rangeslider__handle {
  box-shadow: none;
  border: 3px solid  #04d39f;
  width: 18px;
  height: 18px;
  background: #ffffff;
}

.shop-filter-wrapper .rangeslider-horizontal .rangeslider__handle:after {
  display: none
}

/* home slider 01 */
.slider-01 .slide-inner {
  position: relative;
}

.slider-01 .slide-content {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slider-01 .slide-content .slide-sale {
  font-size: 50px;
  line-height: 50px;
  display: inline-flex;
  padding: 4px 6px;
  font-weight: 600;
  background: #323232;
  color: #ffffff;
}

.slider-01 .slide-content .slide-sale span {
  padding-left: 10px;
  font-size: 24px;
  line-height: 24px;
}

.slider-01 .slide-content .slide-title h1 {
  font-size: 140px;
  line-height: 140px;
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 600;
}

.slider-01 .slide-content .slide-subtitle {
  font-size: 80px;
  line-height: 80px;
  color: #323232;
  font-weight: 700;
  margin-top: 20px;
}

.slider-01 .slide-content .slide-since {
  margin-top: 30px;
  display: inline-block;
  background: #fff2d5;
  padding: 6px 10px;
  font-size: 22px;
  line-height: 22px;
  color: #323232;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
}

.slider-01 .slide-content .slide-offer {
  font-size: 50px;
  text-transform: capitalize;
  line-height: 50px;
  word-spacing: 100vw;
  color: #323232;
  font-weight: 700;
}

.slider-01 .slide-content .slide-button {
  font-size: 18px;
  border-bottom: 2px solid #323232;
  color: #323232;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
  display: inline-block;
}

.slider-01 .slide-content .slide-button:hover {
  color: #04d39f;
  border-color: #04d39f;
}

.slider-01 .slide-content .slide-button-flat {
  font-size: 14px;
  color: #323232;
  background: #efcac8;
  font-weight: 700;
  padding: 10px 22px;
  text-transform: uppercase;
  margin-top: 30px;
  display: inline-block;
}

.slider-01 .slide-content .slide-button-flat:hover {
  color: #ffffff;
  background: #04d39f;
}

.slider-01 .slick-next {
  right: 0;
}

/* home slider 02 */
.slider-02 .slide-inner {
  position: relative;
}

.slider-02 .slide-content {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slider-02 .slide-content .slide-right {
  text-align: center;
  margin-left: auto;
  padding: 80px 50px;
  background: #ffffff;
  border: 20px solid transparent;
  border-image: url(/static/media/spring-pat.f6d55da6.jpg) 50;
}

.slider-02 .slide-content .slide-left {
  text-align: center;
  padding: 80px 50px;
  background: #ffffff;
  border: 20px solid transparent;
  border-image: url(/static/media/spring-pat2.764f441d.jpg) 50;
}

.slider-02 .slide-content .slide-subtitle {
  text-transform: uppercase;
  font-weight: 500;
  color: #323232;
}

.slider-02 .slide-content .slide-title h1 {
  font-size: 72px;
  line-height: 100px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.slider-02 .slide-content .slide-button-flat {
  font-size: 18px;
  color: #ffffff;
  background: #323232;
  font-weight: 600;
  padding: 12px 30px;
  margin-top: 0px;
  display: inline-block;
  border-radius: 330px;
}

.slider-02 .slide-content .slide-button-flat:hover {
  color: #ffffff;
  background: #04d39f;
}

.slider-02 .slick-next {
  right: 0;
}

/* home slider 03 */
.slider-03 .slide-inner {
  position: relative;
}

.slider-03 .slide-content {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slider-03 .slide-content .slide-since {
  display: inline-block;
  background: #323232;
  padding: 8px 60px;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 6px;
}

.slider-03 .slide-content .slide-title h1 {
  font-size: 65px;
  line-height: 100px;
  margin-bottom: 50px;
  margin-top: 20px;
  font-weight: 600;
  letter-spacing: 9px;
  text-transform: uppercase;
}

.slider-03 .slide-content .slide-button {
  font-size: 18px;
  border-bottom: 2px solid #323232;
  color: #323232;
  font-weight: 700;
  display: inline-block;
}

.slider-03 .slide-content .slide-button:hover {
  color: #04d39f;
  border-color: #04d39f;
}

.slider-03 .slick-next {
  right: 0;
}

.slide-03-item .slide-content img {
  width: 60%;
}

/* home slider 04 */
.slider-04 .slide-inner {
  position: relative;
}

.slider-04 .slide-content {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slider-04 .slide-content .slide-inner {
  padding: 80px 50px;
  box-shadow: 15px 15px 0px rgb(253, 225, 214);
}

.slider-04 .slide-content .slide-title h1 {
  font-size: 65px;
  line-height: 80px;
  font-weight: 600;
  text-transform: uppercase;
}

.slider-04 .slide-content .slide-subtitle {
  font-weight: 500;
  color: #323232;
  font-size: 32px;
  display: inline-block;
  margin-bottom: 20px;
}

.slider-04 .slide-content p {
  font-size: 18px;
}

.slider-04 .slide-content .slide-inner-02 {
  padding: 40px 40px;
  box-shadow: 15px 15px 0px rgb(253, 225, 214);
  position: relative;
}

.slider-04 .slide-content .slide-inner-02 .slide-sale {
  position: absolute;
  left: 0;
  right: 0;
}

.slider-04 .slide-content .slide-button {
  font-size: 18px;
  border-bottom: 2px solid #323232;
  color: #323232;
  font-weight: 700;
  display: inline-block;
}

.slider-04 .slide-content .slide-button:hover {
  color: #04d39f;
  border-color: #04d39f;
}

/* slider-simple-arrow */
.slider-simple-arrow .slick-next {
  right: 40px;
}

.slider-simple-arrow .slick-prev {
  left: 40px;
  z-index: 1;
}

.slider-simple-arrow .slick-prev,
.slider-simple-arrow .slick-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.slider-simple-arrow .slick-prev:before,
.slider-simple-arrow .slick-next:before {
  font-size: 16px;
  width: 50px;
  height: 50px;
  display: block;
  line-height: 50px;
  color: #323232;
  background: #ffffff;
  font-family: FontAwesome;
}

.slider-simple-arrow .slick-prev:before {
  content: "\f053";
}

.slider-simple-arrow .slick-next:before {
  content: "\f054";
}

/* slider-arrow-hover */
.slider-arrow-hover {
  overflow: hidden;
}

.slick-next,
.slick-prev {
  height: 40px;
}

.slider-arrow-hover .slick-next {
  right: -30px;
}

.slider-arrow-hover .slick-prev {
  left: -30px;
  z-index: 1;
}

.slider-arrow-hover .slick-prev,
.slider-arrow-hover .slick-next {
  line-height: 40px;
  height: 40px;
}

.slider-arrow-hover .slick-prev:before,
.slider-arrow-hover .slick-next:before {
  font-size: 14px;
  width: 26px;
  height: 40px;
  display: block;
  line-height: 40px;
  border-radius: 3px;
  color: #ffffff;
  opacity: 1;
  background: #323232;
  transition: all 0.3s ease-in-out;
  font-family: FontAwesome;
}

.slider-arrow-hover .slick-prev:hover:before,
.slider-arrow-hover .slick-next:hover:before {
  color: #ffffff;
  background: #04d39f;
}

.slider-arrow-hover .slick-prev:before {
  content: "\f053";
}

.slider-arrow-hover .slick-next:before {
  content: "\f054";
}

.slider-arrow-hover:hover .slick-next {
  right: 20px;
}

.slider-arrow-hover:hover .slick-prev {
  left: 15px;
  z-index: 1;
}

.instafeed.insta-feeds .slick-list div > div {
  vertical-align: top;
  display: inline-block;
  position: relative;
}

/* slider-spacing-10  */
.slider-spacing-10 .slick-list {
  margin: 0 -15px;
}

.slider-spacing-10 .item > div {
  margin: 0 15px;
}

.latest-post-style-1 .slick-slider .latest-post-item {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

/* OrderHistory */
.woocommerce-MyAccount-navigation .nav .nav-item .nav-link {
  border: 1px solid #e5e5e5;
  margin-top: -1px;
  padding: 14px 26px;
  color: #969696;
}

.woocommerce-MyAccount-navigation .nav .nav-item .nav-link i {
  padding-right: 6px;
}

.woocommerce-MyAccount-navigation .nav .nav-item .nav-link:hover,
.woocommerce-MyAccount-navigation .nav .nav-item .nav-link.active {
  background: #f5f5f5;
}

.orderhistory-table thead.thead-light th {
  background: #f5f5f5;
  padding: 14px 20px;
  border-bottom: 0;
}

.orderhistory-table tbody tr td {
  padding: 14px 20px;
}

.orderhistory-table .action-button {
  padding: 6px 16px;
  background-color: #04d39f;
  color: #ffffff;
  border-radius: 3px;
  text-transform: uppercase;
}

.orderhistory-table .action-button:hover {
  background-color: #323232;
  color: #04d39f;
}

/* woocommerce-Address */
.woocommerce-Address {
  background: #f5f5f5;
  padding: 20px;
}

.woocommerce-Address .woocommerce-Address-title {
  display: flex;
  align-items: center;
}

.woocommerce-Address .woocommerce-Address-title .edit {
  margin-left: auto;
}

.woocommerce-Address .woocommerce-Address-info {
  background: #ffffff;
  padding: 20px;
}

.woocommerce-Address .woocommerce-Address-info li {
  display: flex;
}

.woocommerce-Address .woocommerce-Address-info li span {
  min-width: 90px;
  display: inline-block;
}

.add-new-card {
  padding: 10px 20px;
  background-color: #04d39f;
  color: #ffffff;
  border-radius: 3px;
  text-transform: uppercase;
}

.add-new-card:hover {
  background-color: #323232;
  color: #04d39f;
}

/* success-screen */
.success-screen {
  background: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.success-screen .thank-you {
  background: #04d39f;
  padding: 40px;
}

.success-screen .thank-you i {
  font-size: 80px;
  line-height: 80px;
  color: #ffffff;
}

.success-screen .thank-you span {
  font-size: 18px;
  line-height: 30px;
  display: block;
  color: #ffffff;
  margin-bottom: 20px;
}

.ordered-detail {
  padding: 0 40px 40px 40px;
}

.ordered-item {
  background: #f5f5f5;
  margin-bottom: 5px;
  text-align: center;
}

.ordered-item h6 {
  font-size: 16px;
}

.ordered-detail .table .ordered-item .ordered-image {
  width: 50px;
  display: inline-block;
  border: none;
}

.ordered-detail .table td {
  padding: 20px 10px;
  vertical-align: top;
}

.table.total-table td {
  padding: 10px 20px;
}

.success-screen .button {
  padding: 10px 20px;
  background: #04d39f;
  color: #ffffff;
}

/* reports page */
.reports-table.table-striped tbody tr:nth-of-type(odd) {
  background: #f5f5f5;
}

.reports-table th,
.reports-table td {
  padding: 20px;
}

.reports-table .table th,
.reports-table .table td {
  vertical-align: middle;
}

.reports-tab .nav-pills .nav-link {
  margin-left: 4px;
  background: #f5f5f5;
  color: #323232;
}

.reports-tab .nav-pills .nav-link.active,
.reports-tab .nav-pills .show>.nav-link,
.reports-tab .nav-pills .nav-link:hover {
  background: #04d39f;
  color: #ffffff;
}

/* invoices page */
.ReactTable .view-button {
  background: #04d39f;
  color: #ffffff;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0px;
  border-radius: 3px;
}

.ReactTable .-pagination .-btn {
  font-weight: 600;
}

.ReactTable .-pagination {
  padding: 8px;
}

.ReactTable .-pagination .-pageInfo {
  margin-top: 0;
  margin-bottom: 0;
}

.ReactTable .view-button i {
  font-size: 14px;
  padding-left: 0 !important;
}

.ReactTable .delete-button {
  background: #dc3545;
  color: #ffffff !important;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-left: 3px;
  cursor: pointer;
  font-size: 0px;
  width: 42px;
  text-align: center;
}

.ReactTable .delete-button i {
  font-size: 14px;
  padding-left: 0 !important;
}

.ReactTable .rt-th,
.ReactTable .rt-td {
  padding: 14px 10px;
  font-weight: 600;
}

.ReactTable .rt-tr {
  align-items: center;
}

.ReactTable .rt-tr-group:nth-of-type(odd) {
  background: #f5f5f5;
}

.ReactTable .rt-thead .rt-th,
.ReactTable .rt-thead .rt-td {
  padding: 10px 10px;
}

.ReactTable .rt-td > div {
  display: flex;
  flex-wrap: wrap;
}

.ReactTable .rt-thead.-header {
  box-shadow: none;
  background: #fbfbfb;
  border-bottom: 1px solid #e5e5e5;
}

.ReactTable .rt-thead .rt-resizable-header-content {
  font-weight: 700;
  color: #323232;
}

.ReactTable .rt-thead .rt-th {
  padding: 20px 10px;
}

.ReactTable .-pagination input,
.ReactTable .-pagination select {
  color: #969696;
  padding: 9px 7px;
}

.ReactTable .-pagination {
  box-shadow: none;
  border-top-width: 1px;
}

.invoices-table .rt-resizable-header {
  position: relative;
  padding-right: 20px;
}

.invoices-table .rt-resizable-header:before {
  position: absolute;
  content: "\f175";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  font-size: 14px;
  color: #969696;
  right: 8px;
  top: 50%;
  margin-top: -8px;
}

.invoices-table .rt-resizable-header:after {
  position: absolute;
  content: "\f176";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  font-size: 14px;
  color: #969696;
  right: 16px;
  top: 50%;
  margin-top: -8px;
}

.invoices-table .rt-resizable-header.-sort-asc:after {
  color: #04d39f;
}

.invoices-table .rt-resizable-header.-sort-desc:before {
  color: #04d39f;
}

.invoices-table .rt-resizable-header:nth-child(2):before,
.invoices-table .rt-resizable-header:nth-child(2):after {
  display: none;
}

.modal-delete .modal-footer {
  padding: 14px 14px 20px 14px;
}

.modal-delete .modal-content {
  padding: 20px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  line-height: 40px;
  color: #323232;
}

.modal-delete .modal-content .action-button {
  background: #04d39f;
  color: #ffffff;
  padding: 6px 20px;
  line-height: 30px;
  font-size: 13px;
  border-radius: 3px;
}

.modal-delete .modal-content .action-button.no {
  background: #dc3545;
  color: #ffffff;
}

.ciyashop-pagination .page-item.active .page-link {
  background: #04d39f;
  border-color: #04d39f;
}

.woocommerce-Address .woocommerce-Address-info strong {
  word-break: break-word;
}

.btn {
  padding: 10px 20px;
  border-radius: 3px;
}

.btn-primary {
  background: #04d39f;
  border-color: #04d39f;
  color: #ffffff;
}

.btn-primary:hover {
  background: #323232;
  border-color: #323232;
  color: #ffffff;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-secondary.focus,
.btn-secondary:focus {
  box-shadow: none;
  color: #ffffff;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: none;
  background: #323232;
  border-color: #323232;
  color: #ffffff;
}

.btn-danger.focus,
.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus {
  box-shadow: none;
  color: #ffffff;
}

/* admin profile */
.admin-profile {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  margin-bottom: 20px;
  padding: 30px;
}

.admin-profile .admin-profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 30px;
}

.admin-profile .admin-profile-number {
  color: #323232;
  background: transparent;
}

.admin-profile .admin-profile-number i {
  color: #04d39f;
}

/* collaboration page */
.collaboration-table .user-image {
  width: 40px;
  height: 40px;
}

.collaboration-table tbody {
  border-bottom: 1px solid #e8e8e8;
}

.collaboration-table tbody h3 {
  padding: 20px;
  margin-bottom: 0;
  display: block;
  width: 100%;
  font-size: 20px;
}

.collaboration-table .delete-button {
  background: #dc3545;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 2px 0px 2px 20px;
  line-height: 24px;
  font-size: 13px;
  border-radius: 3px;
}

.collaboration-table th,
.collaboration-table td {
  padding: 20px;
  text-transform: capitalize;
  vertical-align: middle;
}

/* modal add user */
.modal-add-user .modal-content {
  padding: 30px;
  color: #323232;
}

.modal-add-user .modal-header,
.modal-add-user .modal-body,
.modal-add-user .modal-footer {
  padding: 0 !important;
  border: none;
}

.modal-add-user .modal-footer {
  margin-top: 10px;
}

.modal-add-user .modal-content .action-button {
  background: #04d39f;
  color: #ffffff;
  padding: 6px 20px;
  line-height: 30px;
  font-size: 13px;
  border-radius: 3px;
}

.modal-add-user .modal-content .action-button.no {
  background: #dc3545;
  color: #ffffff;
  border-color: #dc3545;
}

/* admin-menu */
.admin-menu {
  background: #f5f5f5;
  padding: 20px 0 0;
}

.admin-menu .logo {
  width: 160px;
}

.admin-menu .navbar {
  margin-top: 0;
  border: 1px solid #e5e5e5;
  position: relative;
  bottom: -22px;
  padding: 0;
  border-radius: 3px;
}

.admin-menu .navbar .navbar-nav .nav-item .nav-link {
  font-weight: 600;
  text-transform: capitalize;
  color: #323232;
  padding: 12px 20px;
}

.admin-menu .navbar .navbar-nav .nav-item .nav-link i {
  padding-right: 6px;
}

.admin-menu .navbar .navbar-nav .nav-item.active .nav-link {
  color: #04d39f;
}

.admin-menu .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #04d39f;
}

.admin-menu .navbar .dropdown .dropdown-menu {
  margin: 0;
  padding: 0;
}

.admin-menu .navbar .dropdown .dropdown-menu .nav-link {
  padding: 10px 20px;
  color: #323232;
}

.admin-menu .navbar .dropdown .dropdown-menu .dropdown-item:hover .nav-link {
  color: #04d39f;
}

.admin-menu .navbar .dropdown .dropdown-item {
  padding: 8px 20px;
  font-weight: 500;
}

.admin-menu .navbar .dropdown .dropdown-item i {
  padding-right: 6px;
}

.admin-menu .navbar .dropdown .dropdown-item.active,
.admin-menu .navbar .dropdown .dropdown-item:active,
.admin-menu .navbar .dropdown .dropdown-item:hover {
  background: #04d39f;
  border-color: #04d39f;
  color: #ffffff !important;
  box-shadow: none;
}

/* profile-dropdown */
.profile-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  margin-left: auto;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  color: #323232;
  text-align: left;
}

.profile-dropdown .dropdown-toggle::after {
  border-top: 0.6em solid;
  border-right: 0.6em solid transparent;
  border-left: 0.6em solid transparent;
  margin-left: 20px;
}

.profile-dropdown .dropdown-toggle:focus,
.profile-dropdown .dropdown-toggle:active {
  border: 0;
  box-shadow: inherit;
}

.profile-dropdown .dropdown-toggle .profile-img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus {
  box-shadow: inherit !important;
}

.profile-dropdown .btn-secondary:not(:disabled):not(.disabled).active,
.profile-dropdown .btn-secondary:not(:disabled):not(.disabled):active,.profile-dropdown.show> .btn-secondary.dropdown-toggle {
  color: #323232;
}

.profile-dropdown .dropdown-menu {
  width: 263px;
  border-radius: inherit;
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
  margin: 0;
  padding: 0;
  margin-top: 5px;
}

.profile-dropdown .dropdown-menu .dropdown-item {
  padding: 10px 20px;
}

.profile-dropdown .dropdown-menu .dropdown-item a {
  color: #323232;
  padding: 10px 20px;
}

.profile-dropdown .dropdown-menu .dropdown-item i {
  padding-right: 8px;
}

.profile-dropdown .dropdown-menu .dropdown-item:hover {
  color: #ffffff;
  background: #04d39f;
}

.header .mega-menu .menu-links li a.active {
  color: #db2d2e;
}

.seen-data {
  background: #28a745;
  color: #ffffff;
  padding: 20px;
}

.infinite-scroll-component {
  overflow: hidden !important;
}

.lazyload-img {
  background-image: url(/static/media/loader-2.9eb4fed6.svg);
  background-position: center center;
  background-attachment: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  padding: 12px 30px;
  margin-left: -25px;
}

/* single-product edit */
.single-product-edit .entry-summary .form-control {
  border: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.single-product-edit .entry-summary .product_title {
  color: #323232;
  text-overflow: ellipsis;
}

.single-product-edit .entry-summary .form-group label {
  position: relative;
  padding-left: 21px;
  margin-right: 20px;
}

.single-product-edit .entry-summary .form-group label .form-check-input {
  margin-left: 0;
  left: 0;
  margin-top: 5px;
}

.single-product-edit .fileContainer .chooseFileButton {
  background: #323232;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #04d39f;
  border-radius: 50%;
  padding: 0;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.single-product-edit .fileContainer .chooseFileButton:hover {
  background: #ffffff;
}

.single-product-edit .fileContainer .chooseFileButton:before {
  content: "\f044";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  margin-top: -7px;
}

.single-product-edit .ciyashop-product-thumbnail__image {
  position: relative;
}

.single-product-edit .fileContainer {
  position: inherit;
  padding: 0;
  margin: 0;
}

.single-product-edit .fileContainer p {
  display: none;
}

.single-product-edit .fileContainer .uploadPictureContainer {
  width: 100%;
}

.single-product-edit .fileContainer .uploadPictureContainer img {
  object-fit: cover;
  width: 103px;
  height: 131px;
}

.single-product-edit .fileContainer .uploadPictureContainer {
  margin: 0;
  border: none;
  box-shadow: none;
}

.single-product-edit .fileContainer .deleteImage {
  width: 18px;
  height: 18px;
  font-size: 10px;
  line-height: 18px;
  top: 0;
  right: 0;
}

.single-product-edit .fileContainer .uploadPictureContainer {
  padding: 0;
}

.single-product-edit .fileContainer .uploadPicturesWrapper {
  position: absolute;
  top: 0;
  left: 0;
}

.single-product-edit .summary .form-group {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.single-product-edit .entry-summary .form-control {
  padding-top: 0;
}

.single-product-edit .summary .title {
  font-weight: 600;
  color: #323232;
  margin-bottom: 0;
}

.single-product-edit .edit-icon {
  position: relative;
}

.single-product-edit .product-top-right-inner {
  padding-left: 30px;
  margin-top: -10px;
}

.single-product-edit .edit-icon:before {
  position: absolute;
  content: "\f044";
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 900;
  left: -40px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #f5f5f5;
  color: #323232;
  text-align: center;
  top: 10px;
  border-radius: 3px;
}

.single-product-edit .edit-icon:nth-child(3):before {
  top: 3px;
}

.single-product-edit .product-top-right-inner .btn {
  color: #ffffff;
  margin-right: 5px;
}

.single-product-edit .product-top-right-inner .btn-primary:not(:disabled):not(.disabled).active,
.single-product-edit .product-top-right-inner .btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle {
  background: #323232;
  color: #ffffff;
}

.single-product-edit .product-top-right-inner a:not([href]):not([tabindex]):focus,
.single-product-edit .product-top-right-inner a:not([href]):not([tabindex]):hover {
  color: #ffffff;
}

.ciyashop-product-thumbnails__wrapper .slick-track {
  width: 100% !important;
}

/*modal-login*/
.modal .modal-header {
  padding: 0;
  margin: 0;
  border-bottom: 0;
}

.modal .modal-header .close {
  padding: 0;
  background: #fff;
  opacity: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #04d39f;
  text-shadow: none;
  position: absolute;
  right: -20px;
  top: -20px;
  margin: 0;
  z-index: 99;
  border: 1px solid #eee;
}

.modal .modal-header .close:hover {
  background: #323232;
  color: #fff;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  outline: none;
  box-shadow: none;
}

.modal-login .modal-header {
  background: #04d39f;
  padding: 24px;
}

.modal-login .modal-header h4 {
  color: #ffffff;
}

.modal-login .nav-tabs.nav-tabs {
  border: none;
  margin-bottom: 20px;
  justify-content: center;
}

.modal-login .nav-tabs.nav-tabs .nav-link {
  background: #fbfbfb;
  cursor: pointer;
  border-radius: 3px;
  color: #323232;
  border: none;
  margin-right: 3px;
}

.modal-login .nav-tabs.nav-tabs .nav-link.active {
  background: #04d39f;
  color: #ffffff;
}

.modal-login .modal-body {
  padding: 30px;
}

.modal-login .modal-body .form-control {
  background: #ffffff;
}

.pagination {
  justify-content: center;
}

.pagination .page-link {
  padding: 12px 18px;
  color: #323232;
  box-shadow: none;
}

.pagination .page-link:hover {
  background: #03d39f;
  color: #ffffff;
  border-color: #04d39f;
}

.page-item.active .page-link {
  background: #03d39f;
  color: #ffffff;
  border-color: #04d39f;
}

.react-tabs__tab-list {
  border: none !important;
  margin-bottom: 20px !important;
}

.react-tabs .react-tabs__tab-list .react-tabs__tab {
  background: #f5f5f5;
  color: #323232;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  margin-right: 3px;
  margin-bottom: 3px;
  box-shadow: none;
}

.ReactTable.invoices-table .rt-thead .rt-resizable-header-content {
  text-align: left;
}

.react-tabs .react-tabs__tab-list .react-tabs__tab.react-tabs__tab--selected,
.react-tabs .react-tabs__tab-list .react-tabs__tab:hover {
  background: #03d39f;
  border-color: #03d39f;
  color: #ffffff;
}

.reports-table {
  margin-top: 80px;
}

.canvasjs-chart-credit {
  display: none;
}

.Toastify__toast--success {
  background: #28a745;
  box-shadow: none;
}

.Toastify__toast--warning {
  background: #ffc107;
  color: #323232;
  box-shadow: none;
}

.Toastify__toast-body {
  padding: 2px 20px;
}

.Toastify__toast {
  padding: 0;
  min-height: 44px;
  box-shadow: none;
}

.Toastify__close-button {
  min-height: 44px;
  line-height: 44px;
  background: rgba(0, 0, 0, .3);
  padding: 10px 20px;
}

.ril__caption,
.ril__toolbar {
  background: transparent !important;
}

.ciyashop-btn .inline_hover:hover,
.ciyashop-btn.inline_hover:hover {
  color: #04d39f;
}

.ReactModal__Overlay.ReactModal__Overlay--after-open {
  z-index: 10000 !important;
}

.popup-overlay {
  z-index: 9999 !important;
}

button:focus {
  outline: 0
}

.ril__toolbarRightSide {
  padding-top: 10px;
}

.respond-form .comment-form-cookies-consent .form-check-input {
    margin-left: -1.5rem;
}

@media screen and (-ms-high-contrast:active), (-ms-high-contrast:none) {
  .single-post .entry-footer .share {
    width: 100%;
    display: flex;
  }

  .single-post .entry-footer .share .single-share-box {
    margin-left: auto;
  }

  .post {
    margin-bottom: 110px;
  }

  .recent-post .recent-post-image img {
    width: 100%;
  }

  .content-wrapper .content-wrapper {
    width: 100%;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    z-index: 999;
  }

  .ciyashop_info_box_2-icon_position-left {
    padding-bottom: 0;
  }

  .ciyashop_info_box_2-icon_position-left.icon-left-spacing {
    padding-bottom: 30px;
  }

  .ReactTable .rt-th,
  .ReactTable .rt-td {
    padding: 15px 6px 15px 6px;
  }

  .ReactTable .-pagination {
    padding: 6px 6px 0px 6px;
  }

  .single-product-edit .fileContainer .chooseFileButton {
    left: 50%;
    margin-left: -20px;
  }

  select {
    padding: 0 0px 0 10px
  }

  .Toastify__toast-body {
    padding: 20px 20px;
  }

  .cart_totals .shipping-calculator .popup-content {
    background: transparent !important;
    border: none !important;
    top: 32%;
  }

  .cart_totals .shop_table td {
    text-align: left;
  }

  .ReactTable .-pagination input {
    padding: 5px 7px 12px 7px;
  }

}

/*Checkboxes styles*/
.pgs-filter-checkbox input[type="checkbox"] { display: none; }

.pgs-filter-checkbox input[type="checkbox"] + .pgs-filter-checkbox label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  margin-right: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.pgs-filter-checkbox input[type="checkbox"] + label:last-child { margin-bottom: 0; }

.pgs-filter-checkbox input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #04d39f;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

.pgs-filter-checkbox input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Make modal large and centered */
/* Target the modal dialog (container) */
.custom-modal {
  max-width: 100vw;
  width: 95vw;
  height: 100vh;
  margin: auto;
  display: flex;
  align-items: center;
}

/* Make modal content fill height */
.custom-modal .modal-content {
  height: 100%;
  border-radius: 20px;
  padding: 10px;
  background: linear-gradient(to bottom right, #ffffff, #f1f4f8);
  overflow-y: auto;
}


@keyframes popup {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.fade-in-img {
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
}

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

.tp-bullets.custom .tp-bullet {
  background: transparent;
}

.tp-bullets.custom div.tp-bullet {
  display: inline-block;
  width: 56px;
  height: 56px;
  margin-right: 30px;
  font-size: 24px;
  color: #323232;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.tp-bullets.custom div.tp-bullet:before {
  text-align: center;
  line-height: 27px;
  width: 27px;
  display: inline-block;
}

.tp-bullets.custom div.tp-bullet:after {
  content: "/";
  position: absolute;
  right: 0px;
  font-size: 30px;
  color: #323232;
}

.tp-bullets.custom div.tp-bullet:last-child:after {
  content: none;
}

.tp-bullets.custom div.tp-bullet.selected {
  background: transparent;
  color: #04d39f;
  font-size: 36px;
}

.tp-bullets.custom div.tp-bullet.selected:hover,
.tp-bullets.custom div.tp-bullet:hover {
  background: transparent;
  color: #04d39f;
}

.tp-bullets.custom div.tp-bullet:nth-child(1):before {
  content: "01";
}

.tp-bullets.custom div.tp-bullet:nth-child(2):before {
  content: "02";
}

.tp-bullets.custom div.tp-bullet:nth-child(3):before {
  content: "03";
}

.tp-bullets.custom div.tp-bullet:nth-child(4):before {
  content: "04";
}

.tp-bullets.custom div.tp-bullet:nth-child(5):before {
  content: "05";
}

.tp-bullets.custom div.tp-bullet:nth-child(6):before {
  content: "06";
}

.tp-bullets.custom div.tp-bullet:nth-child(7):before {
  content: "07";
}

.tp-bullets.custom div.tp-bullet:nth-child(8):before {
  content: "08";
}

.tp-bullets.custom div.tp-bullet:nth-child(9):before {
  content: "09";
}

.custom.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
}

.custom .tp-bullet {
  width: 12px;
  height: 12px;
  position: absolute;
  background: #aaa;
  background: rgba(125, 125, 125, 0.5);
  cursor: pointer;
  box-sizing: content-box;
}

.custom .tp-bullet:hover,
.custom .tp-bullet.selected {
  background: #7d7d7d;
}

body,
html {
  font-family: "Open Sans", sans-serif;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  margin-top: 0;
  margin-bottom: 15px;
}

.header-style-menu-center .mega-menu .menu-links > li.current-menu-item > a {
  color: #04d39f;
}

.border-space {
  border-width: 1px;
  margin-top: 20px;
  margin-left: 80%;
  border-color: #323232;
  border-style: solid;
}

.border-space.border-space-dark {
  border-color: #323232;
}

.border-space.border-space-light {
  border-color: #fff;
}

.section-ptb {
  padding: 80px 0;
}

.section-pt {
  padding-top: 80px;
}

.section-pb {
  padding-bottom: 80px;
}

.section {
  margin-top: 80px;
  margin-bottom: 60px;
}

.section-1 .section-title h2 {
  font-size: 56px;
  line-height: 50px;
  text-align: right;
  font-weight: 700;
  word-break: break-word;
}

.section-1 .single_image-content {
  margin-top: -70px;
}

.section-1 .single_image-content p {
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

.section-1 .single_image-content p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
}

.section-1 .single_image-content p.text-dark {
  color: #323232 !important;
}

.section-1 .single_image-content .border-space {
  margin-left: 34px;
  margin-top: 12px;
}

.ciyashop_button_wrapper {
  display: inline-block;
}

.ciyashop_button_wrapper .ciyashop_button_size_medium a {
  font-size: 14px;
  padding: 12px 26px;
  line-height: 18px;
  color: #fff;
  background: #323232;
  display: inline-block;
}

.ciyashop_button_wrapper .ciyashop_button_size_medium a:hover {
  background: #04d39f;
}

.ciyashop_banner {
  position: relative;
  overflow: hidden;
}

.ciyashop_banner.ciyashop_banner-3 .ciyashop_banner-content-wrapper {
  align-items: flex-start !important;
}

.ciyashop_banner.ciyashop_banner-3 .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
  font-size: 105px !important;
  line-height: normal !important;
  font-weight: 500 !important;
  font-family: "Open Sans", sans-serif;
}

.ciyashop_banner.ciyashop_banner-3 .ciyashop_banner-text-wrap .ciyashop_banner-text h3 {
  font-size: 28px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif;
}

.ciyashop_banner.ciyashop_banner-3 .ciyashop_banner-btn-wrap .ciyashop_banner-btn {
  line-height: 44px;
  padding: 0 25px !important;
  font-weight: 500 !important;
  color: #fff !important;
  background-color: #04d39f;
  border: none !important;
}

.ciyashop_banner.ciyashop_banner-3 .ciyashop_banner-btn-wrap .ciyashop_banner-btn:hover {
  background-color: #323232;
}

.ciyashop_banner .ciyashop_banner-content {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 10;
  padding: 25px;
  -webkit-transition: background .5s ease;
  -o-transition: background .5s ease;
  transition: background .5s ease;
}

.ciyashop_banner .ciyashop_banner-content-1 {
  padding-left: 48%;
}

.ciyashop_banner .ciyashop_banner-content-2 {
  padding-right: 48%;
  text-align: right;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
}

.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-vbottom {
  top: inherit;
}

.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-vbottom .ciyashop_banner-content-wrapper {
  justify-content: center;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-label-wrap .ciyashop_banner-label {
  font-size: 16px;
  color: #ffffff;
  background-color: #323232;
  line-height: 20px;
  font-weight: 700;
  padding: 7px 15px;
  margin: 0;
  margin-bottom: 10px;
  display: inline-block;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-label-wrap .ciyashop_banner-label.ciyashop_banner-lanel-bg-yellow {
  background-color: #fff2d5;
  color: #323232;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
  font-size: 32px;
  color: #323232;
  font-weight: 700;
  text-transform: capitalize;
  line-height: normal;
  margin: 0;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap {
  position: relative;
  z-index: 9;
  margin-top: 15px;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap .ciyashop_banner-btn {
  font-weight: 600;
  border-bottom: 0px solid;
  padding-left: 0;
  padding-right: 0;
  color: #969696;
  display: inline-block;
  font-size: 14px;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap .ciyashop_banner-btn:hover {
  color: #04d39f;
}

.ciyashop_banner .countdown {
  padding: 0;
  margin: 0 0 0 !important;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.ciyashop_banner .countdown li {
  background: 0 0;
  padding: 0;
  margin: 0;
  margin-right: 10px;
  border: none;
  display: inline-block;
  line-height: 20px;
  text-align: center;
  min-width: 50px;
}

.ciyashop_banner .countdown li span {
  display: block;
  font-size: 28px;
  color: #323232;
  line-height: 40px;
  padding-bottom: 5px;
  font-weight: 600;
}

.ciyashop_banner .countdown li p {
  background: #323232;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 0 10px;
  text-transform: uppercase;
}

.ciyashop_banner.ciyashop_banner-style-deal-1 .ciyashop_banner-content {
  padding: 120px 0;
  position: relative;
}

.section-2 .ciyashop_banner-content-wrapper {
  justify-content: center;
  text-align: center;
}

.section-2 .ciyashop_banner-content-wrapper .ciyashop_banner-label {
  font-size: 28px !important;
  line-height: 38px !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 400 !important;
}

.section-2 .ciyashop_banner-content-wrapper .ciyashop_banner-text h2 {
  margin-top: 30px;
  font-size: 62px;
  color: #323232;
  font-style: normal;
  font-weight: 600;
  line-height: 82px;
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
}

.section-2 .ciyashop_banner-content-wrapper .ciyashop_banner-btn {
  font-size: 14px;
  line-height: 44px;
  padding: 0 25px !important;
  color: #323232 !important;
  background-color: #fff;
  border: none !important;
}

.section-2 .ciyashop_banner-content-wrapper .ciyashop_banner-btn:hover {
  background-color: #323232;
  color: #fff !important;
}

.section-3 .ciyashop_button_wrapper {
  margin-top: 0;
}

.section-3 .ciyashop_button_wrapper a.inline_hover {
  position: relative;
  background: transparent;
  color: #323232;
  font-size: 14px;
  padding: 3px 0;
  line-height: 22px;
}

.section-3 .ciyashop_button_wrapper a.inline_hover:after {
  content: "";
  width: 100%;
  border-bottom: 2px solid;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.section-3 .ciyashop_button_wrapper a.inline_hover:hover {
  background: transparent;
}

.section-3 .ciyashop_button_wrapper a.inline_hover:hover:after {
  width: 30%;
}

.banner-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-4 .input-area {
  background-color: #fff;
  padding-left: 0;
  border-radius: 3px;
}

.newsletter-wrapper .newsletter-title {
  line-height: 38px;
  font-weight: 700;
}

.position-a {
  position: absolute;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #969696;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-weight: 700;
  line-height: 44px;
  font-size: 36px;
}

h2 {
  font-weight: 700;
  line-height: 38px;
  font-size: 30px;
}

h3 {
  font-weight: 700;
  line-height: 34px;
  font-size: 26px;
}

h4 {
  font-weight: 500;
  line-height: 30px;
  font-size: 22px;
}

h5 {
  font-weight: 500;
  line-height: 28px;
  font-size: 20px;
}

h6 {
  font-weight: 500;
  line-height: 22px;
  font-size: 18px;
}

/***************************
    REVOLUTION SLIDER
***************************/
#rev_slider_15_1 .metis.tparrows {
  background: white;
  padding: 10px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
}

#rev_slider_15_1 .metis.tparrows:hover {
  background: rgba(255, 255, 255, 0.75);
}

#rev_slider_15_1 .metis.tparrows:hover:before {
  transform: scale(1.5);
}

#rev_slider_15_1 .metis.tparrows:before {
  color: black;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

/***************************
    HEADER CSS
***************************/

/***************************
    FOOTER CSS
***************************/

/***************************
    LAYOUT CSS
***************************/
.single-img-wrapper {
  position: relative;
}

.single-img-wrapper .text-wrapper {
  text-align: center;
  padding: 20px 15px;
}

.single-img-wrapper .text-wrapper h5 {
  margin-bottom: 0;
}

.single-img-wrapper .text-wrapper p {
  margin-bottom: 0;
}

.single-img-wrapper .single-img-content {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 220px;
}

.single-img-wrapper .single-img-content.content-vbottom {
  bottom: 60px;
  top: inherit;
}

.single-img-wrapper.single-img-wrapper-1 {
  padding-right: 10%;
}

.single-img-wrapper.single-img-wrapper-1 .text-wrapper {
  margin-top: 30px;
}

.single-img-wrapper.single-img-wrapper-1 .single-img-content {
  left: 220px;
  top: 0;
}

.single-img-wrapper.single-img-wrapper-2 {
  padding-left: 10%;
}

.single-img-wrapper.single-img-wrapper-2 .text-wrapper {
  margin-bottom: 30px;
}

.single-img-wrapper.single-img-wrapper-2 .single-img-content {
  left: 0px;
}

.single-img-wrapper.single-img-wrapper-3 {
  padding-left: 10%;
}

.single-img-wrapper.single-img-wrapper-3 .text-wrapper {
  margin-top: 95px;
}

.single-img-wrapper.single-img-wrapper-3 .single-img-content {
  top: inherit;
  left: 0;
  bottom: 50px;
  width: 100%;
  text-align: center;
  padding-left: 10%;
  margin-bottom: 70px;
}

.single-img-wrapper.single-img-wrapper-3 .single-img-content .border-line {
  margin-right: 40%;
  margin-left: 40%;
}

.border-line {
  height: 2px;
  margin-top: 60px;
  margin-right: 80%;
  margin-bottom: 10px;
  background-color: #c1eade;
}

.bg-sky {
  background: #e3f6fc;
}

.bg-orange {
  background: #fde1d6;
}

.bg-green {
  background: #cdf6ec;
}

a.inline_hover {
  position: relative;
  background: transparent;
  color: #323232;
  font-size: 14px;
  padding: 3px 0;
  line-height: 22px;
}

a.inline_hover:after {
  content: "";
  width: 100%;
  border-bottom: 2px solid;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

a.inline_hover:hover {
  background: transparent;
}

a.inline_hover:hover:after {
  width: 30%;
}

.products .product .onsale.featured {
  top: 41px !important;
  background: #f4524d;
  text-transform: uppercase;
}

.products .product .onsale.featured:before,
.products .product .onsale.featured:after {
  border-left-color: #f4524d;
  color: #f4524d;
}

.countdown-main {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 140px;
  padding-top: 140px;
}

.countdown-main .section-title-wrapper h2 {
  font-size: 78px;
  line-height: 78px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.countdown-main .section-title-wrapper p {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #323232;
  margin-bottom: 0;
}

.countdown {
  padding: 0;
  margin: 15px 0 0 !important;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.countdown li {
  margin: 0;
  margin-right: 5px;
  border: none;
  display: inline-block;
  line-height: 20px;
  text-align: center;
  min-width: 50px;
  background: #323232;
  padding: 8px 10px;
  border-radius: 3px;
}

.countdown li span {
  display: block;
  font-size: 22px;
  color: #fff;
  line-height: 32px;
  font-weight: 600;
}

.countdown li p {
  background: #323232;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 0 10px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.newsletter-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsletter-section .newsletter-wrapper .newsletter-title {
  font-weight: 700;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .input-area .newsletter-email {
  background: #fff !important;
  color: #323232 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .input-area .newsletter-email::placeholder {
  color: #969696 !important;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area .btn.submit,
.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area:before {
  color: #323232;
}

.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area .btn.submit:hover,
.newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area .btn.submit:focus {
  color: #04d39f;
}

.ciyashop_clients {
  padding-top: 50px;
  padding-bottom: 50px;
}

.owl-carousel .owl-item img {
  width: auto;
}

.instragram-wrapper {
  margin-bottom: 80px;
}

@media (min-width:1200px) {
  .container {
    max-width: 1300px;
  }

}

body,
html {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 24px;
  font-size: 14px;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 44px;
  font-size: 36px;
}

h2,
.deal-banner .caption h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 38px;
  font-size: 30px;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 34px;
  font-size: 26px;
}

h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 30px;
  font-size: 22px;
}

h5,
.testimonials h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 28px;
  font-size: 20px;
}

h6,
.share h5,
.share ul,
.sidebar .widget .item-detail h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 22px;
  font-size: 18px;
}

/*--------------------  Revolution Layer Style Start  -------------------*/
#rev_slider_24_1 .metis.tparrows {
  background: white;
  padding: 10px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
}

#rev_slider_24_1 .metis.tparrows:hover {
  background: rgba(255, 255, 255, 0.75);
}

#rev_slider_24_1 .metis.tparrows:before {
  color: black;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

#rev_slider_24_1 .metis.tparrows:hover:before {
  transform: scale(1.5);
}

/*-------------------- Section title Start  -------------------*/
.section-title {
  margin-bottom: 35px;
}

.section-title h2.title {
  text-align: center;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.sub-title {
  margin-top: -10px;
  margin-bottom: 40px;
}

/*--------------------  Top Info Section Start  -------------------*/
.top-info-box {
  background-color: #fef0ea;
}

.top-info-box .section-title {
  padding-top: 15px;
  padding-bottom: 15px;
}

.top-info-box .section-title h6 {
  font-size: 17px;
  text-align: center;
  font-family: Lato;
  font-weight: 700;
  font-style: normal;
  margin-top: 0px;
  margin-bottom: 0px;
}

.border-section {
  border-left: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-top: 0px;
  border-bottom: 0px;
}

/*--------------------  Client Slider Start  -------------------*/
.client-slider {
  margin-top: 30px;
}

/*--------------------  Categoru Slider Start  -------------------*/
.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap-1 .ciyashop_banner-text.tag-text {
  font-size: 0.23em;
  color: #323232;
  background-color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 30px;
  font-weight: 600;
  padding: 7px 15px;
  margin-bottom: 5px;
}

.ciyashop_banner .ciyashop_banner-content-inner-wrapper {
  font-size: 70px;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.42em;
  color: #323232;
  line-height: 55px;
}

.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap.ciyashop_banner-btn-style-link .ciyashop_banner-btn {
  color: #323232;
}

.ciyashop_banner.ciyashop_banner-style-deal-1 .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
  font-size: 62px;
  font-weight: 600;
}

.ciyashop_banner.ciyashop_banner-style-deal-1 .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap.ciyashop_banner-btn-style-flat .ciyashop_banner-btn {
  background: #ffffff;
}

/*--------------------  Newsletter Start  -------------------*/
.newsletter-bg {
  padding-top: 25px;
  padding-right: 30px;
  padding-left: 30px;
  background-color: #e3f6fc;
  padding-bottom: 25px;
}

.newsletter-bg h4.title {
  text-align: center;
  font-weight: 600;
}

/*--------------------  testimonial  Start  -------------------*/
.testimonial-bg {
  margin-right: 0px;
  margin-left: 0px;
  background-image: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABQAAD/4QMvaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzEzOCA3OS4xNTk4MjQsIDIwMTYvMDkvMTQtMDE6MDk6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE3IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpENjVFQjQ1MkE4MjYxMUU4OTZGMDk4MzM2ODA2Q0M0NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpENjVFQjQ1M0E4MjYxMUU4OTZGMDk4MzM2ODA2Q0M0NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ2NUVCNDUwQTgyNjExRTg5NkYwOTgzMzY4MDZDQzQ3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ2NUVCNDUxQTgyNjExRTg5NkYwOTgzMzY4MDZDQzQ3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQAAgICAgICAgICAgMCAgIDBAMCAgMEBQQEBAQEBQYFBQUFBQUGBgcHCAcHBgkJCgoJCQwMDAwMDAwMDAwMDAwMDAEDAwMFBAUJBgYJDQsJCw0PDg4ODg8PDAwMDAwPDwwMDAwMDA8MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM/8AAEQgBZwUUAwERAAIRAQMRAf/EAJIAAQACAwEBAAAAAAAAAAAAAAAEBQIDBgEJAQEAAgMBAAAAAAAAAAAAAAAAAgUBAwQGEAEAAgECAwUECQMFAAAAAAAAAQIDEQQhMVFBYXESBZEiMhOBocHR4UJSYoKyQzTwI1NzFBEBAAICAQIEBQMFAQAAAAAAAAECEQMxIQRBURIFYXGBIhORobHBMkIjM9H/2gAMAwEAAhEDEQA/APvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACJvreXZ7if2THt4Mxy5u8tjTb5OMbHkwAAAAAAAAAAAAAAAAAAF56JbTJnp1rE+yfxRsuPaLfdaPg6JBegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIHqf+Dn/AI/1QzXlxe4f8LfT+Ycg2PLgAAAAAAAAAAAAAAAAAALj0X/Jyf8AVP8AVCNlr7T/ANZ+X9YdMg9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAheox5tluI/bE+yYlmOXJ30Z0Wcc2PKgAAAAAAAAAAAAAAAAAALr0WP8AfzW6Y9PbMfcjZbe0R/stPwdIgvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGrPT5mDNj7b0tEeMwQ1bqeulq+cS4ZteQBgAAAAAAAAAAAAAAAAAB0PolNKZ8n6pisfRx+1Cy99op9trfReorgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABxW7xfJ3ObHyiLTNfCeMfU2Q8l3Wv8e21fijMucAAAAAAAAAAAAAAAAAB1/puL5WzxRPCb+/P8uX1NduXqew1+jTHx6/qnsOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABz/AK1g0tj3ERwn3L+POE6ypPdtPWLx8pUKSlAAAAAAAAAAAAAAAAAb9thncZ8eKPzz709I7fqJlu7fV+XZFfN20RERERGkRwiGp66Ix0ejIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADRuMNdxhyYbfnjhPSeyWYnDTv1RtpNZ8XF3pbHe1LxpakzFo74bHkr1mszE8wwEQAAAAAAAAAAAAAAAHR+j7by0tubxxv7uPw7Z+lC0r72rt8ROyfHhdorcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRer7PWP8A1Y44xwzRHTslKsqb3Ptc/wCyv1/9c8mowAAAAAAAAAAAAAAEvZ7W26zRSOFI45LdI/FiZw6u07ed98eHi7Kta0rWtY0rWNKx0iGt6qtYrGI4ejIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADyYiYmJjWJ4TEjExlyvqGxnbX+ZjjXBeeH7Z6S2ROXm++7OdM+qv9s/srGVeAAAAAAAAAAAAA24cWTPkrjx181rf61kbNWq2y0Vry6/abWm0xRjrxtPHJfrLXM5ep7bt66KemPqlMOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjelclbUvWLVtGlqyI2rFoxPDl996dfbTOTHE3wT29tfH72yJy873nYW0/dXrX+FWyrgAAAAAAAAAAG/Bt8u4vGPFXzT2z2RHWZJnDdp02229NYdXs9nj2lNK+9kt8eTr4dzXM5el7Xta6K4jnxlMYdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMa8J4xPOAUm79JrfXJttKW5zin4Z8OiUWVHde2Rb7tfSfLwUGTFkw2mmWk0tHZKal2a7a5xaMS1jWAAAAAAA9GVptfS82fS+XXDi7/inwhGbLHtvbb7Otukfu6PDgxbekY8VIrXt6z3zKEzlfatNNVfTWMNw2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANeXDizV8mWkXr0n7BDZqrsjFoyp8/otLazt8k0n9FuMe3mlFlVu9prPWk4+asy+m7zFzwzeOtPe+rmlmFfs7DdT/HPy6oVq2pOlqzWekxoy5LVmvMYYiID0ZSMe03OX4MF5jrMaR7Z4MZb6drtvxWVjh9GzW0nNkrjj9Nfen7mPU7tXtN5/vnH7rjb7HbbbSaY9bx/ctxn8PoRmVro7PVp4jr5ymMOoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5MRMaTETHSRiYieWqdvt7c8GOfGsfczlrnRrnmsfpDyNrto5bfFH8K/cZYjt9Uf4x+kNlaUp8NK18IiGGytK14jDMSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeTMRzmI8WcMTMQx+Zjjnkr7YZ9E+SP5K+cHzMf8AyV9sHonyPyV84ZRas8pifBjEpRaJ4esMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPJmIjWZ0jrJjLEzhHvusdeFdbz3cva2102lz37qkcdUa27yT8MRT626NMRy57d1aeOjTbLktzvM92qcUiPBpnZaeZa0msZAAGdcl6/DeY+lGaxPgnGy0cS3V3WWvPS0d/4Nc6ay3V7q8c9Umm7x24WiaT7YaraZjh0U7qs89EmLRaNazEx1hqmJjl0xaJ4esMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHLmCJk3da8Mceaf1djfTTM8uTZ3UR0r1Qb5L5J1taZ7ux0VrFeHFfZa/MsEkAAAAAAAAAGVb2pOtbTWe5GaxPKVbTWcwm493HLJGn7o+5ovo8nZr7rwsmRMWiJidYnlMNExh2RMT1h6wyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwyZK4662nwjtlKtZtPRDZsikZlWZc98vPhXsrDrpriqt27rX+TS2NIAAAAAAAAAAAADZjy3xTrWeHbXslC1Ity269tqT0WeLNXLHDhaOdXJek1WOrbGyOjag2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANWXNXFXWeNp+GqdKTaWrbtjXHxVV72yWm1p1l2VrFYxCsvebzmWKSAAAAAAAAAAAAAAAD2tprMWrOkxyliYylW01nMLPBnjLGk8Lxzjq5Nmv0/JZad8X6TykNTeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA15ckYqzaef5Y6ylSnqnDXt2RSMyqb3te02tOsy7a1iIxCqvebTmWKSIAAAAAAAAAAAAAAAAD2JmsxMTpMcpYmMsxMxOYWuDNGWvS0fFDj2U9MrTTt/JHxbmtuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVGXJOW82nlHwx3O6lPTCp27JvbLUm1AAAAAAAAAAAAAAAAAAAM6XnHaLV5wjasWjCdLzScwt6Xi9YtXlLhtXE4W1LxaMwyYSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaxUgAAAAAAAAAAAAAAAAAAAACVtcvlv5Jn3b8vFp3UzGXV22z0zieJWTkWIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACjWKkAAAAAAAAAAAAAAAAAAAAAGBb4cnzMdbdvK3i4tlfTOFtpv665bUG0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRrFSAAAAAAAAAAAAAAAAAAAAAAJe0vpeaTyvHDxho31zGXX2l8Wx5rFyrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRrFSAAAAAAAAAAAAAAAAAAAAAAMqW8tq2j8s6o2jMYSpb0zErqJ1jWOUuBcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAo1ipAAAAAAAAAAAAAAAAAAAAAAAFtgt5sVJ6Rp7ODh2Ri0rbRbNIbkG0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRrFSAAAAAAAAAAAAAAAAAAAAAAALLaTrjmOlnJvj7lj2k/b9UppdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACjWKkAAAAAAAAAAAAAAAAAAAAAAAT9nPDJHfDm3+Du7PiU1zu0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRrFSAAAAAAAAAAAAAAAAAAAAAAAJ2y/ufR9rm3+Du7Px+ic53aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAo1ipAAAAAAAAAAAAAAAAAAAAAAAFhs49289ZiHLv5h39nHSUxodgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACjWKkAAAAAAAAAAAAAAAAAAAAAAAWe1jTFr+qZn7HHun7ln2sYoktToAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaxUgAAAAAAAAAAAAAAAAAAAAAAC5x18uOlekcXBeczMrjXX01iGaKYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACjWKkAAAAAAAAAAAAAAAAAAAAAAbcNPPlpHZrrPhCGy2Ky26a+q8Qt3CtgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFGsVIAAAAAAAAAAAAAAAAAAAAAAnbOtfetrHmnhEdujm3zPDu7SI6z4pzndoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//Z);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*--------------------  Latest Post Start  -------------------*/
.latest-post-wrapper .latest-post-item .avatar-20 {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50px;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(data:image/gif;base64,R0lGODlhIAAgAPUAAP///wAAAPr6+sTExOjo6PDw8NDQ0H5+fpqamvb29ubm5vz8/JKSkoaGhuLi4ri4uKCgoOzs7K6urtzc3D4+PlZWVmBgYHx8fKioqO7u7kpKSmxsbAwMDAAAAM7OzsjIyNjY2CwsLF5eXh4eHkxMTLCwsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAKAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAIAAgAAAG/0CAcEgkFjgcR3HJJE4SxEGnMygKmkwJxRKdVocFBRRLfFAoj6GUOhQoFAVysULRjNdfQFghLxrODEJ4Qm5ifUUXZwQAgwBvEXIGBkUEZxuMXgAJb1dECWMABAcHDEpDEGcTBQMDBQtvcW0RbwuECKMHELEJF5NFCxm1AAt7cH4NuAOdcsURy0QCD7gYfcWgTQUQB6Zkr66HoeDCSwIF5ucFz3IC7O0CC6zx8YuHhW/3CvLyfPX4+OXozKnDssBdu3G/xIHTpGAgOUPrZimAJCfDPYfDin2TQ+xeBnWbHi37SC4YIYkQhdy7FvLdpwWvjA0JyU/ISyIx4xS6sgfkNS4me2rtVKkgw0JCb8YMZdjwqMQ2nIY8BbcUQNVCP7G4MQq1KRivR7tiDEuEFrggACH5BAAKAAEALAAAAAAgACAAAAb/QIBwSCQmNBpCcckkEgREA4ViKA6azM8BEZ1Wh6LOBls0HA5fgJQ6HHQ6InKRcWhA1d5hqMMpyIkOZw9Ca18Qbwd/RRhnfoUABRwdI3IESkQFZxB4bAdvV0YJQwkDAx9+bWcECQYGCQ5vFEQCEQoKC0ILHqUDBncCGA5LBiHCAAsFtgqoQwS8Aw64f8m2EXdFCxO8INPKomQCBgPMWAvL0n/ff+jYAu7vAuxy8O/myvfX8/f7/Arq+v0W0HMnr9zAeE0KJlQkJIGCfE0E+PtDq9qfDMogDkGmrIBCbNQUZIDosNq1kUsEZJBW0dY/b0ZsLViQIMFMW+RKKgjFzp4fNokPIdki+Y8JNVxA79jKwHAI0G9JGw5tCqDWTiFRhVhtmhVA16cMJTJ1OnVIMo1cy1KVI5NhEAAh+QQACgACACwAAAAAIAAgAAAG/0CAcEgkChqNQnHJJCYWRMfh4CgamkzFwBOdVocNCgNbJAwGhKGUOjRQKA1y8XOGAtZfgIWiSciJBWcTQnhCD28Qf0UgZwJ3XgAJGhQVcgKORmdXhRBvV0QMY0ILCgoRmIRnCQIODgIEbxtEJSMdHZ8AGaUKBXYLIEpFExZpAG62HRRFArsKfn8FIsgjiUwJu8FkJLYcB9lMCwUKqFgGHSJ5cnZ/uEULl/CX63/x8KTNu+RkzPj9zc/0/Cl4V0/APDIE6x0csrBJwybX9DFhBhCLgAilIvzRVUriKHGlev0JtyuDvmsZUZlcIiCDnYu7KsZ0UmrBggRP7n1DqcDJEzciOgHwcwTyZEUmIKEMFVIqgyIjpZ4tjdTxqRCMPYVMBYDV6tavUZ8yczpkKwBxHsVWtaqo5tMgACH5BAAKAAMALAAAAAAgACAAAAb/QIBwSCQuBgNBcck0FgvIQtHRZCYUGSJ0IB2WDo9qUaBQKIXbLsBxOJTExUh5mB4iDo0zXEhWJNBRQgZtA3tPZQsAdQINBwxwAnpCC2VSdQNtVEQSEkOUChGSVwoLCwUFpm0QRAMVFBQTQxllCqh0kkIECF0TG68UG2O0foYJDb8VYVa0alUXrxoQf1WmZnsTFA0EhgCJhrFMC5Hjkd57W0jpDsPDuFUDHfHyHRzstNN78PPxHOLk5dwcpBuoaYk5OAfhXHG3hAy+KgLkgNozqwzDbgWYJQyXsUwGXKNA6fnYMIO3iPeIpBwyqlSCBKUqEQk5E6YRmX2UdAT5kEnHKkQ5hXjkNqTPtKAARl1sIrGoxSFNuSEFMNWoVCxEpiqyRlQY165wEHELAgAh+QQACgAEACwAAAAAIAAgAAAG/0CAcEgsKhSLonJJTBIFR0GxwFwmFJlnlAgaTKpFqEIqFJMBhcEABC5GjkPz0KN2tsvHBH4sJKgdd1NHSXILah9tAmdCC0dUcg5qVEQfiIxHEYtXSACKnWoGXAwHBwRDGUcKBXYFi0IJHmQEEKQHEGGpCnp3AiW1DKFWqZNgGKQNA65FCwV8bQQHJcRtds9MC4rZitVgCQbf4AYEubnKTAYU6eoUGuSpu3fo6+ka2NrbgQAE4eCmS9xVAOW7Yq7IgA4Hpi0R8EZBhDshOnTgcOtfM0cAlTigILFDiAFFNjk8k0GZgAxOBozouIHIOyKbFixIkECmIyIHOEiEWbPJTTQ5FxcVOMCgzUVCWwAcyZJvzy45ADYVZNIwTlIAVfNB7XRVDLxEWLQ4E9JsKq+rTdsMyhcEACH5BAAKAAUALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RagJmQgtHaX5XZUYKQ4YKEYSKfVKPaUMZHwMDeQBxh04ABYSFGU4JBpsDBmFHdXMLIKofBEyKCpdgspsOoUsLXaRLCQMgwky+YJ1FC4POg8lVAg7U1Q5drtnHSw4H3t8HDdnZy2Dd4N4Nzc/QeqLW1bnM7rXuV9tEBhQQ5UoCbJDmWKBAQcMDZNhwRVNCYANBChZYEbkVCZOwASEcCDFQ4SEDIq6WTVqQIMECBx06iCACQQPBiSabHDqzRUTKARMhSFCDrc+WNQIcOoRw5+ZIHj8ADqSEQBQAwKKLhIzowEEeGKQ0owIYkPKjHihZoBKi0KFE01b4zg7h4y4IACH5BAAKAAYALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RagJmQgtHaX5XZUUJeQCGChGEin1SkGlubEhDcYdOAAWEhRlOC12HYUd1eqeRokOKCphgrY5MpotqhgWfunqPt4PCg71gpgXIyWSqqq9MBQPR0tHMzM5L0NPSC8PCxVUCyeLX38+/AFfXRA4HA+pjmoFqCAcHDQa3rbxzBRD1BwgcMFIlidMrAxYICHHA4N8DIqpsUWJ3wAEBChQaEBnQoB6RRr0uARjQocMAAA0w4nMz4IOaU0lImkSngYKFc3ZWyTwJAALGK4fnNA3ZOaQCBQ22wPgRQlSIAYwSfkHJMrQkTyEbKFzFydQq15ccOAjUEwQAIfkEAAoABwAsAAAAACAAIAAABv9AgHBILCoUi6JySUwSBUdBUcpUJhSZZ5RYUCSq060QqqACyAVwMXIcks2ZtlrrHYvJ3zn3mHwLjxFqAmZCC0dpfldlRQl5AIYKEYSKfVKQaW5sSENxh04ABYSFGU4LXYdhR3V6p5GiQ4oKmGCtjkymi2qGBZ+6eo+3g8KDvYLDxKrJuXNkys6qr0zNygvHxL/V1sVD29K/AFfRRQUDDt1PmoFqHgPtBLetvMwG7QMes0KxkkIFIQNKDhBgKvCh3gQiqmxt6NDBAAEIEAgUOHCgBBEH9Yg06uWAIQUABihQMACgBEUHTRwoUEOBIcqQI880OIDgm5ABDA8IgUkSwAAyij1/jejAARPPIQwONBCnBAJDCEOOCnFA8cOvEh1CEJEqBMIBEDaLcA3LJIEGDe/0BAEAIfkEAAoACAAsAAAAACAAIAAABv9AgHBILCoUi6JySUwSBUdBUcpUJhSZZ5RYUCSq060QqqACyAVwMXIcks2ZtlrrHYvJ3zn3mHwLjxFqAmZCC0dpfldlRQl5AIYKEYSKfVKQaW5sSENxh04ABYSFGU4LXYdhR3V6p5GiQ4oKmGCtjkymi2qGBZ+6eo+3g8KDvYLDxKrJuXNkys6qr0zNygvHxL/V1sVDDti/BQccA8yrYBAjHR0jc53LRQYU6R0UBnO4RxmiG/IjJUIJFuoVKeCBigBN5QCk43BgFgMKFCYUGDAgFEUQRGIRYbCh2xACEDcAcHDgQDcQFGf9s7VkA0QCI0t2W0DRw68h8ChAEELSJE8xijBvVqCgIU9PjwA+UNzG5AHEB9xkDpk4QMGvARQsEDlKxMCALDeLcA0rqEEDlWCCAAAh+QQACgAJACwAAAAAIAAgAAAG/0CAcEgsKhSLonJJTBIFR0FRylQmFJlnlFhQJKrTrRCqoALIBXAxchySzZm2Wusdi8nfOfeYfAuPEWoCZkILR2l+V2VFCXkAhgoRhIp9UpBpbmxIQ3GHTgAFhIUZTgtdh2FHdXqnkaJDigqYYK2OTKaLaoYFn7p6j0wOA8PEAw6/Z4PKUhwdzs8dEL9kqqrN0M7SetTVCsLFw8d6C8vKvUQEv+dVCRAaBnNQtkwPFRQUFXOduUoTG/cUNkyYg+tIBlEMAFYYMAaBuCekxmhaJeSeBgiOHhw4QECAAwcCLhGJRUQCg3RDCmyUVmBYmlOiGqmBsPGlyz9YkAlxsJEhqCubABS9AsPgQAMqLQfM0oTMwEZ4QpLOwvMLxAEEXIBG5aczqtaut4YNXRIEACH5BAAKAAoALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RahAQRQtHaX5XZUUJeQAGHR0jA0SKfVKGCmlubEhCBSGRHSQOQwVmQwsZTgtdh0UQHKIHm2quChGophuiJHO3jkwOFB2UaoYFTnMGegDKRQQG0tMGBM1nAtnaABoU3t8UD81kR+UK3eDe4nrk5grR1NLWegva9s9czfhVAgMNpWqgBGNigMGBAwzmxBGjhACEgwcgzAPTqlwGXQ8gMgAhZIGHWm5WjelUZ8jBBgPMTBgwIMGCRgsygVSkgMiHByD7DWDmx5WuMkZqDLCU4gfAq2sACrAEWFSRLjUfWDopCqDTNQIsJ1LF0yzDAA90UHV5eo0qUjB8mgUBACH5BAAKAAsALAAAAAAgACAAAAb/QIBwSCwqFIuickk0FIiCo6A4ZSoZnRBUSiwoEtYipNOBDKOKKgD9DBNHHU4brc4c3cUBeSOk949geEQUZA5rXABHEW4PD0UOZBSHaQAJiEMJgQATFBQVBkQHZKACUwtHbX0RR0mVFp0UFwRCBSQDSgsZrQteqEUPGrAQmmG9ChFqRAkMsBd4xsRLBBsUoG6nBa14E4IA2kUFDuLjDql4peilAA0H7e4H1udH8/Ps7+3xbmj0qOTj5mEWpEP3DUq3glYWOBgAcEmUaNI+DBjwAY+dS0USGJg4wABEXMYyJNvE8UOGISKVCNClah4xjg60WUKyINOCUwrMzVRARMGENWQ4n/jpNTKTm15J/CTK2e0MoD+UKmHEs4onVDVVmyqdpAbNR4cKTjqNSots07EjzzJh1S0IADsAAAAAAAAAAAA=) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/static/media/slick.ced611da.eot);
    src: url(/static/media/slick.ced611da.eot?#iefix) format('embedded-opentype'), url(/static/media/slick.b7c9e1e4.woff) format('woff'), url(/static/media/slick.d41f55a7.ttf) format('truetype'), url(/static/media/slick.f97e3bbf.svg#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/*!
 *  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(/static/media/fontawesome-webfont.674f50d2.eot);src:url(/static/media/fontawesome-webfont.674f50d2.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(/static/media/fontawesome-webfont.af7ae505.woff2) format('woff2'),url(/static/media/fontawesome-webfont.fee66e71.woff) format('woff'),url(/static/media/fontawesome-webfont.b06871f2.ttf) format('truetype'),url(/static/media/fontawesome-webfont.912ec66d.svg#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:.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:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.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{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}

/**
* Rangeslider
*/
.rangeslider {
  margin: 20px 0;
  position: relative;
  background: #e6e6e6;
  -ms-touch-action: none;
  touch-action: none;
}
.rangeslider,
.rangeslider .rangeslider__fill {
  display: block;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}
.rangeslider .rangeslider__handle {
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 -1px 3px rgba(0, 0, 0, 0.4);
}
.rangeslider .rangeslider__handle .rangeslider__active {
  opacity: 1;
}
.rangeslider .rangeslider__handle-tooltip {
  width: 40px;
  height: 40px;
  text-align: center;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  font-weight: normal;
  font-size: 14px;
  transition: all 100ms ease-in;
  border-radius: 4px;
  display: inline-block;
  color: white;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.rangeslider .rangeslider__handle-tooltip span {
  margin-top: 12px;
  display: inline-block;
  line-height: 100%;
}
.rangeslider .rangeslider__handle-tooltip:after {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
}
/**
* Rangeslider - Horizontal slider
*/
.rangeslider-horizontal {
  height: 12px;
  border-radius: 10px;
}
.rangeslider-horizontal .rangeslider__fill {
  height: 100%;
  background-color: #7cb342;
  border-radius: 10px;
  top: 0;
}
.rangeslider-horizontal .rangeslider__handle {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.rangeslider-horizontal .rangeslider__handle:after {
  content: ' ';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 6px;
  left: 6px;
  border-radius: 50%;
  background-color: #dadada;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) inset, 0 -1px 3px rgba(0, 0, 0, 0.4) inset;
}
.rangeslider-horizontal .rangeslider__handle-tooltip {
  top: -55px;
}
.rangeslider-horizontal .rangeslider__handle-tooltip:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(0, 0, 0, 0.8);
  left: 50%;
  bottom: -8px;
  transform: translate3d(-50%, 0, 0);
}
/**
* Rangeslider - Vertical slider
*/
.rangeslider-vertical {
  margin: 20px auto;
  height: 150px;
  max-width: 10px;
  background-color: transparent;
}
.rangeslider-vertical .rangeslider__fill,
.rangeslider-vertical .rangeslider__handle {
  position: absolute;
}
.rangeslider-vertical .rangeslider__fill {
  width: 100%;
  background-color: #7cb342;
  box-shadow: none;
  bottom: 0;
}
.rangeslider-vertical .rangeslider__handle {
  width: 30px;
  height: 10px;
  left: -10px;
  box-shadow: none;
}
.rangeslider-vertical .rangeslider__handle-tooltip {
  left: -100%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.rangeslider-vertical .rangeslider__handle-tooltip:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(0, 0, 0, 0.8);
  left: 100%;
  top: 12px;
}
/**
* Rangeslider - Reverse
*/
.rangeslider-reverse.rangeslider-horizontal .rangeslider__fill {
  right: 0;
}
.rangeslider-reverse.rangeslider-vertical .rangeslider__fill {
  top: 0;
  bottom: inherit;
}
/**
* Rangeslider - Labels
*/
.rangeslider__labels {
  position: relative;
}
.rangeslider-vertical .rangeslider__labels {
  position: relative;
  list-style-type: none;
  margin: 0 0 0 24px;
  padding: 0;
  text-align: left;
  width: 250px;
  height: 100%;
  left: 10px;
}
.rangeslider-vertical .rangeslider__labels .rangeslider__label-item {
  position: absolute;
  transform: translate3d(0, -50%, 0);
}
.rangeslider-vertical .rangeslider__labels .rangeslider__label-item::before {
  content: '';
  width: 10px;
  height: 2px;
  background: black;
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.rangeslider__labels .rangeslider__label-item {
  position: absolute;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  top: 10px;
  transform: translate3d(-50%, 0, 0);
}

/* media */
@media (max-width:1400px) {
  .slider-01 .slide-content .slide-title h1 {
    font-size: 110px;
    line-height: 110px;
  }

  .slider-01 .slide-content .slide-subtitle {
    font-size: 66px;
    line-height: 66px;
  }

  .slider-01 .slide-content .slide-offer {
    font-size: 42px;
    line-height: 42px;
  }

  header.site-header .ciya-tools {
    margin-left: 0;
  }

  .slider-03 .slide-content .slide-title h1 {
    margin-bottom: 0;
    font-size: 44px;
    line-height: 60px;
  }

  .slide-03-item .slide-content img {
    height: 180px;
    width: 180px;
  }

  .slider-04 .slide-content .slide-inner {
    padding: 26px 50px;
  }

  .slider-02 .slide-content .slide-title h1 {
    font-size: 62px;
    line-height: 80px;
  }

  .slider-02 .slide-content .slide-right {
    padding: 40px;
  }

  .slider-02 .slide-content .slide-left {
    padding: 40px;
  }

  .single-img-wrapper.single-img-wrapper-1 .single-img-content {
    left: 200px;
  }

  .ciyashop_banner-style-deal-2.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-vbottom {
    bottom: -20px;
  }

}

@media (max-width:1199px) {
  .slider-01 .slide-content .slide-left {
    margin-top: 0;
  }

  .slider-01 .slide-content .slide-title h1 {
    font-size: 80px;
    line-height: 80px;
  }

  .slider-01 .slide-content .slide-subtitle {
    font-size: 46px;
    line-height: 46px;
  }

  .slider-01 .slide-content .slide-offer {
    font-size: 42px;
    line-height: 42px;
  }

  .section-1 .section-title h2 {
    font-size: 46px;
    line-height: 57px;
  }

  .ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
    font-size: 24px;
  }

  .ciyashop_banner.ciyashop_banner-style-deal-1 .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
    font-size: 44px;
  }

  .site-footer .footer-bottom .apps-store-img img {
    height: 40px;
  }

  .header-style-menu-center .topbar .topbar-right .topbar-link > ul > li .top-menu li {
    padding: 7px 10px;
  }

  .single-img-wrapper.single-img-wrapper-3 .single-img-content {
    bottom: 60px;
  }

  .single-img-wrapper .text-wrapper h5 {
    font-size: 18px;
  }

  .single-img-wrapper.single-img-wrapper-3 .text-wrapper {
    margin-top: 54px;
  }

  .single-img-wrapper.single-img-wrapper-1 .single-img-content {
    left: inherit;
    right: -40px;
    width: 190px;
  }

  .newsletter-bg {
    margin-top: 40px;
  }

  .slider-04 .slide-content .slide-subtitle {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .slider-04 .slide-content .slide-title h1 {
    font-size: 45px;
    line-height: 60px;
  }

  .slider-04 .slide-content p {
    font-size: 14px;
  }

  .maintenance .mntc-cs-item.mntc-cs-content p {
    padding: 0;
  }

  .maintenance .mntc-cs-item.mntc-cs-content h1 {
    font-size: 42px;
    margin-bottom: 0;
  }

  .maintenance .mntc-cs-item.mntc-cs-content p {
    font-size: 23px;
  }

  .slider-02 .slide-content .slide-title h1 {
    font-size: 52px;
    line-height: 54px;
  }

  .products-header .loop-header-tools .result-count {
    float: none;
  }

  .products-header .loop-header-tools .ordering {
    float: none;
  }

  .ReactTable .view-button {
    margin-bottom: 3px;
    margin-right: 3px;
  }

  .maintenance footer {
    text-align: center;
    position: relative;
  }

  .products-header .loop-header-tools .gridlist-toggle-wrap {
    display: none;
  }

  .ReactTable .delete-button {
    margin-left: 0;
  }

  .ReactTable .rt-thead .rt-th {
    padding: 20px 25px 20px 10px;
  }

  .ciyashop_banner.ciyashop_banner-style-style-1.ciyashop_banner-effect-none.ciya-banner-3 .ciyashop_banner-text-wrap {
    margin-top: 0;
  }

  .ciyashop_banner.ciyashop_banner-style-style-1.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-vbottom {
    bottom: 0;
  }

  .ciyashop_banner .ciyashop_banner-badge.ciyashop_banner-badge_style-style-1.ciyashop_banner-badge_type-flat.ciyashop_banner-badge_align-vtop.ciyashop_banner-badge_align-hleft {
    width: 60px;
    height: 60px;
    margin: 10px;
  }

  .ciyashop_banner-style-deal-2.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text {
    line-height: 35px;
  }

  .ciyashop_banner-style-deal-2.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-vbottom {
    bottom: -20px;
  }

  .contact-wrapper {
    padding: 40px;
  }

  .coming-soon .mntc-cs-item.mntc-cs-content {
    padding: 10px 0 20px;
  }

  .slider-03 .slide-content .slide-since {
    margin-top: 0;
  }

  .ciyashop_info_box_2-icon_position-left {
    padding: 10px;
  }

  .slider-04 .slide-content .slide-inner {
    box-shadow: 10px 10px 0px rgb(253, 225, 214);
  }

  .collaboration-table .delete-button {
    padding: 2px 10px 2px 10px;
  }

  .countdown-main {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .slider-simple-arrow .slick-prev {
    left: 12px;
    width: 30px;
    height: 30px;
  }

  .slider-simple-arrow .slick-next {
    right: 12px;
    width: 30px;
    height: 30px;
  }

  .slider-simple-arrow .slick-prev:before,
  .slider-simple-arrow .slick-next:before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }

  .countdown-main .section-title-wrapper p {
    letter-spacing: 0;
  }

}

@media (max-width:991px) {
  .m-5 {
    margin: 40px;
  }

  .p-5 {
    padding: 40px;
  }

  .m-6 {
    margin: 40px;
  }

  .p-6 {
    padding: 40px;
  }

  .m-7 {
    margin: 40px;
  }

  .p-7 {
    padding: 40px;
  }

  .m-8 {
    margin: 40px;
  }

  .p-8 {
    padding: 40px;
  }

  .m-9 {
    margin: 40px;
  }

  .p-9 {
    padding: 40px;
  }

  .m-10 {
    margin: 40px;
  }

  .p-10 {
    padding: 40px;
  }

  .mt-5 {
    margin-top: 40px;
  }

  .pt-5 {
    padding-top: 40px;
  }

  .mt-6 {
    margin-top: 40px;
  }

  .pt-6 {
    padding-top: 40px;
  }

  .mt-7 {
    margin-top: 40px;
  }

  .pt-7 {
    padding-top: 40px;
  }

  .mt-8 {
    margin-top: 40px;
  }

  .pt-8 {
    padding-top: 40px;
  }

  .mt-9 {
    margin-top: 40px;
  }

  .pt-9 {
    padding-top: 40px;
  }

  .mt-10 {
    margin-top: 40px;
  }

  .pt-10 {
    padding-top: 40px;
  }

  .mb-5 {
    margin-bottom: 40px;
  }

  .pb-5 {
    padding-bottom: 40px;
  }

  .mb-6 {
    margin-bottom: 40px;
  }

  .pb-6 {
    padding-bottom: 40px;
  }

  .mb-7 {
    margin-bottom: 40px;
  }

  .pb-7 {
    padding-bottom: 40px;
  }

  .mb-8 {
    margin-bottom: 40px;
  }

  .pb-8 {
    padding-bottom: 40px;
  }

  .mb-9 {
    margin-bottom: 40px;
  }

  .pb-9 {
    padding-bottom: 40px;
  }

  .mb-10 {
    margin-bottom: 40px;
  }

  .pb-10 {
    padding-bottom: 40px;
  }

  .ml-5 {
    margin-left: 40px;
  }

  .pl-5 {
    padding-left: 40px;
  }

  .ml-6 {
    margin-left: 40px;
  }

  .pl-6 {
    padding-left: 40px;
  }

  .ml-7 {
    margin-left: 40px;
  }

  .pl-7 {
    padding-left: 40px;
  }

  .ml-8 {
    margin-left: 40px;
  }

  .pl-8 {
    padding-left: 40px;
  }

  .ml-9 {
    margin-left: 40px;
  }

  .pl-9 {
    padding-left: 40px;
  }

  .ml-10 {
    margin-left: 40px;
  }

  .pl-10 {
    padding-left: 40px;
  }

  .mr-5 {
    margin-right: 40px;
  }

  .pr-5 {
    padding-right: 40px;
  }

  .mr-6 {
    margin-right: 40px;
  }

  .pr-6 {
    padding-right: 40px;
  }

  .mr-7 {
    margin-right: 40px;
  }

  .pr-7 {
    padding-right: 40px;
  }

  .mr-8 {
    margin-right: 40px;
  }

  .pr-8 {
    padding-right: 40px;
  }

  .mr-9 {
    margin-right: 40px;
  }

  .pr-9 {
    padding-right: 40px;
  }

  .mr-10 {
    margin-right: 40px;
  }

  .pr-10 {
    padding-right: 40px;
  }

  .banner-bg {
    padding: 40px 0;
  }

  .section-ptb {
    padding: 40px 0;
  }

  .section-pt {
    padding-top: 40px;
  }

  .section-pb {
    padding-bottom: 40px;
  }

  .reports-table {
    margin-top: 40px;
  }

  .header-style-menu-center .topbar .topbar-left li.topbar_item {
    display: none;
  }

  header .topbar-right.text-right {
    text-align: center !important;
  }

  header.site-header .topbar .topbar-right .topbar-link > ul > li {
    padding-left: 0;
  }

  header.site-header .topbar .topbar-right .topbar-link > ul > li .topbar-social_profiles li a {
    padding: 10px 4px;
  }

  header.site-header .topbar_item.topbar_item_type-social_profiles {
    margin-left: 10px;
  }

  .ciyashop_banner.ciyashop_banner-style-deal-1 .ciyashop_banner-content {
    padding: 70px 0;
  }

  .countdown-main {
    margin: 0px;
    padding: 40px 0;
  }

  .newsletter-section {
    padding: 40px 0;
  }

  .ciyashop_clients {
    padding: 30px 0;
  }

  .ciyashop_clients.ciyashop_clients-list-type-grid.ciyashop_clients-grid-column-4 {
    padding-bottom: 0;
  }

  .section-title {
    margin-bottom: 25px;
  }

  header.site-header .logo-wrapper img {
    width: 150px;
  }

  .slider-01 .slide-content .slide-sale {
    font-size: 36px;
    line-height: 40px;
  }

  .slider-01 .slide-content .slide-since {
    font-size: 14px;
    margin-top: 20px;
  }

  .slider-01 .slide-content .slide-subtitle {
    font-size: 30px;
    line-height: 30px;
    margin-top: 10px;
  }

  .slider-01 .slide-content .slide-title h1 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 10px;
    margin-top: 0;
  }

  .slider-01 .slide-content .slide-offer {
    font-size: 30px;
    line-height: 30px;
  }

  .slider-01 .slide-content .slide-button {
    font-size: 14px;
    margin-top: 10px;
  }

  .section-1 .section-title h2 {
    font-size: 30px;
    line-height: 27px;
  }

  .slider-01 .slide-content .slide-button-flat {
    padding: 5px 18px;
    margin-top: 10px;
  }

  .ciyashop_banner.ciyashop_banner-3 .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
    font-size: 55px !important;
  }

  .ciyashop_banner.ciyashop_banner-3 .ciyashop_banner-text-wrap .ciyashop_banner-text h3 {
    font-size: 24px;
  }

  .ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-btn-wrap {
    margin-top: 10px;
  }

  .ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-label-wrap .ciyashop_banner-label {
    font-size: 12px;
    padding: 2px 10px;
  }

  .ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text {
    line-height: 30px;
    font-size: 20px;
  }

  .ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap-1 .ciyashop_banner-text.tag-text {
    padding: 4px 15px;
    line-height: 24px;
  }

  .ciyashop_banner-style-deal-2.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-vbottom {
    bottom: 40px;
  }

  .ciyashop_banner.ciyashop_banner-style-deal-1 .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
    font-size: 30px;
  }

  .section-2 .ciyashop_banner-content-wrapper .ciyashop_banner-label {
    font-size: 18px !important;
    line-height: 28px !important;
  }

  .ciyashop_banner .countdown {
    margin: 0 !important;
  }

  .ciyashop_banner .countdown li span {
    font-size: 24px;
    line-height: 30px;
  }

  .pgscore_banner .pgscore_banner-content .pgscore_banner-btn-wrap {
    margin-top: 0;
  }

  .pgscore_banner .pgscore_banner-content .pgscore_banner-btn-wrap.pgscore_banner-btn-size-md .pgscore_banner-btn {
    line-height: 24px;
  }

  .pgscore_banner .pgscore_banner-content .pgscore_banner-text-bg_color .pgscore_banner-text {
    padding: 2px 12px;
  }

  .single-img-wrapper.single-img-wrapper-1 {
    padding-right: 0;
  }

  .single-img-wrapper.single-img-wrapper-2 {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .single-img-wrapper.single-img-wrapper-2 .single-img-content {
    left: 20px;
  }

  .single-img-wrapper.single-img-wrapper-3 {
    padding-left: 0;
  }

  .countdown-main .section-title-wrapper h2 {
    font-size: 58px;
    line-height: 58px;
  }

  .slide-03-item .slide-content img {
    display: none;
  }

  .slider-03 .slide-content .slide-title h1 {
    font-size: 45px;
    line-height: 60px;
  }

  .slider-03 .slide-content .slide-since {
    margin-top: 0;
  }

  .slider-04 .slide-content .slide-inner img {
    height: 40px;
  }

  .slider-04 .slide-content .slide-button {
    font-size: 14px;
  }

  .slider-04 .slide-content p {
    margin-bottom: 0;
  }

  .slider-04 .slide-content .slide-title h1 {
    margin-bottom: 10px;
  }

  .maintenance .header img {
    height: 40px;
  }

  .coming-soon .header img {
    height: 40px;
  }

  .coming-soon .mntc-cs-item.mntc-cs-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  x
  .maintenance .mntc-cs-item.mntc-cs-content {
    padding: 0;
  }

  .maintenance .mntc-cs-item.mntc-cs-content h1 {
    margin-bottom: 20px;
  }

  .slider-02 .slide-content .slide-title h1 {
    font-size: 32px;
    line-height: 34px;
    margin: 10px 0;
  }

  .slider-02 .slide-content .slide-button-flat {
    padding: 6px 24px;
    font-size: 14px;
  }

  .slider-02 .slide-content .slide-left,
  .slider-02 .slide-content .slide-right {
    padding: 30px;
  }

  .collaboration-table {
    min-width: 835px;
  }

  .coming-soon footer {
    position: relative;
    margin-top: 10px;
    text-align: center;
  }

  .maintenance footer {
    text-align: center;
    position: relative;
  }

  .header-style-menu-center .header-nav-right-wrapper .ciya-tools {
    margin-right: 30px;
  }

  .navbar.navbar-light .navbar-toggler {
    top: -47px;
    right: -4px;
  }

  nav.navbar.navbar-light.bg-faded {
    display: block;
    float: right;
    padding: 0rem;
    position: absolute;
    width: 100%;
    background: #fff;
    box-shadow: 0 9px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    top: 67px;
  }

  /* .navbar-light .navbar-nav:last-child .nav-link {
    border-bottom: 0px solid rgba(0, 0, 0, 0.05);
  } */

  .site-header.is-sticky .navbar.navbar-light .navbar-toggler {
    top: -44px;
  }

  .site-header.is-sticky nav.navbar.navbar-light.bg-faded {
    top: 56px;
  }

  .navbar-light .navbar-nav .nav-item > .nav-link {
    background: 0 0;
    border-radius: 0;
    color: #323232;
    padding: 10px 0;
    margin: 0 20px;
    position: relative;
    line-height: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
  }

  .navbar-light .navbar-nav .nav-admin-link {
    background: 0 0;
    border-radius: 0;
    color: #323232;
    padding: 10px 0;
    margin: 0 20px;
    position: relative;
    line-height: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: inline-block;
    text-transform: uppercase;
  }

  header.site-header .navbar-nav > .nav-item > .nav-link:after {
    content: "+";
    float: right;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
  }

  header.site-header .navbar-nav > .show.nav-item > .nav-link:after {
    content: "-";
    float: right;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
  }

  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    border: medium none;
    padding: 0px 30px;
    transition: all ease 0s;
  }

  .navbar-nav .dropdown-menu.show {
    transition: all ease 0s;
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    padding: 6px  0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navbar-nav .dropdown-menu .dropdown-item a {
    color: #323232;
  }

  button:focus {
    outline: none;
  }

  .admin-menu .navbar .navbar-nav .nav-item > .nav-link {
    padding: 10px 0;
  }

  .content .products-header {
    margin-top: 40px;
  }

  .contact-wrapper {
    padding: 40px;
  }

  .ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
    font-size: 20px;
  }

  footer.site-footer .footer-widgets-wrapper {
    padding: 40px 0 40px;
  }

  footer.site-footer .footer-bottom-wrapper .footer-bottom .apps-store-img {
    margin-left: 0px;
    margin-right: 3px;
  }

  footer.site-footer .footer-content {
    margin-bottom: 10px;
  }

  .ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-vbottom {
    bottom: 30px;
  }

  .ciyashop_banner.ciyashop_banner-style-style-1.ciyashop_banner-effect-none.banner-1 .ciyashop_banner-content.ciyashop_banner-content-vbottom {
    bottom: 0;
  }

  .ciyashop_info_box_2-icon_position-left {
    padding: 0;
    margin-bottom: 10px;
  }

  .ciyashop_info_box_2 .ciyashop_info_box_2-title {
    margin-bottom: 0;
  }

  .post {
    margin-bottom: 36px;
  }

  .error-block h1 {
    line-height: 200px;
  }

  .post-navigation .nav-links {
    margin-bottom: 40px;
  }

  .single-img-wrapper.single-img-wrapper-2 .text-wrapper {
    margin-bottom: 20px;
  }

  .single-img-wrapper.single-img-wrapper-1 .text-wrapper {
    margin-top: 20px;
  }

  .reports-table th,
  .reports-table td {
    padding: 10px;
  }

  .table {
    min-width: 800px;
  }

  .shop_table.shop_table_responsive.table {
    min-width: 100%;
  }

  .single-img-wrapper.single-img-wrapper-1 .single-img-content {
    right: 20px;
  }

  .single-img-wrapper.single-img-wrapper-3 .single-img-content {
    bottom: 50px;
  }

  .slider-03 .slide-content .slide-title h1 {
    letter-spacing: 0;
  }

  .ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap-1 .ciyashop_banner-text.tag-text {
    letter-spacing: 0;
  }

  .slider-03 .slide-content .slide-since {
    padding: 8px 20px;
  }

  .ciyashop_banner.ciyashop_banner-style-style-1.ciyashop_banner-effect-none.ciya-banner-3 .ciyashop_banner-text-wrap {
    margin-top: 0;
  }

  .ciyashop_banner-style-style-1.ciyashop_banner-effect-none.banner-1.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text {
    line-height: 40px;
  }

  .admin-menu {
    margin-bottom: 20px;
  }

  .ciyashop_banner.ciyashop_banner-style-style-1.ciyashop_banner-effect-none.ciya-banner-3 .ciyashop_banner-image {
    height: 300px;
    object-fit: cover;
  }

  .ciyashop_banner.ciyashop_banner-3.ciyashop_banner-style-style-1.ciyashop_banner-effect-none .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
    line-height: 70px !important;
    margin-bottom: 0px;
  }

  .ciyashop_banner-style-style-1.ciyashop_banner-effect-none.ciya-banner-3.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text {
    line-height: 30px;
  }

  .border-space {
    margin-left: 90%;
  }

  .products-header .loop-header-tools .ordering {
    margin: 0 10px 0 0;
  }

  .ciyashop_clients.ciyashop_clients-grid-column-4 li {
    width: 31.33%;
  }

  .coming-soon,
  .maintenance {
    padding: 40px 0;
  }

  .maintenance .mntc-cs-item.mntc-cs-content p {
    margin-bottom: 20px;
  }

  .navbar-nav li{
    list-style: none;
  }
  .navbar-nav .nav-item .nav-link {
    background: 0 0;
    border-radius: 0;
    color: #323232;
    padding: 10px 0;
    margin: 0 20px;
    position: relative;
    line-height: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
  }

  .navbar-nav > li > .submenu{
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    padding: 0;
    display: none;
  }
  .navbar-nav .nav-item > .showcollapsed > .nav-item:last-child .nav-link{
    border-bottom: none;
  }
  .navbar-nav .nav-item > .showcollapsed{
    -webkit-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.1);
  }
  .navbar-nav .nav-item.active > .nav-link{
    color: #04d39f;
  }
}

@media (max-width:767px) {
  .slider-01 .slide-content .slide-title h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .slider-01 .slide-content .slide-subtitle {
    font-size: 20px;
    line-height: 20px;
    margin-top: 0;
  }

  .ciyashop_banner.ciyashop_banner-3 .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
    font-size: 40px !important;
  }

  .countdown-main .section-title-wrapper h2 {
    font-size: 48px;
    line-height: 48px;
  }

  .ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text {
    font-size: 18px;
  }

  .ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap-1 .ciyashop_banner-text.tag-text {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    padding: 4px 12px;
  }

  .slider-04 .slide-content p {
    display: none;
  }

  .slider-04 .slide-content .slide-subtitle {
    display: none;
  }

  .slider-04 .slide-content .slide-inner-02 .slide-sale {
    height: 80px;
  }

  .slider-04 .slide-content .slide-inner {
    padding: 16px 50px;
    box-shadow: 5px 5px 0px rgb(253, 225, 214);
  }

  .slider-04 .slide-content .slide-title h1 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 0;
  }

  .slider-04 .slide-content .slide-inner-02 {
    padding: 16px 50px;
    box-shadow: 5px 5px 0px rgb(253, 225, 214);
  }

  .slider-04 .slide-content .slide-inner-02 .slide-sale {
    display: none;
  }

  .slider-04 .slide-content .slide-inner-02 p,
  .slider-04 .slide-content .slide-inner-02 .slide-subtitle {
    display: block;
    font-size: 14px;
  }

  .intro-title .text-right {
    text-align: left !important;
  }

  .inner-intro h1 {
    font-size: 20px;
  }

  .ciyashop_info_box_2-icon_position-left {
    padding: 0;
  }

  .google-map {
    height: 340px;
  }

  .error-block h1 {
    font-size: 170px;
    line-height: 170px;
  }

  .error-search-box p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 20px;
  }

  .coming-soon .header img {
    margin: 20px 0;
    height: 40px;
  }

  .coming-soon .mntc-cs-item.mntc-cs-content {
    padding: 0px 0 20px;
  }

  .coming-soon .mntc-cs-item.mntc-cs-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .coming-soon .mntc-cs-item.mntc-cs-content i {
    font-size: 80px;
  }

  .slider-02 .slide-content .slide-left,
  .slider-02 .slide-content .slide-right {
    padding: 10px;
  }

  .slider-02 .slide-content .slide-left,
  .slider-02 .slide-content .slide-right {
    border-width: 6px;
  }

  .cart-table thead td.actions .button {
    float: left;
    margin-top: 10px;
  }

  .cart-table thead td.actions .coupon .button {
    margin-top: 0;
  }

  .products.list .product .product-inner {
    display: block;
  }

  .products.list .product-thumbnail {
    display: block;
    width: 100%;
  }

  .products.list .product-info {
    display: block;
    width: 100%;
  }

  .products.list .product-info {
    margin-left: 0;
    padding-top: 6px;
    margin-bottom: 30px;
  }

  .invoices-table th,
  .invoices-table td {
    padding: 10px;
  }

  .admin-profile {
    display: block;
  }

  .admin-profile .admin-profile-info {
    margin: 16px 0;
  }

  .profile-dropdown .dropdown-toggle {
    margin-left: inherit;
    margin-top: 0;
  }

  .admin-menu .navbar {
    bottom: -18px;
  }

  .admin-menu {
    padding: 30px 0;
  }

  .admin-menu .navbar-collapse {
    border-top: 1px solid #e5e5e5;
  }

  .admin-menu .dropdown-menu[x-placement^=bottom] {
    right: 0;
    left: auto;
  }

  .profile-dropdown .dropdown-toggle::after {
    margin-left: 10px;
  }

  .profile-dropdown .dropdown-menu {
    width: 170px;
  }

  .slider-simple-arrow .slick-next,
  .slider-simple-arrow .slick-prev {
    display: none !important;
  }

  .products-header .loop-header-tools .ordering {
    margin-top: 5px;
  }

  .products-header .loop-header-tools .gridlist-toggle-wrap {
    float: none;
    margin-left: 0;
  }

  .products-header .loop-header-tools .ordering {
    display: block;
  }

  .footer-widget .payments.text-right {
    margin-top: 10px;
    text-align: left !important;
  }

  .admin-menu .navbar.navbar-light .navbar-toggler {
    position: relative;
    top: inherit;
  }

  .admin-menu .navbar {
    justify-content: center;
  }

  .admin-menu .navbar .dropdown .dropdown-item {
    padding: 0;
  }

  .admin-menu .navbar-expand-md .navbar-nav .dropdown-menu {
    width: 100%;
    position: relative;
  }

  .ordered-detail {
    padding: 0 20px 20px 20px;
  }

  .modal-delete .modal-content {
    padding: 20px 20px 14px 20px;
  }

  .single-product-edit .product-top-right-inner {
    margin-top: 20px;
  }

  .single-product-edit .edit-icon:before {
    left: -32px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
  }

  .ciyashop_clients .list-inline li {
    margin-bottom: 0;
    margin-top: 10px;
  }

  footer.site-footer .pgs-social-profiles {
    margin-bottom: 30px;
  }

  footer.site-footer .social-profiles-wrapper-inner {
    margin-bottom: 0;
  }

  footer.site-footer .footer-title,
  footer.site-footer .footer-nav-menu .footer-title {
    margin-bottom: 10px;
  }

  .products-header .right-banner,
  .products-header .loop-header {
    margin-bottom: 10px;
  }

  .products-header .loop-header-tools .ordering {
    margin: 0 0 10px 0;
  }

  .product-content-bottom {
    margin-top: 30px;
  }

  .product-top-right-inner {
    margin-top: 20px;
  }

  .single-product .product-summary-actions {
    margin-bottom: 0;
  }

  .table {
    min-width: 700px;
  }

  .success-screen .table {
    min-width: 500px;
  }

  .shop_table.shop_table_responsive.table {
    min-width: 100%;
  }

  .admin-menu {
    margin-bottom: 0;
  }

  .slider-01 .slide-content .slide-sale span {
    font-size: 20px;
    line-height: 20px;
  }

  .ciyashop_banner.ciyashop_banner-style-style-1.ciyashop_banner-effect-none.ciya-banner-3 .ciyashop_banner-image {
    height: 230px;
    object-fit: cover;
  }

  .ciyashop_banner-style-deal-2.ciyashop_banner .ciyashop_banner-content.ciyashop_banner-content-vbottom {
    bottom: 10px;
  }

  .slider-03 .slide-content .slide-title h1 {
    font-size: 35px;
    line-height: 50px;
    margin-top: 10px;
  }

  .single-post .entry-content {
    margin-bottom: 20px;
  }

  .maintenance .mntc-cs-item.mntc-cs-content h1 {
    margin-bottom: 0;
    font-size: 32px;
  }

  .maintenance .mntc-cs-item.mntc-cs-content p {
    font-size: 20px;
    line-height: 34px;
  }

  .coming-soon .mntc-cs-item.mntc-cs-content h1 {
    font-size: 32px;
    margin-bottom: 0px;
  }

  .error-block p {
    font-size: 26px;
  }

  .inner-intro .page-breadcrumb {
    padding: 0;
  }

  .ciyashop_banner.ciyashop_banner-3.ciyashop_banner-style-style-1.ciyashop_banner-effect-none .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
    line-height: 50px !important;
  }

  .products-header .loop-header-tools .ordering {
    width: 100%;
  }

  .coming-soon .commingsoon_countdown {
    margin-top: 40px;
  }

  .ril__toolbarRightSide {
    padding-top: 0;
    padding-right: 10px !important;
  }

}

@media (max-width:575px) {
  h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .mb-7.row {
    margin-bottom: 20px;
  }

  body {
    overflow-x: hidden;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .slider-01 .slide-content .slide-sale {
    display: none;
  }

  .slider-01 .slide-content .slide-title h1 {
    font-size: 30px;
    line-height: 30px;
  }

  .slider-01 .slide-content .slide-since {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 0;
    padding: 2px 6px;
  }

  .slider-01 .slide-content .slide-button-flat {
    padding: 2px 16px;
    margin-top: 10px;
    font-size: 12px;
  }

  .section-1 .section-title h2,
  .section-title h2.title {
    font-size: 24px;
    line-height: 26px;
  }

  .newsletter-wrapper .newsletter-title {
    font-size: 24px;
    line-height: 28px;
  }

  .latest-post-wrapper .latest-post-item .latest-post-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .latest-post-wrapper .latest-post-item .latest-post-content {
    height: auto;
    display: block;
    padding-left: 0;
    margin-top: 20px;
  }

  .latest-post-wrapper.latest-post-style-1 .latest-post-item .latest-post-content {
    padding-left: 0;
  }

  .ciyashop_banner.ciyashop_banner-style-deal-1 .ciyashop_banner-content {
    padding: 40px 0;
  }

  header.site-header .ciya-tools-actions > li {
    width: 30px;
    height: 42px;
  }

  .mobile-butoon-menu {
    padding: 0;
  }

  .single-img-wrapper.single-img-wrapper-1 .single-img-content {
    left: inherit;
    width: 140px;
    right: 0;
  }

  .single-img-wrapper.single-img-wrapper-1 .single-img-content h3 {
    font-size: 17px;
    margin-bottom: 0;
  }

  .single-img-wrapper.single-img-wrapper-2 .single-img-content h3 {
    font-size: 17px;
    margin-bottom: 0;
  }

  .single-img-wrapper.single-img-wrapper-3 .single-img-content h3 {
    font-size: 17px;
    margin-bottom: 0;
  }

  .slider-03 .slide-content .slide-title h1 {
    font-size: 20px;
    line-height: 30px;
    line-height: 20px;
    letter-spacing: 0;
  }

  .slider-03 .slide-content .slide-since {
    margin-top: 0px;
    padding: 4px 10px;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0;
  }

  .slider-03 .slide-content .slide-button {
    margin-top: 0px;
    font-size: 12px;
  }

  .slider-04 .slide-content .slide-inner {
    padding: 10px;
  }

  .products-header .loop-header-tools .gridlist-toggle-wrap {
    float: left;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .ciyashop-pagination ul li {
    margin: 4px;
  }

  .product-content-bottom .nav-tabs li {
    margin: 0 4px 0 0;
  }

  .product-content-bottom .nav-tabs {
    padding: 0;
  }

  .product-content-bottom .nav-tabs li a {
    padding: 6px 12px;
    font-size: 13px;
  }

  .inner-intro.header_intro h1 {
    font-size: 22px;
    line-height: 28px;
  }

  .single-post .entry-footer .share {
    padding-left: 0;
  }

  .single-post .entry-footer .share .share-button {
    position: relative;
    top: 0;
    margin-bottom: 10px;
  }

  .single-post .entry-social {
    float: left !important;
  }

  .single-post .entry-footer .share ul li {
    float: left;
  }

  .comments-area .comment-respond .section-field,
  .comments-area .respond-form .section-field {
    width: 100%;
    margin-right: 0;
  }

  .post-navigation .nav-links:before {
    display: none
  }

  .post-navigation .nav-links .nav-next,
  .post-navigation .nav-links .nav-previous {
    width: 100%;
  }

  footer.site-footer .logo-wrapper img {
    max-width: 150px;
  }

  .contact-wrapper {
    padding: 40px 15px;
  }

  .ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-lg .ciyashop_info_box_2-icon-inner,
  .ciyashop_info_box_2-icon-style-flat.ciyashop_info_box_2-icon-size-lg .ciyashop_info_box_2-icon-inner {
    width: 65px;
    height: 65px;
  }

  .ciyashop_info_box_2-icon_position-left .ciyashop_info_box_2-inner .ciyashop_info_box_2-icon {
    margin-right: 0;
  }

  .error-block h1 {
    font-size: 120px;
    line-height: 90px;
    margin-bottom: 10px;
  }

  .error-block p {
    font-size: 20px;
  }

  .error-block {
    margin-bottom: 20px;
  }

  .coming-soon .mntc-cs-item.mntc-cs-content h1 {
    font-size: 30px;
    margin-bottom: 0;
  }

  .coming-soon .mntc-cs-item.mntc-cs-content i {
    margin-bottom: 0;
  }

  .coming-soon .commingsoon_countdown li {
    padding: 5px 0;
    min-width: 54px;
  }

  .coming-soon .commingsoon_countdown li span {
    font-size: 22px;
    line-height: 30px;
  }

  .coming-soon .mntc-cs-item.mntc-cs-content p {
    padding: 0 8px;
    font-size: 13px;
  }

  .coming-soon .commingsoon_countdown {
    margin-bottom: 0;
  }

  .maintenance .mntc-cs-item.mntc-cs-content h1 {
    font-size: 28px;
    line-height: 30px;
  }

  .maintenance .mntc-cs-item.mntc-cs-content p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
  }

  .maintenance .mntc-cs-item.mntc-cs-content i {
    margin-bottom: 10px;
  }

  .slider-02 .slide-content .slide-title h1 {
    font-size: 20px;
    line-height: 24px;
    margin: 5px 0;
  }

  .slider-02 .slide-content .slide-button-flat {
    padding: 1px 19px;
    font-size: 10px;
    margin-top: 5px;
  }

  .wishlist-table thead td.product-thumbnail a img {
    width: 100px;
  }

  .cart-table thead td.actions .coupon .input-text {
    width: 200px;
  }

  header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart {
    width: 300px;
    right: -95px;
  }

  header.site-header .ciya-tools-actions li .cart-contents .widget-shopping-cart .ciyashop-mini-cart__buttons .button {
    padding: 5px 17px;
  }

  header.site-header .topbar_item.topbar_item_type-social_profiles {
    display: none;
  }

  .success-screen .thank-you {
    padding: 20px;
  }

  .ordered-detail {
    padding: 0 20px 20px 20px;
  }

  .success-screen .button {
    display: block;
    margin-bottom: 2px;
    text-align: center
  }

  .modal-delete .modal-content {
    font-size: 22px;
    line-height: 30px;
  }

  .woocommerce-Address .woocommerce-Address-title {
    display: block;
  }

  .woocommerce-Address .woocommerce-Address-title h5 {
    margin-bottom: 6px !important;
  }

  .admin-menu .logo {
    height: 30px;
  }

  .profile-dropdown .dropdown-toggle .profile-img {
    margin-right: 0;
  }

  .testimonial.testimonial-style-1 .slick-next {
    right: 26%;
  }

  .testimonial p {
    line-height: 26px;
  }

  .testimonial.testimonial-style-1 .slick-prev {
    left: 26%;
  }

  .newsletter-section .newsletter-wrapper .newsletter-title {
    font-size: 22px;
  }

  .newsletter-wrapper.newsletter-style-1 .newsletter p {
    padding: 0;
  }

  .ciyashop_banner.ciyashop_banner-style-style-1.ciyashop_banner-effect-none.ciya-banner-3 .ciyashop_banner-image {
    height: 240px;
    object-fit: cover;
  }

  .ciyashop_banner-style-style-1.ciyashop_banner-effect-none.ciya-banner-3.ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text {
    line-height: 30px;
  }

  .ciyashop_banner.ciyashop_banner-style-deal-2.ciyashop_banner-effect-none {
    padding-bottom: 80px;
    margin-bottom: 6px;
  }

  .slider-spacing-10 .item > div {
    padding: 0;
    margin: 0;
  }

  .ciyashop_banner .ciyashop_banner-badge.ciyashop_banner-badge_style-style-1.ciyashop_banner-badge_type-flat.ciyashop_banner-badge_align-vtop.ciyashop_banner-badge_align-hleft {
    display: none;
  }

  .ciyashop_banner .ciyashop_banner-badge {
    margin: 10px;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-1 .input-area input[type=text] {
    padding-right: 15px;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-1 .button-area {
    position: relative;
  }

  .newsletter-wrapper .input-area {
    margin-bottom: 6px;
  }

  .newsletter-wrapper.newsletter-style-1 {
    text-align: left;
  }

  .newsletter-wrapper.newsletter-style-1 .section-field.p-4 {
    padding: 10px !important;
  }

  .ciyashop_clients.ciyashop_clients-list-type-grid.ciyashop_clients-grid-column-4 {
    padding-top: 20px;
  }

  .products-header .loop-header-tools .ordering {
    margin-bottom: 6px;
  }

  .cart-table.table {
    margin-bottom: 0;
  }

  .cart-collaterals {
    margin-top: 40px;
  }

  .cart_totals .shop_table .order-total td {
    font-size: 16px;
  }

  .modal .modal-header .close {
    right: -4px;
    top: -4px;
  }

  .ordered-detail .table .ordered-item .ordered-image {
    display: block;
  }

  .slider-spacing-10 .slick-list {
    margin: 0px;
  }

  .newsletter-wrapper.newsletter-style-1 {
    text-align: center;
  }

  .ciyashop_clients.ciyashop_clients-list-type-slider .slick-initialized .slick-slide > div {
    padding: 10px;
  }

  .ciyashop_banner .ciyashop_banner-badge_align-hleft {
    left: 50px;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-4 .newsletter_form {
    padding: 5px 0px 0px 0px;
  }

  .comments-area .comment-respond .comment-form-cookies-consent input[type=checkbox] {
    margin-top: 6px;
  }

  .input-range__label-container {
    left: -70% !important;
  }

  .cart_totals .shipping-calculator .popup-content {
    width: 96% !important;
  }

  .cart_totals .shipping-calculator .popup-content .shop_table td {
    padding: 20px 0px 20px 10px;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area,
  .newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area {
    position: relative;
    display: inline-block;
    transform: inherit;
    left: 0;
    color: #fff;
    background: #04d39f;
    margin-top: 20px;
    border-radius: 3px;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area .btn,
  .newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area .btn {
    padding: 10px 20px 10px 40px;
    color: #fff;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area:before,
  .newsletter-wrapper.newsletter-style-1.newsletter-design-6 .button-area:before {
    color: #fff;
    left: 11px;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area:hover:before,
  .newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area:focus:before {
    color: #fff;
  }

  .newsletter-style-1.newsletter-design-6.newsletter-wrapper .newsletter_form .error {
    bottom: 46px;
  }

  .newsletter-style-1.newsletter-design-1 .btn {
    background: #04d39f;
    color: #fff;
  }

  .sidebar .shop-sidebar-widgets {
    overflow: hidden;
  }

  .sidebar .shop-sidebar-widgets .price_slider_wrapper {
    padding: 10px;
  }

  .ciyashop_banner .ciyashop_banner-content .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
    font-size: 16px;
  }

  .ciyashop-mini-cart__total.total img {
    width: 40px;
  }

  .ReactTable .rt-noData {
    margin-top: -18px;
  }

  .ciyashop_banner .ciyashop_banner-content {
    padding-top: 6px;
  }

  .ciyashop_info_box_2 .ciyashop_info_box_2-title {
    font-size: 19px;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-1 .p-4 {
    padding: 30px 20px !important;
  }

  .cart_totals .shop_table th {
    padding: 10px 10px;
  }

  .cart_totals .shop_table td {
    padding: 10px;
    padding-left: 0;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-1 .input-area {
    position: relative;
    margin-bottom: 24px;
  }

  .single-product-edit .entry-summary .form-group label {
    margin-bottom: 0;
    margin-top: 5px;
  }

  .modal-add-user .modal-content {
    padding-top: 20px;
  }

  footer.site-footer .footer-widgets-wrapper {
    padding: 0px 0 40px;
  }

  .banner-bg {
    padding-left: 15px;
    padding-right: 15px;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area .btn.btn-icon:hover {
    color: #fff;
  }

  footer.site-footer .widget {
    margin-top: 30px;
  }

  .single-img-wrapper.single-img-wrapper-3 .single-img-content {
    padding-left: 2%;
  }

  .countdown-main .section-title-wrapper h2 {
    font-size: 38px;
    line-height: 38px;
  }

  .countdown-main .section-title-wrapper p {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0px;
  }

  .latest-post-wrapper.latest-post-style-2 .latest-post-item .latest-post-content {
    padding: 0px 20px 20px;
  }

  .ciyashop_clients {
    padding: 10px 0;
  }

  .product-content-bottom .nav-tabs li a {
    border-bottom: 0;
  }

  .post .entry-header-section .entry-title {
    font-size: 20px;
  }

  .inner-intro.header_intro .page-breadcrumb {
    margin-top: 0;
  }

  .ciyashop_banner.ciyashop_banner-3 .ciyashop_banner-text-wrap .ciyashop_banner-text h3 {
    font-size: 14px;
    line-height: 20px;
  }

  .sidebar .widget {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .slider-01 .slick-slide img,
  .slider-02 .slick-slide img,
  .slider-03 .slick-slide img {
    min-height: 200px;
    object-fit: cover;
  }

  .slider-01 .slide-content .slide-title h1 {
    font-size: 25px;
    margin-bottom: 0;
  }

  .slider-01 .slide-content .slide-subtitle {
    font-size: 16px;
  }

  .slider-02 .slide-content .slide-button-flat {
    padding: 4px 19px 7px 19px;
    line-height: 16px;
  }

  .slider-04 .slick-slide .slide-inner .slide-image img {
    min-height: 260px;
    object-fit: cover;
  }

  .woocommerce-Address,
  .woocommerce-Address .woocommerce-Address-info {
    padding: 15px;
  }

  .ciyashop_button_wrapper .ciyashop_button_size_medium a {
    padding: 6px 20px;
  }

  .ciyashop_banner .ciyashop_banner-content-inner-wrapper {
    font-size: 40px;
  }

  .ciyashop_banner.ciyashop_banner-style-style-1.ciyashop_banner-effect-border .ciyashop_banner-content {
    padding-top: 20px;
  }

  .ciyashop_banner.ciyashop_banner-3.ciyashop_banner-style-style-1.ciyashop_banner-effect-none .ciyashop_banner-content-wrapper .ciyashop_banner-content-inner-wrapper .ciyashop_banner-text-wrap .ciyashop_banner-text h2 {
    line-height: 70px !important;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-4 .button-area .input-group-btn button {
    color: #fff;
    padding: 10px 20px 10px 34px;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-4 .input-area input[type=email] {
    padding-right: 15px;
  }

  .newsletter-wrapper.newsletter-style-1.newsletter-design-1 .button-area button {
    color: #fff;
  }

  .single-post .entry-footer .share ul li a {
    padding: 5px 10px;
  }

  .post {
    margin-bottom: 30px;
  }

  .post-navigation .nav-links {
    margin-bottom: 20px;
  }

  .related-posts {
    margin-bottom: 10px;
  }

  .single-img-wrapper.single-img-wrapper-3 .single-img-content {
    bottom: 40px;
  }

  footer.site-footer .pgs-social-profiles {
    margin-bottom: 0;
  }

  .products-header .loop-header-tools .ordering {
    width: 100%;
  }

  .sidebar .shop-sidebar-widgets .widget_pgs_social_profiles {
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
  }

  .sidebar .shop-sidebar-widgets .widget.widget_price_filter {
    padding-bottom: 10px;
  }

  .single-product .product_meta {
    margin-bottom: 15px;
  }

  .ReactTable .-pagination .-center {
    display: inline-block;
    margin: 6px 0;
    flex: inherit;
  }

  .woocommerce-Address .woocommerce-Address-info {
    margin-top: 10px !important;
  }

  .admin-profile {
    padding: 20px;
  }

  .coming-soon .mntc-cs-item.mntc-cs-content > p {
    margin-bottom: 20px;
  }

.ciyashop_info_box_2-icon-style-border.ciyashop_info_box_2-icon-size-lg .ciyashop_info_box_2-icon-inner {
  font-size: 28px;
}

}

.input-range__slider {
  appearance: none;
  background: #3f51b5;
  border: 1px solid #3f51b5;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  height: 1rem;
  margin-left: -0.5rem;
  margin-top: -0.65rem;
  outline: none;
  position: absolute;
  top: 50%;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  width: 1rem; }
  .input-range__slider:active {
    transform: scale(1.3); }
  .input-range__slider:focus {
    box-shadow: 0 0 0 5px rgba(63, 81, 181, 0.2); }
  .input-range--disabled .input-range__slider {
    background: #cccccc;
    border: 1px solid #cccccc;
    box-shadow: none;
    transform: none; }

.input-range__slider-container {
  transition: left 0.3s ease-out; }

.input-range__label {
  color: #aaaaaa;
  font-family: "Helvetica Neue", san-serif;
  font-size: 0.8rem;
  transform: translateZ(0);
  white-space: nowrap; }

.input-range__label--min,
.input-range__label--max {
  bottom: -1.4rem;
  position: absolute; }

.input-range__label--min {
  left: 0; }

.input-range__label--max {
  right: 0; }

.input-range__label--value {
  position: absolute;
  top: -1.8rem; }

.input-range__label-container {
  left: -50%;
  position: relative; }
  .input-range__label--max .input-range__label-container {
    left: 50%; }

.input-range__track {
  background: #eeeeee;
  border-radius: 0.3rem;
  cursor: pointer;
  display: block;
  height: 0.3rem;
  position: relative;
  transition: left 0.3s ease-out, width 0.3s ease-out; }
  .input-range--disabled .input-range__track {
    background: #eeeeee; }

.input-range__track--background {
  left: 0;
  margin-top: -0.15rem;
  position: absolute;
  right: 0;
  top: 50%; }

.input-range__track--active {
  background: #3f51b5; }

.input-range {
  height: 1rem;
  position: relative;
  width: 100%; }
@keyframes closeWindow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.ril__outer {
  background-color: rgba(0, 0, 0, 0.85);
  outline: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  -ms-content-zooming: none;
  -ms-user-select: none;
  -ms-touch-select: none;
  touch-action: none;
}

.ril__outerClosing {
  opacity: 0;
}

.ril__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ril__image,
.ril__imagePrev,
.ril__imageNext {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: none;
  -ms-content-zooming: none;
  -ms-user-select: none;
  -ms-touch-select: none;
  touch-action: none;
}

.ril__imageDiscourager {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.ril__navButtons {
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 34px;
  padding: 40px 30px;
  margin: auto;
  cursor: pointer;
  opacity: 0.7;
}
.ril__navButtons:hover {
  opacity: 1;
}
.ril__navButtons:active {
  opacity: 0.7;
}

.ril__navButtonPrev {
  left: 0;
  background: rgba(0, 0, 0, 0.2)
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDE5LDMgLTIsLTIgLTE2LDE2IDE2LDE2IDEsLTEgLTE1LC0xNSAxNSwtMTUgeiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==')
    no-repeat center;
}

.ril__navButtonNext {
  right: 0;
  background: rgba(0, 0, 0, 0.2)
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDEsMyAyLC0yIDE2LDE2IC0xNiwxNiAtMSwtMSAxNSwtMTUgLTE1LC0xNSB6IiBmaWxsPSIjRkZGIi8+PC9zdmc+')
    no-repeat center;
}

.ril__downloadBlocker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');
  background-size: cover;
}

.ril__caption,
.ril__toolbar {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}

.ril__caption {
  bottom: 0;
  max-height: 150px;
  overflow: auto;
}

.ril__captionContent {
  padding: 10px 20px;
  color: #fff;
}

.ril__toolbar {
  top: 0;
  height: 50px;
}

.ril__toolbarSide {
  height: 50px;
  margin: 0;
}

.ril__toolbarLeftSide {
  padding-left: 20px;
  padding-right: 0;
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ril__toolbarRightSide {
  padding-left: 0;
  padding-right: 20px;
  flex: 0 0 auto;
}

.ril__toolbarItem {
  display: inline-block;
  line-height: 50px;
  padding: 0;
  color: #fff;
  font-size: 120%;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ril__toolbarItemChild {
  vertical-align: middle;
}

.ril__builtinButton {
  width: 40px;
  height: 35px;
  cursor: pointer;
  border: none;
  opacity: 0.7;
}
.ril__builtinButton:hover {
  opacity: 1;
}
.ril__builtinButton:active {
  outline: none;
}

.ril__builtinButtonDisabled {
  cursor: default;
  opacity: 0.5;
}
.ril__builtinButtonDisabled:hover {
  opacity: 0.5;
}

.ril__closeButton {
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIj48cGF0aCBkPSJtIDEsMyAxLjI1LC0xLjI1IDcuNSw3LjUgNy41LC03LjUgMS4yNSwxLjI1IC03LjUsNy41IDcuNSw3LjUgLTEuMjUsMS4yNSAtNy41LC03LjUgLTcuNSw3LjUgLTEuMjUsLTEuMjUgNy41LC03LjUgLTcuNSwtNy41IHoiIGZpbGw9IiNGRkYiLz48L3N2Zz4=')
    no-repeat center;
}

.ril__zoomInButton {
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PHBhdGggZD0iTTEyIDV2NiIvPjwvZz48Y2lyY2xlIGN4PSIxMiIgY3k9IjgiIHI9IjciIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+')
    no-repeat center;
}

.ril__zoomOutButton {
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PC9nPjxjaXJjbGUgY3g9IjEyIiBjeT0iOCIgcj0iNyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=')
    no-repeat center;
}

.ril__outerAnimating {
  animation-name: closeWindow;
}

@keyframes pointFade {
  0%,
  19.999%,
  100% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
}

.ril__loadingCircle {
  width: 60px;
  height: 60px;
  position: relative;
}

.ril__loadingCirclePoint {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.ril__loadingCirclePoint::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 11%;
  height: 30%;
  background-color: #fff;
  border-radius: 30%;
  animation: pointFade 800ms infinite ease-in-out both;
}
.ril__loadingCirclePoint:nth-of-type(1) {
  transform: rotate(0deg);
}
.ril__loadingCirclePoint:nth-of-type(7) {
  transform: rotate(180deg);
}
.ril__loadingCirclePoint:nth-of-type(1)::before,
.ril__loadingCirclePoint:nth-of-type(7)::before {
  animation-delay: -800ms;
}
.ril__loadingCirclePoint:nth-of-type(2) {
  transform: rotate(30deg);
}
.ril__loadingCirclePoint:nth-of-type(8) {
  transform: rotate(210deg);
}
.ril__loadingCirclePoint:nth-of-type(2)::before,
.ril__loadingCirclePoint:nth-of-type(8)::before {
  animation-delay: -666ms;
}
.ril__loadingCirclePoint:nth-of-type(3) {
  transform: rotate(60deg);
}
.ril__loadingCirclePoint:nth-of-type(9) {
  transform: rotate(240deg);
}
.ril__loadingCirclePoint:nth-of-type(3)::before,
.ril__loadingCirclePoint:nth-of-type(9)::before {
  animation-delay: -533ms;
}
.ril__loadingCirclePoint:nth-of-type(4) {
  transform: rotate(90deg);
}
.ril__loadingCirclePoint:nth-of-type(10) {
  transform: rotate(270deg);
}
.ril__loadingCirclePoint:nth-of-type(4)::before,
.ril__loadingCirclePoint:nth-of-type(10)::before {
  animation-delay: -400ms;
}
.ril__loadingCirclePoint:nth-of-type(5) {
  transform: rotate(120deg);
}
.ril__loadingCirclePoint:nth-of-type(11) {
  transform: rotate(300deg);
}
.ril__loadingCirclePoint:nth-of-type(5)::before,
.ril__loadingCirclePoint:nth-of-type(11)::before {
  animation-delay: -266ms;
}
.ril__loadingCirclePoint:nth-of-type(6) {
  transform: rotate(150deg);
}
.ril__loadingCirclePoint:nth-of-type(12) {
  transform: rotate(330deg);
}
.ril__loadingCirclePoint:nth-of-type(6)::before,
.ril__loadingCirclePoint:nth-of-type(12)::before {
  animation-delay: -133ms;
}
.ril__loadingCirclePoint:nth-of-type(7) {
  transform: rotate(180deg);
}
.ril__loadingCirclePoint:nth-of-type(13) {
  transform: rotate(360deg);
}
.ril__loadingCirclePoint:nth-of-type(7)::before,
.ril__loadingCirclePoint:nth-of-type(13)::before {
  animation-delay: 0ms;
}

.ril__loadingContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ril__imagePrev .ril__loadingContainer,
.ril__imageNext .ril__loadingContainer {
  display: none;
}

.ril__errorContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ril__imagePrev .ril__errorContainer,
.ril__imageNext .ril__errorContainer {
  display: none;
}

.ril__loadingContainer__icon {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.react-tabs {
  -webkit-tap-highlight-color: transparent;
}

.react-tabs__tab-list {
  border-bottom: 1px solid #aaa;
  margin: 0 0 10px;
  padding: 0;
}

.react-tabs__tab {
  display: inline-block;
  border: 1px solid transparent;
  border-bottom: none;
  bottom: -1px;
  position: relative;
  list-style: none;
  padding: 6px 12px;
  cursor: pointer;
}

.react-tabs__tab--selected {
  background: #fff;
  border-color: #aaa;
  color: black;
  border-radius: 5px 5px 0 0;
}

.react-tabs__tab--disabled {
  color: GrayText;
  cursor: default;
}

.react-tabs__tab:focus {
  box-shadow: 0 0 5px hsl(208, 99%, 50%);
  border-color: hsl(208, 99%, 50%);
  outline: none;
}

.react-tabs__tab:focus:after {
  content: "";
  position: absolute;
  height: 5px;
  left: -4px;
  right: -4px;
  bottom: -5px;
  background: #fff;
}

.react-tabs__tab-panel {
  display: none;
}

.react-tabs__tab-panel--selected {
  display: block;
}

.fileUploader {
	width: 100%;
}

.fileContainer {
	background: #fff;
	box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.05);
	position: relative;
	border-radius: 10px;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin: 10px auto;
	transition: all 0.3s ease-in;
}

.fileContainer input {
	opacity: 0;
	position: absolute;
	z-index: -1;
}

.fileContainer p {
	font-size: 12px;
	margin: 8px 0 4px;
}

.fileContainer .errorsContainer {
	max-width: 300px;
	font-size: 12px;
	color: red;
	text-align: left;
}

.fileContainer .chooseFileButton {
	padding: 6px 23px;
	background: #3f4257;
	border-radius: 30px;
	color: white;
	font-weight: 300;
	font-size: 14px;
	margin: 10px 0;
	transition: all 0.2s ease-in;
	cursor: pointer;
	outline: none;
	border: none;
}

.fileContainer .chooseFileButton:hover {
	background: #545972;
}

.fileContainer .uploadFilesButton {
	padding: 5px 43px;
	background: transparent;
	border-radius: 30px;
	color: #3f4257;
	font-weight: 300;
	font-size: 14px;
	margin: 10px 0;
	transition: all 0.2s ease-in;
	cursor: pointer;
	outline: none;
	border: 1px solid #3f4257;
}

.fileContainer .uploadFilesButton:hover {
	background: #3f4257;
	color: #fff;
}

.fileContainer .uploadIcon {
	width: 50px;
	height: 50px;
}

.fileContainer .uploadPicturesWrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

.fileContainer .uploadPictureContainer {
	width: 25%;
	margin: 5%;
	padding: 10px;
	background: #edf2f6;
	display: flex;
	align-items: center;
	justify-content: center;
	height: inherit;
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
	border: 1px solid #d0dbe4;
	position: relative;
}

.fileContainer .uploadPictureContainer img.uploadPicture {
	width: 100%;
}

.fileContainer .deleteImage {
	position: absolute;
	top: -9px;
	right: -9px;
	color: #fff;
	background: #ff4081;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	font-size: 26px;
	font-weight: bold;
	line-height: 30px;
	width: 30px;
	height: 30px;
}

.flipMove {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}


/*# sourceMappingURL=main.2a33836f.css.map*/