@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

/**
 *
 * All animations must live in their own file
 * in the animations directory and be included
 * here.
 *
 */

/**
 * Styles shared by multiple animations
 */

/**
 * Dots
 */

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

  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }

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

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

  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }

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

.ball-pulse > div:nth-child(0) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s 0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s 0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s 0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s 0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s 0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.ball-pulse-sync > div:nth-child(0) {
  -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
}

.ball-pulse-sync > div:nth-child(1) {
  -webkit-animation: ball-pulse-sync 0.6s 0.07s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s 0.07s infinite ease-in-out;
}

.ball-pulse-sync > div:nth-child(2) {
  -webkit-animation: ball-pulse-sync 0.6s 0.14s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s 0.14s infinite ease-in-out;
}

.ball-pulse-sync > div:nth-child(3) {
  -webkit-animation: ball-pulse-sync 0.6s 0.21s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s 0.21s infinite ease-in-out;
}

.ball-pulse-sync > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

@-webkit-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.ball-scale > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0 ease-in-out infinite;
  animation: ball-scale 1s 0 ease-in-out infinite;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ball-rotate {
  position: relative;
}

.ball-rotate > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: relative;
}

.ball-rotate > div:first-child {
  -webkit-animation: rotate 1s 0 cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
  animation: rotate 1s 0 cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
}

.ball-rotate > div:before,
.ball-rotate > div:after {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  content: "";
  position: absolute;
  opacity: 0.8;
}

.ball-rotate > div:before {
  top: 0px;
  left: -28px;
}

.ball-rotate > div:after {
  top: 0px;
  left: 25px;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }

  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }

  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}

.ball-clip-rotate > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  height: 25px;
  width: 25px;
  background: transparent !important;
  display: inline-block;
  -webkit-animation: rotate 0.75s 0 linear infinite;
  animation: rotate 0.75s 0 linear infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }

  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }

  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}

@keyframes scale {
  30% {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

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

.ball-clip-rotate-pulse {
  position: relative;
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}

.ball-clip-rotate-pulse > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 100%;
}

.ball-clip-rotate-pulse > div:first-child {
  background: #ffffff;
  height: 16px;
  width: 16px;
  top: 9px;
  left: 9px;
  -webkit-animation: scale 1s 0 cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: scale 1s 0 cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

.ball-clip-rotate-pulse > div:last-child {
  position: absolute;
  border: 2px solid #ffffff;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 2px solid;
  border-color: #ffffff transparent #ffffff transparent;
  -webkit-animation: rotate 1s 0 cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: rotate 1s 0 cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }

  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }

  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}

.ball-clip-rotate-multiple {
  position: relative;
}

.ball-clip-rotate-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: 0px;
  top: 0px;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-radius: 100%;
  height: 35px;
  width: 35px;
  -webkit-animation: rotate 1s 0 ease-in-out infinite;
  animation: rotate 1s 0 ease-in-out infinite;
}

.ball-clip-rotate-multiple > div:last-child {
  display: inline-block;
  top: 10px;
  left: 10px;
  width: 15px;
  height: 15px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  border-color: #ffffff transparent #ffffff transparent;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

@-webkit-keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    opacity: 0.0;
  }
}

@keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    opacity: 0.0;
  }
}

.ball-scale-ripple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 2px solid #ffffff;
  -webkit-animation: ball-scale-ripple 1s 0 infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple 1s 0 infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}

@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    opacity: 0.0;
  }
}

@keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    opacity: 0.0;
  }
}

.ball-scale-ripple-multiple {
  position: relative;
  -webkit-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  transform: translateY(-25px);
}

.ball-scale-ripple-multiple > div:nth-child(0) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.ball-scale-ripple-multiple > div:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.ball-scale-ripple-multiple > div:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.ball-scale-ripple-multiple > div:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.ball-scale-ripple-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid #ffffff;
  -webkit-animation: ball-scale-ripple-multiple 1.25s 0 infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple-multiple 1.25s 0 infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}

@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

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

@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

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

.ball-beat > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: ball-beat 0.7s 0 infinite linear;
  animation: ball-beat 0.7s 0 infinite linear;
}

.ball-beat > div:nth-child(2n-1) {
  -webkit-animation-delay: 0.35s !important;
  animation-delay: 0.35s !important;
}

@-webkit-keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.ball-scale-multiple {
  position: relative;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

.ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.ball-scale-multiple > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  -webkit-animation: ball-scale-multiple 1s 0 linear infinite;
  animation: ball-scale-multiple 1s 0 linear infinite;
}

@-webkit-keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }

  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }

  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }

  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }

  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }

  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }

  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

.ball-triangle-path {
  position: relative;
  -webkit-transform: translate(-25px, -25px);
  -ms-transform: translate(-25px, -25px);
  transform: translate(-25px, -25px);
}

.ball-triangle-path > div:nth-child(1) {
  -webkit-animation-name: "ball-triangle-path-1";
  animation-name: "ball-triangle-path-1";
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div:nth-child(2) {
  -webkit-animation-name: "ball-triangle-path-2";
  animation-name: "ball-triangle-path-2";
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div:nth-child(3) {
  -webkit-animation-name: "ball-triangle-path-3";
  animation-name: "ball-triangle-path-3";
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #ffffff;
}

.ball-triangle-path > div:nth-of-type(1) {
  top: 50px;
}

.ball-triangle-path > div:nth-of-type(2) {
  left: 25px;
}

.ball-triangle-path > div:nth-of-type(3) {
  top: 50px;
  left: 50px;
}

@-webkit-keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}

@keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}

.ball-pulse-rise > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

.ball-pulse-rise > div:nth-child(2n) {
  -webkit-animation-name: ball-pulse-rise-even;
  animation-name: ball-pulse-rise-even;
}

.ball-pulse-rise > div:nth-child(2n-1) {
  -webkit-animation-name: ball-pulse-rise-odd;
  animation-name: ball-pulse-rise-odd;
}

@-webkit-keyframes ball-grid-beat {
  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@keyframes ball-grid-beat {
  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

.ball-grid-beat {
  width: 57px;
}

.ball-grid-beat > div:nth-child(1) {
  -webkit-animation-delay: 0.49s;
  animation-delay: 0.49s;
  -webkit-animation-duration: 0.64s;
  animation-duration: 0.64s;
}

.ball-grid-beat > div:nth-child(2) {
  -webkit-animation-delay: 0.32s;
  animation-delay: 0.32s;
  -webkit-animation-duration: 0.86s;
  animation-duration: 0.86s;
}

.ball-grid-beat > div:nth-child(3) {
  -webkit-animation-delay: 0.54s;
  animation-delay: 0.54s;
  -webkit-animation-duration: 1.58s;
  animation-duration: 1.58s;
}

.ball-grid-beat > div:nth-child(4) {
  -webkit-animation-delay: 0.39s;
  animation-delay: 0.39s;
  -webkit-animation-duration: 1.56s;
  animation-duration: 1.56s;
}

.ball-grid-beat > div:nth-child(5) {
  -webkit-animation-delay: 0.61s;
  animation-delay: 0.61s;
  -webkit-animation-duration: 1.12s;
  animation-duration: 1.12s;
}

.ball-grid-beat > div:nth-child(6) {
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
  -webkit-animation-duration: 1.13s;
  animation-duration: 1.13s;
}

.ball-grid-beat > div:nth-child(7) {
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
  -webkit-animation-duration: 0.88s;
  animation-duration: 0.88s;
}

.ball-grid-beat > div:nth-child(8) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 1.54s;
  animation-duration: 1.54s;
}

.ball-grid-beat > div:nth-child(9) {
  -webkit-animation-delay: 0.57s;
  animation-delay: 0.57s;
  -webkit-animation-duration: 0.79s;
  animation-duration: 0.79s;
}

.ball-grid-beat > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-name: ball-grid-beat;
  animation-name: ball-grid-beat;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }

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

@keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }

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

.ball-grid-pulse {
  width: 57px;
}

.ball-grid-pulse > div:nth-child(1) {
  -webkit-animation-delay: 0.34s;
  animation-delay: 0.34s;
  -webkit-animation-duration: 0.76s;
  animation-duration: 0.76s;
}

.ball-grid-pulse > div:nth-child(2) {
  -webkit-animation-delay: 0.59s;
  animation-delay: 0.59s;
  -webkit-animation-duration: 0.87s;
  animation-duration: 0.87s;
}

.ball-grid-pulse > div:nth-child(3) {
  -webkit-animation-delay: 0.19s;
  animation-delay: 0.19s;
  -webkit-animation-duration: 1.17s;
  animation-duration: 1.17s;
}

.ball-grid-pulse > div:nth-child(4) {
  -webkit-animation-delay: 0.29s;
  animation-delay: 0.29s;
  -webkit-animation-duration: 1.42s;
  animation-duration: 1.42s;
}

.ball-grid-pulse > div:nth-child(5) {
  -webkit-animation-delay: 0.64s;
  animation-delay: 0.64s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

.ball-grid-pulse > div:nth-child(6) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
  -webkit-animation-duration: 0.95s;
  animation-duration: 0.95s;
}

.ball-grid-pulse > div:nth-child(7) {
  -webkit-animation-delay: 0.03s;
  animation-delay: 0.03s;
  -webkit-animation-duration: 0.94s;
  animation-duration: 0.94s;
}

.ball-grid-pulse > div:nth-child(8) {
  -webkit-animation-delay: 0.71s;
  animation-delay: 0.71s;
  -webkit-animation-duration: 1.27s;
  animation-duration: 1.27s;
}

.ball-grid-pulse > div:nth-child(9) {
  -webkit-animation-delay: 0.57s;
  animation-delay: 0.57s;
  -webkit-animation-duration: 1.23s;
  animation-duration: 1.23s;
}

.ball-grid-pulse > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-name: ball-grid-pulse;
  animation-name: ball-grid-pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

@-webkit-keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

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

@keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

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

.ball-spin-fade-loader {
  position: relative;
}

.ball-spin-fade-loader > div:nth-child(1) {
  top: 25px;
  left: 0;
  -webkit-animation: ball-spin-fade-loader 1s 0s infinite linear;
  animation: ball-spin-fade-loader 1s 0s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(2) {
  top: 17.0454545455px;
  left: 17.0454545455px;
  -webkit-animation: ball-spin-fade-loader 1s 0.12s infinite linear;
  animation: ball-spin-fade-loader 1s 0.12s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 25px;
  -webkit-animation: ball-spin-fade-loader 1s 0.24s infinite linear;
  animation: ball-spin-fade-loader 1s 0.24s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(4) {
  top: -17.0454545455px;
  left: 17.0454545455px;
  -webkit-animation: ball-spin-fade-loader 1s 0.36s infinite linear;
  animation: ball-spin-fade-loader 1s 0.36s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(5) {
  top: -25px;
  left: 0;
  -webkit-animation: ball-spin-fade-loader 1s 0.48s infinite linear;
  animation: ball-spin-fade-loader 1s 0.48s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(6) {
  top: -17.0454545455px;
  left: -17.0454545455px;
  -webkit-animation: ball-spin-fade-loader 1s 0.6s infinite linear;
  animation: ball-spin-fade-loader 1s 0.6s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -25px;
  -webkit-animation: ball-spin-fade-loader 1s 0.72s infinite linear;
  animation: ball-spin-fade-loader 1s 0.72s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(8) {
  top: 17.0454545455px;
  left: -17.0454545455px;
  -webkit-animation: ball-spin-fade-loader 1s 0.84s infinite linear;
  animation: ball-spin-fade-loader 1s 0.84s infinite linear;
}

.ball-spin-fade-loader > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
}

@-webkit-keyframes ball-spin-loader {
  75% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

@keyframes ball-spin-loader {
  75% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

.ball-spin-loader {
  position: relative;
}

.ball-spin-loader > span:nth-child(1) {
  top: 45px;
  left: 0;
  -webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
  animation: ball-spin-loader 2s 0.9s infinite linear;
}

.ball-spin-loader > span:nth-child(2) {
  top: 30.6818181818px;
  left: 30.6818181818px;
  -webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
  animation: ball-spin-loader 2s 1.8s infinite linear;
}

.ball-spin-loader > span:nth-child(3) {
  top: 0;
  left: 45px;
  -webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
  animation: ball-spin-loader 2s 2.7s infinite linear;
}

.ball-spin-loader > span:nth-child(4) {
  top: -30.6818181818px;
  left: 30.6818181818px;
  -webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
  animation: ball-spin-loader 2s 3.6s infinite linear;
}

.ball-spin-loader > span:nth-child(5) {
  top: -45px;
  left: 0;
  -webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
  animation: ball-spin-loader 2s 4.5s infinite linear;
}

.ball-spin-loader > span:nth-child(6) {
  top: -30.6818181818px;
  left: -30.6818181818px;
  -webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
  animation: ball-spin-loader 2s 5.4s infinite linear;
}

.ball-spin-loader > span:nth-child(7) {
  top: 0;
  left: -45px;
  -webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
  animation: ball-spin-loader 2s 6.3s infinite linear;
}

.ball-spin-loader > span:nth-child(8) {
  top: 30.6818181818px;
  left: -30.6818181818px;
  -webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
  animation: ball-spin-loader 2s 7.2s infinite linear;
}

.ball-spin-loader > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: green;
}

@-webkit-keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.ball-zig-zag {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  -ms-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}

.ball-zig-zag > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 30px;
  left: 30px;
}

.ball-zig-zag > div:first-child {
  -webkit-animation: ball-zig 0.7s 0 infinite linear;
  animation: ball-zig 0.7s 0 infinite linear;
}

.ball-zig-zag > div:last-child {
  -webkit-animation: ball-zag 0.7s 0 infinite linear;
  animation: ball-zag 0.7s 0 infinite linear;
}

@-webkit-keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.ball-zig-zag-deflect {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  -ms-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}

.ball-zig-zag-deflect > div {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 30px;
  left: 30px;
}

.ball-zig-zag-deflect > div:first-child {
  -webkit-animation: ball-zig-deflect 1.5s 0 infinite linear;
  animation: ball-zig-deflect 1.5s 0 infinite linear;
}

.ball-zig-zag-deflect > div:last-child {
  -webkit-animation: ball-zag-deflect 1.5s 0 infinite linear;
  animation: ball-zag-deflect 1.5s 0 infinite linear;
}

/**
 * Lines
 */

@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

.line-scale > div:nth-child(1) {
  -webkit-animation: line-scale 1s 0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s 0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s 0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s 0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s 0.5s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0.5s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div {
  background-color: #ffffff;
  width: 2px;
  height: 11px;
  border-radius: 2px;
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

@-webkit-keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

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

@keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

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

.line-scale-party > div:nth-child(1) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
  -webkit-animation-duration: 1.16s;
  animation-duration: 1.16s;
}

.line-scale-party > div:nth-child(2) {
  -webkit-animation-delay: 0.53s;
  animation-delay: 0.53s;
  -webkit-animation-duration: 0.76s;
  animation-duration: 0.76s;
}

.line-scale-party > div:nth-child(3) {
  -webkit-animation-delay: 0.64s;
  animation-delay: 0.64s;
  -webkit-animation-duration: 1.26s;
  animation-duration: 1.26s;
}

.line-scale-party > div:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 1.09s;
  animation-duration: 1.09s;
}

.line-scale-party > div {
  background-color: #ffffff;
  width: 2px;
  height: 11px;
  border-radius: 2px;
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-name: line-scale-party;
  animation-name: line-scale-party;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

.line-scale-pulse-out > div {
  background-color: #ffffff;
  width: 2px;
  height: 11px;
  border-radius: 2px;
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}

.line-scale-pulse-out > div:nth-child(2),
.line-scale-pulse-out > div:nth-child(4) {
  -webkit-animation-delay: -0.4s !important;
  animation-delay: -0.4s !important;
}

.line-scale-pulse-out > div:nth-child(1),
.line-scale-pulse-out > div:nth-child(5) {
  -webkit-animation-delay: -0.2s !important;
  animation-delay: -0.2s !important;
}

.line-scale-pulse-out.highlight > div {
  background-color: #27558b;
  width: 2px;
  height: 11px;
  border-radius: 2px;
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 2px;
}

@-webkit-keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }

  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

@keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }

  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

.line-scale-pulse-out-rapid > div {
  background-color: #ffffff;
  width: 2px;
  height: 11px;
  border-radius: 2px;
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s 0 infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
  animation: line-scale-pulse-out-rapid 0.9s 0 infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
}

.line-scale-pulse-out-rapid > div:nth-child(2),
.line-scale-pulse-out-rapid > div:nth-child(4) {
  -webkit-animation-delay: 0.25s !important;
  animation-delay: 0.25s !important;
}

.line-scale-pulse-out-rapid > div:nth-child(1),
.line-scale-pulse-out-rapid > div:nth-child(5) {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

@-webkit-keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

@keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

.line-spin-fade-loader {
  position: relative;
}

.line-spin-fade-loader > div:nth-child(1) {
  top: 20px;
  left: 0;
  -webkit-animation: line-spin-fade-loader 1.2s 0.12s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0.12s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(2) {
  top: 13.6363636364px;
  left: 13.6363636364px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: line-spin-fade-loader 1.2s 0.24s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0.24s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 20px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation: line-spin-fade-loader 1.2s 0.36s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0.36s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(4) {
  top: -13.6363636364px;
  left: 13.6363636364px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: line-spin-fade-loader 1.2s 0.48s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0.48s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(5) {
  top: -20px;
  left: 0;
  -webkit-animation: line-spin-fade-loader 1.2s 0.6s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0.6s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(6) {
  top: -13.6363636364px;
  left: -13.6363636364px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: line-spin-fade-loader 1.2s 0.72s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0.72s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -20px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation: line-spin-fade-loader 1.2s 0.84s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0.84s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(8) {
  top: 13.6363636364px;
  left: -13.6363636364px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: line-spin-fade-loader 1.2s 0.96s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0.96s infinite ease-in-out;
}

.line-spin-fade-loader > div {
  background-color: #ffffff;
  width: 2px;
  height: 11px;
  border-radius: 2px;
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 5px;
  height: 15px;
}

/**
 * Misc
 */

@-webkit-keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }

  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }

  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }

  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}

@keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }

  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }

  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }

  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}

.triangle-skew-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #ffffff;
  -webkit-animation: triangle-skew-spin 3s 0 cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: triangle-skew-spin 3s 0 cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

@-webkit-keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }

  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }

  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }

  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}

@keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }

  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }

  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }

  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}

.square-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 1px solid red;
  -webkit-animation: square-spin 3s 0 cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: square-spin 3s 0 cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

@-webkit-keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}

@keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}

.pacman {
  position: relative;
}

.pacman > div:nth-child(2) {
  -webkit-animation: pacman-balls 1s 0s infinite linear;
  animation: pacman-balls 1s 0s infinite linear;
}

.pacman > div:nth-child(3) {
  -webkit-animation: pacman-balls 1s 0.25s infinite linear;
  animation: pacman-balls 1s 0.25s infinite linear;
}

.pacman > div:nth-child(4) {
  -webkit-animation: pacman-balls 1s 0.5s infinite linear;
  animation: pacman-balls 1s 0.5s infinite linear;
}

.pacman > div:nth-child(5) {
  -webkit-animation: pacman-balls 1s 0.75s infinite linear;
  animation: pacman-balls 1s 0.75s infinite linear;
}

.pacman > div:first-of-type {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid #ffffff;
  border-left: 25px solid #ffffff;
  border-bottom: 25px solid #ffffff;
  border-radius: 25px;
}

.pacman > div:nth-child(2),
.pacman > div:nth-child(3),
.pacman > div:nth-child(4),
.pacman > div:nth-child(5) {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  width: 10px;
  height: 10px;
  position: absolute;
  -webkit-transform: translate(0, -6.25px);
  -ms-transform: translate(0, -6.25px);
  transform: translate(0, -6.25px);
  top: 25px;
  left: 100px;
}

@-webkit-keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg);
  }

  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg);
  }

  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg);
  }

  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg);
  }

  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

.cube-transition {
  position: relative;
  -webkit-transform: translate(-25px, -25px);
  -ms-transform: translate(-25px, -25px);
  transform: translate(-25px, -25px);
}

.cube-transition > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  -webkit-animation: cube-transition 1.6s 0 infinite ease-in-out;
  animation: cube-transition 1.6s 0 infinite ease-in-out;
}

.cube-transition > div:last-child {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

body {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.4px;
  font-weight: 700;
  word-spacing: 1px;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  margin-after: 0;
}

button,
.ubtn {
  letter-spacing: 0.4px;
}

.text-highlight,
.woocommerce .order-info,
.woocommerce-page .order-info {
  color: #27558b;
}

.text-highlight a,
.woocommerce .order-info a,
.woocommerce-page .order-info a {
  color: #27558b;
}

body {
  color: #808080;
}

h1,
h2,
h3,
h4,
h5,
h5 {
  color: #2a2a2a;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h5 a {
  color: #2a2a2a;
  transition: opacity 0.6s ease, color 0.4s ease;
}

h1 a:hover,
h1 a:focus,
h2 a:hover,
h2 a:focus,
h3 a:hover,
h3 a:focus,
h4 a:hover,
h4 a:focus,
h5 a:hover,
h5 a:focus,
h5 a:hover,
h5 a:focus {
  text-decoration: none;
  color: #27558b;
}

a {
  color: #808080;
  transition: opacity 0.6s ease, color 0.4s ease, background-color 0.4s ease;
}

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

p {
  font-family: "Open Sans";
}

@font-face {
  font-family: 'bebas_neue';
  src: url("../fonts/bebas-neue-fontfacekit/BebasNeue-webfont.eot");
  src: url("../fonts/bebas-neue-fontfacekit/BebasNeue-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/bebas-neue-fontfacekit/BebasNeue-webfont.woff") format("woff"), url("../fonts/bebas-neue-fontfacekit/BebasNeue-webfont.ttf") format("truetype"), url("../fonts/bebas-neue-fontfacekit/BebasNeue-webfont.svg#bebas_neue") format("svg");
  font-weight: normal;
  font-style: normal;
}

.bebas {
  font-family: "bebas_neue";
}

@font-face {
  font-family: 'dense';
  src: url("../fonts/dense-regular/dense-regular-webfont.eot");
  src: url("../fonts/dense-regular/dense-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/dense-regular/dense-regular-webfont.woff") format("woff"), url("../fonts/dense-regular/dense-regular-webfont.ttf") format("truetype"), url("../fonts/dense-regular/dense-regular-webfont.svg#denseregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.dense {
  font-family: "dense";
}

.th-row {
  top: 0px;
  left: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.th-row .dzsparallaxer {
  width: 100%;
}

.th-row .dzsparallaxer .dzsparallaxer--target {
  background-position: center center;
}

.column-separator {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  right: 0;
  z-index: 10;
}

.column-separator.fixedtop {
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

/* Slider */

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.ult-carousel-wrapper .slick-list {
  padding-top: 5px;
  padding-bottom: 5px;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

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

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

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

/* Icons */

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: 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: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "themesy";
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "";
}

[dir="rtl"] .slick-prev:before {
  content: "";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "";
}

[dir="rtl"] .slick-next:before {
  content: "";
}

/* Dots */

.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.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 {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "themesy";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 1;
}

.th-separator {
  margin: 0 auto;
}

/*****************************************/

/* Fade */

/*****************************************/

.fxFade .navOutNext,
.fxFade .navOutPrev {
  -webkit-animation: fadeOut 0.5s forwards ease-in-out;
  animation: fadeOut 0.5s forwards ease-in-out;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*
 * Special thanks to Mary Lou ( http://tympanus.net/codrops/author/crnacura/ )
 * ref: http://tympanus.net/codrops/2014/03/18/inspiration-for-item-transitions/
**/

/* 4 classes: navInLeft, navInRight, navOutLeft, navOutRight */

/*****************************************/

/* Soft Scale */

/*****************************************/

.fxSoftScale .navOutNext {
  -webkit-animation: scaleUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: scaleUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxSoftScale .navInNext {
  -webkit-animation: scaleDownUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: scaleDownUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxSoftScale .navOutPrev {
  -webkit-animation: scaleDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: scaleDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxSoftScale .navInPrev {
  -webkit-animation: scaleUpDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: scaleUpDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes scaleUp {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes scaleUp {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@-webkit-keyframes scaleDownUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}

@keyframes scaleDownUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes scaleDown {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    opacity: 0;
    -webkit-transform: scale(0.9);
  }
}

@keyframes scaleDown {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@-webkit-keyframes scaleUpDown {
  from {
    -webkit-transform: scale(1.2);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}

@keyframes scaleUpDown {
  from {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*****************************************/

/* Press away */

/*****************************************/

.fxPressAway .navOutNext {
  -webkit-animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxPressAway .navInNext {
  opacity: 1;
  -webkit-animation: slideInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: slideInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxPressAway .navOutPrev {
  -webkit-animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxPressAway .navInPrev {
  opacity: 1;
  -webkit-animation: slideInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: slideInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes slideOutScaleRight {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateX(100%) scale(0.9);
    opacity: 0;
  }
}

@keyframes slideOutScaleRight {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateX(100%) scale(0.9);
    transform: translateX(100%) scale(0.9);
    opacity: 0;
  }
}

@-webkit-keyframes slideInFromLeft {
  from {
    -webkit-transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideOutScaleLeft {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateX(-100%) scale(0.9);
    opacity: 0;
  }
}

@keyframes slideOutScaleLeft {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateX(-100%) scale(0.9);
    transform: translateX(-100%) scale(0.9);
    opacity: 0;
  }
}

@-webkit-keyframes slideInFromRight {
  from {
    -webkit-transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/*****************************************/

/* Side Swing */

/*****************************************/

.fxSideSwing .navOutNext {
  -webkit-animation: slideOutScaleRight 1.2s forwards;
  animation: slideOutScaleRight 1.2s forwards;
  -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
  /* older webkit */
  -webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
  animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}

.fxSideSwing .navInNext {
  opacity: 1;
  -webkit-animation: slideInFromLeft 1.2s forwards;
  animation: slideInFromLeft 1.2s forwards;
  -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
  /* older webkit */
  -webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
  animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}

.fxSideSwing .navOutPrev {
  -webkit-animation: slideOutScaleLeft 1.2s forwards;
  animation: slideOutScaleLeft 1.2s forwards;
  -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
  /* older webkit */
  -webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
  animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}

.fxSideSwing .navInPrev {
  opacity: 1;
  -webkit-animation: slideInFromRight 1.2s forwards;
  animation: slideInFromRight 1.2s forwards;
  -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
  /* older webkit */
  -webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
  animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}

/*****************************************/

/* Fortune wheel */

/*****************************************/

.fxFortuneWheel .itemwrap {
  -webkit-perspective: 1600px;
  perspective: 1600px;
}

.fxFortuneWheel .navOutNext {
  -webkit-animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxFortuneWheel .navInNext {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-animation: rotateInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: rotateInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxFortuneWheel .navOutPrev {
  -webkit-animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxFortuneWheel .navInPrev {
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-animation: rotateInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: rotateInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes rotateInFromLeft {
  from {
    -webkit-transform: translateX(-100%) rotateY(-55deg);
  }

  to {
    -webkit-transform: translateX(0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes rotateInFromLeft {
  from {
    -webkit-transform: translateX(-100%) rotateY(-55deg);
    transform: translateX(-100%) rotateY(-55deg);
  }

  to {
    -webkit-transform: translateX(0) rotateY(0deg);
    transform: translateX(0) rotateY(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes rotateInFromRight {
  from {
    -webkit-transform: translateX(100%) rotateY(55deg);
  }

  to {
    -webkit-transform: translateX(0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes rotateInFromRight {
  from {
    -webkit-transform: translateX(100%) rotateY(55deg);
    transform: translateX(100%) rotateY(55deg);
  }

  to {
    -webkit-transform: translateX(0) rotateY(0deg);
    transform: translateX(0) rotateY(0deg);
    opacity: 1;
  }
}

/*****************************************/

/* Swipe */

/*****************************************/

.fxSwipe .navOutNext {
  -webkit-animation: decreaseHeight 0.8s forwards ease-in-out;
  animation: decreaseHeight 0.8s forwards ease-in-out;
}

.fxSwipe .navInNext {
  -webkit-animation: show 0.8s forwards ease-in-out;
  animation: show 0.8s forwards ease-in-out;
}

.fxSwipe .navOutPrev {
  -webkit-animation: hide 0.8s forwards ease-in-out;
  animation: hide 0.8s forwards ease-in-out;
}

.fxSwipe .navInPrev {
  z-index: 9;
  opacity: 1;
  -webkit-animation: increaseHeight 0.8s forwards ease-in-out;
  animation: increaseHeight 0.8s forwards ease-in-out;
}

@-webkit-keyframes decreaseHeight {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    height: 0;
  }
}

@keyframes decreaseHeight {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    height: 0;
  }
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }

  1%, 100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }

  1%, 100% {
    opacity: 1;
  }
}

@-webkit-keyframes hide {
  0%, 99% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes hide {
  0%, 99% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes increaseHeight {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

@keyframes increaseHeight {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

/*****************************************/

/* Push reveal */

/*****************************************/

.fxPushReveal .navOutNext {
  opacity: 1;
  -webkit-animation: slideOutBottom 0.7s forwards ease-in-out;
  animation: slideOutBottom 0.7s forwards ease-in-out;
}

.fxPushReveal .navInNext {
  opacity: 1;
  -webkit-animation: slideInHalfFromTop 0.5s forwards ease-in-out;
  animation: slideInHalfFromTop 0.5s forwards ease-in-out;
}

.fxPushReveal .navOutPrev {
  opacity: 1;
  -webkit-animation: slideOutHalfTop 0.7s forwards ease-in-out;
  animation: slideOutHalfTop 0.7s forwards ease-in-out;
}

.fxPushReveal .navInPrev {
  opacity: 1;
  z-index: 9;
  -webkit-animation: slideInFromBottom 0.7s forwards ease-in-out;
  animation: slideInFromBottom 0.7s forwards ease-in-out;
}

@-webkit-keyframes slideOutBottom {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateY(100%);
  }
}

@keyframes slideOutBottom {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@-webkit-keyframes slideInHalfFromTop {
  from {
    -webkit-transform: translateY(-50%);
  }

  to {
    -webkit-transform: translateY(0);
  }
}

@keyframes slideInHalfFromTop {
  from {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideOutHalfTop {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateY(-50%);
  }
}

@keyframes slideOutHalfTop {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@-webkit-keyframes slideInFromBottom {
  from {
    -webkit-transform: translateY(100%);
  }

  to {
    -webkit-transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*****************************************/

/* Snap in */

/*****************************************/

.fxSnapIn .navOutNext {
  -webkit-animation: slideOutLeft 0.5s forwards ease-in;
  animation: slideOutLeft 0.5s forwards ease-in;
}

.fxSnapIn .navInNext {
  z-index: 9;
  opacity: 1;
  -webkit-animation: slideFromRightFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: slideFromRightFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxSnapIn .navOutPrev {
  -webkit-animation: slideOutRight 0.5s forwards ease-in;
  animation: slideOutRight 0.5s forwards ease-in;
}

.fxSnapIn .navInPrev {
  z-index: 9;
  opacity: 1;
  -webkit-animation: slideFromLeftFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: slideFromLeftFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxSnapIn li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.4s 0.1s ease-in;
}

.fxSnapIn .navOutPrev::after,
.fxSnapIn .navOutNext::after {
  opacity: 1;
}

@-webkit-keyframes slideOutLeft {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateX(-10%);
  }
}

@keyframes slideOutLeft {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }
}

@-webkit-keyframes slideFromRightFast {
  0%, 50% {
    -webkit-transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

@keyframes slideFromRightFast {
  0%, 50% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideOutRight {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateX(10%);
  }
}

@keyframes slideOutRight {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
  }
}

@-webkit-keyframes slideFromLeftFast {
  0%, 50% {
    -webkit-transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

@keyframes slideFromLeftFast {
  0%, 50% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

/*****************************************/

/* Let me in */

/*****************************************/

.fxLetMeIn .itemwrap {
  -webkit-perspective: 1600px;
  perspective: 1600px;
}

.fxLetMeIn .navOutNext {
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-animation: rotateOutRight 0.5s forwards ease-in-out;
  animation: rotateOutRight 0.5s forwards ease-in-out;
}

.fxLetMeIn .navInNext {
  z-index: 9;
  opacity: 1;
  -webkit-animation: slideFromRightFast 0.5s forwards ease;
  animation: slideFromRightFast 0.5s forwards ease;
}

.fxLetMeIn .navOutPrev {
  -webkit-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
  -webkit-animation: rotateOutLeft 0.5s forwards ease-in-out;
  animation: rotateOutLeft 0.5s forwards ease-in-out;
}

.fxLetMeIn .navInPrev {
  z-index: 9;
  opacity: 1;
  -webkit-animation: slideFromLeftFast 0.5s forwards ease;
  animation: slideFromLeftFast 0.5s forwards ease;
}

.fxLetMeIn li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.5s ease-in-out;
}

.fxLetMeIn .navOutPrev::after,
.fxLetMeIn .navOutNext::after {
  opacity: 1;
}

@-webkit-keyframes rotateOutRight {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: rotateY(10deg);
    transform: rotateY(10deg);
  }
}

@keyframes rotateOutRight {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: rotateY(10deg);
    transform: rotateY(10deg);
  }
}

@-webkit-keyframes rotateOutLeft {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: rotateY(-10deg);
    transform: rotateY(-10deg);
  }
}

@keyframes rotateOutLeft {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: rotateY(-10deg);
    transform: rotateY(-10deg);
  }
}

/*****************************************/

/* Stick it */

/*****************************************/

.fxStickIt .itemwrap {
  -webkit-perspective: 1600px;
  perspective: 1600px;
}

.fxStickIt .navOutNext {
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-animation: rotateBottomSideOut 0.8s forwards ease-in;
  animation: rotateBottomSideOut 0.8s forwards ease-in;
}

.fxStickIt .navInNext {
  z-index: 2;
  opacity: 1;
  -webkit-animation: slideInFromBottomDelayed 0.8s forwards;
  animation: slideInFromBottomDelayed 0.8s forwards;
}

.fxStickIt .navOutPrev {
  opacity: 1;
  -webkit-animation: slideOutToBottom 0.8s forwards;
  animation: slideOutToBottom 0.8s forwards;
}

.fxStickIt .navInPrev {
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-animation: rotateBottomSideIn 0.8s 0.1s forwards ease-in;
  animation: rotateBottomSideIn 0.8s 0.1s forwards ease-in;
}

@-webkit-keyframes rotateBottomSideOut {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  40% {
    -webkit-transform: rotateX(-15deg);
    -webkit-animation-timing-function: ease-out;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateZ(-200px);
  }
}

@keyframes rotateBottomSideOut {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  40% {
    -webkit-transform: rotateX(-15deg);
    transform: rotateX(-15deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateZ(-200px);
    transform: scale(0.8) translateZ(-200px);
  }
}

@-webkit-keyframes slideInFromBottomDelayed {
  0%, 30% {
    -webkit-transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes slideInFromBottomDelayed {
  0%, 30% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes rotateBottomSideIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateZ(-200px);
  }

  60% {
    -webkit-transform: scale(1) translateZ(0) rotateX(-15deg);
    -webkit-animation-timing-function: ease-out;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateZ(0) rotateX(0deg);
  }
}

@keyframes rotateBottomSideIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateZ(-200px);
    transform: scale(0.8) translateZ(-200px);
  }

  60% {
    -webkit-transform: scale(1) translateZ(0) rotateX(-15deg);
    transform: scale(1) translateZ(0) rotateX(-15deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateZ(0) rotateX(0deg);
    transform: scale(1) translateZ(0) rotateX(0deg);
  }
}

/*****************************************/

/* Archive me */

/*****************************************/

.fxArchiveMe .navOutNext {
  -webkit-animation: scaleHalfDown 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: scaleHalfDown 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxArchiveMe .navInNext {
  z-index: 9;
  opacity: 1;
  -webkit-animation: slideInFromBottom 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: slideInFromBottom 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxArchiveMe .navOutPrev {
  -webkit-animation: slideOutToBottom 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: slideOutToBottom 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxArchiveMe .navInPrev {
  -webkit-animation: scaleHalfUp 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: scaleHalfUp 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxArchiveMe li::before,
.fxArchiveMe li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.7s cubic-bezier(0.7, 0, 0.3, 1);
}

.fxArchiveMe li::after,
.fxArchiveMe .navOutNext::before {
  opacity: 1;
}

.fxArchiveMe li::before,
.fxArchiveMe li.current::after,
.fxArchiveMe .navInNext::after,
.fxArchiveMe .navInPrev::after {
  opacity: 0;
}

.fxArchiveMe .navInNext::after {
  transition: none;
}

@-webkit-keyframes scaleHalfDown {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: scale(0.6);
    opacity: 0;
  }
}

@keyframes scaleHalfDown {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
}

@-webkit-keyframes slideOutToBottom {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateY(100%);
  }
}

@keyframes slideOutToBottom {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@-webkit-keyframes scaleHalfUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}

@keyframes scaleHalfUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*****************************************/

/* Vertical growth */

/*****************************************/

.fxVGrowth .navOutNext {
  -webkit-animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
  animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}

.fxVGrowth .navInNext {
  z-index: 9;
  opacity: 1;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
  animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}

.fxVGrowth .navOutPrev {
  -webkit-animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
  animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}

.fxVGrowth .navInPrev {
  z-index: 9;
  opacity: 1;
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
  animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}

@-webkit-keyframes maximize {
  from {
    -webkit-transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
  }
}

@keyframes maximize {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*****************************************/

/* Slide Behind */

/* From https://github.com/hakimel/kontext by Hakim El Hattab, http://hakim.se */

/*****************************************/

.fxSlideBehind .itemwrap {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.fxSlideBehind .navOutNext {
  -webkit-animation: hideLeft 0.8s forwards;
  animation: hideLeft 0.8s forwards;
}

.fxSlideBehind .navInNext {
  -webkit-animation: showRight 0.8s forwards;
  animation: showRight 0.8s forwards;
}

.fxSlideBehind .navOutPrev {
  -webkit-animation: hideRight 0.8s forwards;
  animation: hideRight 0.8s forwards;
}

.fxSlideBehind .navInPrev {
  -webkit-animation: showLeft 0.8s forwards;
  animation: showLeft 0.8s forwards;
}

@-webkit-keyframes hideLeft {
  0% {
    -webkit-transform: translateZ(0px);
  }

  40% {
    -webkit-transform: translate(0, -40%) scale(0.8) rotateX(-20deg);
    z-index: 9999;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(-400px);
  }
}

@keyframes hideLeft {
  0% {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
  }

  40% {
    -webkit-transform: translate(0, -40%) scale(0.8) rotateX(-20deg);
    transform: translate(0, -40%) scale(0.8) rotateX(-20deg);
    z-index: 9999;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(-400px);
    transform: translateZ(-400px);
  }
}

@-webkit-keyframes showRight {
  0% {
    -webkit-transform: translateZ(-400px);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(0, 40%) scale(0.8) rotateX(20deg);
    opacity: 1;
  }

  41% {
    -webkit-transform: translate(0, 40%) scale(0.8) rotateX(20deg);
    opacity: 1;
    z-index: 9999;
  }

  100% {
    -webkit-transform: translateZ(0px);
    opacity: 1;
    z-index: 9999;
  }
}

@keyframes showRight {
  0% {
    -webkit-transform: translateZ(-400px);
    transform: translateZ(-400px);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(0, 40%) scale(0.8) rotateX(20deg);
    transform: translate(0, 40%) scale(0.8) rotateX(20deg);
    opacity: 1;
  }

  41% {
    -webkit-transform: translate(0, 40%) scale(0.8) rotateX(20deg);
    transform: translate(0, 40%) scale(0.8) rotateX(20deg);
    opacity: 1;
    z-index: 9999;
  }

  100% {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    opacity: 1;
    z-index: 9999;
  }
}

@-webkit-keyframes hideRight {
  0% {
    -webkit-transform: translateZ(0px);
  }

  40% {
    -webkit-transform: translate(0, 40%) scale(0.8) rotateX(20deg);
    z-index: 9999;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(-400px);
  }
}

@keyframes hideRight {
  0% {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
  }

  40% {
    -webkit-transform: translate(0, 40%) scale(0.8) rotateX(20deg);
    transform: translate(0, 40%) scale(0.8) rotateX(20deg);
    z-index: 9999;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(-400px);
    transform: translateZ(-400px);
  }
}

@-webkit-keyframes showLeft {
  0% {
    -webkit-transform: translateZ(-400px);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(0, -40%) scale(0.8) rotateX(-20deg);
    opacity: 1;
  }

  41% {
    -webkit-transform: translate(0, -40%) scale(0.8) rotateX(-20deg);
    opacity: 1;
    z-index: 9999;
  }

  100% {
    -webkit-transform: translateZ(0px);
    opacity: 1;
    z-index: 9999;
  }
}

@keyframes showLeft {
  0% {
    -webkit-transform: translateZ(-400px);
    transform: translateZ(-400px);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(0, -40%) scale(0.8) rotateX(-20deg);
    transform: translate(0, -40%) scale(0.8) rotateX(-20deg);
    opacity: 1;
  }

  41% {
    -webkit-transform: translate(0, -40%) scale(0.8) rotateX(-20deg);
    transform: translate(0, -40%) scale(0.8) rotateX(-20deg);
    opacity: 1;
    z-index: 9999;
  }

  100% {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    opacity: 1;
    z-index: 9999;
  }
}

/*****************************************/

/* Soft Pulse */

/*****************************************/

.fxSoftPulse .navOutPrev,
.fxSoftPulse .navOutNext {
  -webkit-animation: scaleUpFadeOut 0.8s forwards ease-in;
  animation: scaleUpFadeOut 0.8s forwards ease-in;
}

.fxSoftPulse .navInPrev,
.fxSoftPulse .navInNext {
  -webkit-animation: scaleDownFadeIn 0.8s forwards ease-out;
  animation: scaleDownFadeIn 0.8s forwards ease-out;
}

@-webkit-keyframes scaleUpFadeOut {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  50% {
    -webkit-transform: scale(1.2);
    opacity: 1;
  }

  75% {
    -webkit-transform: scale(1.1);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes scaleUpFadeOut {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes scaleDownFadeIn {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }

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

@keyframes scaleDownFadeIn {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

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

/*****************************************/

/* Cliff diving */

/*****************************************/

.fxCliffDiving li {
  -webkit-transform-origin: 50% 400%;
  -ms-transform-origin: 50% 400%;
  transform-origin: 50% 400%;
}

.fxCliffDiving .navOutNext {
  opacity: 1;
  -webkit-animation: rotateOutCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: rotateOutCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxCliffDiving .navInNext {
  opacity: 1;
  -webkit-animation: rotateInCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: rotateInCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxCliffDiving .navOutPrev {
  opacity: 1;
  -webkit-animation: rotateOutCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: rotateOutCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxCliffDiving .navInPrev {
  opacity: 1;
  -webkit-animation: rotateInCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: rotateInCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.fxCliffDiving li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background-color: black;
  transition: opacity 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.fxCliffDiving .navOutPrev::after,
.fxCliffDiving .navOutNext::after {
  opacity: 1;
}

@-webkit-keyframes rotateOutCircLeft {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: rotate(-20deg) translateX(-100%);
  }
}

@keyframes rotateOutCircLeft {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: rotate(-20deg) translateX(-100%);
    transform: rotate(-20deg) translateX(-100%);
  }
}

@-webkit-keyframes rotateInCircRight {
  from {
    -webkit-transform: rotate(20deg) translateX(100%);
  }

  to {
    -webkit-transform: rotate(0deg) translateX(0);
  }
}

@keyframes rotateInCircRight {
  from {
    -webkit-transform: rotate(20deg) translateX(100%);
    transform: rotate(20deg) translateX(100%);
  }

  to {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
}

@-webkit-keyframes rotateOutCircRight {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: rotate(20deg) translateX(100%);
  }
}

@keyframes rotateOutCircRight {
  from {

  }

  /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: rotate(20deg) translateX(100%);
    transform: rotate(20deg) translateX(100%);
  }
}

@-webkit-keyframes rotateInCircLeft {
  from {
    -webkit-transform: rotate(-20deg) translateX(-100%);
  }

  to {
    -webkit-transform: rotate(0deg) translateX(0);
  }
}

@keyframes rotateInCircLeft {
  from {
    -webkit-transform: rotate(-20deg) translateX(-100%);
    transform: rotate(-20deg) translateX(-100%);
  }

  to {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
}

img {
  height: auto;
}

.img-responsive {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

.uvc-heading .heading_line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #27558b;
  margin: 0 11px;
  vertical-align: super;
}

.gallery {
  margin-bottom: 0px;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
  color: #808080;
  font-size: 13px;
}

.th-gallery .dropdown .btn:focus,
.th-gallery .dropdown .post-password-form input[type="submit"]:focus,
.post-password-form .th-gallery .dropdown input[type="submit"]:focus,
.th-gallery .dropdown figure.hover-type-text figcaption .actions .action:focus,
figure.hover-type-text figcaption .actions .th-gallery .dropdown .action:focus {
  outline: 0;
}

.th-gallery .dropdown.open .dropdown-toggle {
  background-color: transparent;
}

.th-gallery .dropdown-toggle {
  border: 0 none;
}

.th-gallery .dropdown-toggle i {
  margin-left: 10px;
  font-size: 10px;
}

.th-gallery .filter > li {
  transition: color 0.3s ease, background-color 0.3s ease;
  color: #2a2a2a;
}

.th-gallery .filter > li.active {
  text-decoration: none;
  color: #27558b;
}

.th-gallery .filter > li.active > a {
  color: #27558b;
}

.th-gallery .filter > li:hover,
.th-gallery .filter > li:focus {
  text-decoration: none;
  color: #27558b;
}

.th-gallery .filter > li:hover a,
.th-gallery .filter > li:focus a {
  text-decoration: none;
  color: #27558b;
}

.calltoaction,
.comments .comment-respond #submitform,
.widget.contact-form .form-group input.btn,
.widget.contact-form .form-group .post-password-form input[type="submit"],
.post-password-form .widget.contact-form .form-group input[type="submit"],
.widget.contact-form .form-group figure.hover-type-text figcaption .actions input.action,
figure.hover-type-text figcaption .actions .widget.contact-form .form-group input.action,
.widget.widget_price_filter .price_slider_amount button.button,
.woocommerce div.product form.cart .button,
.woocommerce #content div.product form.cart .button,
.woocommerce-page div.product form.cart .button,
.woocommerce-page #content div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submitform,
.woocommerce #content input.button,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce-page #respond input#submitform,
.woocommerce-page #content input.button {
  font-family: "Open Sans";
  vertical-align: middle;
  fill: #2a2a2a;
  display: inline-block;
  background-color: #27558b;
  color: #ffffff;
  text-transform: uppercase;
  padding: 15px 30px;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 2px;
  margin: 0 auto;
  border: 0 none;
  white-space: nowrap;
  box-sizing: border-box;
  box-shadow: none;
  text-shadow: none;
}

.calltoaction:hover,
.comments .comment-respond #submitform:hover,
.widget.contact-form .form-group input.btn:hover,
.widget.contact-form .form-group .post-password-form input[type="submit"]:hover,
.post-password-form .widget.contact-form .form-group input[type="submit"]:hover,
.widget.contact-form .form-group figure.hover-type-text figcaption .actions input.action:hover,
figure.hover-type-text figcaption .actions .widget.contact-form .form-group input.action:hover,
.widget.widget_price_filter .price_slider_amount button.button:hover,
.woocommerce div.product form.cart .button:hover,
.woocommerce #content div.product form.cart .button:hover,
.woocommerce-page div.product form.cart .button:hover,
.woocommerce-page #content div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submitform:hover,
.woocommerce #content input.button:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce-page #respond input#submitform:hover,
.woocommerce-page #content input.button:hover,
.calltoaction:active,
.comments .comment-respond #submitform:active,
.widget.contact-form .form-group input.btn:active,
.widget.contact-form .form-group .post-password-form input[type="submit"]:active,
.post-password-form .widget.contact-form .form-group input[type="submit"]:active,
.widget.contact-form .form-group figure.hover-type-text figcaption .actions input.action:active,
figure.hover-type-text figcaption .actions .widget.contact-form .form-group input.action:active,
.widget.widget_price_filter .price_slider_amount button.button:active,
.woocommerce div.product form.cart .button:active,
.woocommerce #content div.product form.cart .button:active,
.woocommerce-page div.product form.cart .button:active,
.woocommerce-page #content div.product form.cart .button:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active,
.woocommerce #respond input#submitform:active,
.woocommerce #content input.button:active,
.woocommerce-page a.button:active,
.woocommerce-page button.button:active,
.woocommerce-page input.button:active,
.woocommerce-page #respond input#submitform:active,
.woocommerce-page #content input.button:active {
  box-shadow: none;
  color: #ffffff;
  opacity: 0.9;
}

.calltoaction:hover i,
.comments .comment-respond #submitform:hover i,
.widget.contact-form .form-group input.btn:hover i,
.widget.contact-form .form-group .post-password-form input[type="submit"]:hover i,
.post-password-form .widget.contact-form .form-group input[type="submit"]:hover i,
.widget.contact-form .form-group figure.hover-type-text figcaption .actions input.action:hover i,
figure.hover-type-text figcaption .actions .widget.contact-form .form-group input.action:hover i,
.widget.widget_price_filter .price_slider_amount button.button:hover i,
.woocommerce div.product form.cart .button:hover i,
.woocommerce #content div.product form.cart .button:hover i,
.woocommerce-page div.product form.cart .button:hover i,
.woocommerce-page #content div.product form.cart .button:hover i,
.woocommerce a.button:hover i,
.woocommerce button.button:hover i,
.woocommerce input.button:hover i,
.woocommerce #respond input#submitform:hover i,
.woocommerce #content input.button:hover i,
.woocommerce-page a.button:hover i,
.woocommerce-page button.button:hover i,
.woocommerce-page input.button:hover i,
.woocommerce-page #respond input#submitform:hover i,
.woocommerce-page #content input.button:hover i,
.calltoaction:active i,
.comments .comment-respond #submitform:active i,
.widget.contact-form .form-group input.btn:active i,
.widget.contact-form .form-group .post-password-form input[type="submit"]:active i,
.post-password-form .widget.contact-form .form-group input[type="submit"]:active i,
.widget.contact-form .form-group figure.hover-type-text figcaption .actions input.action:active i,
figure.hover-type-text figcaption .actions .widget.contact-form .form-group input.action:active i,
.widget.widget_price_filter .price_slider_amount button.button:active i,
.woocommerce div.product form.cart .button:active i,
.woocommerce #content div.product form.cart .button:active i,
.woocommerce-page div.product form.cart .button:active i,
.woocommerce-page #content div.product form.cart .button:active i,
.woocommerce a.button:active i,
.woocommerce button.button:active i,
.woocommerce input.button:active i,
.woocommerce #respond input#submitform:active i,
.woocommerce #content input.button:active i,
.woocommerce-page a.button:active i,
.woocommerce-page button.button:active i,
.woocommerce-page input.button:active i,
.woocommerce-page #respond input#submitform:active i,
.woocommerce-page #content input.button:active i {
  -webkit-animation: toRightFromLeftTranslateCentered 0.9s infinite;
  animation: toRightFromLeftTranslateCentered 0.9s infinite;
}

.calltoaction:focus,
.comments .comment-respond #submitform:focus,
.widget.contact-form .form-group input.btn:focus,
.widget.contact-form .form-group .post-password-form input[type="submit"]:focus,
.post-password-form .widget.contact-form .form-group input[type="submit"]:focus,
.widget.contact-form .form-group figure.hover-type-text figcaption .actions input.action:focus,
figure.hover-type-text figcaption .actions .widget.contact-form .form-group input.action:focus,
.widget.widget_price_filter .price_slider_amount button.button:focus,
.woocommerce div.product form.cart .button:focus,
.woocommerce #content div.product form.cart .button:focus,
.woocommerce-page div.product form.cart .button:focus,
.woocommerce-page #content div.product form.cart .button:focus,
.woocommerce a.button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus,
.woocommerce #respond input#submitform:focus,
.woocommerce #content input.button:focus,
.woocommerce-page a.button:focus,
.woocommerce-page button.button:focus,
.woocommerce-page input.button:focus,
.woocommerce-page #respond input#submitform:focus,
.woocommerce-page #content input.button:focus {
  box-shadow: none;
  outline: none;
}

.ubtn {
  font-family: "Open Sans";
  transition: background-color 2s ease;
}

.ubtn:hover .ubtn-icon {
  -webkit-animation: toRightFromLeftTranslateCentered 0.9s infinite;
  animation: toRightFromLeftTranslateCentered 0.9s infinite;
}

/*-----------------*/

/***** Outline *****/

/*-----------------*/

.btn-outline,
figure.hover-type-text figcaption .actions .action {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  padding-left: 14px;
  line-height: 23px;
}

.btn-outline:hover,
figure.hover-type-text figcaption .actions .action:hover,
.btn-outline:focus,
figure.hover-type-text figcaption .actions .action:focus,
.btn-outline:active,
figure.hover-type-text figcaption .actions .action:active,
.btn-outline.active,
figure.hover-type-text figcaption .actions .active.action,
.open .dropdown-toggle.btn-outline,
.open figure.hover-type-text figcaption .actions .dropdown-toggle.action,
figure.hover-type-text figcaption .actions .open .dropdown-toggle.action {
  color: #ffffff;
  background-color: #27558b;
  border-color: #27558b;
}

.btn-outline:active,
figure.hover-type-text figcaption .actions .action:active,
.btn-outline.active,
figure.hover-type-text figcaption .actions .active.action,
.open .dropdown-toggle.btn-outline,
.open figure.hover-type-text figcaption .actions .dropdown-toggle.action,
figure.hover-type-text figcaption .actions .open .dropdown-toggle.action {
  background-image: none;
}

.btn-outline.disabled,
figure.hover-type-text figcaption .actions .disabled.action,
.btn-outline[disabled],
figure.hover-type-text figcaption .actions [disabled].action,
fieldset[disabled] .btn-outline,
fieldset[disabled] figure.hover-type-text figcaption .actions .action,
figure.hover-type-text figcaption .actions fieldset[disabled] .action,
.btn-outline.disabled:hover,
figure.hover-type-text figcaption .actions .disabled.action:hover,
.btn-outline[disabled]:hover,
figure.hover-type-text figcaption .actions [disabled].action:hover,
fieldset[disabled] .btn-outline:hover,
fieldset[disabled] figure.hover-type-text figcaption .actions .action:hover,
figure.hover-type-text figcaption .actions fieldset[disabled] .action:hover,
.btn-outline.disabled:focus,
figure.hover-type-text figcaption .actions .disabled.action:focus,
.btn-outline[disabled]:focus,
figure.hover-type-text figcaption .actions [disabled].action:focus,
fieldset[disabled] .btn-outline:focus,
fieldset[disabled] figure.hover-type-text figcaption .actions .action:focus,
figure.hover-type-text figcaption .actions fieldset[disabled] .action:focus,
.btn-outline.disabled:active,
figure.hover-type-text figcaption .actions .disabled.action:active,
.btn-outline[disabled]:active,
figure.hover-type-text figcaption .actions [disabled].action:active,
fieldset[disabled] .btn-outline:active,
fieldset[disabled] figure.hover-type-text figcaption .actions .action:active,
figure.hover-type-text figcaption .actions fieldset[disabled] .action:active,
.btn-outline.disabled.active,
figure.hover-type-text figcaption .actions .disabled.active.action,
.btn-outline[disabled].active,
figure.hover-type-text figcaption .actions [disabled].active.action,
fieldset[disabled] .btn-outline.active,
fieldset[disabled] figure.hover-type-text figcaption .actions .active.action,
figure.hover-type-text figcaption .actions fieldset[disabled] .active.action {
  background-color: transparent;
  border-color: #2a2a2a;
}

.btn-outline .badge,
figure.hover-type-text figcaption .actions .action .badge {
  color: #2a2a2a;
  background-color: #2a2a2a;
}

.btn.btn-lg,
.btn-group-lg > .btn,
.post-password-form .btn-group-lg > input[type="submit"],
figure.hover-type-text figcaption .actions .btn-group-lg > .action,
.post-password-form input.btn-lg[type="submit"],
figure.hover-type-text figcaption .actions .btn-lg.action {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
}

.btn:hover,
.post-password-form input[type="submit"]:hover,
figure.hover-type-text figcaption .actions .action:hover,
.btn:active,
.post-password-form input[type="submit"]:active,
figure.hover-type-text figcaption .actions .action:active {
  box-shadow: none;
  color: #ffffff;
}

.hline_chart {
  margin: 0 auto;
  width: 90%;
  margin-top: 20px;
}

.hline_chart .progress_title_holder {
  display: block;
  text-align: left;
  margin-bottom: 10px;
}

.hline_chart .progress_content_outer {
  display: block;
  position: relative;
  overflow: hidden;
  height: 16px;
  width: 100%;
}

.hline_chart .progress_content_outer .progress_content {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  overflow: hidden;
  height: 16px;
  width: 0%;
  transition: width 2s linear;
}

.hline_chart:first-of-type {
  margin-top: 40px;
}

.carousel {
  position: relative;
}

.carousel .logo {
  width: 100%;
  max-width: 436px;
}

.carousel .carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel .carousel-inner > .item {
  display: none;
  position: relative;
  transition: left 0.6s ease-in-out;
}

.carousel .carousel-inner > .item > img,
.carousel .carousel-inner > .item > a > img {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

.carousel .carousel-inner > .active,
.carousel .carousel-inner > .next,
.carousel .carousel-inner > .prev {
  display: block;
}

.carousel .carousel-inner > .active {
  left: 0;
}

.carousel .carousel-inner > .active.left {
  left: -100%;
}

.carousel .carousel-inner > .active.right {
  left: 100%;
}

.carousel .carousel-inner > .next,
.carousel .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel .carousel-inner > .next {
  left: 100%;
}

.carousel .carousel-inner > .prev {
  left: -100%;
}

.carousel .carousel-inner > .next.left,
.carousel .carousel-inner > .prev.right {
  left: 0;
}

.carousel.main .carousel-inner .item .image {
  padding: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
}

.carousel.main .carousel-inner .item .image.c1 {
  background-position: calc(50% - 300px) -184px;
}

.carousel.main .carousel-inner .item .image.c2 {
  background-position: calc(50% - 205px) -114px;
}

.carousel.main .carousel-inner .item .image img {
  display: none;
  transition: none;
  transition: none;
  -webkit-animation: none;
  animation: none;
}

.carousel.clients figure img {
  width: 60%;
}

.carousel.highlights .carousel-inner .item figure {
  width: 100%;
}

.carousel .carousel-indicators-wrapper {
  width: 100%;
  position: absolute;
  bottom: 2px;
  height: 45px;
  background-color: #2a2a2a;
  z-index: 10;
}

.carousel .carousel-indicators {
  bottom: 0;
  height: 30px;
  margin-bottom: 0;
}

.carousel .carousel-indicators.in-transition li .bullet {
  opacity: 0.3;
  filter: alpha(opacity=30);
}

.carousel .carousel-indicators li {
  height: 30px !important;
  width: 30px;
  border: 0 none;
  margin: 0;
  position: relative;
  transition: width 0.6s linear, height 0.6s linear, margin 0.6s linear;
}

.carousel .carousel-indicators li::after {
  background-color: transparent;
}

.carousel .carousel-indicators li .bullet {
  vertical-align: middle;
  width: 7px;
  height: 7px;
  text-indent: -999px;
  margin: 0 auto;
  opacity: 1;
  padding-top: 1px;
  border: 1px solid;
  border-color: #2a2a2a;
  border-radius: 10px;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 6px);
  left: 12px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: opacity 0.7s cubic-bezier(0, 0.61, 0.43, 0.95), width 0.6s linear, height 0.6s linear, margin 0.6s linear, left 0.6s linear;
  background-color: #000000 \9;
  background-color: transparent;
  background-color: #2a2a2a;
}

.carousel .carousel-indicators li.active {
  background-color: transparent;
  width: 36px;
}

.carousel .carousel-indicators li.active .bullet {
  width: 15px;
  height: 15px;
  background-color: #2a2a2a;
  opacity: 1;
  left: 11px;
}

.carousel .carousel-indicators li.active_l1 {
  background-color: transparent;
}

.carousel .carousel-indicators li.active_l1 .bullet {
  width: 11px;
  height: 11px;
  background-color: #2a2a2a;
  opacity: 1;
  left: 10px;
}

.carousel .carousel-indicators li.active_l2 {
  background-color: transparent;
}

.carousel .carousel-indicators li.active_l2 .bullet {
  width: 9px;
  height: 9px;
  background-color: #2a2a2a;
  opacity: 1;
  left: 11px;
}

.carousel .carousel-control {
  width: 0;
}

.carousel .carousel-control.left,
.carousel .carousel-control.right {
  opacity: 1;
  filter: alpha(opacity=100);
  background-image: none;
  background-repeat: no-repeat;
  text-shadow: none;
}

.carousel .carousel-control.left .svg,
.carousel .carousel-control.right .svg {
  max-width: 16px;
  max-height: 25px;
}

.carousel .carousel-control.left span,
.carousel .carousel-control.right span {
  padding: 15px;
  background-color: #2a2a2a;
}

.carousel .carousel-control.left span:hover,
.carousel .carousel-control.right span:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.carousel .carousel-control .glyphicon-chevron-left,
.carousel .carousel-control .glyphicon-chevron-right,
.carousel .carousel-control .icon-prev,
.carousel .carousel-control .icon-next {
  position: absolute;
  top: 45%;
  z-index: 5;
  display: inline-block;
}

.carousel .carousel-control .glyphicon-chevron-left,
.carousel .carousel-control .icon-prev {
  left: 0;
}

.carousel .carousel-control .glyphicon-chevron-right,
.carousel .carousel-control .icon-next {
  right: 0;
}

.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .carousel .logo {
    width: 85%;
  }

  .carousel.main .carousel-inner .item .image.c2 {
    background-position: auto;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .carousel .logo {
    width: 436px;
  }

  .carousel.main .carousel-inner .item .image.c1 {
    background-position: auto;
  }
}

.carousel.fx .carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: none;
}

.carousel.fx .carousel-inner > .item {
  display: none;
  position: relative;
  left: 0;
}

.carousel.fx .carousel-inner > .active,
.carousel.fx .carousel-inner > .next,
.carousel.fx .carousel-inner > .prev {
  display: block;
}

.carousel.fx .carousel-inner > .active {
  z-index: 2;
}

.carousel.fx .carousel-inner > .next,
.carousel.fx .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

/*****************************************/

/* Fade */

/*****************************************/

.carousel.fx.fxFade .carousel-inner > .active {
  z-index: 3;
}

.carousel.fx.fxFade .carousel-inner > .next.left {
  z-index: 2;
}

.carousel.fx.fxFade .carousel-inner > .prev.right {
  z-index: 2;
}

/*****************************************/

/* Soft Pulse */

/*****************************************/

/*****************************************/

/* Push reveal */

/*****************************************/

/*****************************************/

/* Snap in */

/*****************************************/

/*****************************************/

/* Swipe */

/*****************************************/

.carousel.fxSwipe .carousel-inner {
  height: 100%;
}

.carousel.fxSwipe .carousel-inner > .item {
  overflow: hidden;
  height: 100%;
}

/*****************************************/

/* fxSoftScale */

/*****************************************/

.carousel.fx.fxSoftScale .carousel-inner > .next.left {
  height: 200%;
}

/*****************************************/

/* PressAway */

/*****************************************/

/*****************************************/

/* Side Swing */

/*****************************************/

/*****************************************/

/* Fortune wheel */

/*****************************************/

.carousel.fx.fxFortuneWheel .carousel-inner {
  -webkit-perspective: 1600px;
  perspective: 1600px;
  background: transparent;
}

/*****************************************/

/* Let me in */

/*****************************************/

.carousel.fx.fxLetMeIn .carousel-inner {
  -webkit-perspective: 1600px;
  perspective: 1600px;
}

/*****************************************/

/* Stick it */

/*****************************************/

.carousel.fx.fxStickIt .carousel-inner {
  background: transparent;
}

/*****************************************/

/* Archive me */

/*****************************************/

.carousel.fx.fxArchiveMe .carousel-inner {
  background: transparent;
}

/*****************************************/

/* Vertical growth */

/*****************************************/

.carousel.fx.fxVGrowth .carousel-inner {
  background: transparent;
}

/*****************************************/

/* Slide Behind */

/* From https://github.com/hakimel/kontext by Hakim El Hattab, http://hakim.se */

/*****************************************/

.carousel.fx.fxSlideBehind .carousel-inner {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  background: transparent;
}

.carousel.fx.fxSlideBehind .carousel-inner > .next,
.carousel.fx.fxSlideBehind .carousel-inner > .prev {
  z-index: 3;
}

/*****************************************/

/* Earthquake */

/* From http://elrumordelaluz.github.io/csshake/ by Lionel, http://t.co/thCECnx1Yg */

/*****************************************/

.carousel.fx.fxEarthquake .carousel-inner {
  background: transparent;
}

/*****************************************/

/* Cliff diving */

/*****************************************/

.carousel.fx.fxCliffDiving .carousel-inner {
  background: transparent;
}

.carousel-clients-wrapper {
  overflow: hidden !important;
}

.th-carousel-slick {
  padding-left: 0px;
  padding-right: 0px;
  margin: 0 auto;
  width: 98%;
  position: relative;
  /* Dots */
}

.th-carousel-slick .slick-list {
  padding-left: 30px;
  padding-right: 30px;
}

.slick-loading .th-carousel-slick {
  background: #fff center center no-repeat;
}

.th-carousel-slick .slick-prev {
  left: 0px;
}

[dir="rtl"] .th-carousel-slick .slick-prev {
  right: 0px;
}

.th-carousel-slick .slick-next {
  right: 3px;
}

[dir="rtl"] .th-carousel-slick .slick-next {
  left: 0px;
}

.th-carousel-slick .slick-dots li button:hover,
.th-carousel-slick .slick-dots li button:focus {
  outline: none;
}

.th-carousel-slick .slick-dots li button:hover:before,
.th-carousel-slick .slick-dots li button:focus:before {
  color: #27558b;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .th-carousel-slick {
    padding-left: 0px;
    padding-right: 0px;
    margin: 0 auto;
    width: 99%;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .th-carousel-slick {
    width: 98%;
  }
}

/* Large devices (large desktops, 1200px and up) */

.carousel-highlights-wrapper .th-carousel-slick {
  padding-left: 0px;
  padding-right: 0px;
  margin: 0 auto;
  width: calc(100% - 1px);
  position: relative;
  /* Dots */
}

.carousel-highlights-wrapper .th-carousel-slick .slick-list {
  padding-left: 90px;
  padding-right: 90px;
}

.carousel-highlights-wrapper .th-carousel-slick .slick-list .text-center {
  padding-left: 10px;
  padding-right: 10px;
}

.slick-loading .carousel-highlights-wrapper .th-carousel-slick {
  background: #fff center center no-repeat;
}

.carousel-highlights-wrapper .th-carousel-slick .slick-prev,
.carousel-highlights-wrapper .th-carousel-slick .slick-next {
  width: 80px;
  fill: #2a2a2a;
  margin: 0;
  width: 80px;
  background-color: #2a2a2a;
  color: #2a2a2a;
  fill: #2a2a2a;
  height: calc(100% + 1px);
  z-index: 100;
  transition: background-color 0.3s ease;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.carousel-highlights-wrapper .th-carousel-slick .slick-prev i,
.carousel-highlights-wrapper .th-carousel-slick .slick-next i {
  font-size: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}

.carousel-highlights-wrapper .th-carousel-slick .slick-prev:hover,
.carousel-highlights-wrapper .th-carousel-slick .slick-next:hover {
  background-color: #27558b;
  color: #2a2a2a;
}

.carousel-highlights-wrapper .th-carousel-slick .slick-prev:hover:before,
.carousel-highlights-wrapper .th-carousel-slick .slick-next:hover:before {
  color: #2a2a2a;
}

.carousel-highlights-wrapper .th-carousel-slick .slick-prev:before,
.carousel-highlights-wrapper .th-carousel-slick .slick-next:before {
  font-size: 28px;
  position: absolute;
  color: #2a2a2a;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.carousel-highlights-wrapper .th-carousel-slick .slick-prev {
  left: 0px;
}

[dir="rtl"] .carousel-highlights-wrapper .th-carousel-slick .slick-prev {
  right: 0px;
}

.carousel-highlights-wrapper .th-carousel-slick .slick-prev:before {
  font-family: "themesy";
  content: "\e634";
}

.carousel-highlights-wrapper .th-carousel-slick .slick-prev:hover:before {
  -webkit-animation: toLeftFromRight 0.3s forwards;
  animation: toLeftFromRight 0.3s forwards;
}

.carousel-highlights-wrapper .th-carousel-slick .slick-next {
  right: 0px;
}

[dir="rtl"] .carousel-highlights-wrapper .th-carousel-slick .slick-next {
  left: 0px;
}

.carousel-highlights-wrapper .th-carousel-slick .slick-next:before {
  font-family: "themesy";
  content: "\e633";
}

.carousel-highlights-wrapper .th-carousel-slick .slick-next:hover:before {
  -webkit-animation: toRightFromLeft 0.3s forwards;
  animation: toRightFromLeft 0.3s forwards;
}

.carousel-highlights-wrapper .th-carousel-slick .slick-dots li button:hover,
.carousel-highlights-wrapper .th-carousel-slick .slick-dots li button:focus {
  outline: none;
}

.carousel-highlights-wrapper .th-carousel-slick .slick-dots li button:hover:before,
.carousel-highlights-wrapper .th-carousel-slick .slick-dots li button:focus:before {
  color: #27558b;
}

.th-slider {
  margin-left: -10px;
  margin-right: -10px;
}

.th-slider.fullscreen {
  height: 100%;
}

.th-slider.fullscreen .item,
.th-slider.fullscreen .active {
  height: 100%;
}

.th-slider.fullscreen .carousel-inner {
  height: 100%;
}

.th-slider.carousel.fullscreen .item {
  height: 100%;
}

.th-slider.carousel.fullscreen .item .image {
  height: 105%;
  background-size: cover;
}

.th-slider.carousel.fullscreen .item .carousel-inner.static {
  height: 100%;
}

.th-slider.carousel.fullscreen .item .carousel-inner .slide_inner_content .content.middle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.th-slider.carousel .text.one_by_one {
  -webkit-animation: none;
  animation: none;
  opacity: 1;
}

.th-slider.carousel .carousel-inner .slide_inner_content {
  height: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.th-slider.carousel .carousel-inner .slide_inner_content .content.middle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.th-slider.carousel .carousel-inner .slide_inner_content .content .container,
.th-slider.carousel .carousel-inner .slide_inner_content .content .post-password-form {
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  width: 160%;
  margin-left: -30%;
}

.th-slider.carousel .carousel-inner .slide_inner_content .content .container .content-text,
.th-slider.carousel .carousel-inner .slide_inner_content .content .post-password-form .content-text {
  display: inline-block;
  width: auto;
  max-width: 100%;
}

.th-slider.carousel .carousel-inner .slide_inner_content h1,
.th-slider.carousel .carousel-inner .slide_inner_content h2,
.th-slider.carousel .carousel-inner .slide_inner_content h3,
.th-slider.carousel .carousel-inner .slide_inner_content h4,
.th-slider.carousel .carousel-inner .slide_inner_content h5,
.th-slider.carousel .carousel-inner .slide_inner_content h6,
.th-slider.carousel .carousel-inner .slide_inner_content p {
  letter-spacing: 4px;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 400;
}

.th-slider.carousel .carousel-inner .slide_inner_content .text.one_by_one > div {
  position: relative;
  opacity: 0;
  filter: alpha(opacity=0);
}

.th-slider.carousel .carousel-inner .active .slide_inner_content .text.one_by_one > div {
  -webkit-animation: text-from-bottom-one-by-one 1.2s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  animation: text-from-bottom-one-by-one 1.2s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 1;
  filter: alpha(opacity=100);
}

.th-slider.carousel .carousel-inner .active .slide_inner_content .text.one_by_one > div:nth-child(1) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}

.th-slider.carousel .carousel-inner .active .slide_inner_content .text.one_by_one > div:nth-child(2) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

.th-slider.carousel .carousel-inner .active .slide_inner_content .text.one_by_one > div:nth-child(3) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

.th-slider.carousel .carousel-inner .active .slide_inner_content .text.one_by_one > div:nth-child(4) {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}

.th-slider.carousel .carousel-inner .active .slide_inner_content .text.one_by_one > div:nth-child(5) {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

.th-slider.carousel .carousel-inner .active .slide_inner_content .text.one_by_one > div:nth-child(6) {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}

.th-slider.carousel .carousel-inner .active .slide_inner_content .text.one_by_one > div:nth-child(7) {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}

.th-slider.carousel .carousel-inner .active .slide_inner_content .text.one_by_one > div:nth-child(8) {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
}

.th-slider.carousel .carousel-inner .active .slide_inner_content .text.one_by_one > div:nth-child(9) {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}

.th-slider .slider-inner-content-bar-top {
  display: block;
  margin-bottom: 11px;
  height: 2px;
  border-top: 2px solid;
  border-top-color: #2a2a2a;
  width: 100%;
}

.th-slider .slider-inner-content-bar-bottom {
  display: block;
  height: 2px;
  border-top: 2px solid;
  border-top-color: #2a2a2a;
  width: 100%;
  margin-top: 11px;
}

@media (max-width: 768px) and (orientation: landscape) {
  .th-slider.carousel.fullscreen .item .carousel-inner .slide_inner_content .content.middle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .th-slider.carousel.fullscreen .item .carousel-inner .slide_inner_content .content .container,
  .th-slider.carousel.fullscreen .item .carousel-inner .slide_inner_content .content .post-password-form {
    width: 160%;
    margin-left: -30%;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
  }

  .th-slider.carousel .carousel-inner .slide_inner_content .content.middle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .th-slider.carousel .carousel-inner .slide_inner_content .content .container,
  .th-slider.carousel .carousel-inner .slide_inner_content .content .post-password-form {
    width: 160%;
    margin-left: -30%;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
  }
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .th-slider {
    margin-left: -10px;
    margin-right: -10px;
  }

  .th-slider.carousel.fullscreen .carousel-inner .item {
    height: 100%;
  }

  .th-slider.carousel.fullscreen .carousel-inner .item .image {
    height: 120%;
    background-size: cover;
  }

  .th-slider.carousel.fullscreen .carousel-inner .item .slide_inner_content .content.middle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .th-slider.carousel.fullscreen .carousel-inner .item .slide_inner_content .content .container,
  .th-slider.carousel.fullscreen .carousel-inner .item .slide_inner_content .content .post-password-form {
    width: 132%;
    margin-left: -16%;
    -webkit-transform: scale(0.68);
    -ms-transform: scale(0.68);
    transform: scale(0.68);
  }

  .th-slider.carousel.fullscreen .carousel-inner .item .slide_inner_content .content .container .content-text,
  .th-slider.carousel.fullscreen .carousel-inner .item .slide_inner_content .content .post-password-form .content-text {
    display: inline-block;
    width: auto;
    max-width: 100%;
  }

  .th-slider.carousel .carousel-inner {
    height: 100%;
  }

  .th-slider.carousel .carousel-inner .slide_inner_content {
    height: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .th-slider.carousel .carousel-inner .slide_inner_content .content.middle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .th-slider.carousel .carousel-inner .slide_inner_content .content .container,
  .th-slider.carousel .carousel-inner .slide_inner_content .content .post-password-form {
    width: 132%;
    margin-left: -16%;
    -webkit-transform: scale(0.68);
    -ms-transform: scale(0.68);
    transform: scale(0.68);
  }

  .th-slider.carousel .carousel-inner .slide_inner_content .content .container .content-text,
  .th-slider.carousel .carousel-inner .slide_inner_content .content .post-password-form .content-text {
    display: inline-block;
    width: auto;
    max-width: 100%;
  }

  .navbar-integrated .th-slider.carousel.fullscreen .carousel-inner .item .slide_inner_content .content.middle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .navbar-integrated .th-slider .carousel-inner .item .slide_inner_content .content.middle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .th-slider.carousel.fullscreen .carousel-inner .item {
    height: 100%;
  }

  .th-slider.carousel.fullscreen .carousel-inner .item .image {
    height: 105%;
    background-size: cover;
  }

  .th-slider.carousel.fullscreen .carousel-inner .item .slide_inner_content .content.middle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .th-slider.carousel.fullscreen .carousel-inner .item .slide_inner_content .content .container,
  .th-slider.carousel.fullscreen .carousel-inner .item .slide_inner_content .content .post-password-form {
    width: 100%;
    margin-left: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .th-slider.carousel.fullscreen .carousel-inner .item .slide_inner_content .content .container .content-text,
  .th-slider.carousel.fullscreen .carousel-inner .item .slide_inner_content .content .post-password-form .content-text {
    display: inline-block;
    width: auto;
  }

  .th-slider.carousel .carousel-inner .item .slide_inner_content .content.middle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .th-slider.carousel .carousel-inner .item .slide_inner_content .content .container,
  .th-slider.carousel .carousel-inner .item .slide_inner_content .content .post-password-form {
    width: 100%;
    margin-left: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .th-slider.carousel .carousel-inner .item .slide_inner_content .content .container .content-text,
  .th-slider.carousel .carousel-inner .item .slide_inner_content .content .post-password-form .content-text {
    display: inline-block;
    width: auto;
  }
}

/* Large devices (large desktops, 1200px and up) */

@-webkit-keyframes text-from-bottom-one-by-one {
  0% {
    top: 70px;
    opacity: 0;
  }

  50% {
    top: 45px;
    opacity: 0;
  }

  100% {
    top: 0px;
    opacity: 1;
  }
}

@keyframes text-from-bottom-one-by-one {
  0% {
    top: 70px;
    opacity: 0;
  }

  50% {
    top: 45px;
    opacity: 0;
  }

  100% {
    top: 0px;
    opacity: 1;
  }
}

.dropdown.transparent {
  background-color: transparent;
}

.dropdown .btn,
.dropdown .post-password-form input[type="submit"],
.post-password-form .dropdown input[type="submit"],
.dropdown figure.hover-type-text figcaption .actions .action,
figure.hover-type-text figcaption .actions .dropdown .action {
  background-color: transparent;
  color: #2a2a2a;
  border-color: transparent;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0px;
  word-spacing: 0px;
  outline: none;
  transition: color 0.4s linear;
}

.dropdown .btn.transparent,
.dropdown .post-password-form input.transparent[type="submit"],
.post-password-form .dropdown input.transparent[type="submit"],
.dropdown figure.hover-type-text figcaption .actions .transparent.action,
figure.hover-type-text figcaption .actions .dropdown .transparent.action {
  background-color: transparent;
  border: 0 none;
}

.dropdown .btn:hover,
.dropdown .post-password-form input[type="submit"]:hover,
.post-password-form .dropdown input[type="submit"]:hover,
.dropdown figure.hover-type-text figcaption .actions .action:hover,
figure.hover-type-text figcaption .actions .dropdown .action:hover {
  color: #27558b;
}

.dropdown.open .dropdown-toggle {
  background-color: transparent;
  border-color: #27558b;
  color: #27558b;
}

.dropdown .dropdown-menu {
  background-image: none !important;
  top: calc(100% + 30px);
  background-color: #f7f7f7;
  box-shadow: 0 0 3px rgba(189, 189, 189, 0.64);
  /* drop shadow */
  padding-top: 20px;
  padding-bottom: 20px;
  border: 0 none;
  width: 321px;
  background-clip: border-box;
}

.dropdown .dropdown-menu.position-left {
  left: initial;
  right: 0;
}

.dropdown .dropdown-menu > li {
  margin-right: 0;
  width: 321px;
  min-height: 37px;
  position: relative;
}

.dropdown .dropdown-menu > li a {
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  word-spacing: 0.2px;
  white-space: normal;
  width: 321px;
  line-height: 20px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.dropdown .dropdown-menu > li a:after {
  position: absolute;
  font-family: 'themesy';
  top: calc(50% - 10px);
  right: 20px;
  content: "\e630";
}

.dropdown .dropdown-menu > li > a {
  padding-right: 60px;
}

.dropdown .dropdown-menu > li.dropdown-submenu > ul.dropdown-menu {
  left: 100%;
  top: -20px;
}

.dropdown .dropdown-menu > li.dropdown-submenu > ul.dropdown-menu > li > a {
  padding-right: 60px;
}

.dropdown .dropdown-menu > li.dropdown-submenu > ul.dropdown-menu.position-left {
  left: initial;
  right: 100%;
}

.dropdown .dropdown-menu > li > a {
  display: block;
  padding: 12px 30px;
  padding-right: 60px;
  clear: both;
  color: #2a2a2a;
  text-transform: uppercase;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  word-spacing: 0.2px;
  width: 321px;
  transition: color 0.3s ease, background-color 0.3s ease;
  -webkit-font-smoothing: subpixel-antialiased;
}

.dropdown .dropdown-menu > li.active {
  text-decoration: none;
  color: #27558b;
  background-color: #ffffff;
}

.dropdown .dropdown-menu > li.active > a {
  color: #27558b;
  background-color: #ffffff;
}

.dropdown .dropdown-menu > li > a:hover,
.dropdown .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #27558b;
  background-color: #ffffff;
}

.dropdown .dropdown-menu > li > a:hover a,
.dropdown .dropdown-menu > li > a:focus a {
  text-decoration: none;
  color: #27558b;
  background-color: #ffffff;
}

.dropdown.open > a,
.dropdown.open > a:hover,
.dropdown.open > a:focus,
.dropdown.open .dropdown-menu .dropdown-submenu.open > a {
  background-color: transparent;
  border-color: #27558b;
  color: #27558b;
}

.dropdown.open .dropdown-menu {
  -webkit-animation: linearFromLeft 0.4s 0.2s both;
  animation: linearFromLeft 0.4s 0.2s both;
  margin-top: 0px;
}

.breadcrumb {
  padding: 0;
  margin-right: 0;
  margin-top: 40px;
  margin-bottom: 35px;
  text-align: right;
  font-family: "Open Sans";
  word-break: break-all;
}

.breadcrumb > li {
  display: inline-block;
  color: #27558b;
  text-transform: capitalize;
}

.breadcrumb > li.no-link {
  color: #2a2a2a;
}

.breadcrumb > li.no-link:last-of-type {
  color: #27558b;
}

.breadcrumb > li a {
  color: #2a2a2a;
  line-height: 16px;
  font-weight: 400;
}

.breadcrumb > li a:hover,
.breadcrumb > li a :active,
.breadcrumb > li a :focus {
  color: #27558b;
  text-decoration: none;
}

.breadcrumb > li:before {
  display: none;
}

.breadcrumb > li:after {
  content: "/";
  color: #2a2a2a;
  padding: 0 8px 0 8px;
}

.breadcrumb > li:last-of-type:after {
  display: none;
}

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

/* Large devices (large desktops, 1200px and up) */

.comments h3 {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Open Sans";
}

.comments .comment-respond {
  font-family: "Open Sans";
}

.comments .comment-respond .row {
  margin-left: 0;
  margin-right: 0;
}

.comments .comment-respond .row [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.comments .comment-respond .comment-form-comment textarea {
  height: 122px;
}

.comments .comment-respond .comment-notes {
  float: none;
  padding-top: 8px;
  padding-bottom: 20px;
  display: block;
}

.comments .comment-respond #submitform {
  font-size: 13px;
  line-height: 1.33;
  font-weight: 600;
  padding: 15px 50px;
  text-transform: uppercase;
  border: 0;
}

.comments .comment-respond #submitform:hover,
.comments .comment-respond #submitform:active {
  box-shadow: none;
  color: #ffffff;
  opacity: 0.9;
}

.comments .comment-respond #submitform:hover i,
.comments .comment-respond #submitform:active i {
  -webkit-animation: toRightFromLeftTranslateCentered 0.9s infinite;
  animation: toRightFromLeftTranslateCentered 0.9s infinite;
}

.comments .comment-respond #submitform:focus {
  box-shadow: none;
  outline: none;
}

.comments .responses {
  margin-bottom: 20px;
}

.comments .responses .comment-list .pingback .comment-body {
  margin-bottom: 30px;
  padding: 20px;
  background: #f7f7f7;
}

.comments .responses .comment-list .comment .comment-body {
  margin-bottom: 30px;
  padding: 20px;
  background: #f7f7f7;
}

.comments .responses .comment-list .comment .comment-body .comment-meta:before,
.comments .responses .comment-list .comment .comment-body .comment-meta:after {
  content: " ";
  display: table;
}

.comments .responses .comment-list .comment .comment-body .comment-meta:after {
  clear: both;
}

.comments .responses .comment-list .comment .comment-body .comment-meta .comment-author .avatar {
  float: left;
  margin-right: 18px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border-radius: 27px;
  width: 54px;
  height: 54px;
}

.comments .responses .comment-list .comment .comment-body .comment-meta .comment-author .fn {
  font-weight: normal;
  text-transform: uppercase;
}

.comments .responses .comment-list .comment .comment-body .comment-meta .comment-author .says {
  display: none;
}

.comments .responses .comment-list .comment .comment-body .comment-content {
  margin-top: 30px;
}

.comments .responses .comment-list .comment .depth-2,
.comments .responses .comment-list .comment .depth-3,
.comments .responses .comment-list .comment .depth-4,
.comments .responses .comment-list .comment .depth-5,
.comments .responses .comment-list .comment .depth-6,
.comments .responses .comment-list .comment .depth-7,
.comments .responses .comment-list .comment .depth-8,
.comments .responses .comment-list .comment .depth-9,
.comments .responses .comment-list .comment .depth-10 {
  margin-left: 25px;
}

.comment-navigation {
  margin-bottom: 30px;
}

.comment-navigation:before,
.comment-navigation:after {
  content: " ";
  display: table;
}

.comment-navigation:after {
  clear: both;
}

.comment-navigation .nav-previous {
  float: left;
}

.comment-navigation .nav-next {
  float: right;
}

.comment-navigation a {
  color: #27558b;
}

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .comments {
    padding-left: 0;
    padding-right: 0;
  }

  .comments .comment-respond {
    margin-bottom: 30px;
  }

  .comments .comment-respond .row [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }

  .comments .comment-respond .row [class*="col-"]:first-child,
  .comments .comment-respond .row [class*="col-"]:last-child {
    padding-left: 0;
    padding-right: 0;
  }

  .comments .comment-respond .comment-notes {
    display: inline-block;
    float: right;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .comments .comment-respond .comment-notes:before,
  .comments .comment-respond .comment-notes:after {
    content: " ";
    display: table;
  }

  .comments .comment-respond .comment-notes:after {
    clear: both;
  }

  .comments .comment-respond #submitform {
    display: inline-block;
  }
}

/* Large devices (large desktops, 1200px and up) */

.th_item {
  text-align: center;
}

.th_item .th_subtitle {
  margin-top: 15px;
}

.th_item .th_content {
  margin-top: 35px;
  padding-right: 20px;
  padding-left: 20px;
}

.shape_rhombus {
  margin: 50px auto;
  display: block;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 0px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Safari and Chrome */
  position: relative;
}

.shape_rhombus img {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Safari and Chrome */
  position: absolute;
  width: 232px;
  max-width: 232px;
  top: -41px;
  left: -41px;
}

.shape_circle {
  margin: 50px auto;
  display: block;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 0px;
  position: relative;
}

.shape_circle img {
  border-radius: 80px;
}

.shape_square {
  margin: 50px auto;
  display: block;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 0px;
  position: relative;
}

.shape_square img {
  width: 150px;
  max-width: 150px;
}

.vc_element-container .wpcf7-form {
  margin-left: -10px;
  margin-right: -10px;
}

.wpcf7-form .form-control,
.wpcf7-form select a,
select .wpcf7-form a,
.wpcf7-form .chosen-container-single a,
.chosen-container-single .wpcf7-form a,
.wpcf7-form input.input-text,
.wpcf7-form textarea,
.wpcf7-form .select2-container .select2-choice,
.select2-container .wpcf7-form .select2-choice,
.wpcf7-form .post-password-form input[type="password"],
.post-password-form .wpcf7-form input[type="password"],
.wpcf7-form .woocommerce form .form-row select a,
.woocommerce form .form-row select .wpcf7-form a,
.wpcf7-form .woocommerce form .form-row .chosen-container-single a,
.woocommerce form .form-row .chosen-container-single .wpcf7-form a,
.wpcf7-form .woocommerce-page form .form-row select a,
.woocommerce-page form .form-row select .wpcf7-form a,
.wpcf7-form .woocommerce-page form .form-row .chosen-container-single a,
.woocommerce-page form .form-row .chosen-container-single .wpcf7-form a,
.wpcf7-form .woocommerce form .form-row .select2-container .select2-choice,
.woocommerce form .form-row .select2-container .wpcf7-form .select2-choice,
.wpcf7-form .woocommerce-page form .form-row .select2-container .select2-choice,
.woocommerce-page form .form-row .select2-container .wpcf7-form .select2-choice,
.wpcf7-form .woocommerce form .form-row input.input-text,
.woocommerce form .form-row .wpcf7-form input.input-text,
.wpcf7-form .woocommerce form .form-row textarea,
.woocommerce form .form-row .wpcf7-form textarea,
.wpcf7-form .woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row .wpcf7-form input.input-text,
.wpcf7-form .woocommerce-page form .form-row textarea,
.woocommerce-page form .form-row .wpcf7-form textarea,
.comments .comment-respond .form-control,
.comments .comment-respond select a,
select .comments .comment-respond a,
.comments .comment-respond .chosen-container-single a,
.chosen-container-single .comments .comment-respond a,
.comments .comment-respond input.input-text,
.comments .comment-respond textarea,
.comments .comment-respond .select2-container .select2-choice,
.select2-container .comments .comment-respond .select2-choice,
.comments .comment-respond .post-password-form input[type="password"],
.post-password-form .comments .comment-respond input[type="password"],
.comments .comment-respond .woocommerce form .form-row select a,
.woocommerce form .form-row select .comments .comment-respond a,
.comments .comment-respond .woocommerce form .form-row .chosen-container-single a,
.woocommerce form .form-row .chosen-container-single .comments .comment-respond a,
.comments .comment-respond .woocommerce-page form .form-row select a,
.woocommerce-page form .form-row select .comments .comment-respond a,
.comments .comment-respond .woocommerce-page form .form-row .chosen-container-single a,
.woocommerce-page form .form-row .chosen-container-single .comments .comment-respond a,
.comments .comment-respond .woocommerce form .form-row .select2-container .select2-choice,
.woocommerce form .form-row .select2-container .comments .comment-respond .select2-choice,
.comments .comment-respond .woocommerce-page form .form-row .select2-container .select2-choice,
.woocommerce-page form .form-row .select2-container .comments .comment-respond .select2-choice,
.comments .comment-respond .woocommerce form .form-row input.input-text,
.woocommerce form .form-row .comments .comment-respond input.input-text,
.comments .comment-respond .woocommerce form .form-row textarea,
.woocommerce form .form-row .comments .comment-respond textarea,
.comments .comment-respond .woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row .comments .comment-respond input.input-text,
.comments .comment-respond .woocommerce-page form .form-row textarea,
.woocommerce-page form .form-row .comments .comment-respond textarea,
#reviews .comment-respond .form-control,
#reviews .comment-respond select a,
select #reviews .comment-respond a,
#reviews .comment-respond .chosen-container-single a,
.chosen-container-single #reviews .comment-respond a,
#reviews .comment-respond input.input-text,
#reviews .comment-respond textarea,
#reviews .comment-respond .select2-container .select2-choice,
.select2-container #reviews .comment-respond .select2-choice,
#reviews .comment-respond .post-password-form input[type="password"],
.post-password-form #reviews .comment-respond input[type="password"] {
  font-size: 13px;
  padding: 10px 16px;
}

.wpcf7-form input.form-control,
.wpcf7-form input.input-text,
.wpcf7-form .select2-container input.select2-choice,
.select2-container .wpcf7-form input.select2-choice,
.wpcf7-form .post-password-form input[type="password"],
.post-password-form .wpcf7-form input[type="password"],
.wpcf7-form .woocommerce form .form-row .select2-container input.select2-choice,
.woocommerce form .form-row .select2-container .wpcf7-form input.select2-choice,
.wpcf7-form .woocommerce-page form .form-row .select2-container input.select2-choice,
.woocommerce-page form .form-row .select2-container .wpcf7-form input.select2-choice,
.wpcf7-form .woocommerce form .form-row input.input-text,
.woocommerce form .form-row .wpcf7-form input.input-text,
.wpcf7-form .woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row .wpcf7-form input.input-text,
.wpcf7-form select.form-control,
.wpcf7-form .select2-container select.select2-choice,
.select2-container .wpcf7-form select.select2-choice,
.wpcf7-form .woocommerce form .form-row .select2-container select.select2-choice,
.woocommerce form .form-row .select2-container .wpcf7-form select.select2-choice,
.wpcf7-form .woocommerce-page form .form-row .select2-container select.select2-choice,
.woocommerce-page form .form-row .select2-container .wpcf7-form select.select2-choice,
.comments .comment-respond input.form-control,
.comments .comment-respond input.input-text,
.comments .comment-respond .select2-container input.select2-choice,
.select2-container .comments .comment-respond input.select2-choice,
.comments .comment-respond .post-password-form input[type="password"],
.post-password-form .comments .comment-respond input[type="password"],
.comments .comment-respond .woocommerce form .form-row input.input-text,
.woocommerce form .form-row .comments .comment-respond input.input-text,
.comments .comment-respond .woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row .comments .comment-respond input.input-text,
.comments .comment-respond select.form-control,
.comments .comment-respond .select2-container select.select2-choice,
.select2-container .comments .comment-respond select.select2-choice,
#reviews .comment-respond input.form-control,
#reviews .comment-respond input.input-text,
#reviews .comment-respond .select2-container input.select2-choice,
.select2-container #reviews .comment-respond input.select2-choice,
#reviews .comment-respond .post-password-form input[type="password"],
.post-password-form #reviews .comment-respond input[type="password"],
#reviews .comment-respond select.form-control,
#reviews .comment-respond .select2-container select.select2-choice,
.select2-container #reviews .comment-respond select.select2-choice {
  height: 42px;
}

.wpcf7-form .wpcf7-checkbox.form-control,
.wpcf7-form select a.wpcf7-checkbox,
select .wpcf7-form a.wpcf7-checkbox,
.wpcf7-form .chosen-container-single a.wpcf7-checkbox,
.chosen-container-single .wpcf7-form a.wpcf7-checkbox,
.wpcf7-form input.wpcf7-checkbox.input-text,
.wpcf7-form textarea.wpcf7-checkbox,
.wpcf7-form .select2-container .wpcf7-checkbox.select2-choice,
.select2-container .wpcf7-form .wpcf7-checkbox.select2-choice,
.wpcf7-form .post-password-form input.wpcf7-checkbox[type="password"],
.post-password-form .wpcf7-form input.wpcf7-checkbox[type="password"],
.wpcf7-form .woocommerce form .form-row select a.wpcf7-checkbox,
.woocommerce form .form-row select .wpcf7-form a.wpcf7-checkbox,
.wpcf7-form .woocommerce form .form-row .chosen-container-single a.wpcf7-checkbox,
.woocommerce form .form-row .chosen-container-single .wpcf7-form a.wpcf7-checkbox,
.wpcf7-form .woocommerce-page form .form-row select a.wpcf7-checkbox,
.woocommerce-page form .form-row select .wpcf7-form a.wpcf7-checkbox,
.wpcf7-form .woocommerce-page form .form-row .chosen-container-single a.wpcf7-checkbox,
.woocommerce-page form .form-row .chosen-container-single .wpcf7-form a.wpcf7-checkbox,
.wpcf7-form .woocommerce form .form-row .select2-container .wpcf7-checkbox.select2-choice,
.woocommerce form .form-row .select2-container .wpcf7-form .wpcf7-checkbox.select2-choice,
.wpcf7-form .woocommerce-page form .form-row .select2-container .wpcf7-checkbox.select2-choice,
.woocommerce-page form .form-row .select2-container .wpcf7-form .wpcf7-checkbox.select2-choice,
.wpcf7-form .woocommerce form .form-row input.wpcf7-checkbox.input-text,
.woocommerce form .form-row .wpcf7-form input.wpcf7-checkbox.input-text,
.wpcf7-form .woocommerce form .form-row textarea.wpcf7-checkbox,
.woocommerce form .form-row .wpcf7-form textarea.wpcf7-checkbox,
.wpcf7-form .woocommerce-page form .form-row input.wpcf7-checkbox.input-text,
.woocommerce-page form .form-row .wpcf7-form input.wpcf7-checkbox.input-text,
.wpcf7-form .woocommerce-page form .form-row textarea.wpcf7-checkbox,
.woocommerce-page form .form-row .wpcf7-form textarea.wpcf7-checkbox,
.wpcf7-form .wpcf7-radio.form-control,
.wpcf7-form select a.wpcf7-radio,
select .wpcf7-form a.wpcf7-radio,
.wpcf7-form .chosen-container-single a.wpcf7-radio,
.chosen-container-single .wpcf7-form a.wpcf7-radio,
.wpcf7-form input.wpcf7-radio.input-text,
.wpcf7-form textarea.wpcf7-radio,
.wpcf7-form .select2-container .wpcf7-radio.select2-choice,
.select2-container .wpcf7-form .wpcf7-radio.select2-choice,
.wpcf7-form .post-password-form input.wpcf7-radio[type="password"],
.post-password-form .wpcf7-form input.wpcf7-radio[type="password"],
.wpcf7-form .woocommerce form .form-row select a.wpcf7-radio,
.woocommerce form .form-row select .wpcf7-form a.wpcf7-radio,
.wpcf7-form .woocommerce form .form-row .chosen-container-single a.wpcf7-radio,
.woocommerce form .form-row .chosen-container-single .wpcf7-form a.wpcf7-radio,
.wpcf7-form .woocommerce-page form .form-row select a.wpcf7-radio,
.woocommerce-page form .form-row select .wpcf7-form a.wpcf7-radio,
.wpcf7-form .woocommerce-page form .form-row .chosen-container-single a.wpcf7-radio,
.woocommerce-page form .form-row .chosen-container-single .wpcf7-form a.wpcf7-radio,
.wpcf7-form .woocommerce form .form-row .select2-container .wpcf7-radio.select2-choice,
.woocommerce form .form-row .select2-container .wpcf7-form .wpcf7-radio.select2-choice,
.wpcf7-form .woocommerce-page form .form-row .select2-container .wpcf7-radio.select2-choice,
.woocommerce-page form .form-row .select2-container .wpcf7-form .wpcf7-radio.select2-choice,
.wpcf7-form .woocommerce form .form-row input.wpcf7-radio.input-text,
.woocommerce form .form-row .wpcf7-form input.wpcf7-radio.input-text,
.wpcf7-form .woocommerce form .form-row textarea.wpcf7-radio,
.woocommerce form .form-row .wpcf7-form textarea.wpcf7-radio,
.wpcf7-form .woocommerce-page form .form-row input.wpcf7-radio.input-text,
.woocommerce-page form .form-row .wpcf7-form input.wpcf7-radio.input-text,
.wpcf7-form .woocommerce-page form .form-row textarea.wpcf7-radio,
.woocommerce-page form .form-row .wpcf7-form textarea.wpcf7-radio,
.comments .comment-respond .wpcf7-checkbox.form-control,
.comments .comment-respond select a.wpcf7-checkbox,
select .comments .comment-respond a.wpcf7-checkbox,
.comments .comment-respond .chosen-container-single a.wpcf7-checkbox,
.chosen-container-single .comments .comment-respond a.wpcf7-checkbox,
.comments .comment-respond input.wpcf7-checkbox.input-text,
.comments .comment-respond textarea.wpcf7-checkbox,
.comments .comment-respond .select2-container .wpcf7-checkbox.select2-choice,
.select2-container .comments .comment-respond .wpcf7-checkbox.select2-choice,
.comments .comment-respond .post-password-form input.wpcf7-checkbox[type="password"],
.post-password-form .comments .comment-respond input.wpcf7-checkbox[type="password"],
.comments .comment-respond .wpcf7-radio.form-control,
.comments .comment-respond select a.wpcf7-radio,
select .comments .comment-respond a.wpcf7-radio,
.comments .comment-respond .chosen-container-single a.wpcf7-radio,
.chosen-container-single .comments .comment-respond a.wpcf7-radio,
.comments .comment-respond input.wpcf7-radio.input-text,
.comments .comment-respond textarea.wpcf7-radio,
.comments .comment-respond .select2-container .wpcf7-radio.select2-choice,
.select2-container .comments .comment-respond .wpcf7-radio.select2-choice,
.comments .comment-respond .post-password-form input.wpcf7-radio[type="password"],
.post-password-form .comments .comment-respond input.wpcf7-radio[type="password"],
#reviews .comment-respond .wpcf7-checkbox.form-control,
#reviews .comment-respond select a.wpcf7-checkbox,
select #reviews .comment-respond a.wpcf7-checkbox,
#reviews .comment-respond .chosen-container-single a.wpcf7-checkbox,
.chosen-container-single #reviews .comment-respond a.wpcf7-checkbox,
#reviews .comment-respond input.wpcf7-checkbox.input-text,
#reviews .comment-respond textarea.wpcf7-checkbox,
#reviews .comment-respond .select2-container .wpcf7-checkbox.select2-choice,
.select2-container #reviews .comment-respond .wpcf7-checkbox.select2-choice,
#reviews .comment-respond .post-password-form input.wpcf7-checkbox[type="password"],
.post-password-form #reviews .comment-respond input.wpcf7-checkbox[type="password"],
#reviews .comment-respond .wpcf7-radio.form-control,
#reviews .comment-respond select a.wpcf7-radio,
select #reviews .comment-respond a.wpcf7-radio,
#reviews .comment-respond .chosen-container-single a.wpcf7-radio,
.chosen-container-single #reviews .comment-respond a.wpcf7-radio,
#reviews .comment-respond input.wpcf7-radio.input-text,
#reviews .comment-respond textarea.wpcf7-radio,
#reviews .comment-respond .select2-container .wpcf7-radio.select2-choice,
.select2-container #reviews .comment-respond .wpcf7-radio.select2-choice,
#reviews .comment-respond .post-password-form input.wpcf7-radio[type="password"],
.post-password-form #reviews .comment-respond input.wpcf7-radio[type="password"] {
  height: auto;
  min-height: 42px;
}

.wpcf7-form .wpcf7-checkbox.form-control .wpcf7-list-item,
.wpcf7-form select a.wpcf7-checkbox .wpcf7-list-item,
select .wpcf7-form a.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-form .chosen-container-single a.wpcf7-checkbox .wpcf7-list-item,
.chosen-container-single .wpcf7-form a.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-form input.wpcf7-checkbox.input-text .wpcf7-list-item,
.wpcf7-form textarea.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-form .select2-container .wpcf7-checkbox.select2-choice .wpcf7-list-item,
.select2-container .wpcf7-form .wpcf7-checkbox.select2-choice .wpcf7-list-item,
.wpcf7-form .post-password-form input.wpcf7-checkbox[type="password"] .wpcf7-list-item,
.post-password-form .wpcf7-form input.wpcf7-checkbox[type="password"] .wpcf7-list-item,
.wpcf7-form .wpcf7-radio.form-control .wpcf7-list-item,
.wpcf7-form select a.wpcf7-radio .wpcf7-list-item,
select .wpcf7-form a.wpcf7-radio .wpcf7-list-item,
.wpcf7-form .chosen-container-single a.wpcf7-radio .wpcf7-list-item,
.chosen-container-single .wpcf7-form a.wpcf7-radio .wpcf7-list-item,
.wpcf7-form input.wpcf7-radio.input-text .wpcf7-list-item,
.wpcf7-form textarea.wpcf7-radio .wpcf7-list-item,
.wpcf7-form .select2-container .wpcf7-radio.select2-choice .wpcf7-list-item,
.select2-container .wpcf7-form .wpcf7-radio.select2-choice .wpcf7-list-item,
.wpcf7-form .post-password-form input.wpcf7-radio[type="password"] .wpcf7-list-item,
.post-password-form .wpcf7-form input.wpcf7-radio[type="password"] .wpcf7-list-item,
.comments .comment-respond .wpcf7-checkbox.form-control .wpcf7-list-item,
.comments .comment-respond select a.wpcf7-checkbox .wpcf7-list-item,
select .comments .comment-respond a.wpcf7-checkbox .wpcf7-list-item,
.comments .comment-respond .chosen-container-single a.wpcf7-checkbox .wpcf7-list-item,
.chosen-container-single .comments .comment-respond a.wpcf7-checkbox .wpcf7-list-item,
.comments .comment-respond input.wpcf7-checkbox.input-text .wpcf7-list-item,
.comments .comment-respond textarea.wpcf7-checkbox .wpcf7-list-item,
.comments .comment-respond .select2-container .wpcf7-checkbox.select2-choice .wpcf7-list-item,
.select2-container .comments .comment-respond .wpcf7-checkbox.select2-choice .wpcf7-list-item,
.comments .comment-respond .post-password-form input.wpcf7-checkbox[type="password"] .wpcf7-list-item,
.post-password-form .comments .comment-respond input.wpcf7-checkbox[type="password"] .wpcf7-list-item,
.comments .comment-respond .wpcf7-radio.form-control .wpcf7-list-item,
.comments .comment-respond select a.wpcf7-radio .wpcf7-list-item,
select .comments .comment-respond a.wpcf7-radio .wpcf7-list-item,
.comments .comment-respond .chosen-container-single a.wpcf7-radio .wpcf7-list-item,
.chosen-container-single .comments .comment-respond a.wpcf7-radio .wpcf7-list-item,
.comments .comment-respond input.wpcf7-radio.input-text .wpcf7-list-item,
.comments .comment-respond textarea.wpcf7-radio .wpcf7-list-item,
.comments .comment-respond .select2-container .wpcf7-radio.select2-choice .wpcf7-list-item,
.select2-container .comments .comment-respond .wpcf7-radio.select2-choice .wpcf7-list-item,
.comments .comment-respond .post-password-form input.wpcf7-radio[type="password"] .wpcf7-list-item,
.post-password-form .comments .comment-respond input.wpcf7-radio[type="password"] .wpcf7-list-item,
#reviews .comment-respond .wpcf7-checkbox.form-control .wpcf7-list-item,
#reviews .comment-respond select a.wpcf7-checkbox .wpcf7-list-item,
select #reviews .comment-respond a.wpcf7-checkbox .wpcf7-list-item,
#reviews .comment-respond .chosen-container-single a.wpcf7-checkbox .wpcf7-list-item,
.chosen-container-single #reviews .comment-respond a.wpcf7-checkbox .wpcf7-list-item,
#reviews .comment-respond input.wpcf7-checkbox.input-text .wpcf7-list-item,
#reviews .comment-respond textarea.wpcf7-checkbox .wpcf7-list-item,
#reviews .comment-respond .select2-container .wpcf7-checkbox.select2-choice .wpcf7-list-item,
.select2-container #reviews .comment-respond .wpcf7-checkbox.select2-choice .wpcf7-list-item,
#reviews .comment-respond .post-password-form input.wpcf7-checkbox[type="password"] .wpcf7-list-item,
.post-password-form #reviews .comment-respond input.wpcf7-checkbox[type="password"] .wpcf7-list-item,
#reviews .comment-respond .wpcf7-radio.form-control .wpcf7-list-item,
#reviews .comment-respond select a.wpcf7-radio .wpcf7-list-item,
select #reviews .comment-respond a.wpcf7-radio .wpcf7-list-item,
#reviews .comment-respond .chosen-container-single a.wpcf7-radio .wpcf7-list-item,
.chosen-container-single #reviews .comment-respond a.wpcf7-radio .wpcf7-list-item,
#reviews .comment-respond input.wpcf7-radio.input-text .wpcf7-list-item,
#reviews .comment-respond textarea.wpcf7-radio .wpcf7-list-item,
#reviews .comment-respond .select2-container .wpcf7-radio.select2-choice .wpcf7-list-item,
.select2-container #reviews .comment-respond .wpcf7-radio.select2-choice .wpcf7-list-item,
#reviews .comment-respond .post-password-form input.wpcf7-radio[type="password"] .wpcf7-list-item,
.post-password-form #reviews .comment-respond input.wpcf7-radio[type="password"] .wpcf7-list-item {
  display: inline-block;
}

.wpcf7-form select.form-control[multiple],
.wpcf7-form .select2-container select[multiple].select2-choice,
.select2-container .wpcf7-form select[multiple].select2-choice,
.comments .comment-respond select.form-control[multiple],
.comments .comment-respond .select2-container select[multiple].select2-choice,
.select2-container .comments .comment-respond select[multiple].select2-choice,
#reviews .comment-respond select.form-control[multiple],
#reviews .comment-respond .select2-container select[multiple].select2-choice,
.select2-container #reviews .comment-respond select[multiple].select2-choice {
  height: auto;
}

.wpcf7-form .comment-form-author .form-control-wrap:before,
.wpcf7-form .comment-form-author .form-control-wrap:after,
.comments .comment-respond .comment-form-author .form-control-wrap:before,
.comments .comment-respond .comment-form-author .form-control-wrap:after,
#reviews .comment-respond .comment-form-author .form-control-wrap:before,
#reviews .comment-respond .comment-form-author .form-control-wrap:after {
  content: " ";
  display: table;
}

.wpcf7-form .comment-form-author .form-control-wrap:after,
.comments .comment-respond .comment-form-author .form-control-wrap:after,
#reviews .comment-respond .comment-form-author .form-control-wrap:after {
  clear: both;
}

.wpcf7-form .comment-form-author .form-control-wrap:after,
.comments .comment-respond .comment-form-author .form-control-wrap:after,
#reviews .comment-respond .comment-form-author .form-control-wrap:after {
  position: absolute;
  font-family: 'themesy';
  font-size: 18px;
  top: 21px;
  right: 20px;
  content: '\e642';
}

.wpcf7-form .comment-form-email .form-control-wrap:after,
.comments .comment-respond .comment-form-email .form-control-wrap:after,
#reviews .comment-respond .comment-form-email .form-control-wrap:after {
  position: absolute;
  font-family: 'themesy';
  font-size: 18px;
  top: 21px;
  right: 20px;
  content: '\e641';
}

.wpcf7-form .form-group.th-icon-form,
.comments .comment-respond .form-group.th-icon-form,
#reviews .comment-respond .form-group.th-icon-form {
  position: relative;
}

.wpcf7-form .form-group.th-icon-form .form-control,
.wpcf7-form .form-group.th-icon-form select a,
select .wpcf7-form .form-group.th-icon-form a,
.wpcf7-form .form-group.th-icon-form .chosen-container-single a,
.chosen-container-single .wpcf7-form .form-group.th-icon-form a,
.wpcf7-form .form-group.th-icon-form input.input-text,
.wpcf7-form .form-group.th-icon-form textarea,
.wpcf7-form .form-group.th-icon-form .select2-container .select2-choice,
.select2-container .wpcf7-form .form-group.th-icon-form .select2-choice,
.wpcf7-form .form-group.th-icon-form .post-password-form input[type="password"],
.post-password-form .wpcf7-form .form-group.th-icon-form input[type="password"],
.comments .comment-respond .form-group.th-icon-form .form-control,
.comments .comment-respond .form-group.th-icon-form select a,
select .comments .comment-respond .form-group.th-icon-form a,
.comments .comment-respond .form-group.th-icon-form .chosen-container-single a,
.chosen-container-single .comments .comment-respond .form-group.th-icon-form a,
.comments .comment-respond .form-group.th-icon-form input.input-text,
.comments .comment-respond .form-group.th-icon-form textarea,
.comments .comment-respond .form-group.th-icon-form .select2-container .select2-choice,
.select2-container .comments .comment-respond .form-group.th-icon-form .select2-choice,
.comments .comment-respond .form-group.th-icon-form .post-password-form input[type="password"],
.post-password-form .comments .comment-respond .form-group.th-icon-form input[type="password"],
#reviews .comment-respond .form-group.th-icon-form .form-control,
#reviews .comment-respond .form-group.th-icon-form select a,
select #reviews .comment-respond .form-group.th-icon-form a,
#reviews .comment-respond .form-group.th-icon-form .chosen-container-single a,
.chosen-container-single #reviews .comment-respond .form-group.th-icon-form a,
#reviews .comment-respond .form-group.th-icon-form input.input-text,
#reviews .comment-respond .form-group.th-icon-form textarea,
#reviews .comment-respond .form-group.th-icon-form .select2-container .select2-choice,
.select2-container #reviews .comment-respond .form-group.th-icon-form .select2-choice,
#reviews .comment-respond .form-group.th-icon-form .post-password-form input[type="password"],
.post-password-form #reviews .comment-respond .form-group.th-icon-form input[type="password"] {
  padding-right: 38px;
}

.wpcf7-form .form-group.th-icon-form .wpcf7-form-control-wrap,
.wpcf7-form .form-group.th-icon-form .form-control-wrap,
.comments .comment-respond .form-group.th-icon-form .wpcf7-form-control-wrap,
.comments .comment-respond .form-group.th-icon-form .form-control-wrap,
#reviews .comment-respond .form-group.th-icon-form .wpcf7-form-control-wrap,
#reviews .comment-respond .form-group.th-icon-form .form-control-wrap {
  display: block;
  position: relative;
}

.wpcf7-form .form-group.th-icon-form .wpcf7-form-control-wrap:after,
.wpcf7-form .form-group.th-icon-form .form-control-wrap:after,
.comments .comment-respond .form-group.th-icon-form .wpcf7-form-control-wrap:after,
.comments .comment-respond .form-group.th-icon-form .form-control-wrap:after,
#reviews .comment-respond .form-group.th-icon-form .wpcf7-form-control-wrap:after,
#reviews .comment-respond .form-group.th-icon-form .form-control-wrap:after {
  position: absolute;
  right: 12px;
  top: 10px;
  font-family: 'themesy';
  font-size: 18px;
  color: #808080;
}

.wpcf7-form .form-group.th-icon-form.th-icon-form-country .wpcf7-form-control-wrap:after,
.wpcf7-form .form-group.th-icon-form.th-icon-form-country .form-control-wrap:after,
.comments .comment-respond .form-group.th-icon-form.th-icon-form-country .wpcf7-form-control-wrap:after,
.comments .comment-respond .form-group.th-icon-form.th-icon-form-country .form-control-wrap:after,
#reviews .comment-respond .form-group.th-icon-form.th-icon-form-country .wpcf7-form-control-wrap:after,
#reviews .comment-respond .form-group.th-icon-form.th-icon-form-country .form-control-wrap:after {
  content: '\e63f';
}

.wpcf7-form .form-group.th-icon-form.th-icon-form-telephone .wpcf7-form-control-wrap:after,
.wpcf7-form .form-group.th-icon-form.th-icon-form-telephone .form-control-wrap:after,
.comments .comment-respond .form-group.th-icon-form.th-icon-form-telephone .wpcf7-form-control-wrap:after,
.comments .comment-respond .form-group.th-icon-form.th-icon-form-telephone .form-control-wrap:after,
#reviews .comment-respond .form-group.th-icon-form.th-icon-form-telephone .wpcf7-form-control-wrap:after,
#reviews .comment-respond .form-group.th-icon-form.th-icon-form-telephone .form-control-wrap:after {
  content: '\e640';
}

.wpcf7-form .form-group.th-icon-form.th-icon-form-mail .wpcf7-form-control-wrap:after,
.wpcf7-form .form-group.th-icon-form.th-icon-form-mail .form-control-wrap:after,
.comments .comment-respond .form-group.th-icon-form.th-icon-form-mail .wpcf7-form-control-wrap:after,
.comments .comment-respond .form-group.th-icon-form.th-icon-form-mail .form-control-wrap:after,
#reviews .comment-respond .form-group.th-icon-form.th-icon-form-mail .wpcf7-form-control-wrap:after,
#reviews .comment-respond .form-group.th-icon-form.th-icon-form-mail .form-control-wrap:after {
  content: '\e641';
}

.wpcf7-form .form-group.th-icon-form.th-icon-form-customer .wpcf7-form-control-wrap:after,
.wpcf7-form .form-group.th-icon-form.th-icon-form-customer .form-control-wrap:after,
.comments .comment-respond .form-group.th-icon-form.th-icon-form-customer .wpcf7-form-control-wrap:after,
.comments .comment-respond .form-group.th-icon-form.th-icon-form-customer .form-control-wrap:after,
#reviews .comment-respond .form-group.th-icon-form.th-icon-form-customer .wpcf7-form-control-wrap:after,
#reviews .comment-respond .form-group.th-icon-form.th-icon-form-customer .form-control-wrap:after {
  content: '\e642';
}

.wpcf7-form span.wpcf7-not-valid-tip,
.comments .comment-respond span.wpcf7-not-valid-tip,
#reviews .comment-respond span.wpcf7-not-valid-tip {
  margin: 7px 0 0;
  color: #27558b;
}

.wpcf7-form div.wpcf7-validation-errors,
.comments .comment-respond div.wpcf7-validation-errors,
#reviews .comment-respond div.wpcf7-validation-errors {
  margin: 0;
  padding: 0;
  border: none;
  color: #27558b;
}

.form-control,
select a,
.chosen-container-single a,
input.input-text,
textarea,
.select2-container .select2-choice,
.post-password-form input[type="password"],
.woocommerce form .form-row select a,
.woocommerce form .form-row .chosen-container-single a,
.woocommerce-page form .form-row select a,
.woocommerce-page form .form-row .chosen-container-single a,
.woocommerce form .form-row .select2-container .select2-choice,
.woocommerce-page form .form-row .select2-container .select2-choice,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea {
  height: 39px;
  box-shadow: none;
}

.form-control:focus,
select a:focus,
.chosen-container-single a:focus,
input.input-text:focus,
textarea:focus,
.select2-container .select2-choice:focus,
.post-password-form input[type="password"]:focus,
.woocommerce form .form-row select a:focus,
.woocommerce form .form-row .chosen-container-single a:focus,
.woocommerce-page form .form-row select a:focus,
.woocommerce-page form .form-row .chosen-container-single a:focus,
.woocommerce form .form-row .select2-container .select2-choice:focus,
.woocommerce-page form .form-row .select2-container .select2-choice:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce-page form .form-row input.input-text:focus,
.woocommerce-page form .form-row textarea:focus {
  border-color: #27558b;
  box-shadow: none;
}

select,
.chosen-container-single {
  height: 43px;
}

select a,
.chosen-container-single a {
  display: inline-block;
  height: 43px;
  width: 100%;
  cursor: pointer;
  margin: 0;
}

input.button,
input[type="submit"] {
  border-radius: 0px;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 1px;
}

.select2-container .select2-choice {
  display: block;
  height: 43px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  line-height: 43px;
  text-decoration: none;
}

.select2-drop {
  border: 1px solid #f7f7f7;
}

#submitform,
.wpcf7-submit1 {
  margin: 0;
  height: auto !important;
}

.help-block,
.control-label,
.radio,
.checkbox,
.radio-inline,
.checkbox-inline {
  color: #27558b;
}

.has-success .help-block {
  color: #27558b;
}

.has-success .form-control,
.has-success select a,
select .has-success a,
.has-success .chosen-container-single a,
.chosen-container-single .has-success a,
.has-success input.input-text,
.has-success textarea,
.has-success .select2-container .select2-choice,
.select2-container .has-success .select2-choice,
.has-success .post-password-form input[type="password"],
.post-password-form .has-success input[type="password"],
.has-success .woocommerce form .form-row select a,
.woocommerce form .form-row select .has-success a,
.has-success .woocommerce form .form-row .chosen-container-single a,
.woocommerce form .form-row .chosen-container-single .has-success a,
.has-success .woocommerce-page form .form-row select a,
.woocommerce-page form .form-row select .has-success a,
.has-success .woocommerce-page form .form-row .chosen-container-single a,
.woocommerce-page form .form-row .chosen-container-single .has-success a,
.has-success .woocommerce form .form-row .select2-container .select2-choice,
.woocommerce form .form-row .select2-container .has-success .select2-choice,
.has-success .woocommerce-page form .form-row .select2-container .select2-choice,
.woocommerce-page form .form-row .select2-container .has-success .select2-choice,
.has-success .woocommerce form .form-row input.input-text,
.woocommerce form .form-row .has-success input.input-text,
.has-success .woocommerce form .form-row textarea,
.woocommerce form .form-row .has-success textarea,
.has-success .woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row .has-success input.input-text,
.has-success .woocommerce-page form .form-row textarea,
.woocommerce-page form .form-row .has-success textarea {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.has-success .form-control:focus,
.has-success select a:focus,
select .has-success a:focus,
.has-success .chosen-container-single a:focus,
.chosen-container-single .has-success a:focus,
.has-success input.input-text:focus,
.has-success textarea:focus,
.has-success .select2-container .select2-choice:focus,
.select2-container .has-success .select2-choice:focus,
.has-success .post-password-form input[type="password"]:focus,
.post-password-form .has-success input[type="password"]:focus,
.has-success .woocommerce form .form-row select a:focus,
.woocommerce form .form-row select .has-success a:focus,
.has-success .woocommerce form .form-row .chosen-container-single a:focus,
.woocommerce form .form-row .chosen-container-single .has-success a:focus,
.has-success .woocommerce-page form .form-row select a:focus,
.woocommerce-page form .form-row select .has-success a:focus,
.has-success .woocommerce-page form .form-row .chosen-container-single a:focus,
.woocommerce-page form .form-row .chosen-container-single .has-success a:focus,
.has-success .woocommerce form .form-row .select2-container .select2-choice:focus,
.woocommerce form .form-row .select2-container .has-success .select2-choice:focus,
.has-success .woocommerce-page form .form-row .select2-container .select2-choice:focus,
.woocommerce-page form .form-row .select2-container .has-success .select2-choice:focus,
.has-success .woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row .has-success input.input-text:focus,
.has-success .woocommerce form .form-row textarea:focus,
.woocommerce form .form-row .has-success textarea:focus,
.has-success .woocommerce-page form .form-row input.input-text:focus,
.woocommerce-page form .form-row .has-success input.input-text:focus,
.has-success .woocommerce-page form .form-row textarea:focus,
.woocommerce-page form .form-row .has-success textarea:focus {
  border-color: #27558b;
  box-shadow: none;
}

.has-warning .help-block {
  color: #27558b;
}

.has-warning .form-control,
.has-warning select a,
select .has-warning a,
.has-warning .chosen-container-single a,
.chosen-container-single .has-warning a,
.has-warning input.input-text,
.has-warning textarea,
.has-warning .select2-container .select2-choice,
.select2-container .has-warning .select2-choice,
.has-warning .post-password-form input[type="password"],
.post-password-form .has-warning input[type="password"],
.has-warning .woocommerce form .form-row select a,
.woocommerce form .form-row select .has-warning a,
.has-warning .woocommerce form .form-row .chosen-container-single a,
.woocommerce form .form-row .chosen-container-single .has-warning a,
.has-warning .woocommerce-page form .form-row select a,
.woocommerce-page form .form-row select .has-warning a,
.has-warning .woocommerce-page form .form-row .chosen-container-single a,
.woocommerce-page form .form-row .chosen-container-single .has-warning a,
.has-warning .woocommerce form .form-row .select2-container .select2-choice,
.woocommerce form .form-row .select2-container .has-warning .select2-choice,
.has-warning .woocommerce-page form .form-row .select2-container .select2-choice,
.woocommerce-page form .form-row .select2-container .has-warning .select2-choice,
.has-warning .woocommerce form .form-row input.input-text,
.woocommerce form .form-row .has-warning input.input-text,
.has-warning .woocommerce form .form-row textarea,
.woocommerce form .form-row .has-warning textarea,
.has-warning .woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row .has-warning input.input-text,
.has-warning .woocommerce-page form .form-row textarea,
.woocommerce-page form .form-row .has-warning textarea {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.has-warning .form-control:focus,
.has-warning select a:focus,
select .has-warning a:focus,
.has-warning .chosen-container-single a:focus,
.chosen-container-single .has-warning a:focus,
.has-warning input.input-text:focus,
.has-warning textarea:focus,
.has-warning .select2-container .select2-choice:focus,
.select2-container .has-warning .select2-choice:focus,
.has-warning .post-password-form input[type="password"]:focus,
.post-password-form .has-warning input[type="password"]:focus,
.has-warning .woocommerce form .form-row select a:focus,
.woocommerce form .form-row select .has-warning a:focus,
.has-warning .woocommerce form .form-row .chosen-container-single a:focus,
.woocommerce form .form-row .chosen-container-single .has-warning a:focus,
.has-warning .woocommerce-page form .form-row select a:focus,
.woocommerce-page form .form-row select .has-warning a:focus,
.has-warning .woocommerce-page form .form-row .chosen-container-single a:focus,
.woocommerce-page form .form-row .chosen-container-single .has-warning a:focus,
.has-warning .woocommerce form .form-row .select2-container .select2-choice:focus,
.woocommerce form .form-row .select2-container .has-warning .select2-choice:focus,
.has-warning .woocommerce-page form .form-row .select2-container .select2-choice:focus,
.woocommerce-page form .form-row .select2-container .has-warning .select2-choice:focus,
.has-warning .woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row .has-warning input.input-text:focus,
.has-warning .woocommerce form .form-row textarea:focus,
.woocommerce form .form-row .has-warning textarea:focus,
.has-warning .woocommerce-page form .form-row input.input-text:focus,
.woocommerce-page form .form-row .has-warning input.input-text:focus,
.has-warning .woocommerce-page form .form-row textarea:focus,
.woocommerce-page form .form-row .has-warning textarea:focus {
  border-color: #27558b;
  box-shadow: none;
}

.has-error .help-block {
  color: #27558b;
}

.has-error .form-control,
.has-error select a,
select .has-error a,
.has-error .chosen-container-single a,
.chosen-container-single .has-error a,
.has-error input.input-text,
.has-error textarea,
.has-error .select2-container .select2-choice,
.select2-container .has-error .select2-choice,
.has-error .post-password-form input[type="password"],
.post-password-form .has-error input[type="password"],
.has-error .woocommerce form .form-row select a,
.woocommerce form .form-row select .has-error a,
.has-error .woocommerce form .form-row .chosen-container-single a,
.woocommerce form .form-row .chosen-container-single .has-error a,
.has-error .woocommerce-page form .form-row select a,
.woocommerce-page form .form-row select .has-error a,
.has-error .woocommerce-page form .form-row .chosen-container-single a,
.woocommerce-page form .form-row .chosen-container-single .has-error a,
.has-error .woocommerce form .form-row .select2-container .select2-choice,
.woocommerce form .form-row .select2-container .has-error .select2-choice,
.has-error .woocommerce-page form .form-row .select2-container .select2-choice,
.woocommerce-page form .form-row .select2-container .has-error .select2-choice,
.has-error .woocommerce form .form-row input.input-text,
.woocommerce form .form-row .has-error input.input-text,
.has-error .woocommerce form .form-row textarea,
.woocommerce form .form-row .has-error textarea,
.has-error .woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row .has-error input.input-text,
.has-error .woocommerce-page form .form-row textarea,
.woocommerce-page form .form-row .has-error textarea {
  box-shadow: none;
  border-color: transparent;
  outline: none;
}

.has-error .form-control:focus,
.has-error select a:focus,
select .has-error a:focus,
.has-error .chosen-container-single a:focus,
.chosen-container-single .has-error a:focus,
.has-error input.input-text:focus,
.has-error textarea:focus,
.has-error .select2-container .select2-choice:focus,
.select2-container .has-error .select2-choice:focus,
.has-error .post-password-form input[type="password"]:focus,
.post-password-form .has-error input[type="password"]:focus,
.has-error .woocommerce form .form-row select a:focus,
.woocommerce form .form-row select .has-error a:focus,
.has-error .woocommerce form .form-row .chosen-container-single a:focus,
.woocommerce form .form-row .chosen-container-single .has-error a:focus,
.has-error .woocommerce-page form .form-row select a:focus,
.woocommerce-page form .form-row select .has-error a:focus,
.has-error .woocommerce-page form .form-row .chosen-container-single a:focus,
.woocommerce-page form .form-row .chosen-container-single .has-error a:focus,
.has-error .woocommerce form .form-row .select2-container .select2-choice:focus,
.woocommerce form .form-row .select2-container .has-error .select2-choice:focus,
.has-error .woocommerce-page form .form-row .select2-container .select2-choice:focus,
.woocommerce-page form .form-row .select2-container .has-error .select2-choice:focus,
.has-error .woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row .has-error input.input-text:focus,
.has-error .woocommerce form .form-row textarea:focus,
.woocommerce form .form-row .has-error textarea:focus,
.has-error .woocommerce-page form .form-row input.input-text:focus,
.woocommerce-page form .form-row .has-error input.input-text:focus,
.has-error .woocommerce-page form .form-row textarea:focus,
.woocommerce-page form .form-row .has-error textarea:focus {
  border-color: #27558b;
  box-shadow: none;
}

.post-password-form {
  max-width: 100%;
}

.post-password-form input[type="password"] {
  display: inline-block;
  width: 130px;
}

.post-password-form input[type="submit"] {
  margin-bottom: 3px;
  margin-left: 6px;
  padding: 9px 16px 8px;
}

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .wpcf7-form .comment-form-author .form-control-wrap:after,
  .comments .comment-respond .comment-form-author .form-control-wrap:after,
  #reviews .comment-respond .comment-form-author .form-control-wrap:after {
    position: absolute;
    font-family: 'themesy';
    font-size: 18px;
    top: 21px;
    right: 10px;
    content: '\e642';
  }

  .wpcf7-form .comment-form-email .form-control-wrap:after,
  .comments .comment-respond .comment-form-email .form-control-wrap:after,
  #reviews .comment-respond .comment-form-email .form-control-wrap:after {
    position: absolute;
    font-family: 'themesy';
    font-size: 18px;
    top: 21px;
    right: 20px;
    content: '\e641';
  }
}

/* Large devices (large desktops, 1200px and up) */

.widget-area .wpb_widgetised_column_heading,
.wpb_widgetised_column .wpb_widgetised_column_heading {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.4px;
  word-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 38px;
  text-align: left;
}

.widget-area .widget,
.wpb_widgetised_column .widget {
  font-size: 13px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 55px;
}

.widget-area .widget .widget-title,
.wpb_widgetised_column .widget .widget-title {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.4px;
  word-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 38px;
  text-align: center;
}

.widget-area .widget .widget-title + ul,
.wpb_widgetised_column .widget .widget-title + ul {
  margin-top: -8px;
}

.widget-area .widget .widget-title + .carousel.clients,
.wpb_widgetised_column .widget .widget-title + .carousel.clients {
  margin-top: -8px;
}

.widget-area .widget:last-child,
.wpb_widgetised_column .widget:last-child {
  margin-bottom: 0px;
}

.widget-area .widget.widget_sp_image,
.wpb_widgetised_column .widget.widget_sp_image {
  text-align: center;
}

.widget-area .widget select,
.wpb_widgetised_column .widget select {
  width: 100%;
  max-width: 100%;
  background: #f7f7f7;
  color: #2a2a2a;
  border: solid 1px #ffffff;
}

/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .widget-area .widget {
    max-width: 70%;
  }
}

/* Medium devices (tablets, 960px and up) */

@media (min-width: 992px) {
  .widget-area .widget {
    max-width: 100%;
  }

  .widget-area .widget .widget-title {
    text-align: left;
  }
}

.widget.contact-info address {
  font-family: "Open Sans";
  text-align: left;
}

.widget.contact-info address p,
.widget.contact-info address .line {
  line-height: 20px;
  letter-spacing: 1px;
  margin-bottom: 2px;
  text-align: center;
}

.widget.contact-info address p a,
.widget.contact-info address .line a {
  color: #2a2a2a;
}

.widget.contact-info address p a:focus,
.widget.contact-info address p a:hover,
.widget.contact-info address .line a:focus,
.widget.contact-info address .line a:hover {
  color: #27558b;
}

.widget.contact-info address p li,
.widget.contact-info address .line li {
  list-style-type: none;
}

.widget.contact-info .th-icon {
  font-size: 11px;
}

.widget.contact-info .th-arrow-medium-right {
  margin: 0 0 0 5px;
}

.widget.contact-info .separator {
  display: inline-block;
  border-right: 1px solid;
  border-right-color: #808080;
  width: 10px;
  height: 14px;
  position: relative;
  margin-right: 9px;
  top: 2px;
}

/* Medium devices (tablets, 960px and up) */

@media (min-width: 992px) {
  .widget.contact-info address {
    font-family: "Open Sans";
    text-align: left;
  }

  .widget.contact-info address p,
  .widget.contact-info address .line {
    text-align: left;
  }
}

.widget.contact-form .form-group {
  font-family: "Open Sans";
  margin-bottom: 22px;
}

.widget.twitter .widget-title {
  margin-bottom: 43px;
}

.widget.twitter a {
  color: #2a2a2a;
}

.widget.twitter a:focus,
.widget.twitter a:hover {
  color: #27558b;
}

.widget.twitter ul.tweets {
  margin: 0px 0px 0px;
  padding-left: 0px;
  list-style: none;
  font-family: "Open Sans";
}

.widget.twitter ul.tweets li.tweet {
  display: inline-block;
  width: 100%;
  margin-bottom: 34px;
}

.widget.twitter ul.tweets li.tweet:last-of-type {
  margin-bottom: 0;
}

.widget.twitter ul.tweets li.tweet figure {
  float: left;
  margin: 1px 13px 0 0;
  width: 48px;
}

.widget.twitter ul.tweets li.tweet figure .icon {
  width: 48px;
  height: 48px;
}

.widget.twitter ul.tweets li.tweet .content {
  float: left;
  width: calc(100% - 61px);
}

.widget.twitter ul.tweets li.tweet .content .name {
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
}

.widget.twitter ul.tweets li.tweet .content .name span {
  font-size: 11px;
  font-weight: normal;
}

.widget.twitter ul.tweets li.tweet .content .date {
  float: right;
  font-size: 11px;
  max-width: 100px;
  max-height: 25px;
  overflow: hidden;
  text-align: right;
}

.widget.twitter ul.tweets li.tweet .content .date a {
  margin-right: 10px;
}

.widget.twitter ul.tweets li.tweet .content p {
  margin: 8px 0 14px;
  letter-spacing: 1px;
  line-height: 20px;
  text-align: left;
}

.widget.twitter ul.tweets li.tweet .content p .rt {
  color: #2a2a2a;
}

.widget.twitter ul.tweets li.tweet .content .actions {
  font-size: 12px;
}

.widget.twitter ul.tweets li.tweet .content .actions a {
  margin-right: 14px;
}

.widget.twitter ul.tweets li.tweet .content .actions a .th-icon {
  font-size: 14px;
}

.widget.testimonials .carousel-inner,
.testimonials-wrapper .carousel-inner {
  background-color: #f7f7f7;
}

.widget.testimonials .carousel-inner .item .testimonial,
.testimonials-wrapper .carousel-inner .item .testimonial {
  padding: 25px;
  background: #f7f7f7;
}

.widget.testimonials .carousel-inner .item .testimonial.text-center .content,
.testimonials-wrapper .carousel-inner .item .testimonial.text-center .content {
  text-align: left;
}

.widget.testimonials .carousel-inner .item .testimonial header,
.testimonials-wrapper .carousel-inner .item .testimonial header {
  display: table;
  vertical-align: top;
}

.widget.testimonials .carousel-inner .item .testimonial header figure,
.testimonials-wrapper .carousel-inner .item .testimonial header figure {
  display: table-cell;
  vertical-align: top;
  margin-right: 26px;
}

.widget.testimonials .carousel-inner .item .testimonial header figure img,
.testimonials-wrapper .carousel-inner .item .testimonial header figure img {
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border-radius: 29px;
  width: 58px;
  height: 58px;
}

.widget.testimonials .carousel-inner .item .testimonial header .content,
.testimonials-wrapper .carousel-inner .item .testimonial header .content {
  display: table-cell;
  vertical-align: top;
}

.widget.testimonials .carousel-inner .item .testimonial header .content .name,
.testimonials-wrapper .carousel-inner .item .testimonial header .content .name {
  display: inline-block;
  font-family: "Open Sans";
  margin-top: 2px;
  text-transform: none;
  color: #2a2a2a;
}

.widget.testimonials .carousel-inner .item .testimonial header .content .name a,
.testimonials-wrapper .carousel-inner .item .testimonial header .content .name a {
  color: inherit;
  text-decoration: none;
}

.widget.testimonials .carousel-inner .item .testimonial header .content .line,
.testimonials-wrapper .carousel-inner .item .testimonial header .content .line {
  display: inline-block;
  font-family: "Open Sans";
  margin-top: 6px;
  color: #808080;
  font-style: italic;
}

.widget.testimonials .carousel-inner .item .testimonial .comment,
.testimonials-wrapper .carousel-inner .item .testimonial .comment {
  font-family: "Open Sans";
  margin-top: 25px;
  color: #808080;
}

.widget.testimonials .indicators-wrapper,
.testimonials-wrapper .indicators-wrapper {
  position: relative;
  margin-top: 1px;
  background: #f7f7f7;
  width: 100%;
  height: 30px;
}

.widget.testimonials .indicators-wrapper .carousel-indicators,
.testimonials-wrapper .indicators-wrapper .carousel-indicators {
  height: 24px;
}

.widget.testimonials .indicators-wrapper .carousel-indicators li,
.testimonials-wrapper .indicators-wrapper .carousel-indicators li {
  width: 20px;
}

.widget.testimonials .indicators-wrapper .carousel-indicators li.active,
.testimonials-wrapper .indicators-wrapper .carousel-indicators li.active {
  width: 24px;
}

.widget.testimonials .indicators-wrapper .carousel-indicators li.active .bullet,
.testimonials-wrapper .indicators-wrapper .carousel-indicators li.active .bullet {
  width: 12px;
  height: 12px;
}

.widget.testimonials .indicators-wrapper .carousel-indicators li.active_l1 .bullet,
.testimonials-wrapper .indicators-wrapper .carousel-indicators li.active_l1 .bullet {
  width: 9px;
  height: 9px;
}

.widget.testimonials .indicators-wrapper .carousel-indicators li.active_l2 .bullet,
.testimonials-wrapper .indicators-wrapper .carousel-indicators li.active_l2 .bullet {
  width: 7px;
  height: 7px;
}

.widget.testimonials .indicators-wrapper .carousel-indicators li.active_l3 .bullet,
.testimonials-wrapper .indicators-wrapper .carousel-indicators li.active_l3 .bullet {
  width: 5px;
  height: 5px;
}

.widget.team-members .carousel-inner {
  background-color: #f7f7f7;
}

.widget.team-members .carousel-inner .item .team-member {
  padding: 25px;
  background: #f7f7f7;
}

.widget.team-members .carousel-inner .item .team-member header {
  display: table;
  vertical-align: top;
}

.widget.team-members .carousel-inner .item .team-member header figure {
  display: table-cell;
  vertical-align: top;
  margin-right: 26px;
}

.widget.team-members .carousel-inner .item .team-member header figure img {
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border-radius: 29px;
  width: 58px;
  height: 58px;
}

.widget.team-members .carousel-inner .item .team-member header .content {
  display: table-cell;
  vertical-align: top;
}

.widget.team-members .carousel-inner .item .team-member header .content .name {
  display: inline-block;
  font-family: "Open Sans";
  margin-top: 2px;
  text-transform: none;
  color: #2a2a2a;
}

.widget.team-members .carousel-inner .item .team-member header .content .name a {
  color: inherit;
  text-decoration: none;
}

.widget.team-members .carousel-inner .item .team-member header .content .line {
  display: inline-block;
  font-family: "Open Sans";
  margin-top: 6px;
  color: #808080;
  font-style: italic;
}

.widget.team-members .carousel-inner .item .team-member .comment {
  font-family: "Open Sans";
  margin-top: 25px;
  color: #808080;
}

.widget.team-members .indicators-wrapper {
  position: relative;
  margin-top: 1px;
  background: #f7f7f7;
  width: 100%;
  height: 30px;
}

.widget.team-members .indicators-wrapper .carousel-indicators {
  height: 24px;
}

.widget.team-members .indicators-wrapper .carousel-indicators li {
  width: 20px;
}

.widget.team-members .indicators-wrapper .carousel-indicators li .bullet {
  left: 8px;
  width: 5px;
  height: 5px;
}

.widget.team-members .indicators-wrapper .carousel-indicators li.active {
  width: 24px;
}

.widget.team-members .indicators-wrapper .carousel-indicators li.active .bullet {
  left: 6px;
  width: 12px;
  height: 12px;
}

.widget.team-members .indicators-wrapper .carousel-indicators li.active_l1 .bullet {
  left: 5px;
  width: 9px;
  height: 9px;
}

.widget.team-members .indicators-wrapper .carousel-indicators li.active_l2 .bullet {
  left: 7px;
  width: 7px;
  height: 7px;
}

.widget.carousel .carousel-inner .item figure {
  margin: 0 auto;
}

.widget.carousel .carousel-inner .item figure img {
  margin: 0 auto;
}

.widget.carousel .carousel-control {
  top: 50%;
  z-index: 10;
  margin-top: -15px;
  width: auto;
  height: 40px;
  font-size: 29px;
  color: #adadad;
}

.widget.carousel .carousel-control:hover {
  color: #2a2a2a;
}

.widget.tag-cloud a,
.widget.widget_product_tag_cloud a {
  text-transform: capitalize;
  font-family: "Open Sans";
  display: block;
  float: left;
  padding: 16px 19px;
  background: #f7f7f7;
  margin: 0px 1px 1px 0px;
  color: #2a2a2a;
  text-decoration: none;
  outline: none;
}

.widget.tag-cloud a:hover,
.widget.tag-cloud a:focus,
.widget.widget_product_tag_cloud a:hover,
.widget.widget_product_tag_cloud a:focus {
  outline: none;
  color: #ffffff;
  background: #27558b;
}

.widget.tag-cloud:before,
.widget.tag-cloud:after,
.widget.widget_product_tag_cloud:before,
.widget.widget_product_tag_cloud:after {
  content: " ";
  display: table;
}

.widget.tag-cloud:after,
.widget.widget_product_tag_cloud:after {
  clear: both;
}

.widget.widget_product_tag_cloud a {
  text-transform: capitalize;
  font-size: 13px !important;
}

.widget.links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget.links ul li {
  padding: 18px 0;
  border-bottom: 1px solid;
  border-bottom-color: #eaeaea;
}

.widget.links ul li:last-child {
  border-bottom: none;
}

.widget.links ul li a {
  color: #2a2a2a;
  text-decoration: none;
}

.widget.links ul li a:hover {
  color: #27558b;
}

.widget.links ul li a i {
  margin-right: 14px;
}

.widget.widget_product_categories ul,
.widget.widget_categories ul,
.widget.widget_nav_menu ul,
.widget.widget_pages ul,
.widget.widget_recent_entries ul,
.widget.widget_meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget.widget_product_categories ul > li,
.widget.widget_categories ul > li,
.widget.widget_nav_menu ul > li,
.widget.widget_pages ul > li,
.widget.widget_recent_entries ul > li,
.widget.widget_meta ul > li {
  padding: 18px 0;
  border-bottom: 1px solid;
  border-bottom-color: #eaeaea;
  position: relative;
}

.widget.widget_product_categories ul > li:before,
.widget.widget_categories ul > li:before,
.widget.widget_nav_menu ul > li:before,
.widget.widget_pages ul > li:before,
.widget.widget_recent_entries ul > li:before,
.widget.widget_meta ul > li:before {
  font-family: 'themesy';
  content: "\e630";
  color: #2a2a2a;
  position: absolute;
  top: 18px;
  left: 0px;
  margin-left: 5px;
  margin-right: 15px;
  width: 15px;
  height: 15px;
}

.widget.widget_product_categories ul > li:last-child,
.widget.widget_categories ul > li:last-child,
.widget.widget_nav_menu ul > li:last-child,
.widget.widget_pages ul > li:last-child,
.widget.widget_recent_entries ul > li:last-child,
.widget.widget_meta ul > li:last-child {
  border-bottom: none;
}

.widget.widget_product_categories ul > li a,
.widget.widget_categories ul > li a,
.widget.widget_nav_menu ul > li a,
.widget.widget_pages ul > li a,
.widget.widget_recent_entries ul > li a,
.widget.widget_meta ul > li a {
  padding-left: 33px;
  display: inline-block;
  color: #2a2a2a;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Open Sans";
}

.widget.widget_product_categories ul > li a:hover,
.widget.widget_categories ul > li a:hover,
.widget.widget_nav_menu ul > li a:hover,
.widget.widget_pages ul > li a:hover,
.widget.widget_recent_entries ul > li a:hover,
.widget.widget_meta ul > li a:hover {
  color: #27558b;
}

.widget.widget_product_categories ul > li a i,
.widget.widget_categories ul > li a i,
.widget.widget_nav_menu ul > li a i,
.widget.widget_pages ul > li a i,
.widget.widget_recent_entries ul > li a i,
.widget.widget_meta ul > li a i {
  margin-right: 14px;
}

.widget.widget_product_categories ul > li .count,
.widget.widget_categories ul > li .count,
.widget.widget_nav_menu ul > li .count,
.widget.widget_pages ul > li .count,
.widget.widget_recent_entries ul > li .count,
.widget.widget_meta ul > li .count {
  color: #2a2a2a;
  float: right;
}

.widget.widget_product_categories ul > li .children,
.widget.widget_categories ul > li .children,
.widget.widget_nav_menu ul > li .children,
.widget.widget_pages ul > li .children,
.widget.widget_recent_entries ul > li .children,
.widget.widget_meta ul > li .children {
  margin-top: 9px;
  padding-top: 9px;
  margin-left: 20px;
}

.widget.widget_product_categories ul > li .children li:first-of-type,
.widget.widget_categories ul > li .children li:first-of-type,
.widget.widget_nav_menu ul > li .children li:first-of-type,
.widget.widget_pages ul > li .children li:first-of-type,
.widget.widget_recent_entries ul > li .children li:first-of-type,
.widget.widget_meta ul > li .children li:first-of-type {
  border-top: 1px solid;
  border-top-color: #eaeaea;
}

.widget.widget_product_categories ul > li .children li:last-of-type,
.widget.widget_categories ul > li .children li:last-of-type,
.widget.widget_nav_menu ul > li .children li:last-of-type,
.widget.widget_pages ul > li .children li:last-of-type,
.widget.widget_recent_entries ul > li .children li:last-of-type,
.widget.widget_meta ul > li .children li:last-of-type {
  padding-bottom: 0;
}

.widget.widget_product_categories ul > li .sub-menu,
.widget.widget_categories ul > li .sub-menu,
.widget.widget_nav_menu ul > li .sub-menu,
.widget.widget_pages ul > li .sub-menu,
.widget.widget_recent_entries ul > li .sub-menu,
.widget.widget_meta ul > li .sub-menu {
  margin: 18px 0 0 18px;
}

.widget.widget_product_categories ul > li .sub-menu li:last-of-type,
.widget.widget_categories ul > li .sub-menu li:last-of-type,
.widget.widget_nav_menu ul > li .sub-menu li:last-of-type,
.widget.widget_pages ul > li .sub-menu li:last-of-type,
.widget.widget_recent_entries ul > li .sub-menu li:last-of-type,
.widget.widget_meta ul > li .sub-menu li:last-of-type {
  padding-bottom: 0;
}

.widget.widget_categories ul li {
  color: #2a2a2a;
  text-align: right;
}

.widget.widget_categories ul li a {
  float: left;
}

.widget.widget_rss .widget-title a.rsswidget:first-of-type {
  display: none;
}

.widget.widget_rss ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget.widget_rss ul > li {
  padding: 18px 0;
  border-bottom: 1px solid;
  border-bottom-color: #eaeaea;
  position: relative;
}

.widget.widget_rss ul > li:before {
  font-family: 'themesy';
  content: "\e630";
  color: #2a2a2a;
  position: absolute;
  top: 18px;
  left: 0px;
  margin-left: 5px;
  margin-right: 15px;
  width: 15px;
  height: 15px;
}

.widget.widget_rss ul > li:last-child {
  border-bottom: none;
}

.widget.widget_rss ul > li a {
  padding-left: 33px;
  display: inline-block;
  color: #2a2a2a;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Open Sans";
}

.widget.widget_rss ul > li a:hover {
  color: #27558b;
}

.widget.widget_rss ul > li a i {
  margin-right: 14px;
}

.widget.widget_rss ul > li .rss-date {
  padding-left: 33px;
  display: block;
}

.widget.widget_rss ul > li .count {
  color: #2a2a2a;
  float: right;
}

.widget.widget_rss ul > li .rssSummary {
  margin-top: 15px;
  padding-left: 0px;
}

.widget.widget_rss ul > li cite {
  margin-top: 10px;
  padding-left: 0px;
  display: inline-block;
}

.widget.widget_rss ul > li cite:before,
.widget.widget_rss ul > li cite:after {
  content: " ";
  display: table;
}

.widget.widget_rss ul > li cite:after {
  clear: both;
}

.widget.widget_rss ul > li .children {
  margin-top: 9px;
  padding-top: 9px;
  margin-left: 20px;
}

.widget.widget_rss ul > li .children li:first-of-type {
  border-top: 1px solid;
  border-top-color: #eaeaea;
}

.widget.widget_search {
  background-color: #f7f7f7;
  padding: 25px;
  border: solid 1px #ffffff;
}

.widget.widget_search:before,
.widget.widget_search:after {
  content: " ";
  display: table;
}

.widget.widget_search:after {
  clear: both;
}

.widget.widget_search form {
  display: inline-block;
  width: 100%;
  margin-top: 4px;
}

.widget.widget_search form div {
  display: inline-block;
  width: 100%;
  position: relative;
}

.widget.widget_search form div:before {
  font-family: 'themesy';
  content: "\e635";
  color: #2a2a2a;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  font-size: 16px;
}

.widget.widget_search h4.widget-title {
  font-size: 13px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 25px;
}

.widget.widget_search label {
  width: 100%;
  display: inline-block;
  margin-bottom: 0;
  position: relative;
}

.widget.widget_search label:before {
  font-family: 'themesy';
  content: "\e635";
  color: #2a2a2a;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  font-size: 16px;
}

.widget.widget_search #s,
.widget.widget_search .search-field {
  width: 100%;
  float: left;
  height: 41px;
  background-color: #ffffff;
  border: 0 none;
  color: #2a2a2a;
  font-family: "Open Sans";
  padding-left: 15px;
  padding-right: 35px;
  outline: 0;
}

.widget.widget_search #s:focus,
.widget.widget_search .search-field:focus {
  box-shadow: none;
  padding: 0px;
  margin: 0px;
  border: 0 none;
  outline: 0;
  padding-left: 15px;
  padding-right: 35px;
}

.widget.widget_search #s:placeholder,
.widget.widget_search .search-field:placeholder {
  padding-left: 10px;
  color: #808080;
}

.widget.widget_search #searchsubmit,
.widget.widget_search .search-submit {
  display: none;
  float: right;
  fill: #2a2a2a;
  background-color: #27558b;
  color: #2a2a2a;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 2px;
  margin: 0 auto;
  border-radius: 0px;
  border: 0 none;
  font-size: 13px !important;
  text-shadow: none;
  box-shadow: none;
  font-weight: normal;
  width: 10%;
  content: 'a';
  transition: background-color 2s linear;
}

.widget.widget_search #searchsubmit:hover,
.widget.widget_search .search-submit:hover {
  -webkit-animation: fromHighlightToBody 2s forwards;
  animation: fromHighlightToBody 2s forwards;
}

.widget.widget_search #searchsubmit:hover i,
.widget.widget_search .search-submit:hover i {
  -webkit-animation: toRightFromLeftTranslateCentered 0.9s infinite;
  animation: toRightFromLeftTranslateCentered 0.9s infinite;
}

.widget.widget_calendar #calendar_wrap {
  border: solid 1px #ffffff;
  border-bottom: none;
}

.widget.widget_calendar #calendar_wrap #wp-calendar {
  width: 100%;
}

.widget.widget_calendar #calendar_wrap #wp-calendar caption {
  padding: 10px 15px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ffffff;
  text-transform: uppercase;
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  word-spacing: 1px;
  text-align: left;
  color: #2a2a2a;
}

.widget.widget_calendar #calendar_wrap #wp-calendar thead {
  padding: 10px 15px;
  background-color: #f7f7f7;
  margin-bottom: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #ffffff;
}

.widget.widget_calendar #calendar_wrap #wp-calendar thead th {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 5.5%;
  font-size: 13px;
  font-family: "Open Sans";
  font-weight: 700;
  color: #2a2a2a;
}

.widget.widget_calendar #calendar_wrap #wp-calendar tbody {
  padding: 10px 15px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ffffff;
}

.widget.widget_calendar #calendar_wrap #wp-calendar tbody td {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 5.5%;
}

.widget.widget_calendar #calendar_wrap #wp-calendar tfoot {
  padding: 10px 15px;
  background-color: #f7f7f7;
  margin-bottom: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #ffffff;
}

.widget.widget_calendar #calendar_wrap #wp-calendar tfoot td {
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: "Open Sans";
  font-size: 13px;
}

.widget.widget_calendar #calendar_wrap #wp-calendar tfoot td#prev {
  padding-left: 15px;
  color: #2a2a2a;
}

.widget.widget_calendar #calendar_wrap #wp-calendar tfoot td#next {
  padding-right: 15px;
  color: #2a2a2a;
}

.widget.widget_recent_comments ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget.widget_recent_comments ul > li {
  padding: 18px 0;
  border-bottom: 1px solid;
  border-bottom-color: #eaeaea;
  position: relative;
  padding-left: 32px;
}

.widget.widget_recent_comments ul > li:before {
  font-family: 'themesy';
  content: "\e630";
  color: #2a2a2a;
  position: absolute;
  top: 18px;
  left: 0px;
  margin-left: 5px;
  margin-right: 15px;
  width: 15px;
  height: 15px;
}

.widget.widget_recent_comments ul > li:last-child {
  border-bottom: none;
}

.widget.widget_recent_comments ul > li a {
  display: inline-block;
  color: #2a2a2a;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Open Sans";
}

.widget.widget_recent_comments ul > li a:hover {
  color: #27558b;
}

.widget.widget_recent_comments ul > li a i {
  margin-right: 14px;
}

.widget.widget_recent_comments ul > li .count {
  color: #2a2a2a;
  float: right;
}

.widget.widget_recent_comments ul > li .children {
  margin-top: 9px;
  padding-top: 9px;
  margin-left: 20px;
}

.widget.widget_recent_comments ul > li .children li:first-of-type {
  border-top: 1px solid;
  border-top-color: #eaeaea;
}

.widget.widget_categories ul li {
  color: #2a2a2a;
  text-align: right;
}

.widget.widget_categories ul li a {
  float: left;
}

.widget.widget_archive ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget.widget_archive ul > li {
  padding: 18px 0;
  border-bottom: 1px solid;
  border-bottom-color: #eaeaea;
  text-align: right;
  color: #2a2a2a;
  position: relative;
}

.widget.widget_archive ul > li:before {
  font-family: 'themesy';
  content: "\e630";
  color: #2a2a2a;
  position: absolute;
  top: 18px;
  left: 0px;
  margin-left: 5px;
  margin-right: 15px;
  width: 15px;
  height: 15px;
}

.widget.widget_archive ul > li:last-child {
  border-bottom: none;
}

.widget.widget_archive ul > li a {
  padding-left: 33px;
  display: inline-block;
  color: #2a2a2a;
  text-decoration: none;
  text-transform: uppercase;
  float: left;
}

.widget.widget_archive ul > li a:hover {
  color: #27558b;
}

.widget.widget_archive ul > li a i {
  margin-right: 14px;
}

.widget.widget_archive ul > li .count {
  color: #2a2a2a;
  float: right;
}

.widget.widget_archive ul > li .children {
  margin-top: 9px;
  padding-top: 9px;
  margin-left: 20px;
}

.widget.widget_archive ul > li .children li:first-of-type {
  border-top: 1px solid;
  border-top-color: #eaeaea;
}

.widget.widget_categories ul li {
  color: #2a2a2a;
  text-align: right;
}

.widget.widget_categories ul li a {
  float: left;
}

.widget.widget_price_filter {
  background-color: #f7f7f7;
  padding: 25px;
}

.widget.widget_price_filter h4.widget-title {
  font-size: 13px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 25px;
}

.widget.widget_price_filter .price_slider_wrapper .price_slider.ui-widget-content {
  margin-bottom: 25px;
  border-radius: 0px;
  height: 16px;
  max-width: 207px;
  background: #eaeaea;
}

.widget.widget_price_filter .price_slider_wrapper .price_slider.ui-widget-content .ui-slider-range {
  top: 0px;
  background-image: none;
  background-color: #ffffff;
  border-radius: 0px;
  box-shadow: none;
  height: 16px;
}

.widget.widget_price_filter .price_slider_wrapper .price_slider.ui-widget-content .ui-slider-handle {
  left: 0%;
  background: #27558b;
  border-radius: 0px;
  box-shadow: none;
  border: 0 none;
  width: 26px;
  height: 16px;
  top: 0px;
}

.widget.widget_price_filter .price_slider_amount button.button {
  padding: 10px 30px;
}

.widget.widget_price_filter .price_slider_amount .price_label {
  text-align: left;
  letter-spacing: normal;
  word-spacing: normal;
  font-size: 11px;
  line-height: 45px;
  font-family: "Open Sans";
}

.widget.widget_product_search {
  background-color: #f7f7f7;
  padding: 25px;
}

.widget.widget_product_search h4.widget-title {
  font-size: 13px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 25px;
}

.widget.widget_product_search .woocommerce-product-search {
  display: inline-block;
  width: 100%;
}

.widget.widget_product_search .woocommerce-product-search:before {
  font-family: 'themesy';
  content: "\e635";
  color: #2a2a2a;
  position: absolute;
  top: 74px;
  right: 43px;
  font-size: 16px;
}

.widget.widget_product_search .woocommerce-product-search .search-field {
  width: 100%;
  float: left;
  height: 41px;
  background-color: #ffffff;
  border: 0 none;
  color: #2a2a2a;
  font-family: "Open Sans";
  padding-left: 15px;
  padding-right: 35px;
  outline: 0;
}

.widget.widget_product_search .woocommerce-product-search .search-field:focus {
  box-shadow: none;
  padding: 0px;
  margin: 0px;
  border: 0 none;
  outline: 0;
  padding-left: 15px;
  padding-right: 35px;
}

.widget.widget_product_search .woocommerce-product-search .search-field:placeholder {
  padding-left: 10px;
  color: #808080;
}

.widget.widget_product_search .woocommerce-product-search input[type="submit"] {
  display: none;
  float: right;
  fill: #2a2a2a;
  background-color: #27558b;
  color: #2a2a2a;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 2px;
  margin: 0 auto;
  border-radius: 0px;
  border: 0 none;
  font-size: 13px !important;
  text-shadow: none;
  box-shadow: none;
  font-weight: normal;
  width: 10%;
  content: 'a';
  transition: background-color 2s linear;
}

.widget.widget_product_search .woocommerce-product-search input[type="submit"]:hover {
  -webkit-animation: fromHighlightToBody 2s forwards;
  animation: fromHighlightToBody 2s forwards;
}

.widget.widget_product_search .woocommerce-product-search input[type="submit"]:hover i {
  -webkit-animation: toRightFromLeftTranslateCentered 0.9s infinite;
  animation: toRightFromLeftTranslateCentered 0.9s infinite;
}

.widget.woocommerce.widget_products .widget-title,
.widget.woocommerce.widget_recent_reviews .widget-title,
.widget.woocommerce.widget_top_rated_products .widget-title {
  margin-bottom: 43px;
}

.widget.woocommerce.widget_products a,
.widget.woocommerce.widget_recent_reviews a,
.widget.woocommerce.widget_top_rated_products a {
  color: #2a2a2a;
  letter-spacing: 1px;
}

.widget.woocommerce.widget_products a:focus,
.widget.woocommerce.widget_products a:hover,
.widget.woocommerce.widget_recent_reviews a:focus,
.widget.woocommerce.widget_recent_reviews a:hover,
.widget.woocommerce.widget_top_rated_products a:focus,
.widget.woocommerce.widget_top_rated_products a:hover {
  color: #27558b;
}

.widget.woocommerce.widget_products ul.product_list_widget li a,
.widget.woocommerce.widget_recent_reviews ul.product_list_widget li a,
.widget.woocommerce.widget_top_rated_products ul.product_list_widget li a {
  color: #2a2a2a;
}

.widget.woocommerce.widget_products ul.product_list_widget li img,
.widget.woocommerce.widget_recent_reviews ul.product_list_widget li img,
.widget.woocommerce.widget_top_rated_products ul.product_list_widget li img {
  width: 40px;
  box-shadow: none;
}

.widget.woocommerce.widget_products ul.product_list_widget li del,
.widget.woocommerce.widget_recent_reviews ul.product_list_widget li del,
.widget.woocommerce.widget_top_rated_products ul.product_list_widget li del {
  padding-right: 10px;
}

.widget.woocommerce.widget_products ul.product_list_widget li ins,
.widget.woocommerce.widget_recent_reviews ul.product_list_widget li ins,
.widget.woocommerce.widget_top_rated_products ul.product_list_widget li ins {
  text-decoration: none;
}

.widget.woocommerce.widget_products ul.product_list_widget li .amount,
.widget.woocommerce.widget_recent_reviews ul.product_list_widget li .amount,
.widget.woocommerce.widget_top_rated_products ul.product_list_widget li .amount {
  letter-spacing: 2px;
}

.widget.woocommerce.widget_products ul.product_list_widget li .star-rating,
.widget.woocommerce.widget_recent_reviews ul.product_list_widget li .star-rating,
.widget.woocommerce.widget_top_rated_products ul.product_list_widget li .star-rating {
  margin-top: 6px;
  margin-bottom: 6px;
}

.widget.woocommerce.widget_shopping_cart {
  background-color: #f7f7f7;
  padding: 25px;
}

.widget.woocommerce.widget_shopping_cart h4.widget-title {
  font-size: 13px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 25px;
}

.widget.woocommerce.widget_shopping_cart .cart_list.product_list_widget li a {
  letter-spacing: 1px;
  color: #2a2a2a;
}

.widget.woocommerce.widget_shopping_cart .cart_list.product_list_widget li a img {
  width: 40px;
  box-shadow: none;
}

.widget.woocommerce.widget_shopping_cart .cart_list.product_list_widget li a:hover {
  color: #27558b;
}

.widget.woocommerce.widget_shopping_cart .cart_list.product_list_widget li .quantity {
  text-align: left;
  margin: 0px;
  margin-top: 6px;
  letter-spacing: 2px;
}

.widget.woocommerce.widget_shopping_cart .cart_list.product_list_widget li:last-of-type {
  padding-bottom: 30px;
}

.widget.woocommerce.widget_shopping_cart .total {
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  border-top: 1px solid #eaeaea;
  padding-top: 30px;
  color: #2a2a2a;
}

.widget.woocommerce.widget_shopping_cart .total .amount {
  letter-spacing: 2px;
}

.widget.woocommerce.widget_shopping_cart .buttons {
  padding-top: 0px;
}

.widget.woocommerce.widget_shopping_cart .buttons a {
  min-width: 19px;
  margin-right: 15px;
  margin-top: 20px;
}

.widget.woocommerce.widget_shopping_cart .buttons a:last-of-type {
  margin-right: 0px;
}

.widget.th_image:before,
.widget.th_image:after {
  content: " ";
  display: table;
}

.widget.th_image:after {
  clear: both;
}

.widget.th_image img {
  width: 100%;
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: auto;
}

.widget.th_image img.align-center {
  margin: 0 auto;
}

.widget.th_image img.align-left {
  float: left;
}

.widget.th_image img.align-right {
  float: right;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .widget.th_image img {
    width: 70%;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .widget.th_image img {
    width: auto;
  }
}

/* Large devices (large desktops, 1200px and up) */

.widget.widget_text .textwidget img,
.widget.widget_text .textwidget select {
  max-width: 100%;
}

html.touch figure figcaption {
  max-height: 0;
  transition: max-height 0s ease 0.1s;
}

html.touch figure:hover figcaption {
  max-height: 100%;
}

figure {
  position: relative;
  overflow: hidden;
  height: auto;
  text-align: center;
  margin: 0 auto;
  z-index: 10;
}

figure img {
  position: relative;
  display: block;
  opacity: 1;
}

figure figcaption {
  padding: 0;
  color: #ffffff;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  vertical-align: middle;
  z-index: 10;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

figure figcaption:before,
figure figcaption:after {
  pointer-events: none;
}

figure figcaption .hover-title,
figure figcaption .hover-info {
  display: none;
}

figure figcaption .actions {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: visible;
  padding-bottom: 1px;
}

figure.hover-type-text figcaption .actions {
  text-transform: uppercase;
}

figure.hover-type-text figcaption .actions .action:last-of-type {
  margin-right: 0;
}

figure.hover-type-text.filled figcaption .actions .action {
  border-color: #1e1e1e;
  background: #1e1e1e;
}

figure.hover-type-text.filled figcaption .actions .action:hover,
figure.hover-type-text.filled figcaption .actions .action:focus,
figure.hover-type-text.filled figcaption .actions .action:active {
  background-color: #27558b;
}

figure.hover-type-icons figcaption .actions .action {
  display: inline-block;
  margin-right: 12px;
  width: 56px;
  height: 56px;
  font-size: 0;
  line-height: 0;
}

figure.hover-type-icons figcaption .actions .action:last-of-type {
  margin-right: 0;
}

figure.hover-type-icons figcaption .actions .action:after {
  position: relative;
  top: 0;
  display: inline-block;
  border-radius: 28px;
  padding-top: 16px;
  width: 56px;
  height: 56px;
  background: #1e1e1e;
  font-family: 'themesy';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-align: center;
  font-size: 23px;
  color: #ffffff;
  line-height: 1;
  transition: all 0.3s ease;
}

figure.hover-type-icons figcaption .actions .action:hover:after,
figure.hover-type-icons figcaption .actions .action:focus:after,
figure.hover-type-icons figcaption .actions .action:active:after {
  top: -5px;
  background: #27558b;
}

figure.hover-type-icons figcaption .actions .action.wc-thumbnail-navigation:after,
figure.hover-type-icons figcaption .actions .action.zoom:after,
figure.hover-type-icons figcaption .actions .action.woo-zoom:after {
  content: '\e657';
}

figure.hover-type-icons figcaption .actions .action.go:after {
  content: '\e63a';
}

figure.hover-type-icons figcaption .actions .action.play:after {
  content: '\e649';
  padding-left: 4px;
}

figure .hover-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  background: rgba(32, 32, 32, 0.81);
  opacity: 0;
  filter: alpha(opacity=0);
  transition: opacity 0.3s ease 0.2s;
}

figure:hover .hover-overlay {
  transition: opacity 0.4s ease 0.1s;
}

/*---------------*/

/*****  Fry  *****/

/*---------------*/

figure.hover-effect-fry figcaption {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: opacity 0.4s ease;
  background-color: rgba(32, 32, 32, 0.81);
}

figure.hover-effect-fry:hover figcaption {
  opacity: 1;
}

/* Small devices (phones and tablets, 991px and down) */

@media (max-width: 991px) {
  figure.hover-effect-fry figcaption,
  figure.hover-effect-rotate-in figcaption,
  figure.hover-effect-zoom figcaption,
  figure.hover-follow-the-mouse figcaption,
  figure.hover-effect-framing figcaption,
  figure.hover-effect-read-more figcaption {
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity 0.3s ease;
    background-color: rgba(32, 32, 32, 0.81);
  }

  figure.hover-effect-fry:hover figcaption,
  figure.hover-effect-rotate-in:hover figcaption,
  figure.hover-effect-zoom:hover figcaption,
  figure.hover-follow-the-mouse:hover figcaption,
  figure.hover-effect-framing:hover figcaption,
  figure.hover-effect-read-more:hover figcaption {
    opacity: 1;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  /*---------------------*/

  /*****  Rotate In  *****/

  /*---------------------*/

  figure.hover-effect-rotate-in img {
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
  }

  figure.hover-effect-rotate-in figcaption {
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity 0.4s ease;
    background-color: rgba(32, 32, 32, 0.81);
  }

  figure.hover-effect-rotate-in:hover img {
    -webkit-transform: scale(1.4) rotate(-12deg);
    -ms-transform: scale(1.4) rotate(-12deg);
    transform: scale(1.4) rotate(-12deg);
  }

  figure.hover-effect-rotate-in:hover figcaption {
    opacity: 1;
  }

  /*----------------*/

  /*****  Zoom  *****/

  /*----------------*/

  figure.hover-effect-zoom img {
    transition: -webkit-transform 0.7s ease;
    transition: transform 0.7s ease;
  }

  figure.hover-effect-zoom figcaption {
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity 0.3s ease;
    background-color: rgba(32, 32, 32, 0.81);
  }

  figure.hover-effect-zoom:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  figure.hover-effect-zoom:hover figcaption {
    opacity: 1;
  }

  /*----------------------------*/

  /*****  Follow the mouse  *****/

  /*----------------------------*/

  figure.hover-follow-the-mouse figcaption {
    position: absolute;
    left: 101%;
    width: 100%;
    height: 100%;
    background-color: rgba(32, 32, 32, 0.81);
  }

  figure.hover-follow-the-mouse figcaption .actions {
    display: block;
  }

  /*-------------------*/

  /*****  Framing  *****/

  /*-------------------*/

  figure.hover-effect-framing .hover-overlay {
    display: block;
  }

  figure.hover-effect-framing .inner-content {
    z-index: 11;
    transition: top 0.4s ease;
  }

  figure.hover-effect-framing figcaption {
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 12;
    transition: opacity 0.3s ease;
  }

  figure.hover-effect-framing figcaption .hover-frame {
    content: '';
    position: absolute;
    top: 7%;
    right: 5%;
    bottom: 7%;
    left: 5%;
    border: solid 1px #ffffff;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  figure.hover-effect-framing figcaption .hover-info {
    display: block;
    position: relative;
    top: 50%;
    margin: 0 auto;
    max-width: 70%;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    -webkit-transform: scale(0) translateY(-50%);
    -ms-transform: scale(0) translateY(-50%);
    transform: scale(0) translateY(-50%);
  }

  figure.hover-effect-framing figcaption .hover-info span {
    display: block;
  }

  figure.hover-effect-framing figcaption .actions {
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }

  figure.hover-effect-framing figcaption .actions .action {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  figure.hover-effect-framing:hover .hover-overlay {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  figure.hover-effect-framing:hover figcaption {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  figure.hover-effect-framing:hover figcaption .hover-frame {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  figure.hover-effect-framing:hover figcaption .hover-info {
    -webkit-transform: scale(1) translateY(-50%);
    -ms-transform: scale(1) translateY(-50%);
    transform: scale(1) translateY(-50%);
  }

  figure.hover-effect-framing:hover figcaption .actions {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  /*---------------------*/

  /*****  Read More  *****/

  /*---------------------*/

  figure.hover-effect-read-more .hover-overlay {
    display: block;
  }

  figure.hover-effect-read-more figcaption {
    z-index: 12;
    top: auto;
    bottom: -64px;
    height: 64px;
    background: #f7f7f7;
    transition: bottom 0.4s ease;
    overflow: visible;
  }

  figure.hover-effect-read-more figcaption .hover-title {
    display: block;
    float: left;
    margin-left: 20px;
    line-height: 64px;
    font-weight: bold;
    font-size: 18px;
  }

  figure.hover-effect-read-more figcaption .hover-info {
    display: block;
    position: absolute;
    margin: 0 15%;
    max-width: 70%;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity 0.45s ease;
    bottom: 100%;
  }

  figure.hover-effect-read-more figcaption .hover-info span {
    display: table-cell;
    vertical-align: middle;
  }

  figure.hover-effect-read-more figcaption .actions {
    position: absolute;
    top: 0;
    left: auto;
    right: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  figure.hover-effect-read-more figcaption .actions .action {
    display: inline;
    margin-right: 0;
  }

  figure.hover-effect-read-more figcaption .actions .action:after {
    bottom: -20px;
    transition: bottom 0s ease 0s;
    padding: 0;
    width: 32px;
    line-height: 64px;
  }

  figure.hover-effect-read-more.hover-type-icons figcaption .actions .action:after,
  figure.hover-effect-read-more.hover-type-icons figcaption .actions .action:hover:after {
    top: auto;
    border: none !important;
    background: transparent !important;
  }

  figure.hover-effect-read-more.hover-type-icons figcaption .actions .action:hover:after {
    color: #27558b;
  }

  figure.hover-effect-read-more.hover-type-text figcaption .actions {
    top: 20px;
  }

  figure.hover-effect-read-more:hover .hover-overlay {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  figure.hover-effect-read-more:hover figcaption {
    bottom: 0;
  }

  figure.hover-effect-read-more:hover figcaption .hover-info {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  figure.hover-effect-read-more:hover figcaption .actions .action:last-of-type:after {
    transition-delay: 0.35s;
  }

  figure.hover-effect-read-more:hover figcaption .actions .action:after {
    bottom: 0;
    transition-duration: 0.25s;
    transition-delay: 0.2s;
  }
}

/*-------------------------------------------*/

/* Themesy hover effects                     */

/*-------------------------------------------*/

@-webkit-keyframes fromHighlightToBody {
  1% {
    background-color: #ffffff;
  }

  99% {
    background-color: #27558b;
  }
}

@-webkit-keyframes fromHighlightToBody {
  1% {
    background-color: #ffffff;
  }

  99% {
    background-color: #27558b;
  }
}

@keyframes fromHighlightToBody {
  1% {
    background-color: #ffffff;
  }

  99% {
    background-color: #27558b;
  }
}

/*-------------------------------------------*/

/* Hover effects ideas by Mary Lou (Codrops) */

/*-------------------------------------------*/

.toTopFromBottom:hover {
  -webkit-animation: toTopFromBottom 0.3s forwards;
  animation: toTopFromBottom 0.3s forwards;
}

@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

.toRightFromLeft:hover i {
  -webkit-animation: toRightFromLeft 0.3s forwards;
  animation: toRightFromLeft 0.3s forwards;
}

@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes toRightFromLeft {
  49% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

.toLeftFromRight:hover i {
  -webkit-animation: toLeftFromRight 0.3s forwards;
  animation: toLeftFromRight 0.3s forwards;
}

@-webkit-keyframes toLeftFromRight {
  49% {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes toLeftFromRight {
  49% {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }

  51% {
    opacity: 1;
  }
}

@-webkit-keyframes toRightFromLeftTranslateCentered {
  0% {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  49% {
    -webkit-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    opacity: 0;
  }

  50% {
    opacity: 1;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
  }

  99% {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@keyframes toRightFromLeftTranslateCentered {
  0% {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  49% {
    -webkit-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    opacity: 0;
  }

  50% {
    opacity: 1;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
  }

  99% {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/*-----------------------------------------------*/

/* End Hover effects ideas by Mary Lou (Codrops) */

/*-----------------------------------------------*/

.th-separator {
  margin: 0 auto;
}

.team-members-wrapper {
  margin-left: 0px;
  margin-right: 0px;
}

.team-members-wrapper .team-member-element {
  margin-bottom: 60px;
}

.team-members-wrapper .team-member-element figure {
  margin-bottom: 36px;
  text-align: center;
}

.team-members-wrapper .team-member-element figure img {
  margin: 0 auto;
}

.team-members-wrapper .team-member-element .name {
  text-align: center;
  text-transform: none;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.team-members-wrapper .team-member-element .line {
  font-family: "Open Sans";
  text-align: center;
  font-size: 13px;
  font-style: italic;
  color: #808080;
  letter-spacing: 0.5px;
  margin-bottom: 35px;
}

.team-members-wrapper .team-member-element .comment {
  font-family: "Open Sans";
  text-align: center;
  letter-spacing: 1px;
  line-height: 20px;
  padding: 0 20px;
  font-size: 13px;
}

.team-members-wrapper .team-member-element .competencies {
  margin-top: 58px;
  text-align: center;
}

.team-members-wrapper .team-member-element .competencies h4 {
  font-size: 16px;
  font-weight: 600;
}

.team-members-wrapper .team-member-element .competencies .competency-name {
  font-size: 13px;
  letter-spacing: 1px;
  color: #808080;
  font-family: "Open Sans";
}

.team-members-wrapper .team-member-element .competencies .mobile-competencies {
  marin-bottom: 15px;
}

.team-members-wrapper .team-member-element .competencies .mobile-competencies .mobile-competence {
  margin-bottom: 15px;
  display: inline-block;
  width: 105px;
  margin-top: 15px;
}

.team-members-wrapper .team-member-element .competencies .mobile-competencies .mobile-competence .competence-value {
  font-weight: 600;
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .team-members-wrapper .team-member-element .competencies .mobile-competencies .mobile-competence {
    margin-bottom: 15px;
    display: inline-block;
    width: 80px;
    margin-top: 15px;
  }

  .team-members-wrapper .team-member-element .competencies .mobile-competencies .mobile-competence .competence-value {
    font-weight: 600;
    font-size: 26px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/* Medium devices (desktops, 992px and up) */

/* Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
  .navbar-left .team-members-wrapper,
  .navbar-right .team-members-wrapper {
    margin-left: 0px;
    margin-right: 0px;
  }
}

/* Large devices (large desktops, 1200px and up) */

@media (min-width: 1400px) {
  .navbar-left .team-members-wrapper,
  .navbar-right .team-members-wrapper {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.og-grid {
  list-style: none;
  padding: 50px 0 80px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.og-grid > li {
  display: inline-block;
  margin: 34px 7px 0 7px;
  vertical-align: top;
}

.og-grid > li > a {
  border: none;
  outline: none;
  display: block;
  position: relative;
}

.og-grid > li > a img {
  border: none;
  outline: none;
  display: block;
  position: relative;
}

.og-grid > li.og-expanded > a::after {
  top: auto;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #27558b;
  border-width: 21px;
  left: 50%;
  margin: 23px 0px 0px -21px;
}

.og-expander {
  position: absolute;
  background: #f7f7f7;
  top: auto;
  left: 0;
  width: 100%;
  margin-top: 65px;
  text-align: left;
  height: 0;
  overflow: hidden;
}

.og-expander-inner {
  padding: 50px 30px;
  height: 100%;
}

.og-expander-inner:before,
.og-expander-inner:after {
  content: " ";
  display: table;
}

.og-expander-inner:after {
  clear: both;
}

.og-close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.og-close::before {
  content: '';
  position: absolute;
  width: 100%;
  top: 50%;
  height: 1px;
  background: #808080;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.og-close::after {
  content: '';
  position: absolute;
  width: 100%;
  top: 50%;
  height: 1px;
  background: #808080;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.og-close:hover::before,
.og-close:hover::after {
  background: #2a2a2a;
}

.og-fullimg {
  float: left;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.og-details {
  float: left;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 60%;
  padding: 0 40px 0 20px;
}

.og-fullimg {
  width: 40%;
  text-align: center;
}

.og-fullimg figure {
  position: relative;
  left: 13%;
  width: 215px;
  height: 215px;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}

.og-fullimg img {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  height: 100%;
  width: auto;
  border: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.og-details h3 {
  font-weight: normal;
  font-size: 45px;
  padding: 0 0 10px;
  margin: 0;
}

.og-details h3:before {
  display: inline;
  content: '/';
  margin-right: 15px;
  font-size: 45px;
  color: #27558b;
}

.og-details h4 {
  font-weight: normal;
  font-size: 24px;
  font-style: italic;
  padding: 0 0 25px;
  margin: 0;
}

.og-details div.details {
  font-size: 13px;
}

.og-details a.btn,
.og-details figure.hover-type-text figcaption .actions a.action,
figure.hover-type-text figcaption .actions .og-details a.action {
  margin-top: 30px;
}

.og-details .sshare {
  display: block;
  margin-top: 30px;
}

.og-details .sshare li.sshare-button {
  margin-top: 0;
  margin-bottom: 6px;
}

.og-details .sshare li.sshare-button:first-of-type {
  margin-left: 0;
}

.og-loading {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dddddd;
  box-shadow: 0 0 1px #cccccc, 15px 30px 1px #cccccc, -15px 30px 1px #cccccc;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  -webkit-animation: loader 0.5s infinite ease-in-out both;
  animation: loader 0.5s infinite ease-in-out both;
}

@-webkit-keyframes loader {
  0% {
    background: #dddddd;
  }

  33% {
    background: #cccccc;
    box-shadow: 0 0 1px #cccccc, 15px 30px 1px #cccccc, -15px 30px 1px #dddddd;
  }

  66% {
    background: #cccccc;
    box-shadow: 0 0 1px #cccccc, 15px 30px 1px #dddddd, -15px 30px 1px #cccccc;
  }
}

@keyframes loader {
  0% {
    background: #dddddd;
  }

  33% {
    background: #cccccc;
    box-shadow: 0 0 1px #cccccc, 15px 30px 1px #cccccc, -15px 30px 1px #dddddd;
  }

  66% {
    background: #cccccc;
    box-shadow: 0 0 1px #cccccc, 15px 30px 1px #dddddd, -15px 30px 1px #cccccc;
  }
}

.team-members-grid-wrapper li {
  cursor: pointer;
}

.team-members-grid-wrapper li > a > figure {
  position: relative;
  display: block;
  width: 250px;
  height: 250px;
  overflow: hidden;
}

.team-members-grid-wrapper li > a > figure img {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  height: 100%;
  width: auto;
  border: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.team-members-grid-wrapper li > a > figure .th-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  padding-top: 15px;
  font-size: 20px;
  color: #2a2a2a;
  text-align: center;
  background: #27558b;
}

.team-members-grid-wrapper li .info {
  padding: 30px 25px 20px;
  border-bottom: solid 4px #27558b;
  background: #f7f7f7;
  height: 100px;
  overflow: hidden;
  text-align: left;
}

.team-members-grid-wrapper li .info .name {
  text-transform: none;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #2a2a2a;
}

.team-members-grid-wrapper li .info .line {
  font-family: "Open Sans";
  font-size: 13px;
  font-style: italic;
  color: #808080;
  letter-spacing: 0.5px;
}

.team-members-grid-wrapper li.og-expanded .info,
.team-members-grid-wrapper li:hover .info {
  border-bottom: solid 4px #eaeaea;
}

@media screen and (max-width: 767px) {
  .og-fullimg {
    display: none;
  }

  .og-details {
    float: none;
    width: 100%;
  }
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .og-details h3 {
    font-size: 50px;
  }

  .og-details h3:before {
    font-size: 50px;
  }

  .og-details h4 {
    font-size: 16px;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .og-fullimg figure {
    width: 280px;
    height: 280px;
  }

  .og-details h3 {
    font-size: 60px;
  }

  .og-details h3:before {
    font-size: 60px;
  }

  .og-details h4 {
    font-size: 18px;
  }
}

/* Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
  .navbar-left .team-members-grid-wrapper,
  .navbar-right .team-members-grid-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Large devices (large desktops, 1400px and up) */

@media (min-width: 1400px) {
  .navbar-left .team-members-grid-wrapper,
  .navbar-right .team-members-grid-wrapper {
    margin-left: -10px;
    margin-right: -10px;
  }

  .og-fullimg figure {
    width: 384px;
    height: 384px;
  }

  .og-details h3 {
    font-size: 72px;
  }

  .og-details h3:before {
    font-size: 72px;
  }

  .og-details h4 {
    font-size: 24px;
  }

  .og-details div.details {
    font-size: 13px;
  }
}

.th-infobox-wrapper {
  margin-bottom: 60px;
}

.th-infobox-wrapper .th-infobox {
  padding: 35px;
}

.th-infobox-wrapper .th-infobox .icon i {
  font-size: 42px;
}

.th-infobox-wrapper .th-infobox .header .title {
  margin-top: 20px;
}

.th-infobox-wrapper .th-infobox .header .title h4 {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.th-infobox-wrapper .th-infobox .header .subtitle h5 {
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 13px;
  font-style: italic;
}

.th-infobox-wrapper .th-infobox .content {
  font-family: "Open Sans";
  letter-spacing: 1px;
  line-height: 20px;
}

.th-infobox-wrapper .th-infobox.content {
  margin-bottom: 1px;
}

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .th-infobox-wrapper {
    margin-bottom: 0px;
  }
}

/* Large devices (large desktops, 1200px and up) */

.th-list-content {
  margin-bottom: 2px;
  padding: 20px;
}

.th-list-content .aio-icon {
  margin-top: 1px;
  margin-left: 5px;
  width: 24px;
  max-height: 35px;
  float: left;
  margin-right: 21px;
}

.th-list-content .uavc-list-desc {
  font-family: "Open Sans";
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 20px;
}

.th-pricebox-wrapper {
  margin-bottom: 60px;
}

.th-pricebox-wrapper .th-pricebox {
  padding-top: 25px;
}

.th-pricebox-wrapper .th-pricebox .price {
  width: 70px;
  height: 70px;
  background: #f7f7f7;
  color: #ffffff;
  margin: 0 auto;
  border-radius: 35px;
  text-align: center;
  line-height: 70px;
  font-weight: 800;
  font-size: 22px;
  font-family: "Open Sans";
}

.th-pricebox-wrapper .th-pricebox .title {
  padding-top: 20px;
  text-align: center;
}

.th-pricebox-wrapper .th-pricebox .subtitle {
  padding-top: 15px;
  text-align: center;
  font-style: italic;
}

.th-pricebox-wrapper .th-pricebox .content {
  margin-top: 20px;
}

.th-pricebox-wrapper .th-pricebox .content p {
  margin: 0px;
  padding: 20px 30px;
  border-bottom: 1px solid;
  border-bottom-color: #eaeaea;
}

.th-pricebox-wrapper .th-pricebox .content p:first-of-type {
  border-top: 1px solid;
  border-top-color: #eaeaea;
}

.th-pricebox-wrapper .th-pricebox .content p:last-of-type {
  border-bottom: none;
}

.th-pricebox-wrapper .calltoaction-wrapper {
  display: table;
  width: 100%;
}

.th-pricebox-wrapper .calltoaction-wrapper .calltoaction,
.th-pricebox-wrapper .calltoaction-wrapper .comments .comment-respond #submitform,
.comments .comment-respond .th-pricebox-wrapper .calltoaction-wrapper #submitform,
.th-pricebox-wrapper .calltoaction-wrapper .widget.contact-form .form-group input.btn,
.widget.contact-form .form-group .th-pricebox-wrapper .calltoaction-wrapper input.btn,
.th-pricebox-wrapper .calltoaction-wrapper .widget.contact-form .form-group .post-password-form input[type="submit"],
.widget.contact-form .form-group .post-password-form .th-pricebox-wrapper .calltoaction-wrapper input[type="submit"],
.th-pricebox-wrapper .calltoaction-wrapper .post-password-form .widget.contact-form .form-group input[type="submit"],
.post-password-form .widget.contact-form .form-group .th-pricebox-wrapper .calltoaction-wrapper input[type="submit"],
.th-pricebox-wrapper .calltoaction-wrapper .widget.contact-form .form-group figure.hover-type-text figcaption .actions input.action,
.widget.contact-form .form-group figure.hover-type-text figcaption .actions .th-pricebox-wrapper .calltoaction-wrapper input.action,
.th-pricebox-wrapper .calltoaction-wrapper figure.hover-type-text figcaption .actions .widget.contact-form .form-group input.action,
figure.hover-type-text figcaption .actions .widget.contact-form .form-group .th-pricebox-wrapper .calltoaction-wrapper input.action,
.th-pricebox-wrapper .calltoaction-wrapper .widget.widget_price_filter .price_slider_amount button.button,
.widget.widget_price_filter .price_slider_amount .th-pricebox-wrapper .calltoaction-wrapper button.button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce div.product form.cart .button,
.woocommerce div.product form.cart .th-pricebox-wrapper .calltoaction-wrapper .button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce #content div.product form.cart .button,
.woocommerce #content div.product form.cart .th-pricebox-wrapper .calltoaction-wrapper .button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page div.product form.cart .button,
.woocommerce-page div.product form.cart .th-pricebox-wrapper .calltoaction-wrapper .button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page #content div.product form.cart .button,
.woocommerce-page #content div.product form.cart .th-pricebox-wrapper .calltoaction-wrapper .button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce a.button,
.woocommerce .th-pricebox-wrapper .calltoaction-wrapper a.button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce button.button,
.woocommerce .th-pricebox-wrapper .calltoaction-wrapper button.button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce input.button,
.woocommerce .th-pricebox-wrapper .calltoaction-wrapper input.button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce #respond input#submitform,
.woocommerce #respond .th-pricebox-wrapper .calltoaction-wrapper input#submitform,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce #content input.button,
.woocommerce #content .th-pricebox-wrapper .calltoaction-wrapper input.button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page a.button,
.woocommerce-page .th-pricebox-wrapper .calltoaction-wrapper a.button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page button.button,
.woocommerce-page .th-pricebox-wrapper .calltoaction-wrapper button.button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page input.button,
.woocommerce-page .th-pricebox-wrapper .calltoaction-wrapper input.button,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page #respond input#submitform,
.woocommerce-page #respond .th-pricebox-wrapper .calltoaction-wrapper input#submitform,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page #content input.button,
.woocommerce-page #content .th-pricebox-wrapper .calltoaction-wrapper input.button {
  padding: 20px 30px;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  font-weight: bold;
  animation: none;
  -webkit-animation: none;
  transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
}

.th-pricebox-wrapper .calltoaction-wrapper .calltoaction:hover,
.th-pricebox-wrapper .calltoaction-wrapper .comments .comment-respond #submitform:hover,
.comments .comment-respond .th-pricebox-wrapper .calltoaction-wrapper #submitform:hover,
.th-pricebox-wrapper .calltoaction-wrapper .widget.contact-form .form-group input.btn:hover,
.widget.contact-form .form-group .th-pricebox-wrapper .calltoaction-wrapper input.btn:hover,
.th-pricebox-wrapper .calltoaction-wrapper .widget.contact-form .form-group .post-password-form input[type="submit"]:hover,
.widget.contact-form .form-group .post-password-form .th-pricebox-wrapper .calltoaction-wrapper input[type="submit"]:hover,
.th-pricebox-wrapper .calltoaction-wrapper .post-password-form .widget.contact-form .form-group input[type="submit"]:hover,
.post-password-form .widget.contact-form .form-group .th-pricebox-wrapper .calltoaction-wrapper input[type="submit"]:hover,
.th-pricebox-wrapper .calltoaction-wrapper .widget.contact-form .form-group figure.hover-type-text figcaption .actions input.action:hover,
.widget.contact-form .form-group figure.hover-type-text figcaption .actions .th-pricebox-wrapper .calltoaction-wrapper input.action:hover,
.th-pricebox-wrapper .calltoaction-wrapper figure.hover-type-text figcaption .actions .widget.contact-form .form-group input.action:hover,
figure.hover-type-text figcaption .actions .widget.contact-form .form-group .th-pricebox-wrapper .calltoaction-wrapper input.action:hover,
.th-pricebox-wrapper .calltoaction-wrapper .widget.widget_price_filter .price_slider_amount button.button:hover,
.widget.widget_price_filter .price_slider_amount .th-pricebox-wrapper .calltoaction-wrapper button.button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce div.product form.cart .button:hover,
.woocommerce div.product form.cart .th-pricebox-wrapper .calltoaction-wrapper .button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce #content div.product form.cart .button:hover,
.woocommerce #content div.product form.cart .th-pricebox-wrapper .calltoaction-wrapper .button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page div.product form.cart .button:hover,
.woocommerce-page div.product form.cart .th-pricebox-wrapper .calltoaction-wrapper .button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page #content div.product form.cart .button:hover,
.woocommerce-page #content div.product form.cart .th-pricebox-wrapper .calltoaction-wrapper .button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce a.button:hover,
.woocommerce .th-pricebox-wrapper .calltoaction-wrapper a.button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce button.button:hover,
.woocommerce .th-pricebox-wrapper .calltoaction-wrapper button.button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce input.button:hover,
.woocommerce .th-pricebox-wrapper .calltoaction-wrapper input.button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce #respond input#submitform:hover,
.woocommerce #respond .th-pricebox-wrapper .calltoaction-wrapper input#submitform:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce #content input.button:hover,
.woocommerce #content .th-pricebox-wrapper .calltoaction-wrapper input.button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page a.button:hover,
.woocommerce-page .th-pricebox-wrapper .calltoaction-wrapper a.button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page button.button:hover,
.woocommerce-page .th-pricebox-wrapper .calltoaction-wrapper button.button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page input.button:hover,
.woocommerce-page .th-pricebox-wrapper .calltoaction-wrapper input.button:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page #respond input#submitform:hover,
.woocommerce-page #respond .th-pricebox-wrapper .calltoaction-wrapper input#submitform:hover,
.th-pricebox-wrapper .calltoaction-wrapper .woocommerce-page #content input.button:hover,
.woocommerce-page #content .th-pricebox-wrapper .calltoaction-wrapper input.button:hover {
  text-decoration: none;
  color: #808080;
  background-color: transparent;
}

.th-pricebox-wrapper a:hover {
  color: #808080;
}

.th-pricebox-wrapper:hover {
  opacity: 0.9;
  color: #808080;
}

.th-pricebox-wrapper:hover .calltoaction,
.th-pricebox-wrapper:hover .comments .comment-respond #submitform,
.comments .comment-respond .th-pricebox-wrapper:hover #submitform,
.th-pricebox-wrapper:hover .widget.contact-form .form-group input.btn,
.widget.contact-form .form-group .th-pricebox-wrapper:hover input.btn,
.th-pricebox-wrapper:hover .widget.contact-form .form-group .post-password-form input[type="submit"],
.widget.contact-form .form-group .post-password-form .th-pricebox-wrapper:hover input[type="submit"],
.th-pricebox-wrapper:hover .post-password-form .widget.contact-form .form-group input[type="submit"],
.post-password-form .widget.contact-form .form-group .th-pricebox-wrapper:hover input[type="submit"],
.th-pricebox-wrapper:hover .widget.contact-form .form-group figure.hover-type-text figcaption .actions input.action,
.widget.contact-form .form-group figure.hover-type-text figcaption .actions .th-pricebox-wrapper:hover input.action,
.th-pricebox-wrapper:hover figure.hover-type-text figcaption .actions .widget.contact-form .form-group input.action,
figure.hover-type-text figcaption .actions .widget.contact-form .form-group .th-pricebox-wrapper:hover input.action,
.th-pricebox-wrapper:hover .widget.widget_price_filter .price_slider_amount button.button,
.widget.widget_price_filter .price_slider_amount .th-pricebox-wrapper:hover button.button,
.th-pricebox-wrapper:hover .woocommerce div.product form.cart .button,
.woocommerce div.product form.cart .th-pricebox-wrapper:hover .button,
.th-pricebox-wrapper:hover .woocommerce #content div.product form.cart .button,
.woocommerce #content div.product form.cart .th-pricebox-wrapper:hover .button,
.th-pricebox-wrapper:hover .woocommerce-page div.product form.cart .button,
.woocommerce-page div.product form.cart .th-pricebox-wrapper:hover .button,
.th-pricebox-wrapper:hover .woocommerce-page #content div.product form.cart .button,
.woocommerce-page #content div.product form.cart .th-pricebox-wrapper:hover .button,
.th-pricebox-wrapper:hover .woocommerce a.button,
.woocommerce .th-pricebox-wrapper:hover a.button,
.th-pricebox-wrapper:hover .woocommerce button.button,
.woocommerce .th-pricebox-wrapper:hover button.button,
.th-pricebox-wrapper:hover .woocommerce input.button,
.woocommerce .th-pricebox-wrapper:hover input.button,
.th-pricebox-wrapper:hover .woocommerce #respond input#submitform,
.woocommerce #respond .th-pricebox-wrapper:hover input#submitform,
.th-pricebox-wrapper:hover .woocommerce #content input.button,
.woocommerce #content .th-pricebox-wrapper:hover input.button,
.th-pricebox-wrapper:hover .woocommerce-page a.button,
.woocommerce-page .th-pricebox-wrapper:hover a.button,
.th-pricebox-wrapper:hover .woocommerce-page button.button,
.woocommerce-page .th-pricebox-wrapper:hover button.button,
.th-pricebox-wrapper:hover .woocommerce-page input.button,
.woocommerce-page .th-pricebox-wrapper:hover input.button,
.th-pricebox-wrapper:hover .woocommerce-page #respond input#submitform,
.woocommerce-page #respond .th-pricebox-wrapper:hover input#submitform,
.th-pricebox-wrapper:hover .woocommerce-page #content input.button,
.woocommerce-page #content .th-pricebox-wrapper:hover input.button {
  color: #808080;
  background-color: transparent;
}

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .th-pricebox-wrapper {
    margin-bottom: 0px;
  }
}

/* Large devices (large desktops, 1200px and up) */

ul.sshare,
ul.social-profiles {
  margin: 0;
  padding: 0;
  max-width: 100%;
  list-style: none;
}

ul.sshare:before,
ul.sshare:after,
ul.social-profiles:before,
ul.social-profiles:after {
  content: " ";
  display: table;
}

ul.sshare:after,
ul.social-profiles:after {
  clear: both;
}

ul.sshare.count li.sshare-button,
ul.sshare.count li.like,
ul.social-profiles.count li.sshare-button,
ul.social-profiles.count li.like {
  height: 76px;
}

ul.sshare li.sshare-button,
ul.sshare li.like,
ul.social-profiles li.sshare-button,
ul.social-profiles li.like {
  position: relative;
  float: left;
  margin-right: 6px;
  padding-top: 9px;
  width: 49px;
  height: 38px;
  margin-bottom: 10px;
  color: #2a2a2a;
  text-align: center;
  background: #f7f7f7;
  cursor: pointer;
}

ul.sshare li.sshare-button:last-child,
ul.sshare li.like:last-child,
ul.social-profiles li.sshare-button:last-child,
ul.social-profiles li.like:last-child {
  margin-right: 0;
}

ul.sshare li.sshare-button a,
ul.sshare li.like a,
ul.social-profiles li.sshare-button a,
ul.social-profiles li.like a {
  transition: none;
  color: #2a2a2a;
}

ul.sshare li.sshare-button a:hover,
ul.sshare li.like a:hover,
ul.social-profiles li.sshare-button a:hover,
ul.social-profiles li.like a:hover {
  color: #ffffff;
}

ul.sshare li.sshare-button:hover,
ul.sshare li.like:hover,
ul.social-profiles li.sshare-button:hover,
ul.social-profiles li.like:hover {
  background: #27558b;
  color: #ffffff;
}

ul.sshare li.sshare-button:hover .sshare-count,
ul.sshare li.like:hover .sshare-count,
ul.social-profiles li.sshare-button:hover .sshare-count,
ul.social-profiles li.like:hover .sshare-count {
  color: #27558b;
}

ul.sshare li.sshare-button:hover a,
ul.sshare li.like:hover a,
ul.social-profiles li.sshare-button:hover a,
ul.social-profiles li.like:hover a {
  color: #ffffff;
}

ul.sshare li.sshare-button .sshare-count,
ul.sshare li.like .sshare-count,
ul.social-profiles li.sshare-button .sshare-count,
ul.social-profiles li.like .sshare-count {
  font-family: "Open Sans";
  position: absolute;
  left: 0;
  top: 38px;
  width: 49px;
  height: 38px;
  padding-top: 8px;
  background: #f7f7f7;
  color: #808080;
}

ul.social-profiles {
  display: inline-block;
  width: auto;
}

ul.social-profiles li.sshare-button {
  background: #27558b;
  color: #ffffff;
}

ul.social-profiles li.sshare-button a {
  color: #ffffff;
}

ul.social-profiles li.sshare-button:hover {
  color: #2a2a2a;
  background: #f7f7f7;
}

ul.social-profiles li.sshare-button:hover a {
  color: #2a2a2a;
}

.sshare-popup .sbutton {
  cursor: pointer;
}

.sshare-popup .spopup {
  position: absolute;
  z-index: 2;
  display: none;
  background: #ffffff;
  margin-top: 5px;
  padding: 20px 20px 10px;
}

.sshare-popup .spopup .stitle {
  float: left;
  margin: 9px 15px 0 0;
  color: #27558b;
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  font-width: 600;
}

.sshare-popup .spopup ul.sshare {
  float: right;
  display: inline-block;
  width: auto;
}

.sshare-popup .sseparator {
  margin: 15px 0 18px;
  border-bottom: solid 2px #f7f7f7;
}

.sshare-popup.sshare-popup-footer .spopup {
  margin-top: 10px;
  left: 0;
  background: transparent;
  padding: 0;
}

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

/* Large devices (large desktops, 1200px and up) */

[data-icon]:before,
.icon-gear:before,
.icon-like:before,
.icon-unlike:before {
  display: inline-block;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.icon-like:before {
  content: "\f08a";
}

.icon-unlike:before {
  content: "\f004";
}

.icon-gear:before {
  content: "\f013";
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

a.jm-post-like {
  font-family: "Open Sans";
  font-weight: normal;
  display: inline-block;
  width: auto;
  -moz-transition: all 0.3s ease-out 0.2s;
  -webkit-transition: all 0.3s ease-out 0.2s;
  -o-transition: all 0.3s ease-out 0.2s;
}

a.jm-post-like.liked {
  color: #adadad;
}

.jp-audio-player {
  display: table;
  width: 100%;
  margin-bottom: -30px;
  padding: 30px;
  background: #f7f7f7;
  color: #2a2a2a;
}

.jp-audio-player .jp-current-time {
  display: table-cell;
  vertical-align: middle;
  width: 50px;
}

.jp-audio-player .play-pause {
  display: table-cell;
  vertical-align: middle;
  width: 35px;
  padding-top: 1px;
  font-size: 22px;
  cursor: pointer;
}

.jp-audio-player .play-pause .jp-play:focus,
.jp-audio-player .play-pause .jp-play:active,
.jp-audio-player .play-pause .jp-play:focus {
  outline: none;
}

.jp-audio-player .play-pause .jp-pause:focus,
.jp-audio-player .play-pause .jp-pause:active,
.jp-audio-player .play-pause .jp-pause:focus {
  outline: none;
}

.jp-audio-player .seek-bar {
  display: table-cell;
  vertical-align: middle;
  padding-right: 22px;
  width: 595px;
  cursor: pointer;
}

.jp-audio-player .seek-bar .jp-seek-bar {
  background: #ffffff;
  height: 22px;
}

.jp-audio-player .seek-bar .jp-seek-bar .jp-play-bar {
  background: #808080;
  height: 22px;
}

.jp-audio-player .mute {
  display: table-cell;
  vertical-align: middle;
  width: 52px;
  font-size: 30px;
  margin-top: -5px;
  margin-bottom: -3px;
  outline: none;
  cursor: pointer;
}

.jp-audio-player .mute .jp-mute:focus,
.jp-audio-player .mute .jp-mute:active,
.jp-audio-player .mute .jp-mute:focus {
  outline: none;
}

.jp-audio-player .mute .jp-unmute:focus,
.jp-audio-player .mute .jp-unmute:active,
.jp-audio-player .mute .jp-unmute:focus {
  outline: none;
}

.jp-audio-player .volume-bar {
  display: table-cell;
  vertical-align: middle;
  width: 42px;
  min-width: 30px;
  cursor: pointer;
}

.jp-audio-player .volume-bar .jp-volume-bar {
  background: #ffffff;
  height: 22px;
}

.jp-audio-player .volume-bar .jp-volume-bar .jp-volume-bar-value {
  background: #808080;
  height: 22px;
}

.vc_element-container .collapsible_panel {
  margin-left: -10px;
  margin-right: -10px;
}

.collapsible_panel {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  margin-bottom: 3px;
}

.collapsible_panel .cp_title {
  padding: 0 50px 0 20px;
  cursor: pointer;
  position: relative;
}

.collapsible_panel .cp_title.collapsed:after {
  content: '\e604';
  opacity: 1;
  filter: alpha(opacity=100);
}

.collapsible_panel .cp_title.collapsed:hover:after {
  color: #27558b;
}

.collapsible_panel .cp_title span {
  display: table-cell;
  vertical-align: middle;
  color: #2a2a2a;
  padding-top: 10px;
  padding-bottom: 10px;
}

.collapsible_panel .cp_title:after {
  position: absolute;
  right: 20px;
  display: block;
  float: right;
  font-family: 'themesy';
  font-size: 17px;
  color: #2a2a2a;
  content: '\e603';
  opacity: 0.13;
  filter: alpha(opacity=13);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.collapsible_panel .cp_title:hover:after {
  color: #2a2a2a;
}

.collapsible_panel .cp_content {
  color: #808080;
  padding: 10px 20px 20px;
}

.collapsible_panel .cp_content.collapsing {
  transition: height 0.35s linear;
}

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

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

/* Large devices (large desktops, 1200px and up) */

.th-collage {
  margin-left: -10px;
  margin-right: -10px;
}

.th-collage .isotope {
  overflow: hidden;
}

.th-collage .isotope .box figure {
  margin: -1px;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  padding-bottom: 62%;
}

.th-collage .isotope .box figure img {
  width: 100%;
  height: 100%;
}

.th-collage .isotope .box figure .inner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.th-collage .isotope .box figure .inner-content .content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.th-collage .isotope .box figure .inner-content .content-wrapper .content {
  position: relative;
  width: auto;
  top: 50%;
  margin: 0 auto;
  display: inline-block;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.th-collage .isotope .box figure .inner-content .vc_element.vc_th_collage_item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.th-collage .isotope .grid-sizer {
  width: calc(100% - 2px);
}

.th-collage .isotope .box.col-1 {
  width: calc(100% - 2px);
  height: auto;
}

.th-collage .isotope .box.col-2 {
  width: calc(100% - 2px);
  height: auto;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .th-collage {
    margin-left: -10px;
    margin-right: -10px;
  }

  .th-collage .isotope .grid-sizer {
    width: calc(50% - 2px);
  }

  .th-collage .isotope .box.col-1 {
    width: calc(50% - 2px);
    height: auto;
  }

  .th-collage .isotope .box.col-2 {
    width: calc(100% - 2px);
    height: auto;
  }
}

@media (min-width: 1365px) {
  .th-collage .isotope .grid-sizer {
    width: calc(25% - 2px);
  }

  .th-collage .isotope .box.col-1 {
    width: calc(25% - 2px);
    height: auto;
  }

  .th-collage .isotope .box.col-2 {
    width: calc(50% - 2px);
    height: auto;
  }
}

.vc_th_magnifier_item {
  margin-left: 0px;
  margin-right: 0px;
  display: table;
  height: 100%;
  width: 100%;
  float: left;
}

.th-magnifier-control {
  margin-left: 0px;
  margin-right: 0px;
  display: table;
  height: 100%;
  width: 100%;
}

.th-magnifier-control .container-fluid {
  display: table-cell;
  vertical-align: middle;
  max-width: 100%;
}

.th-magnifier-control .box {
  margin: 0 auto;
  margin-bottom: 30px;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
}

.th-magnifier-control .box figure .front,
.th-magnifier-control .box figure .back {
  transition: opacity 1s ease-in-out;
}

.th-magnifier-control .box figure .front {
  opacity: 1;
  z-index: 6;
}

.th-magnifier-control .box figure .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 5;
}

.th-magnifier-control .box figure.hover-type-icons figcaption .actions .action {
  width: 49px;
  height: 49px;
}

.th-magnifier-control .box figure.hover-type-icons figcaption .actions .action:first-of-type {
  margin-right: 9px;
}

.th-magnifier-control .box figure.hover-type-icons figcaption .actions .action:after {
  width: 49px;
  height: 49px;
  font-size: 19px;
  padding-top: 15px;
}

.th-magnifier-control .box.fade {
  opacity: 1;
}

.th-magnifier-control .box.fade .front {
  opacity: 1;
}

.th-magnifier-control .box.fade.active .front {
  opacity: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.th-magnifier-control .box .inner-content {
  padding: 30px 35px 33px 35px;
  border-style: solid;
}

.th-magnifier-control .box .inner-content .icon {
  margin-bottom: 15px;
}

.th-magnifier-control .box .inner-content .title {
  margin-bottom: 15px;
}

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .th-magnifier-control {
    margin-left: 0px;
    margin-right: 0px;
  }

  .th-magnifier-control .box {
    margin: 0 auto;
    z-index: 11;
  }

  .th-magnifier-control .box.fade.active {
    z-index: 22;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  .th-magnifier-control .box .inner-content {
    padding: 30px 35px 33px 35px;
    border-style: solid;
  }

  .th-magnifier-control .box .inner-content .icon {
    margin-bottom: 15px;
  }

  .th-magnifier-control .box .inner-content .title {
    margin-bottom: 15px;
  }

  .th-magnifier-control .box.preload:nth-child(1) {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
  }

  .th-magnifier-control .box.preload:nth-child(2) {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
  }

  .th-magnifier-control .box.preload:nth-child(3) {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
  }

  .th-magnifier-control .box.preload:nth-child(4) {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
  }

  .th-magnifier-control .box.preload:nth-child(5) {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
  }

  .th-magnifier-control .box.preload:nth-child(6) {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
  }

  .th-magnifier-control .box.preload:nth-child(7) {
    animation-delay: 1.4s;
    -webkit-animation-delay: 1.4s;
  }

  .th-magnifier-control .box.preload:nth-child(8) {
    animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s;
  }

  .th-magnifier-control .box.preload:nth-child(9) {
    animation-delay: 1.8s;
    -webkit-animation-delay: 1.8s;
  }
}

/* Large devices (large desktops, 1200px and up) */

.promo-header-img {
  margin-bottom: 30px;
}

.promo-header {
  position: relative;
  overflow: hidden;
}

.promo-header .parallax-wrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}

.promo-header .zoom-out-wrapper {
  margin-left: -10px;
  margin-right: -10px;
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

@media only screen and (min-width: 1170px) {
  .promo-header .zoom-out-wrapper {
    margin-left: -10px;
    margin-right: -10px;
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
  }

  .promo-header .zoom-out-wrapper .image {
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
}

.promo-header .inner-content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.navbar-integrated .promo-header .inner-content {
  top: 96px;
  height: calc(100% - 96px);
}

.portfolio.shortcode .works_collage .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.works_collage {
  margin-left: 0;
  margin-right: 0;
}

.works_collage .controls .filter {
  padding-left: 0;
  padding-top: 0;
}

.works_collage .controls .filter > li {
  list-style-type: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #2a2a2a;
  padding: 0px 10px;
}

.works_collage .controls .filter > li:first-child {
  margin-left: 0;
}

.works_collage .controls .filter > li.active {
  text-decoration: none;
  color: #ffffff;
  background-color: #27558b;
}

.works_collage .controls .filter > li.active > a {
  color: #ffffff;
  background-color: #27558b;
}

.works_collage .controls .filter > li:hover,
.works_collage .controls .filter > li:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: #27558b;
}

.works_collage .controls .filter > li:hover > a,
.works_collage .controls .filter > li:focus > a {
  text-decoration: none;
  color: #ffffff;
  background-color: #27558b;
}

.works_collage .controls .filter .dropdown .dropdown-toggle {
  height: 30px;
  color: #2a2a2a;
  background-color: transparent;
  text-transform: capitalize;
}

.works_collage .controls .filter .dropdown .dropdown-toggle i {
  margin-left: 10px;
  font-size: 10px;
}

.works_collage .controls .filter .dropdown:hover,
.works_collage .controls .filter .dropdown:focus {
  text-decoration: none;
  color: #27558b;
  background-color: transparent;
}

.works_collage .controls .filter .dropdown:hover .dropdown-toggle,
.works_collage .controls .filter .dropdown:focus .dropdown-toggle {
  text-decoration: none;
  color: #27558b;
  background-color: transparent;
}

.works_collage .controls .filter .dropdown .dropdown-menu {
  top: 96%;
}

.works_collage .controls .filter.visible-xs-block .dropdown .dropdown-toggle {
  display: block;
  cursor: pointer;
}

.works_collage .controls .sort {
  font-family: "Open Sans";
  padding-left: 10px;
}

.works_collage .controls .sort .dropdown .dropdown-toggle {
  height: 30px;
  color: #2a2a2a;
}

.works_collage .controls .sort .dropdown .dropdown-toggle i {
  margin-left: 10px;
  font-size: 10px;
}

.works_collage .controls .sort .dropdown .dropdown-menu {
  top: 100%;
}

.works_collage .controls .sort .dropdown:hover,
.works_collage .controls .sort .dropdown:focus {
  text-decoration: none;
  color: #27558b;
  background-color: transparent;
}

.works_collage .controls .sort .dropdown:hover .dropdown-toggle,
.works_collage .controls .sort .dropdown:focus .dropdown-toggle {
  text-decoration: none;
  color: #27558b;
  background-color: transparent;
}

.works_collage .controls .sort li {
  list-style-type: none;
  margin-left: 0;
  margin-right: 0;
  letter-spacing: 1px;
  cursor: pointer;
}

.works_collage .controls .sort li .fa {
  margin-left: 10px;
  position: relative;
  top: 2px;
  font-size: 21px;
}

.works_collage .controls .sort li.active {
  color: #27558b;
}

.works_collage .elements {
  margin-left: -10px;
  margin-right: -10px;
  transition: height 0.4s ease-out;
}

.works_collage .elements .item {
  float: left;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  height: auto;
}

.works_collage .elements .item.new_item {
  opacity: 0 !important;
}

.works_collage .elements .item.is_filtered_hidden {
  display: none !important;
}

.works_collage .elements .item > .title {
  margin-top: 36px;
  margin-bottom: 12px;
  text-transform: none;
  text-align: center;
  font-size: 14px;
  font-family: "Open Sans";
  font-weight: 700;
  letter-spacing: 0.4px;
  word-spacing: 1px;
}

.works_collage .elements .item > .subtitle {
  margin-bottom: 26px;
  font-style: italic;
  text-align: center;
  color: #27558b;
}

.works_collage .elements .item > .subtitle span {
  color: #27558b;
  cursor: pointer;
}

.works_collage .elements .item figure figcaption > .title,
.works_collage .elements .item figure figcaption > .info-box > .title {
  margin-top: 54px;
  margin-bottom: 16px;
  text-transform: none;
  text-align: center;
  font-size: 14px;
  font-family: "Open Sans";
  font-weight: 700;
  letter-spacing: 0.4px;
  word-spacing: 1px;
  color: #ffffff;
}

.works_collage .elements .item figure figcaption > .subtitle,
.works_collage .elements .item figure figcaption > .info-box > .subtitle {
  font-size: 13px;
  font-style: italic;
  text-align: center;
  color: #ffffff;
}

.works_collage .elements .item figure figcaption > .subtitle span,
.works_collage .elements .item figure figcaption > .info-box > .subtitle span {
  color: #ffffff;
  cursor: pointer;
}

.works_collage .elements .item figure figcaption .info-box,
.works_collage .elements .item figure figcaption > .info-box .info-box {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.works_collage .elements .item figure figcaption .info-box > .title,
.works_collage .elements .item figure figcaption .info-box > .subtitle,
.works_collage .elements .item figure figcaption > .info-box .info-box > .title,
.works_collage .elements .item figure figcaption > .info-box .info-box > .subtitle {
  margin-top: 0;
  margin-bottom: 16px;
  color: #ffffff;
}

.works_collage .elements .item figure figcaption .info-box > .title span,
.works_collage .elements .item figure figcaption .info-box > .subtitle span,
.works_collage .elements .item figure figcaption > .info-box .info-box > .title span,
.works_collage .elements .item figure figcaption > .info-box .info-box > .subtitle span {
  color: #ffffff;
  cursor: pointer;
}

.works_collage .elements .item figure figcaption .info-box .actions,
.works_collage .elements .item figure figcaption > .info-box .info-box .actions {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.works_collage .show-more {
  margin-top: 20px;
}

.works_collage .show-more.no-text {
  margin-top: 50px;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .works_collage .elements .item {
    width: 50%;
    padding-bottom: 0;
  }

  .works_collage .elements.columns-1 .item {
    width: 100%;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .works_collage .elements.columns-1 .item {
    width: 100%;
  }

  .works_collage .elements.columns-2 .item {
    width: 50%;
    margin-bottom: 34px;
  }

  .works_collage .elements.columns-3 .item {
    width: 33.3333%;
  }

  .works_collage .elements.columns-4 .item {
    width: 25%;
  }

  .works_collage .elements.columns-5 .item {
    width: 20%;
  }

  .works_collage .elements.columns-6 .item {
    width: 16.6666%;
  }
}

/* Large devices (large desktops, 1200px and up) */

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .floating_aside .fa_aside {
    position: relative;
  }

  .floating_aside .fa_aside .fa_floating {
    position: absolute;
    top: 0;
    left: 0;
    transition: top 0.2s ease 0s;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.tos-wrapper *:before,
.tos-wrapper *:after {
  box-sizing: content-box;
}

.tos-wrapper .tos-uibg {
  background: transparent;
}

.tos-wrapper .tos-pagination.tos-bullets a {
  opacity: 0.2;
  filter: alpha(opacity=20);
  background-color: #fff;
}

.tos-wrapper .tos-pagination.tos-bullets a.tos-selected {
  opacity: 0.9;
  filter: alpha(opacity=90);
  background-color: #fff;
}

.tos-wrapper .tos-slider .tos-slide.tos-html {
  padding: 20px 60px 130px !important;
}

.tos-wrapper .tos-slider .tos-slide.tos-html > .tos-html {
  padding: 30px;
  background: #ffffff;
  color: #2a2a2a;
}

.admin-bar .tos-wrapper .tos-close {
  top: 40px;
}

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .tos-wrapper .tos-slider .tos-slide.tos-html {
    padding: 20px 80px 80px !important;
  }

  .tos-wrapper .tos-slider .tos-slide.tos-html > .tos-html {
    padding: 40px;
  }
}

#search-popup {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1005;
  width: 100%;
  background: #f7f7f7;
  overflow: hidden;
  height: 120px;
  max-height: 0;
  transition: max-height 0.4s ease;
}

#search-popup.fixed {
  position: fixed;
}

#search-popup .container,
#search-popup .post-password-form {
  padding-top: 40px;
  padding-bottom: 40px;
  height: 120px;
}

#search-popup input {
  margin-top: -5px;
  border: 0;
  width: 100%;
  background: transparent;
  color: #2a2a2a;
  font-size: 20px;
  line-height: 40px;
  font-weight: bold;
  outline: none;
}

#search-popup .title {
  float: right;
  margin: 0 30px 0 22px;
  font-weight: bold;
  text-transform: uppercase;
  color: #2a2a2a;
  text-align: right;
  line-height: 39px;
}

#search-popup button {
  float: right;
}

#search-popup button i {
  margin-left: 8px;
}

#search-popup .close-popup {
  float: right;
  position: relative;
  margin-left: 30px;
  width: 12px;
  height: 39px;
  cursor: pointer;
}

#search-popup .close-popup:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

#search-popup .close-popup:before,
#search-popup .close-popup:after {
  box-sizing: content-box;
  content: '';
  display: block;
  margin: -5px;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin-top: -4px;
  margin-left: 0;
  margin-right: 0;
  border-style: solid;
  border-color: #2a2a2a;
}

#search-popup .close-popup:before {
  border-width: 0 0 3px 3px;
  left: 50%;
}

#search-popup .close-popup:after {
  border-width: 3px 3px 0 0;
  right: 50%;
}

body.popup-open.search-popup #search-popup {
  max-height: 120px;
}

body.popup-open.search-popup .body-wrapper {
  margin-top: 120px;
}

/* Just to navbar collapsed */

@media (max-width: 991px) {
  #search-popup {
    position: absolute !important;
  }

  #search-popup button {
    padding-left: 10px;
    padding-right: 10px;
  }

  #search-popup .close-popup {
    display: none;
  }
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  #search-popup input {
    font-size: 28px;
    font-weight: bold;
    line-height: 36px;
  }

  body.navbar-left #search-popup {
    width: calc(100% - 260px);
    left: 260px;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  #search-popup input {
    font-size: 28px;
    line-height: 36px;
  }

  body.admin-bar #search-popup.fixed {
    top: 32px;
  }

  body.popup-open .navbar-chamaleon.navbar-fixed-top,
  body.popup-open.navbar-integrated .navbar-chamaleon.no-headhesive,
  body.popup-open.navbar-integrated .navbar-chamaleon.navbar-static-top {
    margin-top: 120px;
  }
}

#share-popup {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1005;
  width: 100%;
  background: #f7f7f7;
  overflow: hidden;
  height: 120px;
  max-height: 0;
  transition: max-height 0.4s ease;
}

#share-popup.fixed {
  position: fixed;
}

#share-popup.counter .sshare .sshare-button {
  height: 38px;
}

#share-popup .container,
#share-popup .post-password-form {
  padding-top: 14px;
  padding-bottom: 40px;
  height: 120px;
}

#share-popup .shares,
#share-popup .profiles {
  overflow: hidden;
  max-height: 47px;
}

#share-popup .sshare .sshare-button,
#share-popup .social-profiles .sshare-button {
  width: 47px;
}

#share-popup .sshare .sshare-button .sshare-count {
  display: none;
  width: 47px;
}

#share-popup .social-profiles {
  display: block;
}

#share-popup .title {
  float: left;
  margin: 0 21px 9px 0;
  font-weight: bold;
  text-transform: uppercase;
  color: #2a2a2a;
  line-height: 38px;
}

#share-popup .close-popup {
  float: right;
  position: relative;
  margin-left: 30px;
  width: 12px;
  height: 39px;
  cursor: pointer;
}

#share-popup .close-popup:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

#share-popup .close-popup:before,
#share-popup .close-popup:after {
  box-sizing: content-box;
  content: '';
  display: block;
  margin: -5px;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin-top: -4px;
  margin-left: 0;
  margin-right: 0;
  border-style: solid;
  border-color: #2a2a2a;
}

#share-popup .close-popup:before {
  border-width: 0 0 3px 3px;
  left: 50%;
}

#share-popup .close-popup:after {
  border-width: 3px 3px 0 0;
  right: 50%;
}

body.popup-open.share-popup #share-popup {
  max-height: 120px;
}

body.popup-open.share-popup .body-wrapper {
  margin-top: 120px;
}

/* Just to navbar collapsed */

@media (max-width: 991px) {
  #share-popup {
    position: absolute !important;
  }

  #share-popup .close-popup {
    display: none;
  }
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  #share-popup.counter .container,
  #share-popup.counter .post-password-form {
    padding-top: 0;
  }

  #share-popup.counter .sshare .sshare-button {
    height: 76px;
  }

  #share-popup .shares {
    width: auto;
    max-height: none;
  }

  #share-popup .profiles {
    float: right;
    width: auto;
    max-height: none;
  }

  #share-popup .title {
    float: none;
    margin: 0;
  }

  #share-popup .profiles .title {
    text-align: right;
  }

  #share-popup .sshare {
    float: none;
  }

  #share-popup .sshare .sshare-button .sshare-count {
    display: block;
  }

  #share-popup .social-profiles {
    float: right;
  }

  body.navbar-left #share-popup {
    width: calc(100% - 260px);
    left: 260px;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  #share-popup.counter .container,
  #share-popup.counter .post-password-form {
    padding-top: 24px;
  }

  #share-popup .container,
  #share-popup .post-password-form {
    padding-top: 40px;
  }

  #share-popup .shares {
    width: auto;
  }

  #share-popup .profiles {
    float: right;
    width: auto;
  }

  #share-popup .sshare {
    float: left;
  }

  #share-popup .title {
    float: left;
    margin: 0 21px 0 0;
    text-align: right;
  }

  #share-popup .profiles .title {
    float: right;
  }

  body.admin-bar #share-popup.fixed {
    top: 32px;
  }
}

.parallax-fixed {
  position: relative;
}

.parallax-fixed .parallax-fixed-clipper {
  position: absolute;
  clip: rect(auto, auto, auto, auto);
  width: 100%;
  height: 100%;
}

.parallax-fixed .parallax-fixed-clipper .parallax-fixed-inner {
  background-position: 50% 50%;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  margin-left: 10px;
  z-index: 0;
}

.parallax-fixed.safari .parallax-fixed-clipper,
.parallax-fixed.ie .parallax-fixed-clipper {
  clip: inherit;
}

.parallax-fixed.safari .parallax-fixed-clipper .parallax-fixed-inner,
.parallax-fixed.ie .parallax-fixed-clipper .parallax-fixed-inner {
  position: static;
  background-attachment: fixed;
}

.aligncenter {
  display: block;
  margin: 20px auto;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.bypostauthor {
  display: block;
}

.th-adaptative-image > .title {
  margin-top: 36px;
  margin-bottom: 12px;
  text-transform: none;
  text-align: center;
  font-size: 14px;
  font-family: "Open Sans";
  font-weight: 700;
  letter-spacing: 0.4px;
  word-spacing: 1px;
}

.th-adaptative-image > .subtitle {
  margin-bottom: 26px;
  font-style: italic;
  text-align: center;
  color: #27558b;
}

.th-adaptative-image > .subtitle span {
  color: #27558b;
  cursor: pointer;
}

.th-adaptative-image figure .inner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.th-adaptative-image figure .inner-content .content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.th-adaptative-image figure .inner-content .content-wrapper .content {
  position: relative;
  width: auto;
  top: 50%;
  margin: 0 auto;
  display: inline-block;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.th-adaptative-image figure figcaption > .title,
.th-adaptative-image figure figcaption > .info-box > .title {
  margin-top: 54px;
  margin-bottom: 16px;
  text-transform: none;
  text-align: center;
  font-size: 14px;
  font-family: "Open Sans";
  font-weight: 700;
  letter-spacing: 0.4px;
  word-spacing: 1px;
  color: #ffffff;
}

.th-adaptative-image figure figcaption > .subtitle,
.th-adaptative-image figure figcaption > .info-box > .subtitle {
  font-size: 13px;
  font-style: italic;
  text-align: center;
  color: #ffffff;
}

.th-adaptative-image figure figcaption > .subtitle span,
.th-adaptative-image figure figcaption > .info-box > .subtitle span {
  color: #ffffff;
  cursor: pointer;
}

.th-adaptative-image figure figcaption .info-box,
.th-adaptative-image figure figcaption > .info-box .info-box {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.th-adaptative-image figure figcaption .info-box > .title,
.th-adaptative-image figure figcaption .info-box > .subtitle,
.th-adaptative-image figure figcaption > .info-box .info-box > .title,
.th-adaptative-image figure figcaption > .info-box .info-box > .subtitle {
  margin-top: 0;
  margin-bottom: 16px;
  color: #ffffff;
}

.th-adaptative-image figure figcaption .info-box > .title span,
.th-adaptative-image figure figcaption .info-box > .subtitle span,
.th-adaptative-image figure figcaption > .info-box .info-box > .title span,
.th-adaptative-image figure figcaption > .info-box .info-box > .subtitle span {
  color: #ffffff;
  cursor: pointer;
}

.th-adaptative-image figure figcaption .info-box .actions,
.th-adaptative-image figure figcaption > .info-box .info-box .actions {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.navbar-chamaleon,
.navbar-biglogo,
.th-menu {
  transition: margin-top 0.4s ease, height 0.4s ease, min-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
  margin-bottom: 0px;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  word-spacing: 0.2px;
  border-width: 0 0 1px 0;
}

.navbar-chamaleon.safarifontfix a,
.navbar-biglogo.safarifontfix a,
.th-menu.safarifontfix a {
  -webkit-text-stroke: 0.5px !important;
}

.navbar-chamaleon .navbar-header,
.navbar-biglogo .navbar-header,
.th-menu .navbar-header {
  transition: margin-top 0.4s ease, height 0.4s ease, min-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
}

.navbar-chamaleon .navbar-header .navbar-toggle,
.navbar-biglogo .navbar-header .navbar-toggle,
.th-menu .navbar-header .navbar-toggle {
  border-color: #2a2a2a;
  top: 50%;
  z-index: 10;
  margin-right: 15px;
  margin-top: -17px;
}

.navbar-chamaleon .navbar-header .navbar-toggle:hover,
.navbar-chamaleon .navbar-header .navbar-toggle:focus,
.navbar-biglogo .navbar-header .navbar-toggle:hover,
.navbar-biglogo .navbar-header .navbar-toggle:focus,
.th-menu .navbar-header .navbar-toggle:hover,
.th-menu .navbar-header .navbar-toggle:focus {
  background-color: #f7f7f7;
}

.navbar-chamaleon .navbar-header .navbar-toggle .icon-bar,
.navbar-biglogo .navbar-header .navbar-toggle .icon-bar,
.th-menu .navbar-header .navbar-toggle .icon-bar {
  background-color: #2a2a2a;
}

.navbar-chamaleon .navbar-collapse,
.navbar-biglogo .navbar-collapse,
.th-menu .navbar-collapse {
  position: absolute;
  top: 100%;
  z-index: 1002;
  transition: none;
  border: none;
  max-height: none;
  padding-bottom: 20px;
  width: 100%;
  background-image: none !important;
  box-shadow: none;
}

.navbar-chamaleon .navbar-collapse.collapsing,
.navbar-biglogo .navbar-collapse.collapsing,
.th-menu .navbar-collapse.collapsing {
  height: 0;
  transition: height 0.35s ease;
}

.navbar-chamaleon .navbar-collapse .navbar-indicator,
.navbar-biglogo .navbar-collapse .navbar-indicator,
.th-menu .navbar-collapse .navbar-indicator {
  display: none;
}

.navbar-chamaleon .navbar-collapse .navbar-nav,
.navbar-biglogo .navbar-collapse .navbar-nav,
.th-menu .navbar-collapse .navbar-nav {
  transition: none;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item > a,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item > a,
.th-menu .navbar-collapse .navbar-nav > .menu-item > a {
  padding: 15px 10px;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item > a:hover,
.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item > a:focus,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item > a:hover,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item > a:focus,
.th-menu .navbar-collapse .navbar-nav > .menu-item > a:hover,
.th-menu .navbar-collapse .navbar-nav > .menu-item > a:focus {
  background-color: transparent;
  border-color: #27558b;
  color: #27558b;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.active a,
.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.current-menu-ancestor a,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.active a,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.current-menu-ancestor a,
.th-menu .navbar-collapse .navbar-nav > .menu-item.active a,
.th-menu .navbar-collapse .navbar-nav > .menu-item.current-menu-ancestor a {
  border-color: #27558b;
  color: #27558b;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.current-popup a,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.current-popup a,
.th-menu .navbar-collapse .navbar-nav > .menu-item.current-popup a {
  color: #27558b;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.share > a > .th-icon,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.share > a > .th-icon,
.th-menu .navbar-collapse .navbar-nav > .menu-item.share > a > .th-icon {
  font-size: 11px;
}

.navbar-chamaleon .navbar-collapse .dropdown .dropdown-menu,
.navbar-biglogo .navbar-collapse .dropdown .dropdown-menu,
.th-menu .navbar-collapse .dropdown .dropdown-menu {
  padding: 0;
  width: 100%;
}

.navbar-chamaleon .navbar-collapse .dropdown .dropdown-menu .menu-item,
.navbar-biglogo .navbar-collapse .dropdown .dropdown-menu .menu-item,
.th-menu .navbar-collapse .dropdown .dropdown-menu .menu-item {
  width: auto;
}

.navbar-chamaleon .navbar-collapse .dropdown .dropdown-menu .menu-item a,
.navbar-biglogo .navbar-collapse .dropdown .dropdown-menu .menu-item a,
.th-menu .navbar-collapse .dropdown .dropdown-menu .menu-item a {
  width: auto;
}

.navbar-chamaleon .navbar-collapse .dropdown .dropdown-menu .menu-item a:after,
.navbar-biglogo .navbar-collapse .dropdown .dropdown-menu .menu-item a:after,
.th-menu .navbar-collapse .dropdown .dropdown-menu .menu-item a:after {
  top: auto;
}

.navbar-chamaleon .navbar-collapse .dropdown .dropdown-menu .dropdown-menu > li > a,
.navbar-biglogo .navbar-collapse .dropdown .dropdown-menu .dropdown-menu > li > a,
.th-menu .navbar-collapse .dropdown .dropdown-menu .dropdown-menu > li > a {
  padding-left: 60px;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.overflowaded,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.overflowaded,
.th-menu .navbar-collapse .navbar-nav > .menu-item.overflowaded {
  min-width: 40px;
  text-align: center;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .counter,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .counter,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .counter {
  position: relative;
  margin-left: 5px;
  padding: 0 4px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  background: #27558b;
  color: #ffffff;
  font-family: 'Open Sans';
  font-size: 11px;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .counter:before,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .counter:before,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .counter:before {
  position: absolute;
  top: 0;
  left: -3px;
  content: '';
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 4px solid #27558b;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu {
  padding: 0;
  width: 405px !important;
  color: #2a2a2a;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty {
  border-bottom: solid 6px #27558b;
  padding: 33px;
  width: 100%;
  text-align: center;
  text-transform: none;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty a,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty a,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty a {
  display: inline;
  padding: 0;
  width: auto;
  background: transparent;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty a:after,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty a:after,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty a:after {
  display: none;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty i,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty i,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-empty i {
  color: #27558b;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper {
  width: 100%;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper a,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper a,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper a {
  display: inline;
  padding: 0;
  width: auto;
  background: transparent;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper a:after,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper a:after,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper a:after {
  display: none;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport {
  max-height: 543px;
  overflow-x: hidden;
  overflow-y: auto;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li {
  float: left;
  border-bottom: solid 1px rgba(189, 189, 189, 0.64);
  padding: 33px;
  width: 100%;
  height: 136px;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:before,
.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:after,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:before,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:after,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:before,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:after {
  content: " ";
  display: table;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:after,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:after,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:after {
  clear: both;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:last-of-type,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:last-of-type,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li:last-of-type {
  border-bottom: none;
  height: 135px;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .remove,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .remove,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .remove {
  float: left;
  margin-top: 17px;
  color: #27558b;
  font-size: 30px;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .remove:hover,
.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .remove:focus,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .remove:hover,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .remove:focus,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .remove:hover,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .remove:focus {
  color: #808080;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .description img,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .description img,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .description img {
  float: right;
  margin-left: 28px;
  width: 100%;
  height: 100%;
  max-width: 66px;
  max-height: 80px;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .description .info,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .description .info,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .description .info {
  float: right;
  padding-top: 12px;
  width: 190px;
  height: 70px;
  text-align: right;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .description .info .price,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .description .info .price,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .product-viewport ul.product-list li .description .info .price {
  color: #27558b;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total {
  padding: 30px 33px;
  border-top: solid 1px rgba(189, 189, 189, 0.64);
  text-transform: none;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total:before,
.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total:after,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total:before,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total:after,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total:before,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total:after {
  content: " ";
  display: table;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total:after,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total:after,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total:after {
  clear: both;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total .empty a,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total .empty a,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total .empty a {
  color: #808080;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total .empty a:hover,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total .empty a:hover,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total .empty a:hover {
  color: #27558b;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total .subtotal a,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total .subtotal a,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total .subtotal a {
  font-size: 13px;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total span,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total span,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .total span {
  color: #27558b;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions {
  border-top: solid 1px rgba(189, 189, 189, 0.64);
  padding: 30px 33px;
  background: #27558b;
  text-align: left;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a {
  display: inline-block;
  border: solid 1px #ffffff;
  padding: 15px 5px;
  color: #ffffff;
  font-size: 13px;
  width: 160px;
  transition: color 0.4s ease, background 0.4s ease;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:last-of-type,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:last-of-type,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:last-of-type {
  float: right;
  width: 160px;
}

.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:hover,
.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:focus,
.navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:active,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:hover,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:focus,
.navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:active,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:hover,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:focus,
.th-menu .navbar-collapse .navbar-nav > .menu-item.cart.dropdown .dropdown-menu li.cart-wrapper .actions a:active {
  color: #27558b;
  background: #ffffff;
}

.navbar-chamaleon {
  z-index: 1030;
  height: 96px;
  min-height: 60px;
}

.navbar-chamaleon.shrink {
  min-height: 60px;
  height: 60px;
}

.navbar-chamaleon.shrink .navbar-header,
.navbar-chamaleon.shrink .navbar-header .navbar-brand {
  height: 59px;
}

.navbar-chamaleon.shrink .navbar-collapse .navbar-indicator,
.navbar-chamaleon.shrink .navbar-collapse .navbar-nav > .menu-item > a:before {
  opacity: 0 !important;
}

.navbar-chamaleon.navbar-fixed-bottom {
  border-width: 1px 0 0;
}

.navbar-chamaleon .navbar-header {
  height: 96px;
  min-height: 60px;
}

.navbar-chamaleon .navbar-header .navbar-brand {
  display: table;
  position: absolute;
  width: 100%;
  height: 96px;
  min-height: 60px;
  transition: margin-top 0.4s ease, height 0.4s ease, min-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
  padding: 0 10px;
}

.navbar-chamaleon .navbar-header .navbar-brand a {
  display: table-cell;
  vertical-align: middle;
  padding: 0;
  outline: 0 none;
  transition: margin-top 0.4s ease, height 0.4s ease, min-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
}

.navbar-chamaleon .navbar-header .navbar-brand a .logo {
  max-height: 80px;
  width: auto;
}

.navbar-chamaleon .navbar-header .navbar-brand:hover,
.navbar-chamaleon .navbar-header .navbar-brand:focus {
  outline: 0;
  color: #27558b;
}

.navbar-chamaleon .navbar-header .navbar-brand .imago {
  display: none;
  width: auto;
  max-height: 40px;
}

.navbar-chamaleon .container,
.navbar-chamaleon .post-password-form {
  margin-top: 0;
  transition: margin-top 0.4s ease, height 0.4s ease, min-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
}

.navbar-biglogo {
  border: 0 none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
}

.navbar-biglogo .parallax-wrapper {
  position: relative;
  overflow: visible;
}

.navbar-biglogo .parallax-wrapper .dzsparallaxer {
  position: absolute;
  width: 100% !important;
  height: 399px;
}

.navbar-biglogo .container,
.navbar-biglogo .post-password-form {
  height: 399px;
  position: relative;
}

.navbar-biglogo .container .navbar-header,
.navbar-biglogo .post-password-form .navbar-header {
  overflow: hidden;
  position: relative;
  height: calc(100% - 41px);
}

.navbar-biglogo .container .navbar-header .navbar-toggle,
.navbar-biglogo .post-password-form .navbar-header .navbar-toggle {
  margin: 0;
  top: 20px;
  right: 20px;
}

.navbar-biglogo .container .navbar-header .navbar-brand,
.navbar-biglogo .post-password-form .navbar-header .navbar-brand {
  position: absolute;
  height: auto !important;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: margin-top 0.4s ease, height 0.4s ease, min-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 16px;
  margin: auto;
}

.navbar-biglogo .container .navbar-header .navbar-brand a,
.navbar-biglogo .post-password-form .navbar-header .navbar-brand a {
  height: auto;
}

.navbar-biglogo .container .navbar-header .navbar-brand a .logo,
.navbar-biglogo .post-password-form .navbar-header .navbar-brand a .logo {
  max-width: 90%;
  max-height: none;
}

/* Just to navbar collapsed */

@media (max-width: 991px) {
  .body-wrapper .page-container {
    padding-top: 0 !important;
  }

  .navbar-chamaleon .navbar-collapse,
  .navbar-biglogo .navbar-collapse,
  .th-menu .navbar-collapse {
    border-top: solid 1px rgba(0, 0, 0, 0.14);
    border-bottom: solid 1px rgba(0, 0, 0, 0.14);
    padding-top: 7px;
    padding-bottom: 7px;
    background: #ffffff;
  }

  .navbar-chamaleon .navbar-collapse .container,
  .navbar-chamaleon .navbar-collapse .post-password-form,
  .navbar-biglogo .navbar-collapse .container,
  .navbar-biglogo .navbar-collapse .post-password-form,
  .th-menu .navbar-collapse .container,
  .th-menu .navbar-collapse .post-password-form {
    padding: 0;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav,
  .navbar-biglogo .navbar-collapse .navbar-nav,
  .th-menu .navbar-collapse .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.search .visible-xs-inline,
  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.share .visible-xs-inline,
  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart .visible-xs-inline,
  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.search .visible-xs-inline,
  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.share .visible-xs-inline,
  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart .visible-xs-inline,
  .th-menu .navbar-collapse .navbar-nav > .menu-item.search .visible-xs-inline,
  .th-menu .navbar-collapse .navbar-nav > .menu-item.share .visible-xs-inline,
  .th-menu .navbar-collapse .navbar-nav > .menu-item.cart .visible-xs-inline {
    display: inline !important;
    padding-right: 8px;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item > a,
  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item > a,
  .th-menu .navbar-collapse .navbar-nav > .menu-item > a {
    padding-left: 20px;
    padding-right: 60px;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item > a:after,
  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item > a:after,
  .th-menu .navbar-collapse .navbar-nav > .menu-item > a:after {
    position: absolute;
    font-family: 'themesy';
    top: calc(50% - 10px);
    right: 20px;
    content: "\e630";
    background: none !important;
  }

  .navbar-chamaleon .navbar-collapse .dropdown.open .dropdown-menu,
  .navbar-biglogo .navbar-collapse .dropdown.open .dropdown-menu,
  .th-menu .navbar-collapse .dropdown.open .dropdown-menu {
    -webkit-animation: none;
    animation: none;
  }

  .navbar-chamaleon .navbar-collapse .dropdown .dropdown-menu,
  .navbar-biglogo .navbar-collapse .dropdown .dropdown-menu,
  .th-menu .navbar-collapse .dropdown .dropdown-menu {
    padding: 0;
  }

  .navbar-chamaleon .navbar-collapse .dropdown .dropdown-menu .menu-item,
  .navbar-biglogo .navbar-collapse .dropdown .dropdown-menu .menu-item,
  .th-menu .navbar-collapse .dropdown .dropdown-menu .menu-item {
    margin: 0;
    min-height: 0;
  }

  .navbar-chamaleon .navbar-collapse .dropdown .dropdown-menu .menu-item a,
  .navbar-biglogo .navbar-collapse .dropdown .dropdown-menu .menu-item a,
  .th-menu .navbar-collapse .dropdown .dropdown-menu .menu-item a {
    padding: 15px 60px 15px 40px;
  }

  .navbar-chamaleon .navbar-collapse .dropdown .dropdown-menu .menu-item .dropdown-menu > li > a,
  .navbar-biglogo .navbar-collapse .dropdown .dropdown-menu .menu-item .dropdown-menu > li > a,
  .th-menu .navbar-collapse .dropdown .dropdown-menu .menu-item .dropdown-menu > li > a {
    padding-left: 60px;
  }

  .navbar-chamaleon .navbar-header .navbar-brand a .logo,
  .navbar-biglogo .navbar-header .navbar-brand a .logo,
  .th-menu .navbar-header .navbar-brand a .logo {
    max-width: 100%;
    max-height: 80px;
  }

  .navbar-chamaleon {
    position: relative;
    top: 0;
    left: 0;
  }

  .navbar-chamaleon .container,
  .navbar-chamaleon .post-password-form {
    width: 100%;
  }

  .navbar-chamaleon .navbar-header .navbar-brand {
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    width: auto;
  }

  .navbar-chamaleon .navbar-header .navbar-brand a {
    display: block;
  }

  .navbar-chamaleon .navbar-header .navbar-brand a .logo {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: calc(100% - 110px);
  }

  .navbar-biglogo .navbar-header .navbar-brand a .logo {
    max-width: none;
  }

  .th-menu .navbar-collapse {
    top: 25px;
    margin: 0px -20px;
    width: calc(100% + 20px);
    border: none;
  }

  .th-menu .navbar-collapse .navbar-nav > .dropdown.open > a {
    background: transparent !important;
  }
}

.admin-bar .navbar-chamaleon.headhesive {
  display: none;
}

.navbar-chamaleon.headhesive {
  display: none;
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  nav .container,
  nav .post-password-form,
  #search-popup .container,
  #search-popup .post-password-form,
  #share-popup .container,
  #share-popup .post-password-form {
    width: 100%;
  }
}

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .navbar-nav {
    z-index: 1002;
  }

  .navbar-nav.navbar-left {
    float: left;
  }

  .navbar-nav.navbar-right {
    float: right;
  }

  .navbar-nav.navbar-center {
    width: 100%;
    text-align: center;
  }

  .navbar-nav.navbar-center > .menu-item {
    float: none;
    display: inline-block;
  }

  body.navbar-integrated .navbar-chamaleon {
    position: absolute;
    top: 0;
    width: 100%;
  }

  body.navbar-integrated .navbar-chamaleon.navbar-fixed-top {
    position: fixed;
  }

  body.navbar-integrated .navbar-chamaleon.navbar-static-top,
  body.navbar-integrated .navbar-chamaleon.no-headhesive {
    background: transparent !important;
  }

  .navbar-chamaleon .navbar-collapse,
  .navbar-biglogo .navbar-collapse,
  .th-menu .navbar-collapse {
    background: transparent !important;
  }

  .navbar-chamaleon.navbar-indicator-follow .navbar-collapse .navbar-indicator,
  .navbar-biglogo.navbar-indicator-follow .navbar-collapse .navbar-indicator,
  .th-menu.navbar-indicator-follow .navbar-collapse .navbar-indicator {
    display: block;
    content: '';
    position: absolute;
    z-index: 1001;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: #27558b;
    opacity: 1;
    filter: alpha(opacity=100);
  }

  .navbar-chamaleon.navbar-indicator-follow .navbar-collapse .navbar-indicator.ready,
  .navbar-biglogo.navbar-indicator-follow .navbar-collapse .navbar-indicator.ready,
  .th-menu.navbar-indicator-follow .navbar-collapse .navbar-indicator.ready {
    transition: width 0.2s ease 0.1s, left 0.2s ease 0.1s;
  }

  .navbar-chamaleon.navbar-indicator-follow .navbar-collapse .navbar-nav > .menu-item > a:before,
  .navbar-biglogo.navbar-indicator-follow .navbar-collapse .navbar-nav > .menu-item > a:before,
  .th-menu.navbar-indicator-follow .navbar-collapse .navbar-nav > .menu-item > a:before {
    display: block;
    content: '';
    position: absolute;
    z-index: 1001;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent !important;
  }

  .navbar-chamaleon.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item > a:before,
  .navbar-biglogo.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item > a:before,
  .th-menu.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item > a:before {
    display: block;
    content: '';
    position: absolute;
    z-index: 1001;
    bottom: -1px;
    left: 0;
    margin: 0 0 0 3px;
    width: calc(100% - 7px);
    height: 0;
    background: #27558b;
    opacity: 1;
    filter: alpha(opacity=100);
    transition: bottom 0.5s ease, opacity 0.1s ease, height 0.1s ease;
  }

  .navbar-chamaleon.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item:hover > a:before,
  .navbar-biglogo.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item:hover > a:before,
  .th-menu.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item:hover > a:before {
    height: 5px;
    transition: bottom 0.5s ease, opacity 0.1s ease, height 0.3s ease 0.1s;
  }

  .navbar-chamaleon.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item.active > a:before,
  .navbar-chamaleon.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item.current-menu-ancestor > a:before,
  .navbar-biglogo.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item.active > a:before,
  .navbar-biglogo.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item.current-menu-ancestor > a:before,
  .th-menu.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item.active > a:before,
  .th-menu.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item.current-menu-ancestor > a:before {
    height: 5px;
    transition: bottom 0.5s ease, opacity 0.1s ease;
  }

  .navbar-chamaleon.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item:first-of-type > a:before,
  .navbar-biglogo.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item:first-of-type > a:before,
  .th-menu.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item:first-of-type > a:before {
    margin-left: 0;
    width: calc(100% - 4px);
  }

  .navbar-chamaleon.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item:last-of-type > a:before,
  .navbar-biglogo.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item:last-of-type > a:before,
  .th-menu.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item:last-of-type > a:before {
    width: calc(100% - 4px);
  }

  .navbar-chamaleon.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item > a:before,
  .navbar-biglogo.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item > a:before,
  .th-menu.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item > a:before {
    display: block;
    content: '';
    position: absolute;
    z-index: 1001;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 5px;
    background: #27558b;
    opacity: 1;
    filter: alpha(opacity=100);
    transition: bottom 0.5s ease, opacity 0.1s ease, width 0.1s ease;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .navbar-chamaleon.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item:hover > a:before,
  .navbar-biglogo.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item:hover > a:before,
  .th-menu.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item:hover > a:before {
    width: calc(100% - 7px);
    transition: bottom 0.5s ease, opacity 0.1s ease, width 0.3s ease 0.1s;
  }

  .navbar-chamaleon.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item.active > a:before,
  .navbar-chamaleon.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item.current-menu-ancestor > a:before,
  .navbar-biglogo.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item.active > a:before,
  .navbar-biglogo.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item.current-menu-ancestor > a:before,
  .th-menu.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item.active > a:before,
  .th-menu.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item.current-menu-ancestor > a:before {
    width: calc(100% - 7px);
    transition: bottom 0.5s ease, opacity 0.1s ease;
  }

  .navbar-chamaleon.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item:first-of-type > a:before,
  .navbar-biglogo.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item:first-of-type > a:before,
  .th-menu.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item:first-of-type > a:before {
    margin-left: -3px;
  }

  .th-menu.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item:first-of-type > a:before {
    margin-left: 3px;
    width: calc(100% - 7px);
  }

  .th-menu.navbar-indicator-slide-bottom .navbar-collapse .navbar-nav > .menu-item:last-of-type > a:before {
    width: calc(100% - 7px);
  }

  .th-menu.navbar-indicator-slide-mid .navbar-collapse .navbar-nav > .menu-item:first-of-type > a:before {
    margin-left: 0;
  }

  .navbar-chamaleon {
    height: 96px;
    min-height: 60px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .navbar-chamaleon.shrink .navbar-collapse {
    height: 60px;
  }

  .navbar-chamaleon.shrink .navbar-collapse .navbar-nav {
    height: 60px;
  }

  .navbar-chamaleon.shrink .navbar-collapse .navbar-nav > .menu-item {
    min-height: 60px;
    height: 60px;
  }

  .navbar-chamaleon.shrink .navbar-collapse .navbar-nav > .menu-item > a {
    line-height: 59px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .navbar-chamaleon.shrink .navbar-collapse .navbar-nav > .menu-item.dropdown.open > .dropdown-menu {
    top: 100%;
    width: 321px;
  }

  .navbar-chamaleon.shrink .navbar-collapse .navbar-nav > .menu-item.dropdown.open .dropdown-submenu > .dropdown-menu {
    top: -20px;
    width: 321px;
  }

  .navbar-chamaleon.headhesive {
    /* Required styles */
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    /* Translate -100% to move off screen */
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    /* Animations */
    transition: all 300ms ease-in-out;
  }

  .navbar-chamaleon.headhesive.headhesive--stick {
    /* Translate back to 0%; */
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }

  .navbar-chamaleon.headhesive.headhesive--unstick {
    position: fixed;
    top: 0;
    left: 0;
    /* Translate -100% to move off screen */
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    /* Animations */
    transition: all 300ms ease-in-out;
  }

  .navbar-chamaleon.headhesive .navbar-collapse {
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-chamaleon.is_headhesive .navbar-collapse {
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-chamaleon.navbar-fixed-top {
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }

  .navbar-chamaleon.navbar-static-top {
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }

  .navbar-chamaleon .navbar-header {
    height: 91px;
    transition: margin-top 0.4s ease, height 0.4s ease, min-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
  }

  .navbar-chamaleon .navbar-header .navbar-brand {
    position: static;
    text-align: center;
    padding: 0;
    margin-right: 20px;
  }

  .navbar-chamaleon .navbar-header .navbar-brand.navbar-center {
    top: 18px;
  }

  .navbar-chamaleon .navbar-header .navbar-brand.navbar-center a {
    position: static;
    max-height: 59px;
    height: 59px;
    float: left;
  }

  .navbar-chamaleon .navbar-header .navbar-brand.navbar-brand-center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1003;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: margin-top 0.4s ease, height 0.4s ease, min-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
    padding-top: 0;
    padding-bottom: 0;
    margin: auto;
    width: auto;
    max-width: 90%;
  }

  .navbar-chamaleon .navbar-header .navbar-brand.navbar-brand-center a {
    text-align: center;
  }

  .navbar-chamaleon .navbar-header .navbar-brand.pull-left {
    margin-right: 20px;
    margin-left: 0;
  }

  .navbar-chamaleon .navbar-header .navbar-brand.pull-right {
    margin-left: 20px;
    margin-right: -10px;
  }

  .navbar-chamaleon .navbar-header.navbar-brand-left,
  .navbar-chamaleon .navbar-header .navbar-brand.navbar-brand-left {
    position: relative;
    z-index: 1003;
    float: left !important;
    margin-left: 0;
  }

  .navbar-chamaleon .navbar-header.navbar-brand-left a,
  .navbar-chamaleon .navbar-header .navbar-brand.navbar-brand-left a {
    text-align: left;
  }

  .navbar-chamaleon .navbar-header.navbar-brand-right,
  .navbar-chamaleon .navbar-header .navbar-brand.navbar-brand-right {
    position: relative;
    z-index: 1003;
    float: right !important;
    margin-right: 0;
  }

  .navbar-chamaleon .navbar-header.navbar-brand-right a,
  .navbar-chamaleon .navbar-header .navbar-brand.navbar-brand-right a {
    text-align: right;
  }

  .navbar-chamaleon .navbar-collapse {
    position: relative;
    width: auto;
    padding-bottom: 0px;
    border-color: #2a2a2a;
    min-height: 59px;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav {
    transition: margin-top 0.4s ease, height 0.4s ease, min-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav.navbar-right:last-child {
    margin-right: 0;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item > a {
    position: relative;
    padding-left: 3px;
    padding-right: 3px;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item:first-child {
    padding-left: 0;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item:first-child > a {
    padding-left: 0;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item:last-child {
    padding-right: 0;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item:last-child > a {
    padding-right: 0;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item {
    padding-left: 7px;
    padding-right: 7px;
    transition: margin-top 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item > a {
    color: #2a2a2a;
    line-height: 65px;
    padding-left: 3px;
    padding-right: 3px;
    transition: color 0.3s ease, background-color 0.3s ease, height 0.4s ease, min-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item > a:hover,
  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item > a:focus {
    color: #27558b;
    text-decoration: none;
    background-color: transparent;
    border: 0;
    outline: 0;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.cart.dropdown > a {
    display: table;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.dropdown {
    background-color: transparent;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.dropdown.open {
    background-color: transparent;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.dropdown.open > .dropdown-toggle {
    background-color: transparent;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.dropdown.open > .dropdown-menu {
    top: 100%;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu {
    padding: 20px 0;
    width: 321px;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu .menu-item {
    width: 321px;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu .menu-item a {
    width: 321px;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu .menu-item a:after {
    top: calc(50% - 10px);
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu .dropdown-menu > .menu-item > a {
    padding-left: 30px;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .active {
    color: #27558b;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .active > a,
  .navbar-chamaleon .navbar-collapse .navbar-nav > .active > a:hover,
  .navbar-chamaleon .navbar-collapse .navbar-nav > .active > a:focus {
    color: #27558b;
    background-color: transparent;
  }

  .navbar-chamaleon .navbar-collapse .navbar-nav > .open > a,
  .navbar-chamaleon .navbar-collapse .navbar-nav > .open > a:hover,
  .navbar-chamaleon .navbar-collapse .navbar-nav > .open > a:focus {
    background-color: #f7f7f7;
  }

  .navbar-chamaleon.navbar-location-top .navbar-header .navbar-brand img,
  .navbar-chamaleon.navbar-location-bottom .navbar-header .navbar-brand img {
    max-height: 75px;
  }

  .navbar-chamaleon.navbar-fixed-bottom.shrink .navbar-nav > .menu-item.dropdown.open .dropdown-menu {
    top: auto;
    bottom: 100%;
  }

  .navbar-chamaleon.navbar-fixed-bottom.shrink .navbar-nav > .menu-item.dropdown.open .dropdown-menu .dropdown-submenu > .dropdown-menu {
    bottom: calc(100% - 65px);
    top: auto;
  }

  .navbar-chamaleon.navbar-fixed-bottom .navbar-nav > .menu-item.dropdown.open .dropdown-menu {
    top: auto;
    bottom: 100%;
  }

  .navbar-chamaleon.navbar-fixed-bottom .navbar-nav > .menu-item.dropdown.open .dropdown-menu .dropdown-submenu > .dropdown-menu {
    bottom: calc(100% - 65px);
    top: auto;
  }

  .navbar-chamaleon.navbar-static-left,
  .navbar-chamaleon.navbar-static-right {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 260px;
    height: 100%;
    min-height: 100%;
  }

  .navbar-chamaleon.navbar-static-left .navbar-header,
  .navbar-chamaleon.navbar-static-right .navbar-header {
    height: auto !important;
    width: 100%;
  }

  .navbar-chamaleon.navbar-static-left .navbar-header .navbar-brand,
  .navbar-chamaleon.navbar-static-right .navbar-header .navbar-brand {
    position: relative;
    z-index: 1003;
    padding: 50px;
    width: 100%;
    text-align: left;
    height: auto !important;
  }

  .navbar-chamaleon.navbar-static-left .navbar-header .navbar-brand a .logo,
  .navbar-chamaleon.navbar-static-right .navbar-header .navbar-brand a .logo {
    max-width: 160px;
    max-height: none;
  }

  .navbar-chamaleon.navbar-static-left .navbar-header .navbar-brand img,
  .navbar-chamaleon.navbar-static-right .navbar-header .navbar-brand img {
    max-width: 200px;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse,
  .navbar-chamaleon.navbar-static-right .navbar-collapse {
    top: auto;
    border-top: 0;
    padding-left: 50px;
    padding-right: 30px;
    width: 100%;
    height: auto;
    max-height: none;
    box-shadow: none;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse:last-of-type,
  .navbar-chamaleon.navbar-static-right .navbar-collapse:last-of-type {
    padding-bottom: 50px;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav,
  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item,
  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-left,
  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-right,
  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-header,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-left,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-right,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-header {
    width: 100%;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item {
    padding: 0;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.search a span,
  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.share a span,
  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.cart a span,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.search a span,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.share a span,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.cart a span {
    display: inline !important;
    padding-right: 8px;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item a,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item a {
    padding: 12px 0;
    line-height: 1.53846154;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 2s ease-out;
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    float: none;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu > li.menu-item,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu > li.menu-item {
    width: 100%;
    min-height: 0;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu > li.menu-item a,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu > li.menu-item a {
    padding-right: 15px;
    width: 100%;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu > li.menu-item a:after,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu > li.menu-item a:after {
    display: none;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu > li.menu-item.dropdown-submenu > .dropdown-menu > li > a,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu > li.menu-item.dropdown-submenu > .dropdown-menu > li > a {
    padding-left: 15px;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu li.menu-item a,
  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu li.menu-item.active,
  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu li.menu-item.active a,
  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu li.menu-item a:hover,
  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu li.menu-item a:focus,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu li.menu-item a,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu li.menu-item.active,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu li.menu-item.active a,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu li.menu-item a:hover,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu li.menu-item a:focus {
    background: transparent;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown.open > .dropdown-menu,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown.open > .dropdown-menu {
    -webkit-animation: none;
    animation: none;
    max-height: 5000px;
    transition: max-height 2s ease-in;
  }

  .navbar-chamaleon.navbar-static-left .navbar-collapse .navbar-nav > .menu-item.dropdown.open > .dropdown-menu > .dropdown-submenu.open > .dropdown-menu,
  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown.open > .dropdown-menu > .dropdown-submenu.open > .dropdown-menu {
    max-height: 5000px;
    transition: max-height 2s ease-in;
  }

  .navbar-chamaleon.navbar-static-right {
    right: 0;
    left: auto;
  }

  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav {
    text-align: left;
  }

  .navbar-chamaleon.navbar-static-right .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu {
    text-align: left;
  }

  .navbar-text {
    color: #2a2a2a;
  }

  .navbar-form {
    border-color: #2a2a2a;
  }

  .navbar-link {
    color: #2a2a2a;
  }

  .navbar-link:hover {
    color: #27558b;
  }

  .navbar-biglogo.navbar-item-separator .navbar-collapse .navbar-nav > .menu-item > a {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-biglogo.navbar-item-separator .navbar-collapse .navbar-nav > .menu-item > a:after {
    float: right;
  }

  .navbar-biglogo.navbar-item-separator .navbar-collapse .navbar-nav > .menu-item:last-of-type a:after {
    content: none;
    margin: 0;
  }

  .navbar-biglogo .navbar-header {
    width: 100%;
  }

  .navbar-biglogo .navbar-header .navbar-brand a {
    height: auto;
  }

  .navbar-biglogo .navbar-header .navbar-brand a .logo {
    max-width: none;
    max-height: none;
  }

  .navbar-biglogo .navbar-collapse {
    width: 100%;
    height: 100%;
    top: auto;
    bottom: 0px;
    padding-bottom: 0px;
    background: transparent;
  }

  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item > a {
    padding-bottom: 26px;
  }

  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item > a:hover,
  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item > a:focus {
    background: transparent;
  }

  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.dropdown > .dropdown-menu {
    top: 100%;
  }

  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu {
    background-image: none;
    padding: 20px 0;
    width: 321px;
  }

  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu .menu-item {
    width: 321px;
  }

  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu .menu-item a {
    width: 321px;
  }

  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu .menu-item a:after {
    top: calc(50% - 10px);
  }

  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.dropdown .dropdown-menu .dropdown-menu > .menu-item > a {
    padding-left: 30px;
  }

  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.visible-lg,
  .navbar-biglogo .navbar-collapse .navbar-nav > .menu-item.cart.visible-md {
    display: inline-block !important;
  }

  body.navbar-left .page-container {
    padding-left: 260px;
  }

  body.navbar-right .page-container {
    padding-right: 260px;
  }

  .admin-bar .navbar-chamaleon.headhesive {
    display: block;
    top: 32px;
  }

  .th-menu {
    opacity: 1;
  }

  .th-menu .container-fluid,
  .th-menu .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }

  .th-menu .navbar-collapse {
    position: relative;
    padding-bottom: 0px;
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item > a {
    padding: 15px;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item > a:after {
    position: absolute;
    left: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item:first-of-type > a,
  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item:last-of-type > a:after {
    content: none !important;
    margin-left: 0;
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item.dropdown {
    background-color: transparent;
    transition: height 0.4s ease, padding 0.4s ease;
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item.dropdown.open {
    background-color: transparent;
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item.dropdown.open > .dropdown-toggle {
    background-color: transparent;
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item.dropdown.open > .dropdown-menu {
    top: 100%;
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item.dropdown .dropdown-menu {
    padding: 20px 0;
    width: 321px;
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item.dropdown .dropdown-menu .menu-item {
    width: 321px;
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item.dropdown .dropdown-menu .menu-item a {
    width: 321px;
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item.dropdown .dropdown-menu .menu-item a:after {
    top: calc(50% - 10px);
  }

  .th-menu .navbar-collapse .nav.navbar-nav > .menu-item.dropdown .dropdown-menu .dropdown-menu > .menu-item > a {
    padding-left: 30px;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu {
    position: static;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu.open .dropdown-menu.mega-menu-headings,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu.open .dropdown-menu.mega-menu-headings {
    display: table;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings {
    table-layout: fixed;
    margin-top: -1px;
    padding: 0;
    left: 0;
    width: 100%;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item {
    display: table-cell;
    width: auto;
    border-right: 1px solid rgba(189, 189, 189, 0.64);
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item.mega-menu-image .image-wrapper,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item.mega-menu-image .image-wrapper {
    padding: 30px;
    text-transform: none;
    text-align: center;
    font-style: italic;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item.mega-menu-image .image-wrapper img,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item.mega-menu-image .image-wrapper img {
    padding-bottom: 30px;
    height: auto;
    max-width: 100%;
    max-height: 200px;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > a,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > a {
    padding-top: 0;
    padding-bottom: 0;
    border-top: 1px solid rgba(189, 189, 189, 0.64);
    border-bottom: 1px solid rgba(189, 189, 189, 0.64);
    width: 100%;
    height: 64px;
    line-height: 64px;
    overflow: hidden;
    color: #27558b;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > a:after,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > a:after {
    display: none;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > a.mega-menu-hide-heading,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > a.mega-menu-hide-heading {
    height: 0;
    padding: 0;
    border: 0;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > .dropdown-menu,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    width: 100%;
    -webkit-animation: none;
    animation: none;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > .dropdown-menu > .menu-item,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > .dropdown-menu > .menu-item {
    width: 100%;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > .dropdown-menu > .menu-item > a,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > .dropdown-menu > .menu-item > a {
    width: 100%;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > .dropdown-menu > .menu-item > .dropdown-menu,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item > .dropdown-menu > .menu-item > .dropdown-menu {
    display: none;
  }

  .navbar-chamaleon.navbar-horizontal .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > li:last-of-type,
  .navbar-biglogo .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > li:last-of-type {
    border-right: none;
  }

  .navbar-chamaleon.navbar-vertical .navbar-nav > .menu-item.dropdown.mega-menu .dropdown-menu.mega-menu-headings > .menu-item.mega-menu-image {
    display: none;
  }
}

.th-menu {
  opacity: 1;
}

/* Large devices (large desktops, 1200px and up) */

@-webkit-keyframes linearFromLeft {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: ease-in;
  }

  0% {
    opacity: 0;
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
  }

  90% {
    -webkit-transform: translate3d(0px, 0);
    transform: translate(0px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes linearFromLeft {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: ease-in;
  }

  0% {
    opacity: 0;
    -webkit-transform: translate(-100px, 0);
    -ms-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
  }

  90% {
    -webkit-transform: translate(0px, 0);
    -ms-transform: translate(0px, 0);
    transform: translate(0px, 0);
  }

  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.linearFromLeft {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-name: linearFromLeft;
  animation-name: linearFromLeft;
}

#go-to-top {
  display: none;
}

#go-to-top .arrows-wrapper {
  display: none;
}

/* Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
  #go-to-top {
    opacity: 0;
    filter: alpha(opacity=0);
    display: none;
    z-index: 2000;
    position: fixed;
    right: 20px;
    bottom: 20px;
    border-bottom: solid 1px #b6b6b6;
    width: 29px;
    height: 33px;
    cursor: pointer;
    transition: opacity 0.5s ease;
  }

  #go-to-top:hover {
    border-color: #2a2a2a;
  }

  #go-to-top:hover .arrows-wrapper {
    color: #2a2a2a;
  }

  #go-to-top .arrows-wrapper {
    display: block;
    position: relative;
    font-size: 13px;
    color: #b6b6b6;
  }

  #go-to-top .arrows-wrapper i:first-of-type {
    position: absolute;
    top: 0;
    left: 8px;
  }

  #go-to-top .arrows-wrapper i:last-of-type {
    position: absolute;
    top: 9px;
    left: 8px;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  body.navbar-left #top-bar {
    padding-left: 260px;
  }

  body.navbar-right #top-bar {
    padding-right: 260px;
  }

  #top-bar {
    height: 55px;
    line-height: 55px;
  }

  #top-bar .contact > a {
    display: inline-block;
    padding: 0 21px;
    border-left: 1px solid #eaeaea;
  }

  #top-bar .contact > a i {
    margin-right: 7px;
  }

  #top-bar .contact .dropdown.languages {
    display: inline-block;
  }

  #top-bar .contact .dropdown.languages > a {
    display: inline-block;
    padding: 0 21px;
    border-left: 1px solid #eaeaea;
  }

  #top-bar .contact .dropdown.languages > a i {
    margin-left: 10px;
    font-size: 10px;
  }

  #top-bar .contact .dropdown.languages .dropdown-menu {
    z-index: 1035;
    top: 100%;
  }

  #top-bar .contact.contact-right {
    text-align: right;
  }

  #top-bar .contact.contact-right > a,
  #top-bar .contact.contact-right .dropdown.languages > a {
    border-left: none;
    border-right: 1px solid #eaeaea;
  }

  #top-bar .social {
    text-align: right;
  }

  #top-bar .social.social-left {
    text-align: left;
  }

  #top-bar .social > a {
    padding: 0 8px;
  }

  #top-bar .social > a:first-of-type {
    padding-left: 0;
  }

  #top-bar .social > a:last-of-type {
    padding-right: 0;
  }
}

html {
  min-height: calc(100% - 32px);
  font-size: 13px;
  position: relative;
}

html[data-md="iOS"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-backface-visibility: visible;
}

html[data-md="iOS"] body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-backface-visibility: visible;
}

.body-wrapper {
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: opacity 0.4s ease, margin 0.4s ease;
}

@media screen and (max-width: 980px) {
  html {
    margin-top: 0 !important;
  }

  #wpadminbar {
    left: 0 !important;
    z-index: 500 !important;
    height: 46px;
    min-width: 300px;
    position: absolute;
    top: -46px !important;
  }

  .admin-bar nav {
    top: 0 !important;
    position: relative !important;
  }

  .admin-bar .page-container {
    padding-top: 0 !important;
  }
}

body {
  background-color: #ffffff;
  font-family: "Open Sans";
  font-size: 13px;
  letter-spacing: 0px;
  word-spacing: 0px;
  font-weight: 400;
  line-height: 0px;
}

select {
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  /* Firefox 1-3.6 */
  border-radius: 0;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  background-color: #ffffff;
  border: 0 none;
  color: #2a2a2a;
  padding-left: 15px;
  padding-right: 15px;
  outline: 0 none;
}

a {
  outline: none;
}

a:focus {
  text-decoration: none;
  outline-offset: 0;
}

p {
  font-family: "Open Sans";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans";
  font-weight: 700;
  letter-spacing: 0.4px;
  word-spacing: 1px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  outline: none;
}

h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h5 a:focus,
h6 a:focus {
  text-decoration: none;
  outline: none;
}

.section-header-separator {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.page-title-icon {
  float: left;
  margin: 0 12px 0 0;
  font-family: "Open Sans";
  font-weight: 700;
  letter-spacing: 0.4px;
  word-spacing: 1px;
  line-height: 30px;
}

.page-title {
  display: table;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: "Open Sans";
  font-weight: 700;
  letter-spacing: 0.4px;
  word-spacing: 1px;
  line-height: 30px;
  word-wrap: break-word;
}

.page-title .ult-just-icon-wrapper {
  display: inline-block;
}

.page-container {
  transition: opacity 1s linear;
}

.content-page {
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.content-page.blog-medium-images,
.content-page.blog-large-images {
  padding-left: 20px;
  padding-right: 20px;
}

.content-page.full-width-boxed {
  padding-left: 10px;
  padding-right: 10px;
}

.content-page.fluid {
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
}

.content-page.fluid .content-area {
  padding-left: 0px;
  padding-right: 0px;
}

.content-page.sidebar-left .content-area {
  padding-left: 0px;
}

.content-page.sidebar-left .content-area .site-main > .vc_row {
  padding-left: 0px;
  padding-right: 0px;
}

.content-page .content-area {
  padding-left: 0px;
  padding-right: 0px;
}

.content-page.sidebar-right .content-area {
  padding-left: 0px;
}

.content-page.sidebar-right .content-area .site-main > .vc_row {
  padding-left: 0px;
  padding-right: 0px;
}

.content-page.full-width-boxed .content-area .site-main > .vc_row {
  padding-left: 0px;
  padding-right: 0px;
}

.content-page.sidebar-double .content-area {
  padding-left: 0px;
  padding-right: 0px;
}

.content-page.sidebar-double .content-area .site-main > .vc_row {
  padding-left: 0px;
  padding-right: 0px;
}

.content-wrapper {
  padding-left: 0px;
  padding-right: 0px;
}

.header-page {
  height: auto;
  background-size: cover !important;
}

.header-page .wrapper {
  display: table;
  margin: 40px auto;
}

.header-page .header-line-sourunding {
  display: table-cell;
  vertical-align: middle;
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-page h2 {
  letter-spacing: 4px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.error-404 .title {
  display: inline-block;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 800;
}

.error-404 .text {
  margin-left: 15px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 40px;
}

.archive .content-page,
.blog .content-page,
.woocommerce .content-page {
  padding-left: 20px;
  padding-right: 20px;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .header-page {
    height: 260px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .header-page .container,
  .header-page .post-password-form {
    height: 100%;
  }

  .header-page .row {
    height: 100%;
  }

  .header-page .content {
    height: 100%;
  }

  .header-page .wrapper {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .header-page .text-center .wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
  }

  .header-page .text-right .wrapper {
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .header-page .text-left .wrapper {
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .header-page .header-line-sourunding {
    display: inline-block;
  }

  .container,
  .post-password-form {
    width: 100%;
  }

  .content-page {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    display: table;
    table-layout: fixed;
  }

  .content-page .content-area {
    padding-left: 0px;
    padding-right: 0px;
  }

  .content-page.project {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content-page.sidebar-left .widget-area {
    display: table-cell;
    float: none;
    vertical-align: top;
    padding-right: 20px;
  }

  .content-page.sidebar-left .content-area {
    display: table-cell;
    float: none;
    vertical-align: top;
    border-left: 1px solid;
    border-left-color: #eaeaea;
    padding-left: 10px;
    padding-right: 10px;
  }

  .content-page.sidebar-left .content-area .post-content {
    margin-left: -10px;
  }

  .content-page.sidebar-left .content-area .site-main > .vc_row {
    padding-left: 0px;
    padding-right: 0px;
  }

  .content-page.sidebar-right .widget-area {
    display: table-cell;
    float: none;
    padding-left: 20px;
  }

  .content-page.sidebar-right .content-area {
    display: table-cell;
    float: none;
    vertical-align: top;
    border-right: none;
    border-right-color: #eaeaea;
    padding-right: 10px;
    padding-left: 10px;
  }

  .content-page.sidebar-right .content-area .post-content {
    margin-left: -10px;
  }

  .content-page.sidebar-right .content-area .post-content .post-content {
    margin-left: -10px;
  }

  .content-page.sidebar-right .content-area .site-main > .vc_row {
    padding-left: 10px;
    padding-right: 0px;
  }

  .content-page.full-width-boxed {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content-page.full-width-boxed .content-area .site-main > .vc_row {
    padding-left: 0px;
    padding-right: 0px;
  }

  .content-page.sidebar-double .content-area {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content-page.sidebar-double .content-area .site-main > .vc_row {
    padding-left: 5px;
    padding-right: 5px;
  }

  .navbar-left .content-page,
  .navbar-right .content-page {
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-left #page,
  .navbar-right #page {
    width: 100%;
  }

  .navbar-left .container,
  .navbar-left .post-password-form,
  .navbar-right .container,
  .navbar-right .post-password-form {
    width: 100%;
  }

  .navbar-left .content-page.sidebar-double .content-area,
  .navbar-right .content-page.sidebar-double .content-area {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-left .content-page.sidebar-double .content-area .site-main > .vc_row,
  .navbar-right .content-page.sidebar-double .content-area .site-main > .vc_row {
    padding-left: 5px;
    padding-right: 5px;
  }

  .navbar-left .content-page.full-width-boxed,
  .navbar-right .content-page.full-width-boxed {
    padding-left: 10px;
    padding-right: 10px;
  }

  .archive .content-page,
  .blog .content-page,
  .woocommerce .content-page {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .container,
  .post-password-form {
    width: 100%;
  }

  .content-page {
    width: 100%;
  }

  .content-page .content-area.with-sidebar {
    padding-right: 10px;
    padding-left: 10px;
  }

  .content-page.full-width-boxed {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content-page.sidebar-left .widget-area {
    display: table-cell;
    float: none;
    vertical-align: top;
    padding-right: 20px;
  }

  .content-page.sidebar-left .content-area {
    display: table-cell;
    float: none;
    vertical-align: top;
    border-left: 1px solid;
    border-left-color: #eaeaea;
    padding-left: 20px;
    padding-right: 10px;
  }

  .content-page.sidebar-left .content-area .post-content {
    margin-left: -10px;
  }

  .content-page.sidebar-left .content-area .site-main > .vc_row {
    padding-left: 0px;
    padding-right: 0px;
  }

  .content-page.sidebar-right .widget-area {
    display: table-cell;
    float: none;
    padding-left: 20px;
  }

  .content-page.sidebar-right .content-area {
    display: table-cell;
    float: none;
    vertical-align: top;
    border-right: 1px solid;
    border-right-color: #eaeaea;
    padding-right: 20px;
    padding-left: 10px;
  }

  .content-page.sidebar-right .content-area .post-content {
    margin-left: -10px;
  }

  .content-page.sidebar-right .content-area .post-content .post-content {
    margin-left: -10px;
  }

  .content-page.sidebar-right .content-area .site-main > .vc_row {
    padding-left: 10px;
    padding-right: 0px;
  }

  .content-page.sidebar-double .sidebar-left {
    padding-left: 10px;
  }

  .content-page.sidebar-double .sidebar-right {
    padding-right: 10px;
  }

  .content-page.sidebar-double .content-area {
    display: table-cell;
    float: none;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .content-page.sidebar-double .content-area .site-main {
    padding: 0 0px;
  }

  .content-page.sidebar-double .widget-area {
    display: table-cell;
    float: none;
    width: 295px;
    max-width: 295px;
    min-width: 295px;
    vertical-align: top;
  }

  .content-page.sidebar-double .widget-area:first-child {
    padding-right: 20px;
  }

  .content-page.sidebar-double .widget-area:last-child {
    padding-left: 20px;
  }

  .archive .content-page,
  .blog .content-page,
  .woocommerce .content-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .archive .content-page.with-sidebar,
  .blog .content-page.with-sidebar,
  .woocommerce .content-page.with-sidebar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-left .content-page,
  .navbar-right .content-page {
    width: 100%;
  }

  .navbar-left.blog .content-page,
  .navbar-right.blog .content-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-left.blog .content-page.with-sidebar .content-area,
  .navbar-right.blog .content-page.with-sidebar .content-area {
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .navbar-left.blog .content-page.with-sidebar .content-area,
  .navbar-right.blog .content-page.with-sidebar .content-area {
    float: left;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .navbar-left.blog .content-page.with-sidebar .widget-area .hidden-md,
  .navbar-right.blog .content-page.with-sidebar .widget-area .hidden-md {
    display: none !important;
  }

  .navbar-left.blog .content-page.blog-masonry,
  .navbar-right.blog .content-page.blog-masonry {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-bottom {
    padding-bottom: 60px;
  }
}

/* Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
  body {
    width: 100%;
  }

  .container,
  .post-password-form {
    width: 1160px;
  }

  .content-page {
    width: 1160px;
  }

  .content-page.sidebar-double .sidebar-left {
    padding-left: 10px;
  }

  .content-page.sidebar-double .sidebar-right {
    padding-right: 10px;
  }

  .content-page.sidebar-double .content-area {
    display: table-cell;
    float: none;
    padding: 0 10px;
    border-left: 1px solid;
    border-left-color: #eaeaea;
    border-right: 1px solid;
    border-right-color: #eaeaea;
    width: 570px;
    max-width: 570px;
  }

  .content-page.sidebar-double .content-area .site-main {
    padding: 0 10px;
  }

  .content-page.sidebar-double .widget-area {
    display: table-cell;
    float: none;
    width: 295px;
    max-width: 295px;
    min-width: 295px;
    vertical-align: top;
  }

  .content-page.sidebar-double .widget-area:first-child {
    padding-right: 20px;
  }

  .content-page.sidebar-double .widget-area:last-child {
    padding-left: 20px;
  }

  .archive .content-page,
  .blog .content-page,
  .woocommerce .content-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .archive .content-page.with-sidebar,
  .blog .content-page.with-sidebar,
  .woocommerce .content-page.with-sidebar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-left.blog .content-page,
  .navbar-right.blog .content-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-left.blog .content-page.with-sidebar .content-area,
  .navbar-right.blog .content-page.with-sidebar .content-area {
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1200px) and (min-width: 992px) {
  .navbar-left.blog .content-page.with-sidebar .content-area,
  .navbar-right.blog .content-page.with-sidebar .content-area {
    float: left;
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .navbar-left.blog .content-page.with-sidebar .widget-area .visible-lg,
  .navbar-right.blog .content-page.with-sidebar .widget-area .visible-lg {
    display: none !important;
  }

  .navbar-left.blog .content-page.blog-masonry,
  .navbar-right.blog .content-page.blog-masonry {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-left .content-page,
  .navbar-right .content-page {
    width: 100%;
  }

  .navbar-left .container,
  .navbar-left .post-password-form,
  .navbar-right .container,
  .navbar-right .post-password-form {
    width: 100%;
  }
}

@media (min-width: 1420px) {
  .navbar-left .content-page,
  .navbar-right .content-page {
    width: 1160px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-left .content-page.full-width-boxed,
  .navbar-right .content-page.full-width-boxed {
    width: 100%;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-left.blog .content-page,
  .navbar-right.blog .content-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-left.blog .content-page.blog-masonry,
  .navbar-right.blog .content-page.blog-masonry {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-left .container,
  .navbar-left .post-password-form,
  .navbar-right .container,
  .navbar-right .post-password-form {
    width: 1160px;
  }
}

@media (min-width: 1441px) {
  .navbar-left .content-page,
  .navbar-right .content-page {
    width: 1160px;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-left .content-page.sidebar-double,
  .navbar-left .content-page.sidebar-left,
  .navbar-left .content-page.sidebar-right,
  .navbar-left .content-page.full-width-boxed,
  .navbar-right .content-page.sidebar-double,
  .navbar-right .content-page.sidebar-left,
  .navbar-right .content-page.sidebar-right,
  .navbar-right .content-page.full-width-boxed {
    width: 1160px;
  }

  .navbar-left .container,
  .navbar-left .post-password-form,
  .navbar-right .container,
  .navbar-right .post-password-form {
    width: 1160px;
  }

  .navbar-left.blog .content-page,
  .navbar-right.blog .content-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-left.blog .content-page.blog-masonry,
  .navbar-right.blog .content-page.blog-masonry {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1460px) {
  .navbar-left .content-page,
  .navbar-right .content-page {
    width: 1160px;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-left.page-template-full-width-fluid .content-page,
  .navbar-right.page-template-full-width-fluid .content-page {
    width: 100%;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-left .container,
  .navbar-left .post-password-form,
  .navbar-right .container,
  .navbar-right .post-password-form {
    width: 1160px;
  }
}

iframe.playerBox {
  margin-left: 0px !important;
}

.footer-wrapper footer {
  padding-bottom: 185px;
}

.footer-wrapper footer.empty_footer {
  padding-bottom: 0px;
}

.footer-wrapper footer.vc {
  padding-bottom: 0;
  margin-left: -10px;
  margin-right: -10px;
}

.footer-wrapper footer.footer-has-line {
  padding-bottom: 80px;
}

.footer-wrapper footer .footer-line {
  margin: 75px 0 80px 0;
  width: 100%;
  height: 1px;
  max-height: 1px;
  background: #eaeaea;
  line-height: 20px;
}

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

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .footer-text {
    text-align: center;
  }

  .footer-text.footer-text-lines:before,
  .footer-text.footer-text-lines:after {
    display: inline;
    content: '---------';
    font-weight: normal;
    font-style: normal;
    font-family: serif;
    letter-spacing: -2.5px;
  }

  .footer-text.footer-text-lines:before {
    margin-right: 15px;
  }

  .footer-text.footer-text-lines:after {
    margin-left: 15px;
  }
}

/* Large devices (large desktops, 1200px and up) */

/* 1200px and down */

@media (max-width: 1199px) {
  .footer-wrapper footer.no-vc {
    background-image: none !important;
  }
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: " ";
  display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.img-liquid {
  display: block;
  width: 100%;
  height: 100%;
}

.mustbehide {
  opacity: 0 !important;
}

/* centered columns styles */

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

.col-centered {
  display: inline-block;
  float: none;
  /* reset the text-align */
  text-align: left;
  /* inline-block space fix */
  margin-right: -4px;
}

.no-gutter {
  display: table;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-padding {
  padding: 0px !important;
}

.column-no-padding {
  margin-left: -10px;
  margin-right: -10px;
}

.padding-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.hpadding-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.no-margin {
  margin: 0px !important;
}

.no-margin-top {
  margin-top: 0px !important;
}

.no-margin-bottom {
  margin-bottom: 0px !important;
}

/* Spacers */

.vspace-1 {
  height: 1px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-1 {
  height: 100%;
  width: 1px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-2 {
  height: 2px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-2 {
  height: 100%;
  width: 2px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-3 {
  height: 3px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-3 {
  height: 100%;
  width: 3px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-5 {
  height: 5px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-5 {
  height: 100%;
  width: 5px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-8 {
  height: 8px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-8 {
  height: 100%;
  width: 8px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-10 {
  height: 10px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-10 {
  height: 100%;
  width: 10px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-15 {
  height: 15px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-15 {
  height: 100%;
  width: 15px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-20 {
  height: 20px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-20 {
  height: 100%;
  width: 20px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-25 {
  height: 25px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-25 {
  height: 100%;
  width: 25px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-30 {
  height: 30px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-30 {
  height: 100%;
  width: 30px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-35 {
  height: 35px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-35 {
  height: 100%;
  width: 35px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-40 {
  height: 40px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-40 {
  height: 100%;
  width: 40px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-45 {
  height: 45px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-45 {
  height: 100%;
  width: 45px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-50 {
  height: 50px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-50 {
  height: 100%;
  width: 50px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-60 {
  height: 60px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-60 {
  height: 100%;
  width: 60px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-70 {
  height: 70px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-70 {
  height: 100%;
  width: 70px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-80 {
  height: 80px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-80 {
  height: 100%;
  width: 80px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-90 {
  height: 90px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-90 {
  height: 100%;
  width: 90px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-100 {
  height: 100px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-100 {
  height: 100%;
  width: 100px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-120 {
  height: 120px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-120 {
  height: 100%;
  width: 120px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-150 {
  height: 150px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-150 {
  height: 100%;
  width: 150px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.vspace-200 {
  height: 200px;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.hspace-200 {
  height: 100%;
  width: 200px;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
}

.air-20 {
  padding: 0 20px;
  text-align: center;
}

.air-30 {
  padding: 0 30px;
  text-align: center;
}

.air-40 {
  padding: 0 40px;
  text-align: center;
}

.air-5-percent {
  padding: 0 5%;
  text-align: center;
}

.air-10-percent {
  padding: 0 10%;
  text-align: center;
}

.air-20-percent {
  padding: 0 20%;
  text-align: center;
}

.size-50-percent {
  width: 50%;
}

/* Table modifiers */

.top-1 {
  top: 1%;
}

.top-2 {
  top: 2%;
}

.top-3 {
  top: 3%;
}

.top-5 {
  top: 5%;
}

.top-8 {
  top: 8%;
}

.top-10 {
  top: 10%;
}

.top-15 {
  top: 15%;
}

.top-20 {
  top: 20%;
}

.top-25 {
  top: 25%;
}

.top-30 {
  top: 30%;
}

.top-40 {
  top: 40%;
}

.top-50 {
  top: 50%;
}

.top-70 {
  top: 70%;
}

/* Text meant only for screen readers */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #ffffff;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #5d5d5d;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}

.emptybr {
  height: 0px;
}

.th-menu-wrapper {
  padding-bottom: 5px;
}

.th-menu-wrapper .th-menu .dropdown.open .dropdown-menu {
  -webkit-animation: none;
  animation: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay.width-slider {
  height: calc(100% - 45px);
}

.overlay.mobile-scale {
  margin-left: -30%;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  width: 160%;
}

.overlay .th-menu .navbar-collapse {
  top: 50px;
}

.overlay .th-menu .navbar-header {
  text-align: center;
}

.overlay .th-menu .navbar-header .navbar-toggle {
  margin-top: -1px;
  float: none;
}

.centerer {
  position: absolute !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .overlay .vc_row.centerer {
    width: 100%;
  }

  .overlay.mobile-scale {
    width: 132%;
    margin-left: -16%;
    -webkit-transform: scale(0.68);
    -ms-transform: scale(0.68);
    transform: scale(0.68);
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .overlay.mobile-scale {
    width: 100%;
    margin-left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .overlay .th-menu .navbar-collapse {
    top: 0px;
  }

  .overlay .th-menu .navbar-header {
    text-align: left;
  }

  .overlay .th-menu .navbar-header .navbar-toggle {
    float: right;
    margin-top: 0px;
  }
}

/* Large devices (large desktops, 1200px and up) */

.vc_row:focus {
  outline: 0;
}

.vc_row {
  margin-bottom: 0px !important;
  visibility: visible;
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
}

.vc_row .vc_row.vc_inner {
  width: 100%;
  margin: 0 auto;
  padding-left: 0px;
  padding-right: 0px;
}

.vc_row .vc_column_container {
  padding-left: 0px;
  padding-right: 0px;
}

.vc_row .vc_row.vc_row_inner {
  overflow: visible;
}

.sidebar-left .vc_row,
.sidebar-right .vc_row,
.sidebar-double .vc_row,
.full-width-boxed .vc_row {
  padding-left: 0px;
  padding-right: 0px;
}

.wpb_single_image .vc_single_image-wrapper {
  display: block;
}

.vc_editor .vc_row {
  overflow: visible;
}

.vc_editor #page {
  margin-top: 0px;
}

.vc_column_container {
  padding-left: 0px;
  padding-right: 0px;
}

.vc_column_container.bg-cliptocontent {
  background-clip: content-box;
}

.compose-mode .vc_element {
  padding: 0px;
}

.compose-mode .vc_element.vc_vc_row .vc_controls-out-tl {
  padding-left: 10px;
}

.compose-mode .vc_th_slider {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 35px;
}

.compose-mode .vc_th_magnifier {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 35px;
}

.compose-mode .vc_th_slide {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 35px;
}

.compose-mode .vc_th_collage {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 35px;
}

.compose-mode .vc_th_magnifier {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 35px;
}

.compose-mode .vc_controls > .vc_controls-bc {
  z-index: 1000;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .vc_row {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 0px;
    padding-right: 0px;
    width: auto;
    overflow: hidden;
  }

  .vc_row .vc_column_container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .vc_row .vc_row.vc_inner {
    overflow: visible;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0 auto;
  }

  .vc_row .vc_row.vc_inner.without-margin {
    width: 100%;
  }

  .vc_row .vc_row.vc_inner.fluid {
    width: 100%;
  }

  .wpb_column:only-of-type {
    padding-left: 10px;
    padding-right: 10px;
  }

  .overlay > .vc_row {
    margin-left: 0px;
    margin-right: 0px;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .vc_row .vc_row.vc_inner {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }

  .vc_row .vc_row.vc_inner.without-margin {
    width: 100%;
  }

  .vc_row .vc_row.vc_inner.fluid {
    width: 100%;
  }

  .navbar-left .vc_row .vc_row.vc_inner,
  .navbar-right .vc_row .vc_row.vc_inner {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
  .vc_row .vc_row.vc_inner {
    width: 1180px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .vc_row .vc_row.vc_inner.without-margin {
    width: 1160px;
  }

  .vc_row .vc_row.vc_inner.fluid {
    width: 100%;
  }

  .navbar-left .vc_row .vc_row.vc_inner,
  .navbar-right .vc_row .vc_row.vc_inner {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-left .vc_row.fluid,
  .navbar-right .vc_row.fluid {
    width: 100%;
  }

  .navbar-left footer.vc .vc_row .vc_row.vc_inner,
  .navbar-right footer.vc .vc_row .vc_row.vc_inner {
    width: 1180px;
  }
}

@media (min-width: 1420px) {
  .navbar-left .container,
  .navbar-left .post-password-form,
  .navbar-right .container,
  .navbar-right .post-password-form {
    width: 1160px;
  }

  .navbar-left .vc_row .vc_row.vc_inner,
  .navbar-right .vc_row .vc_row.vc_inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* Large devices (large desktops, 1420px and up) */

@media (min-width: 1460px) {
  .navbar-left .vc_row .vc_row.vc_inner,
  .navbar-right .vc_row .vc_row.vc_inner {
    width: 1160px;
    max-width: 100%;
  }

  .navbar-left .vc_row .vc_row.vc_inner.without-margin,
  .navbar-right .vc_row .vc_row.vc_inner.without-margin {
    width: 1160px;
    max-width: 100%;
  }

  .navbar-left .vc_row .vc_row.vc_inner.fluid,
  .navbar-right .vc_row .vc_row.vc_inner.fluid {
    width: 100%;
  }
}

.uvc-main-heading .line-sourunding {
  padding-top: 12px;
  padding-bottom: 12px;
}

.uvc-main-heading h1 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.wpb_wrapper .ubtn {
  margin: 1px 0;
}

.uavc-list-content {
  letter-spacing: 1.6px;
  text-transform: none;
}

.upb_row_bg.vcpb-vz-jquery {
  opacity: 1;
}

.ult-carousel-wrapper .slick-prev:before,
.ult-carousel-wrapper .slick-next:before {
  content: "";
}

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

.category-filter {
  padding-left: 0px;
  padding-top: 6px;
  margin-bottom: 5px;
  top: -12px;
  position: relative;
}

.category-filter > li {
  list-style-type: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #2a2a2a;
  padding: 0px 10px;
}

.category-filter > li a {
  background-color: transparent;
  color: #2a2a2a;
}

.category-filter > li:first-child {
  margin-left: 0;
}

.category-filter > li.active {
  text-decoration: none;
  color: #ffffff;
  background-color: #27558b;
}

.category-filter > li.active > a {
  color: #ffffff;
  background-color: #27558b;
}

.category-filter > li:hover,
.category-filter > li:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: #27558b;
}

.category-filter > li:hover > a,
.category-filter > li:focus > a {
  text-decoration: none;
  color: #ffffff;
  background-color: transparent;
}

.category-filter .dropdown {
  background: transparent;
}

.category-filter .dropdown.open .dropdown-toggle {
  color: #27558b;
}

.category-filter .dropdown:hover,
.category-filter .dropdown:focus {
  text-decoration: none;
  color: #27558b;
  background-color: transparent;
}

.category-filter .dropdown .dropdown-toggle {
  height: 30px;
  transition: color 0.4s ease 0s;
  color: #2a2a2a;
  text-transform: capitalize;
}

.category-filter .dropdown .dropdown-toggle i {
  margin-left: 10px;
  font-size: 10px;
}

.category-filter .dropdown .dropdown-menu {
  top: 96%;
}

.category-filter.visible-xs-block .dropdown {
  padding-top: 10px;
}

.category-filter.visible-xs-block .dropdown .dropdown-toggle {
  display: block;
  height: 30px;
  cursor: pointer;
}

.pagination {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #2a2a2a;
  font-family: "Open Sans";
}

.pagination .wrapper {
  display: table;
  border-spacing: 0px;
  height: 33px;
}

.pagination i {
  color: inherit;
}

.pagination ul {
  padding-left: 0px;
  display: inline-block;
}

.pagination ul li {
  list-style: none;
  padding-left: 0px;
  display: inline-block;
}

.pagination .prev-box,
.pagination .next-box,
.pagination .current-box {
  text-align: center;
  margin-bottom: 0px;
  width: 33px;
  height: 33px;
  overflow: hidden;
  border-spacing: 0;
  background-color: #f7f7f7;
  /* color overlay */
  display: table-cell;
  vertical-align: middle;
  color: #2a2a2a;
}

.pagination .prev-box,
.pagination .next-box {
  transition: color 0.6s ease;
}

.pagination .prev-box:hover,
.pagination .next-box:hover {
  color: #27558b;
}

.pagination .total-box {
  min-width: 30px;
  display: table-cell;
  vertical-align: middle;
}

.pagination .total-box span {
  letter-spacing: 3px;
  margin: 0 13px;
}

.pagination .total-box.infinite span {
  letter-spacing: 1.6px;
  margin: 0 13px 0 0;
}

.archive .post-password-form input[name="post_password"] {
  background-color: #ffffff;
}

.video-player {
  margin-bottom: 15px;
}

.featured-image-video {
  position: relative;
  cursor: pointer;
}

.featured-image-video:after {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/play-icon.png) no-repeat center center;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.featured-image-video:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
}

.featured-image-video + .video-container {
  display: none;
}

.template-large-images {
  background-color: #f7f7f7;
  margin-bottom: 45px;
}

.template-large-images.sticky .data {
  border-left: solid 3px #27558b;
  padding-left: 32px;
}

.template-large-images .data {
  padding: 35px;
}

.template-large-images .data > h2 {
  margin-top: 0px;
}

.template-large-images .data .categories {
  font-family: "Open Sans";
  color: #27558b;
  word-spacing: 3px;
  font-size: 13px;
  font-style: italic;
  padding-left: 0px;
  margin-bottom: 15px;
}

.template-large-images .data .categories li {
  list-style-type: none;
  display: inline-block;
}

.template-large-images .data .categories li a {
  color: #27558b;
}

.template-large-images .data .info {
  word-spacing: 3px;
  float: left;
  font-size: 13px;
  font-width: regular;
  padding-left: 0px;
  margin-bottom: 15px;
  margin-right: 30px;
}

.template-large-images .data .info li {
  list-style-type: none;
  display: inline-block;
  white-space: nowrap;
}

.template-large-images .data .info li a {
  font-size: 13px;
}

.template-large-images .data .social {
  word-spacing: 3px;
  float: left;
  font-style: italic;
  font-size: 13px;
  padding-left: 0px;
  margin-bottom: 15px;
}

.template-large-images .data .social:before,
.template-large-images .data .social:after {
  content: " ";
  display: table;
}

.template-large-images .data .social:after {
  clear: both;
}

.template-large-images .data .social > li {
  list-style-type: none;
  display: inline-block;
  margin-right: 20px;
}

.template-large-images .data .social > li > a {
  font-size: 13px;
}

.template-large-images .data .social > li > i,
.template-large-images .data .social > li > a > i {
  font-size: 11px;
}

.template-large-images .data .social > li .sshare-count {
  display: inline-block;
  margin: 0 5px;
}

.template-large-images .data .title {
  margin-bottom: 15px;
  word-spacing: 1px;
  font-weight: 600;
}

.template-large-images .data .title a {
  text-transform: none;
}

.template-large-images .data .excerpt {
  font-size: 13px;
  margin-bottom: 0px;
}

.template-large-images .data .excerpt p:last-of-type {
  margin-bottom: 0px;
}

.template-large-images .data .date {
  letter-spacing: 2px;
}

.template-medium-images {
  background-color: #f7f7f7;
  margin-bottom: 45px;
}

.template-medium-images.sticky .data {
  border-left: solid 3px #27558b;
  padding-left: 22px;
}

.template-medium-images .data {
  padding: 25px;
  overflow: hidden;
}

.template-medium-images .data > h2 {
  margin-top: 0px;
  font-size: 18px;
  line-height: 22px;
}

.template-medium-images .data .categories {
  font-family: "Open Sans";
  color: #27558b;
  word-spacing: 3px;
  font-size: 13px;
  font-style: italic;
  padding-left: 0px;
  margin-bottom: 15px;
}

.template-medium-images .data .categories li {
  list-style-type: none;
  display: inline-block;
}

.template-medium-images .data .categories li a {
  color: #27558b;
}

.template-medium-images .data .info {
  word-spacing: 3px;
  float: left;
  font-size: 13px;
  font-width: regular;
  padding-left: 0px;
  margin-bottom: 15px;
  margin-right: 20px;
}

.template-medium-images .data .info li {
  list-style-type: none;
  display: inline-block;
  white-space: nowrap;
}

.template-medium-images .data .info li a {
  font-size: 13px;
}

.template-medium-images .data .title {
  margin-top: 5px;
  margin-bottom: 15px;
  word-spacing: 1px;
  font-weight: 600;
}

.template-medium-images .data .title a {
  text-transform: none;
}

.template-medium-images .data .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  margin-bottom: 15px;
}

.template-medium-images .data .date {
  letter-spacing: 2px;
}

.template-medium-images .data .comments {
  font-style: italic;
  word-spacing: 3px;
}

.template-medium-images .data .comments i {
  font-size: 10px;
}

.template-medium-images .data.post-audio {
  padding-left: 25px;
}

.template-medium-images .data.post-audio .jp-audio-player {
  margin-bottom: 0;
  padding: 0 0 20px;
}

.template-medium-images .data.post-audio .jp-audio-player .seek-bar {
  width: 619px;
}

.grid:after {
  content: '';
  display: block;
  clear: both;
}

.grid.columns-1 article {
  width: 100%;
}

.grid.columns-2 article {
  width: 100%;
}

.grid.columns-3 article {
  width: 100%;
}

.grid.columns-4 article {
  width: 100%;
}

.grid.columns-5 article {
  width: 100%;
}

.grid .grid-sizer {
  width: 100%;
}

.grid .template-masonry {
  width: 100%;
  margin-bottom: 20px;
  background-color: #f7f7f7;
}

.grid .template-masonry.sticky .data {
  border-left: solid 3px #27558b;
  padding-left: 22px;
}

.grid .template-masonry .data {
  padding: 25px;
}

.grid .template-masonry .data > h2 {
  margin-top: 0px;
  font-size: 13px;
  line-height: 18px;
}

.grid .template-masonry .data .categories {
  font-family: "Open Sans";
  color: #27558b;
  word-spacing: 3px;
  font-size: 13px;
  font-style: italic;
  padding-left: 0px;
  margin-bottom: 15px;
}

.grid .template-masonry .data .categories li {
  list-style-type: none;
  display: inline-block;
}

.grid .template-masonry .data .categories li a {
  color: #27558b;
}

.grid .template-masonry .data .info {
  word-spacing: 3px;
  float: left;
  font-size: 13px;
  font-width: regular;
  padding-left: 0px;
  margin-bottom: 15px;
  margin-right: 30px;
}

.grid .template-masonry .data .info li {
  list-style-type: none;
  display: inline-block;
  white-space: nowrap;
}

.grid .template-masonry .data .info li a {
  font-size: 13px;
}

.grid .template-masonry .data .title {
  margin-bottom: 15px;
  word-spacing: 1px;
  font-weight: 600;
  line-height: 18px;
}

.grid .template-masonry .data .title a {
  text-transform: none;
}

.grid .template-masonry .data .excerpt {
  font-size: 13px;
  margin-bottom: 15px;
}

.grid .template-masonry .data .date {
  letter-spacing: 2px;
}

.grid .template-masonry .data .comments {
  font-style: italic;
  word-spacing: 3px;
}

.grid .template-masonry .data .comments i {
  font-size: 10px;
}

.post.new_item {
  opacity: 0;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .category-filter {
    top: 0px;
    position: relative;
  }

  .grid .grid-sizer {
    width: calc(50% - 10px);
  }

  .grid.columns-1 article {
    width: 100%;
  }

  .grid.columns-2 article {
    width: calc(50% - 10px);
  }

  .grid.columns-3 article {
    width: calc(50% - 10px);
  }

  .grid.columns-4 article {
    width: calc(50% - 10px);
  }

  .grid.columns-5 article {
    width: calc(50% - 10px);
  }

  .grid .template-masonry {
    width: calc(50% - 10px);
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .grid .grid-sizer {
    width: calc(33.33333333333334% - 14px);
  }

  .grid.columns-1 article {
    width: 100%;
  }

  .grid.columns-2 article {
    width: calc(50% - 10px);
  }

  .grid.columns-3 article {
    width: calc(33.33333333333334% - 14px);
  }

  .grid.columns-4 article {
    width: calc(25% - 15px);
  }

  .grid.columns-5 article {
    width: calc(25% - 15px);
  }

  .grid .template-masonry {
    width: calc(33.33333333333334% - 14px);
  }

  .template-medium-images .no-thumbnail .data {
    padding-left: 25px;
  }

  .template-medium-images .data {
    padding-left: 12px;
  }

  .template-medium-images .date {
    position: relative;
  }

  .template-medium-images .comments i {
    font-size: 10px;
  }
}

/* Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
  .grid.columns-1 article {
    width: 100%;
  }

  .grid.columns-2 article {
    width: calc(50% - 10px);
  }

  .grid.columns-3 article {
    width: calc(33.33333333333334% - 14px);
  }

  .grid.columns-4 article {
    width: calc(25% - 15px);
  }

  .grid.columns-5 article {
    width: calc(20% - 16px);
  }
}

body.single .post.type-post .featured-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

body.single .post.type-post .article-body {
  font-family: "Open Sans";
}

body.single .post.type-post .blog-author {
  font-family: "Open Sans";
}

body.single .post.type-post .blog-author .date {
  margin-right: 25px;
}

body.single .post.type-post .blog-author .categories {
  font-style: italic;
}

body.single .post.type-post .blog-author .author {
  display: block;
  margin-top: 8px;
}

body.single .post.type-post .blog-author .author a:after {
  font-family: "themesy";
  content: '\e630';
  font-size: 10px;
  margin-left: 8px;
}

body.single .post.type-post .social {
  margin-top: 30px;
}

body.single .post.type-post .social .sshare {
  float: left;
}

body.single .post.type-post .tags h3 {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

body.single .post.type-post .tags .tag-list a {
  font-family: "Open Sans";
  display: block;
  float: left;
  padding: 18px 22px;
  background-color: #f7f7f7;
  margin: 0px 1px 1px 0px;
  color: #2a2a2a;
  text-decoration: none;
  text-transform: capitalize;
}

body.single .post.type-post .tags .tag-list a:hover {
  background: #27558b;
  color: #ffffff;
}

body.single .post.type-post .post-paginator {
  margin: 80px 0 40px;
}

body.single .post.type-post .post-paginator .prev,
body.single .post.type-post .post-paginator .next {
  display: block;
  max-width: 300px;
  word-wrap: break-word;
}

body.single .post.type-post .post-paginator .prev span,
body.single .post.type-post .post-paginator .next span {
  color: #808080;
}

body.single .post.type-post .post-paginator .prev {
  text-align: right;
}

.post .title,
.post .excerpt,
.post .article-body,
.comment-content {
  word-wrap: break-word;
}

.post iframe.twitter-tweet {
  min-height: 186px;
}

.post .more-link {
  color: #27558b;
  text-decoration: none !important;
}

.post.type-post .comment-content a,
.page.type-page .comment-content a {
  text-decoration: underline;
}

.post.type-post table,
.page.type-page table {
  border-spacing: 15px;
  border-collapse: separate;
}

.post.type-post img,
.page.type-page img {
  max-width: 100%;
}

.post.type-post iframe,
.post.type-post embed,
.page.type-page iframe,
.page.type-page embed {
  max-width: 100%;
}

.post.type-post .gallery figure.gallery-item img,
.page.type-page .gallery figure.gallery-item img {
  display: inline-block;
}

.post.type-post .gallery figure.gallery-item figcaption,
.page.type-page .gallery figure.gallery-item figcaption {
  position: static;
  padding: 20px 10px;
}

/* Small devices (tablets, 768px and up) */

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  body.single .post.type-post .social {
    margin-top: 0px;
  }

  body.single .post.type-post .social .sshare {
    float: right;
  }
}

/* Large devices (large desktops, 1200px and up) */

.features {
  padding: 0px;
  max-width: 1700px;
  margin: 0 auto;
}

.features .feature {
  text-align: center;
  margin-bottom: 20px;
}

.features .feature img {
  width: 50%;
}

.features .feature div {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  word-spacing: 0.4em;
}

.features .feature div.hidden {
  display: none;
}

.features .feature.col-min {
  min-width: 120px;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .features {
    padding: 0 20px;
  }

  .features .feature.col-min {
    min-width: 180px;
  }
}

/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
  .features .feature.col-min {
    min-width: 190px;
  }
}

/* Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
  .carousel .logo {
    width: 436px;
  }
}

.portfolio-pager {
  float: left;
  margin-top: 2px;
  margin-right: 5px;
  font-size: 28px;
}

.portfolio-pager a {
  margin-right: 10px;
  color: #2a2a2a;
}

.portfolio-pager a:hover,
.portfolio-pager a:focus {
  color: #27558b;
}

.portfolio-pager a.disabled {
  color: #2a2a2a;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.project .single-project-content .vc_row {
  margin-left: -10px;
  margin-right: -10px;
}

.project .layout-left .website {
  margin: 30px 0 0;
}

.project .layout-left .information,
.project .layout-left .description,
.project .layout-left .sshare {
  margin: 40px 0 38px;
}

.project .gallery-full-images figure {
  margin: 0 0 50px;
}

.project .gallery-full-images figure:last-of-type {
  margin-bottom: 0;
}

.project .gallery-grid figure {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  padding-bottom: 63%;
  margin-bottom: 20px;
}

.project .gallery-grid figure img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  border: 0;
}

.project .gallery-slider .carousel .carousel-control {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border-radius: 18px;
  z-index: 10;
  line-height: 37px;
  font-size: 14px;
  transition: background-color 0.8s ease 0s;
  text-align: center;
  color: #2a2a2a;
  background: #ffffff;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.project .gallery-slider .carousel .carousel-control:hover {
  background: #ffffff;
  color: #2a2a2a;
  opacity: 1;
  filter: alpha(opacity=100);
}

.project .gallery-slider .carousel .carousel-control.right {
  right: 10px;
}

.project .gallery-slider .carousel .carousel-control.left {
  left: 10px;
}

.project .gallery-slider .carousel figure img,
.project .gallery-slider .carousel figure figcaption {
  transition-delay: 0.3s;
}

.project .gallery-slider .carousel figure img {
  width: 100%;
}

.project .project-post-like {
  margin: 0 15px 0 0;
  padding: 10px;
  background-color: #f7f7f7;
  outline: none;
  color: #2a2a2a;
  text-decoration: none;
  font-style: italic;
}

.project .project-post-like:hover {
  color: #27558b;
}

.project .project-post-like i {
  margin-right: 10px;
  color: inherit;
}

.project .categories {
  font-style: italic;
  color: #808080;
}

.project .categories a {
  color: #808080;
}

.project .categories a:hover {
  color: #27558b;
}

.project .description {
  margin: 22px 0;
  color: #2a2a2a;
}

.project .information p {
  color: #2a2a2a;
}

.project .information p:last-of-type {
  margin-bottom: 40px;
}

.project .website a {
  font-weight: bold;
  color: #2a2a2a;
}

.project .website a:hover {
  color: #27558b;
}

.project .container,
.project .post-password-form {
  padding-left: 0;
  padding-right: 0;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .portfolio-pager {
    margin-right: 20px;
  }

  .navbar-top .project .container,
  .navbar-top .project .post-password-form,
  .navbar-bottom .project .container,
  .navbar-bottom .project .post-password-form {
    width: 100%;
  }

  .navbar-left .project .container,
  .navbar-left .project .post-password-form,
  .navbar-right .project .container,
  .navbar-right .project .post-password-form {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.recent-work {
  overflow: hidden;
  margin-left: -10px !important;
  margin-right: -10px !important;
  padding: 0 0 0 0;
  max-width: 2560px;
  list-style: none;
  text-align: center;
}

.recent-work .no-gutter {
  margin: 0 auto;
}

.recent-work figure {
  height: 100%;
  position: relative;
  padding-bottom: 62.5%;
  background-size: cover;
  background-position: 50% 50%;
}

/* Small devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .recent-work {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Medium devices (desktops, 992px and up) */

/* Large devices (large desktops, 1200px and up) */

.template-search {
  background-color: #f7f7f7;
  margin-bottom: 45px;
}

.template-search .data {
  padding: 25px;
  overflow: hidden;
}

.template-search .data > h2 {
  margin-top: 0px;
  font-size: 18px;
  line-height: 22px;
}

.template-search .data .categories {
  font-family: "Open Sans";
  word-spacing: 3px;
  font-size: 13px;
  font-style: italic;
  padding-left: 0px;
  margin-bottom: 15px;
}

.template-search .data .categories li {
  list-style-type: none;
  display: inline-block;
}

.template-search .data .info {
  word-spacing: 3px;
  float: left;
  font-size: 13px;
  font-width: regular;
  padding-left: 0px;
  margin-bottom: 15px;
  margin-right: 20px;
}

.template-search .data .info li {
  list-style-type: none;
  display: inline-block;
}

.template-search .data .info li a {
  font-size: 13px;
}

.template-search .data .title {
  margin-top: 5px;
  margin-bottom: 15px;
  word-spacing: 1px;
  font-weight: 600;
}

.template-search .data .title a {
  text-transform: none;
}

.template-search .data .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  margin-bottom: 15px;
}

.template-search .data .date {
  letter-spacing: 2px;
}

.template-search .data .comments {
  font-style: italic;
  word-spacing: 3px;
}

.template-search .data.post-audio {
  padding-left: 25px;
}

.template-search .data.post-audio .jp-audio-player {
  margin-bottom: 0;
  padding: 0 0 20px;
}

.template-search .data.post-audio .jp-audio-player .seek-bar {
  width: 619px;
}

/* =Custom Font
-------------------------------------------------------------- */

@font-face {
  font-family: 'star';
  src: url("../fonts/woocommerce/star.eot");
  src: url("../fonts/woocommerce/star.eot?#iefix") format("embedded-opentype"), url("../fonts/woocommerce/star.woff") format("woff"), url("../fonts/woocommerce/star.ttf") format("truetype"), url("../fonts/woocommerce/star.svg#star") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* =Global styles/layout
-------------------------------------------------------------- */

.article-body > .woocommerce > .col-md-12 {
  padding-left: 0px;
  padding-right: 0px;
}

.wc-proceed-to-checkout {
  display: none;
}

.blockOverlay {
  background-color: rgba(0, 0, 0, 0.15);
  width: auto !important;
  display: retard !important;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 30px;
  margin: 0;
  position: relative;
  color: #2a2a2a;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  list-style: none outside;
  width: auto;
  background-color: #f7f7f7;
  margin-bottom: 30px;
  display: block;
  width: 100%;
  padding-left: 80px;
}

.woocommerce-message:before,
.woocommerce-message:after,
.woocommerce-error:before,
.woocommerce-error:after,
.woocommerce-info:before,
.woocommerce-info:after {
  content: " ";
  display: table;
}

.woocommerce-message:after,
.woocommerce-error:after,
.woocommerce-info:after {
  clear: both;
}

.woocommerce-message:before,
.woocommerce-error:before,
.woocommerce-info:before {
  content: 'i';
  font-family: 'Open Sans';
  color: #ffffff;
  background-color: #27558b;
  width: 30px;
  height: 30px;
  font-size: 13px;
  line-height: 30px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border-radius: 100%;
  text-transform: lowercase;
  margin-right: 20px;
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
}

.woocommerce-message div.message-content,
.woocommerce-error div.message-content,
.woocommerce-info div.message-content {
  font-family: "Open Sans";
  display: block;
  vertical-align: middle;
  text-align: left;
  margin: 0px;
  padding-right: 20px;
  width: 100%;
}

.woocommerce-message div.action,
.woocommerce-error div.action,
.woocommerce-info div.action {
  padding-top: 20px;
  display: table-cell;
  vertical-align: middle;
}

.woocommerce-message div.action a.button,
.woocommerce-error div.action a.button,
.woocommerce-info div.action a.button {
  float: none;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-block;
}

.woocommerce-message li,
.woocommerce-error li,
.woocommerce-info li {
  list-style: none outside;
  padding-left: 0;
  margin-left: 0;
}

p.myaccount_user a {
  font-weight: bold;
}

p.demo_store {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  font-size: 1em;
  padding: .5em 0;
  text-align: center;
  background-image: linear-gradient(to bottom, #27558b 0%, #1c3d63 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF27558B', endColorstr='#FF1C3D63', GradientType=0);
  border: 1px solid #1c3d63;
  color: #2a2a2a;
  z-index: 99998;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.admin-bar p.demo_store {
  top: 28px;
}

.woocommerce,
.woocommerce-page {
  /* =Product Page
  -------------------------------------------------------------- */
  /* Sale labels */
  /* Product Social Share */
  /* Product Description */
  /* Product loops */
  /* =Buttons
  -------------------------------------------------------------- */
  /* =Quantity inputs
  -------------------------------------------------------------- */
  /* =Reviews/comments
  -------------------------------------------------------------- */
  /* Product Meta */
  /* Star rating */
  /* =Tables
  -------------------------------------------------------------- */
  /* =Cart
  -------------------------------------------------------------- */
  /* =Cart Sidebar
  -------------------------------------------------------------- */
  /* =Cart Page
  -------------------------------------------------------------- */
  /* =Forms
  -------------------------------------------------------------- */
  /* =Checkout
  -------------------------------------------------------------- */
  /* Payment box - appears on checkout and page page */
  /* =Order Page
  -------------------------------------------------------------- */
  /* =Account Page
  -------------------------------------------------------------- */
  /* =Layered Nav Widget
  -------------------------------------------------------------- */
  /* =Price Filter Widget
  -------------------------------------------------------------- */
}

.woocommerce .product-category,
.woocommerce-page .product-category {
  list-style: none;
}

.woocommerce .product-category a h3,
.woocommerce-page .product-category a h3 {
  margin-top: 15px !important;
}

.woocommerce .product-category a h3 .count,
.woocommerce-page .product-category a h3 .count {
  border-bottom: none;
}

.woocommerce small.note,
.woocommerce-page small.note {
  display: block;
  color: #808080;
  font-size: 11px;
  line-height: 21px;
  margin-top: 10px;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb {
  margin: 0 0 1em;
  padding: 0;
  font-size: 0.92em;
  color: #808080;
}

.woocommerce .woocommerce-breadcrumb:before,
.woocommerce .woocommerce-breadcrumb:after,
.woocommerce-page .woocommerce-breadcrumb:before,
.woocommerce-page .woocommerce-breadcrumb:after {
  content: " ";
  display: table;
}

.woocommerce .woocommerce-breadcrumb:after,
.woocommerce-page .woocommerce-breadcrumb:after {
  clear: both;
}

.woocommerce .woocommerce-breadcrumb a,
.woocommerce-page .woocommerce-breadcrumb a {
  color: #808080;
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
  width: 100%;
}

.woocommerce .col2-set:before,
.woocommerce .col2-set:after,
.woocommerce-page .col2-set:before,
.woocommerce-page .col2-set:after {
  content: " ";
  display: table;
}

.woocommerce .col2-set:after,
.woocommerce-page .col2-set:after {
  clear: both;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  float: right;
  width: 100%;
  margin-bottom: 20px;
}

.woocommerce div.product,
.woocommerce #content div.product,
.woocommerce-page div.product,
.woocommerce-page #content div.product {
  margin-bottom: 0px;
  position: relative;
  /* Main product title */
  /* Price */
  /* Stock */
  /* Product image and thumbnail */
  /* Summary div (contains title, price etc) */
  /* Social networking */
  /* Cart button */
  /* add to cart forms */
}

.woocommerce div.product .product_title,
.woocommerce #content div.product .product_title,
.woocommerce-page div.product .product_title,
.woocommerce-page #content div.product .product_title {
  clear: none;
  margin-top: 0;
  padding: 0;
}

.woocommerce div.product span.price,
.woocommerce div.product p.price,
.woocommerce #content div.product span.price,
.woocommerce #content div.product p.price,
.woocommerce-page div.product span.price,
.woocommerce-page div.product p.price,
.woocommerce-page #content div.product span.price,
.woocommerce-page #content div.product p.price {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px;
}

.woocommerce div.product span.price ins,
.woocommerce div.product p.price ins,
.woocommerce #content div.product span.price ins,
.woocommerce #content div.product p.price ins,
.woocommerce-page div.product span.price ins,
.woocommerce-page div.product p.price ins,
.woocommerce-page #content div.product span.price ins,
.woocommerce-page #content div.product p.price ins {
  background: inherit;
  text-decoration: none;
}

.woocommerce div.product span.price del,
.woocommerce div.product p.price del,
.woocommerce #content div.product span.price del,
.woocommerce #content div.product p.price del,
.woocommerce-page div.product span.price del,
.woocommerce-page div.product p.price del,
.woocommerce-page #content div.product span.price del,
.woocommerce-page #content div.product p.price del {
  font-size: 0.67em;
  color: fade(#595959, 50%);
}

.woocommerce div.product .info,
.woocommerce #content div.product .info,
.woocommerce-page div.product .info,
.woocommerce-page #content div.product .info {
  font-family: "Open Sans";
}

.woocommerce div.product .info a,
.woocommerce #content div.product .info a,
.woocommerce-page div.product .info a,
.woocommerce-page #content div.product .info a {
  transition: opacity 0.6s ease, color 0.6s ease;
}

.woocommerce div.product .info a .star-rating,
.woocommerce #content div.product .info a .star-rating,
.woocommerce-page div.product .info a .star-rating,
.woocommerce-page #content div.product .info a .star-rating {
  margin-top: 10px;
  transition: opacity 0.6s ease, color 0.6s ease;
}

.woocommerce div.product .info a.add_to_cart_button,
.woocommerce #content div.product .info a.add_to_cart_button,
.woocommerce-page div.product .info a.add_to_cart_button,
.woocommerce-page #content div.product .info a.add_to_cart_button {
  display: inline-block;
}

.woocommerce div.product .info h5,
.woocommerce #content div.product .info h5,
.woocommerce-page div.product .info h5,
.woocommerce-page #content div.product .info h5 {
  margin-bottom: 6px;
}

.woocommerce div.product .info h5 a:hover,
.woocommerce #content div.product .info h5 a:hover,
.woocommerce-page div.product .info h5 a:hover,
.woocommerce-page #content div.product .info h5 a:hover {
  color: #27558b;
}

.woocommerce div.product .info .amount,
.woocommerce #content div.product .info .amount,
.woocommerce-page div.product .info .amount,
.woocommerce-page #content div.product .info .amount {
  font-family: "Open Sans";
}

.woocommerce div.product .info a:hover .star-rating,
.woocommerce #content div.product .info a:hover .star-rating,
.woocommerce-page div.product .info a:hover .star-rating,
.woocommerce-page #content div.product .info a:hover .star-rating {
  color: #adadad;
}

.woocommerce div.product .info:hover a .star-rating,
.woocommerce #content div.product .info:hover a .star-rating,
.woocommerce-page div.product .info:hover a .star-rating,
.woocommerce-page #content div.product .info:hover a .star-rating {
  color: #adadad;
}

.woocommerce div.product .summary,
.woocommerce #content div.product .summary,
.woocommerce-page div.product .summary,
.woocommerce-page #content div.product .summary {
  margin-top: 30px;
}

.woocommerce div.product .summary p.price,
.woocommerce #content div.product .summary p.price,
.woocommerce-page div.product .summary p.price,
.woocommerce-page #content div.product .summary p.price {
  font-size: 22px;
  font-weight: 800;
  color: #2a2a2a;
}

.woocommerce div.product p.stock,
.woocommerce #content div.product p.stock,
.woocommerce-page div.product p.stock,
.woocommerce-page #content div.product p.stock {
  font-size: 13px;
}

.woocommerce div.product .stock,
.woocommerce #content div.product .stock,
.woocommerce-page div.product .stock,
.woocommerce-page #content div.product .stock {
  color: #27558b;
}

.woocommerce div.product .carousel figure img,
.woocommerce div.product .carousel figure figcaption,
.woocommerce #content div.product .carousel figure img,
.woocommerce #content div.product .carousel figure figcaption,
.woocommerce-page div.product .carousel figure img,
.woocommerce-page div.product .carousel figure figcaption,
.woocommerce-page #content div.product .carousel figure img,
.woocommerce-page #content div.product .carousel figure figcaption {
  transition-delay: 0.3s;
}

.woocommerce div.product .carousel .carousel-control,
.woocommerce #content div.product .carousel .carousel-control,
.woocommerce-page div.product .carousel .carousel-control,
.woocommerce-page #content div.product .carousel .carousel-control {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border-radius: 18px;
  z-index: 10;
  line-height: 37px;
  font-size: 14px;
  transition: background-color 0.8s ease;
  text-align: center;
  color: #2a2a2a;
  background: #ffffff;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.woocommerce div.product .carousel .carousel-control:hover,
.woocommerce #content div.product .carousel .carousel-control:hover,
.woocommerce-page div.product .carousel .carousel-control:hover,
.woocommerce-page #content div.product .carousel .carousel-control:hover {
  background: #ffffff;
  color: #2a2a2a;
  opacity: 1;
  filter: alpha(opacity=100);
}

.woocommerce div.product .carousel .carousel-control.left,
.woocommerce #content div.product .carousel .carousel-control.left,
.woocommerce-page div.product .carousel .carousel-control.left,
.woocommerce-page #content div.product .carousel .carousel-control.left {
  left: 10px;
}

.woocommerce div.product .carousel .carousel-control.left i,
.woocommerce #content div.product .carousel .carousel-control.left i,
.woocommerce-page div.product .carousel .carousel-control.left i,
.woocommerce-page #content div.product .carousel .carousel-control.left i {
  margin-right: 2px;
}

.woocommerce div.product .carousel .carousel-control.right,
.woocommerce #content div.product .carousel .carousel-control.right,
.woocommerce-page div.product .carousel .carousel-control.right,
.woocommerce-page #content div.product .carousel .carousel-control.right {
  right: 10px;
}

.woocommerce div.product .carousel .carousel-control.right i,
.woocommerce #content div.product .carousel .carousel-control.right i,
.woocommerce-page div.product .carousel .carousel-control.right i,
.woocommerce-page #content div.product .carousel .carousel-control.right i {
  margin-left: 2px;
}

.woocommerce div.product .summary .out-of-stock,
.woocommerce #content div.product .summary .out-of-stock,
.woocommerce-page div.product .summary .out-of-stock,
.woocommerce-page #content div.product .summary .out-of-stock {
  font-family: "Open Sans";
  color: #2a2a2a;
  margin-top: 30px;
  padding: 20px;
}

.woocommerce div.product .out-of-stock,
.woocommerce #content div.product .out-of-stock,
.woocommerce-page div.product .out-of-stock,
.woocommerce-page #content div.product .out-of-stock {
  font-family: "Open Sans";
  text-transform: uppercase;
  color: #5d5d5d;
  letter-spacing: 1px;
}

.woocommerce div.product div.images img,
.woocommerce #content div.product div.images img,
.woocommerce-page div.product div.images img,
.woocommerce-page #content div.product div.images img {
  display: block;
  width: 100%;
  height: auto;
}

.woocommerce div.product div.images div.thumbnails,
.woocommerce #content div.product div.images div.thumbnails,
.woocommerce-page div.product div.images div.thumbnails,
.woocommerce-page #content div.product div.images div.thumbnails {
  padding-top: 1em;
}

.woocommerce div.product div.images div.thumbnails:before,
.woocommerce div.product div.images div.thumbnails:after,
.woocommerce #content div.product div.images div.thumbnails:before,
.woocommerce #content div.product div.images div.thumbnails:after,
.woocommerce-page div.product div.images div.thumbnails:before,
.woocommerce-page div.product div.images div.thumbnails:after,
.woocommerce-page #content div.product div.images div.thumbnails:before,
.woocommerce-page #content div.product div.images div.thumbnails:after {
  content: " ";
  display: table;
}

.woocommerce div.product div.images div.thumbnails:after,
.woocommerce #content div.product div.images div.thumbnails:after,
.woocommerce-page div.product div.images div.thumbnails:after,
.woocommerce-page #content div.product div.images div.thumbnails:after {
  clear: both;
}

.woocommerce div.product div.images div.thumbnails a,
.woocommerce #content div.product div.images div.thumbnails a,
.woocommerce-page div.product div.images div.thumbnails a,
.woocommerce-page #content div.product div.images div.thumbnails a {
  float: left;
  width: 30.75%;
  margin-right: 3.8%;
}

.woocommerce div.product div.images div.thumbnails a.last,
.woocommerce #content div.product div.images div.thumbnails a.last,
.woocommerce-page div.product div.images div.thumbnails a.last,
.woocommerce-page #content div.product div.images div.thumbnails a.last {
  margin-right: 0;
}

.woocommerce div.product div.images div.thumbnails a.first,
.woocommerce #content div.product div.images div.thumbnails a.first,
.woocommerce-page div.product div.images div.thumbnails a.first,
.woocommerce-page #content div.product div.images div.thumbnails a.first {
  clear: both;
}

.woocommerce div.product div.summary div[itemprop='description'],
.woocommerce #content div.product div.summary div[itemprop='description'],
.woocommerce-page div.product div.summary div[itemprop='description'],
.woocommerce-page #content div.product div.summary div[itemprop='description'] {
  margin-top: 30px;
  line-height: 20px;
  color: #2a2a2a;
  letter-spacing: 1px;
}

.woocommerce div.product div.social,
.woocommerce #content div.product div.social,
.woocommerce-page div.product div.social,
.woocommerce-page #content div.product div.social {
  text-align: right;
  margin: 0 0 1em;
}

.woocommerce div.product div.social span,
.woocommerce #content div.product div.social span,
.woocommerce-page div.product div.social span,
.woocommerce-page #content div.product div.social span {
  margin: 0 0 0 2px;
}

.woocommerce div.product div.social span span,
.woocommerce #content div.product div.social span span,
.woocommerce-page div.product div.social span span,
.woocommerce-page #content div.product div.social span span {
  margin: 0;
}

.woocommerce div.product div.social span .stButton .chicklets,
.woocommerce #content div.product div.social span .stButton .chicklets,
.woocommerce-page div.product div.social span .stButton .chicklets,
.woocommerce-page #content div.product div.social span .stButton .chicklets {
  padding-left: 16px;
  width: 0;
}

.woocommerce div.product div.social iframe,
.woocommerce #content div.product div.social iframe,
.woocommerce-page div.product div.social iframe,
.woocommerce-page #content div.product div.social iframe {
  float: left;
  margin-top: 3px;
}

.woocommerce div.product .product-post-like,
.woocommerce #content div.product .product-post-like,
.woocommerce-page div.product .product-post-like,
.woocommerce-page #content div.product .product-post-like {
  margin-top: 20px;
  padding: 10px;
  background-color: #f7f7f7;
  outline: none;
  color: #2a2a2a;
  text-decoration: none;
  font-style: italic;
}

.woocommerce div.product .product-post-like i,
.woocommerce #content div.product .product-post-like i,
.woocommerce-page div.product .product-post-like i,
.woocommerce-page #content div.product .product-post-like i {
  margin-right: 10px;
  color: inherit;
}

.woocommerce div.product .product-post-like:hover,
.woocommerce #content div.product .product-post-like:hover,
.woocommerce-page div.product .product-post-like:hover,
.woocommerce-page #content div.product .product-post-like:hover {
  color: #27558b;
}

.woocommerce div.product p.cart,
.woocommerce #content div.product p.cart,
.woocommerce-page div.product p.cart,
.woocommerce-page #content div.product p.cart {
  margin-bottom: 2em;
}

.woocommerce div.product p.cart:before,
.woocommerce div.product p.cart:after,
.woocommerce #content div.product p.cart:before,
.woocommerce #content div.product p.cart:after,
.woocommerce-page div.product p.cart:before,
.woocommerce-page div.product p.cart:after,
.woocommerce-page #content div.product p.cart:before,
.woocommerce-page #content div.product p.cart:after {
  content: " ";
  display: table;
}

.woocommerce div.product p.cart:after,
.woocommerce #content div.product p.cart:after,
.woocommerce-page div.product p.cart:after,
.woocommerce-page #content div.product p.cart:after {
  clear: both;
}

.woocommerce div.product form.cart,
.woocommerce #content div.product form.cart,
.woocommerce-page div.product form.cart,
.woocommerce-page #content div.product form.cart {
  margin-top: 30px;
  width: 100%;
  padding: 21px 24px;
  background-color: #f7f7f7;
}

.woocommerce div.product form.cart:before,
.woocommerce div.product form.cart:after,
.woocommerce #content div.product form.cart:before,
.woocommerce #content div.product form.cart:after,
.woocommerce-page div.product form.cart:before,
.woocommerce-page div.product form.cart:after,
.woocommerce-page #content div.product form.cart:before,
.woocommerce-page #content div.product form.cart:after {
  content: " ";
  display: table;
}

.woocommerce div.product form.cart:after,
.woocommerce #content div.product form.cart:after,
.woocommerce-page div.product form.cart:after,
.woocommerce-page #content div.product form.cart:after {
  clear: both;
}

.woocommerce div.product form.cart div.quantity,
.woocommerce #content div.product form.cart div.quantity,
.woocommerce-page div.product form.cart div.quantity,
.woocommerce-page #content div.product form.cart div.quantity {
  float: left;
  margin: 11px 4px 0 0;
}

.woocommerce div.product form.cart table,
.woocommerce #content div.product form.cart table,
.woocommerce-page div.product form.cart table,
.woocommerce-page #content div.product form.cart table {
  border-width: 0 0 1px 0;
}

.woocommerce div.product form.cart table td,
.woocommerce #content div.product form.cart table td,
.woocommerce-page div.product form.cart table td,
.woocommerce-page #content div.product form.cart table td {
  padding-left: 0;
}

.woocommerce div.product form.cart table div.quantity,
.woocommerce #content div.product form.cart table div.quantity,
.woocommerce-page div.product form.cart table div.quantity,
.woocommerce-page #content div.product form.cart table div.quantity {
  float: none;
  margin: 0;
}

.woocommerce div.product form.cart table small.stock,
.woocommerce #content div.product form.cart table small.stock,
.woocommerce-page div.product form.cart table small.stock,
.woocommerce-page #content div.product form.cart table small.stock {
  display: block;
  float: none;
}

.woocommerce div.product form.cart .single_variation_wrap,
.woocommerce #content div.product form.cart .single_variation_wrap,
.woocommerce-page div.product form.cart .single_variation_wrap,
.woocommerce-page #content div.product form.cart .single_variation_wrap {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-align: right;
}

.woocommerce div.product form.cart .single_variation_wrap .single_variation,
.woocommerce #content div.product form.cart .single_variation_wrap .single_variation,
.woocommerce-page div.product form.cart .single_variation_wrap .single_variation,
.woocommerce-page #content div.product form.cart .single_variation_wrap .single_variation {
  padding: 15px 0;
}

.woocommerce div.product form.cart .single_variation_wrap .price,
.woocommerce #content div.product form.cart .single_variation_wrap .price,
.woocommerce-page div.product form.cart .single_variation_wrap .price,
.woocommerce-page #content div.product form.cart .single_variation_wrap .price {
  font-size: 27px;
  font-width: bold;
}

.woocommerce div.product form.cart .reset_variations,
.woocommerce #content div.product form.cart .reset_variations,
.woocommerce-page div.product form.cart .reset_variations,
.woocommerce-page #content div.product form.cart .reset_variations {
  float: right;
  padding-top: 15px;
  padding-bottom: 15px;
}

.woocommerce div.product form.cart .variations,
.woocommerce #content div.product form.cart .variations,
.woocommerce-page div.product form.cart .variations,
.woocommerce-page #content div.product form.cart .variations {
  margin-bottom: 0px;
  border: 0;
  font-family: "Open Sans";
  color: #2a2a2a;
  width: 100%;
}