@charset "UTF-8";
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-scale-multiple,
.la-ball-scale-multiple > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-ball-scale-multiple.la-dark {
  color: #000;
}
.la-ball-scale-multiple > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-ball-scale-multiple {
  width: 3.2rem;
  height: 3.2rem;
}
.la-ball-scale-multiple > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
  -moz-animation: ball-scale-multiple 1s 0s linear infinite;
  -o-animation: ball-scale-multiple 1s 0s linear infinite;
  animation: ball-scale-multiple 1s 0s linear infinite;
}
.la-ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -o-animation-delay: .2s;
  animation-delay: .2s;
}
.la-ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  -o-animation-delay: .4s;
  animation-delay: .4s;
}
.la-ball-scale-multiple.la-sm {
  width: 1.6rem;
  height: 1.6rem;
}
.la-ball-scale-multiple.la-sm > div {
  width: 1.6rem;
  height: 1.6rem;
}
.la-ball-scale-multiple.la-2x {
  width: 6.4rem;
  height: 6.4rem;
}
.la-ball-scale-multiple.la-2x > div {
  width: 6.4rem;
  height: 6.4rem;
}
.la-ball-scale-multiple.la-3x {
  width: 9.6rem;
  height: 9.6rem;
}
.la-ball-scale-multiple.la-3x > div {
  width: 9.6rem;
  height: 9.6rem;
}
/*
 * Animation
 */
@-webkit-keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: .75;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: .75;
  }
  100% {
    opacity: 0;
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: .75;
  }
  100% {
    opacity: 0;
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: .75;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-rotate,
.la-ball-rotate > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-ball-rotate {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-ball-rotate.la-dark {
  color: #333;
}
.la-ball-rotate > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-ball-rotate {
  width: 10px;
  height: 10px;
}
.la-ball-rotate > div {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation: ball-rotate-animation 1s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
  -moz-animation: ball-rotate-animation 1s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
  -o-animation: ball-rotate-animation 1s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
  animation: ball-rotate-animation 1s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
}
.la-ball-rotate > div:before,
.la-ball-rotate > div:after {
  position: absolute;
  width: inherit;
  height: inherit;
  margin: inherit;
  content: "";
  background: currentColor;
  border-radius: inherit;
  opacity: .8;
}
.la-ball-rotate > div:before {
  top: 0;
  left: -150%;
}
.la-ball-rotate > div:after {
  top: 0;
  left: 150%;
}
.la-ball-rotate.la-sm {
  width: 4px;
  height: 4px;
}
.la-ball-rotate.la-sm > div {
  width: 4px;
  height: 4px;
}
.la-ball-rotate.la-2x {
  width: 20px;
  height: 20px;
}
.la-ball-rotate.la-2x > div {
  width: 20px;
  height: 20px;
}
.la-ball-rotate.la-3x {
  width: 30px;
  height: 30px;
}
.la-ball-rotate.la-3x > div {
  width: 30px;
  height: 30px;
}
/*
 * Animation
 */
@-webkit-keyframes ball-rotate-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes ball-rotate-animation {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes ball-rotate-animation {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ball-rotate-animation {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-clip-rotate,
.la-ball-clip-rotate > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-ball-clip-rotate {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-ball-clip-rotate.la-dark {
  color: #333;
}
.la-ball-clip-rotate > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-ball-clip-rotate {
  width: 32px;
  height: 32px;
}
.la-ball-clip-rotate > div {
  width: 32px;
  height: 32px;
  background: transparent;
  border-width: 2px;
  border-bottom-color: transparent;
  border-radius: 100%;
  -webkit-animation: ball-clip-rotate 0.75s linear infinite;
  -moz-animation: ball-clip-rotate 0.75s linear infinite;
  -o-animation: ball-clip-rotate 0.75s linear infinite;
  animation: ball-clip-rotate 0.75s linear infinite;
}
.la-ball-clip-rotate.la-sm {
  width: 16px;
  height: 16px;
}
.la-ball-clip-rotate.la-sm > div {
  width: 16px;
  height: 16px;
  border-width: 1px;
}
.la-ball-clip-rotate.la-2x {
  width: 64px;
  height: 64px;
}
.la-ball-clip-rotate.la-2x > div {
  width: 64px;
  height: 64px;
  border-width: 4px;
}
.la-ball-clip-rotate.la-3x {
  width: 96px;
  height: 96px;
}
.la-ball-clip-rotate.la-3x > div {
  width: 96px;
  height: 96px;
  border-width: 6px;
}
/*
 * Animation
 */
@-webkit-keyframes ball-clip-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);
  }
}
@-moz-keyframes ball-clip-rotate {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes ball-clip-rotate {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ball-clip-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-line-scale,
.la-line-scale > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-line-scale {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-line-scale.la-dark {
  color: #333;
}
.la-line-scale > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-line-scale {
  width: 40px;
  height: 32px;
}
.la-line-scale > div {
  width: 4px;
  height: 32px;
  margin: 2px;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  -webkit-animation: line-scale 1.2s infinite ease;
  -moz-animation: line-scale 1.2s infinite ease;
  -o-animation: line-scale 1.2s infinite ease;
  animation: line-scale 1.2s infinite ease;
}
.la-line-scale > div:nth-child(1) {
  -webkit-animation-delay: -1.2s;
  -moz-animation-delay: -1.2s;
  -o-animation-delay: -1.2s;
  animation-delay: -1.2s;
}
.la-line-scale > div:nth-child(2) {
  -webkit-animation-delay: -1.1s;
  -moz-animation-delay: -1.1s;
  -o-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.la-line-scale > div:nth-child(3) {
  -webkit-animation-delay: -1s;
  -moz-animation-delay: -1s;
  -o-animation-delay: -1s;
  animation-delay: -1s;
}
.la-line-scale > div:nth-child(4) {
  -webkit-animation-delay: -0.9s;
  -moz-animation-delay: -0.9s;
  -o-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.la-line-scale > div:nth-child(5) {
  -webkit-animation-delay: -0.8s;
  -moz-animation-delay: -0.8s;
  -o-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.la-line-scale.la-sm {
  width: 20px;
  height: 16px;
}
.la-line-scale.la-sm > div {
  width: 2px;
  height: 16px;
  margin: 1px;
  margin-top: 0;
  margin-bottom: 0;
}
.la-line-scale.la-2x {
  width: 80px;
  height: 64px;
}
.la-line-scale.la-2x > div {
  width: 8px;
  height: 64px;
  margin: 4px;
  margin-top: 0;
  margin-bottom: 0;
}
.la-line-scale.la-3x {
  width: 120px;
  height: 96px;
}
.la-line-scale.la-3x > div {
  width: 12px;
  height: 96px;
  margin: 6px;
  margin-top: 0;
  margin-bottom: 0;
}
/*
 * Animation
 */
@-webkit-keyframes line-scale {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@-moz-keyframes line-scale {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    -moz-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@-o-keyframes line-scale {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    -o-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes line-scale {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    -moz-transform: scaleY(0.4);
    -o-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-square-spin,
.la-square-spin > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-square-spin {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-square-spin.la-dark {
  color: #333;
}
.la-square-spin > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-square-spin {
  width: 32px;
  height: 32px;
}
.la-square-spin > div {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  -moz-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  -o-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
.la-square-spin.la-sm {
  width: 16px;
  height: 16px;
}
.la-square-spin.la-2x {
  width: 64px;
  height: 64px;
}
.la-square-spin.la-3x {
  width: 96px;
  height: 96px;
}
/*
 * Animation
 */
@-webkit-keyframes square-spin {
  0% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
  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(360deg);
    transform: perspective(100px) rotateX(0) rotateY(360deg);
  }
}
@-moz-keyframes square-spin {
  0% {
    -moz-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
  25% {
    -moz-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -moz-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -moz-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -moz-transform: perspective(100px) rotateX(0) rotateY(360deg);
    transform: perspective(100px) rotateX(0) rotateY(360deg);
  }
}
@-o-keyframes square-spin {
  0% {
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
  25% {
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    transform: perspective(100px) rotateX(0) rotateY(360deg);
  }
}
@keyframes square-spin {
  0% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    -moz-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    -moz-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    -moz-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    -moz-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(360deg);
    -moz-transform: perspective(100px) rotateX(0) rotateY(360deg);
    transform: perspective(100px) rotateX(0) rotateY(360deg);
  }
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-timer,
.la-timer > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-timer {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-timer.la-dark {
  color: #333;
}
.la-timer > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-timer {
  width: 32px;
  height: 32px;
}
.la-timer > div {
  width: 32px;
  height: 32px;
  background: transparent;
  border-width: 2px;
  border-radius: 100%;
}
.la-timer > div:before,
.la-timer > div:after {
  position: absolute;
  top: 14px;
  left: 14px;
  display: block;
  width: 2px;
  margin-top: -1px;
  margin-left: -1px;
  content: "";
  background: currentColor;
  border-radius: 2px;
  -webkit-transform-origin: 1px 1px 0;
  -moz-transform-origin: 1px 1px 0;
  -ms-transform-origin: 1px 1px 0;
  -o-transform-origin: 1px 1px 0;
  transform-origin: 1px 1px 0;
  -webkit-animation: timer-loader 1250ms infinite linear;
  -moz-animation: timer-loader 1250ms infinite linear;
  -o-animation: timer-loader 1250ms infinite linear;
  animation: timer-loader 1250ms infinite linear;
  -webkit-animation-delay: -625ms;
  -moz-animation-delay: -625ms;
  -o-animation-delay: -625ms;
  animation-delay: -625ms;
}
.la-timer > div:before {
  height: 12px;
}
.la-timer > div:after {
  height: 8px;
  -webkit-animation-duration: 15s;
  -moz-animation-duration: 15s;
  -o-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-delay: -7.5s;
  -moz-animation-delay: -7.5s;
  -o-animation-delay: -7.5s;
  animation-delay: -7.5s;
}
.la-timer.la-sm {
  width: 16px;
  height: 16px;
}
.la-timer.la-sm > div {
  width: 16px;
  height: 16px;
  border-width: 1px;
}
.la-timer.la-sm > div:before,
.la-timer.la-sm > div:after {
  top: 7px;
  left: 7px;
  width: 1px;
  margin-top: -0.5px;
  margin-left: -0.5px;
  border-radius: 1px;
  -webkit-transform-origin: .5px .5px 0;
  -moz-transform-origin: .5px .5px 0;
  -ms-transform-origin: .5px .5px 0;
  -o-transform-origin: .5px .5px 0;
  transform-origin: .5px .5px 0;
}
.la-timer.la-sm > div:before {
  height: 6px;
}
.la-timer.la-sm > div:after {
  height: 4px;
}
.la-timer.la-2x {
  width: 64px;
  height: 64px;
}
.la-timer.la-2x > div {
  width: 64px;
  height: 64px;
  border-width: 4px;
}
.la-timer.la-2x > div:before,
.la-timer.la-2x > div:after {
  top: 28px;
  left: 28px;
  width: 4px;
  margin-top: -2px;
  margin-left: -2px;
  border-radius: 4px;
  -webkit-transform-origin: 2px 2px 0;
  -moz-transform-origin: 2px 2px 0;
  -ms-transform-origin: 2px 2px 0;
  -o-transform-origin: 2px 2px 0;
  transform-origin: 2px 2px 0;
}
.la-timer.la-2x > div:before {
  height: 24px;
}
.la-timer.la-2x > div:after {
  height: 16px;
}
.la-timer.la-3x {
  width: 96px;
  height: 96px;
}
.la-timer.la-3x > div {
  width: 96px;
  height: 96px;
  border-width: 6px;
}
.la-timer.la-3x > div:before,
.la-timer.la-3x > div:after {
  top: 42px;
  left: 42px;
  width: 6px;
  margin-top: -3px;
  margin-left: -3px;
  border-radius: 6px;
  -webkit-transform-origin: 3px 3px 0;
  -moz-transform-origin: 3px 3px 0;
  -ms-transform-origin: 3px 3px 0;
  -o-transform-origin: 3px 3px 0;
  transform-origin: 3px 3px 0;
}
.la-timer.la-3x > div:before {
  height: 36px;
}
.la-timer.la-3x > div:after {
  height: 24px;
}
/*
 * Animation
 */
@-webkit-keyframes timer-loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes timer-loader {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes timer-loader {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes timer-loader {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-cog,
.la-cog > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-cog {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-cog.la-dark {
  color: #333;
}
.la-cog > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-cog {
  width: 31px;
  height: 31px;
}
.la-cog > div {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-style: dashed;
  border-width: 2px;
  border-radius: 100%;
  -webkit-animation: cog-rotate 4s linear infinite;
  -moz-animation: cog-rotate 4s linear infinite;
  -o-animation: cog-rotate 4s linear infinite;
  animation: cog-rotate 4s linear infinite;
}
.la-cog > div:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 2px solid currentColor;
  border-radius: 100%;
}
.la-cog.la-sm {
  width: 15px;
  height: 15px;
}
.la-cog.la-sm > div {
  border-width: 1px;
}
.la-cog.la-sm > div:after {
  border-width: 1px;
}
.la-cog.la-2x {
  width: 61px;
  height: 61px;
}
.la-cog.la-2x > div {
  border-width: 4px;
}
.la-cog.la-2x > div:after {
  border-width: 4px;
}
.la-cog.la-3x {
  width: 91px;
  height: 91px;
}
.la-cog.la-3x > div {
  border-width: 6px;
}
.la-cog.la-3x > div:after {
  border-width: 6px;
}
/*
 * Animation
 */
@-webkit-keyframes cog-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes cog-rotate {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes cog-rotate {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes cog-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-line-spin-clockwise-fade,
.la-line-spin-clockwise-fade > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-line-spin-clockwise-fade {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-line-spin-clockwise-fade.la-dark {
  color: #333;
}
.la-line-spin-clockwise-fade > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-line-spin-clockwise-fade {
  width: 32px;
  height: 32px;
}
.la-line-spin-clockwise-fade > div {
  position: absolute;
  width: 2px;
  height: 10px;
  margin: 2px;
  margin-top: -5px;
  margin-left: -1px;
  border-radius: 0;
  -webkit-animation: line-spin-clockwise-fade 1s infinite ease-in-out;
  -moz-animation: line-spin-clockwise-fade 1s infinite ease-in-out;
  -o-animation: line-spin-clockwise-fade 1s infinite ease-in-out;
  animation: line-spin-clockwise-fade 1s infinite ease-in-out;
}
.la-line-spin-clockwise-fade > div:nth-child(1) {
  top: 15%;
  left: 50%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation-delay: -0.875s;
  -moz-animation-delay: -0.875s;
  -o-animation-delay: -0.875s;
  animation-delay: -0.875s;
}
.la-line-spin-clockwise-fade > div:nth-child(2) {
  top: 25.2512626585%;
  left: 74.7487373415%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation-delay: -0.75s;
  -moz-animation-delay: -0.75s;
  -o-animation-delay: -0.75s;
  animation-delay: -0.75s;
}
.la-line-spin-clockwise-fade > div:nth-child(3) {
  top: 50%;
  left: 85%;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation-delay: -0.625s;
  -moz-animation-delay: -0.625s;
  -o-animation-delay: -0.625s;
  animation-delay: -0.625s;
}
.la-line-spin-clockwise-fade > div:nth-child(4) {
  top: 74.7487373415%;
  left: 74.7487373415%;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-animation-delay: -0.5s;
  -moz-animation-delay: -0.5s;
  -o-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.la-line-spin-clockwise-fade > div:nth-child(5) {
  top: 84.9999999974%;
  left: 50.0000000004%;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-delay: -0.375s;
  -moz-animation-delay: -0.375s;
  -o-animation-delay: -0.375s;
  animation-delay: -0.375s;
}
.la-line-spin-clockwise-fade > div:nth-child(6) {
  top: 74.7487369862%;
  left: 25.2512627193%;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-animation-delay: -0.25s;
  -moz-animation-delay: -0.25s;
  -o-animation-delay: -0.25s;
  animation-delay: -0.25s;
}
.la-line-spin-clockwise-fade > div:nth-child(7) {
  top: 49.9999806189%;
  left: 15.0000039834%;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-animation-delay: -0.125s;
  -moz-animation-delay: -0.125s;
  -o-animation-delay: -0.125s;
  animation-delay: -0.125s;
}
.la-line-spin-clockwise-fade > div:nth-child(8) {
  top: 25.2506949798%;
  left: 25.2513989292%;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -o-transform: rotate(315deg);
  transform: rotate(315deg);
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
.la-line-spin-clockwise-fade.la-sm {
  width: 16px;
  height: 16px;
}
.la-line-spin-clockwise-fade.la-sm > div {
  width: 1px;
  height: 4px;
  margin-top: -2px;
  margin-left: 0;
}
.la-line-spin-clockwise-fade.la-2x {
  width: 64px;
  height: 64px;
}
.la-line-spin-clockwise-fade.la-2x > div {
  width: 4px;
  height: 20px;
  margin-top: -10px;
  margin-left: -2px;
}
.la-line-spin-clockwise-fade.la-3x {
  width: 96px;
  height: 96px;
}
.la-line-spin-clockwise-fade.la-3x > div {
  width: 6px;
  height: 30px;
  margin-top: -15px;
  margin-left: -3px;
}
/*
 * Animation
 */
@-webkit-keyframes line-spin-clockwise-fade {
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes line-spin-clockwise-fade {
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes line-spin-clockwise-fade {
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes line-spin-clockwise-fade {
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-scale-ripple-multiple,
.la-ball-scale-ripple-multiple > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-ball-scale-ripple-multiple {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-ball-scale-ripple-multiple.la-dark {
  color: #333;
}
.la-ball-scale-ripple-multiple > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-ball-scale-ripple-multiple {
  width: 32px;
  height: 32px;
}
.la-ball-scale-ripple-multiple > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: transparent;
  border-width: 2px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  -moz-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  -o-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
.la-ball-scale-ripple-multiple > div:nth-child(1) {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
.la-ball-scale-ripple-multiple > div:nth-child(2) {
  -webkit-animation-delay: .25s;
  -moz-animation-delay: .25s;
  -o-animation-delay: .25s;
  animation-delay: .25s;
}
.la-ball-scale-ripple-multiple > div:nth-child(3) {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  -o-animation-delay: .5s;
  animation-delay: .5s;
}
.la-ball-scale-ripple-multiple.la-sm {
  width: 16px;
  height: 16px;
}
.la-ball-scale-ripple-multiple.la-sm > div {
  width: 16px;
  height: 16px;
  border-width: 1px;
}
.la-ball-scale-ripple-multiple {
  width: 64px;
  height: 64px;
}
.la-ball-scale-ripple-multiple > div {
  width: 64px;
  height: 64px;
  border-width: 4px;
}
.la-ball-scale-ripple-multiple.la-3x {
  width: 96px;
  height: 96px;
}
.la-ball-scale-ripple-multiple.la-3x > div {
  width: 96px;
  height: 96px;
  border-width: 6px;
}
/*
 * Animation
 */
@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: .5;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  95% {
    opacity: 0;
  }
}
@-moz-keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    -moz-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: .5;
    -moz-transform: scale(1);
    transform: scale(1);
  }
  95% {
    opacity: 0;
  }
}
@-o-keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    -o-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: .5;
    -o-transform: scale(1);
    transform: scale(1);
  }
  95% {
    opacity: 0;
  }
}
@keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -o-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: .5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  95% {
    opacity: 0;
  }
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-beat,
.la-ball-beat > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-ball-beat {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-ball-beat.la-dark {
  color: #333;
}
.la-ball-beat > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-ball-beat {
  width: 54px;
  height: 18px;
}
.la-ball-beat > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  -webkit-animation: ball-beat 0.7s -0.15s infinite linear;
  -moz-animation: ball-beat 0.7s -0.15s infinite linear;
  -o-animation: ball-beat 0.7s -0.15s infinite linear;
  animation: ball-beat 0.7s -0.15s infinite linear;
}
.la-ball-beat > div:nth-child(2n-1) {
  -webkit-animation-delay: -0.5s;
  -moz-animation-delay: -0.5s;
  -o-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.la-ball-beat.la-sm {
  width: 26px;
  height: 8px;
}
.la-ball-beat.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}
.la-ball-beat.la-2x {
  width: 108px;
  height: 36px;
}
.la-ball-beat.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}
.la-ball-beat.la-3x {
  width: 162px;
  height: 54px;
}
.la-ball-beat.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}
/*
 * Animation
 */
@-webkit-keyframes ball-beat {
  50% {
    opacity: .2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes ball-beat {
  50% {
    opacity: .2;
    -moz-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes ball-beat {
  50% {
    opacity: .2;
    -o-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-beat {
  50% {
    opacity: .2;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -o-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.la-class {
  position: fixed;
  right: 1rem;
  top: 0rem;
  display: none;
  font-size: 0;
  color: #fff;
  z-index: 6;
}
.la-ball-rotate {
  top: 3rem;
  width: 4rem;
}
.la-ball-clip-rotate,
.la-line-scale,
.la-square-spin,
.la-timer,
.la-cog,
.la-line-spin-clockwise-fade,
.la-ball-beat,
.la-ball-scale-ripple-multiple {
  top: 1rem;
}
body:not(.firstLoad) .la-ball-scale-ripple-multiple {
  width: 32px;
  height: 32px;
}
body:not(.firstLoad) .la-ball-scale-ripple-multiple > div {
  width: 32px;
  height: 32px;
}
.light-layout .la-class {
  color: #000;
}
@font-face {
  font-family: "Mesh Font";
  src: url("../fonts/mesh-font.eot");
  src: url("../fonts/mesh-font.eot?#iefix") format("embedded-opentype"), url("../fonts/mesh-font.woff") format("woff"), url("../fonts/mesh-font.ttf") format("truetype"), url("../fonts/mesh-font.svg#Mesh Font") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "Mesh Font" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "Mesh Font" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-cart-ico-mesh-01:before {
  content: "\61";
}
.icon-playlist-ico-mesh-01:before {
  content: "\62";
}
.icon-user-01:before {
  content: "\63";
}
.icon {
  font-size: 2.5rem;
  height: 1.5rem;
}
.cart-header .icon {
  position: relative;
  top: 0.6rem;
  width: 1.7rem;
  left: -0.8rem;
}
.user-log-in .icon {
  position: relative;
  top: 0.7rem;
  width: 5rem;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1rem;
  font: inherit;
  font-family: "Montserrat", Helvetica, Arial, sans-serif, Helvetica, Arial, sans-serif;
  font-weight: 400;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  padding-left: 2rem;
}
ul {
  list-style-type: square;
}
ol {
  list-style-type: decimal;
}
body {
  line-height: 1;
}
blockquote > p:before,
blockquote > p:after,
q > p:before,
q > p:after {
  content: '"';
  margin: 0 3px;
}
dd {
  margin-bottom: 1rem;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  height: auto;
  max-width: 100%;
}
*,
*:focus,
*:active {
  outline: none;
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: all 0.2s ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: all 0.2s ease-in-out;
  transition-duration: all 0.2s ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 800px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 800px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Montserrat", Helvetica, Arial, sans-serif, monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 0;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 0;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 800px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 1030px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 800px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1030px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 799px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition-duration: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 800px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 800px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 800px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
    font-size: 18px;
  }
}
@media (min-width: 800px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: opacity 0.15s linear;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: opacity 0.15s linear;
  transition-duration: opacity 0.15s linear;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 800px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 0;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 0 0 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 800px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 800px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 0;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 800px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 800px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 800px) {
  .navbar {
    border-radius: 0;
  }
}
@media (min-width: 800px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 800px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 500px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 800px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 800px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 800px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 800px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 800px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 799px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 800px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 800px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 799px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 800px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 800px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 800px) {
  .navbar-left {
    float: left !important;
    float: left;
  }
  .navbar-right {
    float: right !important;
    float: right;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}
@media (max-width: 799px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #fff;
}
@media (max-width: 799px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 0;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #ccc;
}
.breadcrumb > .active {
  color: #777777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 0;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #337ab7;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 3;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #fff;
  cursor: not-allowed;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 800px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: border 0.2s ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: border 0.2s ease-in-out;
  transition-duration: border 0.2s ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 0;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: width 0.6s ease;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: width 0.6s ease;
  transition-duration: width 0.6s ease;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: -1;
  border-top-left-radius: -1;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: -1;
  border-top-left-radius: -1;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: -1;
  border-top-left-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: -1;
  border-top-right-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: -1;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: -1;
  border-bottom-right-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: -1;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -moz-transform: translate(0, -25%);
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 800px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 1030px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.6s ease-in-out left;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.6s ease-in-out left;
  transition-duration: 0.6s ease-in-out left;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 800px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 799px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 799px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 799px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 799px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 800px) and (max-width: 1029px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 800px) and (max-width: 1029px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 800px) and (max-width: 1029px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 800px) and (max-width: 1029px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1030px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1030px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 1030px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 1030px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 799px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 800px) and (max-width: 1029px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 1030px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.form-control,
select,
input[type=text],
input[type=number],
input[type=tel],
input[type=search],
input[type=email],
input[type=password],
textarea,
.post-password-form input[type=password],
.cart-collaterals .input-text,
.create-account .input-text,
.login .input-text {
  margin-bottom: 2rem;
  display: block;
  width: 100%;
  line-height: 2rem;
  padding: 1.2rem 2.5rem;
  font-size: 1.4rem;
  color: #999;
  border: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  background-color: #353535;
  background-image: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: border-color ease-in-out 0.3s, box-shadow ease-in-out .15s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: border-color ease-in-out 0.3s, box-shadow ease-in-out .15s;
  transition-duration: border-color ease-in-out 0.3s, box-shadow ease-in-out .15s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: border-color ease-in-out 0.3s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out 0.3s, box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out 0.3s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out 0.3s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out 0.3s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out 0.3s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}
.form-control::-webkit-input-placeholder,
select::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
.post-password-form input[type=password]::-webkit-input-placeholder,
.cart-collaterals .input-text::-webkit-input-placeholder,
.create-account .input-text::-webkit-input-placeholder,
.login .input-text::-webkit-input-placeholder {
  line-height: 1.9rem;
}
.form-control:-moz-placeholder,
select:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder,
.post-password-form input[type=password]:-moz-placeholder,
.cart-collaterals .input-text:-moz-placeholder,
.create-account .input-text:-moz-placeholder,
.login .input-text:-moz-placeholder {
  /* Firefox 18- */
  line-height: 1.9rem;
}
.form-control::-moz-placeholder,
select::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder,
.post-password-form input[type=password]::-moz-placeholder,
.cart-collaterals .input-text::-moz-placeholder,
.create-account .input-text::-moz-placeholder,
.login .input-text::-moz-placeholder {
  /* Firefox 19+ */
  line-height: 1.9rem;
}
.form-control:-ms-input-placeholder,
select:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
.post-password-form input[type=password]:-ms-input-placeholder,
.cart-collaterals .input-text:-ms-input-placeholder,
.create-account .input-text:-ms-input-placeholder,
.login .input-text:-ms-input-placeholder {
  line-height: 1.9rem;
}
input[type=submit],
button[type=submit] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  border: none;
  line-height: 1.2rem;
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  padding: 1.55rem 2.5rem;
  background: #9f2a06;
}
input[type=submit]:hover,
button[type=submit]:hover {
  background: #ff3c00;
}
.alert .icon-alert {
  float: left;
  margin-right: 15px;
}
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
table > caption + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > th,
table > thead:first-child > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.nav-links {
  text-align: center;
  margin: 4rem 0;
}
.nav-links a,
.nav-links > span {
  margin: 0 0.5rem;
  font-size: 1.4rem;
  color: #f5f5f5;
  background: transparent;
  border: none;
  display: inline-block;
  padding: 0.6rem 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.42857143;
  text-align: center;
  min-width: 3.2rem;
}
.nav-links a:hover,
.nav-links > span:hover {
  background: #353535;
  color: #fff;
}
.nav-links a.current,
.nav-links > span.current {
  background: #353535;
}
.pager li > a,
.pager li > span {
  margin: 0 0.5rem;
  font-size: 1.4rem;
  color: #f5f5f5;
  background: transparent;
  border: none;
  display: inline-block;
  padding: 0.6rem 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.42857143;
  text-align: center;
  min-width: 3.2rem;
}
.pager li > a:hover,
.pager li > span:hover {
  background: #353535;
  color: #fff;
}
.pager li > a.current,
.pager li > span.current {
  background: #353535;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
html {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
html.is-mobile {
  overflow-y: auto;
}
html body {
  background-color: #1c1c1c;
  font-family: "Montserrat", Helvetica, Arial, sans-serif, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: #fff;
  z-index: 1;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
html body p {
  margin-bottom: 2rem;
}
html body > * {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  opacity: 0;
}
html body .fixed-page-bg {
  display: none;
}
html body.fixed-bg .fixed-page-bg {
  display: block;
  position: fixed;
  z-index: -1000;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-size: cover;
  background-position: center;
}
html body > .fluid-width-video-wrapper {
  padding-top: 0 !important;
}
html body .YTPOverlay {
  background: rgba(0, 0, 0, 0.8);
}
html body.firstLoad .la-class {
  display: block !important;
  left: 50%;
  top: 50% !important;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1 !important;
}
html .footer-forced-to-bottom .main-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
html.has-player body {
  padding-bottom: 5.7rem;
}
html.has-player .footer-forced-to-bottom .main-footer {
  bottom: 5.7rem;
}
html.loading .ajax-update-content {
  opacity: 0;
  visibility: hidden;
  margin-top: 25rem;
}
html.loading .la-class {
  display: block;
}
html.transition-time .page-bg-container.fixed-bg .bg {
  opacity: 0;
}
html.transition-time .breadcrumb-page,
html.transition-time .overlay-for-image-bg {
  opacity: 0 !important;
}
html.loaded body > * {
  opacity: 1;
}
label {
  font-weight: 400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.without-feature-image-slider {
  padding-top: 25rem;
}
@media (max-width: 1030px) {
  body {
    padding-left: 5rem;
  }
  .without-feature-image-slider {
    padding-top: 10rem;
  }
  html.has-player body {
    padding-bottom: 6.45rem;
  }
  html.has-player .footer-forced-to-bottom .main-footer {
    bottom: 6.45rem;
  }
}
.light-layout .ajax-update-content .light-bigger .count-down-event.independent > div span {
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  opacity: 1;
  font-size: 1.4rem !important;
  font-family: 'Open Sans';
  text-shadow: 0 3px 3px rgba(66, 73, 85, 0.2);
  margin-top: 0.8rem !important;
}
.light-layout .ajax-update-content .light-bigger .count-down-event.independent > div span.time-item {
  text-shadow: 0 3px 3px rgba(66, 73, 85, 0.2);
  color: #fff;
  font-size: 3.4rem !important;
  font-weight: 700;
  margin-top: 0 !important;
}
.light-bigger .count-down-event.independent > div {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.rev-btn.rev-withicon i {
  margin-left: 0 !important;
  margin-right: 10px !important;
}
.rev-btn.rev-withicon i {
  -webkit-transition: all 0s ease-out !important;
  -moz-transition: all 0s ease-out !important;
  -o-transition: all 0s ease-out !important;
  -ms-transition: all 0s ease-out !important;
}
@media (max-width: 500px) {
  .light-layout .ajax-update-content .light-bigger .count-down-event.independent > div span.time-item {
    font-size: 2.4rem !important;
  }
  .light-layout .ajax-update-content .light-bigger .count-down-event.independent {
    margin-top: 1rem !important;
  }
  .light-layout .ajax-update-content .light-bigger .count-down-event.independent > div span {
    font-size: 1.1rem !important;
  }
  .festival-light-button {
    margin-top: 6rem !important;
    padding: 0.5rem 2rem !important;
    position: relative !important;
  }
  .festival-light-button.first {
    left: -5rem !important;
  }
  .festival-light-button.last {
    right: -5rem !important;
  }
}
.clear {
  clear: both;
}
.related.products {
  padding: 0 1.5rem;
}
.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
  width: 50% !important;
}
.up-sells.upsells.products {
  padding: 0 1.5rem;
}
.woocommerce .shop_table.order_details {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
}
.woocommerce .shop_table.order_details tbody tr > * {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
.woocommerce .shop_table.order_details td.product-name dl.variation dd {
  margin-bottom: 0 !important;
}
.woocommerce .shop_table.customer_details {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
}
.woocommerce .shop_table.customer_details tbody tr > * {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
.woocommerce .shop_table.customer_details tbody tr:last-child > * {
  border-bottom: none !important;
}
.woocommerce .shop_table.customer_details td.product-name dl.variation dd {
  margin-bottom: 0 !important;
}
.woocommerce .woocommerce-thankyou-order-details {
  padding-left: 0;
}
.woocommerce .woocommerce-thankyou-order-details span,
.woocommerce .woocommerce-thankyou-order-details strong {
  font-weight: 600;
}
.woocommerce .summary.entry-summary p {
  font-size: 1.6rem;
  color: #919191;
  line-height: 2.1rem;
}
.woocommerce .summary.entry-summary .price {
  color: #ff3c00;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 3.6rem;
  line-height: 3.6rem;
}
.widget.widget_rating_filter .star-rating:before,
.widget.widget_recent_reviews .star-rating:before,
.widget.widget_top_rated_products .star-rating:before {
  color: rgba(255, 255, 255, 0.5);
}
.widget.widget_rating_filter .star-rating span:before,
.widget.widget_recent_reviews .star-rating span:before,
.widget.widget_top_rated_products .star-rating span:before {
  color: grey;
}
.widget.widget_product_categories ul li ul {
  padding-left: 0.3rem;
  display: inline-block;
}
div.product {
  margin-bottom: 0;
  position: relative;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
div.product form.cart:after,
div.product p.cart:after {
  clear: both;
  display: table;
  content: " ";
}
div.product .woocommerce-review-link {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
div.product p.price,
div.product span.price {
  margin-top: 2rem;
  font-size: 3.6rem;
  line-height: 3.6rem;
  font-weight: 300;
  color: #ff3c00;
}
div.product p.price *,
div.product span.price * {
  text-decoration: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
div.product div.product_meta span {
  display: block;
  margin-bottom: 1rem;
  color: #919191;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
div.product div.product_meta span a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #fff;
}
div.product p.price ins,
div.product span.price ins {
  background: inherit;
  font-weight: 400;
}
div.product p.price del,
div.product span.price del {
  opacity: .5;
  text-decoration: line-through;
  font-size: 2.6rem;
  line-height: 3.6rem;
}
div.product div.images,
div.product div.summary {
  margin-bottom: 2em;
  width: 50%;
  float: left;
  padding: 0 1.5rem;
}
div.product form.cart:before,
div.product p.cart:before {
  display: table;
  content: " ";
}
div.product form.cart,
div.product p.cart {
  margin-bottom: 2em;
}
div.product .product_title {
  clear: none;
  margin-top: 0;
  padding: 0;
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}
div.product p.stock {
  font-size: .92em;
}
div.product .stock {
  color: #77a464;
}
div.product .out-of-stock {
  color: red;
}
div.product .woocommerce-product-rating {
  margin-bottom: 1.618em;
}
div.product .woocommerce-product-rating .rating {
  display: none;
}
div.product div.images a {
  display: block;
}
div.product div.images > a img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
}
div.product div.images div.thumbnails {
  padding-top: 2rem;
  margin-left: -1rem;
  margin-right: -1rem;
}
div.product div.images div.thumbnails:after,
div.product div.images div.thumbnails:before {
  content: '';
  display: table;
}
div.product div.images div.thumbnails:after {
  clear: both;
}
div.product div.images div.thumbnails a {
  width: 33.333333333333333% !important;
  padding: 0 1rem 2rem 1rem;
  float: left;
  margin: 0 !important;
  clear: initial !important;
}
div.product div.images div.thumbnails a img {
  width: 100%;
}
div.product div.social {
  text-align: right;
  margin: 0 0 1em;
}
div.product div.social span {
  margin: 0 0 0 2px;
}
div.product div.social span span {
  margin: 0;
}
div.product div.social span .stButton .chicklets {
  padding-left: 16px;
  width: 0;
}
div.product div.social iframe {
  float: left;
  margin-top: 3px;
}
div.product .woocommerce-tabs {
  padding: 0 1.5rem;
}
div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 4rem 0 0 0;
  overflow: hidden;
  position: relative;
  padding-left: 0;
}
div.product .woocommerce-tabs ul.tabs li {
  display: inline-block;
  position: relative;
  z-index: 0;
  margin: 0 -5px;
}
div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 1.7rem 2.5rem;
  font-weight: 400;
  color: #919191;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.2rem;
}
div.product .woocommerce-tabs ul.tabs li a:hover {
  text-decoration: none;
  color: #6b6b6b;
}
div.product .woocommerce-tabs ul.tabs li.active {
  background: #353535;
  z-index: 2;
}
div.product .woocommerce-tabs ul.tabs li.active a {
  color: inherit;
  text-shadow: inherit;
}
div.product .woocommerce-tabs .panel {
  margin: 0;
  padding: 2.3rem;
  background: #353535;
}
div.product .woocommerce-tabs .panel h2 {
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 1.4rem;
  padding: 0 0 2rem 0;
}
div.product .woocommerce-tabs .panel p {
  color: #919191;
  font-size: 1.6rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 2.4rem;
}
div.product .woocommerce-tabs .panel p:last-of-type {
  margin-bottom: 0;
}
div.product form.cart div.quantity {
  float: left;
  margin: 0 4px 0 0;
}
div.product form.cart div.quantity input {
  width: 7rem;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
div.product form.cart button[type=submit] {
  background: #7e1e01;
}
div.product form.cart button[type=submit]:hover {
  background: #ff3c00;
}
div.product form.cart table {
  border-width: 0 0 1px;
}
div.product form.cart table td {
  padding-left: 0;
}
div.product form.cart table div.quantity {
  float: none;
  margin: 0;
}
div.product form.cart table small.stock {
  display: block;
  float: none;
}
div.product form.cart .variations {
  margin-bottom: 1em;
  border: 0;
}
div.product form.cart .variations td {
  border: 0;
  vertical-align: top;
}
div.product form.cart .variations th {
  border: 0;
}
div.product form.cart .variations select {
  width: 50%;
  margin-bottom: 0.5rem;
}
div.product form.cart .variations .reset_variations {
  display: block;
}
div.product form.cart .variations td.label {
  padding-right: 1em;
}
div.product form.cart .woocommerce-variation-description p {
  margin-bottom: 1em;
}
div.product form.cart .wc-no-matching-variations {
  display: none;
}
div.product form.cart .button {
  vertical-align: middle;
  float: left;
}
div.product form.cart .group_table td.label {
  padding-right: 1em;
  padding-left: 1em;
}
div.product form.cart .group_table td {
  vertical-align: top;
  padding-bottom: .5em;
  border: 0;
}
.woocommerce-checkout-review-order tr.cart-subtotal th,
.woocommerce-checkout-review-order tr.order-total th,
.woocommerce-checkout-review-order tr.cart-subtotal td span,
.woocommerce-checkout-review-order tr.order-total td span {
  font-weight: 300 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.woocommerce .col2-set {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.woocommerce .col2-set:before,
.woocommerce .col2-set:after {
  content: " ";
  display: table;
}
.woocommerce .col2-set:after {
  clear: both;
}
.woocommerce .col2-set:before,
.woocommerce .col2-set:after {
  content: " ";
  display: table;
}
.woocommerce .col2-set:after {
  clear: both;
}
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
  width: 50%;
  float: left;
  padding: 0 1.5rem;
}
#reviews #comments .add_review:before,
#reviews #comments ol.commentlist li .comment-text:before,
#reviews #comments ol.commentlist:before {
  content: " ";
  display: table;
}
#reviews #comments ol.commentlist li .comment-text:after,
#reviews #comments ol.commentlist:after {
  content: " ";
  display: table;
  clear: both;
}
#reviews #comments .add_review:after {
  clear: both;
  content: " ";
  display: table;
}
#reviews #comments h2 {
  clear: none;
}
#reviews #comments ol.commentlist {
  margin: 0;
  width: 100%;
  background: 0 0;
  list-style: none;
  padding-left: 0;
}
#reviews #comments ol.commentlist li {
  padding: 0;
  margin: 0 0 20px;
  position: relative;
  background: 0;
  border: 0;
}
#reviews #comments ol.commentlist li .meta {
  color: #777777;
  font-size: .75em;
}
#reviews #comments ol.commentlist li img.avatar {
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: auto;
  background: #ebe9eb;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#reviews #comments ol.commentlist li .comment-text {
  margin: 0 0 0 4.2rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  padding: 1em 1em 0;
}
#reviews #comments ol.commentlist li .comment-text p {
  margin: 0 0 1em;
}
#reviews #comments ol.commentlist li .comment-text p.meta {
  font-size: .83em;
}
#reviews #comments ol.commentlist ul.children {
  list-style: none;
  margin: 20px 0 0 50px;
}
#reviews #comments ol.commentlist ul.children .star-rating {
  display: none;
}
#reviews #comments ol.commentlist #respond {
  border: 1px solid #e4e1e3;
  border-radius: 4px;
  padding: 1em 1em 0;
  margin: 20px 0 0 50px;
}
#reviews #comments .commentlist > li:before {
  content: "";
}
#reviews h2 small {
  float: right;
  color: #777777;
  font-size: 15px;
  margin: 10px 0 0;
}
#reviews h2 small a {
  text-decoration: none;
  color: #777777;
}
#reviews h3 {
  margin: 0;
}
#reviews #respond {
  margin: 0;
  border: 0;
  padding: 0;
}
#reviews #comment {
  height: 75px;
}
.woocommerce-error:after,
.woocommerce-info:after,
.woocommerce-message:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button {
  float: right;
  margin: -1rem -2.5rem -1rem 0;
}
.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.woocommerce-error {
  color: #fff;
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 1em 2em 1em 3.5em !important;
  margin: 2rem 0 2em !important;
  position: relative;
  background-color: #353535;
  color: #515151;
  border-top: 3px solid #a46497;
  list-style: none !important;
  width: auto;
  word-wrap: break-word;
  border-top-color: #b81c23;
  color: #999;
}
.woocommerce-error a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.woocommerce-info {
  color: #fff;
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 1em 2em 1em 3.5em !important;
  margin: 2rem 0 2em !important;
  position: relative;
  background-color: #353535;
  color: #515151;
  border-top: 3px solid #a46497;
  list-style: none !important;
  width: auto;
  word-wrap: break-word;
  border-top-color: #1e85be;
  color: #999;
}
.woocommerce-info a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.woocommerce-message {
  color: #fff;
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 1em 2em 1em 3.5em !important;
  margin: 2rem 0 2em !important;
  position: relative;
  background-color: #353535;
  color: #515151;
  border-top: 3px solid #a46497;
  list-style: none !important;
  width: auto;
  word-wrap: break-word;
  border-top-color: #8fae1b;
  color: #999;
}
.woocommerce-message a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.woocommerce-error:before {
  content: " ";
  content: "\f12a";
  display: table;
  display: inline-block;
  font-family: FontAwesome;
  position: absolute;
  top: 1em;
  left: 1.5em;
  color: #b81c23;
}
.woocommerce-info:before {
  content: " ";
  content: "\f129";
  display: table;
  display: inline-block;
  font-family: FontAwesome;
  position: absolute;
  top: 1em;
  left: 1.5em;
  color: #1e85be;
}
.woocommerce-message:before {
  content: " ";
  content: "\f05d";
  display: table;
  display: inline-block;
  font-family: FontAwesome;
  position: absolute;
  top: 1em;
  left: 1.5em;
  color: #8fae1b;
}
.woocommerce .variations label,
.single-product .variations label {
  padding: 1.45rem 0;
  text-transform: capitalize;
  font-size: 1.6rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.woocommerce .variations select,
.single-product .variations select {
  height: 4.5rem;
}
.woocommerce .single_add_to_cart_button,
.single-product .single_add_to_cart_button {
  height: 4.4rem;
}
.woocommerce form.cart .variations td,
.single-product form.cart .variations td {
  vertical-align: baseline;
  padding-top: 0;
}
.woocommerce div.product form.cart .reset_variations,
.single-product div.product form.cart .reset_variations,
.woocommerce form .form-row label.hidden,
.single-product form .form-row label.hidden {
  visibility: hidden;
}
.woocommerce .blockUI.blockOverlay:before,
.single-product .blockUI.blockOverlay:before,
.woocommerce .loader:before,
.single-product .loader:before {
  height: 1em;
  width: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
  display: block;
  content: "";
  -webkit-animation: spin 1s ease-in-out infinite;
  -moz-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
  background: url(../img/icons/loader.svg) center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0, 0, 0, 0.75);
}
.woocommerce .products ul:after,
.single-product .products ul:after,
.woocommerce ul.products:after,
.single-product ul.products:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce .products ul,
.single-product .products ul,
.woocommerce ul.products,
.single-product ul.products {
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
  clear: both;
}
.woocommerce .products ul:before,
.single-product .products ul:before,
.woocommerce ul.products:before,
.single-product ul.products:before {
  content: " ";
  display: table;
}
.woocommerce .products ul li,
.single-product .products ul li,
.woocommerce ul.products li,
.single-product ul.products li {
  list-style: none;
}
.woocommerce .woocommerce-ordering,
.single-product .woocommerce-ordering,
.woocommerce .woocommerce-result-count,
.single-product .woocommerce-result-count {
  margin: 0 0 1em;
}
.woocommerce #respond input#submit,
.single-product #respond input#submit,
.woocommerce a.button,
.single-product a.button,
.woocommerce a.added_to_cart,
.single-product a.added_to_cart,
.woocommerce button.button,
.single-product button.button,
.woocommerce input.button,
.single-product input.button {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  border: none;
  line-height: 1.2rem;
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  padding: 1.55rem 2.5rem;
  background: #9f2a06;
}
.woocommerce #respond input#submit:hover,
.single-product #respond input#submit:hover,
.woocommerce a.button:hover,
.single-product a.button:hover,
.woocommerce a.added_to_cart:hover,
.single-product a.added_to_cart:hover,
.woocommerce button.button:hover,
.single-product button.button:hover,
.woocommerce input.button:hover,
.single-product input.button:hover {
  background: #ff3c00;
}
.woocommerce #respond input#submit.loading,
.single-product #respond input#submit.loading,
.woocommerce a.button.loading,
.single-product a.button.loading,
.woocommerce button.button.loading,
.single-product button.button.loading,
.woocommerce input.button.loading,
.single-product input.button.loading {
  opacity: .25;
  padding-right: 2.618em;
}
.woocommerce #respond input#submit.loading:after,
.single-product #respond input#submit.loading:after,
.woocommerce a.button.loading:after,
.single-product a.button.loading:after,
.woocommerce button.button.loading:after,
.single-product button.button.loading:after,
.woocommerce input.button.loading:after,
.single-product input.button.loading:after {
  font-family: WooCommerce;
  content: "\e01c";
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  position: absolute;
  top: .618em;
  right: 1em;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.woocommerce #respond input#submit.added:after,
.single-product #respond input#submit.added:after,
.woocommerce a.button.added:after,
.single-product a.button.added:after,
.woocommerce button.button.added:after,
.single-product button.button.added:after,
.woocommerce input.button.added:after,
.single-product input.button.added:after {
  font-family: WooCommerce;
  content: "\e017";
  margin-left: .53em;
  vertical-align: bottom;
}
.woocommerce #respond input#submit:hover,
.single-product #respond input#submit:hover,
.woocommerce a.button:hover,
.single-product a.button:hover,
.woocommerce button.button:hover,
.single-product button.button:hover,
.woocommerce input.button:hover,
.single-product input.button:hover {
  background-color: #dad8da;
  text-decoration: none;
  background-image: none;
  color: #515151;
}
.woocommerce #respond input#submit.alt:hover,
.single-product #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.single-product a.button.alt:hover,
.woocommerce button.button.alt:hover,
.single-product button.button.alt:hover,
.woocommerce input.button.alt:hover,
.single-product input.button.alt:hover {
  background-color: #ff3c00;
  color: #ffffff;
}
.woocommerce #respond input#submit.alt.disabled,
.single-product #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.single-product #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.single-product #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.single-product #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.single-product #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled] :hover,
.single-product #respond input#submit.alt:disabled[disabled] :hover,
.woocommerce a.button.alt.disabled,
.single-product a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.single-product a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.single-product a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.single-product a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.single-product a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled] :hover,
.single-product a.button.alt:disabled[disabled] :hover,
.woocommerce button.button.alt.disabled,
.single-product button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.single-product button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.single-product button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.single-product button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.single-product button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled] :hover,
.single-product button.button.alt:disabled[disabled] :hover,
.woocommerce input.button.alt.disabled,
.single-product input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.single-product input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.single-product input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.single-product input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.single-product input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled] :hover,
.single-product input.button.alt:disabled[disabled] :hover {
  background-color: #a46497;
  color: #ffffff;
}
.woocommerce #respond input#submit.disabled,
.single-product #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.single-product #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.single-product #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.single-product a.button.disabled,
.woocommerce a.button:disabled,
.single-product a.button:disabled,
.woocommerce a.button:disabled[disabled],
.single-product a.button:disabled[disabled],
.woocommerce button.button.disabled,
.single-product button.button.disabled,
.woocommerce button.button:disabled,
.single-product button.button:disabled,
.woocommerce button.button:disabled[disabled],
.single-product button.button:disabled[disabled],
.woocommerce input.button.disabled,
.single-product input.button.disabled,
.woocommerce input.button:disabled,
.single-product input.button:disabled,
.woocommerce input.button:disabled[disabled],
.single-product input.button:disabled[disabled] {
  color: inherit;
  cursor: not-allowed;
  opacity: .5;
}
.woocommerce #respond input#submit.disabled:hover,
.single-product #respond input#submit.disabled:hover,
.woocommerce #respond input#submit:disabled:hover,
.single-product #respond input#submit:disabled:hover,
.woocommerce #respond input#submit:disabled[disabled] :hover,
.single-product #respond input#submit:disabled[disabled] :hover,
.woocommerce a.button.disabled:hover,
.single-product a.button.disabled:hover,
.woocommerce a.button:disabled:hover,
.single-product a.button:disabled:hover,
.woocommerce a.button:disabled[disabled] :hover,
.single-product a.button:disabled[disabled] :hover,
.woocommerce button.button.disabled:hover,
.single-product button.button.disabled:hover,
.woocommerce button.button:disabled:hover,
.single-product button.button:disabled:hover,
.woocommerce button.button:disabled[disabled] :hover,
.single-product button.button:disabled[disabled] :hover,
.woocommerce input.button.disabled:hover,
.single-product input.button.disabled:hover,
.woocommerce input.button:disabled:hover,
.single-product input.button:disabled:hover,
.woocommerce input.button:disabled[disabled] :hover,
.single-product input.button:disabled[disabled] :hover {
  color: inherit;
  background-color: #ebe9eb;
}
.woocommerce ul.cart_list li dl:after,
.single-product ul.cart_list li dl:after,
.woocommerce ul.product_list_widget li dl:after,
.single-product ul.product_list_widget li dl:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce ul.cart_list li:after,
.single-product ul.cart_list li:after,
.woocommerce ul.product_list_widget li:after,
.single-product ul.product_list_widget li:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce ul.cart_list,
.single-product ul.cart_list,
.woocommerce ul.product_list_widget,
.single-product ul.product_list_widget {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce ul.cart_list li,
.single-product ul.cart_list li,
.woocommerce ul.product_list_widget li,
.single-product ul.product_list_widget li {
  padding: 4px 0;
  margin: 0;
  list-style: none;
}
.woocommerce ul.cart_list li:before,
.single-product ul.cart_list li:before,
.woocommerce ul.product_list_widget li:before,
.single-product ul.product_list_widget li:before {
  content: " ";
  display: table;
}
.woocommerce ul.cart_list li a,
.single-product ul.cart_list li a,
.woocommerce ul.product_list_widget li a,
.single-product ul.product_list_widget li a {
  display: block;
  font-weight: 400;
}
.woocommerce ul.cart_list li img,
.single-product ul.cart_list li img,
.woocommerce ul.product_list_widget li img,
.single-product ul.product_list_widget li img {
  float: right;
  margin-left: 4px;
  width: 32px;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.woocommerce ul.cart_list li dl,
.single-product ul.cart_list li dl,
.woocommerce ul.product_list_widget li dl,
.single-product ul.product_list_widget li dl {
  margin: 0;
  padding-left: 1em;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}
.woocommerce ul.cart_list li dl:before,
.single-product ul.cart_list li dl:before,
.woocommerce ul.product_list_widget li dl:before,
.single-product ul.product_list_widget li dl:before {
  content: " ";
  display: table;
}
.woocommerce ul.cart_list li dl dd,
.single-product ul.cart_list li dl dd,
.woocommerce ul.product_list_widget li dl dd,
.single-product ul.product_list_widget li dl dd {
  display: inline-block;
  float: left;
  margin-bottom: 0;
  padding: 0 0 .25em;
}
.woocommerce ul.cart_list li dl dt,
.single-product ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dt,
.single-product ul.product_list_widget li dl dt {
  display: inline-block;
  float: left;
  margin-bottom: 1em;
  font-weight: 400;
  padding: 0 0 .25em;
  margin: 0 4px 0 0;
  clear: left;
}
.woocommerce ul.cart_list li dl dd p:last-child,
.single-product ul.cart_list li dl dd p:last-child,
.woocommerce ul.product_list_widget li dl dd p:last-child,
.single-product ul.product_list_widget li dl dd p:last-child {
  margin-bottom: 0;
}
.woocommerce ul.cart_list li .star-rating,
.single-product ul.cart_list li .star-rating,
.woocommerce ul.product_list_widget li .star-rating,
.single-product ul.product_list_widget li .star-rating {
  float: none;
}
.woocommerce form.checkout_coupon,
.single-product form.checkout_coupon,
.woocommerce form.login,
.single-product form.login,
.woocommerce form.register,
.single-product form.register {
  border: 1px solid #353535;
  padding: 20px;
  margin: 2em 0;
  text-align: left;
  border-radius: 0;
}
.woocommerce .woocommerce-breadcrumb:after,
.single-product .woocommerce-breadcrumb:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce .blockUI.blockOverlay,
.single-product .blockUI.blockOverlay {
  position: relative;
}
.woocommerce a.remove,
.single-product a.remove {
  display: block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: red;
  text-decoration: none;
  font-weight: 400;
  border: 0;
}
.woocommerce a.remove:hover,
.single-product a.remove:hover {
  color: #ffffff !important;
  background: red;
}
.woocommerce small.note,
.single-product small.note {
  display: block;
  color: #777777;
  font-size: .857em;
  margin-top: 10px;
}
.woocommerce .woocommerce-breadcrumb,
.single-product .woocommerce-breadcrumb {
  margin: 0 0 1em;
  padding: 0;
  font-size: .92em;
  color: #777777;
}
.woocommerce .woocommerce-breadcrumb a,
.single-product .woocommerce-breadcrumb a {
  color: #777777;
}
.woocommerce .woocommerce-breadcrumb:before,
.single-product .woocommerce-breadcrumb:before {
  content: " ";
  display: table;
}
.woocommerce .quantity .qty,
.single-product .quantity .qty {
  text-align: center;
}
.woocommerce nav.woocommerce-pagination,
.single-product nav.woocommerce-pagination {
  text-align: center;
}
.woocommerce nav.woocommerce-pagination ul,
.single-product nav.woocommerce-pagination ul {
  clear: both;
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  border-right: 0;
  margin: 1px;
}
.woocommerce nav.woocommerce-pagination ul li,
.single-product nav.woocommerce-pagination ul li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
}
.woocommerce nav.woocommerce-pagination ul li a,
.single-product nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.single-product nav.woocommerce-pagination ul li span {
  margin: 0 0.5rem;
  font-size: 1.4rem;
  color: #f5f5f5;
  border: none;
  display: block;
  padding: 0.6rem 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.single-product nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.single-product nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current,
.single-product nav.woocommerce-pagination ul li span.current {
  background: #353535;
}
.woocommerce span.onsale,
.single-product span.onsale {
  min-height: 5rem;
  min-width: 5rem;
  text-align: center;
  line-height: 5rem;
  font-weight: 400;
  position: absolute;
  top: 1.5rem;
  left: 3rem;
  margin: 0;
  border-radius: 100%;
  color: #ffffff;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  z-index: 1;
  text-transform: uppercase;
}
.woocommerce span.onsale:after,
.single-product span.onsale:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #ff3c00;
  opacity: 0.6;
}
.woocommerce ul.products li.product h3,
.single-product ul.products li.product h3 {
  padding: 0;
  margin: 0 0 1rem 0;
  font-size: 1.8em;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.woocommerce ul.products li.product a,
.single-product ul.products li.product a {
  text-decoration: none;
}
.woocommerce ul.products li.product a img,
.single-product ul.products li.product a img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.woocommerce ul.products li.product strong,
.single-product ul.products li.product strong {
  display: block;
}
.woocommerce ul.products li.product .star-rating,
.single-product ul.products li.product .star-rating {
  font-size: .857em;
}
.woocommerce ul.products li.product .button,
.single-product ul.products li.product .button {
  margin-top: 1em;
}
.woocommerce ul.products li.product .price,
.single-product ul.products li.product .price {
  color: #77a464;
  display: block;
  font-weight: 400;
  margin-bottom: 0;
  font-size: .857em;
}
.woocommerce ul.products li.product .price del,
.single-product ul.products li.product .price del {
  color: inherit;
  opacity: .5;
  display: block;
}
.woocommerce ul.products li.product .price ins,
.single-product ul.products li.product .price ins {
  background: 0 0;
  font-weight: 400;
}
.woocommerce ul.products li.product .price .from,
.single-product ul.products li.product .price .from {
  font-size: .67em;
  margin: -2px 0 0;
  text-transform: uppercase;
  color: rgba(132, 132, 132, 0.5);
}
.woocommerce .woocommerce-ordering select,
.single-product .woocommerce-ordering select {
  vertical-align: top;
}
.woocommerce .cart .button,
.single-product .cart .button,
.woocommerce .cart input.button,
.single-product .cart input.button {
  float: none;
}
.woocommerce a.added_to_cart,
.single-product a.added_to_cart {
  margin-top: 1rem;
  white-space: nowrap;
  display: inline-block;
}
.woocommerce a.added_to_cart:after,
.single-product a.added_to_cart:after {
  content: "\f07a";
  font-family: FontAwesome;
  margin-left: 0.7rem;
}
.woocommerce #review_form #respond:after,
.single-product #review_form #respond:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce #review_form #respond,
.single-product #review_form #respond {
  position: static;
  margin: 0;
  width: auto;
  padding: 0;
  background: 0 0;
  border: 0;
}
.woocommerce #review_form #respond p,
.single-product #review_form #respond p {
  margin: 0 0 10px;
}
.woocommerce #review_form #respond .form-submit input,
.single-product #review_form #respond .form-submit input {
  left: auto;
}
.woocommerce #review_form #respond textarea,
.single-product #review_form #respond textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  background: #1c1c1c;
}
.woocommerce #review_form #respond input[type=text],
.single-product #review_form #respond input[type=text],
.woocommerce #review_form #respond input[type=email],
.single-product #review_form #respond input[type=email] {
  background: #1c1c1c;
}
.woocommerce #review_form #respond:before,
.single-product #review_form #respond:before {
  content: " ";
  display: table;
}
.woocommerce .woocommerce-product-rating:after,
.single-product .woocommerce-product-rating:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce td.product-name dl.variation:after,
.single-product td.product-name dl.variation:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce td.product-name dl.variation,
.single-product td.product-name dl.variation {
  margin: .25em 0;
}
.woocommerce td.product-name dl.variation dd,
.single-product td.product-name dl.variation dd {
  display: inline-block;
  float: left;
  margin-bottom: 0;
  padding: 0 0 .25em;
}
.woocommerce td.product-name dl.variation dd p:last-child,
.single-product td.product-name dl.variation dd p:last-child {
  margin-bottom: 0;
}
.woocommerce td.product-name dl.variation dt,
.single-product td.product-name dl.variation dt {
  display: inline-block;
  float: left;
  margin-bottom: 1em;
  font-weight: 400;
  padding: 0 0 .25em;
  margin: 0 4px 0 0;
  clear: left;
}
.woocommerce td.product-name dl.variation:before,
.single-product td.product-name dl.variation:before {
  content: " ";
  display: table;
}
.woocommerce td.product-name p.backorder_notification,
.single-product td.product-name p.backorder_notification {
  font-size: .83em;
}
.woocommerce .star-rating,
.single-product .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  width: 6.5rem;
  font-family: FontAwesome;
}
.woocommerce .star-rating span,
.single-product .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.woocommerce .star-rating span:before,
.single-product .star-rating span:before {
  font-family: FontAwesome;
  content: "\f005\f005\f005\f005\f005";
  top: 0;
  position: absolute;
  left: 0;
}
.woocommerce .star-rating:before,
.single-product .star-rating:before {
  content: "\f006\f006\f006\f006\f006";
  color: #d3ced2;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.woocommerce .woocommerce-product-rating,
.single-product .woocommerce-product-rating {
  line-height: 2;
  display: block;
}
.woocommerce .woocommerce-product-rating .star-rating,
.single-product .woocommerce-product-rating .star-rating {
  margin: .5em 4px 0 0;
  float: left;
}
.woocommerce table.shop_attributes,
.single-product table.shop_attributes {
  border: 0;
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
  margin-bottom: 1.618em;
  width: 100%;
}
.woocommerce table.shop_attributes td,
.single-product table.shop_attributes td {
  line-height: 1.5;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  border-top: 0;
  margin: 0;
  font-style: italic;
  padding: 0;
}
.woocommerce table.shop_attributes td p,
.single-product table.shop_attributes td p {
  margin: 0;
  padding: 8px 0;
}
.woocommerce table.shop_attributes th,
.single-product table.shop_attributes th {
  line-height: 1.5;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  border-top: 0;
  margin: 0;
  width: 150px;
  font-weight: 400;
  padding: 8px;
}
.woocommerce table.shop_attributes .alt td,
.single-product table.shop_attributes .alt td,
.woocommerce table.shop_attributes .alt th,
.single-product table.shop_attributes .alt th {
  background: rgba(0, 0, 0, 0.025);
}
.woocommerce .woocommerce-product-rating:before,
.single-product .woocommerce-product-rating:before {
  content: " ";
  display: table;
}
.woocommerce .products .star-rating,
.single-product .products .star-rating {
  display: block;
  margin: 0 0 .5em;
  float: none;
}
.woocommerce .hreview-aggregate .star-rating,
.single-product .hreview-aggregate .star-rating {
  margin: 10px 0 0;
}
.woocommerce p.stars,
.single-product p.stars {
  position: relative;
  font-size: 1em;
}
.woocommerce p.stars a,
.single-product p.stars a {
  font-family: FontAwesome;
}
.woocommerce p.stars a.star-1.active:after,
.single-product p.stars a.star-1.active:after,
.woocommerce p.stars a.star-1:hover:after,
.single-product p.stars a.star-1:hover:after {
  content: "\f005 ";
  color: #e4ac00;
}
.woocommerce p.stars a.star-2.active:after,
.single-product p.stars a.star-2.active:after,
.woocommerce p.stars a.star-2:hover:after,
.single-product p.stars a.star-2:hover:after {
  content: "\f005 \f005 ";
  color: #e4ac00;
}
.woocommerce p.stars a.star-3.active:after,
.single-product p.stars a.star-3.active:after,
.woocommerce p.stars a.star-3:hover:after,
.single-product p.stars a.star-3:hover:after {
  content: "\f005 \f005 \f005 ";
  color: #e4ac00;
}
.woocommerce p.stars a.star-4.active:after,
.single-product p.stars a.star-4.active:after,
.woocommerce p.stars a.star-4:hover:after,
.single-product p.stars a.star-4:hover:after {
  content: "\f005 \f005 \f005 \f005 ";
  color: #e4ac00;
}
.woocommerce p.stars a.star-5.active:after,
.single-product p.stars a.star-5.active:after,
.woocommerce p.stars a.star-5:hover:after,
.single-product p.stars a.star-5:hover:after {
  content: "\f005 \f005 \f005 \f005 \f005 ";
  color: #e4ac00;
}
.woocommerce p.stars a,
.single-product p.stars a {
  display: inline-block;
  font-weight: 400;
  margin-right: 1em;
  text-indent: -9999px;
  position: relative;
  border-bottom: 0 !important;
  outline: 0;
  font-size: 1.2rem;
}
.woocommerce p.stars a:last-child,
.single-product p.stars a:last-child {
  border-right: 0;
}
.woocommerce p.stars a.star-1,
.single-product p.stars a.star-1 {
  border-right: 1px solid #cccccc;
  width: 2em;
}
.woocommerce p.stars a.star-2,
.single-product p.stars a.star-2 {
  border-right: 1px solid #cccccc;
  width: 3em;
}
.woocommerce p.stars a.star-3,
.single-product p.stars a.star-3 {
  border-right: 1px solid #cccccc;
  width: 4em;
}
.woocommerce p.stars a.star-4,
.single-product p.stars a.star-4 {
  border-right: 1px solid #cccccc;
  width: 5em;
}
.woocommerce p.stars a.star-5,
.single-product p.stars a.star-5 {
  border-right: 1px solid #cccccc;
  width: 6em;
  border: 0;
}
.woocommerce p.stars a.star-1:after,
.single-product p.stars a.star-1:after {
  font-family: FontAwesome;
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f006 ";
}
.woocommerce p.stars a.star-2:after,
.single-product p.stars a.star-2:after {
  font-family: FontAwesome;
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f006 \f006 ";
}
.woocommerce p.stars a.star-3:after,
.single-product p.stars a.star-3:after {
  font-family: FontAwesome;
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f006 \f006 \f006 ";
}
.woocommerce p.stars a.star-4:after,
.single-product p.stars a.star-4:after {
  font-family: FontAwesome;
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f006 \f006 \f006 \f006 ";
}
.woocommerce p.stars a.star-5:after,
.single-product p.stars a.star-5:after {
  font-family: FontAwesome;
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f006 \f006 \f006 \f006 \f006 ";
}
.woocommerce table.shop_table,
.single-product table.shop_table {
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
  text-align: center;
}
.woocommerce table.shop_table .actions,
.single-product table.shop_table .actions {
  padding-top: 4rem;
  padding-left: 0;
  padding-right: 0;
}
.woocommerce table.shop_table .actions:after,
.single-product table.shop_table .actions:after,
.woocommerce table.shop_table .actions:before,
.single-product table.shop_table .actions:before {
  content: '';
  display: table;
}
.woocommerce table.shop_table .actions:after,
.single-product table.shop_table .actions:after {
  clear: both;
}
.woocommerce table.shop_table .actions > input[type=submit],
.single-product table.shop_table .actions > input[type=submit] {
  width: 49%;
  float: left;
}
.woocommerce table.shop_table .coupon,
.single-product table.shop_table .coupon {
  width: 49%;
  text-align: left;
  float: left;
  margin-right: 2%;
}
.woocommerce table.shop_table .coupon label,
.single-product table.shop_table .coupon label {
  display: none;
}
.woocommerce table.shop_table .remove,
.single-product table.shop_table .remove {
  display: inline-block;
}
.woocommerce table.shop_table .product-thumbnail,
.single-product table.shop_table .product-thumbnail {
  text-align: left;
  text-align: center;
}
.woocommerce table.shop_table .product-thumbnail a,
.single-product table.shop_table .product-thumbnail a {
  display: block;
  width: 100%;
}
.woocommerce table.shop_table .product-thumbnail a img,
.single-product table.shop_table .product-thumbnail a img {
  max-width: 8rem;
}
.woocommerce table.shop_table thead th,
.single-product table.shop_table thead th {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #9b9b9b;
  border: none;
}
.woocommerce table.shop_table th,
.single-product table.shop_table th {
  font-weight: 400;
  padding: 9px 12px;
}
.woocommerce table.shop_table td,
.single-product table.shop_table td,
.woocommerce table.shop_table th,
.single-product table.shop_table th {
  border: none !important;
  padding: 6px 12px;
  vertical-align: middle;
  font-size: 1.6rem;
  font-weight: 400;
}
.woocommerce table.shop_table td small,
.single-product table.shop_table td small,
.woocommerce table.shop_table th small,
.single-product table.shop_table th small {
  font-weight: 400;
}
.woocommerce table.shop_table td.product-name,
.single-product table.shop_table td.product-name,
.woocommerce table.shop_table th.product-name,
.single-product table.shop_table th.product-name {
  text-align: left;
}
.woocommerce table.shop_table input[type=number],
.single-product table.shop_table input[type=number] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: center;
  display: inline-block;
  margin-bottom: 0;
  min-width: 6rem;
}
.woocommerce table.shop_table tbody:first-child tr:first-child td,
.single-product table.shop_table tbody:first-child tr:first-child td,
.woocommerce table.shop_table tbody:first-child tr:first-child th,
.single-product table.shop_table tbody:first-child tr:first-child th {
  border-top: 0;
}
.woocommerce table.my_account_orders,
.single-product table.my_account_orders {
  font-size: .85em;
}
.woocommerce table.my_account_orders td,
.single-product table.my_account_orders td,
.woocommerce table.my_account_orders th,
.single-product table.my_account_orders th {
  padding: 4px 8px;
  vertical-align: middle;
}
.woocommerce table.my_account_orders .button,
.single-product table.my_account_orders .button {
  white-space: nowrap;
}
.woocommerce table.my_account_orders .order-actions,
.single-product table.my_account_orders .order-actions {
  text-align: right;
}
.woocommerce table.my_account_orders .order-actions .button,
.single-product table.my_account_orders .order-actions .button {
  margin: .125em 0 .125em .25em;
}
.woocommerce td.product-quantity,
.single-product td.product-quantity {
  min-width: 80px;
}
.woocommerce .order_details:after,
.single-product .order_details:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce .widget_layered_nav ul,
.single-product .widget_layered_nav ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}
.woocommerce .widget_layered_nav ul li:after,
.single-product .widget_layered_nav ul li:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce .widget_layered_nav ul li,
.single-product .widget_layered_nav ul li {
  padding: 0 0 1px;
  list-style: none;
}
.woocommerce .widget_layered_nav ul li a,
.single-product .widget_layered_nav ul li a,
.woocommerce .widget_layered_nav ul li span,
.single-product .widget_layered_nav ul li span {
  padding: 1px 0;
}
.woocommerce .widget_layered_nav ul li:before,
.single-product .widget_layered_nav ul li:before {
  content: " ";
  display: table;
}
.woocommerce .widget_layered_nav ul li.chosen a:before,
.single-product .widget_layered_nav ul li.chosen a:before {
  font-weight: 400;
  line-height: 1;
  content: "";
  color: #aa0000;
  font-family: WooCommerce;
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  margin-right: .618em;
}
.woocommerce form .form-row,
.single-product form .form-row {
  padding: 0;
  margin: 0 0 6px;
}
.woocommerce form .form-row [placeholder] :focus::-webkit-input-placeholder,
.single-product form .form-row [placeholder] :focus::-webkit-input-placeholder {
  -webkit-transition: opacity .5s .5s ease;
  -moz-transition: opacity .5s .5s ease;
  -o-transition: opacity .5s .5s ease;
  transition: opacity .5s .5s ease;
  opacity: 0;
}
.woocommerce form .form-row label,
.single-product form .form-row label {
  line-height: 2;
}
.woocommerce form .form-row label.inline,
.single-product form .form-row label.inline {
  display: inline;
}
.woocommerce form .form-row select,
.single-product form .form-row select {
  cursor: pointer;
  margin: 0;
}
.woocommerce form .form-row .required,
.single-product form .form-row .required {
  color: red;
  font-weight: 400;
  border: 0;
}
.woocommerce form .form-row .input-checkbox,
.single-product form .form-row .input-checkbox {
  display: inline;
  margin: -2px 8px 0 0;
  text-align: center;
  vertical-align: middle;
}
.woocommerce form .form-row input.input-text,
.single-product form .form-row input.input-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  outline: 0;
  line-height: 1;
}
.woocommerce form .form-row textarea,
.single-product form .form-row textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  outline: 0;
  line-height: 1;
  line-height: 1.5;
  height: 4em;
  display: block;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  min-height: 10rem;
}
.woocommerce form .form-row .select2-container,
.single-product form .form-row .select2-container {
  width: 100%;
  line-height: 2em;
}
.woocommerce form .form-row.woocommerce-invalid .select2-container,
.single-product form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.single-product form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select,
.single-product form .form-row.woocommerce-invalid select {
  border-color: #aa0000;
}
.woocommerce form .form-row.woocommerce-validated .select2-container,
.single-product form .form-row.woocommerce-validated .select2-container,
.woocommerce form .form-row.woocommerce-validated input.input-text,
.single-product form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select,
.single-product form .form-row.woocommerce-validated select {
  border-color: #69bf29;
}
.woocommerce form .form-row::-webkit-input-placeholder,
.single-product form .form-row::-webkit-input-placeholder {
  line-height: normal;
}
.woocommerce form .form-row:-moz-placeholder,
.single-product form .form-row:-moz-placeholder {
  line-height: normal;
}
.woocommerce form .form-row:-ms-input-placeholder,
.single-product form .form-row:-ms-input-placeholder {
  line-height: normal;
}
.woocommerce ul#shipping_method,
.single-product ul#shipping_method {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce ul#shipping_method li,
.single-product ul#shipping_method li {
  margin: 0;
  padding: .25em 0 .25em 22px;
  text-indent: -22px;
  list-style: none;
}
.woocommerce ul#shipping_method .amount,
.single-product ul#shipping_method .amount {
  font-weight: 400;
}
.woocommerce p.woocommerce-shipping-contents,
.single-product p.woocommerce-shipping-contents {
  margin: 0;
}
.woocommerce .order_details,
.single-product .order_details {
  margin: 0 0 1.5em;
  list-style: none;
}
.woocommerce .order_details li,
.single-product .order_details li {
  float: left;
  margin-right: 2em;
  text-transform: uppercase;
  font-size: .715em;
  line-height: 1;
  border-right: 1px dashed #d3ced2;
  padding-right: 2em;
  margin-left: 0;
  padding-left: 0;
}
.woocommerce .order_details li strong,
.single-product .order_details li strong {
  display: block;
  font-size: 1.4em;
  text-transform: none;
  line-height: 1.5;
}
.woocommerce .order_details li:last-of-type,
.single-product .order_details li:last-of-type {
  border: none;
}
.woocommerce .order_details:before,
.single-product .order_details:before {
  content: " ";
  display: table;
}
.woocommerce .widget_layered_nav_filters ul,
.single-product .widget_layered_nav_filters ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  overflow: hidden;
  zoom: 1;
}
.woocommerce .widget_layered_nav_filters ul li,
.single-product .widget_layered_nav_filters ul li {
  float: left;
  padding: 0 1px 1px 0;
  list-style: none;
}
.woocommerce .widget_layered_nav_filters ul li a:before,
.single-product .widget_layered_nav_filters ul li a:before {
  font-weight: 400;
  line-height: 1;
  content: "";
  color: #aa0000;
  font-family: WooCommerce;
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  margin-right: .618em;
}
.woocommerce .widget_layered_nav_filters ul li a,
.single-product .widget_layered_nav_filters ul li a {
  text-decoration: none;
}
.woocommerce .widget_price_filter .price_slider,
.single-product .widget_price_filter .price_slider {
  margin-bottom: 1em;
}
.woocommerce .widget_price_filter .price_slider_amount,
.single-product .widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4;
  font-size: .8751em;
}
.woocommerce .widget_price_filter .price_slider_amount .button,
.single-product .widget_price_filter .price_slider_amount .button {
  font-size: 1.15em;
  float: left;
  padding: 1rem 2.5rem;
}
.woocommerce .widget_price_filter .ui-slider,
.single-product .widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
  margin-left: .5em;
  margin-right: .5em;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,
.single-product .widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1.5rem;
  cursor: ew-resize;
  outline: 0;
  top: -0.7rem;
  margin-left: -0.7rem;
  background: #ff3c00;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.single-product .widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  border-radius: 1em;
  background-color: #ff3c00;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content,
.single-product .widget_price_filter .price_slider_wrapper .ui-widget-content {
  border-radius: 1em;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
}
.woocommerce .widget_price_filter .ui-slider-horizontal,
.single-product .widget_price_filter .ui-slider-horizontal {
  height: 0.2rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range,
.single-product .widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min,
.single-product .widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max,
.single-product .widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
  right: -1px;
}
p.demo_store {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  font-size: 1em;
  padding: 1em 0;
  text-align: center;
  background-color: #a46497;
  color: #ffffff;
  z-index: 99998;
  -webkit-box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
}
p.demo_store a {
  color: #ffffff;
}
.admin-bar p.demo_store {
  top: 32px;
}
.woocommerce .widget_shopping_cart .buttons:after,
.woocommerce.widget_shopping_cart .buttons:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce-account .addresses .title .edit,
.woocommerce-account ul.digital-downloads li .count {
  float: right;
}
.woocommerce-account .addresses .title:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce-account .addresses .title:before {
  content: " ";
  display: table;
}
.woocommerce-account .addresses .title h3 {
  float: left;
}
.woocommerce-account ol.commentlist.notes li.note p.meta {
  font-weight: 400;
  margin-bottom: 0;
}
.woocommerce-account ol.commentlist.notes li.note .description p:last-child {
  margin-bottom: 0;
}
.woocommerce-account ul.digital-downloads {
  margin-left: 0;
  padding-left: 0;
}
.woocommerce-account ul.digital-downloads li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.woocommerce-account ul.digital-downloads li:before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "";
  text-decoration: none;
}
.woocommerce-cart .wc-proceed-to-checkout:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th {
  vertical-align: middle;
}
.woocommerce-cart table.cart .product-thumbnail {
  min-width: 32px;
}
.woocommerce-cart table.cart img {
  width: 32px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 100% !important;
  margin-bottom: 1rem !important;
}
.woocommerce-cart table.cart input {
  margin: 0;
  vertical-align: middle;
  line-height: 1;
}
.woocommerce-cart .wc-proceed-to-checkout {
  padding: 1em 0;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: block;
  text-align: center;
  margin-bottom: 1em;
}
.woocommerce-cart .wc-proceed-to-checkout:before {
  content: " ";
  display: table;
}
.woocommerce .cart-collaterals .cart_totals {
  background-color: #1b1b1b;
  border-radius: 3px;
  padding: 2.2rem;
  text-align: left;
  width: 100% !important;
}
.woocommerce .cart-collaterals .cart_totals table {
  text-align: left;
}
.woocommerce .cart-collaterals .cart_totals h2 {
  text-transform: uppercase;
  font-weight: 700;
  padding: 0;
  padding-bottom: 3rem;
  font-size: 1.2rem;
  display: block;
  line-height: 1.2rem;
}
.woocommerce .cart-collaterals .cart_totals table > tbody > tr > th,
.woocommerce .cart-collaterals .cart_totals table > tbody > tr > td {
  border: none;
  display: block;
  width: 100%;
  padding: 0;
}
.woocommerce .cart-collaterals .cart_totals table > tbody > tr > th {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #919191;
  line-height: 1.4rem;
  margin-bottom: 1.2rem;
}
.woocommerce .cart-collaterals .cart_totals table > tbody > tr > td > span {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.woocommerce .cart-collaterals .cart_totals table > tbody > tr > td > span:after {
  display: block;
  width: 15rem;
  height: 0.2rem;
  background: rgba(255, 255, 255, 0.05);
  content: '';
  margin-top: 1rem;
  margin-bottom: 2.2rem;
}
.woocommerce .cart-collaterals .cart_totals table > tbody > tr.order-total > th {
  color: #fff;
}
.woocommerce .cart-collaterals .cart_totals table > tbody > tr.order-total > td span {
  font-size: 3.6rem;
  color: #ff3c00;
  padding: 1rem 0 1.5rem 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 300;
}
.woocommerce .cart-collaterals .cart_totals table > tbody > tr.order-total > td span:after {
  display: none;
}
.woocommerce-cart .cart-collaterals .shipping_calculator .button {
  width: 100%;
  float: none;
  display: block;
}
.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button:after {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-left: .618em;
  content: "";
  text-decoration: none;
}
.woocommerce-cart .cart-collaterals .cart_totals p small {
  color: #777777;
  font-size: .83em;
}
.woocommerce-cart .cart-collaterals .cart_totals table {
  border-collapse: separate;
  margin: 0 0 6px;
  padding: 0;
  border-left: 0;
}
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th {
  border-top: 0;
}
.woocommerce-cart .cart-collaterals .cart_totals table th {
  width: 25%;
  vertical-align: top;
  border-left: 0;
  border-right: 0;
  padding: 6px 0;
  line-height: 2em;
}
.woocommerce-cart .cart-collaterals .cart_totals table td {
  vertical-align: top;
  border-left: 0;
  border-right: 0;
  padding: 6px 0;
  line-height: 2em;
}
.woocommerce-cart .cart-collaterals .cart_totals table small {
  color: #777777;
}
.woocommerce-cart .cart-collaterals .cart_totals table select {
  width: 100%;
}
.woocommerce-cart .cart-collaterals .cart_totals .discount td {
  color: #77a464;
}
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th {
  border-top: 1px solid #ebe9eb;
}
.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product {
  margin-top: 0;
}
.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
  border-top: 3px double #ebe9eb;
  padding: 4px 0 0;
}
.woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
  min-width: 40px;
  display: inline-block;
}
.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
  padding-left: 2em;
  position: relative;
  padding-top: 0;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
  position: absolute;
  top: 0;
  left: 0;
}
.woocommerce .widget_shopping_cart .buttons:before,
.woocommerce.widget_shopping_cart .buttons:before {
  content: " ";
  display: table;
}
.woocommerce input[type="radio"] {
  display: none;
}
.woocommerce input[type="radio"] + label:before {
  content: '';
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin: -3px 4px 0 0;
  vertical-align: middle;
  cursor: pointer;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.woocommerce input[type="radio"] + label:before {
  content: '';
  background-color: #292321;
}
.woocommerce input[type="radio"]:checked + label:before {
  content: '';
  background-color: #ff3c00;
}
.woocommerce input[type="radio"] + label:before,
.woocommerce input[type="radio"]:checked + label:before {
  content: '';
  -webkit-transition: background-color 0.4s linear;
  -o-transition: background-color 0.4s linear;
  -moz-transition: background-color 0.4s linear;
  transition: background-color 0.4s linear;
}
.woocommerce input[type="checkbox"] {
  display: none;
}
.woocommerce .login input[type=checkbox] {
  display: inline-block;
  position: relative;
  top: 1px;
}
.woocommerce .login a {
  font-weight: 400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.woocommerce .login p:last-of-type {
  margin-bottom: 0;
}
.woocommerce .myaccount_user a,
.woocommerce .myaccount_address a,
.woocommerce .address a,
.woocommerce .myaccount_user,
.woocommerce .myaccount_address,
.woocommerce .address,
.woocommerce .myaccount_user address,
.woocommerce .myaccount_address address,
.woocommerce .address address {
  font-weight: 400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.woocommerce legend {
  font-weight: 400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #fff;
  font-size: 1.6rem;
  padding-top: 3rem;
  padding-bottom: 0.5rem;
  border-color: #353535;
}
.woocommerce input[type="checkbox"] + label:before {
  content: '';
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin: -3px 4px 0 0;
  vertical-align: middle;
  cursor: pointer;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.woocommerce input[type="checkbox"] + label:before {
  content: '';
  background-color: #292321;
}
.woocommerce input[type="checkbox"]:checked + label:before {
  content: '';
  background-color: #ff3c00;
}
.woocommerce input[type="checkbox"] + label:before,
.woocommerce input[type="checkbox"]:checked + label:before {
  content: '';
  -webkit-transition: background-color 0.4s linear;
  -o-transition: background-color 0.4s linear;
  -moz-transition: background-color 0.4s linear;
  transition: background-color 0.4s linear;
}
.woocommerce-checkout #payment {
  background: #353535;
  border-radius: 0;
}
.woocommerce-checkout #payment label {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  cursor: pointer;
}
.woocommerce-checkout #payment ul.payment_methods li:after,
.woocommerce-checkout #payment ul.payment_methods:after {
  content: " ";
  display: table;
  clear: both;
}
.woocommerce-checkout #payment ul.payment_methods li:before,
.woocommerce-checkout #payment ul.payment_methods:before {
  content: " ";
  display: table;
}
.woocommerce-checkout #payment ul.payment_methods {
  text-align: left;
  padding: 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
  list-style: none;
}
.woocommerce-checkout #payment ul.payment_methods li {
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: 400;
  line-height: 2rem;
}
.woocommerce-checkout #payment ul.payment_methods li input {
  position: relative;
  top: 2px;
  margin-right: 1rem;
}
.woocommerce-checkout #payment ul.payment_methods li img {
  vertical-align: middle;
  margin: -2px 0 0 0.5em;
  padding: 0;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.woocommerce-checkout #payment ul.payment_methods li img + img {
  margin-left: 2px;
}
.woocommerce-checkout #payment div.form-row {
  padding: 1em;
}
.woocommerce-checkout #payment div.payment_box {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: .92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #999;
  color: #515151;
}
.woocommerce-checkout #payment div.payment_box input.input-text,
.woocommerce-checkout #payment div.payment_box textarea {
  border-color: #bbb3b9 #c7c1c6 #c7c1c6;
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number {
  font-size: 1.5em;
  padding: 8px;
  background-repeat: no-repeat;
  background-position: right;
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa {
  background-image: url(../img/icons/credit-cards/visa.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard {
  background-image: url(../img/icons/credit-cards/mastercard.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser {
  background-image: url(../img/icons/credit-cards/laser.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub {
  background-image: url(../img/icons/credit-cards/diners.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro {
  background-image: url(../img/icons/credit-cards/maestro.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb {
  background-image: url(../img/icons/credit-cards/jcb.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex {
  background-image: url(../img/icons/credit-cards/amex.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover {
  background-image: url(../img/icons/credit-cards/discover.png);
}
.woocommerce-checkout #payment div.payment_box span.help {
  font-size: .857em;
  color: #777777;
  font-weight: 400;
}
.woocommerce-checkout #payment div.payment_box .form-row {
  margin: 0 0 1em;
}
.woocommerce-checkout #payment div.payment_box p:last-child {
  margin-bottom: 0;
}
.woocommerce-checkout #payment div.payment_box::-webkit-input-placeholder {
  color: #bbb3b9;
}
.woocommerce-checkout #payment div.payment_box:-moz-placeholder {
  color: #bbb3b9;
}
.woocommerce-checkout #payment div.payment_box:-ms-input-placeholder {
  color: #bbb3b9;
}
.woocommerce-checkout #payment div.payment_box:before {
  content: "";
  display: block;
  border: 1em solid #999;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -0.75em;
  left: 0;
  margin: -1em 0 0 2em;
}
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
  float: right;
  line-height: 3.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-left: 1rem;
  margin-top: -0.2rem;
}
.woocommerce-checkout #payment .payment_method_paypal img {
  max-height: 52px;
  vertical-align: middle;
}
.woocommerce-checkout .checkout .col-2 .form-row-first,
.woocommerce-checkout .checkout .col-2 .notes {
  clear: left;
}
.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
  float: left;
  clear: none;
}
.woocommerce-checkout .checkout .create-account small {
  font-size: 11px;
  color: #777777;
  font-weight: 400;
}
.woocommerce-checkout .checkout div.shipping-address {
  padding: 0;
  clear: left;
  width: 100%;
}
.single-product p.stars,
.woocommerce-checkout .checkout .shipping_address {
  clear: both;
}
#content.twentyeleven .woocommerce-pagination a {
  font-size: 1em;
  line-height: 1;
}
.single-product #reply-title,
.single-product #respond #commentform,
.single-product .entry-summary {
  padding: 0;
}
.woocommerce-breadcrumb {
  padding-top: 40px;
}
ul.products li.product {
  margin-top: 0 !important;
}
.products-listing {
  margin-top: 2rem;
}
.main-sidebar .woocommerce {
  margin-top: 0;
}
.woocommerce ul.products li.product,
ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0 !important;
  margin-bottom: 3rem !important;
  width: 25% !important;
}
.woocommerce .mesh-products-with-sidebar ul.products li.product,
ul.products li.product,
.woocommerce-page .mesh-products-with-sidebar ul.products li.product {
  width: 33.333333333333333% !important;
}
ul.products {
  list-style: none;
  padding-left: 0;
  margin-bottom: 3rem;
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}
ul.products .product {
  text-align: center;
  margin-bottom: 3rem !important;
  padding: 0 1.5rem !important;
  margin-left: 0 !important;
  position: relative;
}
ul.products .product > a > * {
  display: none;
}
ul.products .product > a > h3 {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  padding: 0 2rem;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  opacity: 0;
}
ul.products .product img {
  width: 100%;
}
ul.products .product .price {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 400;
  z-index: 1;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}
ul.products .product .price span {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  color: #fff;
}
ul.products .product > a > img,
ul.products .product > a > .onsale {
  display: block;
}
ul.products .product > .button {
  display: block;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.1rem;
  position: absolute;
  z-index: 2;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  opacity: 0;
  bottom: 1rem;
  left: 50%;
  text-align: center;
  padding-top: 0;
  text-transform: uppercase;
  padding: 1.6rem 2rem;
  border-radius: 0.3rem;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
}
ul.products .product > .button:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ff3c00;
  opacity: 0.6;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  z-index: -1;
}
ul.products .product > .button:hover {
  color: #fff;
}
ul.products .product > .button:hover:after {
  opacity: 1;
}
ul.products .product > a:not(.button):after {
  content: '';
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  opacity: 0;
  position: absolute;
  height: 100%;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}
ul.products .product .mesh-single-product-details {
  position: absolute;
  width: 100%;
  padding: 2.5rem;
  top: 50%;
  left: 0;
  opacity: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
ul.products .product .mesh-single-product-details > a:first-child {
  display: block;
}
ul.products .product .mesh-single-product-details > a:first-child:hover {
  color: #fff;
}
ul.products .product .mesh-single-product-details > a:first-child:hover h3 {
  text-decoration: underline;
}
ul.products .product .mesh-single-product-details .add_to_cart_button {
  display: inline-block;
}
ul.products .product .mesh-single-product-details .add_to_cart_button.added {
  display: none;
}
ul.products .product .mesh-single-product-details .star-rating {
  display: inline-block;
}
ul.products .product .mesh-single-product-details .price {
  margin-top: 0;
}
ul.products .product .mesh-single-product-details .price span {
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
}
ul.products .product .mesh-single-product-details .price del,
ul.products .product .mesh-single-product-details .price ins {
  display: inline-block !important;
}
ul.products .product .mesh-single-product-details .price del {
  opacity: 1 !important;
  color: #fff !important;
}
ul.products .product .mesh-single-product-details .price ins {
  text-decoration: none;
  margin-left: 0.5rem;
}
ul.products .product .mesh-single-product-details .price ins span {
  color: #ff3c00;
  font-size: 1.8rem;
}
ul.products .product:hover > a:not(.button):after {
  opacity: 1;
}
ul.products .product:hover .mesh-single-product-details {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  opacity: 1;
}
.widget.woocommerce .woocommerce-product-search input[type=search] {
  margin-bottom: 1rem;
  padding-left: 1.7rem;
  padding-right: 1.7rem;
}
.widget.woocommerce .woocommerce-product-search input[type=submit] {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.widget.woocommerce .product_list_widget li {
  padding-bottom: 1rem;
}
.widget.woocommerce .product_list_widget li img {
  margin-top: 0;
  margin-bottom: 0;
  width: 4.1rem;
}
.widget.woocommerce .product_list_widget li a:hover {
  opacity: 1;
}
.widget.woocommerce .widget_shopping_cart_content .mini_cart_item {
  padding-bottom: 1rem;
}
.widget.woocommerce .widget_shopping_cart_content .mini_cart_item img {
  margin-top: 0;
  margin-bottom: 0;
  width: 4.1rem;
}
.widget.woocommerce .widget_shopping_cart_content .mini_cart_item:last-child {
  padding-bottom: 0;
}
.widget.woocommerce .widget_shopping_cart_content .mini_cart_item a:hover {
  opacity: 1;
}
.widget.woocommerce .widget_shopping_cart_content .total {
  border-top: 1px solid #353535;
  margin-top: 1rem;
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.widget.woocommerce .widget_shopping_cart_content .buttons a {
  float: left;
  width: 48%;
  margin-right: 4%;
  text-align: center;
}
.widget.woocommerce .widget_shopping_cart_content .buttons a:last-child {
  margin-right: 0;
}
.widget.woocommerce .product-categories li {
  display: inline-block;
}
.widget.woocommerce .product-categories a {
  color: #999;
  font-size: 1.2rem !important;
  line-height: 1.5rem;
  font-weight: 400;
  display: inline-block;
  padding: 0.4rem 0.7rem;
  margin-bottom: 0.4rem;
  background: #353535;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: capitalize;
}
.widget.woocommerce .product-categories a:hover {
  text-decoration: none;
  color: #353535;
  background: #fff;
}
.remove {
  font-family: "Montserrat", Helvetica, Arial, sans-serif !important;
}
body:not(.club-button-style):not(.fm-dark-button-style):not(.artist-dark-button-style):not(.festival-button-style) .shop_table.shop_table_responsive.cart .button {
  background-color: #b9b9b9;
  text-decoration: none;
  background-image: none;
  color: #515151;
}
body:not(.club-button-style):not(.fm-dark-button-style):not(.artist-dark-button-style):not(.festival-button-style) .shop_table.shop_table_responsive.cart .button:hover {
  background: #dad8da;
}
.woocommerce-variation-price {
  margin-bottom: 1.5rem;
}
@media (max-width: 1200px) {
  .woocommerce ul.products li.product,
  ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 33.333333333333333% !important;
  }
  .woocommerce .mesh-products-with-sidebar ul.products li.product,
  ul.products li.product,
  .woocommerce-page .mesh-products-with-sidebar ul.products li.product {
    width: 50% !important;
  }
}
@media (max-width: 1030px) {
  .woocommerce ul.products li.product,
  ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 50% !important;
  }
  div.product form.cart .variations select {
    width: 100%;
  }
  .woocommerce-page .breadcrumb-page {
    padding-top: 5rem !important;
  }
}
@media (max-width: 800px) {
  table.cart td.actions .coupon input {
    width: 100% !important;
  }
  div.product form.cart .variations select {
    width: 50%;
  }
  ul.products .product .mesh-single-product-details {
    opacity: 1;
  }
  ul.products .product > a:not(.button):after {
    opacity: 1;
  }
  ul.products .product > .button,
  ul.products .product > a > h3,
  ul.products .product .price {
    opacity: 1;
  }
  .woocommerce,
  .single-product {
    margin-top: 0;
  }
  .woocommerce,
  .single-product,
  .products-listing {
    padding: 0 1.5rem;
  }
  .woocommerce .col2-set,
  .single-product .col2-set,
  .products-listing .col2-set {
    margin-left: 0;
    margin-right: 0;
  }
  .woocommerce .col2-set .col-1,
  .single-product .col2-set .col-1,
  .products-listing .col2-set .col-1,
  .woocommerce .col2-set .col-2,
  .single-product .col2-set .col-2,
  .products-listing .col2-set .col-2 {
    width: 100%;
    float: none;
    padding: 0 0;
  }
  .single-product.woocommerce-page .breadcrumb-page {
    padding-top: 3rem;
  }
}
@media (max-width: 768px) {
  .woocommerce #content div.product div.images,
  .woocommerce div.product div.images,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page div.product div.images,
  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.summary {
    width: 100% !important;
  }
  .woocommerce-page table.my_account_orders tr td.order-actions {
    text-align: right;
  }
  .woocommerce-page table.my_account_orders tr td.order-actions .button {
    display: inline-block;
  }
  .woocommerce table.shop_table .coupon,
  .single-product table.shop_table .coupon {
    width: 100%;
  }
  .woocommerce table.shop_table td,
  .single-product table.shop_table td,
  .woocommerce table.shop_table th,
  .single-product table.shop_table th {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .woocommerce table.shop_table td.product-remove,
  .woocommerce table.shop_table th.product-remove,
  .woocommerce table.shop_table .product-thumbnail {
    display: block;
  }
  div.product div.images,
  div.product div.summary {
    width: 100%;
  }
  .woocommerce ul.products li.product,
  ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 100% !important;
  }
  .woocommerce .mesh-products-with-sidebar ul.products li.product,
  ul.products li.product,
  .woocommerce-page .mesh-products-with-sidebar ul.products li.product {
    width: 100% !important;
  }
  .woocommerce table.shop_table_responsive tr td.product-thumbnail:before,
  .woocommerce-page table.shop_table_responsive tr td.product-thumbnail:before {
    content: '';
  }
  .woocommerce .woocommerce-ordering select {
    width: 100%;
    display: block;
    color: #fff;
  }
  .woocommerce-ordering {
    float: none;
    width: 100%;
  }
}
@media (max-width: 500px) {
  div.product form.cart .variations select {
    width: 100%;
  }
  .widget.woocommerce .widget_shopping_cart_content .buttons a {
    display: block;
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 1rem;
  }
  ul.products .product {
    width: 100%;
  }
  .woocommerce .quantity .qty,
  .single-product .quantity .qty {
    width: 14rem;
  }
  div.product .product_title {
    font-size: 3rem;
    line-height: 3rem;
  }
  div.product p.price,
  div.product span.price {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }
  div.product p.price del,
  div.product span.price del {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .woocommerce table.shop_table td.product-price,
  .woocommerce table.shop_table th.product-price {
    display: none;
  }
  .woocommerce table.shop_table td,
  .woocommerce table.shop_table th {
    padding-left: 0;
    padding-right: 0;
    font-size: 1.4rem;
  }
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin: 0;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}
a {
  color: #fff;
  text-decoration: none;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
a:active,
a:focus {
  text-decoration: none;
  color: #ff3c00;
}
a:hover {
  text-decoration: none;
  color: #ff3c00;
}
p em {
  font-style: italic;
}
p strong {
  font-weight: 600;
}
p small {
  font-size: 1.6rem;
}
p h1,
p h2,
p h3,
p h4,
p h5,
p h6 {
  padding: 0;
}
.widget {
  margin-bottom: 3rem;
}
.widget .title-widget {
  font-size: 2.4rem;
  padding-top: 3.5rem;
}
.widget .textwidget {
  text-align: center;
}
.widget > h3,
.widget > h2,
.widget .title-widget {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  padding: 0;
  font-size: 1.1rem;
  line-height: 3.3rem;
}
.widget > h3 a,
.widget > h2 a,
.widget .title-widget a {
  color: grey;
}
.widget > h3 a:hover,
.widget > h2 a:hover,
.widget .title-widget a:hover {
  text-decoration: none;
}
.widget > h3 a img,
.widget > h2 a img,
.widget .title-widget a img {
  margin: 0;
}
.widget a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.widget img {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.widget .navbar-form {
  padding: 0;
  float: none !important;
}
.widget .navbar-form .form-group {
  width: 100%;
}
.widget .navbar-form .form-group input[type=text] {
  width: 100%;
  margin-bottom: 1rem;
}
.widget .wp-caption {
  margin-bottom: 1rem;
}
.widget .wp-caption img {
  margin-bottom: 0;
  margin-top: 0;
}
.widget .tagcloud a {
  color: #999;
  font-size: 1.2rem !important;
  line-height: 1.5rem;
  font-weight: 400;
  display: inline-block;
  padding: 0.4rem 0.7rem;
  margin-bottom: 0.4rem;
  background: #353535;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.widget .tagcloud a:hover {
  text-decoration: none;
  color: #353535;
  background: #999;
}
.widget.widget_calendar table {
  background: #222222;
}
.widget.widget_calendar caption {
  padding: 1.3rem 1rem;
  text-transform: uppercase;
  color: #fff;
  background: #222222;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  display: block;
  line-height: 1.4rem;
  text-align: center;
  font-weight: 600;
}
.widget.widget_calendar table {
  width: 100%;
  text-align: center;
  display: block;
  position: relative;
}
.widget.widget_calendar table > * {
  display: block;
  width: 100%;
}
.widget.widget_calendar table td,
.widget.widget_calendar table th {
  padding: 6px 0;
  color: #929292;
}
.widget.widget_calendar table th {
  background: #222222;
  font-size: 12px;
}
.widget.widget_calendar table thead {
  border: none;
  padding: 0 0.5rem;
}
.widget.widget_calendar table thead tr {
  background: #353535;
  display: block;
  border: none;
  width: 100%;
}
.widget.widget_calendar table thead tr:before,
.widget.widget_calendar table thead tr:after {
  content: " ";
  display: table;
}
.widget.widget_calendar table thead tr:after {
  clear: both;
}
.widget.widget_calendar table thead tr:before,
.widget.widget_calendar table thead tr:after {
  content: " ";
  display: table;
}
.widget.widget_calendar table thead tr:after {
  clear: both;
}
.widget.widget_calendar table thead tr th {
  width: 14.28571428571429%;
  float: left;
  border: none;
  text-align: center;
  background: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  display: block;
  line-height: 3.5rem;
  text-transform: uppercase;
  padding: 0;
}
.widget.widget_calendar table tbody {
  padding: 0 0.5rem 0.5rem 0.5rem;
}
.widget.widget_calendar table tbody:before,
.widget.widget_calendar table tbody:after {
  content: " ";
  display: table;
}
.widget.widget_calendar table tbody:after {
  clear: both;
}
.widget.widget_calendar table tbody:before,
.widget.widget_calendar table tbody:after {
  content: " ";
  display: table;
}
.widget.widget_calendar table tbody:after {
  clear: both;
}
.widget.widget_calendar table tbody * {
  border: none;
}
.widget.widget_calendar table tbody tr {
  width: 100%;
  display: block;
}
.widget.widget_calendar table tbody tr:before,
.widget.widget_calendar table tbody tr:after {
  content: " ";
  display: table;
}
.widget.widget_calendar table tbody tr:after {
  clear: both;
}
.widget.widget_calendar table tbody tr:before,
.widget.widget_calendar table tbody tr:after {
  content: " ";
  display: table;
}
.widget.widget_calendar table tbody tr:after {
  clear: both;
}
.widget.widget_calendar table tbody td {
  width: 14.28571428571429%;
  height: 3.5rem;
  float: left;
  padding: 0;
  line-height: 3.5rem;
  display: block;
  font-size: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #fff;
}
.widget.widget_calendar table tbody td a {
  display: block;
  width: 100%;
  height: 3.5rem;
  font-size: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #ff3c00;
}
.widget.widget_calendar table tbody td a:hover {
  background: #ff3c00;
  color: #fff;
}
.widget.widget_calendar table tbody td#today {
  background: #ff3c00;
  color: #fff;
}
.widget.widget_calendar table #today {
  color: #d3d3d3;
}
.widget.widget_calendar table a {
  color: #fff;
}
.widget.widget_calendar table tfoot a {
  font-size: 0;
}
.widget.widget_calendar table tfoot td {
  border: none;
  padding: 0;
}
.widget.widget_calendar table tfoot td.pad {
  display: none;
}
.widget.widget_calendar table tfoot td#next,
.widget.widget_calendar table tfoot td#prev {
  position: absolute;
  top: 0;
  height: 1.4rem;
  height: 4rem;
}
.widget.widget_calendar table tfoot td#next a,
.widget.widget_calendar table tfoot td#prev a {
  display: block;
  width: 4rem;
  height: 4rem;
  text-align: center;
  position: relative;
}
.widget.widget_calendar table tfoot td#next a:before,
.widget.widget_calendar table tfoot td#prev a:before {
  display: inline-block;
  font: normal normal normal 1.4rem/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  opacity: 0.5;
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.75rem;
  margin-left: -0.2rem;
}
.widget.widget_calendar table tfoot td#next {
  right: 0;
}
.widget.widget_calendar table tfoot td#next a:before {
  content: '\f105';
}
.widget.widget_calendar table tfoot td#prev {
  left: 0;
}
.widget.widget_calendar table tfoot td#prev a:before {
  content: '\f104';
}
.widget ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.widget ul li {
  color: #545454;
}
.widget ul li a {
  color: grey;
  font-size: 1.4rem;
  font-weight: 400;
}
.widget ul li a:hover {
  text-decoration: none;
  color: #fff;
}
.widget ul li ul {
  padding-left: 1rem;
}
.widget .search-field {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.widget.widget_nav_menu ul li a {
  color: #fff;
  font-size: 1.3rem;
  line-height: 3.3rem;
  display: block;
  text-transform: uppercase;
}
.widget.widget_nav_menu ul li a:hover {
  color: #919191;
}
.widget.widget_nav_menu_additional ul li a {
  color: #919191;
  font-size: 1.3rem;
  line-height: 3.3rem;
  display: block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: capitalize;
}
.widget.widget_nav_menu_additional ul li a:hover {
  color: #fff;
}
.widget.widget_follow_media ul li a {
  color: #fff;
  font-size: 1.3rem;
  line-height: 3.3rem;
  display: block;
  text-transform: capitalize;
}
.widget.widget_follow_media ul li a i {
  font-size: 1.2rem;
  line-height: 4.2rem;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  color: #fff;
  margin: 0 0.2rem;
  text-align: center;
  border-radius: 50%;
  margin-left: -1.5rem;
  margin-top: -0.4rem;
  margin-bottom: -0.4rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.widget.widget_follow_media ul li a:hover {
  color: #ff3c00;
}
.widget.widget_follow_media ul li a:hover i {
  background-color: rgba(255, 255, 255, 0.05);
}
.widget p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #919191;
}
.widget select {
  width: 100%;
  font-weight: 400;
  padding: 0.5rem 0.6rem;
  border-radius: 2px;
  border: 1px solid #ddd;
}
.widget .newsletter-container form {
  position: relative;
}
.widget .newsletter-container input {
  background: rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 1.4rem;
  padding: 1.5rem 1.8rem;
  padding-right: 5.1rem;
  color: #919191;
  width: 100%;
}
.widget .newsletter-container button {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  right: 0;
  top: 0;
  border: none;
  padding: 0;
  text-align: center;
  line-height: 4.5rem;
  font-size: 1.6rem;
  background: transparent;
}
.widget .newsletter-container button:after {
  display: none;
}
.widget .newsletter-container button:hover {
  color: #ff3c00;
}
.widget table tbody > tr * {
  text-align: center;
}
.widget table tbody > tr > td {
  line-height: 1;
}
.widget table tbody > tr > td * {
  text-align: center;
}
.widget table a {
  color: grey;
  font-size: 1.4rem;
  font-weight: 400;
}
.widget table a:hover {
  text-decoration: none;
}
.widget .navbar-right {
  margin-right: 0;
}
.widget.widget-events article,
.widget.widget-events-with-timer article {
  margin-bottom: 1rem;
}
.widget.widget-events article header figure,
.widget.widget-events-with-timer article header figure {
  position: relative;
  background-size: cover;
  background-position: center center;
  padding: 1.3rem 1rem;
  padding-left: 7rem;
  display: table;
  width: 100%;
  z-index: 1;
}
.widget.widget-events article header figure .cover-all,
.widget.widget-events-with-timer article header figure .cover-all {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.widget.widget-events article header figure:after,
.widget.widget-events-with-timer article header figure:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.widget.widget-events article header figure figcaption,
.widget.widget-events-with-timer article header figure figcaption,
.widget.widget-events article header figure time,
.widget.widget-events-with-timer article header figure time {
  position: relative;
  z-index: 1;
}
.widget.widget-events article header figure figcaption,
.widget.widget-events-with-timer article header figure figcaption {
  padding: 1.7rem 0;
}
.widget.widget-events article header figure h2,
.widget.widget-events-with-timer article header figure h2,
.widget.widget-events article header figure p,
.widget.widget-events-with-timer article header figure p {
  color: #fff;
}
.widget.widget-events article header figure h2,
.widget.widget-events-with-timer article header figure h2 {
  font-size: 1.6rem;
  line-height: 1.8rem;
  display: block;
  padding: 0;
}
.widget.widget-events article header figure p,
.widget.widget-events-with-timer article header figure p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.2rem;
}
.widget.widget-events article header figure time,
.widget.widget-events-with-timer article header figure time {
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0.3rem;
  width: 4.5rem;
}
.widget.widget-events article header figure time span,
.widget.widget-events-with-timer article header figure time span {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  display: block;
  width: 100%;
  text-align: left;
}
.widget.widget-events article header figure time span.week-day,
.widget.widget-events-with-timer article header figure time span.week-day,
.widget.widget-events article header figure time span.month,
.widget.widget-events-with-timer article header figure time span.month,
.widget.widget-events article header figure time span.hour,
.widget.widget-events-with-timer article header figure time span.hour {
  font-size: 1.4rem;
  line-height: 1.9rem;
  font-weight: 400;
}
.widget.widget-events article header figure time span.number-day,
.widget.widget-events-with-timer article header figure time span.number-day {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.9rem;
  margin-bottom: 0.4rem;
}
.widget.widget-events article header figure:hover:after,
.widget.widget-events-with-timer article header figure:hover:after {
  background: #ff3c00;
  opacity: 0.7;
}
.widget.widget-events .view-calendar {
  background: #222222;
  display: block;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-align: center;
  color: #d3d3d3;
  padding: 1.8rem 1rem;
  line-height: 1.1rem;
}
.widget.widget-events .view-calendar:hover {
  background: #ff3c00;
  color: #fff;
}
.widget.widget-events-with-timer article footer {
  padding-top: 2rem;
  padding-bottom: 1rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.widget.widget-events-with-timer article footer > div {
  padding: 0;
  text-align: center;
  -webkit-box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.12);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.12);
}
.widget.widget-events-with-timer article footer > div span {
  display: block;
  width: 100%;
  opacity: 0.5;
  color: #fff;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 400;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.widget.widget-events-with-timer article footer > div span.time-item {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 2.7rem;
  line-height: 2.7rem;
  margin-bottom: 0.6rem;
  color: #f2f2f2;
  opacity: 0.7;
  font-weight: 400;
  opacity: 1;
}
.widget.widget-events-with-timer article footer > div:last-child {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.widget.widget-twitter {
  background: #222222;
  padding: 1.5rem;
}
.widget.widget-twitter header {
  margin-bottom: 2rem;
}
.widget.widget-twitter header h3 {
  padding: 0;
  line-height: 2.4rem;
  font-size: 1.2rem;
  font-weight: 400;
}
.widget.widget-twitter .twitter-entries {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.widget.widget-twitter .twitter-entries p {
  line-height: 2.4rem;
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #fff;
}
.widget.widget-twitter .twitter-entries:after {
  content: '“';
  position: absolute;
  top: 0.8rem;
  left: -1.5rem;
  color: #fff;
  opacity: 0.1;
  font-size: 16rem;
  display: block;
  line-height: 8rem;
  z-index: -1;
}
.widget.widget-twitter footer i {
  font-size: 1.6rem;
  margin-right: 1rem;
}
.widget.widget-twitter footer > * {
  display: inline-block;
}
.widget.widget-twitter footer ul li {
  display: inline-block;
}
.widget.widget-twitter footer ul li a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6rem;
}
.widget.widget-twitter footer ul li a:hover {
  color: #ff3c00;
}
.widget.widget-twitter footer ul li:after {
  content: '|';
  margin: 0 0.2rem;
}
.widget.widget-twitter footer ul li:last-child:after {
  display: none;
}
.widget.widget-posts-navigation {
  margin: 0 -1.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
}
.widget.widget-posts-navigation:after,
.widget.widget-posts-navigation:before {
  content: '';
  display: table;
}
.widget.widget-posts-navigation:after {
  clear: both;
}
.widget.widget-posts-navigation .prev-post,
.widget.widget-posts-navigation .next-post {
  cursor: pointer;
}
.widget.widget-posts-navigation .prev-post span,
.widget.widget-posts-navigation .next-post span {
  font-size: 1.4rem;
  color: #8c8c8c;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.widget.widget-posts-navigation .prev-post i,
.widget.widget-posts-navigation .next-post i {
  color: #8c8c8c;
  position: relative;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.widget.widget-posts-navigation .prev-post:hover:not(.disabled) span,
.widget.widget-posts-navigation .next-post:hover:not(.disabled) span,
.widget.widget-posts-navigation .prev-post:hover:not(.disabled) i,
.widget.widget-posts-navigation .next-post:hover:not(.disabled) i {
  color: #fff;
}
.widget.widget-posts-navigation .prev-post.disabled,
.widget.widget-posts-navigation .next-post.disabled {
  opacity: 0.6;
}
.widget.widget-posts-navigation .prev-post {
  float: left;
}
.widget.widget-posts-navigation .prev-post i {
  padding-right: 1rem;
  left: 0;
}
.widget.widget-posts-navigation .prev-post:hover:not(.disabled) i {
  left: -0.5rem;
}
.widget.widget-posts-navigation .next-post {
  float: right;
}
.widget.widget-posts-navigation .next-post i {
  padding-left: 1rem;
  right: 0;
}
.widget.widget-posts-navigation .next-post:hover:not(.disabled) i {
  right: -0.5rem;
}
.widget.widget-blog-article article {
  background-size: cover;
  background-position: center center;
  z-index: 1;
  position: relative;
  padding: 1.7rem;
  margin-bottom: 3rem;
  min-height: 26rem;
}
.widget.widget-blog-article article > p {
  margin-bottom: 1rem;
  line-height: 1.2rem;
  font-size: 1.2rem;
  color: #919191;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.widget.widget-blog-article article > p a {
  color: #fff;
}
.widget.widget-blog-article article > p a:hover {
  opacity: 0.8;
}
.widget.widget-blog-article article header h2 {
  padding: 0;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.widget.widget-blog-article article header h2 a:hover {
  color: #fff;
}
.widget.widget-blog-article article .article-entries p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #919191;
  font-size: 1.4rem;
  line-height: 1.8rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.widget.widget-blog-article article footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 0 1.7rem 1.7rem 1.7rem;
}
.widget.widget-blog-article article footer .read-more {
  position: relative;
  border-radius: 0.3rem;
  font-size: 1rem;
  line-height: 1rem;
  float: left;
  text-transform: uppercase;
  z-index: 0;
  padding: 0.8rem 1.7rem;
  overflow: hidden;
}
.widget.widget-blog-article article footer .read-more:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
  top: 0;
  background: #ff3c00;
  opacity: 0.2;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.widget.widget-blog-article article footer .read-more:hover {
  color: #fff;
  opacity: 1;
}
.widget.widget-blog-article article footer .share-comment-group {
  float: right;
}
.widget.widget-blog-article article footer .share-comment-group a {
  font-size: 1rem;
  line-height: 1rem;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  padding: 0 0.6rem;
  margin: 0.8rem 0;
}
.widget.widget-blog-article article footer .share-comment-group a:first-child {
  padding-left: 0;
}
.widget.widget-blog-article article footer .share-comment-group a:last-child {
  padding-right: 0;
}
.widget.widget-blog-article article footer .share-comment-group a:hover {
  opacity: 1;
}
.widget.widget-blog-article article:after {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #1c1c1c;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.widget.widget-blog-article article:hover > p {
  color: #fff;
}
.widget.widget-blog-article article:hover header figure figcaption a:last-of-type {
  color: #fff;
}
.widget.widget-blog-article article:hover header h2 {
  text-decoration: underline;
}
.widget.widget-blog-article article:hover .article-entries p {
  color: #fff;
}
.widget.widget-blog-article article:hover footer .read-more {
  color: #ff3c00;
}
.widget.widget-blog-article article:hover footer .read-more:after {
  background: #fff;
  opacity: 0.8;
}
.widget.widget-blog-article article:hover:after {
  background: #ff3c00;
}
.widget.filled {
  padding: 2rem 1.5rem;
  margin: 0 -1.5rem;
  margin-bottom: 3rem;
  background: rgba(0, 0, 0, 0.3);
}
.widget.filled.widget-events-with-timer {
  padding-bottom: 0.1rem;
}
.widget.widget-latest-news article {
  background: #1c1c1c;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 0.1rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.widget.widget-latest-news article header time {
  font-size: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #919191;
}
.widget.widget-latest-news article header time a {
  color: #fff;
  font-size: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.widget.widget-latest-news article header time a:hover {
  opacity: 1;
  color: #fff;
}
.widget.widget-latest-news article header h3 {
  padding: 0;
  line-height: 2rem;
}
.widget.widget-latest-news article header h3 a {
  line-height: 2rem;
  font-size: 1.6rem;
}
.widget.widget-latest-news article header h3 a:hover {
  color: #fff;
  opacity: 1;
}
.widget.widget-latest-news article footer {
  padding-top: 1rem;
}
.widget.widget-latest-news article footer a {
  float: left;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  line-height: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.widget.widget-latest-news article footer a:hover {
  opacity: 1;
}
.widget.widget-latest-news article footer a.read-more {
  border-radius: 0.4rem;
  overflow: hidden;
  position: relative;
  padding-left: 1.7rem;
  padding-right: 1.7rem;
  z-index: 1;
  margin-right: 1rem;
}
.widget.widget-latest-news article footer a.read-more:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ff3c00;
  opacity: 0.2;
  z-index: -1;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.widget.widget-latest-news article footer a.read-more:hover {
  opacity: 1;
  color: #fff;
}
.widget.widget-latest-news article footer a.read-more:hover:after {
  opacity: 1;
}
.widget.widget-latest-news article footer a.share-button:after {
  content: '|';
  position: relative;
  top: -1px;
  margin-left: 0.3rem;
  margin-right: 0.4rem;
}
.widget.widget-latest-news article:hover {
  background: #202020;
}
.widget.widget-latest-news article:hover header h3 a {
  text-decoration: underline;
}
.widget.widget-latest-news article:hover footer a.read-more:after {
  opacity: 1;
}
.main-footer .widget:not(.widget_text) {
  padding-top: 1.5rem;
}
@media (max-width: 1200px) {
  .widget.widget-events-with-timer article header figure,
  .widget.widget-events article header figure {
    padding-left: 1rem;
    padding-top: 5rem;
  }
  .widget.widget-events-with-timer article header figure figcaption,
  .widget.widget-events article header figure figcaption {
    padding: 0;
  }
  .widget.widget-events-with-timer article header figure time,
  .widget.widget-events article header figure time {
    right: 1rem;
    padding-left: 4rem;
    width: auto;
    top: 1rem;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .widget.widget-events-with-timer article header figure time span,
  .widget.widget-events article header figure time span {
    text-align: left;
    margin-right: 0.5rem;
    margin-bottom: 0;
    width: auto;
    display: inline-block;
    float: left;
    line-height: 3rem !important;
  }
  .widget.widget-events-with-timer article header figure time span.month,
  .widget.widget-events article header figure time span.month {
    margin-bottom: 0;
  }
  .widget.widget-events-with-timer article header figure time span.number-day,
  .widget.widget-events article header figure time span.number-day {
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    line-height: 3rem;
  }
}
@media (max-width: 1030px) {
  .widget.widget_follow_media ul li a i {
    margin-right: -1rem;
  }
}
@media (max-width: 800px) {
  .main-footer .container > div {
    width: 100%;
    text-align: center;
  }
}
.wp-caption {
  max-width: 100%;
}
p .size-full {
  width: auto;
  height: auto;
  margin: 5px 0 30px 0;
}
.alignleft {
  float: left;
  margin: 0 15px 30px 0;
}
.aligncenter {
  display: block;
  margin: 0 auto 30px auto;
}
.alignright {
  float: right;
  margin: 0 0 30px 15px;
}
.alignnone {
  float: none;
  display: block;
  margin: 0 0 30px 0;
}
.alignnone img {
  width: 100%;
}
.size-full {
  width: 100%;
  height: auto;
  margin: 0 0 30px 0;
}
p .alignleft {
  float: left;
  margin: 5px 15px 30px 0;
}
p .aligncenter {
  display: inline-block;
  margin: 5px auto 30px auto;
}
p .alignright {
  float: right;
  margin: 5px 0 30px 15px;
}
p .alignnone {
  float: none;
  display: block;
  margin: 5px 0 30px 0;
}
.main-footer .aligncenter img {
  width: auto;
}
.blog-listing-full-width article {
  padding: 5.5rem 0;
  border-bottom: 0.1rem solid rgba(68, 68, 68, 0.1);
}
.blog-listing-full-width article .container {
  opacity: 0.2;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.blog-listing-full-width article:last-child {
  border-bottom: none;
}
.blog-listing-full-width article p {
  margin-bottom: 1rem;
}
.blog-listing-full-width article .posted-date,
.blog-listing-full-width article figcaption {
  font-size: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #777;
  text-transform: uppercase;
}
.blog-listing-full-width article .posted-date a,
.blog-listing-full-width article figcaption a,
.blog-listing-full-width article .posted-date time,
.blog-listing-full-width article figcaption time {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #777;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.blog-listing-full-width article .posted-date a:hover,
.blog-listing-full-width article figcaption a:hover,
.blog-listing-full-width article .posted-date time:hover,
.blog-listing-full-width article figcaption time:hover {
  color: #fff;
}
.blog-listing-full-width article .posted-date a {
  font-weight: 300;
}
.blog-listing-full-width article .row figcaption a {
  font-weight: 400;
  color: #777;
}
.blog-listing-full-width article .row figcaption a:hover {
  color: #fff;
}
.blog-listing-full-width article .row header h2 {
  padding: 0;
}
.blog-listing-full-width article .row header h2 a {
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3rem;
  display: block;
}
.blog-listing-full-width article .article-entries p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 3rem;
  color: #c7c7c7;
}
.blog-listing-full-width article:hover .container {
  opacity: 1;
}
.comment-form-theme,
.comments .comment-respond {
  text-align: center;
  padding-top: 2rem;
  margin-bottom: 6rem;
}
.comment-form-theme > h3,
.comments .comment-respond > h3 {
  text-transform: uppercase;
  color: #404041;
  font-size: 2.5rem;
  letter-spacing: 2px;
  display: none;
}
.comment-form-theme > h3 small a,
.comments .comment-respond > h3 small a {
  text-transform: uppercase;
  color: #404041;
  font-size: 1.6rem;
}
.comment-form-theme > h3 small a:hover,
.comments .comment-respond > h3 small a:hover {
  text-decoration: none;
}
.comment-form-theme ul,
.comments .comment-respond ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 2rem;
}
.comment-form-theme ul:after,
.comments .comment-respond ul:after,
.comment-form-theme ul:before,
.comments .comment-respond ul:before {
  content: " ";
  display: table;
}
.comment-form-theme ul:after,
.comments .comment-respond ul:after {
  clear: both;
}
.comment-form-theme ul li,
.comments .comment-respond ul li {
  width: 33.333333333333333%;
  float: left;
  padding: 0 1rem;
}
.comment-form-theme ul li:first-child,
.comments .comment-respond ul li:first-child {
  padding-left: 0;
}
.comment-form-theme ul li:last-child,
.comments .comment-respond ul li:last-child {
  padding-right: 0;
}
.comment-form-theme ul li input,
.comments .comment-respond ul li input {
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.comment-form-theme ul li input::-webkit-input-placeholder,
.comments .comment-respond ul li input::-webkit-input-placeholder {
  color: #8e8e8e;
}
.comment-form-theme ul li input:-moz-placeholder,
.comments .comment-respond ul li input:-moz-placeholder {
  /* Firefox 18- */
  color: #8e8e8e;
}
.comment-form-theme ul li input::-moz-placeholder,
.comments .comment-respond ul li input::-moz-placeholder {
  /* Firefox 19+ */
  color: #8e8e8e;
}
.comment-form-theme ul li input:-ms-input-placeholder,
.comments .comment-respond ul li input:-ms-input-placeholder {
  color: #8e8e8e;
}
.comment-form-theme textarea,
.comments .comment-respond textarea {
  margin-bottom: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
}
.comment-form-theme textarea::-webkit-input-placeholder,
.comments .comment-respond textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
.comment-form-theme textarea:-moz-placeholder,
.comments .comment-respond textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #8e8e8e;
}
.comment-form-theme textarea::-moz-placeholder,
.comments .comment-respond textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #8e8e8e;
}
.comment-form-theme textarea:-ms-input-placeholder,
.comments .comment-respond textarea:-ms-input-placeholder {
  color: #8e8e8e;
}
.comment-form-theme textarea:hover,
.comments .comment-respond textarea:hover,
.comment-form-theme textarea:active,
.comments .comment-respond textarea:active,
.comment-form-theme textarea:focus,
.comments .comment-respond textarea:focus {
  border-color: #ff3c00;
}
.comment-form-theme .comment-respond,
.comments .comment-respond .comment-respond {
  margin-top: 2rem;
}
.comment-form-theme .form-submit,
.comments .comment-respond .form-submit {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.comment-form-theme .form-submit:hover,
.comments .comment-respond .form-submit:hover,
.comment-form-theme .form-submit:active,
.comments .comment-respond .form-submit:active,
.comment-form-theme .form-submit:focus,
.comments .comment-respond .form-submit:focus {
  border-color: #ff3c00;
}
.blog-articles article {
  background-size: cover;
  background-position: center center;
  z-index: 1;
  position: relative;
  padding: 1.7rem;
  margin-bottom: 3rem;
  background-color: #fff;
}
.blog-articles article > p {
  line-height: 1.2rem;
  font-size: 1.2rem;
  color: #919191;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.blog-articles article > p a {
  color: #fff;
}
.blog-articles article > p a:hover {
  opacity: 0.8;
}
.blog-articles article header figure {
  padding-left: 4rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.blog-articles article header figure > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
}
.blog-articles article header figure > a img {
  width: 100%;
}
.blog-articles article header figure figcaption a {
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding-top: 0.3rem;
  display: block;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.blog-articles article header figure figcaption a:last-of-type {
  color: #919191;
}
.blog-articles article header figure figcaption a:hover {
  border-collapse: 0.8;
}
.blog-articles article header h2 {
  padding: 0;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog-articles article header h2 a:hover {
  color: #fff;
}
.blog-articles article .article-entries p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #919191;
  font-size: 1.4rem;
  line-height: 1.8rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.blog-articles article footer .read-more {
  position: relative;
  border-radius: 0.3rem;
  font-size: 1rem;
  line-height: 1rem;
  float: left;
  text-transform: uppercase;
  z-index: 0;
  padding: 0.8rem 1.7rem;
  overflow: hidden;
}
.blog-articles article footer .read-more:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
  top: 0;
  background: #ff3c00;
  opacity: 0.2;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.blog-articles article footer .read-more:hover {
  color: #fff;
  opacity: 1;
}
.blog-articles article footer .share-comment-group {
  float: right;
}
.blog-articles article footer .share-comment-group a {
  font-size: 1rem;
  line-height: 1rem;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  padding: 0 0.6rem;
  margin: 0.8rem 0;
}
.blog-articles article footer .share-comment-group a:first-child {
  padding-left: 0;
}
.blog-articles article footer .share-comment-group a:last-child {
  padding-right: 0;
}
.blog-articles article footer .share-comment-group a:hover {
  opacity: 1;
}
.blog-articles article:after {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #1c1c1c;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.blog-articles article:hover > p {
  color: #fff;
}
.blog-articles article:hover header figure figcaption a:last-of-type {
  color: #fff;
}
.blog-articles article:hover header h2 {
  text-decoration: underline;
}
.blog-articles article:hover .article-entries p {
  color: #fff;
}
.blog-articles article:hover footer .read-more {
  color: #ff3c00;
}
.blog-articles article:hover footer .read-more:after {
  background: #fff;
  opacity: 0.8;
}
.blog-articles article:hover:after {
  background: #ff3c00;
}
.blog-single-container {
  position: relative;
}
.blog-single-container .event-title {
  margin-bottom: 3rem;
  margin-top: -28rem;
  min-height: 33rem;
}
.blog-single-container .event-title header figure img {
  float: left;
  width: 30%;
  -webkit-box-shadow: 0 0 1.6rem #000;
  -moz-box-shadow: 0 0 1.6rem #000;
  box-shadow: 0 0 1.6rem #000;
}
.blog-single-container .event-title header figure figcaption {
  padding-left: 2.5rem;
  float: left;
  width: 70%;
  padding-top: 7rem;
  padding-bottom: 3rem;
}
.blog-single-container .event-title header figure figcaption h1 {
  padding: 0;
  font-weight: 700;
  font-size: 6rem;
}
.blog-single-container .event-title header figure figcaption time {
  text-transform: uppercase;
  font-size: 2.4rem;
  display: block;
  line-height: 2.4rem;
  padding: 1rem 0;
}
.blog-single-container .event-title header figure figcaption .buy-album {
  margin-bottom: 1rem;
}
.blog-single-container .event-title header figure figcaption .buy-album .buy {
  display: block;
  float: left;
  border-radius: 3px;
  font-size: 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1rem;
  padding: 0.6rem 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.blog-single-container .event-title header figure figcaption .buy-album .buy:after {
  z-index: -1;
  background: #ff3c00;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.7;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.blog-single-container .event-title header figure figcaption .buy-album .buy i {
  margin-right: 0.5rem;
  position: relative;
  top: -1px;
}
.blog-single-container .event-title header figure figcaption .buy-album .buy:hover:after {
  opacity: 1;
}
.blog-single-container .event-title header figure figcaption .buy-album .share-comment-group {
  float: left;
  padding-left: 1rem;
}
.blog-single-container .event-title header figure figcaption .buy-album .share-comment-group a {
  font-size: 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1rem;
  display: block;
  float: left;
  margin: 0.6rem 0;
  color: #fff;
}
.blog-single-container .event-title header figure figcaption .buy-album .share-comment-group a:first-child {
  padding-right: 0.5rem;
  margin-right: 0.5rem;
}
.blog-single-container .event-title header figure figcaption .buy-album .share-comment-group a:hover {
  opacity: 1;
}
.blog-single-container .event-title header figure figcaption > p {
  font-size: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.4rem;
  margin-bottom: 0.6rem;
}
.blog-single-container .event-title.without-poster {
  min-height: 20rem;
  margin-top: -20rem;
}
.blog-single-container .event-title.without-poster header figure img {
  display: none;
}
.blog-single-container .event-title.without-poster header figure figcaption {
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
}
.blog-single-container .album-title {
  margin-bottom: 3rem;
  position: absolute;
  bottom: 100%;
}
.blog-single-container .album-title header {
  position: relative;
}
.blog-single-container .album-title header .big-rate-album {
  position: absolute;
  right: -29.25rem;
  top: 5rem;
}
.blog-single-container .album-title header .big-rate-album > a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  color: #e3e3e3;
  font-weight: 400;
  margin-top: 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.blog-single-container .album-title header .big-rate-album .star-container {
  background: #292929;
  border-radius: 2rem;
  width: 7rem;
  position: relative;
  height: 7rem;
}
.blog-single-container .album-title header .big-rate-album .star-container i {
  width: 7rem;
  line-height: 7rem;
  font-size: 4.5rem;
  text-align: center;
  color: #e4ac00;
}
.blog-single-container .album-title header .big-rate-album .star-container span {
  font-size: 1.3rem;
  font-weight: 700;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  line-height: 7rem;
  text-align: center;
}
.blog-single-container .album-title header figure img {
  float: left;
  width: 30%;
}
.blog-single-container .album-title header figure figcaption {
  padding-left: 2.5rem;
  float: left;
  width: 70%;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.blog-single-container .album-title header figure figcaption h1 {
  padding: 0;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 4.8rem;
}
.blog-single-container .album-title header figure figcaption h2,
.blog-single-container .album-title header figure figcaption p,
.blog-single-container .album-title header figure figcaption time {
  font-size: 1.2rem;
  display: block;
  line-height: 1.2rem;
  font-weight: 400;
  padding: 0.5rem 0 0.5rem 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.blog-single-container .album-title header figure figcaption h2 {
  color: #e3e3e3;
  padding-top: 1rem;
}
.blog-single-container .album-title header figure figcaption time {
  color: #f5f6f8;
}
.blog-single-container .album-title header figure figcaption p {
  color: #969696;
}
.blog-single-container .album-title header figure figcaption .buy-album {
  margin-bottom: 1rem;
}
.blog-single-container .album-title header figure figcaption .buy-album .buy {
  display: block;
  float: left;
  border-radius: 3px;
  font-size: 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1rem;
  padding: 0.6rem 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.blog-single-container .album-title header figure figcaption .buy-album .buy:after {
  z-index: -1;
  background: #ff3c00;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.7;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.blog-single-container .album-title header figure figcaption .buy-album .buy i {
  margin-right: 0.5rem;
  position: relative;
  top: -1px;
}
.blog-single-container .album-title header figure figcaption .buy-album .buy:hover:after {
  opacity: 1;
}
.blog-single-container .album-title header figure figcaption .buy-album .share-comment-group {
  float: left;
  padding-left: 1rem;
}
.blog-single-container .album-title header figure figcaption .buy-album .share-comment-group a {
  font-size: 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1rem;
  display: block;
  float: left;
  margin: 0.6rem 0;
  color: #fff;
}
.blog-single-container .album-title header figure figcaption .buy-album .share-comment-group a:first-child {
  padding-right: 0.5rem;
  margin-right: 0.5rem;
}
.blog-single-container .album-title header figure figcaption .buy-album .share-comment-group a:hover {
  opacity: 1;
}
.blog-single-container .album-title header figure figcaption > p {
  font-size: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.4rem;
  margin-bottom: 0.6rem;
}
.blog-single-container .article-title {
  width: 90%;
  margin-bottom: 2rem;
  position: absolute;
  bottom: 100%;
}
.blog-single-container .article-title h1 {
  font-size: 4.5rem;
  line-height: auto;
  font-weight: 700;
  padding: 0 0 1.5rem 0;
}
.blog-single-container .article-title time {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #fff;
  font-size: 1.2rem;
}
.blog-single-container .article-title time a {
  font-weight: 400;
}
.blog-single-container p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.blog-single-container div,
.blog-single-container span,
.blog-single-container p,
.blog-single-container blockquote,
.blog-single-container pre,
.blog-single-container a,
.blog-single-container abbr,
.blog-single-container acronym,
.blog-single-container address,
.blog-single-container big,
.blog-single-container cite,
.blog-single-container code,
.blog-single-container del,
.blog-single-container dfn,
.blog-single-container em,
.blog-single-container img,
.blog-single-container ins,
.blog-single-container kbd,
.blog-single-container q,
.blog-single-container s,
.blog-single-container samp,
.blog-single-container small,
.blog-single-container strike,
.blog-single-container strong,
.blog-single-container tt,
.blog-single-container var,
.blog-single-container b,
.blog-single-container u,
.blog-single-container center,
.blog-single-container dl,
.blog-single-container dt,
.blog-single-container dd,
.blog-single-container ol,
.blog-single-container ul,
.blog-single-container li,
.blog-single-container fieldset,
.blog-single-container form,
.blog-single-container label,
.blog-single-container legend,
.blog-single-container table,
.blog-single-container caption,
.blog-single-container tbody,
.blog-single-container tfoot,
.blog-single-container thead,
.blog-single-container tr,
.blog-single-container th,
.blog-single-container td,
.blog-single-container article,
.blog-single-container aside,
.blog-single-container canvas,
.blog-single-container details,
.blog-single-container embed,
.blog-single-container figure,
.blog-single-container figcaption,
.blog-single-container footer,
.blog-single-container header,
.blog-single-container hgroup,
.blog-single-container menu,
.blog-single-container nav,
.blog-single-container output,
.blog-single-container ruby,
.blog-single-container section,
.blog-single-container summary,
.blog-single-container time,
.blog-single-container mark,
.blog-single-container audio,
.blog-single-container video {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.without-featured-image .blog-single-container .album-title {
  position: relative;
}
.without-featured-image .blog-single-container .article-title {
  position: relative;
}
.without-featured-image .breadcrumb-page:before,
.without-featured-image .breadcrumb-page:after {
  display: none !important;
}
.comment-container .title-comments {
  text-align: left;
  color: #919191;
  text-transform: uppercase;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 3rem;
  letter-spacing: 0;
  padding: 0;
}
.comment-container .title-comments span {
  display: block;
  float: left;
  color: #06c7ea;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3rem;
  color: #fff;
  margin-right: 1.5rem;
}
.comment-container .title-comments a {
  float: right;
  line-height: 1.2rem;
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  padding: 1.5rem 2.5rem;
  background: #9f2a06;
  margin-top: -0.6rem;
  margin-bottom: -0.6rem;
}
.comment-container .title-comments a:hover {
  background: #ff3c00;
}
.comment-container ul.comments {
  padding-left: 0;
  margin-top: 6rem;
  list-style: none;
}
.comment-container ul.comments ul.children {
  list-style: none;
  padding-left: 0;
}
.comment-container ul.comments ul:not(.children),
.comment-container ul.comments ol:not(.children) {
  padding-left: 3rem;
}
.comment-container ul.comments ul:not(.children) li,
.comment-container ul.comments ol:not(.children) li {
  padding-left: 0;
}
.comment-container ul.comments ul:not(.children) {
  list-style-type: square;
}
.comment-container ul.comments li {
  padding-left: 12rem;
  min-height: 10rem;
}
.comment-container ul.comments li .comment .left-section,
.comment-container ul.comments li .pingback .left-section {
  position: absolute;
  width: 10rem;
  margin-left: -12rem;
}
.comment-container ul.comments li .comment .left-section img,
.comment-container ul.comments li .pingback .left-section img {
  width: 100%;
  border-radius: 3px;
}
.comment-container ul.comments li .comment .right-section,
.comment-container ul.comments li .pingback .right-section {
  padding-bottom: 1.7rem;
  position: relative;
  width: 100%;
  padding-top: 1px;
}
.comment-container ul.comments li .comment .right-section ul,
.comment-container ul.comments li .pingback .right-section ul {
  padding-left: 3rem;
}
.comment-container ul.comments li .comment .right-section .comment-author-link,
.comment-container ul.comments li .pingback .right-section .comment-author-link {
  margin-top: 0;
  font-size: 1.6rem;
  text-transform: inherit;
  padding: 0;
  font-style: inherit;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  margin-bottom: 0;
}
.comment-container ul.comments li .comment .right-section .comment-author-link a,
.comment-container ul.comments li .pingback .right-section .comment-author-link a {
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.comment-container ul.comments li .comment .right-section .comment-author-link a:hover,
.comment-container ul.comments li .pingback .right-section .comment-author-link a:hover {
  text-decoration: none;
  opacity: 1;
}
.comment-container ul.comments li .comment .right-section a.comment-reply-link,
.comment-container ul.comments li .pingback .right-section a.comment-reply-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  color: #fff;
  padding: 0.8rem 1rem;
  line-height: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  z-index: 0;
}
.comment-container ul.comments li .comment .right-section a.comment-reply-link:hover,
.comment-container ul.comments li .pingback .right-section a.comment-reply-link:hover {
  text-decoration: none;
  color: #fff;
}
.comment-container ul.comments li .comment .right-section a.comment-reply-link:hover:after,
.comment-container ul.comments li .pingback .right-section a.comment-reply-link:hover:after {
  opacity: 1;
}
.comment-container ul.comments li .comment .right-section a.comment-reply-link:after,
.comment-container ul.comments li .pingback .right-section a.comment-reply-link:after {
  content: '';
  z-index: -1;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #ff3c00;
  opacity: 0.2;
}
.comment-container ul.comments li .comment .right-section a.comment-share,
.comment-container ul.comments li .pingback .right-section a.comment-share {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  color: #fff;
  padding: 0.8rem 1rem;
  line-height: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  z-index: 0;
}
.comment-container ul.comments li .comment .right-section a.comment-share:hover,
.comment-container ul.comments li .pingback .right-section a.comment-share:hover {
  text-decoration: none;
  opacity: 1;
}
.comment-container ul.comments li .comment .right-section .time-comment,
.comment-container ul.comments li .pingback .right-section .time-comment {
  color: #b4b4b4;
  font-weight: 400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-top: 0px;
  margin-bottom: 0;
  font-size: 1.2rem;
}
.comment-container ul.comments li .comment .right-section .comment-text,
.comment-container ul.comments li .pingback .right-section .comment-text {
  padding-top: 0.5rem;
  width: 60%;
}
.comment-container ul.comments li .comment .right-section .comment-text p,
.comment-container ul.comments li .pingback .right-section .comment-text p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.6em;
  margin-bottom: 1rem;
  color: #f5f5f5;
}
.comment-container ul.comments li .comment.depth-3 .comment-reply-link,
.comment-container ul.comments li .pingback.depth-3 .comment-reply-link {
  display: none !important;
}
.comments-numb {
  background: rgba(0, 0, 0, 0.3);
  padding: 3.5rem 0;
  margin-top: 5rem;
}
div.author-info {
  margin-top: 7rem;
}
div.author-info .left-author-info {
  float: left;
}
div.author-info .left-author-info figure {
  overflow: hidden;
  width: 10rem;
  height: 10rem;
}
div.author-info .left-author-info figure img {
  width: 100%;
}
div.author-info .right-author-info {
  margin-left: 12.5rem;
}
div.author-info .right-author-info > div {
  margin-top: 0;
  color: #31393e;
  font-size: 1.6rem;
  text-transform: inherit;
  padding: 0;
  font-weight: 400;
  font-style: inherit;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 1rem;
}
div.author-info .right-author-info > div span {
  font-weight: 700;
}
div.author-info .right-author-info p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #919191;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
}
.title-col h2 {
  color: #fff;
  text-transform: capitalize;
  padding: 0;
  font-size: 2.4rem;
  line-height: 3.3rem;
  margin-bottom: 2rem;
}
.title-col h2 a {
  float: right;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 4rem;
}
.title-col h2 a i {
  margin-right: 0.4rem;
}
.news-listing article {
  position: relative;
  padding-left: 28.5rem;
  margin-bottom: 3rem;
  min-height: 26rem;
}
.news-listing article figure {
  position: absolute;
  left: 0;
  top: 0;
}
.news-listing article figure a {
  display: block;
}
.news-listing article figure a img {
  width: 26rem;
}
.news-listing article.without-featured-image {
  padding-left: 0 !important;
  min-height: inherit;
}
.news-listing article.without-featured-image figure {
  display: none;
}
.news-listing article header h2 {
  padding: 0.5rem 0;
  line-height: 3.7rem;
}
.news-listing article header h2 a {
  font-weight: 700;
  font-size: 3rem;
}
.news-listing article header p {
  font-size: 1.2rem;
  color: #919191;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.news-listing article header p a {
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.news-listing article header p a:hover {
  opacity: 1;
}
.news-listing article .article-entries p {
  margin-bottom: 0;
  font-size: 1.4rem;
  color: #919191;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.news-listing article footer {
  margin-top: 1.5rem;
}
.news-listing article footer > a,
.news-listing article footer > div {
  float: left;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 1.2rem 0.5rem;
}
.news-listing article footer > div > a {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.news-listing article footer .share-button {
  position: relative;
}
.news-listing article footer .share-button .share-box {
  position: absolute;
  z-index: 1;
  left: 100%;
  width: 18rem;
  top: -5rem;
  visibility: hidden;
  opacity: 0;
  background: #1c1c1c;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.news-listing article footer .share-button .share-box a {
  display: block;
}
.news-listing article footer .share-button .share-box a i {
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  font-size: 1.4rem;
}
.news-listing article footer .share-button .share-box a span {
  text-transform: capitalize;
}
.news-listing article footer .share-button .share-box a:hover,
.news-listing article footer .share-button .share-box a:active,
.news-listing article footer .share-button .share-box a:focus {
  color: #fff;
  background: #353535;
}
.news-listing article footer .share-button.share-active .share-box {
  top: -6.5rem;
  opacity: 1;
  visibility: visible;
}
.news-listing article footer .read-more {
  position: relative;
  overflow: hidden;
  border-radius: 0.3rem;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 1.2rem 3rem;
  z-index: 1;
  margin-right: 1.5rem;
}
.news-listing article footer .read-more:before {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.2;
  border-radius: 0.3rem;
  background: #ff3c00;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.news-listing article footer .read-more:hover {
  color: #fff;
}
.news-listing article footer .read-more:hover:before {
  opacity: 1;
}
body .news-listing.news-listing-content-dark,
.light-layout .news-listing.news-listing-content-dark {
  color: #1c1c1c;
}
body .news-listing.news-listing-content-dark a,
.light-layout .news-listing.news-listing-content-dark a {
  color: #1c1c1c;
}
body .news-listing.news-listing-content-dark article footer .read-more:before,
.light-layout .news-listing.news-listing-content-dark article footer .read-more:before {
  opacity: 0.6;
}
body .news-listing.news-listing-content-dark article header h2 a,
.light-layout .news-listing.news-listing-content-dark article header h2 a,
body .news-listing.news-listing-content-dark article header p a,
.light-layout .news-listing.news-listing-content-dark article header p a {
  color: #1c1c1c;
}
body .news-listing.news-listing-content-dark article header h2 a:hover,
.light-layout .news-listing.news-listing-content-dark article header h2 a:hover,
body .news-listing.news-listing-content-dark article header p a:hover,
.light-layout .news-listing.news-listing-content-dark article header p a:hover {
  opacity: 0.6;
}
body .news-listing.news-listing-content-dark article footer .read-more,
.light-layout .news-listing.news-listing-content-dark article footer .read-more {
  color: #fff;
}
body .news-listing.news-listing-content-dark article footer > a,
.light-layout .news-listing.news-listing-content-dark article footer > a,
body .news-listing.news-listing-content-dark article footer > div,
.light-layout .news-listing.news-listing-content-dark article footer > div {
  color: #1c1c1c;
}
body .news-listing.news-listing-content-dark article footer > a:hover,
.light-layout .news-listing.news-listing-content-dark article footer > a:hover,
body .news-listing.news-listing-content-dark article footer > div:hover,
.light-layout .news-listing.news-listing-content-dark article footer > div:hover {
  opacity: 0.6;
}
body .news-listing.news-listing-content-light,
.light-layout .news-listing.news-listing-content-light {
  color: #fff;
}
body .news-listing.news-listing-content-light a,
.light-layout .news-listing.news-listing-content-light a {
  color: #fff;
}
body .news-listing.news-listing-content-light article footer .read-more:before,
.light-layout .news-listing.news-listing-content-light article footer .read-more:before {
  opacity: 0.2;
}
body .news-listing.news-listing-content-light article header h2 a,
.light-layout .news-listing.news-listing-content-light article header h2 a,
body .news-listing.news-listing-content-light article header p a,
.light-layout .news-listing.news-listing-content-light article header p a {
  color: #fff;
}
body .news-listing.news-listing-content-light article header h2 a:hover,
.light-layout .news-listing.news-listing-content-light article header h2 a:hover,
body .news-listing.news-listing-content-light article header p a:hover,
.light-layout .news-listing.news-listing-content-light article header p a:hover {
  opacity: 0.6;
}
body .news-listing.news-listing-content-light article footer .read-more,
.light-layout .news-listing.news-listing-content-light article footer .read-more {
  color: #fff;
}
body .news-listing.news-listing-content-light article footer > a,
.light-layout .news-listing.news-listing-content-light article footer > a,
body .news-listing.news-listing-content-light article footer > div,
.light-layout .news-listing.news-listing-content-light article footer > div {
  color: #fff;
}
body .news-listing.news-listing-content-light article footer > a:hover,
.light-layout .news-listing.news-listing-content-light article footer > a:hover,
body .news-listing.news-listing-content-light article footer > div:hover,
.light-layout .news-listing.news-listing-content-light article footer > div:hover {
  opacity: 0.6;
}
div.tickera,
form.tickera {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}
div.tickera:before,
form.tickera:before,
div.tickera:after,
form.tickera:after {
  content: " ";
  display: table;
}
div.tickera:after,
form.tickera:after {
  clear: both;
}
div.tickera:before,
form.tickera:before,
div.tickera:after,
form.tickera:after {
  content: " ";
  display: table;
}
div.tickera:after,
form.tickera:after {
  clear: both;
}
.tc_in_cart {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  margin-bottom: 2rem;
  display: block;
}
.tc_in_cart a {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-left: 1rem;
  margin-right: 1rem;
}
#tc_payment_form > div:last-child {
  margin-bottom: 0;
}
#tc_payment_form > div .tc_gateway_form.tickera-height {
  margin-top: 0;
  margin-bottom: 0;
}
#tc_payment_form > div .tc_gateway_form.tickera-height p:last-child {
  margin-bottom: 0;
}
#tc_payment_form input[type=radio] {
  position: relative;
  top: 0.2rem;
  margin-right: 0.5rem;
}
.tickera-payment-gateways {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.1);
}
table.tickera {
  margin-bottom: 0;
}
table.tickera * {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
table.tickera .tc_in_cart {
  margin-bottom: 0;
}
table.tickera .tc_in_cart a {
  font-weight: 700;
}
table.tickera select {
  margin-bottom: 0;
  width: 80%;
}
table.tickera > tbody > tr > td,
table.tickera table > tfoot > tr > td {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1rem 1rem 0rem;
}
table.tickera > tbody > tr > td {
  vertical-align: middle;
}
table.tickera > tbody > tr:last-child > td {
  padding-bottom: 0;
}
table.tickera > tbody > tr > th {
  padding: 0 0 1rem 0;
}
table.tickera tbody tr th:first-child,
table.tickera tbody tr td:first-child {
  font-weight: 700;
}
table.tickera tbody .ticket-type {
  font-weight: 700;
}
table.tickera .add_to_cart {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  border: none;
  line-height: 1.2rem;
  display: inline-block;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  padding: 0.8rem 2rem 0.8rem 2rem;
  background: #cc3000;
}
table.tickera .add_to_cart:hover {
  background: #ff3c00;
}
.tickera-page-order .blog-single-container.page p a,
.tickera .order-details tbody tr td a {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  border: none;
  line-height: 1.2rem;
  display: inline-block;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  padding: 0.8rem 2rem 0.8rem 2rem;
  background: #cc3000;
}
.tickera-page-order .blog-single-container.page p a:hover,
.tickera .order-details tbody tr td a:hover {
  background: #ff3c00;
}
div.tickera {
  background: rgba(0, 0, 0, 0.5);
}
div.tickera .tc_in_cart a {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  border: none;
  line-height: 1.2rem;
  display: inline-block;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  padding: 0.8rem 2rem 0.8rem 2rem;
  background: #cc3000;
}
div.tickera .tc_in_cart a:hover {
  background: #ff3c00;
}
.bookatable {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}
.bookatable > h4 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}
form.tickera {
  color: #fff;
}
form.tickera > p {
  margin-bottom: 0;
}
form.tickera > p br {
  display: none;
}
form.tickera .owner-info-wrap > p {
  margin-bottom: 0;
}
form.tickera .tickera-checkout tr th {
  padding-left: 0;
  padding-top: 0;
}
form.tickera .tickera-checkout tr {
  border: none !important;
}
form.tickera table > thead > tr > th {
  border: none;
}
form.tickera .ticket-quantity .quantity {
  border: none;
  display: inline-block;
}
form.tickera .ticket-quantity .tickera_button {
  color: #fff;
}
form.tickera .tickera_additional_info label input {
  margin-left: 0;
}
form.tickera .coupon-code {
  margin-bottom: 1rem;
  display: block;
}
form.tickera .apply_coupon.tickera-button {
  float: left;
}
form.tickera .tickera_buyer_info {
  padding-bottom: 0;
  border-color: rgba(255, 255, 255, 0.1);
}
form.tickera .tickera_buyer_info.info_section > h3,
form.tickera .tickera_owner_info.info_section > h3,
form.tickera .tickera_buyer_info.info_section > h2,
form.tickera .tickera_owner_info.info_section > h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  padding-bottom: 2rem;
}
form.tickera .tickera_buyer_info.info_section > p,
form.tickera .tickera_owner_info.info_section > p {
  margin-bottom: 0;
}
form.tickera .tickera_buyer_info.info_section h5,
form.tickera .tickera_owner_info.info_section h5 {
  padding-bottom: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
form.tickera .tickera_additional_info label input {
  margin-bottom: 0;
}
form.tickera .tickera_additional_info > p {
  margin-bottom: 0;
}
form.tickera .tickera_additional_info > p:before,
form.tickera .tickera_additional_info > p:after {
  content: " ";
  display: table;
}
form.tickera .tickera_additional_info > p:after {
  clear: both;
}
form.tickera .tickera_additional_info > p:before,
form.tickera .tickera_additional_info > p:after {
  content: " ";
  display: table;
}
form.tickera .tickera_additional_info > p:after {
  clear: both;
}
form.tickera input.tickera_checkout {
  margin: 0;
}
form.tickera .fields-wrap span {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
form.tickera table > tbody > tr > td.actions {
  padding-right: 0;
}
form.tickera table {
  margin-bottom: 0;
}
form.tickera table * {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
form.tickera table .tc_in_cart {
  margin-bottom: 0;
}
form.tickera table .tc_in_cart a {
  font-weight: 700;
}
form.tickera table thead tr th:first-child {
  font-weight: 700;
}
form.tickera table select {
  margin-bottom: 0;
  width: 80%;
}
form.tickera table > tbody > tr > td,
form.tickera table table > tfoot > tr > td {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1rem 1rem 0rem;
}
form.tickera table > tbody > tr > td {
  vertical-align: middle;
}
form.tickera table > tbody > tr:last-child > td {
  padding-bottom: 0;
}
form.tickera table > tbody > tr > th {
  padding: 0 0 1rem 0;
}
form.tickera table tbody tr th:first-child {
  font-weight: 700;
}
form.tickera table tbody .ticket-type {
  font-weight: 700;
}
.tickera-checkout {
  color: #fff;
}
@media (max-width: 1200px) {
  .blog-single-container .album-title header .big-rate-album {
    right: -24.25rem;
  }
  .blog-single-container .article-title {
    margin-top: auto;
    width: 100%;
    min-height: auto;
    position: inherit;
  }
  .blog-single-container .article-title h1 {
    font-size: 4.5rem;
    line-height: auto;
    font-weight: 700;
    padding: 0 0 1.5rem 0;
  }
  .blog-single-container .event-title {
    margin-top: -20rem;
    min-height: 26rem;
  }
  .blog-single-container .event-title header figure figcaption {
    padding-top: 2rem;
    padding-bottom: 0rem;
  }
  .blog-single-container .event-title header figure figcaption h1 {
    font-size: 4rem;
  }
}
@media (max-width: 1030px) {
  .blog-single-container .album-title {
    margin-bottom: 3rem;
    margin-top: -25rem;
    width: 100%;
    position: inherit;
  }
  .blog-single-container .album-title header figure figcaption {
    padding-top: 0;
  }
  .blog-single-container .album-title header figure figcaption h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .blog-single-container .album-title header .big-rate-album {
    width: 7rem;
    right: auto;
    left: 0;
    top: -11.5rem;
  }
  .comment-container ul.comments ul.children {
    margin-left: 2rem;
  }
  .comment-container ul.comments li {
    padding-left: 0;
  }
  .comment-container ul.comments li .comment .left-section,
  .comment-container ul.comments li .pingback .left-section {
    position: relative;
    width: 6rem;
    margin-left: 0;
    margin-bottom: 2rem;
  }
  .comment-container ul.comments li .comment .right-section .comment-text,
  .comment-container ul.comments li .pingback .right-section .comment-text {
    width: 100%;
  }
  .blog-single-container .event-title {
    margin-top: -15rem;
    min-height: 20rem;
  }
  .news-listing article {
    padding-left: 21.5rem;
    margin-bottom: 1.5rem;
    min-height: 20rem;
  }
  .news-listing article figure a img {
    width: 20rem;
  }
  .news-listing article header h2 {
    line-height: 2rem;
  }
  .news-listing article header h2 a {
    font-weight: 700;
    font-size: 2rem;
  }
  .news-listing article .article-entries {
    display: none;
  }
  .news-listing article footer > a,
  .news-listing article footer > div {
    padding: 0.8rem 0.5rem;
  }
  .news-listing article footer .read-more {
    padding: 0.8rem 1.5rem;
  }
}
@media (max-width: 800px) {
  .news-listing article footer .share-button .share-box {
    left: 50%;
    margin-left: -9rem;
    top: auto;
    bottom: 130%;
  }
  .news-listing article footer .share-button.share-active .share-box {
    top: auto;
    bottom: 100%;
  }
  .blog-single-container .album-title {
    margin-bottom: 0;
    padding-top: 5rem;
  }
  .blog-single-container .album-title header figure {
    text-align: center;
  }
  .blog-single-container .album-title header figure > img {
    float: none;
    display: inline-block;
    width: 50%;
  }
  .blog-single-container .album-title header figure figcaption {
    float: none;
    width: 100%;
    padding-left: 0;
    margin-top: 2rem;
  }
  .blog-single-container .album-title header .big-rate-album {
    width: 100%;
    right: 0;
    left: auto;
    position: relative;
    top: 0;
    display: block;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
  .blog-single-container .album-title header .big-rate-album .star-container {
    display: inline-block;
  }
  .comment-form-theme ul,
  .comments .comment-respond ul {
    margin-bottom: 1rem;
  }
  .comment-form-theme ul li,
  .comments .comment-respond ul li {
    width: 100%;
    float: none;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .comment-form-theme ul li:last-child,
  .comments .comment-respond ul li:last-child {
    padding-bottom: 0;
  }
  .blog-single-container .article-title h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 600px) {
  .blog-articles article footer .share-comment-group {
    float: none;
  }
  .blog-single-container .event-title {
    margin-top: -5rem;
    min-height: auto;
  }
  .blog-single-container .event-title.without-poster {
    margin-top: 0;
    min-height: auto;
  }
  .blog-single-container .event-title header figure {
    text-align: center;
  }
  .blog-single-container .event-title header figure img {
    float: none;
    display: inline-block;
  }
  .blog-single-container .event-title header figure figcaption {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .blog-single-container .event-title header figure figcaption h1 {
    font-size: 3.6rem;
  }
  .blog-single-container .event-title header figure figcaption time {
    text-transform: uppercase;
    font-size: 2.4rem;
    display: block;
    line-height: 2.4rem;
    padding: 1rem 0;
  }
  .blog-single-container .event-title header figure figcaption .buy-album {
    margin-bottom: 1rem;
  }
  .blog-single-container .event-title header figure figcaption .buy-album .buy {
    float: none;
    display: inline-block;
  }
  .blog-single-container .event-title header figure figcaption .buy-album .share-comment-group {
    float: none;
    display: inline-block;
  }
}
@media (max-width: 500px) {
  .tickera .order-details tbody tr td a {
    margin-top: 1rem;
  }
  .comment-container .title-comments > * {
    float: none;
    display: block;
    width: 100%;
  }
  .title-col h2 a {
    display: block;
    line-height: 2rem;
    padding-top: 0.5rem;
    float: none;
  }
  .blog-single-container .album-title header figure > img {
    width: 80%;
  }
  div.author-info .left-author-info {
    float: none;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  div.author-info .left-author-info figure {
    overflow: hidden;
    width: 8rem;
    height: 8rem;
  }
  div.author-info .right-author-info {
    margin-left: 0;
  }
  .blog-single-container .event-title header figure img {
    width: 80%;
  }
  .blog-single-container .event-title header figure figcaption h1 {
    font-size: 2.6rem;
  }
  .blog-single-container .event-title header figure figcaption time {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .blog-articles > div {
    width: 100%;
  }
  .blog-articles > div article {
    margin-bottom: 1.5rem;
  }
  .blog-articles > div article footer .share-comment-group {
    float: right;
  }
  .comment-container .title-comments {
    text-align: center;
  }
  .comment-container .title-comments a {
    margin-top: 2rem;
    float: none;
    display: inline-block;
  }
  .news-listing article {
    padding-left: 0;
    margin-bottom: 3rem;
    min-height: inherit;
  }
  .news-listing article figure {
    position: relative;
  }
  .news-listing article figure a img {
    width: 100%;
  }
  .news-listing article header p {
    margin-bottom: 0.5rem;
  }
  .news-listing article footer {
    margin-top: 0;
  }
}
@media (max-width: 330px) {
  table.tickera *,
  form.tickera table * {
    font-size: 1rem;
  }
  form.tickera table input {
    font-size: 1.4rem;
  }
  table.tickera .tc_in_cart {
    width: 1.5rem;
  }
  table.tickera .tc_in_cart a {
    margin-left: 0;
    margin-right: 0;
  }
}
.main-header-container .main-header {
  position: fixed;
  z-index: 5;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1rem 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-header-container .main-header > div > * {
  position: relative;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-property: top , padding;
  -o-transition-property: top , padding;
  transition-property: top , padding;
}
.main-header-container .main-header ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.main-header-container .main-header .open-albums-button {
  float: left;
  cursor: pointer;
  padding: 1rem;
  margin-left: -1rem;
  margin-right: 2rem;
}
.main-header-container .main-header .open-albums-button i {
  font-size: 1.4rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-header-container .main-header .open-albums-button .icon {
  margin-top: 0.1rem;
}
.main-header-container .main-header .open-albums-button:hover i {
  color: #ff3c00;
}
.main-header-container .main-header .main-menu {
  float: left;
}
.main-header-container .main-header .main-menu.right {
  float: right;
}
.main-header-container .main-header .logo-container:not(.not-center) {
  position: absolute;
  left: 50%;
  margin-top: 1rem;
  top: 0 !important;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.main-header-container .main-header .logo-container .logo-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.main-header-container .main-header .logo-container a {
  display: block;
}
.main-header-container .main-header .logo-container a.logo-big {
  opacity: 1;
  visibility: visible;
  position: relative;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-header-container .main-header .logo-container a.logo {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.main-header-container .main-header .logo-container.left {
  float: left;
  margin-right: 3rem;
}
.main-header-container .main-header .additional-buttons {
  float: right;
}
.main-header-container .main-header .additional-buttons > div {
  position: relative;
  cursor: pointer;
  float: left;
  padding: 0 1.5rem;
}
.main-header-container .main-header .additional-buttons > div > i,
.main-header-container .main-header .additional-buttons > div .the-icon i:not(.icon) {
  font-size: 1.5rem;
  position: relative;
  top: 0.2rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-header-container .main-header .additional-buttons > div .icon {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-header-container .main-header .additional-buttons > div:hover > i,
.main-header-container .main-header .additional-buttons > div:hover .the-icon i:not(.icon),
.main-header-container .main-header .additional-buttons > div:hover .icon {
  color: #ff3c00;
}
.main-header-container .main-header .additional-buttons > div.cart-header .icon {
  top: 0.4rem;
}
.main-header-container .main-header .additional-buttons .user-log-in {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.main-header-container .main-header .additional-buttons .user-log-in .icon {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  display: inline-block;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-header-container .main-header .additional-buttons .user-log-in .icon:hover {
  color: #ff3c00 !important;
}
.main-header-container .main-header .additional-buttons .user-log-in > span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  margin-right: 1rem;
  position: relative;
  top: -0.2rem;
}
.main-header-container .main-header .additional-buttons .user-log-in:hover .icon {
  color: #fff;
}
.main-header-container .main-header .additional-buttons .user-log-in .user-dd {
  width: 16.5rem;
  position: absolute;
  right: -2.5rem;
  top: 100%;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  padding-top: 2rem;
  -webkit-transform: translateY(1rem);
  -moz-transform: translateY(1rem);
  -o-transform: translateY(1rem);
  -ms-transform: translateY(1rem);
  transform: translateY(1rem);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-header-container .main-header .additional-buttons .user-log-in .user-dd li {
  display: block;
  background: #1c1c1c;
}
.main-header-container .main-header .additional-buttons .user-log-in .user-dd li a {
  padding: 1.2rem 1.5rem;
  display: block;
}
.main-header-container .main-header .additional-buttons .user-log-in .user-dd li a i {
  width: 1.5rem;
  text-align: center;
  margin-right: 1rem;
}
.main-header-container .main-header .additional-buttons .user-log-in .user-dd li a span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
}
.main-header-container .main-header .additional-buttons .user-log-in .user-dd li a:hover,
.main-header-container .main-header .additional-buttons .user-log-in .user-dd li a:active,
.main-header-container .main-header .additional-buttons .user-log-in .user-dd li a:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.main-header-container .main-header .additional-buttons .user-log-in .user-dd li.facebook-login a {
  background: #1e80e4;
}
.main-header-container .main-header .additional-buttons .user-log-in .user-dd li.facebook-login a:hover {
  background: #0068d3;
  color: #fff;
}
.main-header-container .main-header .additional-buttons .user-log-in .user-dd:after {
  content: '';
  right: 3.8rem;
  top: 1.3rem;
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 0 0.7rem 0.7rem 0.7rem;
  border-color: transparent transparent #1c1c1c transparent;
}
.main-header-container .main-header .additional-buttons .user-log-in.opened > i {
  color: #ff3c00;
}
.main-header-container .main-header .additional-buttons .user-log-in.opened .user-dd {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.main-header-container .main-header .additional-buttons .cart-header .the-icon span {
  position: absolute;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 800;
  background: #ff3c00;
  padding: 0.1rem 0.7rem;
  height: 2rem;
  border-radius: 0.9rem;
  top: -0.4rem;
  right: 0.5rem;
  line-height: 1.9rem;
}
.main-header-container .main-header .additional-buttons .cart-header .the-icon i {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container {
  padding-top: 3rem;
  position: absolute;
  z-index: 5;
  top: 100%;
  right: -1rem;
  display: none;
  cursor: default;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart {
  width: 30rem;
  background: #1c1c1c;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries {
  overflow-y: auto;
  max-height: 41.7rem;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  padding-left: 9rem;
  position: relative;
  min-height: 8rem;
  display: block;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure a.product-thumbnail {
  position: absolute;
  width: 8rem;
  height: 8rem;
  top: 0;
  left: 0;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption {
  position: relative;
  padding-bottom: 2.3rem;
  min-height: 8rem;
  padding-right: 1.5rem;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > span {
  text-transform: capitalize;
  font-size: 1.2rem;
  color: #919191;
  display: block;
  line-height: 1.2rem;
  padding-top: 0.3rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.4rem;
  font-weight: 400;
  text-transform: capitalize;
  padding-top: 1rem;
  display: block;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a:hover {
  text-decoration: none;
  color: #919191;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption p {
  margin-bottom: 0;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption p.price {
  font-size: 1.2rem;
  color: #ff3c00;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption p.price sup {
  font-size: 1.2rem;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption .right-buttons {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption .right-buttons a {
  display: block;
  font-size: 1.3rem;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  color: #d5d5d5;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption .right-buttons a:hover {
  color: #ff3c00;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover {
  background: rgba(255, 255, 255, 0.1);
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer {
  padding: 2rem 1.5rem;
  padding-bottom: 1rem;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer p {
  margin-bottom: 0;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total {
  float: left;
  font-weight: 300;
  font-size: 1.8rem;
  color: #ff3c00;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total sup {
  font-size: 1.4rem;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span {
  display: inline-block;
  text-transform: capitalize;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  top: -0.2rem;
  margin-right: 0.4rem;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons {
  float: right;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a {
  text-transform: uppercase;
  color: #fff;
  font-size: 1.1rem;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:first-of-type {
  padding-left: 1rem;
  padding-right: 1rem;
}
.main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover {
  color: #ff3c00;
}
.main-header-container .main-header .additional-buttons .cart-header:hover .header-cart-container {
  display: block;
}
.main-header-container .main-header .social-list {
  float: right;
  margin-right: 5rem;
}
.main-header-container .main-header .social-list.left {
  float: left;
  margin-right: 3rem;
}
.main-header-container .main-header.affix,
.main-header-container .main-header.main-header-condensed {
  height: auto !important;
  background: #000;
  -webkit-transition-delay: 0s , 0.2s , 0.2s !important;
  -o-transition-delay: 0s , 0.2s , 0.2s !important;
  transition-delay: 0s , 0.2s , 0.2s !important;
  -webkit-transition-property: left , background , height !important;
  -webkit-transition-duration: 0.4s , 0.4s , 0.4s !important;
  -webkit-transition-timing-function: ease-in-out !important;
  -o-transition-property: left , background , height !important;
  transition-property: left , background , height !important;
  -o-transition-duration: 0.4s , 0.4s , 0.4s !important;
  transition-duration: 0.4s , 0.4s , 0.4s !important;
  -o-transition-timing-function: ease-in-out !important;
  transition-timing-function: ease-in-out !important;
}
.main-header-container .main-header.affix .logo-container a.logo-big,
.main-header-container .main-header.main-header-condensed .logo-container a.logo-big {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.main-header-container .main-header.affix .logo-container a.logo,
.main-header-container .main-header.main-header-condensed .logo-container a.logo {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  opacity: 1;
  visibility: visible;
  position: relative;
}
.main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container,
.main-header-container .main-header.main-header-condensed .additional-buttons .cart-header .header-cart-container {
  padding-top: 1.5rem;
}
.main-header-container .main-header .logo-container a.logo-big.for-light {
  display: none;
}
.light-layout .main-header-container .main-header .logo-container a.logo-big.for-light {
  display: block;
}
.light-layout .main-header-container .main-header .logo-container a.logo-big {
  display: none;
}
.main-header-inherit-content-dark .main-header-container .main-header .logo-container a.logo-big.for-light,
.light-layout.main-header-inherit-content-dark .main-header-container .main-header .logo-container a.logo-big.for-light {
  display: block;
}
.main-header-inherit-content-dark .main-header-container .main-header .logo-container a.logo-big,
.light-layout.main-header-inherit-content-dark .main-header-container .main-header .logo-container a.logo-big {
  display: none;
}
.main-header-inherit-content-light .main-header-container .main-header .logo-container a.logo-big.for-light,
.light-layout.main-header-inherit-content-light .main-header-container .main-header .logo-container a.logo-big.for-light {
  display: none;
}
.main-header-inherit-content-light .main-header-container .main-header .logo-container a.logo-big,
.light-layout.main-header-inherit-content-light .main-header-container .main-header .logo-container a.logo-big {
  display: block;
}
body .main-header-container .main-header.main-header-content-dark,
.light-layout .main-header-container .main-header.main-header-content-dark {
  color: #1c1c1c;
}
body .main-header-container .main-header.main-header-content-dark .carousel-audio-article header h2,
.light-layout .main-header-container .main-header.main-header-content-dark .carousel-audio-article header h2 {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-dark .events-articles,
.light-layout .main-header-container .main-header.main-header-content-dark .events-articles {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-dark .events-articles a,
.light-layout .main-header-container .main-header.main-header-content-dark .events-articles a {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-dark .events-articles a:hover,
.light-layout .main-header-container .main-header.main-header-content-dark .events-articles a:hover {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-dark .events-articles article:hover footer .read-more,
.light-layout .main-header-container .main-header.main-header-content-dark .events-articles article:hover footer .read-more {
  color: #ff3c00;
}
body .main-header-container .main-header.main-header-content-dark .main-menu > ul > li .megamenu > li,
.light-layout .main-header-container .main-header.main-header-content-dark .main-menu > ul > li .megamenu > li {
  background: #f5f5f5;
}
body .main-header-container .main-header.main-header-content-dark .main-menu > ul > li > ul:not(.megamenu):after,
.light-layout .main-header-container .main-header.main-header-content-dark .main-menu > ul > li > ul:not(.megamenu):after {
  border-color: transparent transparent #fff transparent;
}
body .main-header-container .main-header.main-header-content-dark .main-menu > ul > li > ul:not(.megamenu) li,
.light-layout .main-header-container .main-header.main-header-content-dark .main-menu > ul > li > ul:not(.megamenu) li {
  background: #fff;
}
body .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover,
.light-layout .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover {
  background: rgba(0, 0, 0, 0.1);
}
body .main-header-container .main-header.main-header-content-dark .main-menu > ul > li > ul:not(.megamenu) li a:hover,
.light-layout .main-header-container .main-header.main-header-content-dark .main-menu > ul > li > ul:not(.megamenu) li a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #1c1c1c;
}
body .main-header-container .main-header.main-header-content-dark .carousel-news-article .info-article,
.light-layout .main-header-container .main-header.main-header-content-dark .carousel-news-article .info-article {
  background: #fff;
}
body .main-header-container .main-header.main-header-content-dark .carousel-news-article:hover .info-article,
.light-layout .main-header-container .main-header.main-header-content-dark .carousel-news-article:hover .info-article {
  background: #ff3c00;
}
body .main-header-container .main-header.main-header-content-dark .carousel-news-article:hover .info-article *,
.light-layout .main-header-container .main-header.main-header-content-dark .carousel-news-article:hover .info-article * {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-dark .carousel-news-article footer .read-more a,
.light-layout .main-header-container .main-header.main-header-content-dark .carousel-news-article footer .read-more a {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-dark .carousel-news-article:hover footer .read-more a,
.light-layout .main-header-container .main-header.main-header-content-dark .carousel-news-article:hover footer .read-more a {
  background: rgba(255, 255, 255, 0.9);
  color: #ff3c00;
}
body .main-header-container .main-header.main-header-content-dark .carousel-news-article:hover footer .read-more a:hover,
.light-layout .main-header-container .main-header.main-header-content-dark .carousel-news-article:hover footer .read-more a:hover {
  background: rgba(255, 255, 255, 0.5);
}
body .main-header-container .main-header.main-header-content-dark .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
.light-layout .main-header-container .main-header.main-header-content-dark .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
body .main-header-container .main-header.main-header-content-dark .filter-carousel .owl-controls .owl-nav .owl-next,
.light-layout .main-header-container .main-header.main-header-content-dark .filter-carousel .owl-controls .owl-nav .owl-next {
  background: rgba(255, 255, 255, 0.8);
}
body .main-header-container .main-header.main-header-content-dark .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i,
.light-layout .main-header-container .main-header.main-header-content-dark .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i {
  color: #e2e2e2;
}
body .main-header-container .main-header.main-header-content-dark .main-menu > ul > li .megamenu .categories ul li:last-child a,
.light-layout .main-header-container .main-header.main-header-content-dark .main-menu > ul > li .megamenu .categories ul li:last-child a {
  color: #1c1c1c;
}
body .main-header-container .main-header.main-header-content-dark .main-menu > ul > li .megamenu .categories ul li:last-child a:hover,
.light-layout .main-header-container .main-header.main-header-content-dark .main-menu > ul > li .megamenu .categories ul li:last-child a:hover {
  color: #ff3c00;
}
body .main-header-container .main-header.main-header-content-dark a,
.light-layout .main-header-container .main-header.main-header-content-dark a {
  color: #1c1c1c;
}
body .main-header-container .main-header.main-header-content-dark a:hover,
.light-layout .main-header-container .main-header.main-header-content-dark a:hover {
  color: #ff3c00;
}
body .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart,
.light-layout .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart {
  background: #fff;
}
body .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
.light-layout .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
body .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
.light-layout .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
body .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a,
.light-layout .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a {
  color: #1c1c1c;
}
body .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover,
.light-layout .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover {
  color: #ff3c00;
}
body .main-header-container .main-header.main-header-content-dark .additional-buttons .user-log-in .user-dd li,
.light-layout .main-header-container .main-header.main-header-content-dark .additional-buttons .user-log-in .user-dd li {
  background: #fff;
}
body .main-header-container .main-header.main-header-content-dark .additional-buttons .user-log-in .user-dd li a:hover,
.light-layout .main-header-container .main-header.main-header-content-dark .additional-buttons .user-log-in .user-dd li a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #1c1c1c;
}
body .main-header-container .main-header.main-header-content-dark .additional-buttons .user-log-in .user-dd:after,
.light-layout .main-header-container .main-header.main-header-content-dark .additional-buttons .user-log-in .user-dd:after {
  border-color: transparent transparent #fff transparent;
}
body .main-header-container .main-header.main-header-content-dark .additional-buttons .user-log-in .user-dd li.facebook-login a,
.light-layout .main-header-container .main-header.main-header-content-dark .additional-buttons .user-log-in .user-dd li.facebook-login a {
  background: #1e80e4;
  color: #fff;
}
body .main-header-container .main-header.main-header-content-dark .additional-buttons .user-log-in .user-dd li.facebook-login a:hover,
.light-layout .main-header-container .main-header.main-header-content-dark .additional-buttons .user-log-in .user-dd li.facebook-login a:hover {
  background: #0068d3;
  color: #fff;
}
body .main-header-container .main-header.main-header-content-dark.affix,
.light-layout .main-header-container .main-header.main-header-content-dark.affix,
body .main-header-container .main-header.main-header-content-dark.main-header-condensed,
.light-layout .main-header-container .main-header.main-header-content-dark.main-header-condensed {
  background: #f5f5f5;
}
body .main-header-container .main-header.main-header-content-light,
.light-layout .main-header-container .main-header.main-header-content-light {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light .events-articles,
.light-layout .main-header-container .main-header.main-header-content-light .events-articles {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light .events-articles a,
.light-layout .main-header-container .main-header.main-header-content-light .events-articles a {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light .events-articles a:hover,
.light-layout .main-header-container .main-header.main-header-content-light .events-articles a:hover {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light .events-articles article:hover footer .read-more,
.light-layout .main-header-container .main-header.main-header-content-light .events-articles article:hover footer .read-more {
  color: #ff3c00;
}
body .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu > li,
.light-layout .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu > li {
  background: #1f1f20;
}
body .main-header-container .main-header.main-header-content-light .main-menu > ul > li > ul:not(.megamenu):after,
.light-layout .main-header-container .main-header.main-header-content-light .main-menu > ul > li > ul:not(.megamenu):after {
  border-color: transparent transparent #1c1c1c transparent;
}
body .main-header-container .main-header.main-header-content-light .main-menu > ul > li > ul:not(.megamenu) li,
.light-layout .main-header-container .main-header.main-header-content-light .main-menu > ul > li > ul:not(.megamenu) li {
  background: #1c1c1c;
}
body .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover,
.light-layout .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover {
  background: rgba(255, 255, 255, 0.1);
}
body .main-header-container .main-header.main-header-content-light .main-menu > ul > li > ul:not(.megamenu) li a:hover,
.light-layout .main-header-container .main-header.main-header-content-light .main-menu > ul > li > ul:not(.megamenu) li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light .carousel-news-article .info-article,
.light-layout .main-header-container .main-header.main-header-content-light .carousel-news-article .info-article {
  background: #353535;
}
body .main-header-container .main-header.main-header-content-light .carousel-news-article:hover .info-article,
.light-layout .main-header-container .main-header.main-header-content-light .carousel-news-article:hover .info-article {
  background: #ff3c00;
}
body .main-header-container .main-header.main-header-content-light .carousel-news-article:hover .info-article *,
.light-layout .main-header-container .main-header.main-header-content-light .carousel-news-article:hover .info-article * {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light .carousel-news-article footer .read-more a,
.light-layout .main-header-container .main-header.main-header-content-light .carousel-news-article footer .read-more a {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light .carousel-news-article:hover footer .read-more a,
.light-layout .main-header-container .main-header.main-header-content-light .carousel-news-article:hover footer .read-more a {
  background: #fff;
  color: #ff3c00;
}
body .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
.light-layout .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
body .main-header-container .main-header.main-header-content-light .filter-carousel .owl-controls .owl-nav .owl-next,
.light-layout .main-header-container .main-header.main-header-content-light .filter-carousel .owl-controls .owl-nav .owl-next {
  background: rgba(0, 0, 0, 0.8);
}
body .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu .categories ul li a,
.light-layout .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu .categories ul li a {
  color: #919191;
}
body .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i,
.light-layout .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i {
  color: #919191;
}
body .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu .categories ul li:last-child a,
.light-layout .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu .categories ul li:last-child a {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu .categories ul li:last-child a:hover,
.light-layout .main-header-container .main-header.main-header-content-light .main-menu > ul > li .megamenu .categories ul li:last-child a:hover {
  color: #ff3c00;
}
body .main-header-container .main-header.main-header-content-light .carousel-news-article *,
.light-layout .main-header-container .main-header.main-header-content-light .carousel-news-article * {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light a,
.light-layout .main-header-container .main-header.main-header-content-light a {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light a:hover,
.light-layout .main-header-container .main-header.main-header-content-light a:hover {
  color: #ff3c00;
}
body .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart,
.light-layout .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart {
  background: #1c1c1c;
}
body .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
.light-layout .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
body .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
.light-layout .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
body .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a,
.light-layout .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a {
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover,
.light-layout .main-header-container .main-header.main-header-content-light .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover {
  color: #ff3c00;
}
body .main-header-container .main-header.main-header-content-light .additional-buttons .user-log-in .user-dd li,
.light-layout .main-header-container .main-header.main-header-content-light .additional-buttons .user-log-in .user-dd li {
  background: #1c1c1c;
}
body .main-header-container .main-header.main-header-content-light .additional-buttons .user-log-in .user-dd li a:hover,
.light-layout .main-header-container .main-header.main-header-content-light .additional-buttons .user-log-in .user-dd li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #1c1c1c;
}
body .main-header-container .main-header.main-header-content-light .additional-buttons .user-log-in .user-dd:after,
.light-layout .main-header-container .main-header.main-header-content-light .additional-buttons .user-log-in .user-dd:after {
  border-color: transparent transparent #1c1c1c transparent;
}
body .main-header-container .main-header.main-header-content-light .additional-buttons .user-log-in .user-dd li.facebook-login a,
.light-layout .main-header-container .main-header.main-header-content-light .additional-buttons .user-log-in .user-dd li.facebook-login a {
  background: #1e80e4;
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light .additional-buttons .user-log-in .user-dd li.facebook-login a:hover,
.light-layout .main-header-container .main-header.main-header-content-light .additional-buttons .user-log-in .user-dd li.facebook-login a:hover {
  background: #0068d3;
  color: #fff;
}
body .main-header-container .main-header.main-header-content-light.affix,
.light-layout .main-header-container .main-header.main-header-content-light.affix,
body .main-header-container .main-header.main-header-content-light.main-header-condensed,
.light-layout .main-header-container .main-header.main-header-content-light.main-header-condensed {
  background: #000;
}
@supports (overflow:-webkit-marquee) and ((-webkit-box-pack: inherit) or (justify-content: inherit)) {
  .main-header-container .main-header.affix,
  .main-header-container .main-header.main-header-condensed {
    -webkit-transition-delay: 0s , 2s , 0s !important;
    -o-transition-delay: 0s , 2s , 0s !important;
    transition-delay: 0s , 2s , 0s !important;
    -webkit-transition-property: left , background , height !important;
    -webkit-transition-duration: 0.4s , 0s , 0s !important;
    -webkit-transition-timing-function: ease-in-out !important;
    -o-transition-property: left , background , height !important;
    transition-property: left , background , height !important;
    -o-transition-duration: 0.4s , 0s , 0s !important;
    transition-duration: 0.4s , 0s , 0s !important;
    -o-transition-timing-function: ease-in-out !important;
    transition-timing-function: ease-in-out !important;
  }
}
@media (min-width: 1030px) {
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix),
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) {
    color: #1c1c1c;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-audio-article header h2,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-audio-article header h2 {
    color: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .events-articles,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .events-articles {
    color: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .events-articles a,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .events-articles a {
    color: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .events-articles a:hover,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .events-articles a:hover {
    color: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .events-articles article:hover footer .read-more,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .events-articles article:hover footer .read-more {
    color: #ff3c00;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu > li,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu > li {
    background: #f5f5f5;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu):after,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu):after {
    border-color: transparent transparent #fff transparent;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu) li,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu) li {
    background: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu) li a:hover,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu) li a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1c1c1c;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article .info-article,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article .info-article {
    background: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article:hover .info-article,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article:hover .info-article {
    background: #ff3c00;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article:hover .info-article *,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article:hover .info-article * {
    color: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article footer .read-more a,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article footer .read-more a {
    color: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article:hover footer .read-more a,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article:hover footer .read-more a {
    background: rgba(255, 255, 255, 0.9);
    color: #ff3c00;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article:hover footer .read-more a:hover,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .carousel-news-article:hover footer .read-more a:hover {
    background: rgba(255, 255, 255, 0.5);
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .filter-carousel .owl-controls .owl-nav .owl-next,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .filter-carousel .owl-controls .owl-nav .owl-next {
    background: rgba(255, 255, 255, 0.8);
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i {
    color: #e2e2e2;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .categories ul li:last-child a,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .categories ul li:last-child a {
    color: #1c1c1c;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .categories ul li:last-child a:hover,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .categories ul li:last-child a:hover {
    color: #ff3c00;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) a,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) a {
    color: #1c1c1c;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) a:hover,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) a:hover {
    color: #ff3c00;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart {
    background: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a {
    color: #1c1c1c;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover {
    color: #ff3c00;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li {
    background: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li a:hover,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1c1c1c;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd:after,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd:after {
    border-color: transparent transparent #fff transparent;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li.facebook-login a,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li.facebook-login a {
    background: #1e80e4;
    color: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li.facebook-login a:hover,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li.facebook-login a:hover {
    background: #0068d3;
    color: #fff;
  }
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix).affix,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix).affix,
  body.main-header-inherit-content-dark .main-header-container .main-header:not(.affix).main-header-condensed,
  .light-layout.main-header-inherit-content-dark .main-header-container .main-header:not(.affix).main-header-condensed {
    background: #f5f5f5;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix {
    color: #1c1c1c;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-audio-article header h2,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-audio-article header h2 {
    color: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .events-articles,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .events-articles {
    color: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .events-articles a,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .events-articles a {
    color: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .events-articles a:hover,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .events-articles a:hover {
    color: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .events-articles article:hover footer .read-more,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .events-articles article:hover footer .read-more {
    color: #ff3c00;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li .megamenu > li,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li .megamenu > li {
    background: #f5f5f5;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu):after,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu):after {
    border-color: transparent transparent #fff transparent;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu) li,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu) li {
    background: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu) li a:hover,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu) li a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1c1c1c;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article .info-article,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article .info-article {
    background: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article:hover .info-article,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article:hover .info-article {
    background: #ff3c00;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article:hover .info-article *,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article:hover .info-article * {
    color: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article footer .read-more a,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article footer .read-more a {
    color: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article:hover footer .read-more a,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article:hover footer .read-more a {
    background: rgba(255, 255, 255, 0.9);
    color: #ff3c00;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article:hover footer .read-more a:hover,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .carousel-news-article:hover footer .read-more a:hover {
    background: rgba(255, 255, 255, 0.5);
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
  body.main-header-affix-content-dark .main-header-container .main-header.affix .filter-carousel .owl-controls .owl-nav .owl-next,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .filter-carousel .owl-controls .owl-nav .owl-next {
    background: rgba(255, 255, 255, 0.8);
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i {
    color: #e2e2e2;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li .megamenu .categories ul li:last-child a,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li .megamenu .categories ul li:last-child a {
    color: #1c1c1c;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li .megamenu .categories ul li:last-child a:hover,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .main-menu > ul > li .megamenu .categories ul li:last-child a:hover {
    color: #ff3c00;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix a,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix a {
    color: #1c1c1c;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix a:hover,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix a:hover {
    color: #ff3c00;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart {
    background: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
  body.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
  body.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a {
    color: #1c1c1c;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover {
    color: #ff3c00;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li {
    background: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li a:hover,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1c1c1c;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd:after,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd:after {
    border-color: transparent transparent #fff transparent;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li.facebook-login a,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li.facebook-login a {
    background: #1e80e4;
    color: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li.facebook-login a:hover,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li.facebook-login a:hover {
    background: #0068d3;
    color: #fff;
  }
  body.main-header-affix-content-dark .main-header-container .main-header.affix.affix,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix.affix,
  body.main-header-affix-content-dark .main-header-container .main-header.affix.main-header-condensed,
  .light-layout.main-header-affix-content-dark .main-header-container .main-header.affix.main-header-condensed {
    background: #f5f5f5;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix),
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) {
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .events-articles,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .events-articles {
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .events-articles a,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .events-articles a {
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .events-articles a:hover,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .events-articles a:hover {
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .events-articles article:hover footer .read-more,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .events-articles article:hover footer .read-more {
    color: #ff3c00;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu > li,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu > li {
    background: #1f1f20;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu):after,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu):after {
    border-color: transparent transparent #1c1c1c transparent;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu) li,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu) li {
    background: #1c1c1c;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu) li a:hover,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li > ul:not(.megamenu) li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article .info-article,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article .info-article {
    background: #353535;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article:hover .info-article,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article:hover .info-article {
    background: #ff3c00;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article:hover .info-article *,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article:hover .info-article * {
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article footer .read-more a,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article footer .read-more a {
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article:hover footer .read-more a,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article:hover footer .read-more a {
    background: #fff;
    color: #ff3c00;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .filter-carousel .owl-controls .owl-nav .owl-next,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .filter-carousel .owl-controls .owl-nav .owl-next {
    background: rgba(0, 0, 0, 0.8);
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .categories ul li a,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .categories ul li a {
    color: #919191;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i {
    color: #919191;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .categories ul li:last-child a,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .categories ul li:last-child a {
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .categories ul li:last-child a:hover,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .main-menu > ul > li .megamenu .categories ul li:last-child a:hover {
    color: #ff3c00;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article *,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .carousel-news-article * {
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) a,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) a {
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) a:hover,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) a:hover {
    color: #ff3c00;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart {
    background: #1c1c1c;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a {
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover {
    color: #ff3c00;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li {
    background: #1c1c1c;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li a:hover,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #1c1c1c;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd:after,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd:after {
    border-color: transparent transparent #1c1c1c transparent;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li.facebook-login a,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li.facebook-login a {
    background: #1e80e4;
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li.facebook-login a:hover,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix) .additional-buttons .user-log-in .user-dd li.facebook-login a:hover {
    background: #0068d3;
    color: #fff;
  }
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix).affix,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix).affix,
  body.main-header-inherit-content-light .main-header-container .main-header:not(.affix).main-header-condensed,
  .light-layout.main-header-inherit-content-light .main-header-container .main-header:not(.affix).main-header-condensed {
    background: #000;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix {
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .events-articles,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .events-articles {
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .events-articles a,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .events-articles a {
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .events-articles a:hover,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .events-articles a:hover {
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .events-articles article:hover footer .read-more,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .events-articles article:hover footer .read-more {
    color: #ff3c00;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu > li,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu > li {
    background: #1f1f20;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu):after,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu):after {
    border-color: transparent transparent #1c1c1c transparent;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu) li,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu) li {
    background: #1c1c1c;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu) li a:hover,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li > ul:not(.megamenu) li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article .info-article,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article .info-article {
    background: #353535;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article:hover .info-article,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article:hover .info-article {
    background: #ff3c00;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article:hover .info-article *,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article:hover .info-article * {
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article footer .read-more a,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article footer .read-more a {
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article:hover footer .read-more a,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article:hover footer .read-more a {
    background: #fff;
    color: #ff3c00;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next,
  body.main-header-affix-content-light .main-header-container .main-header.affix .filter-carousel .owl-controls .owl-nav .owl-next,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .filter-carousel .owl-controls .owl-nav .owl-next {
    background: rgba(0, 0, 0, 0.8);
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu .categories ul li a,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu .categories ul li a {
    color: #919191;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i {
    color: #919191;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu .categories ul li:last-child a,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu .categories ul li:last-child a {
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu .categories ul li:last-child a:hover,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .main-menu > ul > li .megamenu .categories ul li:last-child a:hover {
    color: #ff3c00;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article *,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .carousel-news-article * {
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix a,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix a {
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix a:hover,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix a:hover {
    color: #ff3c00;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart {
    background: #1c1c1c;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a,
  body.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total span,
  body.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a {
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:hover {
    color: #ff3c00;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li {
    background: #1c1c1c;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li a:hover,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #1c1c1c;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd:after,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd:after {
    border-color: transparent transparent #1c1c1c transparent;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li.facebook-login a,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li.facebook-login a {
    background: #1e80e4;
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li.facebook-login a:hover,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix .additional-buttons .user-log-in .user-dd li.facebook-login a:hover {
    background: #0068d3;
    color: #fff;
  }
  body.main-header-affix-content-light .main-header-container .main-header.affix.affix,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix.affix,
  body.main-header-affix-content-light .main-header-container .main-header.affix.main-header-condensed,
  .light-layout.main-header-affix-content-light .main-header-container .main-header.affix.main-header-condensed {
    background: #000;
  }
}
.admin-bar .main-header-container .main-header {
  top: 3.2rem;
}
@media (max-width: 1200px) {
  .main-header-container .main-header .social-list {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .main-header-container .main-header .logo-container.left {
    margin-right: 0;
  }
  .social-list a {
    width: 3rem;
  }
}
@media (min-width: 1030px) {
  .hide-menu-inherit .main-header-container .main-header:not(.affix) {
    opacity: 0;
    visibility: hidden;
  }
  .hide-menu-affix .main-header-container .main-header.affix {
    opacity: 0;
    visibility: hidden;
  }
  .hide-menu .main-header-container .main-header {
    opacity: 0;
    visibility: hidden;
  }
  .main-header-container .main-header .logo-container.left {
    margin-top: -0.2rem;
  }
  .main-header-container .main-header ul {
    background: none !important;
  }
  .main-header-container .main-header.affix > div,
  .main-header-container .main-header.main-header-condensed > div {
    height: 4.4rem;
  }
  .main-header-container .main-header.affix > div > *,
  .main-header-container .main-header.main-header-condensed > div > * {
    top: 0 !important;
    height: 4.4rem;
  }
  .main-header-container .main-header.affix .logo-container:not(.not-center),
  .main-header-container .main-header.main-header-condensed .logo-container:not(.not-center) {
    top: 2.1rem !important;
    height: auto;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .main-header-container .main-header.affix .social-list,
  .main-header-container .main-header.main-header-condensed .social-list {
    padding-top: 0.2rem;
  }
  .main-header-container .main-header.affix .additional-buttons,
  .main-header-container .main-header.main-header-condensed .additional-buttons {
    padding-top: 1.15rem;
  }
  .main-header-container .main-header.affix .logo-container.left,
  .main-header-container .main-header.main-header-condensed .logo-container.left {
    height: auto;
    top: 2.2rem !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .main-header-container .main-header.affix > div > .open-albums-button .icon,
  .main-header-container .main-header.main-header-condensed > div > .open-albums-button .icon {
    position: relative;
    top: 0.5rem;
  }
  .affix .main-menu > ul > li .megamenu,
  .main-header-condensed .main-menu > ul > li .megamenu {
    top: 5.4rem !important;
  }
  .main-header-container .main-header .container-fluid {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
  .main-header-container .main-header .container-fluid .container {
    width: 100%;
    padding-left: 3rem;
  }
}
@media (max-width: 1030px) {
  .main-header-container .main-header {
    background: #000;
  }
  .main-header-container .main-header.main-header-content-dark .additional-buttons .cart-header .header-cart-container {
    background: #eee;
  }
  .main-header-container .main-header.main-header-content-dark {
    background: #f5f5f5;
  }
  .main-header-container .main-header .logo-container.left {
    float: none;
  }
  .main-header > div {
    width: 100%;
  }
  .breadcrumb-page + div {
    position: initial;
  }
  .has-player .main-sidebar {
    height: calc(100vh - 6.45rem);
  }
  .main-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 33rem;
    height: 100vh;
    padding: 1rem 1rem;
    background: #1c1c1c;
    z-index: 6;
    left: -33rem;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-property: all;
    transition-property: all;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
  }
  .mobile-header-item-opened.cart-is-opened .main-header-container .main-header .main-menu,
  .mobile-header-item-opened.cart-is-opened .albums-container {
    display: none !important;
  }
  .mobile-header-item-opened.cart-is-opened .main-header-container .main-header .additional-buttons .cart-header .header-cart-container {
    display: block !important;
  }
  .mobile-header-item-opened.cart-is-opened .main-sidebar,
  .mobile-header-item-opened.cart-is-opened .albums-container {
    display: none;
  }
  .mobile-header-item-opened.menu-is-opened .main-header-container .main-header .main-menu {
    display: block !important;
  }
  .mobile-header-item-opened.menu-is-opened .main-header-container .main-header .additional-buttons .cart-header .header-cart-container,
  .mobile-header-item-opened.menu-is-opened .albums-container {
    display: none !important;
  }
  .mobile-header-item-opened.menu-is-opened .main-sidebar,
  .mobile-header-item-opened.menu-is-opened .albums-container {
    display: none;
  }
  .mobile-header-item-opened.sidebar-is-opened .main-header-container .main-header .main-menu,
  .mobile-header-item-opened.sidebar-is-opened .albums-container {
    display: none !important;
  }
  .mobile-header-item-opened.sidebar-is-opened .main-header-container .main-header .additional-buttons .cart-header .header-cart-container {
    display: none !important;
  }
  .mobile-header-item-opened.sidebar-is-opened .main-sidebar {
    display: block;
  }
  .mobile-header-item-opened.albums-is-opened .main-header-container .main-header .main-menu {
    display: none !important;
  }
  .mobile-header-item-opened.albums-is-opened .main-header-container .main-header .additional-buttons .cart-header .header-cart-container {
    display: none !important;
  }
  .mobile-header-item-opened.albums-is-opened .main-sidebar {
    display: none;
  }
  .mobile-header-item-opened.albums-is-opened .albums-container {
    display: block;
  }
  .widget.widget-posts-navigation {
    margin-left: 0;
    margin-right: 0;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container {
    position: fixed;
    display: block;
    top: 0;
    right: auto;
    text-align: left;
    left: -33rem;
    width: 33rem;
    height: 100vh;
    padding: 1rem !important;
    background: #1c1c1c;
    -webkit-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-property: all;
    transition-property: all;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container.active {
    left: 0 !important;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart {
    width: 31rem;
  }
  .main-header-container .main-header .additional-buttons > div,
  .main-header-container .main-header .additional-buttons {
    float: none;
  }
  .main-header-container .main-header {
    text-align: center;
  }
  .main-header-container .main-header > div > *:not(.additional-buttons) {
    display: none;
  }
  .main-header-container .main-header > div > * {
    top: 0 !important;
  }
  .main-header-container .main-header .additional-buttons .user-log-in,
  .main-header-container .main-header .additional-buttons .search,
  .main-header-container .main-header .additional-buttons .cart-header .the-icon {
    display: none;
  }
  .main-header-container .main-header .main-menu {
    display: block !important;
    padding-bottom: 12rem;
    overflow-y: auto;
    position: fixed;
    left: -33rem;
    top: 0 !important;
    -webkit-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-property: all;
    transition-property: all;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  body:not(.top-mobile-header) .main-header-container .main-header > div > .logo-container {
    padding-left: 5rem;
  }
  .main-header-container .main-header.affix > div > .logo-container,
  .main-header-container .main-header.main-header-condensed > div > .logo-container {
    top: 0!important;
  }
  .main-header-container .main-header .logo-container {
    position: relative !important;
    left: 0;
    top: 0!important;
    display: block !important;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    display: inline-block;
    margin-top: 0 !important;
  }
  .main-header-container .main-header .logo-container a {
    display: none;
  }
  .main-header-container .main-header .logo-container a.logo {
    display: inline-block;
  }
  .main-header-container .main-header .logo-container img {
    max-height: 3.5rem;
  }
  .affix .main-menu > ul > li > a,
  .main-header-condensed .main-menu > ul > li > a {
    padding: 1rem !important;
  }
  .main-header-container .main-header.affix > div > .main-menu,
  .main-header-container .main-header.main-header-condensed > div > .main-menu {
    top: 0 !important;
  }
  .mobile-header-item-opened .main-header-container .main-header .main-menu {
    left: 0;
  }
  .mobile-header-item-opened .main-header-container .main-header .additional-buttons .cart-header .header-cart-container {
    left: 0;
  }
  .mobile-header-item-opened .main-sidebar {
    left: 0;
  }
  .mobile-header-item-opened .albums-container {
    left: 0 !important;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart {
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 7.2rem);
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries {
    max-height: inherit;
    overflow: hidden;
  }
  .main-header-container .main-header .logo-container a.logo {
    opacity: 1;
    visibility: visible;
    position: initial;
  }
  .main-header-container .main-header .logo-container a.logo-big {
    display: none !important;
  }
  .main-header-container .main-header,
  .top-mobile-header .main-header-container .main-header {
    padding: 0;
    height: 5rem !important;
    display: table;
  }
  .main-header-container .main-header > .container,
  .main-header-container .main-header > .container-fluid {
    display: table-cell;
    vertical-align: middle;
  }
  .top-mobile-header {
    padding-left: 0;
    padding-top: 5rem;
  }
  .top-mobile-header:not(.mobile-header-item-opened) .mobile-header {
    background: transparent;
    height: 5rem;
    bottom: auto;
  }
  .top-mobile-header .mobile-header {
    z-index: 4;
  }
  .top-mobile-header .mobile-header .mobile-header-trigger {
    position: fixed;
    width: 5rem;
    top: 0;
  }
  .top-mobile-header .mobile-header .mobile-header-trigger.search-trigger {
    left: 5rem;
  }
  .top-mobile-header .mobile-header .mobile-header-trigger.menu-trigger {
    left: 0;
  }
  .top-mobile-header .mobile-header .mobile-header-trigger.sidebar-trigger {
    right: 0;
  }
  .top-mobile-header .mobile-header .mobile-header-trigger.playlist-trigger {
    right: 5rem;
    padding: 1.75rem 0;
  }
  .top-mobile-header .mobile-header .mobile-header-trigger.cart-trigger {
    right: 10rem;
    padding: 1.75rem 0;
  }
  .top-mobile-header.mobile-header-item-opened .mobile-header .mobile-header-trigger.search-trigger {
    display: none;
  }
  .top-mobile-header.mobile-header-item-opened .mobile-header .mobile-header-trigger.menu-trigger {
    position: initial;
  }
}
@media (max-width: 500px) {
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container {
    width: 22rem;
    left: -100%;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart {
    width: 20rem;
  }
  .main-sidebar {
    width: 22rem;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure a.product-thumbnail {
    width: 5rem;
    height: 5rem;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure {
    min-height: 6rem;
    padding-left: 6rem;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption .right-buttons {
    right: 0;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > span {
    display: none;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption > a {
    padding-top: 0;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption {
    min-height: 6rem;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure figcaption p.price sup {
    font-size: 0.9rem;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer {
    padding-left: 0;
    padding-right: 0;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons,
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .total {
    float: none;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-footer .cart-buttons a:first-of-type {
    padding-left: 0;
  }
  .main-header-container .main-header .main-menu {
    left: -100%;
  }
  .top-mobile-header form.main-search {
    left: 3.5rem;
  }
}
.main-menu {
  z-index: 1;
}
.main-menu > ul > li {
  display: inline-block;
  position: relative;
}
.main-menu > ul > li > a {
  padding: 3rem 1rem;
  display: block;
  font-size: 1.4rem;
  text-transform: capitalize;
  line-height: 1.4rem;
}
.main-menu > ul > li > a > i {
  display: none;
}
.main-menu > ul > li > ul:not(.megamenu) {
  top: 5.4rem;
  padding-top: 3rem;
  position: absolute;
  text-align: left;
  width: 18rem;
  left: 50%;
  margin-left: -9rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
.main-menu > ul > li > ul:not(.megamenu) li {
  background: #1c1c1c;
}
.main-menu > ul > li > ul:not(.megamenu) li a {
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  line-height: 1.4rem;
  display: block;
  text-transform: capitalize;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
}
.main-menu > ul > li > ul:not(.megamenu) li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.main-menu > ul > li > ul:not(.megamenu):after {
  content: '';
  position: absolute;
  top: 2.3rem;
  left: 50%;
  margin-left: -0.7rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.7rem 0.7rem 0.7rem;
  border-color: transparent transparent #1c1c1c transparent;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
.main-menu > ul > li.megamenu-parent {
  position: initial;
}
.main-menu > ul > li .megamenu {
  position: fixed;
  width: 100vw;
  top: 0;
  left: 50% !important;
  margin-top: 1rem;
  z-index: 8;
  margin-left: 0 !important;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.main-menu > ul > li .megamenu > li {
  background: #1f1f20;
}
.main-menu > ul > li .megamenu .main-carousel-container {
  position: relative;
  padding-left: 0;
}
.main-menu > ul > li .megamenu .categories {
  width: 20%;
  float: left;
  padding-right: 4.5rem;
  padding: 2rem 0 0 0;
}
.main-menu > ul > li .megamenu .categories ul {
  padding-bottom: 8rem;
  position: relative;
}
.main-menu > ul > li .megamenu .categories ul li a {
  font-weight: 400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #919191;
  line-height: 2.2rem;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  display: block;
}
.main-menu > ul > li .megamenu .categories ul li a:hover,
.main-menu > ul > li .megamenu .categories ul li a.active {
  color: #ff3c00;
}
.main-menu > ul > li .megamenu .categories ul li:last-child {
  position: absolute;
  bottom: 2.5rem;
  left: 0rem;
}
.main-menu > ul > li .megamenu .categories ul li:last-child a {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2rem;
}
.main-menu > ul > li .megamenu .categories ul li:last-child a:hover {
  color: #ff3c00;
}
.main-menu > ul > li .megamenu .header-carousel {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.main-menu > ul > li .megamenu .header-carousel.active {
  height: auto;
  opacity: 1;
  visibility: hidden;
}
.main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4.5rem;
  z-index: 1;
}
.main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav > div i {
  font-size: 3.5rem;
  color: #919191;
}
.main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-prev {
  left: -4.5rem;
}
.main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-prev i {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next {
  width: calc(50vw - 55.5rem);
  right: 0;
  background: rgba(0, 0, 0, 0.8);
}
.main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next i {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  width: 4.5rem;
}
.main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.main-menu > ul > li:hover > ul:not(.megamenu) {
  top: 4.4rem;
  opacity: 1;
  visibility: visible;
}
.main-menu > ul > li:hover .megamenu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.main-menu > ul > li:hover .megamenu .header-carousel.active {
  visibility: visible;
}
.affix .main-menu > ul > li > a,
.main-header-condensed .main-menu > ul > li > a {
  padding: 1.5rem 1rem;
}
.affix .main-menu > ul > li > ul:not(.megamenu),
.main-header-condensed .main-menu > ul > li > ul:not(.megamenu) {
  top: 3.9rem;
  padding-top: 1.5rem;
}
.affix .main-menu > ul > li > ul:not(.megamenu):after,
.main-header-condensed .main-menu > ul > li > ul:not(.megamenu):after {
  top: 0.8rem;
}
.affix .main-menu > ul > li .megamenu,
.main-header-condensed .main-menu > ul > li .megamenu {
  margin-top: 1rem;
  padding-top: 1rem;
}
.affix .main-menu > ul > li:hover > ul:not(.megamenu),
.main-header-condensed .main-menu > ul > li:hover > ul:not(.megamenu) {
  top: 2.9rem;
}
.affix .main-menu > ul > li:hover .megamenu,
.main-header-condensed .main-menu > ul > li:hover .megamenu {
  margin-top: 0;
  padding-top: 1rem;
}
.main-header .main-menu > ul li a.active {
  color: #ff3c00;
}
@media (max-width: 1200px) {
  .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next {
    width: calc(50vw - 45.5rem);
  }
}
@media (min-width: 1030px) {
  .main-menu {
    background-image: none !important;
  }
}
@media (max-width: 1030px) {
  .main-menu {
    width: 33rem;
    padding-top: 7.5rem;
    height: 100vh;
    background-color: #0c0a09;
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .main-menu > ul {
    float: none;
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .main-menu > ul > li {
    position: relative;
    z-index: 0;
  }
  .main-menu > ul > li:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .main-menu > ul > li.megamenu-parent {
    position: relative;
  }
  .main-menu > ul > li > a {
    padding: 1rem;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    display: inline-block;
    position: relative;
  }
  .main-menu > ul > li > a > i {
    display: block;
    cursor: pointer;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    position: absolute;
    right: -2.1rem;
    top: 1rem;
  }
  .main-menu > ul li {
    display: block;
    width: 100%;
  }
  .main-menu > ul li ul:not(.megamenu) {
    position: initial;
    padding: 0.5rem 0 !important;
    top: 0;
    opacity: 1;
    visibility: visible;
    margin-left: 0;
    left: 0;
    width: 100%;
    text-align: center;
    display: none;
  }
  .main-menu > ul li ul:not(.megamenu):after {
    display: none;
  }
  .main-menu > ul li ul:not(.megamenu) li a {
    background: transparent;
    padding: 0.8rem 1rem;
    letter-spacing: 0;
    font-size: 1.4rem;
    color: #919191;
    font-weight: 400;
  }
  .main-menu > ul li ul:not(.megamenu) li a:hover {
    color: #ff3c00;
    background: none;
  }
  .main-menu > ul li.submenu-opened ul:not(.megamenu) {
    display: block;
  }
  .main-menu .megamenu {
    display: none;
  }
}
@media (max-width: 500px) {
  .main-menu {
    width: 22rem;
  }
}
.main-music-player {
  left: 0;
  bottom: 0;
  width: 100%;
  position: fixed;
  background: #000000;
  z-index: 6;
}
.main-music-player.main-music-player-content-dark {
  color: #1c1c1c;
}
.main-music-player.main-music-player-content-dark .mesh-main-player .mesh-title {
  color: #000;
}
.main-music-player.main-music-player-content-light {
  color: #fff;
}
.main-music-player.main-music-player-content-light .mesh-main-player .mesh-seek-bar {
  background: #333333;
}
.main-music-player.main-music-player-content-light .mesh-main-player .mesh-volume-bar {
  background: #1a1a1a;
}
.main-music-player.main-music-player-content-light .mesh-main-player .mesh-title {
  color: #e3e7d9;
}
.main-music-player.hide-main-player {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -o-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.main-music-player.hide-main-player .show-hide-main-player-button i:before {
  content: "\f106";
}
.main-music-player.hide-main-player .mesh-main-player .mesh-play-bar:after {
  top: 0;
  margin-top: 0;
}
.main-music-player.hide-main-player-bottom {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.main-music-player.hide-main-player-bottom .show-hide-main-player-button i:before {
  content: "\f107";
}
.main-music-player.hide-main-player-bottom .mesh-main-player .mesh-play-bar:after {
  top: 0.15rem;
  margin-top: -0.75rem;
}
.mesh-main-player:before,
.mesh-main-player:after {
  content: " ";
  display: table;
}
.mesh-main-player:after {
  clear: both;
}
.mesh-main-player:before,
.mesh-main-player:after {
  content: " ";
  display: table;
}
.mesh-main-player:after {
  clear: both;
}
.mesh-main-player .trak-item {
  position: absolute;
  right: 5rem;
  bottom: 100%;
  width: auto;
  padding-right: 0;
  background: none;
  margin-bottom: 0.4rem;
}
.mesh-main-player .trak-item .play-pause-button {
  width: auto;
  margin-right: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.mesh-main-player .trak-item .play-pause-button span {
  font-size: 1.2rem;
  font-weight: 400;
  text-align-last: center;
  background: #ff3c00;
  border-radius: 0.3rem;
  padding: 0.3rem 1rem;
  line-height: 1.9rem;
  letter-spacing: 0.1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.mesh-main-player .trak-item .play-pause-button:hover {
  opacity: 0.8;
}
.mesh-main-player .trak-item > * {
  height: auto;
  display: block;
}
.mesh-main-player .show-hide-main-player-button {
  position: absolute;
  bottom: 100%;
  right: 0.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
  background: #000;
  color: #fff;
  cursor: pointer;
  padding: 0.4rem 1.5rem;
}
.mesh-main-player .show-hide-main-player-button i {
  position: relative;
  top: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.mesh-main-player .show-hide-main-player-button:hover i {
  top: 0.2rem;
}
.mesh-main-player i {
  font-size: 1.2rem;
}
.mesh-main-player .mesh-play,
.mesh-main-player .mesh-pause {
  cursor: pointer;
  position: relative;
  padding: 1.5rem;
  margin-left: -2rem;
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
  width: 4.1rem;
  text-align: center;
}
.mesh-main-player .mesh-seek-bar {
  height: 0.7rem;
  background: #333333;
  cursor: col-resize;
}
.mesh-main-player .mesh-play-bar {
  top: 0.2rem;
  position: relative;
  height: 0.3rem;
  background: #ff0000;
}
.mesh-main-player .mesh-play-bar:after {
  content: '';
  position: absolute;
  right: -0.75rem;
  margin-top: -0.75rem;
  top: 0.15rem;
  border-radius: 50%;
  background: #aa3511;
  width: 1.5rem;
  height: 1.5rem;
}
.mesh-main-player .mesh-title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #e3e7d9;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 55rem;
  height: 1.9rem;
  margin-bottom: -0.2rem;
  margin-top: -0.2rem;
  position: relative;
  white-space: nowrap;
  top: 0.1rem;
  padding: 0.3rem 0;
}
.mesh-main-player .mesh-volume-bar {
  margin-top: 0.3rem;
  width: 11.5rem;
  height: 0.7rem;
  background: #1a1a1a;
  margin-left: 1.5rem;
  cursor: col-resize;
}
.mesh-main-player .mesh-volume-bar-value {
  height: 0.3rem;
  margin-top: 0.2rem;
  background: #ff0000;
}
.mesh-main-player .left-player-side,
.mesh-main-player .right-player-side {
  line-height: 1.2rem;
  padding: 1.7rem 1.5rem 2rem 1.5rem;
}
.mesh-main-player .left-player-side {
  padding-right: 0;
}
.mesh-main-player .right-player-side {
  padding-left: 0;
}
.mesh-main-player .left-player-side {
  float: left;
  position: relative;
}
.mesh-main-player .left-player-side:before,
.mesh-main-player .left-player-side:after {
  content: " ";
  display: table;
}
.mesh-main-player .left-player-side:after {
  clear: both;
}
.mesh-main-player .left-player-side:before,
.mesh-main-player .left-player-side:after {
  content: " ";
  display: table;
}
.mesh-main-player .left-player-side:after {
  clear: both;
}
.mesh-main-player .left-player-side > div {
  float: left;
}
.mesh-main-player .left-player-side > div:before,
.mesh-main-player .left-player-side > div:after {
  content: " ";
  display: table;
}
.mesh-main-player .left-player-side > div:after {
  clear: both;
}
.mesh-main-player .left-player-side > div:before,
.mesh-main-player .left-player-side > div:after {
  content: " ";
  display: table;
}
.mesh-main-player .left-player-side > div:after {
  clear: both;
}
.mesh-main-player .right-player-side {
  float: right;
}
.mesh-main-player .right-player-side:before,
.mesh-main-player .right-player-side:after {
  content: " ";
  display: table;
}
.mesh-main-player .right-player-side:after {
  clear: both;
}
.mesh-main-player .right-player-side:before,
.mesh-main-player .right-player-side:after {
  content: " ";
  display: table;
}
.mesh-main-player .right-player-side:after {
  clear: both;
}
.mesh-main-player .right-player-side > div {
  float: left;
}
.mesh-main-player .right-player-side > div:before,
.mesh-main-player .right-player-side > div:after {
  content: " ";
  display: table;
}
.mesh-main-player .right-player-side > div:after {
  clear: both;
}
.mesh-main-player .right-player-side > div:before,
.mesh-main-player .right-player-side > div:after {
  content: " ";
  display: table;
}
.mesh-main-player .right-player-side > div:after {
  clear: both;
}
.mesh-main-player .right-player-side > div > div {
  float: left;
}
.mesh-main-player .mesh-player-next-song {
  cursor: pointer;
  margin-right: 1.5rem;
  margin-left: 1px;
  padding: 1.5rem;
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}
.mesh-main-player .mesh-player-prev-song {
  cursor: pointer;
  padding: 1.5rem;
  margin-right: 2.1rem;
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}
.mesh-main-player .mesh-current-time {
  margin-left: 3rem;
}
.mesh-main-player .mesh-current-time:after {
  content: '/' !important;
  margin: 0 0.3rem !important;
  display: inline-block !important;
}
.mesh-main-player .mesh-current-time,
.mesh-main-player .mesh-duration {
  font-size: 1.4rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.mesh-main-player .mesh-mute,
.mesh-main-player .mesh-unmute {
  cursor: pointer;
  width: 1.2rem;
  text-align: center;
}
.mesh-main-player .mesh-playlist-repeat {
  margin-left: 3rem;
  height: 1.3rem;
  position: relative;
}
.mesh-main-player .mesh-playlist-repeat i {
  font-size: 1.3rem;
  opacity: 0.5;
  cursor: pointer;
}
.mesh-main-player .mesh-playlist-repeat .mesh-tooltip {
  position: absolute;
  bottom: 100%;
  margin-bottom: 1rem;
  background: #3e3e3e;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  font-weight: 300;
  padding: 0.4rem 0.5rem;
  width: 120px;
  left: 50%;
  margin-left: -60px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.mesh-main-player .mesh-playlist-repeat .mesh-tooltip span {
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.mesh-main-player .mesh-playlist-repeat .mesh-tooltip:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.4rem;
  border-style: solid;
  border-width: 0.6rem 0.4rem 0 0.4rem;
  border-color: #3e3e3e transparent transparent transparent;
}
.mesh-main-player .mesh-playlist-repeat.active i {
  opacity: 1;
}
.mesh-main-player .mesh-playlist-random {
  margin-left: 1.5rem;
  height: 1.3rem;
  position: relative;
}
.mesh-main-player .mesh-playlist-random i {
  font-size: 1.3rem;
  opacity: 0.5;
  cursor: pointer;
}
.mesh-main-player .mesh-playlist-random .mesh-tooltip {
  position: absolute;
  bottom: 100%;
  margin-bottom: 1rem;
  background: #3e3e3e;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  font-weight: 300;
  padding: 0.4rem 0.5rem;
  width: 120px;
  left: 50%;
  margin-left: -60px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.mesh-main-player .mesh-playlist-random .mesh-tooltip span {
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.mesh-main-player .mesh-playlist-random .mesh-tooltip:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.4rem;
  border-style: solid;
  border-width: 0.6rem 0.4rem 0 0.4rem;
  border-color: #3e3e3e transparent transparent transparent;
}
.mesh-main-player .mesh-playlist-random.active i {
  opacity: 1;
}
.hide-main-player .show-hide-main-player-button:hover i {
  top: -0.2rem;
}
.hide-main-player-bottom .show-hide-main-player-button:hover i {
  top: 0.2rem;
}
.single-playlist {
  margin-bottom: 2rem;
}
.trak-item {
  margin-bottom: 0.1rem;
  display: block;
  width: 100%;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #222222;
  padding-right: 2rem;
  position: relative;
  z-index: 1;
}
.trak-item:before,
.trak-item:after {
  content: " ";
  display: table;
}
.trak-item:after {
  clear: both;
}
.trak-item:before,
.trak-item:after {
  content: " ";
  display: table;
}
.trak-item:after {
  clear: both;
}
.trak-item:before {
  content: '';
  position: absolute;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  display: block;
  background-color: #222222;
}
.trak-item.active {
  background-color: #ff3c00;
}
.trak-item.active:before {
  background-color: #ff3c00;
}
.trak-item.playing .play-pause-button i:before {
  content: '\f04c';
}
.trak-item.playing .play-pause-button:hover i {
  opacity: 1;
}
.trak-item audio {
  display: none;
}
.trak-item > * {
  height: 6rem;
  display: table;
}
.trak-item .play-pause-button {
  width: 6rem;
  cursor: pointer;
  text-align: center;
  margin-right: 1rem;
}
.trak-item .play-pause-button i {
  position: relative;
  top: 0.05rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.trak-item .play-pause-button:hover i {
  opacity: 0.8;
}
.trak-item .center-y-table {
  display: table-cell;
  vertical-align: middle;
}
.trak-item h2,
.trak-item h3,
.trak-item time {
  padding: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  display: block;
}
.trak-item h2 {
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-bottom: 2px;
}
.trak-item h3,
.trak-item time {
  font-size: 1rem;
  line-height: 1rem;
}
.trak-item .trak-duration {
  line-height: 6rem;
  font-size: 1.4rem;
}
.trak-item .album-and-year {
  width: 12rem;
  padding-right: 2rem;
}
.trak-item .name-artist {
  width: 22rem;
}
.trak-item .name-artist h2 {
  white-space: nowrap;
  width: 21rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.trak-item > * {
  float: left;
}
.trak-item > time {
  float: right;
}
.trak-item .additional-button a {
  display: inline-block;
  border-radius: 0.3rem;
  padding: 0 0.8rem;
  line-height: 2.2rem;
  background: #d3d3d3;
  position: relative;
  top: 0;
}
.trak-item .additional-button a i,
.trak-item .additional-button a .icon {
  color: #1f2020;
  font-size: 1.2rem;
}
.trak-item .additional-button a .icon {
  font-size: 2rem;
  width: 1.9rem;
  padding: 0.4rem 0;
  height: 2.3rem;
  line-height: 2.3rem;
  display: block;
  margin-left: 0;
}
.trak-item .additional-button a span {
  font-size: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #1f2020;
  font-weight: 600;
  text-transform: capitalize;
}
.trak-item .additional-button a:hover {
  background: #fff;
}
.trak-item .additional-button a.shopping {
  background: #ff3c00;
  margin: 0 0;
  padding: 0 0.45rem;
  position: relative;
  top: 0;
  display: block;
  float: left;
  margin-right: 0.3rem;
}
.trak-item .additional-button a.shopping i,
.trak-item .additional-button a.shopping .icon {
  color: #fff;
}
.trak-item .additional-button a.shopping:hover {
  opacity: 0.6;
}
.main-sidebar .trak-item {
  padding-right: 2rem;
}
.main-sidebar .trak-item > * {
  height: 5rem;
}
.main-sidebar .trak-item .play-pause-button {
  width: 5rem;
  margin-right: 1rem;
}
.main-sidebar .trak-item .trak-duration {
  float: right;
  line-height: 5rem;
}
.main-sidebar .trak-item .name-artist {
  width: 14rem;
}
.main-sidebar .trak-item .name-artist h2 {
  width: 14rem;
}
.blog-single-container .trak-item .name-artist {
  width: 40rem;
}
.blog-single-container .trak-item .name-artist h2 {
  width: 39rem;
}
.blog-single-container .trak-item .album-and-year {
  width: 15rem;
}
@media (max-width: 1200px) {
  .main-sidebar .trak-item .name-artist {
    width: 10rem;
  }
  .main-sidebar .trak-item .name-artist h2 {
    width: 10rem;
  }
  .blog-single-container .album-and-year {
    display: none;
  }
}
@media (min-width: 1030px) {
  .mesh-main-player .left-player-side {
    padding-left: 0;
  }
  .mesh-main-player .right-player-side {
    padding-right: 2rem;
  }
}
@media (max-width: 1030px) {
  .mesh-main-player .mesh-playlist-repeat.tooltipHoverMobile .mesh-tooltip,
  .mesh-main-player .mesh-playlist-random.tooltipHoverMobile .mesh-tooltip {
    opacity: 1;
    visibility: visible;
  }
  .mesh-main-player .left-player-side {
    padding-left: 1rem;
  }
  .main-music-player {
    width: 100%;
    padding-top: 0.75rem;
  }
  .mesh-main-player .mesh-title {
    max-width: 33.5rem;
  }
  .trak-item .name-artist {
    width: 27rem;
  }
  .trak-item .name-artist h2 {
    width: 26rem;
  }
  .main-sidebar .trak-item .name-artist {
    width: 16rem;
  }
  .main-sidebar .trak-item .name-artist h2 {
    width: 16rem;
  }
}
@media (min-width: 1030px) {
  .mesh-main-player .mesh-playlist-repeat.tooltipHover .mesh-tooltip,
  .mesh-main-player .mesh-playlist-random.tooltipHover .mesh-tooltip {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 800px) {
  .mesh-main-player .mesh-volume-bar {
    display: none !important;
  }
  .mesh-main-player .mesh-current-time {
    margin-left: 3rem;
  }
  .trak-item .album-and-year {
    display: none;
  }
  .blog-single-container .trak-item .name-artist {
    width: 24rem;
  }
  .blog-single-container .trak-item .name-artist h2 {
    width: 22rem;
  }
  .mesh-main-player .mesh-play,
  .mesh-main-player .mesh-pause {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    width: 2.1rem;
  }
  .mesh-main-player .mesh-player-prev-song,
  .mesh-main-player .mesh-player-next-song {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 600px) {
  .mesh-main-player .mesh-title {
    max-width: 22rem;
    font-size: 1.2rem;
  }
  .trak-item .play-pause-button {
    margin-right: 0;
  }
  .trak-item .additional-button a span {
    display: none;
  }
}
@media (max-width: 500px) {
  .mesh-main-player .mesh-playlist-repeat {
    margin-left: 1rem;
    margin-right: 0.5rem;
  }
  .mesh-main-player .mesh-playlist-random {
    margin-left: 0.5rem;
  }
  .trak-item {
    padding-right: 2rem;
  }
  .mesh-main-player .mesh-current-time {
    margin-left: 1rem;
  }
  .mesh-main-player .mesh-current-time,
  .mesh-main-player .mesh-duration {
    font-size: 1.1rem;
  }
  .mesh-main-player .mesh-title {
    max-width: 12rem;
    font-size: 1.1rem;
  }
  .trak-item .name-artist {
    width: 10.5em !important;
  }
  .trak-item .name-artist .center-y-table {
    width: 7.5rem;
  }
  .trak-item .name-artist h2 {
    width: 14.5rem !important;
  }
  .trak-item .play-pause-button {
    width: 4rem;
  }
  .main-sidebar .trak-item .play-pause-button {
    width: 4rem;
    margin-right: 0;
  }
  .main-sidebar .trak-item {
    padding-right: 0.7rem;
  }
  .blog-single-container .trak-item .name-artist {
    width: 19rem !important;
  }
  .blog-single-container .trak-item .name-artist h2 {
    width: 18rem !important;
  }
  .blog-single-container .additional-button {
    display: none;
  }
}
@media (max-width: 360px) {
  .mesh-main-player .mesh-duration {
    display: none;
  }
  .mesh-main-player .mesh-current-time:after {
    display: none !important;
  }
  .trak-item .name-artist {
    width: 9rem;
  }
  .trak-item .name-artist h2 {
    width: 6.5rem;
  }
  .blog-single-container .trak-item {
    padding-right: 0;
  }
  .blog-single-container .trak-item .name-artist {
    width: 20rem !important;
  }
  .blog-single-container .trak-item .name-artist h2 {
    width: 19rem !important;
  }
  .blog-single-container .trak-item .trak-duration {
    display: none;
  }
}
.mb_YTPBar,
.mb_YTPBar span.mb_YTPUrl a {
  color: #fff;
}
@font-face {
  font-family: ytpregular;
  src: url(font/ytp-regular.eot);
}
@font-face {
  font-family: ytpregular;
  src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAA5sABEAAAAAFCAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABgAAAABwAAAAcZ9iuNUdERUYAAAGcAAAAHQAAACAAdAAET1MvMgAAAbwAAABJAAAAYHUMUrFjbWFwAAACCAAAAKkAAAGKn5XycWN2dCAAAAK0AAAANgAAADYNLQohZnBnbQAAAuwAAAGxAAACZVO0L6dnYXNwAAAEoAAAAAgAAAAIAAAAEGdseWYAAASoAAAGVQAAB4jz86dSaGVhZAAACwAAAAAzAAAANgbKONpoaGVhAAALNAAAACAAAAAkESQLXGhtdHgAAAtUAAAAVAAAARxOmwVwbG9jYQAAC6gAAAAjAAAAkFoEXRRtYXhwAAALzAAAACAAAAAgAWoB625hbWUAAAvsAAAA+wAAAeok3Eb+cG9zdAAADOgAAADAAAABN99tv1lwcmVwAAANqAAAALkAAAFY3I6ikndlYmYAAA5kAAAABgAAAAbHMlGnAAAAAQAAAADMPaLPAAAAAM3Nk7QAAAAAzc13sXjaY2BkYGDgA2IJBhBgYmAEQjcgZgHzGAAHTAB5AAAAeNpjYGbZwDiBgZWBhdWY5SwDA8MsCM10liGNKQ3IB0rBASMDEgj1DvdjcGDgfcDAlvYPqJJVldEZpoZVkuUZkFJgYAQAUUULewAAAHjaY2BgYGaAYBkGRgYQaAHyGMF8FoYMIC3GIAAUYQOyeBkUGKIYqhgWKHAp6CvEP2D4/x+sAyTuyJAIFGeAizP+//r/8f/D//f+n/HA8oHo/WcKblDzsQBGoOkwSUYmIMGErgDiRLyAhZWNnYOTi5uHl49fQFBIWERUTFxCUkpaRhYiLyevoKikrKKqpq6hqaWto6unb2BoZGxiambOQF1gQZYuAIQnH4IAAAAAAAAAAAABegEnAHEAswC9AOAA5QD+ARcBIwBdAHIBtgBcAGAAZgByAI8AogErAbIAUwBEBREAAHjaXVG7TltBEN0NDwOBxNggOdoUs5mQxnuhBQnE1Y1iZDuF5QhpN3KRi3EBH0CBRA3arxmgoaRImwYhF0h8Qj4hEjNriKI0Ozuzc86ZM0vKkap36WvPU+ckkMLdBs02/U5ItbMA96Tr642MtIMHWmxm9Mp1+/4LBpvRlDtqAOU9bykPGU07gVq0p/7R/AqG+/wf8zsYtDTT9NQ6CekhBOabcUuD7xnNussP+oLV4WIwMKSYpuIuP6ZS/rc052rLsLWR0byDMxH5yTRAU2ttBJr+1CHV83EUS5DLprE2mJiy/iQTwYXJdFVTtcz42sFdsrPoYIMqzYEH2MNWeQweDg8mFNK3JMosDRH2YqvECBGTHAo55dzJ/qRA+UgSxrxJSjvjhrUGxpHXwKA2T7P/PJtNbW8dwvhZHMF3vxlLOvjIhtoYEWI7YimACURCRlX5hhrPvSwG5FL7z0CUgOXxj3+dCLTu2EQ8l7V1DjFWCHp+29zyy4q7VrnOi0J3b6pqqNIpzftezr7HA54eC8NBY8Gbz/v+SoH6PCyuNGgOBEN6N3r/orXqiKu8Fz6yJ9O/sVoAAAAAAQAB//8AD3jaTZVrbBxXFcfvufNe72Nmdx77tmfHO2N76117784OTr154YAbR7RQuUQhttoSuXZKFQVKKYqgiFJAgkpIkVClIn8opSomjXY3VHHTFldEIYpay1hR+ID4Bha27FoIEQGpd8Idu4lY7c6eOfee//2f3+zeizAaQwif4iYRgwRUbgGqjLYFNvVxtcVzfxltM5iGqMUEaS5ItwU+vTPahiBPFFMpmoo5hnv8XnjFn+Um7/xmjF1GCLHoPf+fgsUVEYcSKIcGkYbaWYxKLZ3bgGa50qpACQ0NeyYoYILaDTqpurUK2FZBUYlJY8ukEc0egLpbo+kY8O/BQcx2dvwP2Fh6/Q+Gl19fyroubHmer7rpjHllPZ/NKB+tp2/4/TzxSx0zo/74uUY29vJZOEHIfng4lzz7cjyXzn/jJwqCwCOLdj2iPSP3F/hUAHF3v+Cviee5DIqhJDLRACLoPGpHECq1M7Sd5iDZ/W6zQW8mu9Ecql7SI6xYaiOpnxCydwPNWqWJ/tSSjY1mqtqU5ZYNpWal2pJiGy0XSi1bVuKX1Fyh1GuMoJYeUeJvy/GEVbTpfTOjHJRVzUim0tlcwekbKD1QrgR5M97OV8nIyMjQsKPUEKWGNEVFFBwqEs/yHMEVFMM1PIc4FhiWQVxHcxjD0zzXEkgbmHe5G1eA9T955453xd+B9tbpi6vj10+fvj6+evH0Fju7vPDU5szVY8euzmw+tXABv7kEov/v33WOv+v/C8LG9M2xD19/EquzCyuHVuY6R25Obz35+odw4NDKwuzWHAK86q9x21wKYYQkjFeZ3M5f/TUmw6Qo12P+38Wf0zEZpVABlVANfQu1owHXXMD1AdIyQhvNgeou2b1LAuhAkVwyExRps/ppAE230qrTX1MrEVXil5W4qlm9thMAMpR2MtVHAbXMnBJvZ8oVGjdZ5XK6u6cwNExqdNJ9dnm4D+8eIeYeM7hH0b3H9bcQuczdeH75ef+TxTveO/5tuDK2Mrs5d+HmzQtzm7MrbP6ZqxMrrz2+vf34aysTV5+5iN9YhMi51W93Tiz5/wFp+ujy/MntGXx+dfrjqflrO788Ob989MaMP716+Nr8FOpCjbvnw032BUrm82gKfQc10SJaAwwZGINHEUrksaEndI3XCppBavWaU7Nrda/u7QfPsnmBF1ReK4NjCxbkgVRJdW/MdmiyjHkhCgKvGkrNq+uGngPLUDXVioJTcGxONWguENOIYmkq1lQqaDu2q1AqKi6qRh6CN0uqhlkn1WIwt1Z3FTqH6lt2kWLkqZpQ2F1H4D3X1CzFUkCp1R8EVaeKGr3mgXpyd3OKZTcgioMi3qImqA2FaFSYrkHd7BYESnSMdqAx1HNgg/6pG0Bo95RAGehqoNAuaRHR90wGdXyJtkAJ1DxSDVQCfS8ocui+EohqagNjFroniyLAOYbBgvSQxuXxiUSCGQXReJBnjafhbf6xBs8P9ZclLLJdTJfdL3bLRsgd50Nf52P7JIWjInYqFuZhUGErucF0Qj/zNJtPGArDz7EYFi0chvSpw8C/mJRgRVLfgrEf7RvowhyjJ3JPfPlX/h8N/6fZryX7bh/pJsPj4QLX9Ra89NL3QQkljmOqnognU6HcxKkoI/JsaJ8cDcfCqZAMC2cfFeSoHu+WFEmWzIQqx8PVmCThSFqPKqLIsgxJx0QYZt1iocjgfrPbjIoiltkXxzxTlE5FVTL1zb7YmTOSzXGiEBU0ZgHzXexjd9HklDtTc2P7iR4/Wmqk/jGhfZXjZW1bYFVp3y01G+ocrh/K9VST3+05OUsaEnAYGKZRfWIpDQaXT2Ej2/vCl1S5nNe7jHq5eCAlM7rOpFx8PP1Zf/NzCUdkpXjUhHmdfdi/Xv31D6WccPAIDjNMmPnBzC+ErAipZzPf++LkQyGRhTDEpCNkbmLpz8892zmE3+8swq1YODIqf2Z7lO8RdJHn7RS8kpY6r0qhAg7xXIHnhViu+zBDbhcx16UOfGVgaGkoXe6LhwS+h7NgSa+vR7ESZvPyq6VUqN+SC0ZSTPm3oETGoxGIh/p60w3naIyJ/Gywf9CMnnAemR3524hT5DErxOwBhR55COMw3e+u0T0tOEsR0JMx+NBHftD/AJ+D/f7v/TW+9t+P+Bo9e/7vNYz+By6FsKkAAAB42mNgZGBgYGRwbI8IWhzPb/OVQZ6DAQTOni3fCKP/+/x7yrOBNRTI5WBgAokCAG3mDbAAeNpjYGRgYFX9t5eBgeftf5//WTwbGIAiKMAdAJycBph42mN6w+DCwcDAAMIsZ8D0HhBNLIap52D478fBwHQRyvbBpZ7nLYMtKeZjt5OJhxT1TKsYGFhDETTjcSAG0gyPoRgozigIpL0hNEiOBcgFAEBoNC142mNgYNCBwjoccALDBEY9RhsgPIMMmZcRhHtIhkcA9pQspAAAAQAAAEcBVAALAAAAAAACAAEAAgAWAAABAACTAAAAAHjalZCxTgJBFEXPApJoYYgF9VZUSIAFTdDCnmiIgsTKsASQuGiCu0YaCr4OfomKOzsTCHRmMzPn3blz38sCFyzJ4uXOgbKWZY+8KssZLqk7zkp9cJyjSOT4jD9WjvPSt46vKHoFx2txyfGGqnfPO18kyohSGjBjJPqRFmqPmWolWkZ9o0uHZ/EkfTNgTo0KVX017ujRps+TyDqvT7xW9U/UV1Vz9ZryrQn8o8QOL1JsdVA/5IwZpv7f/YsKTW50O1PqpzKNZyw1UnKov2c9dbkD7c1/zdhXFSrNdIz3HbuaJFH1KM9CZyDN3N3SoiFupfP66mbOYAd8k0EGAHjabc05TwJhHITxZ0BBBc/P4IkI7y4sh0dBsosHKiqHeLUiiTE0FH56Xdl/6TS/ZIoZUszzM+ad/3IOSilNmm122GWPfQ4ocEiRI0qUcXj4VKgSUKNOgybHnHDKGSER7Xjjgkuu6HDNDbd0ueOeB3r0GTDkkRFPPPPCK29a0KIyympJy1pRTnmtak3r2tCmtjLjz+/ph5edfU2cc2Fiy/3px4Xpmb5ZMatmYNbMutkwm2Yr0W8nBnOj+OcXVDk0PnjaRc67DoJAEAVQFuT9fqsJCSZ2+w12QkNjrCCx9w+sbSy19DsGK/9Ob3RZujk3k7nzZp8bsbvSkXXoR8Yew9gavN9QNHSUHTFch4oMfuoV0uqGNL4nv25emq3yHzzADwVcwOsFHMCtBWzAWQlYgJ0ImIA1rRmAeRbQAWM6vQD04A9GgXglRBo4Kh+19gJGYDgzBqOnZALGO8kUTLaSGZhWkjmYrSULMA8kS7CYi5ZgKTlQxr/W1F5aAAAAAAFRp8cxAAA=) format('woff'), url(font/ytp-regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}
.mb_YTPlayer:focus {
  outline: 0;
}
.mbYTP_wrapper {
  display: block;
  -webkit-transform: translateZ(0) translate3d(0, 0, 0);
  transform: translateZ(0) translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mb_YTPlayer .loading {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.51);
  text-align: center;
  padding: 2px 4px;
  border-radius: 5px;
  font-family: "Droid Sans", sans-serif;
  -webkit-animation: fade .1s infinite alternate;
  animation: fade 0.1s infinite alternate;
}
@-webkit-keyframes fade {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.YTPFullscreen {
  display: block!important;
  position: fixed!important;
  width: 100%!important;
  height: 100%!important;
  top: 0!important;
  left: 0!important;
  margin: 0!important;
  border: none!important;
  opacity: 1 !important;
}
.mbYTP_wrapper iframe {
  max-width: 4000px !important;
}
.inline_YTPlayer {
  margin-bottom: 20px;
  vertical-align: top;
  position: relative;
  left: 0;
  overflow: hidden;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.5);
}
.inline_YTPlayer img {
  border: none!important;
  margin: 0!important;
  padding: 0!important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}
.mb_YTPBar,
.mb_YTPBar .buttonBar {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  left: 0;
  padding: 5px;
  width: 100%;
}
.mb_YTPBar .ytpicon {
  font-size: 20px;
  font-family: ytpregular;
}
.mb_YTPBar .mb_YTPUrl.ytpicon {
  font-size: 30px;
}
.mb_YTPBar {
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
  display: block;
  height: 10px;
  background: #333;
  position: fixed;
  bottom: 0;
  text-align: left;
  z-index: 1000;
  font: 14px/16px sans-serif;
  opacity: 0.1;
}
.mb_YTPBar.visible,
.mb_YTPBar:hover {
  opacity: 1;
}
.mb_YTPBar .buttonBar {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  background: 0 0;
  font: 12px/14px Calibri;
  position: absolute;
  top: -30px;
}
.mb_YTPBar:hover .buttonBar {
  background: rgba(0, 0, 0, 0.4);
}
.mb_YTPBar span {
  display: inline-block;
  font: 16px/20px Calibri, sans-serif;
  position: relative;
  width: 30px;
  height: 25px;
  vertical-align: middle;
}
.mb_YTPBar span.mb_YTPTime {
  width: 130px;
}
.mb_YTPBar span.mb_OnlyYT,
.mb_YTPBar span.mb_YTPUrl {
  position: absolute;
  width: auto;
  display: block;
  top: 6px;
  right: 10px;
  cursor: pointer;
}
.mb_YTPBar span.mb_YTPUrl img {
  width: 60px;
}
.mb_YTPBar span.mb_OnlyYT {
  left: 300px;
  right: auto;
}
.mb_YTPBar span.mb_OnlyYT img {
  width: 25px;
}
.mb_YTPBar .mb_YTPMuteUnmute,
.mb_YTPBar .mb_YTPPlaypause,
.mb_YTPlayer .mb_YTPBar .mb_YTPPlaypause img {
  cursor: pointer;
}
.mb_YTPBar .mb_YTPProgress {
  height: 10px;
  width: 100%;
  background: #222;
  bottom: 0;
  left: 0;
}
.mb_YTPBar .mb_YTPLoaded {
  height: 10px;
  width: 0;
  background: #444;
  left: 0;
}
.mb_YTPBar .mb_YTPseekbar {
  height: 10px;
  width: 0;
  background: #bb110e;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: rgba(82, 82, 82, 0.47) 1px 1px 3px;
  box-shadow: rgba(82, 82, 82, 0.47) 1px 1px 3px;
}
.mb_YTPBar .YTPOverlay {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: "flat";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.YTPOverlay.raster {
  background: url(images/raster.png);
}
.YTPOverlay.raster.retina {
  background: url(images/raster@2x.png);
}
.YTPOverlay.raster-dot {
  background: url(images/raster_dot.png);
}
.YTPOverlay.raster-dot.retina {
  background: url(images/raster_dot@2x.png);
}
.mb_YTPBar .simpleSlider {
  position: relative;
  width: 100px;
  height: 10px;
  border: 1px solid #fff;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 10px;
  cursor: pointer!important;
  border-radius: 3px;
}
.mb_YTPBar.compact .simpleSlider {
  width: 40px;
}
.mb_YTPBar .simpleSlider.muted {
  opacity: 0.3;
}
.mb_YTPBar .level {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mb_YTPBar .level.horizontal {
  height: 100%;
  width: 0;
}
.mb_YTPBar .level.vertical {
  height: auto;
  width: 100%;
}
.container .vc_row#instagram {
  overflow: inherit;
}
.google-map {
  min-height: 50rem;
  color: #000;
}
.google-map img {
  max-width: inherit;
}
.forcefullwidth_wrapper_tp_banner .rev_slider_wrapper {
  left: 0 !important;
}
.main-hidden-playlist {
  display: none !important;
}
.addthis-style {
  padding-top: 2rem;
}
.addthis-style ul {
  list-style: none;
  padding-left: 0;
}
.addthis-style ul:before,
.addthis-style ul:after {
  content: " ";
  display: table;
}
.addthis-style ul:after {
  clear: both;
}
.addthis-style ul:before,
.addthis-style ul:after {
  content: " ";
  display: table;
}
.addthis-style ul:after {
  clear: both;
}
.addthis-style ul li {
  float: left;
  margin-left: 0.4rem;
}
.addthis-style ul li a {
  display: block;
  color: #fff !important;
  width: 3.2rem;
  height: 3.2rem;
  text-align: center;
  line-height: 3.5rem;
  cursor: pointer;
  position: relative;
  top: 0;
}
.addthis-style ul li a i {
  font-size: 2rem;
}
.addthis-style ul li a.facebook {
  background: #3b5998;
}
.addthis-style ul li a.twitter {
  background: #1da1f2;
}
.addthis-style ul li a.google-plus {
  background: #dc4e41;
}
.addthis-style ul li a.vk {
  background: #cb2027;
}
.addthis-style ul li a:hover {
  color: #fff;
  top: -0.4rem;
}
.addthis-style ul li:first-child {
  margin-left: 0;
}
figcaption.gallery-caption {
  font-size: 1.1rem;
  font-family: "Open Sans";
}
figure.gallery-item {
  width: 33.33333%;
  float: left;
  margin-bottom: 2rem;
  text-align: center;
}
.fullscreen-container {
  top: 0 !important;
  left: 0 !important;
}
.nicescroll-rails {
  z-index: 5 !important;
}
.firstLoad .nicescroll-rails {
  opacity: 0 !important;
}
.addthis_sharing_toolbox {
  margin-top: 2rem;
}
.photos-single-article .addthis_sharing_toolbox {
  margin-left: 1.5rem;
}
.body-video-bg {
  position: fixed;
  z-index: -999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.body-video-bg .overlat-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-bg {
  background-size: cover;
  background-position: center;
  padding: 3rem 0;
}
.section-bg.fixed {
  background-attachment: fixed;
}
.ajax-update-content {
  padding-bottom: 6rem;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  left: 0;
  position: relative;
  -webkit-transition: left 0.5s, margin 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91), opacity 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91), visibility 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91);
  -moz-transition: left 0.5s, margin 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91), opacity 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91), visibility 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91);
  -o-transition: left 0.5s, margin 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91), opacity 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91), visibility 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91);
  transition: left 0.5s, margin 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91), opacity 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91), visibility 0.8s 0.2s cubic-bezier(0.25, 0.25, 0.095, 0.91);
  /* custom */
}
.ajax-update-content.boxed {
  padding-bottom: 0;
}
.ajax-update-content.boxed .instagram-feed {
  margin-bottom: 0;
}
.ajax-update-content.boxed .filter-carousels-categories .filter-categories {
  padding-left: 3rem;
}
.ajax-update-content.boxed .filter-categories ul li:last-child {
  left: 3rem;
}
.without-featured-image .breadcrumb-page {
  padding-top: 25rem !important;
}
.without-featured-image .blog-single-container .article-title {
  margin-top: 0;
  width: 100%;
  min-height: 1px;
}
.without-featured-image .blog-single-container .album-title {
  margin-top: 0;
}
.without-featured-image .blog-single-container .album-title header .big-rate-album {
  right: 0;
}
.without-featured-image .blog-single-container .album-title header {
  padding-right: 7rem;
}
.without-featured-image .blog-single-container .event-title.without-poster {
  min-height: inherit;
}
.without-featured-image .blog-single-container .event-title {
  margin-top: 0 !important;
}
.without-featured-image .breadcrumb-page:before,
.without-featured-image .breadcrumb-page:after {
  display: none;
}
.section-404 {
  padding: 13rem 20rem 13rem 20rem;
  text-align: center;
}
.section-404 h2,
.section-404 h3 {
  font-weight: 700;
  padding: 0;
}
.section-404 h2 {
  font-size: 7.2rem;
}
.section-404 h3 {
  font-size: 4.8rem;
}
.section-404 p {
  text-transform: uppercase;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3.5rem;
  margin: 3rem 0;
}
.section-404 a {
  line-height: 1.2rem;
  display: inline-block;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  padding: 1.5rem 2.5rem;
  background: #9f2a06;
  margin-top: -0.6rem;
  margin-bottom: -0.6rem;
}
.section-404 a:hover {
  background: #ff3c00;
}
.page-bg-container {
  margin-bottom: -6rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.page-bg-container .bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.page-bg-container.fixed-bg .bg {
  background-attachment: fixed;
}
.social-list {
  text-align: center;
}
.social-list a {
  font-size: 1.2rem;
  line-height: 4.2rem;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  color: #fff;
  margin: 0 0.2rem;
  border-radius: 50%;
}
.social-list a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.filter-carousels-categories {
  position: relative;
  padding-left: 0;
  margin-bottom: 5rem;
}
.filter-carousels-categories .filter-categories {
  padding-right: 4.5rem;
}
.filter-carousels-categories .filter-categories > h3 {
  padding: 0;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.8rem;
  text-transform: capitalize;
  margin-bottom: 2rem;
}
.filter-carousels-categories .events-articles article {
  margin-bottom: 0;
}
.filter-carousels-categories.boxed {
  overflow: hidden;
}
.filter-carousels-categories.boxed .owl-controls .owl-nav .owl-next {
  width: 3.5rem !important;
  right: 0;
}
.filter-carousels-categories.boxed .owl-controls .owl-nav .owl-prev {
  width: 3.5rem;
  left: -3.5rem;
}
.filter-carousels-categories.boxed .filter-carousel {
  width: 100% !important;
}
.filter-categories {
  float: left;
  width: 20%;
  padding-right: 4.5rem;
  padding: 2rem 0 0 0;
}
.filter-categories ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 6rem;
}
.filter-categories ul li a {
  font-weight: 400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #919191;
  line-height: 2.2rem;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  display: block;
}
.filter-categories ul li a:hover,
.filter-categories ul li a.active {
  color: #ff3c00;
}
.filter-categories ul li:last-child {
  position: absolute;
  bottom: 2.5rem;
  left: 0rem;
}
.filter-categories ul li:last-child a {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2rem;
}
.filter-categories ul li:last-child a:hover {
  color: #ff3c00;
}
.carousels-container {
  width: 80%;
  float: left;
}
.filter-carousel {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.filter-carousel ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.filter-carousel.active {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.filter-carousel .owl-controls .owl-nav > div {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4.5rem;
  z-index: 1;
}
.filter-carousel .owl-controls .owl-nav > div i {
  font-size: 3.5rem;
  color: #919191;
}
.filter-carousel .owl-controls .owl-nav .owl-prev {
  left: -4.5rem;
}
.filter-carousel .owl-controls .owl-nav .owl-prev i {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.filter-carousel .owl-controls .owl-nav .owl-next {
  width: calc(50vw - 55.5rem);
  right: 0;
  background: rgba(0, 0, 0, 0.8);
}
.filter-carousel .owl-controls .owl-nav .owl-next i {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  width: 4.5rem;
}
.filter-carousel .owl-controls .owl-nav .owl-next i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.section-padding {
  padding: 3rem 0 3rem 0;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}
.section-padding:after {
  display: table;
  content: '';
  clear: both;
}
.section-padding.fixed {
  background-attachment: fixed;
}
.section-padding.mb {
  margin-bottom: 3rem;
}
.section-padding ul.products {
  margin-bottom: 0;
}
.section-padding.additional-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.section-padding.with-overlay:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.6);
  display: block;
}
.section-padding.with-overlay.vc_parallax:before {
  z-index: 1;
}
.section-padding.inverted-section-text-color {
  color: #1c1c1c;
}
.section-padding.inverted-section-text-color .call-to-action-block blockquote p {
  color: #1c1c1c;
}
.carousel-audio-article {
  min-height: 25.5rem;
  padding: 1.3rem;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 4rem;
}
.carousel-audio-article .article-type {
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #919191;
  font-size: 0.9rem;
  display: block;
  line-height: 0.9rem;
}
.carousel-audio-article .cover-all {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
}
.carousel-audio-article .cover-all i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 3rem;
  margin-top: -1.5rem;
  color: #fff !important;
}
.carousel-audio-article .cover-all:hover {
  color: #fff;
}
.carousel-audio-article header {
  position: absolute;
  bottom: 1.3rem;
  left: 1.3rem;
  right: 1.3rem;
}
.carousel-audio-article header h2 {
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #fff !important;
}
.carousel-audio-article header .author {
  font-size: 1.1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: capitalize;
  display: block;
  line-height: 1.1rem;
  color: #fff !important;
}
.carousel-audio-article:after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 120%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(120%, rgba(0, 0, 0, 0.6)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 120%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 120%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 120%);
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(120%, rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 120%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
  /* IE6-9 */
}
.carousel-audio-article:hover:after {
  top: 0;
}
.owl-carousel .carousel-audio-article {
  margin-bottom: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: block !important;
}
.is-ie-browser .carousel-news-article {
  margin-bottom: -17rem;
}
.is-ie-browser .owl-carousel .carousel-audio-article {
  margin-bottom: -12rem;
}
.is-ie-browser .main-menu > ul > li .megamenu {
  margin-left: 0;
  left: 0;
  top: auto !important;
  padding-top: 0 !important;
  margin-top: -1.4rem !important;
}
.carousel-news-article {
  padding-bottom: 17rem;
  position: relative;
}
.carousel-news-article figure {
  height: 17rem;
  position: relative;
}
.carousel-news-article figure a {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.2);
}
.carousel-news-article .info-article {
  background: #353535;
  position: absolute;
  min-height: 17rem;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  padding-bottom: 5rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.carousel-news-article header time {
  font-size: 1.2rem;
  line-height: 1.2rem;
  display: block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.carousel-news-article header h2 {
  padding: 0.7rem 0;
  line-height: 1.6rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.carousel-news-article header h2 a {
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.carousel-news-article header h2 a:hover {
  color: #fff;
}
.carousel-news-article .article-entries {
  display: none;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.carousel-news-article .article-entries p {
  color: #fff;
  opacity: 0.8;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin-bottom: 0;
}
.carousel-news-article footer {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  top: auto;
}
.carousel-news-article footer a {
  text-transform: uppercase;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  display: inline-block;
  line-height: 1rem;
  font-weight: 300;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.carousel-news-article footer .read-more {
  float: left;
  margin-right: 1rem;
}
.carousel-news-article footer .read-more a {
  padding: 0 0.7rem;
  border-radius: 0.3rem;
  line-height: 2.2rem;
  background: #ff3c00;
}
.carousel-news-article footer .read-more a:hover {
  background: #fff;
}
.carousel-news-article footer .links-group {
  float: left;
}
.carousel-news-article footer .links-group a {
  padding: 0.4rem 0;
}
.carousel-news-article footer .links-group a:after {
  content: '|';
  color: #fff;
  position: relative;
  top: -1px;
}
.carousel-news-article footer .links-group a:hover {
  color: #fff;
  opacity: 0.9;
}
.carousel-news-article footer .links-group a:hover:after {
  color: #fff;
}
.carousel-news-article footer .links-group a:last-child:after {
  display: none;
}
.carousel-news-article:hover .article-entries {
  display: block;
}
.carousel-news-article:hover .info-article {
  background: #ff3c00;
}
.carousel-news-article:hover header h2 a {
  color: #fff !important;
}
.carousel-news-article:hover footer .read-more a {
  background: #fff;
  color: #ff3c00;
}
.search-form-container {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.search-form-container .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
}
.search-form-container.opened {
  display: block;
}
form.main-search {
  position: absolute;
  width: 98rem;
  height: 6.5rem;
  top: 50%;
  left: 50%;
  margin-top: -3.2rem;
  margin-left: -49rem;
  z-index: 1;
  border-radius: 0.4rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0 4rem #353535;
  -moz-box-shadow: 0 0 4rem #353535;
  box-shadow: 0 0 4rem #353535;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
form.main-search input {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  padding: 2.5rem 3rem;
  padding-right: 6.5rem;
  line-height: 1.9rem;
  font-size: 1.4rem;
  color: #000;
  background: #fff;
}
form.main-search input::-webkit-input-placeholder {
  color: #000;
  line-height: 1.8rem;
  font-size: 1.4rem;
}
form.main-search input:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  line-height: 1.8rem;
  font-size: 1.4rem;
}
form.main-search input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  line-height: 1.8rem;
  font-size: 1.4rem;
}
form.main-search input:-ms-input-placeholder {
  color: #000;
  line-height: 1.8rem;
  font-size: 1.4rem;
}
form.main-search button {
  width: 6.5rem;
  height: 6.5rem;
  border: none;
  text-align: center;
  line-height: 6.5rem;
  right: 0;
  top: 0;
  position: absolute;
  z-index: 1;
  padding: 0;
  background: transparent;
  color: #000;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
form.main-search button:after {
  display: none;
}
form.main-search button:hover {
  color: #ff3c00;
  background: transparent !important;
}
.overlay-breadcrumb {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.2;
}
.overlay-for-image-bg {
  position: absolute;
  height: 100% !important;
  z-index: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  opacity: 1;
  background: -moz-linear-gradient(top, #1C1C1C 40%, rgba(0, 0, 0, 0.5) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #1C1C1C), color-stop(100%, rgba(0, 0, 0, 0.5)));
  background: -webkit-linear-gradient(top, #1C1C1C 40%, rgba(0, 0, 0, 0.5) 100%);
  background: -o-linear-gradient(top, #1C1C1C 40%, rgba(0, 0, 0, 0.5) 100%);
  background: -ms-linear-gradient(top, #1C1C1C 40%, rgba(0, 0, 0, 0.5) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #1C1C1C), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, #1C1C1C 40%, rgba(0, 0, 0, 0.5) 100%);
}
.breadcrumb-page {
  background-size: cover;
  background-position: center center;
  position: relative;
  margin-bottom: -7%;
  z-index: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  opacity: 1;
}
.breadcrumb-page:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding-top: 10%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 10%, #1c1c1c 90%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(90%, #1c1c1c));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 10%, #1c1c1c 90%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 10%, #1c1c1c 90%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 10%, #1c1c1c 90%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(0, 0, 0, 0)), color-stop(90%, #1c1c1c));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 10%, #1c1c1c 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1c1c1c', GradientType=0);
}
.breadcrumb-page:before {
  display: none;
}
.breadcrumb-page.fixed-bg {
  background-attachment: fixed;
}
.breadcrumb-page.xs {
  padding-top: 20%;
}
.breadcrumb-page.sm {
  padding-top: 30%;
}
.breadcrumb-page.md {
  padding-top: 35%;
}
.breadcrumb-page.lg {
  padding-top: 40%;
}
.breadcrumb-page + div {
  position: relative;
  z-index: 1;
}
.breadcrumb-page + div.no-negative-mt {
  margin-top: 7%;
}
@supports (overflow:-webkit-marquee) and ((-webkit-box-pack: inherit) or (justify-content: inherit)) {
  .breadcrumb-page:after {
    background: -moz-linear-gradient(top, rgba(28, 28, 28, 0) 10%, #1c1c1c 90%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(28, 28, 28, 0)), color-stop(90%, #1c1c1c));
    background: -webkit-linear-gradient(top, rgba(28, 28, 28, 0) 10%, #1c1c1c 90%);
    background: -o-linear-gradient(top, rgba(28, 28, 28, 0) 10%, #1c1c1c 90%);
    background: -ms-linear-gradient(top, rgba(28, 28, 28, 0) 10%, #1c1c1c 90%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(28, 28, 28, 0)), color-stop(90%, #1c1c1c));
    background: linear-gradient(to bottom, rgba(28, 28, 28, 0) 10%, #1c1c1c 90%);
  }
}
.listing-filter-container {
  margin-bottom: 4rem;
}
.listing-filter-container h3,
.listing-filter-container h1 {
  font-size: 6rem;
  padding: 0;
  display: block;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.listing-filter-container .filtering-articles ul {
  float: left;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
.listing-filter-container .filtering-articles ul li {
  display: inline-block;
  margin-right: 3rem;
}
.listing-filter-container .filtering-articles ul li a {
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: capitalize;
}
.listing-filter-container .filtering-articles ul li a.active {
  color: #ff3c00;
}
.listing-filter-container .filtering-articles ul li:last-child {
  margin-right: 0;
}
.listing-filter-container .filtering-articles .articles-info {
  float: right;
}
.listing-filter-container .filtering-articles .articles-info > div,
.listing-filter-container .filtering-articles .articles-info > a {
  display: inline-block;
  font-size: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 2.2rem;
  color: #a9a9a9;
  margin-left: 1.2rem;
}
.listing-filter-container .filtering-articles .articles-info > div i,
.listing-filter-container .filtering-articles .articles-info > a i {
  margin-right: 0.3rem;
}
.listing-filter-container .filtering-articles .articles-info > div:first-child,
.listing-filter-container .filtering-articles .articles-info > a:first-child {
  margin-left: 0;
}
.listing-filter-container .filtering-articles .articles-info > a {
  color: #fff;
}
.main-footer {
  padding-top: 6rem;
  background-color: #101010;
  position: relative;
  left: 0;
}
.main-footer .copyright {
  text-align: center;
  padding: 2rem;
}
.main-footer .copyright p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #919191;
  font-size: 1.3rem;
  line-height: 1.7rem;
  bottom: 0;
}
.main-footer .copyright p a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.main-footer.footer-content-dark a,
.main-footer.footer-content-dark .widget.widget_nav_menu ul li a {
  color: #1c1c1c;
}
.main-footer.footer-content-dark a:hover,
.main-footer.footer-content-dark .widget.widget_nav_menu ul li a:hover {
  opacity: 0.6;
}
.main-footer.footer-content-dark .textwidget a:hover {
  opacity: 1;
}
.main-footer.footer-content-dark .widget > h3,
.main-footer.footer-content-dark .widget > h2,
.main-footer.footer-content-dark .widget .title-widget,
.main-footer.footer-content-dark .widget.widget_follow_media ul li a {
  color: #1c1c1c;
}
.main-footer.footer-content-dark .widget ul li a:hover {
  color: #000;
}
.main-footer.footer-content-dark .widget.widget_follow_media ul li a:hover i {
  background: rgba(0, 0, 0, 0.05);
}
.main-footer.footer-content-dark .widget.widget_follow_media ul li a i {
  color: #231f20;
}
.main-footer.footer-content-dark .widget .newsletter-container button i {
  color: #1c1c1c;
}
.main-footer.footer-content-dark .widget.widget-events article header figure time,
.main-footer.footer-content-dark .widget.widget-events-with-timer article header figure time {
  color: #fff;
}
.main-footer.footer-content-dark .widget.widget-events-with-timer article footer > div span {
  color: #888888;
  opacity: 1;
}
.main-footer.footer-content-dark .widget.widget-events-with-timer article footer > div span.time-item {
  color: #1c1c1c;
}
.main-footer.footer-content-dark .widget > h3,
.main-footer.footer-content-dark .widget > h2,
.main-footer.footer-content-dark .widget .title-widget {
  color: #1c1c1c;
}
.main-footer.footer-content-dark .widget-blog-article a {
  color: #fff;
}
.main-footer.footer-content-dark .widget.widget-events .view-calendar {
  color: #1c1c1c;
  background: #eeeeee;
}
.main-footer.footer-content-dark .widget.widget-events .view-calendar:hover {
  color: #eee;
  background: #1c1c1c;
}
.main-footer.footer-content-dark .widget.widget-latest-news article {
  background-color: #eee;
}
.main-footer.footer-content-dark .widget.widget-latest-news article:hover {
  background: #e3e3e3;
}
.main-footer.footer-content-dark .widget.widget-latest-news article header time a,
.main-footer.footer-content-dark .widget.widget-latest-news article header h3 a,
.main-footer.footer-content-dark .widget.widget-latest-news article footer a:not(.read-more) {
  color: #1c1c1c;
}
.main-footer.footer-content-dark .widget.widget-latest-news article footer a.read-more:after {
  opacity: 0.6;
}
.main-footer.footer-content-dark .widget.widget-posts-navigation,
.main-footer.footer-content-dark .widget.filled {
  background: rgba(181, 181, 181, 0.1);
}
.main-footer.footer-content-dark .widget.widget-twitter {
  color: #1c1c1c;
  background: #eee;
}
.main-footer.footer-content-dark .widget.widget-twitter a {
  color: #1c1c1c;
}
.main-footer.footer-content-dark .widget.widget-twitter .twitter-entries p {
  color: #1c1c1c;
}
.main-footer.footer-content-dark .widget.widget-twitter .twitter-entries:after {
  color: #adadad;
}
.main-footer.footer-content-dark .widget.widget_calendar table,
.main-footer.footer-content-dark .widget.widget_calendar caption {
  background: #eee;
}
.main-footer.footer-content-dark .widget.widget_calendar caption,
.main-footer.footer-content-dark .widget.widget_calendar table tbody td {
  color: #353535;
}
.main-footer.footer-content-dark .widget.widget_calendar table thead tr th {
  color: #8c8c8c;
}
.main-footer.footer-content-dark .widget.widget_calendar table tfoot td#next a:before,
.main-footer.footer-content-dark .widget.widget_calendar table tfoot td#prev a:before {
  color: #9d9d9d;
}
.main-footer.footer-content-dark .widget.widget_calendar table thead tr {
  background: #e3e3e3;
}
.main-footer.footer-content-dark .widget .tagcloud a,
.main-footer.footer-content-dark .widget.woocommerce .product-categories a {
  background: #ddd;
}
.main-footer.footer-content-dark .widget .tagcloud a:hover,
.main-footer.footer-content-dark .widget.woocommerce .product-categories a:hover {
  color: #ddd;
  background-color: #999;
}
.main-footer.footer-content-light .form-control,
.main-footer.footer-content-light select,
.main-footer.footer-content-light input[type=text],
.main-footer.footer-content-light input[type=number],
.main-footer.footer-content-light input[type=tel],
.main-footer.footer-content-light input[type=search],
.main-footer.footer-content-light input[type=email],
.main-footer.footer-content-light input[type=password],
.main-footer.footer-content-light textarea,
.main-footer.footer-content-light .post-password-form input[type=password],
.main-footer.footer-content-light .cart-collaterals .input-text,
.main-footer.footer-content-light .create-account .input-text,
.main-footer.footer-content-light .login .input-text {
  background: rgba(0, 0, 0, 0.1);
  color: #919191;
}
.main-footer.footer-content-light a,
.main-footer.footer-content-light .widget.widget_nav_menu ul li a {
  color: #fff;
}
.main-footer.footer-content-light a:hover,
.main-footer.footer-content-light .widget.widget_nav_menu ul li a:hover {
  opacity: 0.6;
}
.main-footer.footer-content-light .textwidget a:hover {
  opacity: 1;
}
.main-footer.footer-content-light .widget > h3,
.main-footer.footer-content-light .widget > h2,
.main-footer.footer-content-light .widget .title-widget,
.main-footer.footer-content-light .widget.widget_follow_media ul li a {
  color: #fff;
}
.main-footer.footer-content-light .widget ul li a:hover {
  color: #fff;
}
.main-footer.footer-content-light .widget.widget_follow_media ul li a:hover i {
  background-color: rgba(255, 255, 255, 0.05);
}
.main-footer.footer-content-light .widget.widget_follow_media ul li a i {
  color: #fff;
}
.main-footer.footer-content-light .widget .newsletter-container button i {
  color: #fff;
}
.main-footer.footer-content-light .widget.widget-events article header figure time,
.main-footer.footer-content-light .widget.widget-events-with-timer article header figure time {
  color: #fff;
}
.main-footer.footer-content-light .widget.widget-events-with-timer article footer > div span {
  color: #fff;
  opacity: 1;
}
.main-footer.footer-content-light .widget.widget-events-with-timer article footer > div span.time-item {
  color: #fff;
}
.main-footer.footer-content-light .widget > h3,
.main-footer.footer-content-light .widget > h2,
.main-footer.footer-content-light .widget .title-widget {
  color: #fff;
}
.main-footer.footer-content-light .widget-blog-article a {
  color: #fff;
}
.main-footer.footer-content-light .widget.widget-events .view-calendar {
  color: #d3d3d3;
  background: #222222;
}
.main-footer.footer-content-light .widget.widget-events .view-calendar:hover {
  color: #fff;
  background: #ff3c00;
}
.main-footer.footer-content-light .widget.widget-latest-news article {
  background-color: #1c1c1c;
}
.main-footer.footer-content-light .widget.widget-latest-news article:hover {
  background: #202020;
}
.main-footer.footer-content-light .widget.widget-latest-news article header time a,
.main-footer.footer-content-light .widget.widget-latest-news article header h3 a,
.main-footer.footer-content-light .widget.widget-latest-news article footer a:not(.read-more) {
  color: #fff;
}
.main-footer.footer-content-light .widget.widget-latest-news article footer a.read-more:after {
  opacity: 0.6;
}
.main-footer.footer-content-light .widget.widget-posts-navigation,
.main-footer.footer-content-light .widget.filled {
  background: rgba(0, 0, 0, 0.3);
}
.main-footer.footer-content-light .widget.widget-twitter {
  color: #fff;
  background: #222222;
}
.main-footer.footer-content-light .widget.widget-twitter a {
  color: #fff;
}
.main-footer.footer-content-light .widget.widget-twitter .twitter-entries p {
  color: #fff;
}
.main-footer.footer-content-light .widget.widget-twitter .twitter-entries:after {
  color: #fff;
}
.main-footer.footer-content-light .widget.widget_calendar table,
.main-footer.footer-content-light .widget.widget_calendar caption {
  background: #222222;
}
.main-footer.footer-content-light .widget.widget_calendar caption,
.main-footer.footer-content-light .widget.widget_calendar table tbody td {
  color: #fff;
}
.main-footer.footer-content-light .widget.widget_calendar table thead tr th {
  color: #929292;
}
.main-footer.footer-content-light .widget.widget_calendar table tfoot td#next a:before,
.main-footer.footer-content-light .widget.widget_calendar table tfoot td#prev a:before {
  color: #fff;
}
.main-footer.footer-content-light .widget.widget_calendar table thead tr {
  background: #353535;
}
.main-footer.footer-content-light .widget .tagcloud a,
.main-footer.footer-content-light .widget.woocommerce .product-categories a {
  background: #999;
}
.main-footer.footer-content-light .widget .tagcloud a:hover,
.main-footer.footer-content-light .widget.woocommerce .product-categories a:hover {
  color: #353535;
  background-color: #999;
}
.masonry-listing {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.events-articles article {
  background-size: cover;
  background-position: center center;
  z-index: 1;
  position: relative;
  padding: 1.7rem;
  margin-bottom: 3rem;
  background-color: #fff;
}
.events-articles article > time {
  display: inline-block;
}
.events-articles article > time span {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  display: block;
  width: 100%;
  text-align: left;
}
.events-articles article > time span.week-day,
.events-articles article > time span.month,
.events-articles article > time span.hour {
  font-size: 1.4rem;
  line-height: 1.9rem;
  font-weight: 400;
}
.events-articles article > time span.number-day {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.9rem;
  margin-bottom: 0.4rem;
}
.events-articles article > p {
  line-height: 1.2rem;
  font-size: 1.2rem;
  color: #919191;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.events-articles article > p a {
  color: #fff;
}
.events-articles article > p a:hover {
  opacity: 0.8;
}
.events-articles article header figure {
  padding-left: 4rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.events-articles article header figure > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
}
.events-articles article header figure > a img {
  width: 100%;
}
.events-articles article header figure figcaption a {
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding-top: 0.3rem;
  display: block;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.events-articles article header figure figcaption a:last-of-type {
  color: #919191;
}
.events-articles article header figure figcaption a:hover {
  border-collapse: 0.8;
}
.events-articles article header h2 {
  padding: 0;
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.events-articles article header h2 a:hover {
  color: #fff;
}
.events-articles article .article-entries p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.events-articles article footer .read-more {
  position: relative;
  border-radius: 0.3rem;
  font-size: 1rem;
  line-height: 1rem;
  float: left;
  text-transform: uppercase;
  z-index: 0;
  padding: 0.8rem 1.7rem;
  overflow: hidden;
}
.events-articles article footer .read-more:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
  top: 0;
  background: #ff3c00;
  opacity: 0.2;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.events-articles article footer .read-more:hover {
  color: #fff;
  opacity: 1;
}
.events-articles article footer .share-comment-group {
  float: left;
}
.events-articles article footer .share-comment-group a {
  font-size: 1rem;
  line-height: 1rem;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  padding: 0 1.2rem;
  margin: 0.8rem 0;
}
.events-articles article footer .share-comment-group a:hover {
  opacity: 1;
}
.events-articles article footer .share-comment-group a i {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}
.events-articles article:after {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #1c1c1c;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.events-articles article:hover > p {
  color: #fff;
}
.events-articles article:hover header figure figcaption a:last-of-type {
  color: #fff;
}
.events-articles article:hover header h2 {
  text-decoration: underline;
}
.events-articles article:hover .article-entries p {
  color: #fff;
}
.events-articles article:hover footer .read-more {
  color: #ff3c00;
}
.events-articles article:hover footer .read-more:after {
  background: #fff;
  opacity: 0.8;
}
.events-articles article:hover:after {
  background: #ff3c00;
}
.events-articles .sold-out article,
.events-articles .canceled article {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.events-articles .sold-out article footer .share-comment-group,
.events-articles .canceled article footer .share-comment-group {
  position: relative;
  top: -0.1rem;
  z-index: 0;
}
.events-articles .sold-out article footer .share-comment-group a,
.events-articles .canceled article footer .share-comment-group a {
  opacity: 0.5;
}
.events-articles .sold-out article footer .share-comment-group:after,
.events-articles .canceled article footer .share-comment-group:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}
.events-articles .sold-out article:hover,
.events-articles .canceled article:hover {
  opacity: 0.9;
}
.events-articles .sold-out article:hover footer .share-comment-group a,
.events-articles .canceled article:hover footer .share-comment-group a {
  opacity: 1;
}
.events-articles .sold-out article:hover header h2,
.events-articles .canceled article:hover header h2 {
  text-decoration: line-through;
}
.artists-articles article {
  margin-bottom: 2rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.artists-articles article figure img {
  width: 100%;
}
.artists-articles article h2 {
  line-height: 1.8rem;
  text-align: center;
  padding: 0;
}
.artists-articles article h2 a {
  padding: 1.5rem 0;
  font-size: 1.8rem;
  display: block;
}
.artists-articles article h2 a:hover {
  color: #fff;
}
.artists-articles article:hover {
  opacity: 1;
}
.filtering-articles-centred ul {
  width: 100%;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
  text-align: center;
  padding: 2.5rem 0;
}
.filtering-articles-centred ul li {
  display: inline-block;
  margin-right: 3rem;
}
.filtering-articles-centred ul li a {
  font-size: 1.4rem;
  padding: 1rem 0;
  display: block;
  font-weight: 400;
  cursor: pointer;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: capitalize;
}
.filtering-articles-centred ul li a.active {
  color: #ff3c00;
}
.filtering-articles-centred ul li:last-child {
  margin-right: 0;
}
.albums-listing article {
  position: relative;
  z-index: 0;
  margin-bottom: 6rem;
}
.albums-listing article .cover-image {
  position: relative;
}
.albums-listing article .cover-all {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
}
.albums-listing article .cover-all:after {
  content: '';
  background: #ff3c00;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}
.albums-listing article .cover-all span {
  text-transform: uppercase;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2rem;
  letter-spacing: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.albums-listing article img {
  width: 100%;
}
.albums-listing article h2 {
  font-size: 2.2rem;
  padding: 0;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}
.albums-listing article h2 a:hover {
  opacity: 1;
  color: #fff;
}
.albums-listing article p {
  font-size: 1.2rem;
  color: #8b8b8c;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.2rem;
  display: block;
  margin-bottom: 0;
  padding-bottom: 0.2rem;
}
.albums-listing article:hover .cover-all {
  opacity: 1;
}
.albums-listing article:hover h2 {
  text-decoration: underline;
}
.rating {
  display: inline-block;
  margin-top: 0.4rem;
  width: 6rem;
  position: relative;
  font-size: 1.2rem;
  top: 0.2rem;
}
.rating i {
  float: left;
}
.rating .full {
  position: absolute;
  overflow: hidden;
  height: 1.2rem;
  color: #e4ac00;
}
.rating .empty {
  position: relative;
  width: 100%;
  color: #e4ac00;
}
.rate-album {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.rate-album .top p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8rem;
}
.rate-album .top .pull-right p {
  float: left;
}
.rate-album .top .pull-right .rating-input {
  float: left;
  margin-left: 1rem;
}
.rate-album .top .pull-right .rating-input i {
  font-size: 1.7rem;
  color: #e4ac00;
}
.rate-album .top .pull-right .rating-input .rating-clear {
  display: none;
}
.rate-album .fields input,
.rate-album .fields textarea {
  padding: 2rem 3rem;
  margin-bottom: 1.2rem;
}
.rate-album .fields textarea {
  min-height: 11.5rem;
  max-width: 100%;
}
.rate-album .bottom input {
  padding-left: 4rem;
  padding-right: 4rem;
}
.rate-album .bottom p {
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.2rem;
  padding: 1.5rem 0;
}
.rate-album .bottom p a {
  text-decoration: underline;
}
.photos-single-article {
  margin-top: 5rem;
}
.photos-single-article header {
  margin-bottom: 1.4rem;
  position: relative;
}
.photos-single-article header > * {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}
.photos-single-article header time {
  margin-top: 4.5rem;
  font-size: 1.2rem;
  display: block;
  line-height: 1.2rem;
  font-weight: 400;
  padding-left: 1.5rem;
}
.photos-single-article header h1 {
  padding: 1.5rem 0;
  font-size: 4.8rem;
  padding-left: 1.5rem;
}
.photos-single-article header p {
  font-size: 1.2rem;
  display: block;
  line-height: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding-left: 1.5rem;
}
.photos-single-article header .arrow {
  width: 8rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: -6.5rem;
  margin-top: -2.1rem;
  margin-left: -1.1rem;
  z-index: 1;
}
.photos-single-article header .arrow:after,
.photos-single-article header .arrow:before {
  content: '';
  height: 3.1rem;
  width: 0.2rem;
  background: #909090;
  right: 5rem;
  position: absolute;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.photos-single-article header .arrow:before {
  transform-origin: 1px 100%;
  -ms-transform-origin: 1px 100%;
  -webkit-transform-origin: 1px 100%;
  bottom: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.photos-single-article header .arrow:after {
  top: 50%;
  transform-origin: 1px 0%;
  -ms-transform-origin: 1px 0%;
  -webkit-transform-origin: 1px 0%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.photos-single-article header .arrow:hover:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.photos-single-article header .arrow:hover:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.photos-single-article .album-content > * {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  margin-bottom: 1.4rem;
}
.photos-single-article .album-content img {
  width: 100%;
}
.photos-single-article .album-content a {
  display: block;
}
.photos-single-article .next-photos-album a {
  position: relative;
}
.photos-single-article .next-photos-album a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #222222;
  opacity: 0.8;
}
.photos-single-article .next-photos-album a .arrow {
  width: 2.2rem;
  height: 4.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -2.1rem;
  margin-left: -1.1rem;
  z-index: 1;
}
.photos-single-article .next-photos-album a .arrow:after,
.photos-single-article .next-photos-album a .arrow:before {
  content: '';
  height: 3.1rem;
  width: 0.2rem;
  background: #909090;
  right: 0;
  position: absolute;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.photos-single-article .next-photos-album a .arrow:before {
  transform-origin: 1px 100%;
  -ms-transform-origin: 1px 100%;
  -webkit-transform-origin: 1px 100%;
  bottom: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.photos-single-article .next-photos-album a .arrow:after {
  top: 50%;
  transform-origin: 1px 0%;
  -ms-transform-origin: 1px 0%;
  -webkit-transform-origin: 1px 0%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.photos-single-article .next-photos-album a:hover .arrow:before {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.photos-single-article .next-photos-album a:hover .arrow:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.photo-albums-listing > div {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}
.photo-albums-listing article {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  min-height: 51.4rem;
  margin-bottom: 1.4rem;
}
.photo-albums-listing article .photo-album-thumbnail {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center center;
}
.photo-albums-listing article .photo-album-thumbnail:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #222;
  opacity: 0.5;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.photo-albums-listing article .cover-all {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.photo-albums-listing article h2 {
  padding: 2rem 0 1.5rem 0;
  font-size: 4.8rem;
  line-height: 4.8rem;
  font-weight: 400;
  width: 50%;
}
.photo-albums-listing article time {
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
  display: block;
}
.photo-albums-listing article p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.2rem;
  display: block;
  color: #fff;
  opacity: 0.5;
}
.photo-albums-listing article.md h2,
.photo-albums-listing article.sm h2,
.photo-albums-listing article.xs h2 {
  font-size: 2.4rem;
  line-height: 2.4rem;
  width: 100%;
}
.photo-albums-listing article.sm {
  min-height: 33.8rem;
}
.photo-albums-listing article.xs {
  min-height: 16.2rem;
}
.photo-albums-listing article:hover .photo-album-thumbnail:after {
  opacity: 0.8;
  background: #ff3c00;
}
.main-big-calendar .big-calendar-head {
  text-align: center;
  position: relative;
}
.main-big-calendar .big-calendar-head .big-calendar-add-event-button {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 1;
}
.main-big-calendar .big-calendar-head .big-calendar-add-event-button a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 5.4rem;
  color: #ff3c00;
}
.main-big-calendar .big-calendar-head .big-calendar-add-event-button a span {
  margin-right: 0.6rem;
  font-size: 1.2rem;
  position: relative;
}
.main-big-calendar .big-calendar-head .big-calendar-add-event-button a:hover {
  opacity: 0.8;
}
.main-big-calendar .big-calendar-head .centred-head-container {
  display: inline-block;
  padding: 1.4rem 0;
  position: relative;
  min-width: 20rem;
}
.main-big-calendar .big-calendar-head .centred-head-container .actual-showed-date span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
}
.main-big-calendar .big-calendar-head .centred-head-container .actual-showed-date .month {
  font-weight: 800;
}
.main-big-calendar .big-calendar-head .centred-head-container > a {
  position: absolute;
  display: block;
  line-height: 5.4rem;
  top: 0;
  z-index: 1;
  cursor: pointer;
}
.main-big-calendar .big-calendar-head .centred-head-container > a span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  opacity: 0.5;
  padding: 0 1.5rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-big-calendar .big-calendar-head .centred-head-container > a:hover {
  color: #fff;
}
.main-big-calendar .big-calendar-head .centred-head-container > a:hover span {
  opacity: 1;
}
.main-big-calendar .big-calendar-head .centred-head-container > a.next {
  right: -30rem;
}
.main-big-calendar .big-calendar-head .centred-head-container > a.prev {
  left: -30rem;
}
.main-big-calendar .big-calendar-head .centred-head-container > a.disabled {
  display: none;
}
.main-big-calendar .big-calendar-body .actual-showed-date {
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-80%);
  -moz-transform: translateY(-80%);
  -o-transform: translateY(-80%);
  -ms-transform: translateY(-80%);
  transform: translateY(-80%);
}
.main-big-calendar .big-calendar-body .actual-showed-date span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  text-transform: capitalize;
}
.main-big-calendar .big-calendar-body .actual-showed-date .month {
  font-weight: 800;
}
.main-big-calendar .big-calendar-body .calendar-main-items {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: none;
  min-height: 65rem;
}
.main-big-calendar .big-calendar-body .calendar-main-items.active {
  display: block;
}
.main-big-calendar .big-calendar-body .calendar-main-items li {
  width: 20%;
  padding-right: 1px;
  margin-bottom: 1px;
  float: left;
}
.main-big-calendar .big-calendar-body .calendar-main-items li .item-container {
  height: 22.7rem;
  padding: 1rem 1.5rem;
  padding-bottom: 0;
  background: #060606;
}
.main-big-calendar .big-calendar-body .calendar-main-items li.have-events .item-container {
  background: #060606;
}
.main-big-calendar .big-calendar-body .calendar-main-items li.have-events .item-head .item-action .events-num span {
  color: #ff3c00;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-date {
  display: block;
  text-align: left;
  margin-bottom: -0.3rem;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-date time {
  display: inline-block;
  text-align: left;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-date time span {
  text-align: left;
  font-weight: 400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
  display: block;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-date time span.num {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-date time span.month {
  line-height: 3.7rem;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-action {
  display: block;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-action span,
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-action a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  display: inline-block;
  line-height: 1rem;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-action .events-num {
  float: left;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-action .events-num a:before {
  content: '|';
  position: relative;
  top: -1px;
  margin: 0 1px;
  color: #fff;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-action .events-num a:hover:before {
  color: #fff;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-action .add-event-button-item {
  float: right;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-action .add-event-button-item span {
  margin-right: 0.3rem;
  color: #ff3c00;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body {
  height: calc(22.7rem - 7.2rem);
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  margin-top: 0.4rem;
  overflow: hidden;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article {
  padding: 1rem 1.5rem;
  padding-bottom: 4.2rem;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article .cover-all {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article:before {
  content: '';
  background: #000;
  opacity: 0.5;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article:first-child {
  min-height: calc(22.7rem - 7.2rem);
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article:first-child:not(:last-child) {
  min-height: auto;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article time span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.6rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article time i {
  line-height: 1.6rem;
  font-size: 1.3rem;
  margin-right: 0.5rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article h2 {
  padding: 0;
  padding-bottom: 0.4rem;
  padding-top: 0.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6rem;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article h2 a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.4rem;
  margin-bottom: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  left: 1.5rem;
  top: auto;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn {
  float: left;
  font-size: 1.2rem;
  background: #ff3c00;
  border-radius: 0.3rem;
  text-align: center;
  line-height: 2.2rem;
  padding: 0.4rem 0.3rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 0.7rem;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn:hover {
  background: #fff;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .links-group {
  float: left;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .links-group a {
  line-height: 1.3rem;
  display: inline-block;
  font-size: 1.1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 0.4rem 0;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .links-group a:after {
  content: '|';
  color: #fff;
  position: relative;
  top: -1px;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .links-group a:hover:after {
  color: #fff;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .links-group a:last-child:after {
  display: none;
}
.main-big-calendar .big-calendar-body .calendar-main-items .item-body article:hover:before {
  background: #ff3c00;
}
body .main-big-calendar.main-big-calendar-content-dark,
.light-layout .main-big-calendar.main-big-calendar-content-dark {
  color: #1c1c1c;
}
body .main-big-calendar.main-big-calendar-content-dark a,
.light-layout .main-big-calendar.main-big-calendar-content-dark a {
  color: #1c1c1c;
}
body .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items li .item-container,
.light-layout .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items li .item-container {
  background: #fafafa;
}
body .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items .item-body article:before,
.light-layout .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items .item-body article:before {
  background: #fff;
  opacity: 0.8;
}
body .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn,
.light-layout .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn {
  color: #fff;
}
body .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn:hover,
.light-layout .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn:hover {
  color: #ff3c00;
}
body .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items li.have-events .item-container,
.light-layout .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items li.have-events .item-container {
  background: #f7f7f7;
}
body .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items .item-head .item-action .events-num a:before,
.light-layout .main-big-calendar.main-big-calendar-content-dark .big-calendar-body .calendar-main-items .item-head .item-action .events-num a:before {
  color: #1c1c1c;
}
body .main-big-calendar.main-big-calendar-content-light,
.light-layout .main-big-calendar.main-big-calendar-content-light {
  color: #fff;
}
body .main-big-calendar.main-big-calendar-content-light a,
.light-layout .main-big-calendar.main-big-calendar-content-light a {
  color: #fff;
}
body .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items li .item-container,
.light-layout .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items li .item-container {
  background: #060606;
}
body .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items .item-body article:before,
.light-layout .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items .item-body article:before {
  background: #000;
  opacity: 0.5;
}
body .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn,
.light-layout .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn {
  color: #fff;
}
body .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn:hover,
.light-layout .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn:hover {
  color: #ff3c00;
}
body .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items li.have-events .item-container,
.light-layout .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items li.have-events .item-container {
  background: #060606;
}
body .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items .item-head .item-action .events-num a:before,
.light-layout .main-big-calendar.main-big-calendar-content-light .big-calendar-body .calendar-main-items .item-head .item-action .events-num a:before {
  color: #fff;
}
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5rem;
  background: #1f1f20;
  z-index: 6;
  display: none;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.mobile-header .mobile-header-trigger {
  text-align: center;
  cursor: pointer;
  padding: 1.45rem 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.mobile-header .mobile-header-trigger i:not(.icon) {
  font-size: 1.5rem;
}
.mobile-header .mobile-header-trigger i.icon {
  display: block;
  width: 100%;
  margin-left: 0;
}
.mobile-header .mobile-header-trigger.active {
  background: #ff3c00;
}
.mobile-header .mobile-header-trigger.active i:before,
.mobile-header .mobile-header-trigger.active .icon:before {
  content: '\f00d';
  display: inline-block;
  font-family: FontAwesome !important;
  font-size: 1.5rem !important;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mobile-header .mobile-header-trigger.active .icon:before {
  position: relative;
  top: -0.7rem;
}
.mobile-header .mobile-header-trigger:hover {
  opacity: 0.8;
}
body:not(.mobile-header-item-opened) .mobile-header .mobile-header-trigger.menu-trigger {
  background: #ff3c00;
}
.mobile-header-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 7;
  background-color: transparent;
  display: none;
  cursor: pointer;
}
.search-is-opened .mobile-header-overlay {
  display: none !important;
  background: rgba(0, 0, 0, 0.5);
}
.search-is-opened .main-header-container .main-header {
  z-index: 1;
}
.albums-container {
  position: fixed;
  top: 0;
  bottom: 0;
  background: #0d0d0d;
  z-index: 7;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.albums-container .albums-thumbnail-container {
  width: 31.5rem;
  padding: 10rem 3rem 0 3rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.albums-container .album-content-container-tabs {
  position: absolute;
  left: 14rem;
  top: 0;
  bottom: 0;
  width: 66.5rem;
  padding: 0 3rem;
}
.albums-container .album-content-container-tabs:before {
  content: '';
  height: 10rem;
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  left: -14rem;
  background: rgba(0, 0, 0, 0.8);
  background: -moz-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(13, 13, 13, 0.8)), color-stop(100%, rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -ms-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 13, 13, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
}
.albums-container .album-content-container-tabs:after {
  content: '';
  height: 10rem;
  position: absolute;
  z-index: 8;
  bottom: 0;
  right: 0;
  left: -14rem;
  background: rgba(0, 0, 0, 0.8);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(13, 13, 13, 0.8)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(13, 13, 13, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
}
.albums-container .album-content-container-tabs .tab-albums {
  display: none;
  padding-bottom: 10rem;
}
.albums-container .album-content-container-tabs .tab-albums.active {
  display: block;
}
.albums-container .album-content-container-tabs .overview-container {
  padding: 2.5rem;
  background: #222;
}
.albums-container .album-content-container-tabs .overview-container h2 {
  font-weight: 700;
  font-size: 3rem;
  padding: 0;
  padding-bottom: 1.5rem;
}
.albums-container .album-content-container-tabs .overview-container p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.albums-container .album-content-container-tabs .album-tab {
  padding-bottom: 0;
  padding-top: 10rem;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 3rem;
  left: 3rem;
  display: none;
}
.albums-container .album-content-container-tabs .album-tab.active {
  display: block;
}
.albums-container .album-content-container-tabs article {
  position: relative;
  width: 100%;
  padding-left: 27rem;
  min-height: 25.5rem;
}
.albums-container .album-content-container-tabs article figure > a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 25.5rem;
}
.albums-container .album-content-container-tabs article figure figcaption .title-album {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}
.albums-container .album-content-container-tabs article figure figcaption .title-album p {
  margin-bottom: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
  display: block;
}
.albums-container .album-content-container-tabs article figure figcaption .title-album h2 {
  padding: 0.5rem 0;
}
.albums-container .album-content-container-tabs article figure figcaption .title-album h2 a {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.8rem;
  display: block;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons {
  position: absolute;
  right: 1.5rem;
  left: 27rem;
  bottom: 1rem;
  z-index: 1;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons:before,
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons:after {
  content: " ";
  display: table;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons:after {
  clear: both;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons:before,
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons:after {
  content: " ";
  display: table;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons:after {
  clear: both;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a {
  margin-right: 1rem;
  float: left;
  cursor: pointer;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a:last-child {
  margin-right: 0;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.play-all-album {
  padding: 0.6rem 0;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button {
  float: left;
  display: block;
  border-radius: 0.3rem;
  padding: 0 0.5rem;
  position: relative;
  top: 0.6rem;
  line-height: 2.2rem;
  background: #d3d3d3;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button i {
  color: #1f2020;
  font-size: 1.2rem;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button .icon {
  font-size: 2rem;
  width: 1.9rem;
  padding: 0.4rem 0;
  height: 2.3rem;
  line-height: 2.3rem;
  margin-left: 0;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button span {
  font-size: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #1f2020;
  font-weight: 600;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button:hover {
  background: #fff;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button.base-color {
  background-color: #ff3c00;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button.base-color i {
  color: #fff;
  position: relative;
  left: -1px;
  top: -1px;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button.base-color .icon {
  color: #fff;
}
.albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button.base-color:hover {
  opacity: 0.6;
}
.albums-container .album-content-container-tabs .trak-item {
  margin-bottom: 0;
}
.albums-container .album-content-container-tabs .playlist-trak-define {
  width: 100%;
  position: relative;
  background: #222;
  padding: 1.5rem 0;
}
.albums-container .album-content-container-tabs .playlist-trak-define:before,
.albums-container .album-content-container-tabs .playlist-trak-define:after {
  content: " ";
  display: table;
}
.albums-container .album-content-container-tabs .playlist-trak-define:after {
  clear: both;
}
.albums-container .album-content-container-tabs .playlist-trak-define:before,
.albums-container .album-content-container-tabs .playlist-trak-define:after {
  content: " ";
  display: table;
}
.albums-container .album-content-container-tabs .playlist-trak-define:after {
  clear: both;
}
.albums-container .album-content-container-tabs .playlist-trak-define div {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4rem;
  float: left;
  text-transform: capitalize;
}
.albums-container .album-content-container-tabs .playlist-trak-define div.play-txt {
  width: 7rem;
  padding-left: 2rem;
}
.albums-container .album-content-container-tabs .playlist-trak-define div.title-txt {
  width: 22rem;
}
.albums-container .album-content-container-tabs .playlist-trak-define div.album-txt {
  width: 12rem;
}
.albums-container .album-content-container-tabs .playlist-trak-define div.time-txt {
  width: 7rem;
  padding-right: 2rem;
  text-align: right;
}
.albums-container .album-content-container-tabs .playlist-trak-define div.buy-txt {
  width: 12.5rem;
  text-align: left;
}
.albums-container .album-content-container-tabs .nav {
  border: none;
}
.albums-container .album-content-container-tabs .nav:before,
.albums-container .album-content-container-tabs .nav:after {
  content: " ";
  display: table;
}
.albums-container .album-content-container-tabs .nav:after {
  clear: both;
}
.albums-container .album-content-container-tabs .nav:before,
.albums-container .album-content-container-tabs .nav:after {
  content: " ";
  display: table;
}
.albums-container .album-content-container-tabs .nav:after {
  clear: both;
}
.albums-container .album-content-container-tabs .nav li {
  float: left;
}
.albums-container .album-content-container-tabs .nav li a {
  border: none;
  background: transparent;
  color: #fff;
  margin: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.4rem;
  padding: 2.5rem 2rem;
}
.albums-container .album-content-container-tabs .nav li.active a {
  background: #222;
}
.albums-container .container-thumbnails {
  width: 31.5rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.albums-container .container-thumbnails:before {
  content: '';
  height: 10rem;
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  background: -moz-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(13, 13, 13, 0.8)), color-stop(100%, rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -ms-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 13, 13, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
}
.albums-container .container-thumbnails:after {
  content: '';
  height: 10rem;
  position: absolute;
  z-index: 8;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(13, 13, 13, 0.8)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(13, 13, 13, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
}
.albums-container .album-thumbnail {
  cursor: pointer;
  position: relative;
  min-height: 25.5rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 3rem;
}
.albums-container .album-thumbnail:last-child {
  margin-bottom: 11rem;
}
.albums-container .album-thumbnail .bottom-info {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.albums-container .album-thumbnail .bottom-info p {
  margin-bottom: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  display: block;
  line-height: 1.4rem;
  margin-bottom: 0.4rem;
}
.albums-container .album-thumbnail .bottom-info span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  display: block;
  line-height: 1.2rem;
  color: #f5f5f5;
}
.albums-container .album-thumbnail .overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 40%;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #1c1c1c 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #1c1c1c));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #1c1c1c 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #1c1c1c 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #1c1c1c 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#1c1c1c));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #1c1c1c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1c1c1c', GradientType=0);
}
.albums-container .album-thumbnail .album-cover-content {
  min-height: 25.5rem;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  padding-bottom: 4rem;
  opacity: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.albums-container .album-thumbnail .album-cover-content:after {
  content: '';
  opacity: 0.8;
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  background: #ff3c00;
}
.albums-container .album-thumbnail .album-cover-content header {
  position: relative;
  z-index: 1;
}
.albums-container .album-thumbnail .album-cover-content header p {
  margin-bottom: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
  display: block;
}
.albums-container .album-thumbnail .album-cover-content header h2 {
  padding: 0.5rem 0;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.8rem;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1rem;
  z-index: 1;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons a {
  margin-right: 1rem;
  float: left;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons a:last-child {
  margin-right: 0;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons a.play-all-album {
  padding: 0.6rem 0;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons a.buy-button {
  display: block;
  float: left;
  border-radius: 0.3rem;
  padding: 0 0.8rem;
  line-height: 2.2rem;
  background: #d3d3d3;
  position: relative;
  top: 0.6rem;
  padding: 0 0.5rem;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons a.buy-button .icon {
  font-size: 2rem;
  width: 1.9rem;
  padding: 0.4rem 0;
  height: 2.3rem;
  line-height: 2.3rem;
  margin-left: 0;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons a.buy-button i {
  color: #1f2020;
  font-size: 1.2rem;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons a.buy-button span {
  font-size: 1.2rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #1f2020;
  font-weight: 600;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons a.buy-button:hover {
  background: #fff;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons a.buy-button.base-color {
  background-color: #ff3c00;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons a.buy-button.base-color i {
  color: #fff;
}
.albums-container .album-thumbnail .album-cover-content .additional-buttons a.buy-button.base-color:hover {
  opacity: 0.6;
}
.albums-container .album-thumbnail:hover .overlay,
.albums-container .album-thumbnail.active .overlay,
.albums-container .album-thumbnail:hover .bottom-info,
.albums-container .album-thumbnail.active .bottom-info {
  opacity: 0;
}
.albums-container .album-thumbnail:hover .album-cover-content,
.albums-container .album-thumbnail.active .album-cover-content {
  opacity: 1;
}
.albums-container .nicescroll-rails {
  z-index: 8 !important;
  display: none !important;
}
body .albums-container.albums-container-content-dark,
.light-layout .albums-container.albums-container-content-dark {
  background: #f5f5f5;
}
body .albums-container.albums-container-content-dark .album-content-container-tabs,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs {
  color: #1c1c1c;
}
body .albums-container.albums-container-content-dark .album-content-container-tabs a,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs a {
  color: #1c1c1c;
}
body .albums-container.albums-container-content-dark .album-content-container-tabs:before,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs:before,
body .albums-container.albums-container-content-dark .container-thumbnails:before,
.light-layout .albums-container.albums-container-content-dark .container-thumbnails:before {
  background: rgba(0, 0, 0, 0.8);
  background: -moz-linear-gradient(top, rgba(245, 245, 245, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(245, 245, 245, 0.8)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, rgba(245, 245, 245, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(top, rgba(245, 245, 245, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(top, rgba(245, 245, 245, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 245, 245, 0.8)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}
body .albums-container.albums-container-content-dark .album-content-container-tabs:after,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs:after,
body .albums-container.albums-container-content-dark .container-thumbnails:after,
.light-layout .albums-container.albums-container-content-dark .container-thumbnails:after {
  background: rgba(255, 255, 255, 0.8);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 0.8) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(245, 245, 245, 0.8)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 0.8) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 0.8) 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 0.8) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(245, 245, 245, 0.8)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 0.8) 100%);
}
body .albums-container.albums-container-content-dark .album-content-container-tabs .overview-container,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs .overview-container,
body .albums-container.albums-container-content-dark .album-content-container-tabs .nav li.active a,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs .nav li.active a,
body .albums-container.albums-container-content-dark .trak-item:before,
.light-layout .albums-container.albums-container-content-dark .trak-item:before,
body .albums-container.albums-container-content-dark .album-content-container-tabs .playlist-trak-define,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs .playlist-trak-define,
body .albums-container.albums-container-content-dark .trak-item,
.light-layout .albums-container.albums-container-content-dark .trak-item {
  background-color: #e9e9e9;
}
body .albums-container.albums-container-content-dark .trak-item:before,
.light-layout .albums-container.albums-container-content-dark .trak-item:before {
  opacity: 0.7;
}
body .albums-container.albums-container-content-dark .trak-item.active:before,
.light-layout .albums-container.albums-container-content-dark .trak-item.active:before {
  background: #ff3c00;
  opacity: 1;
}
body .albums-container.albums-container-content-dark .album-content-container-tabs .nav li a,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs .nav li a,
body .albums-container.albums-container-content-dark .album-content-container-tabs .playlist-trak-define div,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs .playlist-trak-define div {
  color: #1c1c1c;
}
body .albums-container.albums-container-content-dark .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button,
body .albums-container.albums-container-content-dark .trak-item .additional-button a,
.light-layout .albums-container.albums-container-content-dark .trak-item .additional-button a {
  background: #fff;
}
body .albums-container.albums-container-content-dark .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button:hover,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button:hover,
body .albums-container.albums-container-content-dark .trak-item .additional-button a:hover,
.light-layout .albums-container.albums-container-content-dark .trak-item .additional-button a:hover {
  background: rgba(255, 255, 255, 0.6);
}
body .albums-container.albums-container-content-dark .trak-item .additional-button a.shopping,
.light-layout .albums-container.albums-container-content-dark .trak-item .additional-button a.shopping,
body .albums-container.albums-container-content-dark .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button.base-color,
.light-layout .albums-container.albums-container-content-dark .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button.base-color {
  background: #ff3c00;
}
@media (max-width: 1030px) {
  body .albums-container.albums-container-content-dark .container-thumbnails:after,
  .light-layout .albums-container.albums-container-content-dark .container-thumbnails:after {
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(245, 245, 245, 0.8) 100%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(245, 245, 245, 0.8) 100%);
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(245, 245, 245, 0.8) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(245, 245, 245, 0.8)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(245, 245, 245, 0.8) 100%);
  }
  body .albums-container.albums-container-content-dark .container-thumbnails:before,
  .light-layout .albums-container.albums-container-content-dark .container-thumbnails:before {
    background: -webkit-linear-gradient(left, rgba(245, 245, 245, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(left, rgba(245, 245, 245, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(left, rgba(245, 245, 245, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(245, 245, 245, 0.8)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to right, rgba(245, 245, 245, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
body .albums-container.albums-container-content-light,
.light-layout .albums-container.albums-container-content-light {
  background: #0d0d0d;
}
body .albums-container.albums-container-content-light .album-content-container-tabs,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs {
  color: #fff;
}
body .albums-container.albums-container-content-light .album-content-container-tabs a,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs a {
  color: #fff;
}
body .albums-container.albums-container-content-light .album-content-container-tabs:before,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs:before,
body .albums-container.albums-container-content-light .container-thumbnails:before,
.light-layout .albums-container.albums-container-content-light .container-thumbnails:before {
  background: rgba(0, 0, 0, 0.8);
  background: -moz-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(13, 13, 13, 0.8)), color-stop(100%, rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -ms-linear-gradient(top, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 13, 13, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
body .albums-container.albums-container-content-light .album-content-container-tabs:after,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs:after,
body .albums-container.albums-container-content-light .container-thumbnails:after,
.light-layout .albums-container.albums-container-content-light .container-thumbnails:after {
  background: rgba(0, 0, 0, 0.8);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(13, 13, 13, 0.8)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(13, 13, 13, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.8) 100%);
}
body .albums-container.albums-container-content-light .album-content-container-tabs .overview-container,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs .overview-container,
body .albums-container.albums-container-content-light .album-content-container-tabs .nav li.active a,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs .nav li.active a,
body .albums-container.albums-container-content-light .trak-item:before,
.light-layout .albums-container.albums-container-content-light .trak-item:before,
body .albums-container.albums-container-content-light .album-content-container-tabs .playlist-trak-define,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs .playlist-trak-define,
body .albums-container.albums-container-content-light .trak-item,
.light-layout .albums-container.albums-container-content-light .trak-item {
  background-color: #222;
}
body .albums-container.albums-container-content-light .trak-item:before,
.light-layout .albums-container.albums-container-content-light .trak-item:before {
  opacity: 0.5;
}
body .albums-container.albums-container-content-light .trak-item.active:before,
.light-layout .albums-container.albums-container-content-light .trak-item.active:before {
  background: #ff3c00;
  opacity: 1;
}
body .albums-container.albums-container-content-light .album-content-container-tabs .nav li a,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs .nav li a,
body .albums-container.albums-container-content-light .album-content-container-tabs .playlist-trak-define div,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs .playlist-trak-define div {
  color: #fff;
}
body .albums-container.albums-container-content-light .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button,
body .albums-container.albums-container-content-light .trak-item .additional-button a,
.light-layout .albums-container.albums-container-content-light .trak-item .additional-button a {
  background: #d3d3d3;
}
body .albums-container.albums-container-content-light .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button:hover,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button:hover,
body .albums-container.albums-container-content-light .trak-item .additional-button a:hover,
.light-layout .albums-container.albums-container-content-light .trak-item .additional-button a:hover {
  background: #fff;
}
body .albums-container.albums-container-content-light .trak-item .additional-button a.shopping,
.light-layout .albums-container.albums-container-content-light .trak-item .additional-button a.shopping,
body .albums-container.albums-container-content-light .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button.base-color,
.light-layout .albums-container.albums-container-content-light .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button.base-color {
  background: #ff3c00;
}
@media (max-width: 1030px) {
  body .albums-container.albums-container-content-light .container-thumbnails:after,
  .light-layout .albums-container.albums-container-content-light .container-thumbnails:after {
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  }
  body .albums-container.albums-container-content-light .container-thumbnails:before,
  .light-layout .albums-container.albums-container-content-light .container-thumbnails:before {
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
.call-to-action-block {
  padding: 3rem 0 3rem 0;
  text-align: center;
}
.call-to-action-block.left {
  text-align: left;
}
.call-to-action-block.right {
  text-align: right;
}
.call-to-action-block .left {
  text-align: left;
}
.call-to-action-block .right {
  text-align: right;
}
.call-to-action-block h2 {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  font-size: 4.8rem;
  display: block;
}
.call-to-action-block blockquote {
  border: none;
  padding: 0;
  padding-top: 2.4rem;
}
.call-to-action-block blockquote p {
  font-size: 2.4rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
}
.call-to-action-block blockquote cite {
  font-size: 1.8rem;
}
.call-to-action-block p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  display: block;
  line-height: 2.8rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.call-to-action-block .default-btn {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: 4rem;
  padding-left: 4rem;
  border-radius: 0.3rem;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 0;
}
.call-to-action-block .default-btn:after {
  content: '';
  background: #ff3c00;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.call-to-action-block .default-btn:hover {
  color: #fff;
}
.call-to-action-block .default-btn:hover:after {
  opacity: 1;
}
.mini-call-to-action {
  background-size: cover;
  background-position: center;
  margin-bottom: 5rem;
  padding: 5rem 17%;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}
.mini-call-to-action:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 19, 30, 0.8);
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.mini-call-to-action:hover:after {
  background: rgba(22, 19, 30, 0.6);
}
.mini-call-to-action.left {
  text-align: left;
}
.mini-call-to-action.right {
  text-align: right;
}
.mini-call-to-action h2 {
  padding-top: 0;
  padding-bottom: 1.3rem;
  color: #fff;
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.mini-call-to-action p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.4rem;
  line-height: 1.8rem;
  display: block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.mini-call-to-action .buy {
  display: inline-block;
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 0.4rem;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 0;
  font-size: 1.2rem;
}
.mini-call-to-action .buy:after {
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  position: absolute;
  background: #ff3c00;
  opacity: 0.6;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.mini-call-to-action .buy:hover {
  color: #fff;
}
.mini-call-to-action .buy:hover:after {
  opacity: 0.8;
}
.half-call-to-action .call-to-action-block {
  padding-left: 8.5rem !important;
  padding-right: 8.5rem !important;
  padding-top: 15rem !important;
  padding-bottom: 10rem !important;
}
.half-call-to-action .call-to-action-block h2 {
  font-size: 3.5rem;
  font-weight: 400;
}
.half-call-to-action .call-to-action-block p {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.half-call-to-action .call-to-action-block .the-call-width {
  width: 48.5rem;
  max-width: 100%;
}
.half-call-to-action .call-to-action-image {
  background-size: cover;
  background-position: center;
}
.half-call-to-action:before,
.half-call-to-action:after {
  display: none !important;
}
.instagram-feed {
  margin-bottom: -6rem;
}
.instagram-feed ul {
  display: none;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.instagram-feed ul:before,
.instagram-feed ul:after {
  content: " ";
  display: table;
}
.instagram-feed ul:after {
  clear: both;
}
.instagram-feed ul:before,
.instagram-feed ul:after {
  content: " ";
  display: table;
}
.instagram-feed ul:after {
  clear: both;
}
.instagram-feed ul.owl-loaded {
  display: block;
}
.instagram-feed ul li a {
  width: 100%;
  padding-top: 100%;
  display: block;
  background-size: 125%;
  background-position: center;
}
#bit-events a.bit-track-artist-header .bit-invert {
  background: none !important;
  font-weight: 300;
  font-size: 2.4rem;
  padding-left: 0 !important;
  padding-right: 0 !important;
  color: #fff !important;
}
#bit-events a.bit-track-artist-header {
  border: none !important;
}
#bit-events td .bit-uiButtonDefault {
  background: none !important;
  border: none !important;
  height: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding-top: 0.5rem !important;
}
#bit-events td .bit-uiButtonDefault:active {
  background: none !important;
}
#bit-events td .bit-uiButtonDefault a {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  border-radius: 0.3rem;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #fff !important;
  background: #ff3c00;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 0;
}
#bit-events a.bit-track-artist-header {
  text-align: left !important;
}
#bit-events td.bit-description-links,
#bit-events th.bit-description-links {
  display: none;
}
tr.bit-header th,
tr.bit-header-narrow {
  padding: 1rem 0 1.5rem 0;
  border-top: none;
}
#bit-events .bit-header-links,
#bit-events .bit-share-text {
  font-size: 1.6rem;
}
.bit-events {
  border-collapse: collapse;
}
.bit-events tbody > tr:not(.bit-header) {
  padding: 1rem 0;
  height: 4.5rem;
}
.bit-events tbody > tr:not(.bit-header) th.bit-date {
  width: 20%;
}
.bit-events tbody > tr:not(.bit-header) th.bit-tickets,
.bit-events tbody > tr:not(.bit-header) td.bit-tickets {
  font-size: 0;
}
#bit-events .bit-events td,
#bit-events .bit-events tr {
  border-bottom: 1px solid #3A3A3A !important;
  border-top: none !important;
}
table > tbody > tr > th {
  border-top: none;
}
#bit-events td.bit-tickets,
#bit-events th.bit-tickets {
  text-align: right;
  padding-right: 0 !important;
}
#bit-events td.bit-rsvp {
  padding-right: 0 !important;
}
@media (min-width: 1030px) {
  .half-call-to-action {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .half-call-to-action > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
}
@media (max-width: 1030px) {
  .breadcrumb-page.fixed-bg {
    background-attachment: initial;
  }
  .half-call-to-action .call-to-action-block {
    width: 100%;
  }
  .half-call-to-action .call-to-action-image {
    width: 100%;
  }
  .search-form-container {
    z-index: 2;
  }
  .half-call-to-action .call-to-action-block .the-call-width {
    width: 100%;
  }
  .call-to-action-block > div {
    margin-left: 0;
  }
  .half-call-to-action .call-to-action-image {
    padding-top: 0;
    display: block;
  }
  .half-call-to-action .call-to-action-image > div {
    padding-top: 50% !important;
  }
  .half-call-to-action .call-to-action-block {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
.gallery-present .row {
  margin-left: -0.7rem;
  margin-right: -0.7rem;
}
.gallery-present .col-xs-1,
.gallery-present .col-xs-2,
.gallery-present .col-xs-3,
.gallery-present .col-xs-4,
.gallery-present .col-xs-5,
.gallery-present .col-xs-6,
.gallery-present .col-xs-7,
.gallery-present .col-xs-8,
.gallery-present .col-xs-9,
.gallery-present .col-xs-10,
.gallery-present .col-xs-11,
.gallery-present .col-xs-12,
.gallery-present .col-sm-1,
.gallery-present .col-sm-2,
.gallery-present .col-sm-3,
.gallery-present .col-sm-4,
.gallery-present .col-sm-5,
.gallery-present .col-sm-6,
.gallery-present .col-sm-7,
.gallery-present .col-sm-8,
.gallery-present .col-sm-9,
.gallery-present .col-sm-10,
.gallery-present .col-sm-11,
.gallery-present .col-sm-12 {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}
.gallery-present figure {
  padding-top: 65%;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.4rem;
}
.gallery-present figure a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.gallery-present .col-sm-5 figure {
  padding-top: 91.7%;
}
.count-down-event.independent {
  padding-top: 2.5rem !important;
  width: 25rem !important;
  padding-bottom: 1rem !important;
}
.count-down-event.independent > div {
  padding: 0;
  text-align: center;
  -webkit-box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.12);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.12);
}
.count-down-event.independent > div span {
  display: block;
  width: 100%;
  opacity: 0.5;
  color: #fff;
  font-size: 1rem !important;
  line-height: 1rem !important;
  font-weight: 400;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.count-down-event.independent > div span.time-item {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 2.7rem !important;
  line-height: 2.7rem !important;
  margin-bottom: 0.6rem !important;
  color: #f2f2f2;
  opacity: 0.7;
  font-weight: 400;
  opacity: 1;
}
.count-down-event.independent > div:last-child {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.twitter-feed-block {
  background: #222222;
  padding: 1.5rem;
  margin-bottom: 3rem;
}
.twitter-feed-block header {
  margin-bottom: 2rem;
}
.twitter-feed-block header h3 {
  padding: 0;
  color: #fff;
  line-height: 2.4rem;
  font-size: 1.2rem;
  font-weight: 400;
}
.twitter-feed-block .twitter-entries {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.twitter-feed-block .twitter-entries p {
  line-height: 2.4rem;
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #fff;
}
.twitter-feed-block .twitter-entries:after {
  content: '“';
  position: absolute;
  top: 0.8rem;
  left: -1.5rem;
  color: #fff;
  opacity: 0.1;
  font-size: 16rem;
  display: block;
  line-height: 8rem;
  z-index: -1;
}
.twitter-feed-block footer i {
  font-size: 1.6rem;
  margin-right: 1rem;
  color: #fff;
}
.twitter-feed-block footer > * {
  display: inline-block;
}
.twitter-feed-block footer ul li {
  display: inline-block;
}
.twitter-feed-block footer ul li a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6rem;
}
.twitter-feed-block footer ul li a:hover {
  color: #ff3c00;
}
.twitter-feed-block footer ul li:after {
  content: '|';
  margin: 0 0.2rem;
}
.twitter-feed-block footer ul li:last-child:after {
  display: none;
}
.hit-box {
  width: 100%;
  background: transparent !important;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.hit-box figure {
  width: 100%;
}
.hit-box header {
  padding: 2rem 0rem 1.5rem 0rem;
}
.hit-box header h2 {
  padding: 0;
}
.hit-box header h2 a {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.2rem;
  display: block;
}
.hit-box footer {
  padding: 0 0rem 2rem 0rem;
}
.hit-box footer a {
  text-transform: uppercase;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  display: inline-block;
  line-height: 1rem;
  font-weight: 300;
  color: #fff;
}
.hit-box footer a:hover {
  color: #fff;
}
.hit-box footer .read-more {
  float: left;
  margin-right: 1rem;
}
.hit-box footer .read-more {
  padding: 0 0.7rem;
  border-radius: 0.3rem;
  line-height: 2.2rem;
  background: #ff3c00;
}
.hit-box footer .read-more:hover {
  color: #000;
  background: #fff;
}
.hit-box footer .read-more a:hover {
  background: #fff;
}
.hit-box footer .links-group {
  float: left;
}
.hit-box footer .links-group a {
  padding: 0.4rem 0;
}
.hit-box footer .links-group a:hover:after {
  color: #fff;
}
.hit-box:hover {
  background: #cc3000;
}
.social-mini-box {
  margin-bottom: 3rem;
  position: relative;
  padding: 4.5rem 4rem 4rem 4rem;
  text-align: center;
  z-index: 0;
}
.social-mini-box .icon-social {
  margin-bottom: 2rem;
}
.social-mini-box .icon-social i {
  display: inline-block;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 0.2rem solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 6rem;
  font-size: 2.6rem;
}
.social-mini-box h2 {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-family: "Open Sans", sans-serif;
  padding-top: 0;
  padding-bottom: 2rem;
  display: block;
  line-height: 2.4rem;
}
.social-mini-box h2 sup {
  position: relative;
  top: -0.5rem;
  font-size: 1.2rem;
}
.social-mini-box > a.view {
  padding: 0.7rem;
  padding-bottom: 0.7rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  border-radius: 0.4rem;
  background: #ff3c00;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1rem;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
}
.social-mini-box > a.view:hover {
  color: #fff;
  color: #992400;
}
.social-mini-box > a.cover-all,
.social-mini-box .social-mini-bg {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  top: 0;
  cursor: pointer;
  bottom: 0;
}
.social-mini-box .social-mini-bg {
  z-index: -1;
  opacity: 0.1;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.social-mini-box:hover > a.view {
  color: #fff;
}
.social-mini-box:hover .social-mini-bg {
  opacity: 0.2;
}
.social-media-blocks > div {
  padding: 0;
}
.social-media-blocks article {
  position: relative;
  z-index: 0;
  text-align: center;
  padding: 4.5rem 0;
}
.social-media-blocks article .cover-all {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.social-media-blocks article h2 {
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  display: inline-block;
  max-width: 70%;
  padding-left: 8rem;
  position: relative;
  line-height: 2rem;
  min-height: 5rem;
  padding-top: 0.5rem;
}
.social-media-blocks article h2 span {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
.social-media-blocks article h2 span sup {
  font-size: 1.1rem;
  position: relative;
  top: -1rem;
}
.social-media-blocks article h2 i {
  position: absolute;
  left: 0;
  top: -1.3rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 0.2rem solid #fff;
  text-align: center;
  line-height: 6rem;
  display: block;
  font-size: 2.6rem;
  top: 0;
}
.to-the-bottom {
  margin-bottom: -6rem;
}
.contact-box > h6 {
  padding-bottom: 1rem;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
}
.contact-box .contact-text {
  padding-right: 10%;
}
.contact-box .contact-text h1 {
  font-size: 4.8rem;
  line-height: 4.8rem;
  padding-top: 0;
  padding-bottom: 2rem;
}
.contact-box .contact-text h3 {
  padding-top: 0;
  padding-bottom: 2rem;
}
.contact-box .contact-text p {
  color: #919191;
}
.contact-box .contact-text > *:first-child {
  padding-top: 1rem;
}
.contact-box.contact-form-box .comment-form-theme {
  padding-top: 0;
}
.contact-box.contact-form-box .comment-form-inputs {
  margin-bottom: 0;
}
.contact-box.contact-form-box .comment-form-inputs li {
  width: 100%;
  padding: 0;
  margin-bottom: 2rem;
}
.main-sidebar.main-sidebar-content-dark a,
.main-sidebar.main-sidebar-content-dark .widget.widget_nav_menu ul li a {
  color: #1c1c1c;
}
.main-sidebar.main-sidebar-content-dark a:hover,
.main-sidebar.main-sidebar-content-dark .widget.widget_nav_menu ul li a:hover {
  opacity: 0.6;
}
.main-sidebar.main-sidebar-content-dark .widget > h3,
.main-sidebar.main-sidebar-content-dark .widget > h2,
.main-sidebar.main-sidebar-content-dark .widget .title-widget,
.main-sidebar.main-sidebar-content-dark .widget.widget_follow_media ul li a {
  color: #1c1c1c;
}
.main-sidebar.main-sidebar-content-dark .widget ul li a:hover {
  color: #000;
}
.main-sidebar.main-sidebar-content-dark .widget.widget_follow_media ul li a:hover i {
  background: rgba(0, 0, 0, 0.05);
}
.main-sidebar.main-sidebar-content-dark .widget.widget_follow_media ul li a i {
  color: #231f20;
}
.main-sidebar.main-sidebar-content-dark .widget .newsletter-container button i {
  color: #1c1c1c;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-events article header figure time,
.main-sidebar.main-sidebar-content-dark .widget.widget-events-with-timer article header figure time {
  color: #fff;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-events-with-timer article footer > div span {
  color: #888888;
  opacity: 1;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-events-with-timer article footer > div span.time-item {
  color: #1c1c1c;
}
.main-sidebar.main-sidebar-content-dark .widget > h3,
.main-sidebar.main-sidebar-content-dark .widget > h2,
.main-sidebar.main-sidebar-content-dark .widget .title-widget {
  color: #1c1c1c;
}
.main-sidebar.main-sidebar-content-dark .widget-blog-article a {
  color: #fff;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-events .view-calendar {
  color: #1c1c1c;
  background: #eeeeee;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-events .view-calendar:hover {
  color: #eee;
  background: #1c1c1c;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-latest-news article {
  background-color: #eee;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-latest-news article:hover {
  background: #e3e3e3;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-latest-news article header time a,
.main-sidebar.main-sidebar-content-dark .widget.widget-latest-news article header h3 a,
.main-sidebar.main-sidebar-content-dark .widget.widget-latest-news article footer a:not(.read-more) {
  color: #1c1c1c;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-latest-news article footer a.read-more:after {
  opacity: 0.6;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-posts-navigation,
.main-sidebar.main-sidebar-content-dark .widget.filled {
  background: rgba(181, 181, 181, 0.1);
}
.main-sidebar.main-sidebar-content-dark .widget.widget-twitter {
  color: #1c1c1c;
  background: #eee;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-twitter a {
  color: #1c1c1c;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-twitter .twitter-entries p {
  color: #1c1c1c;
}
.main-sidebar.main-sidebar-content-dark .widget.widget-twitter .twitter-entries:after {
  color: #adadad;
}
.main-sidebar.main-sidebar-content-dark .widget.widget_calendar table,
.main-sidebar.main-sidebar-content-dark .widget.widget_calendar caption {
  background: #eee;
}
.main-sidebar.main-sidebar-content-dark .widget.widget_calendar caption,
.main-sidebar.main-sidebar-content-dark .widget.widget_calendar table tbody td {
  color: #353535;
}
.main-sidebar.main-sidebar-content-dark .widget.widget_calendar table thead tr th {
  color: #8c8c8c;
}
.main-sidebar.main-sidebar-content-dark .widget.widget_calendar table tfoot td#next a:before,
.main-sidebar.main-sidebar-content-dark .widget.widget_calendar table tfoot td#prev a:before {
  color: #9d9d9d;
}
.main-sidebar.main-sidebar-content-dark .widget.widget_calendar table thead tr {
  background: #e3e3e3;
}
.main-sidebar.main-sidebar-content-dark .widget .tagcloud a,
.main-sidebar.main-sidebar-content-dark .widget.woocommerce .product-categories a {
  background: #ddd;
}
.main-sidebar.main-sidebar-content-dark .widget .tagcloud a:hover,
.main-sidebar.main-sidebar-content-dark .widget.woocommerce .product-categories a:hover {
  color: #ddd;
  background-color: #999;
}
.main-sidebar.main-sidebar-content-light .form-control,
.main-sidebar.main-sidebar-content-light select,
.main-sidebar.main-sidebar-content-light input[type=text],
.main-sidebar.main-sidebar-content-light input[type=number],
.main-sidebar.main-sidebar-content-light input[type=tel],
.main-sidebar.main-sidebar-content-light input[type=search],
.main-sidebar.main-sidebar-content-light input[type=email],
.main-sidebar.main-sidebar-content-light input[type=password],
.main-sidebar.main-sidebar-content-light textarea,
.main-sidebar.main-sidebar-content-light .post-password-form input[type=password],
.main-sidebar.main-sidebar-content-light .cart-collaterals .input-text,
.main-sidebar.main-sidebar-content-light .create-account .input-text,
.main-sidebar.main-sidebar-content-light .login .input-text {
  background: rgba(0, 0, 0, 0.1);
  color: #919191;
}
.main-sidebar.main-sidebar-content-light a,
.main-sidebar.main-sidebar-content-light .widget.widget_nav_menu ul li a {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light a:hover,
.main-sidebar.main-sidebar-content-light .widget.widget_nav_menu ul li a:hover {
  opacity: 0.6;
}
.main-sidebar.main-sidebar-content-light .widget > h3,
.main-sidebar.main-sidebar-content-light .widget > h2,
.main-sidebar.main-sidebar-content-light .widget .title-widget,
.main-sidebar.main-sidebar-content-light .widget.widget_follow_media ul li a {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget ul li a:hover {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget.widget_follow_media ul li a:hover i {
  background-color: rgba(255, 255, 255, 0.05);
}
.main-sidebar.main-sidebar-content-light .widget.widget_follow_media ul li a i {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget .newsletter-container button i {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget.widget-events article header figure time,
.main-sidebar.main-sidebar-content-light .widget.widget-events-with-timer article header figure time {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget.widget-events-with-timer article footer > div span {
  color: #fff;
  opacity: 1;
}
.main-sidebar.main-sidebar-content-light .widget.widget-events-with-timer article footer > div span.time-item {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget > h3,
.main-sidebar.main-sidebar-content-light .widget > h2,
.main-sidebar.main-sidebar-content-light .widget .title-widget {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget-blog-article a {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget.widget-events .view-calendar {
  color: #d3d3d3;
  background: #222222;
}
.main-sidebar.main-sidebar-content-light .widget.widget-events .view-calendar:hover {
  color: #fff;
  background: #ff3c00;
}
.main-sidebar.main-sidebar-content-light .widget.widget-latest-news article {
  background-color: #1c1c1c;
}
.main-sidebar.main-sidebar-content-light .widget.widget-latest-news article:hover {
  background: #202020;
}
.main-sidebar.main-sidebar-content-light .widget.widget-latest-news article header time a,
.main-sidebar.main-sidebar-content-light .widget.widget-latest-news article header h3 a,
.main-sidebar.main-sidebar-content-light .widget.widget-latest-news article footer a:not(.read-more) {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget.widget-latest-news article footer a.read-more:after {
  opacity: 0.6;
}
.main-sidebar.main-sidebar-content-light .widget.widget-posts-navigation,
.main-sidebar.main-sidebar-content-light .widget.filled {
  background: rgba(0, 0, 0, 0.3);
}
.main-sidebar.main-sidebar-content-light .widget.widget-twitter {
  color: #fff;
  background: #222222;
}
.main-sidebar.main-sidebar-content-light .widget.widget-twitter a {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget.widget-twitter .twitter-entries p {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget.widget-twitter .twitter-entries:after {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget.widget_calendar table,
.main-sidebar.main-sidebar-content-light .widget.widget_calendar caption {
  background: #222222;
}
.main-sidebar.main-sidebar-content-light .widget.widget_calendar caption,
.main-sidebar.main-sidebar-content-light .widget.widget_calendar table tbody td {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget.widget_calendar table thead tr th {
  color: #929292;
}
.main-sidebar.main-sidebar-content-light .widget.widget_calendar table tfoot td#next a:before,
.main-sidebar.main-sidebar-content-light .widget.widget_calendar table tfoot td#prev a:before {
  color: #fff;
}
.main-sidebar.main-sidebar-content-light .widget.widget_calendar table thead tr {
  background: #353535;
}
.main-sidebar.main-sidebar-content-light .widget .tagcloud a,
.main-sidebar.main-sidebar-content-light .widget.woocommerce .product-categories a {
  background: #999;
}
.main-sidebar.main-sidebar-content-light .widget .tagcloud a:hover,
.main-sidebar.main-sidebar-content-light .widget.woocommerce .product-categories a:hover {
  color: #353535;
  background-color: #999;
}
.singular-album {
  margin-bottom: 3rem;
}
.singular-album article {
  position: relative;
  width: 100%;
  padding-left: 20rem;
  min-height: 18.5rem;
  padding-bottom: 5.5rem;
}
.singular-album article figure > a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18.5rem;
}
.singular-album article figure figcaption .title-album {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}
.singular-album article figure figcaption .title-album p {
  margin-bottom: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
  display: block;
}
.singular-album article figure figcaption .title-album h2 {
  padding: 0.5rem 0;
}
.singular-album article figure figcaption .title-album h2 a {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.2rem;
  display: block;
}
.singular-album article figure figcaption .additional-buttons {
  position: absolute;
  right: 1.5rem;
  left: 20rem;
  bottom: 1rem;
  z-index: 1;
}
.singular-album article figure figcaption .additional-buttons:before,
.singular-album article figure figcaption .additional-buttons:after {
  content: " ";
  display: table;
}
.singular-album article figure figcaption .additional-buttons:after {
  clear: both;
}
.singular-album article figure figcaption .additional-buttons:before,
.singular-album article figure figcaption .additional-buttons:after {
  content: " ";
  display: table;
}
.singular-album article figure figcaption .additional-buttons:after {
  clear: both;
}
.singular-album article figure figcaption .additional-buttons a {
  cursor: pointer;
  display: block;
  float: left;
}
.singular-album article figure figcaption .additional-buttons a.play-all-singular-songs {
  height: 3.5rem;
  line-height: 3.2rem;
  border: 2px solid #ff3c00;
  border-radius: 0.5rem;
  padding: 0 1.5rem;
  background: #ff3c00;
  margin-right: 0.4rem;
  color: #fff;
}
.singular-album article figure figcaption .additional-buttons a.play-all-singular-songs span {
  font-size: 1.4rem;
}
.singular-album article figure figcaption .additional-buttons a.play-all-singular-songs i {
  font-size: 1.4rem;
  margin-right: 0.3rem;
}
.singular-album article figure figcaption .additional-buttons a.play-all-singular-songs:hover,
.singular-album article figure figcaption .additional-buttons a.play-all-singular-songs:active,
.singular-album article figure figcaption .additional-buttons a.play-all-singular-songs:focus {
  background-color: #fff;
  border-color: #fff;
  color: #ff3c00;
}
.singular-album article figure figcaption .additional-buttons a.big-buy-album {
  height: 3.5rem;
  line-height: 3.2rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  padding: 0 1.5rem;
  background: transparent;
  margin-right: 0.2rem;
  color: rgba(255, 255, 255, 0.8);
}
.singular-album article figure figcaption .additional-buttons a.big-buy-album span {
  font-size: 1.4rem;
}
.singular-album article figure figcaption .additional-buttons a.big-buy-album i {
  font-size: 1.4rem;
  margin-right: 0.3rem;
}
.singular-album article figure figcaption .additional-buttons a.big-buy-album:hover,
.singular-album article figure figcaption .additional-buttons a.big-buy-album:active,
.singular-album article figure figcaption .additional-buttons a.big-buy-album:focus {
  background-color: #fff;
  border-color: #fff;
  color: #ff3c00;
}
.singular-album .singular-tab-playlist-container {
  max-height: 24.3rem;
  overflow-y: auto;
}
.singular-album .singular-tab-playlist-container .trak-item .name-artist {
  width: 15rem;
}
.singular-album .singular-tab-playlist-container .trak-item .name-artist h2 {
  width: 13.5rem;
}
.singular-album.playlist-to-right:before,
.singular-album.playlist-to-right:after {
  content: " ";
  display: table;
}
.singular-album.playlist-to-right:after {
  clear: both;
}
.singular-album.playlist-to-right:before,
.singular-album.playlist-to-right:after {
  content: " ";
  display: table;
}
.singular-album.playlist-to-right:after {
  clear: both;
}
.singular-album.playlist-to-right .singular-album-info,
.singular-album.playlist-to-right .singular-tab-playlist-container {
  float: left;
  width: 50%;
}
body .singular-album.singular-album-content-dark,
.light-layout .singular-album.singular-album-content-dark {
  color: #1c1c1c;
}
body .singular-album.singular-album-content-dark a,
.light-layout .singular-album.singular-album-content-dark a {
  color: #1c1c1c;
}
body .singular-album.singular-album-content-dark article figure figcaption .additional-buttons a.big-buy-album,
.light-layout .singular-album.singular-album-content-dark article figure figcaption .additional-buttons a.big-buy-album {
  border-color: rgba(180, 180, 180, 0.8);
  color: rgba(16, 16, 16, 0.8);
}
body .singular-album.singular-album-content-dark .trak-item:before,
.light-layout .singular-album.singular-album-content-dark .trak-item:before,
body .singular-album.singular-album-content-dark .trak-item,
.light-layout .singular-album.singular-album-content-dark .trak-item {
  background-color: #e9e9e9;
}
body .singular-album.singular-album-content-dark .trak-item:before,
.light-layout .singular-album.singular-album-content-dark .trak-item:before {
  opacity: 0.7;
}
body .singular-album.singular-album-content-dark .trak-item .additional-button a,
.light-layout .singular-album.singular-album-content-dark .trak-item .additional-button a {
  background: #fff;
}
body .singular-album.singular-album-content-dark .trak-item .additional-button a:hover,
.light-layout .singular-album.singular-album-content-dark .trak-item .additional-button a:hover {
  background: rgba(255, 255, 255, 0.6);
}
body .singular-album.singular-album-content-dark .trak-item .additional-button a.shopping,
.light-layout .singular-album.singular-album-content-dark .trak-item .additional-button a.shopping {
  background: #ff3c00;
}
body .singular-album.singular-album-content-light,
.light-layout .singular-album.singular-album-content-light {
  color: #fff;
}
body .singular-album.singular-album-content-light a,
.light-layout .singular-album.singular-album-content-light a {
  color: #fff;
}
body .singular-album.singular-album-content-light article figure figcaption .additional-buttons a.big-buy-album,
.light-layout .singular-album.singular-album-content-light article figure figcaption .additional-buttons a.big-buy-album {
  border-color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
}
body .singular-album.singular-album-content-light article figure figcaption .additional-buttons a.big-buy-album:hover,
.light-layout .singular-album.singular-album-content-light article figure figcaption .additional-buttons a.big-buy-album:hover {
  color: #ff3c00;
}
body .singular-album.singular-album-content-light .trak-item:before,
.light-layout .singular-album.singular-album-content-light .trak-item:before,
body .singular-album.singular-album-content-light .trak-item,
.light-layout .singular-album.singular-album-content-light .trak-item {
  background-color: #222222;
}
body .singular-album.singular-album-content-light .trak-item.active:before,
.light-layout .singular-album.singular-album-content-light .trak-item.active:before {
  background-color: #ff3c00;
  opacity: 1;
}
body .singular-album.singular-album-content-light .trak-item:before,
.light-layout .singular-album.singular-album-content-light .trak-item:before {
  opacity: 0.5;
}
body .singular-album.singular-album-content-light .trak-item .additional-button a,
.light-layout .singular-album.singular-album-content-light .trak-item .additional-button a {
  background: #d3d3d3;
}
body .singular-album.singular-album-content-light .trak-item .additional-button a:hover,
.light-layout .singular-album.singular-album-content-light .trak-item .additional-button a:hover {
  background: rgba(255, 255, 255, 0.6);
}
body .singular-album.singular-album-content-light .trak-item .additional-button a.shopping,
.light-layout .singular-album.singular-album-content-light .trak-item .additional-button a.shopping {
  background: #ff3c00;
}
.inline-event-listing {
  margin-bottom: 3rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.inline-event-listing > * {
  float: left;
  height: 13.8rem;
}
.inline-event-listing .the-date {
  background: rgba(255, 255, 255, 0.03);
  padding: 3.5rem;
  text-align: center;
  width: 12%;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.inline-event-listing .the-date span {
  display: block;
  line-height: 1.8rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.inline-event-listing .the-date span.big {
  line-height: 3.2rem;
  font-size: 3.2rem;
}
.inline-event-listing .the-location,
.inline-event-listing .the-event-name {
  display: table;
}
.inline-event-listing .the-location span,
.inline-event-listing .the-event-name span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.inline-event-listing .the-location h3,
.inline-event-listing .the-event-name h3 {
  padding: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.9rem;
}
.inline-event-listing .the-location > div,
.inline-event-listing .the-event-name > div {
  display: table-cell;
  vertical-align: middle;
}
.inline-event-listing .the-location {
  width: 25%;
  padding-left: 10rem;
}
.inline-event-listing .the-event-name {
  width: 35%;
  padding-left: 10rem;
}
.inline-event-listing .the-reserve-button {
  width: 28%;
  padding-right: 7.5rem;
  text-align: right;
  display: table;
}
.inline-event-listing .the-reserve-button > div {
  display: table-cell;
  vertical-align: middle;
}
.inline-event-listing .the-reserve-button a {
  border-radius: 0.4rem;
  overflow: hidden;
  position: relative;
  padding: 2.5rem 3rem;
  border-radius: 0.3rem;
  z-index: 1;
  text-transform: uppercase;
  margin-right: 1rem;
  font-size: 1.4rem;
}
.inline-event-listing .the-reserve-button a:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ff3c00;
  opacity: 0.2;
  z-index: -1;
  border-radius: 0.6rem;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.inline-event-listing .the-reserve-button a:hover {
  opacity: 1;
  color: #fff;
}
.inline-event-listing .the-reserve-button a:hover:after {
  opacity: 1;
}
.inline-event-listing:hover {
  background: rgba(255, 255, 255, 0.02);
}
.inline-event-listing:hover .the-date {
  background: #252436;
}
.tickera-page-order .blog-single-container.page p a {
  font-weight: 700;
}
@media (min-width: 1030px) {
  .albums-container {
    left: -91rem;
    width: 91rem;
  }
  .search-is-opened .mobile-header-overlay {
    display: block;
    -webkit-transition-delay: 0 !important;
    -o-transition-delay: 0 !important;
    transition-delay: 0 !important;
    -webkit-transition-property: all !important;
    -webkit-transition-duration: 0.2s !important;
    -webkit-transition-timing-function: ease-in-out !important;
    -o-transition-property: all !important;
    transition-property: all !important;
    -o-transition-duration: 0.2s !important;
    transition-duration: 0.2s !important;
    -o-transition-timing-function: ease-in-out !important;
    transition-timing-function: ease-in-out !important;
    -webkit-transition: 0.2s !important;
    -o-transition: 0.2s !important;
    transition: 0.2s !important;
  }
  .albums-container,
  .main-header-container .main-header,
  .main-footer,
  .main-music-player {
    -webkit-transition-delay: 0 !important;
    -o-transition-delay: 0 !important;
    transition-delay: 0 !important;
    -webkit-transition-property: left !important;
    -webkit-transition-duration: 0.5s !important;
    -webkit-transition-timing-function: ease-in-out !important;
    -o-transition-property: left !important;
    transition-property: left !important;
    -o-transition-duration: 0.5s !important;
    transition-duration: 0.5s !important;
    -o-transition-timing-function: ease-in-out !important;
    transition-timing-function: ease-in-out !important;
    -webkit-transition: left 0.5s , transform 0.2s !important;
    -o-transition: left 0.5s , transform 0.2s !important;
    -webkit-transition: left 0.5s , -webkit-transform 0.2s !important;
    transition: left 0.5s , -webkit-transform 0.2s !important;
    transition: left 0.5s , transform 0.2s !important;
    transition: left 0.5s , transform 0.2s , -webkit-transform 0.2s !important;
  }
  .albums-is-opened .mobile-header-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.5);
    display: block;
  }
  .albums-is-opened .albums-container {
    left: 0;
  }
  .albums-is-opened .main-header-container .main-header {
    left: 91rem;
  }
  .albums-is-opened .ajax-update-content {
    left: 91rem;
  }
  .albums-is-opened .main-footer {
    left: 91rem;
  }
  .albums-is-opened .main-music-player {
    left: 91rem;
  }
}
@media (max-width: 1450px) {
  .breadcrumb-page.sm {
    padding-top: 40%;
  }
}
@media (min-width: 1420px) {
  .albums-container {
    left: -112rem;
    width: 112rem;
  }
  .albums-is-opened .mobile-header-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.5);
    display: block;
  }
  .albums-is-opened .albums-container {
    left: 0;
  }
  .albums-is-opened .main-header-container .main-header {
    left: 112rem;
  }
  .albums-is-opened .ajax-update-content {
    left: 112rem;
  }
  .albums-is-opened .main-footer {
    left: 112rem;
  }
  .albums-is-opened .main-music-player {
    left: 112rem;
  }
}
@media (max-width: 1420px) and (min-width: 1030px) {
  .albums-container .album-content-container-tabs {
    left: 0;
  }
  .albums-container .album-content-container-tabs:before,
  .albums-container .album-content-container-tabs:after,
  .albums-container .container-thumbnails:before,
  .albums-container .container-thumbnails:after {
    height: 4rem;
  }
  .albums-container .album-content-container-tabs .album-tab,
  .albums-container .albums-thumbnail-container {
    padding-top: 4rem;
  }
  .albums-container .album-content-container-tabs .tab-albums {
    padding-bottom: 4rem;
  }
  .albums-container .album-thumbnail:last-child {
    margin-bottom: 5rem;
  }
  .albums-container .album-content-container-tabs .album-tab {
    right: 1.5rem;
    left: 1.5rem;
  }
  .albums-container .album-content-container-tabs {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 62.5rem;
  }
  .albums-container .albums-thumbnail-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 28.5rem;
  }
  .albums-container .container-thumbnails {
    width: 28.5rem;
  }
}
@media (max-width: 1260px) {
  .photos-single-article header .arrow {
    left: -4.5rem;
  }
}
@media (max-width: 1200px) {
  .singular-album article {
    padding-left: 0;
    min-height: inherit;
    padding-bottom: 0;
  }
  .singular-album article figure > a {
    position: relative;
    width: 100%;
  }
  .singular-album article figure > a img {
    width: 100%;
  }
  .singular-album article figure figcaption .additional-buttons {
    position: relative;
    right: auto;
    left: 0;
    bottom: 0;
    z-index: 1;
    margin: 1rem 0;
  }
  .singular-album article figure figcaption .additional-buttons:before,
  .singular-album article figure figcaption .additional-buttons:after {
    content: " ";
    display: table;
  }
  .singular-album article figure figcaption .additional-buttons:after {
    clear: both;
  }
  .singular-album article figure figcaption .additional-buttons:before,
  .singular-album article figure figcaption .additional-buttons:after {
    content: " ";
    display: table;
  }
  .singular-album article figure figcaption .additional-buttons:after {
    clear: both;
  }
  .singular-album .singular-tab-playlist-container {
    max-height: 24.3rem;
    overflow-y: auto;
  }
  .singular-album .singular-tab-playlist-container .trak-item .name-artist {
    width: 14rem;
  }
  .singular-album .singular-tab-playlist-container .trak-item .additional-button {
    float: right;
  }
  .singular-album .singular-tab-playlist-container .trak-item .trak-duration {
    display: none;
  }
  .singular-album.playlist-to-right {
    position: relative;
  }
  .singular-album.playlist-to-right:before,
  .singular-album.playlist-to-right:after {
    content: " ";
    display: table;
  }
  .singular-album.playlist-to-right:after {
    clear: both;
  }
  .singular-album.playlist-to-right:before,
  .singular-album.playlist-to-right:after {
    content: " ";
    display: table;
  }
  .singular-album.playlist-to-right:after {
    clear: both;
  }
  .singular-album.playlist-to-right .singular-album-info,
  .singular-album.playlist-to-right .singular-tab-playlist-container {
    float: none;
  }
  .singular-album.playlist-to-right .singular-tab-playlist-container {
    position: absolute;
    right: 0;
    top: 0;
    max-height: 100%;
  }
  .section-404 {
    padding: 13rem 10rem 13rem 10rem;
  }
  .filter-carousel .owl-controls .owl-nav .owl-next {
    width: calc(50vw - 45.5rem);
  }
  .photo-albums-listing article h2 {
    font-size: 2.4rem;
    line-height: 2.4rem;
    width: 100%;
  }
  .main-big-calendar .big-calendar-body .calendar-main-items li {
    width: 25%;
  }
  .main-big-calendar .big-calendar-head .centred-head-container > a.next {
    right: -10rem;
  }
  .main-big-calendar .big-calendar-head .centred-head-container > a.prev {
    left: -10rem;
  }
}
@media (min-width: 1030px) {
  .main-sidebar {
    overflow: initial !important;
  }
  .albums-container .albums-thumbnail-container .albums-thumbnail-stage {
    width: 100% !important;
  }
}
@media (max-width: 1030px) {
  .mobile-header-content-dark .mobile-header,
  .mobile-header-content-dark.light-layout .mobile-header {
    background: #e9e9e9;
    color: #1c1c1c;
  }
  .mobile-header-content-dark .mobile-header a,
  .mobile-header-content-dark.light-layout .mobile-header a {
    color: #1c1c1c;
  }
  .mobile-header-content-dark:not(.mobile-header-item-opened) .mobile-header .mobile-header-trigger.menu-trigger,
  .mobile-header-content-dark.light-layout:not(.mobile-header-item-opened) .mobile-header .mobile-header-trigger.menu-trigger,
  .mobile-header-content-dark .mobile-header .mobile-header-trigger.active,
  .mobile-header-content-dark.light-layout .mobile-header .mobile-header-trigger.active {
    color: #fff;
  }
  .mobile-header-content-dark .main-header-container .main-header.main-header-content-dark a,
  .mobile-header-content-dark.light-layout .main-header-container .main-header.main-header-content-dark a {
    color: #fff;
  }
  .mobile-header-content-dark .main-menu > ul > li > ul:not(.megamenu) li,
  .mobile-header-content-dark.light-layout .main-menu > ul > li > ul:not(.megamenu) li {
    background: transparent !important;
  }
  .mobile-header-content-light .mobile-header,
  .mobile-header-content-light.light-layout .mobile-header {
    background: #1f1f20;
    color: #fff;
  }
  .mobile-header-content-light .mobile-header a,
  .mobile-header-content-light.light-layout .mobile-header a {
    color: #fff;
  }
  .mobile-header-content-light:not(.mobile-header-item-opened) .mobile-header .mobile-header-trigger.menu-trigger,
  .mobile-header-content-light.light-layout:not(.mobile-header-item-opened) .mobile-header .mobile-header-trigger.menu-trigger,
  .mobile-header-content-light .mobile-header .mobile-header-trigger.active,
  .mobile-header-content-light.light-layout .mobile-header .mobile-header-trigger.active {
    color: #fff;
  }
  .mobile-header-content-light .main-header-container .main-header.main-header-content-dark a,
  .mobile-header-content-light.light-layout .main-header-container .main-header.main-header-content-dark a {
    color: #fff;
  }
  .mobile-header-content-light .main-menu > ul > li > ul:not(.megamenu) li,
  .mobile-header-content-light.light-layout .main-menu > ul > li > ul:not(.megamenu) li {
    background: transparent !important;
  }
  .call-to-action-block h2 {
    font-size: 2.8rem;
  }
  .call-to-action-block p {
    font-size: 1.8rem;
  }
  .without-featured-image .blog-single-container .album-title header {
    padding-right: 0;
  }
  .mobile-header-overlay {
    z-index: 5;
  }
  body.mobile-header-item-opened .mobile-header {
    left: 33rem;
  }
  body.mobile-header-item-opened .mobile-header-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
    -webkit-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-property: all;
    transition-property: all;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
  }
  body.mobile-header-item-opened.menu-is-opened .mobile-header-overlay,
  body.mobile-header-item-opened.cart-is-opened .mobile-header-overlay,
  body.mobile-header-item-opened.sidebar-is-opened .mobile-header-overlay {
    left: 38rem;
  }
  body.mobile-header-item-opened.playlist-is-opened .mobile-header-overlay {
    display: none;
  }
  body.mobile-header-item-opened.top-mobile-header.menu-is-opened .mobile-header-overlay,
  body.mobile-header-item-opened.top-mobile-header.cart-is-opened .mobile-header-overlay,
  body.mobile-header-item-opened.top-mobile-header.sidebar-is-opened .mobile-header-overlay {
    left: 38rem;
  }
  body.mobile-header-item-opened.top-mobile-header.playlist-is-opened .mobile-header-overlay {
    display: none;
  }
  body.mobile-header-item-opened.top-mobile-header.playlist-is-opened .mobile-header .mobile-header-trigger:not(.menu-trigger) {
    display: none;
  }
  .without-featured-image .breadcrumb-page {
    padding-top: 10rem !important;
  }
  .without-featured-image .blog-single-container .album-title header .big-rate-album {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
  .albums-container {
    width: 33rem;
    left: -33rem;
  }
  .top-mobile-header.case-1-3 .mobile-header .mobile-header-trigger.cart-trigger {
    right: 5rem;
  }
  .top-mobile-header.case-1-2 .mobile-header .mobile-header-trigger.cart-trigger {
    right: 5rem;
  }
  .top-mobile-header.case-1-2 .mobile-header .mobile-header-trigger.playlist-trigger {
    right: 0;
  }
  .top-mobile-header.case-1-playlist .mobile-header .mobile-header-trigger.playlist-trigger {
    right: 0;
  }
  .top-mobile-header.case-1-cart .mobile-header .mobile-header-trigger.cart-trigger {
    right: 0;
  }
}
@media (max-width: 1030px) {
  .festival-light-button.rev-btn,
  .rev-btn .festival-light-button {
    padding: 8px 18px !important;
  }
  .inline-event-listing .the-location,
  .inline-event-listing .the-event-name {
    padding-left: 3rem;
  }
  .inline-event-listing .the-location h3,
  .inline-event-listing .the-event-name h3 {
    font-size: 1.8rem;
  }
  .inline-event-listing .the-date {
    padding: 1.5rem;
  }
  .inline-event-listing > * {
    height: 9.8rem;
  }
  .inline-event-listing .the-reserve-button {
    padding-right: 0;
  }
  .breadcrumb-page + div {
    position: initial;
  }
  .filter-carousel {
    width: 100% !important;
  }
  .filter-carousel ul {
    padding: 0 4.5rem 0 0;
  }
  .filter-carousel .owl-controls .owl-nav .owl-next {
    width: 4.5rem;
    right: 0;
    background: none;
  }
  form.main-search {
    width: 66rem;
    margin-left: -33rem;
  }
  .mobile-header-item-opened:not(.top-mobile-header) .main-header-container .main-header .logo-container {
    opacity: 0.5;
  }
  .top-mobile-header .main-header-container .main-header {
    z-index: 3;
  }
  .main-header-container .main-header {
    -webkit-transition-delay: 0 !important;
    -o-transition-delay: 0 !important;
    transition-delay: 0 !important;
    -webkit-transition-property: all !important;
    -webkit-transition-duration: 0s !important;
    -webkit-transition-timing-function: ease-in-out !important;
    -o-transition-property: all !important;
    transition-property: all !important;
    -o-transition-duration: 0s !important;
    transition-duration: 0s !important;
    -o-transition-timing-function: ease-in-out !important;
    transition-timing-function: ease-in-out !important;
    -webkit-transition: 0s !important;
    -o-transition: 0s !important;
    transition: 0s !important;
  }
  .mobile-header {
    display: block;
  }
  .main-big-calendar .big-calendar-body .calendar-main-items li {
    width: 33.333333333333333%;
  }
  .photos-single-article header .arrow {
    height: 4.2rem;
    left: 1.5rem;
    width: 2.2rem;
  }
  .photos-single-article header .arrow:after,
  .photos-single-article header .arrow:before {
    right: 0;
  }
  .photo-albums-listing article {
    min-height: 36.4rem;
  }
  .photo-albums-listing article.sm {
    min-height: 22.4rem;
  }
  .photo-albums-listing article.xs {
    min-height: 11.2rem;
  }
  .listing-filter-container h3 {
    font-size: 4rem;
  }
  .listing-filter-container .filtering-articles ul {
    float: none;
    display: block;
    margin-bottom: 0.5rem;
  }
  .listing-filter-container .filtering-articles ul li {
    margin-right: 1rem;
  }
  .listing-filter-container .filtering-articles ul li a {
    font-size: 1.3rem;
  }
  .listing-filter-container .filtering-articles .articles-info {
    float: none;
    display: block;
  }
  .listing-filter-container .filtering-articles .articles-info > div,
  .listing-filter-container .filtering-articles .articles-info > a {
    margin-left: 0.5rem;
  }
  .breadcrumb-page.xs {
    padding-top: 25rem;
  }
  .breadcrumb-page.sm {
    padding-top: 30rem;
  }
  .breadcrumb-page.md {
    padding-top: 35rem;
  }
  .breadcrumb-page.lg {
    padding-top: 40rem;
  }
  .albums-container {
    z-index: 6;
    padding-bottom: 6.45rem;
  }
  .albums-container .container-thumbnails {
    width: 100%;
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
  }
  .albums-container .albums-thumbnail-container {
    position: relative;
    padding: 3rem 3rem;
    width: 100%;
    overflow-x: auto !important;
    height: 22rem;
  }
  .albums-container .albums-thumbnail-container:before,
  .albums-container .albums-thumbnail-container:after {
    content: " ";
    display: table;
  }
  .albums-container .albums-thumbnail-container:after {
    clear: both;
  }
  .albums-container .albums-thumbnail-container:before,
  .albums-container .albums-thumbnail-container:after {
    content: " ";
    display: table;
  }
  .albums-container .albums-thumbnail-container:after {
    clear: both;
  }
  .albums-container .album-thumbnail,
  .albums-container .album-thumbnail .album-cover-content {
    min-height: 15rem;
  }
  .albums-container .album-thumbnail {
    margin-bottom: 0 !important;
  }
  .albums-container .album-thumbnail {
    margin-right: 2rem;
  }
  .albums-container .album-thumbnail {
    float: left;
    width: 20rem;
  }
  .albums-container .container-thumbnails:before,
  .albums-container .container-thumbnails:after {
    width: 3rem;
    top: 3rem !important;
    bottom: 4rem !important;
    height: auto;
  }
  .albums-container .container-thumbnails:before {
    left: 0;
    top: 0;
    right: auto;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&amp;0.8+0,0+100 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cc000000', endColorstr='#00000000', GradientType=1);
    /* IE6-9 */
  }
  .albums-container .container-thumbnails:after {
    bottom: 0;
    left: auto;
    right: 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&amp;0+0,0.8+100 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#cc000000', GradientType=1);
    /* IE6-9 */
  }
  .albums-container .album-content-container-tabs:before,
  .albums-container .album-content-container-tabs:after {
    height: 3rem;
  }
  .albums-container .album-content-container-tabs {
    top: 18rem;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
  }
  .albums-container .album-content-container-tabs .album-tab {
    padding-top: 3rem;
    bottom: 6.45rem;
    overflow-y: auto !important;
  }
  .albums-container .album-content-container-tabs .tab-albums {
    padding-bottom: 3rem;
  }
  .albums-container .album-content-container-tabs article figure > a {
    display: none;
  }
  .albums-container .album-content-container-tabs article {
    min-height: inherit;
    padding-left: 0;
    margin-bottom: 1.5rem;
  }
  .albums-container .album-content-container-tabs article figure figcaption .additional-buttons {
    position: relative;
    left: auto;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
  }
  .albums-container .album-content-container-tabs article figure figcaption .title-album h2 a {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .albums-container .album-content-container-tabs .overview-container {
    padding: 1.5rem;
  }
  .albums-container .album-content-container-tabs .overview-container h2 {
    font-size: 2rem;
  }
  .albums-container .album-content-container-tabs .nav li a {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .albums-container .album-thumbnail .album-cover-content {
    display: none;
  }
  .albums-container .album-content-container-tabs .playlist-trak-define div.album-txt,
  .albums-container .album-content-container-tabs .playlist-trak-define div.buy-txt {
    display: none;
  }
  .albums-container .album-content-container-tabs .playlist-trak-define div.play-txt {
    width: 7rem;
  }
  .albums-container .album-content-container-tabs .trak-item > * {
    height: 5rem;
  }
  .albums-container .album-content-container-tabs .trak-item {
    padding-right: 1rem;
  }
  .albums-container .album-content-container-tabs .trak-item .additional-button {
    display: none;
  }
  .albums-container .album-content-container-tabs .trak-item .play-pause-button {
    margin-right: 1rem;
  }
  .albums-container .album-content-container-tabs .trak-item .album-and-year {
    display: none;
  }
  .albums-container .album-content-container-tabs .trak-item .trak-duration {
    line-height: 5rem;
  }
  .playlist-is-opened .albums-container {
    width: calc(100% - 5rem);
  }
  .playlist-is-opened .mobile-header {
    left: auto !important;
    right: 0;
  }
  .menu-is-opened .main-header-container .main-header .social-list {
    display: block !important;
  }
  .main-header-container .main-header .social-list {
    position: fixed;
    z-index: 1;
    width: 33rem;
    top: 100vh !important;
    margin-top: -55px;
    left: 0;
  }
  .main-header-container .main-header .social-list a {
    font-size: 1.6rem;
  }
  .has-player .main-header-container .main-header .social-list {
    margin-top: -130px;
  }
  .main-header-container .main-header ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 60px;
    overflow-y: auto;
    padding-top: 7.5rem;
  }
  .has-player .main-header-container .main-header ul {
    bottom: 135px;
  }
}
@media (max-width: 1030px) and (min-width: 800px) {
  .vc_row[data-vc-full-width] {
    width: calc(100vw - 50px) !important;
    left: calc((-100vw + 800px) / 2) !important;
    margin-left: -15px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .top-mobile-header .vc_row[data-vc-full-width] {
    width: 100vw !important;
    left: calc((-100vw + 750px) / 2) !important;
    margin-left: -15px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .inline-sm .count-down-event.independent > div {
    width: 25% !important;
  }
}
@media (max-width: 800px) {
  .singular-album .singular-tab-playlist-container {
    overflow: auto !important;
  }
  html.loaded .festival-light-button-first {
    left: -5rem !important;
  }
  .band-light-button.rev-btn {
    top: 3rem !important;
  }
  html.loaded .festival-light-button-first .festival-light-button {
    left: 0 !important;
    margin-top: 0 !important;
  }
  .inline-event-listing .the-date {
    width: 100%;
  }
  .inline-event-listing {
    background: rgba(255, 255, 255, 0.03);
  }
  .inline-event-listing > * {
    height: auto;
  }
  .inline-event-listing .the-date span.big {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
  .inline-event-listing .the-date span {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
  .inline-event-listing .the-reserve-button {
    width: 100%;
    text-align: center;
    padding-bottom: 1.5rem;
  }
  .inline-event-listing .the-reserve-button a {
    display: inline-block;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .inline-event-listing .the-location,
  .inline-event-listing .the-event-name {
    padding: 2rem;
    width: 100%;
    text-align: center;
  }
  .singular-album.playlist-to-right .singular-album-info,
  .singular-album.playlist-to-right .singular-tab-playlist-container {
    width: 100%;
  }
  .singular-album.playlist-to-right .singular-tab-playlist-container {
    position: initial;
    max-height: 24.3rem;
  }
  .vc_row[data-vc-full-width] {
    width: calc(100% + 30px) !important;
    left: 0 !important;
    margin-left: -15px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .section-404 {
    padding: 13rem 0 13rem 0;
  }
  .ajax-update-content.boxed .filter-carousels-categories .filter-categories {
    padding-left: 1rem;
  }
  .filter-carousels-categories .filter-categories {
    width: 30%;
  }
  .filter-carousels-categories .carousels-container {
    width: 70%;
  }
  .ajax-update-content.boxed .filter-categories ul li:last-child {
    left: 1rem;
  }
  .gallery-present .row {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .gallery-present .col-xs-1,
  .gallery-present .col-xs-2,
  .gallery-present .col-xs-3,
  .gallery-present .col-xs-4,
  .gallery-present .col-xs-5,
  .gallery-present .col-xs-6,
  .gallery-present .col-xs-7,
  .gallery-present .col-xs-8,
  .gallery-present .col-xs-9,
  .gallery-present .col-xs-10,
  .gallery-present .col-xs-11,
  .gallery-present .col-xs-12,
  .gallery-present .col-sm-1,
  .gallery-present .col-sm-2,
  .gallery-present .col-sm-3,
  .gallery-present .col-sm-4,
  .gallery-present .col-sm-5,
  .gallery-present .col-sm-6,
  .gallery-present .col-sm-7,
  .gallery-present .col-sm-8,
  .gallery-present .col-sm-9,
  .gallery-present .col-sm-10,
  .gallery-present .col-sm-11,
  .gallery-present .col-sm-12 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .gallery-present figure {
    padding-top: 60%;
    margin-bottom: 3rem;
  }
  .gallery-present .col-sm-5 figure {
    padding-top: 60%;
  }
  .rating {
    width: 5.6rem;
  }
  .blog-single-container .album-title header figure img {
    float: none !important;
  }
  form.main-search {
    width: 46rem;
    margin-left: -23rem;
    height: 4.5rem;
  }
  form.main-search input {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  form.main-search button {
    width: 4.5rem;
    height: 4.5rem;
    line-height: 4.5rem;
  }
  .main-big-calendar .big-calendar-body .calendar-main-items li {
    width: 50%;
    padding-right: 2px;
  }
  .main-big-calendar .big-calendar-body .calendar-main-items li .item-container {
    height: auto;
  }
  .main-big-calendar .big-calendar-body .calendar-main-items li .item-body {
    height: auto;
  }
  .photos-single-article header h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .breadcrumb-page.xs {
    padding-top: 20rem;
  }
  .breadcrumb-page.sm {
    padding-top: 25rem;
  }
  .breadcrumb-page.md {
    padding-top: 30rem;
  }
  .breadcrumb-page.lg {
    padding-top: 35rem;
  }
}
@media (max-width: 600px) {
  .section-404 {
    padding: 7rem 0rem 7rem 0rem;
  }
  .section-404 h2 {
    font-size: 3.6rem;
  }
  .section-404 h3 {
    font-size: 2.6rem;
  }
  .section-404 p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .filter-carousel ul {
    padding: 0;
  }
  .filter-carousel .owl-controls .owl-nav .owl-next,
  .filter-carousel .owl-controls .owl-nav .owl-prev {
    display: none !important;
  }
  .filter-carousels-categories .filter-categories {
    width: 0;
    padding-right: 0;
  }
  .filter-carousels-categories {
    padding-left: 0;
  }
  .filter-carousels-categories .filter-categories {
    width: 40%;
  }
  .filter-carousels-categories .carousels-container {
    width: 60%;
  }
  form.main-search {
    width: 32rem;
    margin-left: -16rem;
  }
  .photo-albums-listing > div {
    width: 100%;
  }
  .main-big-calendar .big-calendar-head .big-calendar-add-event-button {
    right: 50%;
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -o-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    top: -2rem;
  }
  .main-big-calendar .big-calendar-head .big-calendar-add-event-button a {
    line-height: 2rem;
  }
  .main-big-calendar .big-calendar-head .centred-head-container .actual-showed-date span {
    font-size: 1.8rem;
  }
  .main-big-calendar .big-calendar-head .centred-head-container > a span {
    padding: 0 0.5rem;
  }
  .main-big-calendar .big-calendar-head .centred-head-container {
    padding: 0;
  }
  .main-big-calendar .big-calendar-head .centred-head-container .actual-showed-date {
    line-height: 5rem;
  }
  .main-big-calendar .big-calendar-head .centred-head-container:after {
    display: table;
    content: '';
    clear: both;
  }
  .main-big-calendar .big-calendar-head .centred-head-container {
    display: inherit;
  }
  .main-big-calendar .big-calendar-head .centred-head-container > a {
    display: inline-block;
    position: relative;
    right: 0 !important;
    left: 0 !important;
  }
  .main-big-calendar .big-calendar-head .centred-head-container .actual-showed-date {
    display: inline-block;
  }
}
@media (max-width: 500px) {
  .tickera .order-details tbody tr:first-child {
    display: none;
  }
  .tickera .order-details tbody tr td {
    display: block;
    border-top: none;
    padding: 0rem 0.8rem;
  }
  .tickera .order-details tbody tr {
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    display: block;
    margin-bottom: 2rem;
  }
  .tickera .order-details tbody tr:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .band-light-button.rev-btn {
    top: 3rem !important;
    padding: 7px 22px !important;
  }
  html.loaded .festival-light-button-first {
    margin-top: 6rem !important;
  }
  figure.gallery-item {
    width: 100%;
  }
  .filter-carousels-categories .carousels-container {
    width: 100%;
  }
  .contact-box .contact-text h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .bit-venue {
    display: none;
  }
  .bit-events tbody > tr:not(.bit-header) th.bit-date {
    width: 25%;
  }
  .call-to-action-block {
    padding: 0 !important;
  }
  .call-to-action-block blockquote {
    margin-bottom: 0;
  }
  .gallery-present .col-sm-5 {
    width: 100%;
  }
  .center-img {
    text-align: left !important;
  }
  .call-to-action-block blockquote p {
    font-size: 1.8rem !important;
    line-height: 2.6rem  !important;
    margin-top: 3rem;
  }
  .albums-container {
    width: 22rem;
    left: -22rem;
  }
  .albums-container .album-content-container-tabs .tab-albums {
    padding-bottom: 1rem;
  }
  .albums-container .container-thumbnails:before,
  .albums-container .container-thumbnails:after {
    width: 1rem;
    top: 1rem !important;
    bottom: 2rem !important;
  }
  .albums-container .album-content-container-tabs .playlist-trak-define div.title-txt {
    width: 9rem;
  }
  .albums-container .album-content-container-tabs .playlist-trak-define div.play-txt {
    padding-left: 1rem;
    width: 5rem;
  }
  .albums-container .album-content-container-tabs .playlist-trak-define div {
    font-size: 1.2rem;
  }
  .albums-container .album-content-container-tabs .playlist-trak-define div.time-txt {
    width: 4rem;
    text-align: right;
  }
  .trak-item .trak-duration {
    font-size: 1.2rem;
  }
  .albums-container .album-content-container-tabs .nav li a {
    line-height: 1.2rem;
    font-size: 1.2rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .albums-container .album-thumbnail,
  .albums-container .album-thumbnail .album-cover-content {
    width: 13rem;
    min-height: 13rem;
  }
  .albums-container .album-content-container-tabs .album-tab {
    padding-top: 1rem;
  }
  .albums-container .album-content-container-tabs:before,
  .albums-container .album-content-container-tabs:after {
    height: 1rem;
  }
  .albums-container .album-content-container-tabs {
    top: 14rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .albums-container .album-content-container-tabs .album-tab {
    right: 1rem;
    left: 1rem;
  }
  .albums-container .albums-thumbnail-container {
    height: 16rem;
    padding: 1rem;
  }
  .blog-single-container .album-title header figure img {
    width: 50% !important;
  }
  .filter-carousels-categories .filter-categories {
    width: 100%;
    position: relative;
  }
  .filter-carousels-categories .filter-categories ul li {
    display: inline-block;
    margin-right: 0.5rem;
  }
  .filter-carousels-categories .filter-categories ul li:last-child {
    margin-right: 0;
  }
  .filter-carousels-categories {
    padding-left: 0;
  }
  form.main-search {
    width: calc(100vw - 7rem);
    left: 6rem;
    margin-left: 0;
  }
  form.main-search input {
    padding-left: 1.5rem;
  }
  .main-big-calendar .big-calendar-body .calendar-main-items li {
    width: 100%;
    padding-right: 0;
  }
  .rate-album .pull-right,
  .rate-album .pull-left {
    float: none !important;
  }
  .albums-listing > div {
    width: 100%;
  }
  .artists-articles > div {
    width: 100%;
  }
  .events-articles > div {
    width: 100%;
  }
  .events-articles > div article {
    margin-bottom: 1.5rem;
  }
  .events-articles > div article footer .share-comment-group {
    float: right;
  }
  .breadcrumb-page.xs {
    padding-top: 15rem;
  }
  .breadcrumb-page.sm {
    padding-top: 20rem;
  }
  .breadcrumb-page.md {
    padding-top: 25rem;
  }
  .breadcrumb-page.lg {
    padding-top: 30rem;
  }
  body.mobile-header-item-opened .mobile-header {
    left: auto !important;
    right: 0;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container,
  .main-sidebar,
  .main-header-container .main-header .main-menu {
    width: calc(100% - 5rem) !important;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart {
    width: 100% !important;
  }
  .main-header-container .main-header .additional-buttons .cart-header .header-cart-container .header-cart .cart-entries figure:hover {
    background: transparent !important;
  }
  .top-mobile-header.playlist-is-opened .mobile-header-overlay,
  .top-mobile-header.menu-is-opened .mobile-header-overlay,
  .top-mobile-header.cart-is-opened .mobile-header-overlay,
  .top-mobile-header.sidebar-is-opened .mobile-header-overlay {
    display: none;
  }
  .top-mobile-header.playlist-is-opened .mobile-header .mobile-header-trigger:not(.menu-trigger),
  .top-mobile-header.menu-is-opened .mobile-header .mobile-header-trigger:not(.menu-trigger),
  .top-mobile-header.cart-is-opened .mobile-header .mobile-header-trigger:not(.menu-trigger),
  .top-mobile-header.sidebar-is-opened .mobile-header .mobile-header-trigger:not(.menu-trigger) {
    display: none;
  }
  .top-mobile-header .main-header-container .main-header {
    padding-left: 8.5rem;
    padding-right: 11.5rem;
  }
  .top-mobile-header .main-header-container .main-header {
    padding-right: 11.5rem;
  }
  .top-mobile-header.case-1-2-3 .main-header-container .main-header {
    padding-right: 11.5rem;
  }
  .top-mobile-header.case-2-3 .main-header-container .main-header {
    padding-right: 7rem;
  }
  .top-mobile-header.case-1-3 .main-header-container .main-header {
    padding-right: 7rem;
  }
  .top-mobile-header.case-1-2 .main-header-container .main-header {
    padding-right: 7rem;
  }
  .top-mobile-header.case-1-sidebar .main-header-container .main-header {
    padding-right: 3.5rem;
  }
  .top-mobile-header.case-1-playlist .main-header-container .main-header {
    padding-right: 3.5rem;
  }
  .top-mobile-header.case-1-cart .main-header-container .main-header {
    padding-right: 5rem;
  }
  .top-mobile-header.case-0 .main-header-container .main-header {
    padding-right: 0;
  }
  .top-mobile-header .mobile-header .mobile-header-trigger.sidebar-trigger {
    width: 3.5rem;
    right: 0;
  }
  .top-mobile-header .mobile-header .mobile-header-trigger.playlist-trigger {
    width: 3.5rem;
    right: 3.5rem;
  }
  .top-mobile-header .mobile-header .mobile-header-trigger.cart-trigger {
    width: 3.5rem;
    right: 7rem;
  }
  .top-mobile-header .mobile-header .mobile-header-trigger.search-trigger {
    width: 3.5rem;
  }
  .top-mobile-header.case-1-3 .mobile-header .mobile-header-trigger.cart-trigger {
    right: 3.5rem;
  }
  .top-mobile-header.case-1-2 .mobile-header .mobile-header-trigger.cart-trigger {
    right: 3.5rem;
  }
  .top-mobile-header.case-1-2 .mobile-header .mobile-header-trigger.playlist-trigger {
    right: 0;
  }
  .top-mobile-header.case-1-playlist .mobile-header .mobile-header-trigger.playlist-trigger {
    right: 0;
  }
  .top-mobile-header.case-1-cart .mobile-header .mobile-header-trigger.cart-trigger {
    right: 0;
  }
  .main-header-container .main-header .social-list {
    width: calc(100% - 50px);
    margin-top: -115px !important;
  }
}
@media (max-width: 400px) {
  .singular-album .singular-tab-playlist-container {
    max-height: 24.3rem;
    overflow-y: auto;
  }
  .singular-album .singular-tab-playlist-container .trak-item .additional-button {
    display: none;
  }
  .singular-album.playlist-to-right .singular-tab-playlist-container {
    position: initial;
    max-height: 24.3rem;
  }
}
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
@-moz-document url-prefix() {
  .content-container:hover .filter-container {
    overflow: inherit !important;
  }
}
#narcotic-masonry .isotope-item {
  padding: 0;
}
#narcotic-masonry .isotope-item > article {
  margin-bottom: 0;
  padding: 0;
}
#narcotic-masonry .isotope-item:nth-child(2n) > article .content-article {
  background: #191919;
}
@media (max-width: 800px) {
  .isotope-item {
    width: 100% !important;
  }
}
/* 
 *	Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
/* 
 *	Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99920;
}
@supports (overflow:-webkit-marquee) and ((-webkit-box-pack: inherit) or (justify-content: inherit)) {
  div.fancybox-wrap {
    position: fixed;
  }
  div.fancybox-wrap.fancybox-desktop.fancybox-type-image.fancybox-opened {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  div.fancybox-wrap.fancybox-desktop.fancybox-type-image {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  div.fancybox-wrap.fancybox-type-image.fancybox-opened {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  div.fancybox-wrap.fancybox-type-image {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  div.fancybox-wrap.fancybox-desktop {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  div.fancybox-wrap {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.fancybox-margin {
  margin-right: 0 !important;
}
.fancybox-skin {
  position: relative;
  padding: 0!important;
}
.fancybox-opened {
  z-index: 99930;
}
.fancybox-inner {
  overflow: hidden;
}
.fancybox-outer,
.fancybox-inner {
  position: relative;
  overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}
.fancybox-error {
  color: #FFF;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}
.fancybox-image,
.fancybox-iframe {
  cursor: default;
  display: block;
  width: 100%;
  height: 100%;
}
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}
#fancybox-loading {
  cursor: pointer;
  height: 40px;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
  position: relative;
  position: fixed;
  text-align: center;
  top: 50%;
  width: 40px;
  z-index: 99960;
  -webkit-animation: sk-chasingDotsRotate 1.5s infinite linear;
  animation: sk-chasingDotsRotate 1.5s infinite linear;
}
#fancybox-loading div {
  background-color: #181818;
  border-radius: 100%;
  display: inline-block;
  height: 60%;
  position: absolute;
  top: 0;
  width: 60%;
  -webkit-animation: sk-chasingDotsBounce 1.5s infinite ease-in-out;
  animation: sk-chasingDotsBounce 1.5s infinite ease-in-out;
}
#fancybox-loading .sk-dot2 {
  bottom: 0px;
  top: auto;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.fancybox-close {
  display: none;
}
.fancybox-nav {
  cursor: pointer;
  height: 100%;
  position: absolute;
  text-decoration: none;
  top: 0;
  width: 50%;
  z-index: 99940;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.fancybox-nav span {
  background: url(../img/content/sprite.png) no-repeat #FFF;
  cursor: pointer;
  height: 55px;
  margin-top: -27px;
  position: absolute;
  top: 50%;
  width: 55px;
  z-index: 99940;
  -webkit-transition: background-color 0.1s;
  -moz-transition: background-color 0.1s;
  -ms-transition: background-color 0.1s;
  -o-transition: background-color 0.1s;
}
.fancybox-nav:hover span {
  background-color: #181818;
}
.fancybox-next {
  right: 0;
}
.fancybox-prev {
  left: 0;
}
.ie9 .fancybox-next:hover,
.ie9 .fancybox-prev:hover {
  cursor: pointer;
}
.fancybox-next span {
  background-position: -22px -373px;
  right: 30px;
}
.fancybox-next:hover span {
  background-position: -22px -273px;
}
.fancybox-prev span {
  background-position: -24px -323px;
  left: 30px;
}
.fancybox-prev:hover span {
  background-position: -24px -223px;
}
.fancybox-nav span {
  visibility: visible!important;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeslideleft;
  animation-name: fadeslideleft;
  -webkit-animation-duration: .1s;
  animation-duration: .1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@keyframes fadeslideleft {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes fadeslideleft {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
.fancybox-prev span {
  -webkit-animation-name: fadeslideright;
  animation-name: fadeslideright;
}
@keyframes fadeslideright {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes fadeslideright {
  0% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
.fancybox-tmp {
  left: -99999px;
  max-height: 99999px;
  max-width: 99999px;
  overflow: visible !important;
  position: absolute;
  top: -99999px;
  visibility: hidden;
}
/* OVERLAY HELPER */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}
.fancybox-lock body {
  overflow: hidden !important;
}
.fancybox-lock-test {
  overflow-y: hidden !important;
}
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.7);
  display: none;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 99910;
}
.fancybox-overlay-fixed {
  bottom: 0;
  position: fixed;
  right: 0;
}
.fancybox-lock .fancybox-overlay {
  cursor: pointer;
  overflow: hidden;
}
.fancybox-title {
  visibility: hidden;
  position: relative;
  text-shadow: none;
  z-index: 99950;
}
.fancybox-opened .fancybox-title {
  visibility: visible;
}
.fancybox-title-float-wrap {
  bottom: 0;
  margin-bottom: -35px;
  position: absolute;
  right: 50%;
  text-align: center;
  z-index: 99950;
}
.fancybox-title-float-wrap .child {
  background: transparent;
  color: #FFF;
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  white-space: nowrap;
  display: none;
}
.fancybox-title-outside-wrap {
  color: #FFF;
  margin-top: 10px;
  position: relative;
}
.fancybox-title-inside-wrap {
  padding-top: 10px;
}
.fancybox-title-over-wrap {
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  color: #6F6F6F;
  left: 0;
  padding: 10px;
  position: absolute;
}
img.hidden,
a.lightbox.hidden {
  display: none!important;
}
.lightbox-download {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99945;
}
@media (max-width: 500px) {
  .fancybox-prev span {
    left: 0;
  }
  .fancybox-next span {
    right: 0;
  }
  div.fancybox-wrap.fancybox-desktop.fancybox-type-image.fancybox-opened {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: fixed !important;
  }
  div.fancybox-wrap.fancybox-desktop.fancybox-type-image {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: fixed !important;
  }
  div.fancybox-wrap.fancybox-type-image.fancybox-opened {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: fixed !important;
  }
  div.fancybox-wrap.fancybox-type-image {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: fixed !important;
  }
  div.fancybox-wrap.fancybox-desktop {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: fixed !important;
  }
  div.fancybox-wrap {
    left: 50% !important;
    top: 50% !important;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: fixed !important;
  }
}
/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.1.0
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
body .select2-drop-mask {
  background: none;
}
body .select2-container .select2-choice > .select2-chosen {
  padding: 0.65rem 2.5rem;
  border: 1px solid #353535;
  color: #a5a9a9;
  background-color: #353535;
}
body .select2-container .select2-choice {
  border-radius: 0;
  border-color: #353535;
  background: #353535;
  padding-left: 0;
}
body .select2-dropdown-open .select2-choice {
  -webkit-box-shadow: none;
  box-shadow: none;
}
body .select2-results .select2-highlighted {
  background: #000;
}
body .select2-results li {
  border-radius: 0;
}
body .select2-drop {
  background: #353535;
  border-color: #353535;
}
body .select2-drop .select2-search input {
  margin-bottom: 0;
  height: 4rem !important;
  background: #464646;
  padding-left: 2.1rem !important;
  padding-right: 2.1rem !important;
}
body .select2-results .select2-result-label {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #fff;
  padding-left: 2.1rem;
  padding-right: 2.1rem;
}
body .select2-results {
  background: #353535;
}
body.woocommerce-checkout .woocommerce form .form-row .input-checkbox,
body.woocommerce-checkout .single-product form .form-row .input-checkbox {
  display: none;
}
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  width: 100% !important;
  margin-bottom: 20px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #999;
  border-top: 1px solid #999;
  background: #353535;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -o-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
}
.chosen-container.chosen-with-drop .chosen-drop {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.chosen-container a {
  cursor: pointer;
}
/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 1.1rem 2.5rem;
  background-color: transparent;
  color: #999;
  background: #353535;
  text-decoration: none;
  white-space: nowrap;
}
.chosen-container-single .chosen-default {
  color: #999;
}
.chosen-container-single .chosen-single span {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.4rem;
}
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  width: 38px;
  text-align: center;
  line-height: 4.3rem;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
}
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.chosen-container-single .chosen-single div b:before {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  content: '\f107';
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 15px 16px;
  white-space: nowrap;
  border-bottom: 1px solid #999;
}
.chosen-container-single .chosen-search input[type="text"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 1px 0;
  margin-bottom: 0 !important;
  padding: 4px 20px 4px 5px !important;
  width: 100%;
  height: auto;
  border-radius: 0 !important;
  outline: 0;
  border: 1px solid #999 !important;
  color: #AFAFAF;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}
/* @end */
/* @group Results */
.chosen-container .chosen-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 184px;
  margin-bottom: 0;
  -webkit-overflow-scrolling: touch;
  padding-left: 0;
}
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 15px 15px;
  list-style: none;
  font-size: 1.4rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.5rem;
  -webkit-touch-callout: none;
  border-bottom: 1px solid #999;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.chosen-container .chosen-results li:last-child {
  border-bottom: 0;
}
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container .chosen-results li.highlighted {
  background-color: #ededed;
  color: #191919;
}
.chosen-container .chosen-results li.no-results {
  display: list-item;
  background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}
/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text;
}
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 5px;
  height: 15px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #666;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-multi .chosen-choices li.search-field .default {
  color: #999;
}
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 0 3px 5px;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eeeeee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eeeeee));
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}
/* @end */
/* @group Active  */
.chosen-container-active.chosen-with-drop .chosen-single div {
  background: transparent;
}
.chosen-container-active.chosen-with-drop .chosen-single div b:before {
  content: '\f106';
}
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #111 !important;
}
/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
.chosen-disabled .chosen-single {
  cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}
/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}
.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}
.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}
.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}
.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}
.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}
.chosen-rtl .chosen-choices li {
  float: right;
}
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}
.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}
.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
  left: 9999px;
}
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}
.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  direction: rtl;
}
.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}
/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
/* @end */
body.light-layout {
  background: #f5f5f5;
}
body.light-layout form.main-search {
  -webkit-box-shadow: 0 0 4rem rgba(136, 136, 136, 0.5);
  box-shadow: 0 0 4rem rgba(136, 136, 136, 0.5);
}
.light-layout .ajax-update-content {
  color: #1c1c1c;
}
.light-layout .ajax-update-content form.tickera .ticket-quantity .tickera_button {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .section-padding.inverted-section-text-color {
  color: #fff;
}
.light-layout .ajax-update-content .section-padding.inverted-section-text-color .call-to-action-block blockquote p {
  color: #fff;
}
.light-layout .ajax-update-content .blog-single-container .album-title {
  position: relative;
}
.light-layout .ajax-update-content .blog-single-container .article-title {
  position: relative;
}
.light-layout .ajax-update-content .singular-album article figure figcaption .additional-buttons a.big-buy-album {
  border-color: rgba(180, 180, 180, 0.8);
  color: rgba(16, 16, 16, 0.8);
}
.light-layout .ajax-update-content .filter-carousel .owl-controls .owl-nav .owl-next i {
  color: #fff;
}
.light-layout .ajax-update-content .main-menu > ul > li .megamenu .header-carousel .owl-controls .owl-nav .owl-next i {
  color: #000;
}
.light-layout .ajax-update-content .listing-filter-container {
  margin-top: 17rem;
}
.light-layout .ajax-update-content.without-featured-image .listing-filter-container {
  margin-top: 0;
}
@media (max-width: 1500px) {
  .light-layout .ajax-update-content .listing-filter-container {
    margin-top: 15rem;
  }
  .light-layout .ajax-update-content.without-featured-image .listing-filter-container {
    margin-top: 0;
  }
}
@media (max-width: 800px) {
  .light-layout .ajax-update-content .listing-filter-container {
    margin-top: 10rem;
  }
  .light-layout .ajax-update-content.without-featured-image .listing-filter-container {
    margin-top: 0;
  }
}
@media (max-width: 800px) {
  .light-layout .ajax-update-content .listing-filter-container {
    margin-top: 7rem;
  }
  .light-layout .ajax-update-content.without-featured-image .listing-filter-container {
    margin-top: 0;
  }
}
.light-layout .ajax-update-content .events-articles a {
  color: #fff;
}
.light-layout .ajax-update-content .pager li > a,
.light-layout .ajax-update-content .pager li > span {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .pager li > a:hover,
.light-layout .ajax-update-content .pager li > span:hover {
  background: #353535;
  color: #fff;
}
.light-layout .ajax-update-content a {
  color: #1c1c1c;
}
.light-layout .ajax-update-content a.default-btn,
.light-layout .ajax-update-content .mini-call-to-action .buy,
.light-layout .ajax-update-content table.tickera .add_to_cart,
.light-layout .ajax-update-content .comment-container .title-comments a {
  color: #fff;
}
.light-layout .ajax-update-content .main-big-calendar .big-calendar-head .centred-head-container > a:hover {
  color: #000;
}
.light-layout .ajax-update-content .YTPOverlay {
  background: rgba(255, 255, 255, 0.8);
}
.light-layout .ajax-update-content .tickera-checkout,
.light-layout .ajax-update-content form.tickera {
  color: #000;
}
.light-layout .ajax-update-content .bookatable,
.light-layout .ajax-update-content div.tickera,
.light-layout .ajax-update-content form.tickera {
  background: rgba(255, 255, 255, 0.1);
}
.light-layout .ajax-update-content .carousel-audio-article .cover-all {
  color: #fff;
}
.light-layout .ajax-update-content .main-header a {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .main-header a:hover {
  color: #ff3c00;
}
.light-layout .ajax-update-content .carousel-news-article .info-article {
  background: #fff;
}
.light-layout .ajax-update-content .carousel-news-article:hover .info-article * {
  color: #fff;
}
.light-layout .ajax-update-content .carousel-news-article:hover .info-article * {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .carousel-news-article:hover header h2 a {
  color: #1c1c1c !important;
}
.light-layout .ajax-update-content .carousel-news-article footer .read-more a {
  color: #fff;
}
.light-layout .ajax-update-content .carousel-news-article:hover footer .read-more a {
  color: #ff3c00;
}
.light-layout .ajax-update-content .filter-categories ul li:last-child a {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .filter-categories ul li:last-child a:hover {
  color: #ff3c00;
}
.light-layout .ajax-update-content .filter-carousel .owl-controls .owl-nav > div i {
  color: #828282;
}
.light-layout .ajax-update-content .carousel-audio-article header h2,
.light-layout .ajax-update-content .carousel-audio-article header .author {
  color: #fff;
}
.light-layout .ajax-update-content .title-col h2 {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .title-col h2 a {
  color: #ff3c00;
}
.light-layout .ajax-update-content .news-listing article footer .read-more:before {
  opacity: 0.6;
}
.light-layout .ajax-update-content .news-listing article header h2 a,
.light-layout .ajax-update-content .news-listing article header p a {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .news-listing article header h2 a:hover,
.light-layout .ajax-update-content .news-listing article header p a:hover {
  opacity: 0.6;
}
.light-layout .ajax-update-content .carousel-news-article * {
  color: #1c1c1c;
}
.light-layout .ajax-update-content ul.products .product .price {
  color: #1c1c1c;
}
.light-layout .ajax-update-content ul.products .product > a > h3 {
  color: #1c1c1c;
}
.light-layout .ajax-update-content ul.products .product > .button {
  color: #1c1c1c;
}
.light-layout .ajax-update-content ul.products .product > .button:hover {
  color: #ff3c00;
}
.light-layout .ajax-update-content .news-listing article footer .read-more {
  color: #fff;
}
.light-layout .ajax-update-content .news-listing article footer .read-more:hover {
  color: #fff;
}
.light-layout .ajax-update-content .news-listing article footer > a,
.light-layout .ajax-update-content .news-listing article footer > div {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .news-listing article footer > a:hover,
.light-layout .ajax-update-content .news-listing article footer > div:hover {
  opacity: 0.6;
}
.light-layout .ajax-update-content .pagination-parent .pagination li a,
.light-layout .ajax-update-content .pagination-parent .pagination li > span {
  color: #353535;
}
.light-layout .ajax-update-content .pagination-parent .pagination li a:hover,
.light-layout .ajax-update-content .pagination-parent .pagination li > span:hover,
.light-layout .ajax-update-content .pagination-parent .pagination li.active a,
.light-layout .ajax-update-content .pagination-parent .pagination li.active > span {
  background: #e3e3e3;
}
.light-layout .ajax-update-content .nav-links a,
.light-layout .ajax-update-content .nav-links > span {
  color: #1c1c1c;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.light-layout .ajax-update-content .nav-links a:hover,
.light-layout .ajax-update-content .nav-links a.current,
.light-layout .ajax-update-content .nav-links > span:hover,
.light-layout .ajax-update-content .nav-links > span.current {
  color: #fff;
}
.light-layout .ajax-update-content .widget.widget-events article header figure time,
.light-layout .ajax-update-content .widget.widget-events-with-timer article header figure time {
  color: #fff;
}
.light-layout .ajax-update-content .widget.widget-events-with-timer article footer > div span {
  color: #888888;
  opacity: 1;
}
.light-layout .ajax-update-content .widget.widget-events-with-timer article footer > div span.time-item {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .widget > h3,
.light-layout .ajax-update-content .widget > h2,
.light-layout .ajax-update-content .widget .title-widget {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .widget-blog-article a {
  color: #fff;
}
.light-layout .ajax-update-content .widget.widget-events .view-calendar {
  color: #1c1c1c;
  background: #eeeeee;
}
.light-layout .ajax-update-content .widget.widget-events .view-calendar:hover {
  color: #eee;
  background: #1c1c1c;
}
.light-layout .ajax-update-content .widget.widget-latest-news article {
  background-color: #eee;
}
.light-layout .ajax-update-content .widget.widget-latest-news article:hover {
  background: #e3e3e3;
}
.light-layout .ajax-update-content .widget.widget-latest-news article header time a,
.light-layout .ajax-update-content .widget.widget-latest-news article header h3 a,
.light-layout .ajax-update-content .widget.widget-latest-news article footer a:not(.read-more) {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .widget.widget-latest-news article footer a.read-more:after {
  opacity: 0.6;
}
.light-layout .ajax-update-content .widget.widget_nav_menu ul li a {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .widget.widget_nav_menu ul li a:hover {
  opacity: 0.6;
}
.light-layout .ajax-update-content .widget.widget_follow_media ul li a:hover i {
  background: rgba(0, 0, 0, 0.05);
}
.light-layout .ajax-update-content .widget .newsletter-container button i {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .widget.widget_follow_media ul li a {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .widget.widget_follow_media ul li a i {
  color: #231f20;
}
.light-layout .ajax-update-content .widget.widget_nav_menu_additional ul li a:hover {
  opacity: 0.6;
  color: #919191;
}
.light-layout .ajax-update-content .trak-item:before,
.light-layout .ajax-update-content .trak-item {
  background-color: #e9e9e9;
}
.light-layout .ajax-update-content .trak-item:before {
  opacity: 0.7;
}
.light-layout .ajax-update-content .trak-item .additional-button a {
  background: #fff;
}
.light-layout .ajax-update-content .trak-item .additional-button a:hover {
  background: rgba(255, 255, 255, 0.6);
}
.light-layout .ajax-update-content .trak-item .additional-button a.shopping {
  background: #ff3c00;
}
.light-layout .ajax-update-content .mobile-header .mobile-header-trigger.menu-trigger,
.light-layout .ajax-update-content .mobile-header .mobile-header-trigger.active {
  color: #fff;
}
.light-layout .ajax-update-content .breadcrumb-page:after {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 10%, #000 90%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(90%, #000));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 10%, #000 90%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 10%, #000 90%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 10%, #000 90%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(0, 0, 0, 0)), color-stop(90%, #000));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 10%, #000 90%);
}
.light-layout .ajax-update-content .breadcrumb-page:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.3;
  display: block;
}
.light-layout .ajax-update-content.without-featured-image .breadcrumb-page:before {
  display: none;
}
.light-layout .ajax-update-content.without-featured-image .blog-single-container .article-title h1,
.light-layout .ajax-update-content.without-featured-image .blog-single-container .article-title time a {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .blog-single-container .article-title h1,
.light-layout .ajax-update-content .blog-single-container .article-title time a {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .breadcrumb-page + div.no-negative-mt .main-sidebar {
  margin-top: 3rem;
}
.light-layout .ajax-update-content .breadcrumb-page + div.no-negative-mt .blog-single-container .article-title {
  margin-bottom: 5rem;
}
.light-layout .ajax-update-content .breadcrumb-page + div.no-negative-mt .blog-single-container {
  margin-top: 3rem;
}
.light-layout .ajax-update-content .blog-single-container .event-title header figure figcaption .buy-album .share-comment-group a:first-child,
.light-layout .ajax-update-content .blog-single-container .article-title time,
.light-layout .ajax-update-content .blog-single-container .album-title header figure figcaption time,
.light-layout .ajax-update-content .blog-single-container .album-title header figure figcaption h2,
.light-layout .ajax-update-content .blog-single-container .album-title header .big-rate-album > a {
  color: #949494;
}
.light-layout .ajax-update-content .blog-single-container .event-title {
  margin-top: -7rem;
  margin-bottom: 2rem;
}
.light-layout .ajax-update-content .blog-single-container .event-title header figure figcaption {
  padding-bottom: 0;
}
@media (max-width: 1200px) {
  .light-layout .ajax-update-content .blog-single-container .event-title {
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1030px) {
  .light-layout .ajax-update-content .breadcrumb-page.lg {
    padding-top: 23%;
  }
}
.light-layout .ajax-update-content .blog-single-container .album-title header .big-rate-album .star-container span {
  color: #fff;
}
.light-layout .ajax-update-content .form-control,
.light-layout .ajax-update-content select,
.light-layout .ajax-update-content input[type=text],
.light-layout .ajax-update-content input[type=number],
.light-layout .ajax-update-content input[type=tel],
.light-layout .ajax-update-content input[type=search],
.light-layout .ajax-update-content input[type=email],
.light-layout .ajax-update-content input[type=password],
.light-layout .ajax-update-content textarea,
.light-layout .ajax-update-content .post-password-form input[type=password],
.light-layout .ajax-update-content .cart-collaterals .input-text,
.light-layout .ajax-update-content .create-account .input-text,
.light-layout .ajax-update-content .login .input-text {
  background: #d7d7d7;
  color: #919191;
}
.light-layout .ajax-update-content .ajax-update-content .form-control,
.light-layout .ajax-update-content .ajax-update-content select,
.light-layout .ajax-update-content .ajax-update-content input[type=text],
.light-layout .ajax-update-content .ajax-update-content input[type=number],
.light-layout .ajax-update-content .ajax-update-content input[type=tel],
.light-layout .ajax-update-content .ajax-update-content input[type=search],
.light-layout .ajax-update-content .ajax-update-content input[type=email],
.light-layout .ajax-update-content .ajax-update-content input[type=password],
.light-layout .ajax-update-content .ajax-update-content textarea,
.light-layout .ajax-update-content .ajax-update-content .post-password-form input[type=password],
.light-layout .ajax-update-content .ajax-update-content .cart-collaterals .input-text,
.light-layout .ajax-update-content .ajax-update-content .create-account .input-text,
.light-layout .ajax-update-content .ajax-update-content .login .input-text {
  background: #E2E2E2;
  color: #919191;
}
.light-layout .ajax-update-content .blog-single-container .album-title header .big-rate-album .star-container {
  background: #e6e6e6;
}
.light-layout .ajax-update-content .rate-album .bottom p {
  color: #949494;
}
.light-layout .ajax-update-content .widget.widget-posts-navigation,
.light-layout .ajax-update-content .widget.filled {
  background: rgba(181, 181, 181, 0.1);
}
.light-layout .ajax-update-content .widget.widget-posts-navigation .prev-post:hover:not(.disabled) span,
.light-layout .ajax-update-content .widget.widget-posts-navigation .next-post:hover:not(.disabled) span,
.light-layout .ajax-update-content .widget.widget-posts-navigation .prev-post:hover:not(.disabled) i,
.light-layout .ajax-update-content .widget.widget-posts-navigation .next-post:hover:not(.disabled) i {
  color: #1c1c1c;
}
.light-layout .ajax-update-content form.main-search input {
  color: #000;
}
.light-layout .ajax-update-content .page-bg-container .bg {
  opacity: 0.2;
}
.light-layout .ajax-update-content div.author-info .right-author-info > div,
.light-layout .ajax-update-content .comment-container ul.comments li .comment .right-section .comment-author-link a,
.light-layout .ajax-update-content .comment-container ul.comments li .comment .right-section .comment-text p,
.light-layout .ajax-update-content .comment-container ul.comments li .pingback .right-section .comment-text p,
.light-layout .ajax-update-content .comment-container ul.comments li .pingback .right-section .comment-author-link a {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .comments-numb {
  background: #eee;
}
.light-layout .ajax-update-content .comments-numb .title-comments {
  color: #b9b9b9;
}
.light-layout .ajax-update-content .comments-numb .title-comments span {
  color: #888;
}
.light-layout .ajax-update-content .blog-articles a {
  color: #fff;
}
.light-layout .ajax-update-content .widget.widget-twitter {
  color: #1c1c1c;
  background: #eee;
}
.light-layout .ajax-update-content .widget.widget-twitter a {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .widget.widget-twitter .twitter-entries p {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .widget.widget-twitter .twitter-entries:after {
  color: #adadad;
}
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items li .item-container {
  background: #fafafa;
}
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items .item-body article:before {
  background: #000;
  opacity: 0.8;
}
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items .item-body article,
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items .item-body article a {
  color: #fff;
}
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items .item-body article:hover,
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items .item-body article:hover a,
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items .item-body article:hover .footer-buy-more-info .links-group a:after,
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items .item-body article:hover .footer-buy-more-info .links-group a {
  color: #fff !important;
}
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn {
  color: #fff;
}
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn:hover {
  color: #ff3c00;
}
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items li.have-events .item-container {
  background: #f7f7f7;
}
.light-layout .ajax-update-content .main-big-calendar .big-calendar-body .calendar-main-items .item-head .item-action .events-num a:before {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .widget.widget_calendar table,
.light-layout .ajax-update-content .widget.widget_calendar caption {
  background: #eee;
}
.light-layout .ajax-update-content .widget.widget_calendar caption,
.light-layout .ajax-update-content .widget.widget_calendar table tbody td {
  color: #353535;
}
.light-layout .ajax-update-content .widget.widget_calendar table thead tr th {
  color: #8c8c8c;
}
.light-layout .ajax-update-content .widget.widget_calendar table tfoot td#next a:before,
.light-layout .ajax-update-content .widget.widget_calendar table tfoot td#prev a:before {
  color: #9d9d9d;
}
.light-layout .ajax-update-content .widget.widget_calendar table thead tr {
  background: #e3e3e3;
}
.light-layout .ajax-update-content .woocommerce .cart-collaterals .cart_totals {
  background: #d7d7d7;
}
.light-layout .ajax-update-content .woocommerce .cart-collaterals .cart_totals table > tbody > tr.order-total > th {
  color: #919191;
}
.light-layout .ajax-update-content .woocommerce .cart-collaterals .cart_totals table > tbody > tr > td span:after {
  background: #c3c3c3;
}
.light-layout .ajax-update-content .woocommerce-info,
.light-layout .ajax-update-content .woocommerce-error,
.light-layout .ajax-update-content .woocommerce-message {
  background: #dedddd;
}
.light-layout .ajax-update-content .woocommerce form.checkout_coupon,
.light-layout .ajax-update-content .single-product form.checkout_coupon,
.light-layout .ajax-update-content .woocommerce form.login,
.light-layout .ajax-update-content .single-product form.login,
.light-layout .ajax-update-content .woocommerce form.register,
.light-layout .ajax-update-content .single-product form.register {
  border-color: #e4e4e4;
}
.light-layout .ajax-update-content .chosen-container-single .chosen-single,
.light-layout .ajax-update-content .chosen-container .chosen-drop,
.light-layout .ajax-update-content .woocommerce-checkout #payment {
  background-color: #d7d7d7;
}
.light-layout .ajax-update-content .woocommerce-checkout #payment ul.payment_methods {
  border-color: rgba(0, 0, 0, 0.2);
}
.light-layout .ajax-update-content .listing-filter-container .filtering-articles .articles-info > a,
.light-layout .ajax-update-content .woocommerce legend {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .events-articles article > time,
.light-layout .ajax-update-content .events-articles article header h2 a,
.light-layout .ajax-update-content .photo-albums-listing article {
  color: #fff;
}
.light-layout .ajax-update-content div.product div.product_meta span a {
  color: #1c1c1c;
}
.light-layout .ajax-update-content div.product .woocommerce-tabs ul.tabs li.active,
.light-layout .ajax-update-content div.product .woocommerce-tabs .panel {
  background-color: #dedede;
}
.light-layout .ajax-update-content .woocommerce .star-rating span,
.light-layout .ajax-update-content .single-product .star-rating span {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .woocommerce #review_form #respond textarea,
.light-layout .ajax-update-content .single-product #review_form #respond textarea {
  background-color: #d7d7d7;
}
.light-layout .ajax-update-content .widget ul li a:hover {
  color: #000;
}
.light-layout .ajax-update-content .widget .tagcloud a,
.light-layout .ajax-update-content .widget.woocommerce .product-categories a {
  background: #ddd;
}
.light-layout .ajax-update-content .widget .tagcloud a:hover,
.light-layout .ajax-update-content .widget.woocommerce .product-categories a:hover {
  color: #ddd;
  background-color: #999;
}
.light-layout .ajax-update-content .artists-articles article h2 a:hover {
  color: #ff3c00;
}
.light-layout .ajax-update-content .photo-albums-listing article {
  color: #fff;
}
.light-layout .ajax-update-content .mini-call-to-action h2,
.light-layout .ajax-update-content .mini-call-to-action p,
.light-layout .ajax-update-content .blog-articles article:hover > p,
.light-layout .ajax-update-content .blog-articles article .article-entries p,
.light-layout .ajax-update-content .blog-articles article footer .share-comment-group a,
.light-layout .ajax-update-content .blog-articles a,
.light-layout .ajax-update-content .blog-articles article:hover header figure figcaption a {
  color: #fff;
}
.light-layout .ajax-update-content .call-to-action-block blockquote p {
  color: #1c1c1c;
}
.light-layout .ajax-update-content .blog-articles article:hover footer .read-more {
  color: #ff3c00;
}
.light-layout .ajax-update-content .blog-articles article footer .read-more {
  color: #fff;
}
.light-layout .ajax-update-content .count-down-event.independent > div span.time-item,
.light-layout .ajax-update-content .count-down-event.independent > div span {
  color: #000;
}
.light-layout .ajax-update-content .mini-call-to-action:after,
.light-layout .ajax-update-content .section-padding.with-overlay:before {
  background: rgba(255, 255, 255, 0.8);
}
.light-layout .ajax-update-content .mini-call-to-action:after {
  background: rgba(0, 0, 0, 0.3);
}
.light-layout .ajax-update-content .mini-call-to-action:hover:after {
  background: rgba(0, 0, 0, 0.4);
}
.light-layout .ajax-update-content .call-to-action-block h2 {
  font-size: 3.5rem;
  font-weight: 400;
}
.light-layout .ajax-update-content .call-to-action-block p {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.light-layout .ajax-update-content #bit-events a.bit-track-artist-header .bit-invert {
  color: #1c1c1c !important;
}
.light-layout .ajax-update-content #bit-events .bit-events td,
.light-layout .ajax-update-content #bit-events .bit-events tr {
  border-bottom: 1px solid #c8d0e4 !important;
  border-top: none !important;
}
.light-layout .ajax-update-content #bit-events td .bit-uiButtonDefault a {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  border-radius: 0.3rem;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 0;
}
.light-layout .ajax-update-content .hit-box header h2 a,
.light-layout .ajax-update-content .hit-box footer a {
  color: #000;
}
.light-layout .ajax-update-content .hit-box footer .read-more,
.light-layout .ajax-update-content .social-mini-box > a.view {
  color: #fff;
}
.light-layout .ajax-update-content .social-mini-box .icon-social i {
  color: rgba(0, 0, 0, 0.7);
}
.light-layout .ajax-update-content .inline-event-listing .the-date {
  background: rgba(0, 0, 0, 0.03);
}
.light-layout .ajax-update-content .inline-event-listing .the-location span,
.light-layout .ajax-update-content .inline-event-listing .the-event-name span {
  color: rgba(0, 0, 0, 0.6);
}
.light-layout .ajax-update-content .inline-event-listing .the-reserve-button a {
  color: #fff;
}
.light-layout .ajax-update-content .inline-event-listing .the-reserve-button a:after {
  opacity: 0.6;
}
.light-layout .ajax-update-content .inline-event-listing .the-reserve-button a:hover {
  opacity: 1;
}
.light-layout .ajax-update-content .inline-event-listing .the-reserve-button a:hover:after {
  opacity: 1;
}
.light-layout .ajax-update-content .inline-event-listing:hover {
  background: rgba(0, 0, 0, 0.02);
}
.light-layout .ajax-update-content .inline-event-listing:hover .the-date {
  background: #252436;
}
.light-layout .ajax-update-content .inline-event-listing:hover .the-date span {
  color: #fff;
}
.light-layout .ajax-update-content .blog-listing-full-width article {
  border-bottom: 0.1rem solid rgba(205, 205, 205, 0.1);
}
.light-layout .ajax-update-content .blog-listing-full-width article .posted-date,
.light-layout .ajax-update-content .blog-listing-full-width article figcaption {
  color: #919191;
}
.light-layout .ajax-update-content .blog-listing-full-width article .posted-date a,
.light-layout .ajax-update-content .blog-listing-full-width article figcaption a,
.light-layout .ajax-update-content .blog-listing-full-width article .posted-date time,
.light-layout .ajax-update-content .blog-listing-full-width article figcaption time {
  color: #919191;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.light-layout .ajax-update-content .blog-listing-full-width article .posted-date a:hover,
.light-layout .ajax-update-content .blog-listing-full-width article figcaption a:hover,
.light-layout .ajax-update-content .blog-listing-full-width article .posted-date time:hover,
.light-layout .ajax-update-content .blog-listing-full-width article figcaption time:hover {
  color: #000;
}
.light-layout .ajax-update-content .blog-listing-full-width article .row figcaption a {
  color: #919191;
}
.light-layout .ajax-update-content .blog-listing-full-width article .row figcaption a:hover {
  color: #000;
}
.light-layout .ajax-update-content .blog-listing-full-width article .row header h2 a {
  color: #000;
}
.light-layout .ajax-update-content .blog-listing-full-width article .article-entries p {
  color: #333333;
}
@media (max-width: 1030px) {
  .light-layout .ajax-update-content .main-sidebar {
    background: #eee;
  }
  .light-layout .ajax-update-content .breadcrumb-page + div.no-negative-mt .main-sidebar {
    margin-top: 0;
  }
}
@media (max-width: 800px) {
  .light-layout .ajax-update-content .inline-event-listing {
    background: rgba(0, 0, 0, 0.02);
  }
}
.woocommerce.woocommerce-page.light-layout .ajax-update-content .listing-filter-container {
  margin-top: 10rem;
}
.woocommerce-page.light-layout .ajax-update-content .breadcrumb-page:before,
.woocommerce-page.light-layout .ajax-update-content .breadcrumb-page:after {
  display: none;
}
.woocommerce-page.light-layout .ajax-update-content .widget.widget_rating_filter .star-rating:before,
.woocommerce-page.light-layout .ajax-update-content .widget.widget_recent_reviews .star-rating:before,
.woocommerce-page.light-layout .ajax-update-content .widget.widget_top_rated_products .star-rating:before {
  color: rgba(0, 0, 0, 0.5);
}
.woocommerce-page.light-layout .ajax-update-content .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content,
.woocommerce-page.light-layout .ajax-update-content .single-product .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: rgba(0, 0, 0, 0.5);
}
.woocommerce-page.light-layout .ajax-update-content ul.products .product a {
  color: #fff;
}
.woocommerce-page.light-layout .ajax-update-content nav.woocommerce-pagination ul li a,
.woocommerce-page.light-layout .ajax-update-content .single-product nav.woocommerce-pagination ul li a,
.woocommerce-page.light-layout .ajax-update-content nav.woocommerce-pagination ul li span,
.woocommerce-page.light-layout .ajax-update-content .single-product nav.woocommerce-pagination ul li span {
  color: #353535;
}
.woocommerce-page.light-layout .ajax-update-content nav.woocommerce-pagination ul li a:focus,
.woocommerce-page.light-layout .ajax-update-content .single-product nav.woocommerce-pagination ul li a:focus,
.woocommerce-page.light-layout .ajax-update-content nav.woocommerce-pagination ul li a:hover,
.woocommerce-page.light-layout .ajax-update-content .single-product nav.woocommerce-pagination ul li a:hover,
.woocommerce-page.light-layout .ajax-update-content nav.woocommerce-pagination ul li span.current,
.woocommerce-page.light-layout .ajax-update-content .single-product nav.woocommerce-pagination ul li span.current {
  background: #e3e3e3;
}
.woocommerce-page.light-layout .ajax-update-content .shop_table.shop_table_responsive.cart .button {
  background-color: #b9b9b9;
  text-decoration: none;
  background-image: none;
  color: #515151;
}
.woocommerce-page.light-layout .ajax-update-content .shop_table.shop_table_responsive.cart .button:hover {
  background: #dad8da !important;
}
.woocommerce-page.light-layout .ajax-update-content .select2-container .select2-choice {
  border-color: #d7d7d7;
  background: #d7d7d7;
}
.woocommerce-page.light-layout .ajax-update-content .select2-container .select2-choice > .select2-chosen {
  border: 1px solid #d7d7d7;
  color: #919191;
  background-color: #d7d7d7;
}
.woocommerce-page.light-layout .ajax-update-content .shop_table.order_details,
.woocommerce-page.light-layout .ajax-update-content .shop_table.customer_details {
  background: rgba(0, 0, 0, 0.05);
}
.woocommerce-page.light-layout .ajax-update-content .shop_table.order_details tbody tr > *,
.woocommerce-page.light-layout .ajax-update-content .shop_table.customer_details tbody tr > * {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.5) !important;
}
.woocommerce-page.light-layout .ajax-update-content .shop_table.customer_details tbody tr:last-child > * {
  border-bottom: none !important;
}
.woocommerce-page.light-layout .ajax-update-content a.remove {
  color: #000;
}
.woocommerce-page.light-layout .ajax-update-content a.remove ^ :hover {
  color: #fff;
}
.woocommerce-page.light-layout .ajax-update-content div.product .product_title {
  color: #000;
}
.woocommerce-page.light-layout .select2-drop .select2-search input {
  background: #e2e2e2;
}
.woocommerce-page.light-layout .select2-drop {
  background: #d7d7d7;
  border-color: #d7d7d7;
}
.woocommerce-page.light-layout .select2-results {
  background: #d7d7d7;
}
.woocommerce-page.light-layout .select2-results .select2-result-label {
  color: #4c4c4c;
}
.woocommerce-page.light-layout .select2-results .select2-highlighted {
  background: #bfbfbf;
}
@media (max-width: 1030px) {
  .light-layout .blog-single-container .album-title {
    margin-top: 0;
  }
}
@media (max-width: 800px) {
  .light-layout .blog-single-container .album-title {
    padding-top: 0;
  }
}
.light-base-color:not(.mobile-header-item-opened) .mobile-header .mobile-header-trigger.menu-trigger,
.light-base-color .mobile-header .mobile-header-trigger.active {
  color: #000;
}
.light-base-color .main-header-container .main-header .additional-buttons .cart-header .the-icon span {
  color: #353535;
}
.light-base-color .carousel-news-article:hover .article-entries p {
  color: rgba(0, 0, 0, 0.6);
}
.light-base-color .carousel-news-article:hover footer .read-more a {
  color: #fff;
  background: rgba(31, 31, 31, 0.9);
}
.light-base-color .carousel-news-article:hover header h2 a,
.light-base-color .carousel-news-article:hover header time,
.light-base-color .carousel-news-article:hover footer .read-more a,
.light-base-color .carousel-news-article:hover footer .links-group a,
.light-base-color .widget.widget-events .view-calendar:hover,
.light-base-color .trak-item .additional-button a.shopping .icon,
.light-base-color .buy-button,
.light-base-color .comment-container ul.comments li .comment .right-section a.comment-reply-link:hover,
.light-base-color .comment-container ul.comments li .pingback .right-section a.comment-reply-link:hover,
.light-base-color .main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn,
.light-base-color .main-big-calendar .big-calendar-body .calendar-main-items .item-body article:hover,
.light-base-color .main-big-calendar .big-calendar-body .calendar-main-items .item-body article:hover h2 a,
.light-base-color .main-big-calendar .big-calendar-body .calendar-main-items .item-body article:hover .footer-buy-more-info .links-group a:after,
.light-base-color .main-big-calendar .big-calendar-body .calendar-main-items .item-body article:hover .footer-buy-more-info .links-group a,
.light-base-color .albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button.base-color .icon,
.light-base-color ul.products .onsale,
.light-base-color .widget.widget_calendar table tbody td#today,
.light-base-color .inline-event-listing .the-reserve-button a {
  color: #000 !important;
}
.light-base-color .trak-item.active .play-pause-button i,
.light-base-color .trak-item.active h2,
.light-base-color .trak-item.active h3,
.light-base-color .trak-item.active time,
.light-base-color .trak-item.active .additional-button a.shopping {
  color: #000;
}
.light-base-color .carousel-news-article:hover .article-entries p {
  color: #585858 !important;
}
.light-base-color .default_mesh_button {
  color: #1c1c1c;
}
.light-base-color .carousel-news-article footer .read-more a {
  color: #000;
}
.light-base-color .photo-albums-listing article:hover .photo-album-thumbnail:after {
  opacity: 0.7;
}
.light-base-color ul.products li.product .button,
.light-base-color ul.products li.product .added_to_cart {
  color: #000;
}
.light-base-color a.remove:hover,
.light-base-color .single-product a.remove:hover {
  color: #000 !important;
}
.light-base-color div.product form.cart button[type=submit] {
  color: #000;
}
.light-base-color .woocommerce-message a {
  color: #000 !important;
}
.light-layout.festival-button-style .shop_table.shop_table_responsive.cart .button,
.festival-button-style .shop_table.shop_table_responsive.cart .button,
.light-layout.festival-button-style .wc-proceed-to-checkout a.checkout-button,
.festival-button-style .wc-proceed-to-checkout a.checkout-button {
  padding: 1.55rem 2rem !important;
}
.light-layout.festival-button-style .mini-call-to-action .buy,
.festival-button-style .mini-call-to-action .buy {
  color: #ff3c00;
  padding: 1.2rem 3rem 1.2rem 3rem;
  border-radius: 0.4rem;
}
.light-layout.festival-button-style .mini-call-to-action .buy:after,
.festival-button-style .mini-call-to-action .buy:after {
  background: #ff3c00;
  opacity: 0.1;
}
.light-layout.festival-button-style .mini-call-to-action .buy:hover,
.festival-button-style .mini-call-to-action .buy:hover {
  color: #ff3c00;
}
.light-layout.festival-button-style .mini-call-to-action .buy:hover:after,
.festival-button-style .mini-call-to-action .buy:hover:after {
  opacity: 0.2;
}
.light-layout.festival-button-style .call-to-action-block blockquote p,
.festival-button-style .call-to-action-block blockquote p {
  font-weight: 300;
  font-size: 3rem;
  line-height: 3.8rem;
  color: #fff;
}
.light-layout.festival-button-style .call-to-action-block h2,
.festival-button-style .call-to-action-block h2 {
  padding-top: 0;
  font-weight: 300;
  font-size: 3rem;
}
.light-layout.festival-button-style .call-to-action-block p,
.festival-button-style .call-to-action-block p {
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.light-layout.festival-button-style .call-to-action-block blockquote cite,
.festival-button-style .call-to-action-block blockquote cite {
  color: #ff3c00;
  font-weight: 300;
  font-size: 1.4rem;
}
.light-layout.festival-button-style .blog-articles article footer .read-more,
.festival-button-style .blog-articles article footer .read-more,
.light-layout.festival-button-style .hit-box footer .read-more,
.festival-button-style .hit-box footer .read-more,
.light-layout.festival-button-style .social-mini-box > a.view,
.festival-button-style .social-mini-box > a.view {
  color: #ff3c00;
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 0.4rem;
}
.light-layout.festival-button-style .blog-articles article footer .read-more:after,
.festival-button-style .blog-articles article footer .read-more:after,
.light-layout.festival-button-style .hit-box footer .read-more:after,
.festival-button-style .hit-box footer .read-more:after,
.light-layout.festival-button-style .social-mini-box > a.view:after,
.festival-button-style .social-mini-box > a.view:after {
  background: #ff3c00;
  opacity: 0.1;
}
.light-layout.festival-button-style .blog-articles article footer .read-more:hover,
.festival-button-style .blog-articles article footer .read-more:hover,
.light-layout.festival-button-style .hit-box footer .read-more:hover,
.festival-button-style .hit-box footer .read-more:hover,
.light-layout.festival-button-style .social-mini-box > a.view:hover,
.festival-button-style .social-mini-box > a.view:hover {
  color: #ff3c00;
}
.light-layout.festival-button-style .blog-articles article footer .read-more:hover:after,
.festival-button-style .blog-articles article footer .read-more:hover:after,
.light-layout.festival-button-style .hit-box footer .read-more:hover:after,
.festival-button-style .hit-box footer .read-more:hover:after,
.light-layout.festival-button-style .social-mini-box > a.view:hover:after,
.festival-button-style .social-mini-box > a.view:hover:after {
  opacity: 0.2;
}
.light-layout.festival-button-style .call-to-action-block .default-btn,
.festival-button-style .call-to-action-block .default-btn {
  padding: 1rem 4rem 1rem 4rem;
  border-radius: 0.4rem;
  color: #ff3c00;
}
.light-layout.festival-button-style .call-to-action-block .default-btn:after,
.festival-button-style .call-to-action-block .default-btn:after {
  background: #ff3c00;
  opacity: 0.1;
}
.light-layout.festival-button-style .call-to-action-block .default-btn:hover,
.festival-button-style .call-to-action-block .default-btn:hover {
  color: #ff3c00;
}
.light-layout.festival-button-style .call-to-action-block .default-btn:hover:after,
.festival-button-style .call-to-action-block .default-btn:hover:after {
  opacity: 0.2;
}
.light-layout.festival-button-style .events-articles article footer .read-more,
.festival-button-style .events-articles article footer .read-more {
  color: #ff3c00;
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 0.4rem;
}
.light-layout.festival-button-style .events-articles article footer .read-more:after,
.festival-button-style .events-articles article footer .read-more:after {
  background: #ff3c00;
  opacity: 0.1;
}
.light-layout.festival-button-style .events-articles article footer .read-more:hover,
.festival-button-style .events-articles article footer .read-more:hover {
  color: #ff3c00;
}
.light-layout.festival-button-style .events-articles article footer .read-more:hover:after,
.festival-button-style .events-articles article footer .read-more:hover:after {
  opacity: 0.2;
}
.light-layout.festival-button-style .news-listing article footer > a,
.festival-button-style .news-listing article footer > a,
.light-layout.festival-button-style .news-listing article footer > div,
.festival-button-style .news-listing article footer > div {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.light-layout.festival-button-style .widget.widget-blog-article article footer .read-more,
.festival-button-style .widget.widget-blog-article article footer .read-more,
.light-layout.festival-button-style .rate-album input[type=submit],
.festival-button-style .rate-album input[type=submit],
.light-layout.festival-button-style .comment-container .title-comments a,
.festival-button-style .comment-container .title-comments a,
.light-layout.festival-button-style .comment-form-theme .form-submit input,
.festival-button-style .comment-form-theme .form-submit input,
.light-layout.festival-button-style .woocommerce #respond input#submit,
.festival-button-style .woocommerce #respond input#submit,
.light-layout.festival-button-style .single-product #respond input#submit,
.festival-button-style .single-product #respond input#submit,
.light-layout.festival-button-style .woocommerce a.button,
.festival-button-style .woocommerce a.button,
.light-layout.festival-button-style .woocommerce button.button,
.festival-button-style .woocommerce button.button,
.light-layout.festival-button-style .single-product button.button,
.festival-button-style .single-product button.button,
.light-layout.festival-button-style .woocommerce input.button,
.festival-button-style .woocommerce input.button,
.light-layout.festival-button-style .single-product input.button,
.festival-button-style .single-product input.button,
.light-layout.festival-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.festival-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.light-layout.festival-button-style .carousel-news-article footer .read-more a,
.festival-button-style .carousel-news-article footer .read-more a,
.light-layout.festival-button-style ul.products .product > .button,
.festival-button-style ul.products .product > .button,
.light-layout.festival-button-style .news-listing article footer .read-more,
.festival-button-style .news-listing article footer .read-more,
.light-layout.festival-button-style .widget.widget-latest-news article footer a.read-more,
.festival-button-style .widget.widget-latest-news article footer a.read-more,
.light-layout.festival-button-style .widget.widget_search input[type=submit],
.festival-button-style .widget.widget_search input[type=submit],
.light-layout.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.light-layout.festival-button-style .tickera input[type=submit],
.festival-button-style .tickera input[type=submit],
.light-layout.festival-button-style .tickera button[type=submit],
.festival-button-style .tickera button[type=submit],
.light-layout.festival-button-style .bookatable input[type=submit],
.festival-button-style .bookatable input[type=submit],
.light-layout.festival-button-style .bookatable button[type=submit],
.festival-button-style .bookatable button[type=submit],
.light-layout.festival-button-style div.tickera .tc_in_cart a,
.festival-button-style div.tickera .tc_in_cart a,
.light-layout.festival-button-style table.tickera .add_to_cart,
.festival-button-style table.tickera .add_to_cart,
.light-layout.festival-button-style .inline-event-listing .the-reserve-button a,
.festival-button-style .inline-event-listing .the-reserve-button a,
.light-layout.festival-button-style .tickera-page-order .blog-single-container.page p a,
.festival-button-style .tickera-page-order .blog-single-container.page p a,
.light-layout.festival-button-style .tickera .order-details tbody tr td a,
.festival-button-style .tickera .order-details tbody tr td a {
  color: #ff3c00;
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 0.4rem;
}
.light-layout.festival-button-style .widget.widget-blog-article article footer .read-more:after,
.festival-button-style .widget.widget-blog-article article footer .read-more:after,
.light-layout.festival-button-style .rate-album input[type=submit]:after,
.festival-button-style .rate-album input[type=submit]:after,
.light-layout.festival-button-style .comment-container .title-comments a:after,
.festival-button-style .comment-container .title-comments a:after,
.light-layout.festival-button-style .comment-form-theme .form-submit input:after,
.festival-button-style .comment-form-theme .form-submit input:after,
.light-layout.festival-button-style .woocommerce #respond input#submit:after,
.festival-button-style .woocommerce #respond input#submit:after,
.light-layout.festival-button-style .single-product #respond input#submit:after,
.festival-button-style .single-product #respond input#submit:after,
.light-layout.festival-button-style .woocommerce a.button:after,
.festival-button-style .woocommerce a.button:after,
.light-layout.festival-button-style .woocommerce button.button:after,
.festival-button-style .woocommerce button.button:after,
.light-layout.festival-button-style .single-product button.button:after,
.festival-button-style .single-product button.button:after,
.light-layout.festival-button-style .woocommerce input.button:after,
.festival-button-style .woocommerce input.button:after,
.light-layout.festival-button-style .single-product input.button:after,
.festival-button-style .single-product input.button:after,
.light-layout.festival-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:after,
.festival-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:after,
.light-layout.festival-button-style .carousel-news-article footer .read-more a:after,
.festival-button-style .carousel-news-article footer .read-more a:after,
.light-layout.festival-button-style ul.products .product > .button:after,
.festival-button-style ul.products .product > .button:after,
.light-layout.festival-button-style .news-listing article footer .read-more:after,
.festival-button-style .news-listing article footer .read-more:after,
.light-layout.festival-button-style .widget.widget-latest-news article footer a.read-more:after,
.festival-button-style .widget.widget-latest-news article footer a.read-more:after,
.light-layout.festival-button-style .widget.widget_search input[type=submit]:after,
.festival-button-style .widget.widget_search input[type=submit]:after,
.light-layout.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:after,
.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:after,
.light-layout.festival-button-style .tickera input[type=submit]:after,
.festival-button-style .tickera input[type=submit]:after,
.light-layout.festival-button-style .tickera button[type=submit]:after,
.festival-button-style .tickera button[type=submit]:after,
.light-layout.festival-button-style .bookatable input[type=submit]:after,
.festival-button-style .bookatable input[type=submit]:after,
.light-layout.festival-button-style .bookatable button[type=submit]:after,
.festival-button-style .bookatable button[type=submit]:after,
.light-layout.festival-button-style div.tickera .tc_in_cart a:after,
.festival-button-style div.tickera .tc_in_cart a:after,
.light-layout.festival-button-style table.tickera .add_to_cart:after,
.festival-button-style table.tickera .add_to_cart:after,
.light-layout.festival-button-style .inline-event-listing .the-reserve-button a:after,
.festival-button-style .inline-event-listing .the-reserve-button a:after,
.light-layout.festival-button-style .tickera-page-order .blog-single-container.page p a:after,
.festival-button-style .tickera-page-order .blog-single-container.page p a:after,
.light-layout.festival-button-style .tickera .order-details tbody tr td a:after,
.festival-button-style .tickera .order-details tbody tr td a:after {
  background: #ff3c00;
  opacity: 0.1;
}
.light-layout.festival-button-style .widget.widget-blog-article article footer .read-more:hover,
.festival-button-style .widget.widget-blog-article article footer .read-more:hover,
.light-layout.festival-button-style .rate-album input[type=submit]:hover,
.festival-button-style .rate-album input[type=submit]:hover,
.light-layout.festival-button-style .comment-container .title-comments a:hover,
.festival-button-style .comment-container .title-comments a:hover,
.light-layout.festival-button-style .comment-form-theme .form-submit input:hover,
.festival-button-style .comment-form-theme .form-submit input:hover,
.light-layout.festival-button-style .woocommerce #respond input#submit:hover,
.festival-button-style .woocommerce #respond input#submit:hover,
.light-layout.festival-button-style .single-product #respond input#submit:hover,
.festival-button-style .single-product #respond input#submit:hover,
.light-layout.festival-button-style .woocommerce a.button:hover,
.festival-button-style .woocommerce a.button:hover,
.light-layout.festival-button-style .woocommerce button.button:hover,
.festival-button-style .woocommerce button.button:hover,
.light-layout.festival-button-style .single-product button.button:hover,
.festival-button-style .single-product button.button:hover,
.light-layout.festival-button-style .woocommerce input.button:hover,
.festival-button-style .woocommerce input.button:hover,
.light-layout.festival-button-style .single-product input.button:hover,
.festival-button-style .single-product input.button:hover,
.light-layout.festival-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover,
.festival-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover,
.light-layout.festival-button-style .carousel-news-article footer .read-more a:hover,
.festival-button-style .carousel-news-article footer .read-more a:hover,
.light-layout.festival-button-style ul.products .product > .button:hover,
.festival-button-style ul.products .product > .button:hover,
.light-layout.festival-button-style .news-listing article footer .read-more:hover,
.festival-button-style .news-listing article footer .read-more:hover,
.light-layout.festival-button-style .widget.widget-latest-news article footer a.read-more:hover,
.festival-button-style .widget.widget-latest-news article footer a.read-more:hover,
.light-layout.festival-button-style .widget.widget_search input[type=submit]:hover,
.festival-button-style .widget.widget_search input[type=submit]:hover,
.light-layout.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.light-layout.festival-button-style .tickera input[type=submit]:hover,
.festival-button-style .tickera input[type=submit]:hover,
.light-layout.festival-button-style .tickera button[type=submit]:hover,
.festival-button-style .tickera button[type=submit]:hover,
.light-layout.festival-button-style .bookatable input[type=submit]:hover,
.festival-button-style .bookatable input[type=submit]:hover,
.light-layout.festival-button-style .bookatable button[type=submit]:hover,
.festival-button-style .bookatable button[type=submit]:hover,
.light-layout.festival-button-style div.tickera .tc_in_cart a:hover,
.festival-button-style div.tickera .tc_in_cart a:hover,
.light-layout.festival-button-style table.tickera .add_to_cart:hover,
.festival-button-style table.tickera .add_to_cart:hover,
.light-layout.festival-button-style .inline-event-listing .the-reserve-button a:hover,
.festival-button-style .inline-event-listing .the-reserve-button a:hover,
.light-layout.festival-button-style .tickera-page-order .blog-single-container.page p a:hover,
.festival-button-style .tickera-page-order .blog-single-container.page p a:hover,
.light-layout.festival-button-style .tickera .order-details tbody tr td a:hover,
.festival-button-style .tickera .order-details tbody tr td a:hover {
  color: #ff3c00;
}
.light-layout.festival-button-style .widget.widget-blog-article article footer .read-more:hover:after,
.festival-button-style .widget.widget-blog-article article footer .read-more:hover:after,
.light-layout.festival-button-style .rate-album input[type=submit]:hover:after,
.festival-button-style .rate-album input[type=submit]:hover:after,
.light-layout.festival-button-style .comment-container .title-comments a:hover:after,
.festival-button-style .comment-container .title-comments a:hover:after,
.light-layout.festival-button-style .comment-form-theme .form-submit input:hover:after,
.festival-button-style .comment-form-theme .form-submit input:hover:after,
.light-layout.festival-button-style .woocommerce #respond input#submit:hover:after,
.festival-button-style .woocommerce #respond input#submit:hover:after,
.light-layout.festival-button-style .single-product #respond input#submit:hover:after,
.festival-button-style .single-product #respond input#submit:hover:after,
.light-layout.festival-button-style .woocommerce a.button:hover:after,
.festival-button-style .woocommerce a.button:hover:after,
.light-layout.festival-button-style .woocommerce button.button:hover:after,
.festival-button-style .woocommerce button.button:hover:after,
.light-layout.festival-button-style .single-product button.button:hover:after,
.festival-button-style .single-product button.button:hover:after,
.light-layout.festival-button-style .woocommerce input.button:hover:after,
.festival-button-style .woocommerce input.button:hover:after,
.light-layout.festival-button-style .single-product input.button:hover:after,
.festival-button-style .single-product input.button:hover:after,
.light-layout.festival-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:after,
.festival-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:after,
.light-layout.festival-button-style .carousel-news-article footer .read-more a:hover:after,
.festival-button-style .carousel-news-article footer .read-more a:hover:after,
.light-layout.festival-button-style ul.products .product > .button:hover:after,
.festival-button-style ul.products .product > .button:hover:after,
.light-layout.festival-button-style .news-listing article footer .read-more:hover:after,
.festival-button-style .news-listing article footer .read-more:hover:after,
.light-layout.festival-button-style .widget.widget-latest-news article footer a.read-more:hover:after,
.festival-button-style .widget.widget-latest-news article footer a.read-more:hover:after,
.light-layout.festival-button-style .widget.widget_search input[type=submit]:hover:after,
.festival-button-style .widget.widget_search input[type=submit]:hover:after,
.light-layout.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:after,
.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:after,
.light-layout.festival-button-style .tickera input[type=submit]:hover:after,
.festival-button-style .tickera input[type=submit]:hover:after,
.light-layout.festival-button-style .tickera button[type=submit]:hover:after,
.festival-button-style .tickera button[type=submit]:hover:after,
.light-layout.festival-button-style .bookatable input[type=submit]:hover:after,
.festival-button-style .bookatable input[type=submit]:hover:after,
.light-layout.festival-button-style .bookatable button[type=submit]:hover:after,
.festival-button-style .bookatable button[type=submit]:hover:after,
.light-layout.festival-button-style div.tickera .tc_in_cart a:hover:after,
.festival-button-style div.tickera .tc_in_cart a:hover:after,
.light-layout.festival-button-style table.tickera .add_to_cart:hover:after,
.festival-button-style table.tickera .add_to_cart:hover:after,
.light-layout.festival-button-style .inline-event-listing .the-reserve-button a:hover:after,
.festival-button-style .inline-event-listing .the-reserve-button a:hover:after,
.light-layout.festival-button-style .tickera-page-order .blog-single-container.page p a:hover:after,
.festival-button-style .tickera-page-order .blog-single-container.page p a:hover:after,
.light-layout.festival-button-style .tickera .order-details tbody tr td a:hover:after,
.festival-button-style .tickera .order-details tbody tr td a:hover:after {
  opacity: 0.2;
}
.light-layout.festival-button-style .social-mini-box > a.view,
.festival-button-style .social-mini-box > a.view {
  background: rgba(255, 242, 0, 0.1);
}
.light-layout.festival-button-style .social-mini-box:hover > a.view,
.festival-button-style .social-mini-box:hover > a.view {
  background: rgba(255, 242, 0, 0.2);
  color: #ff3c00;
}
.light-layout.festival-button-style .hit-box footer .read-more,
.festival-button-style .hit-box footer .read-more {
  display: inline-block;
  line-height: 1rem;
  background: rgba(255, 242, 0, 0.1);
}
.light-layout.festival-button-style .hit-box footer .read-more:hover,
.festival-button-style .hit-box footer .read-more:hover {
  background: rgba(255, 242, 0, 0.2);
  color: #ff3c00;
}
.light-layout.festival-button-style .rate-album input[type=submit],
.festival-button-style .rate-album input[type=submit],
.light-layout.festival-button-style .comment-container .title-comments a,
.festival-button-style .comment-container .title-comments a,
.light-layout.festival-button-style .comment-form-theme .form-submit input,
.festival-button-style .comment-form-theme .form-submit input,
.light-layout.festival-button-style .woocommerce #respond input#submit,
.festival-button-style .woocommerce #respond input#submit,
.light-layout.festival-button-style .single-product #respond input#submit,
.festival-button-style .single-product #respond input#submit,
.light-layout.festival-button-style .woocommerce a.button,
.festival-button-style .woocommerce a.button,
.light-layout.festival-button-style .woocommerce button.button,
.festival-button-style .woocommerce button.button,
.light-layout.festival-button-style .single-product button.button,
.festival-button-style .single-product button.button,
.light-layout.festival-button-style .woocommerce input.button,
.festival-button-style .woocommerce input.button,
.light-layout.festival-button-style .single-product input.button,
.festival-button-style .single-product input.button,
.light-layout.festival-button-style .woocommerce input.button.alt,
.festival-button-style .woocommerce input.button.alt,
.light-layout.festival-button-style .woocommerce a.button.alt,
.festival-button-style .woocommerce a.button.alt,
.light-layout.festival-button-style ul.products .product > .button,
.festival-button-style ul.products .product > .button,
.light-layout.festival-button-style .news-listing article footer .read-more,
.festival-button-style .news-listing article footer .read-more,
.light-layout.festival-button-style .widget.widget-latest-news article footer a.read-more,
.festival-button-style .widget.widget-latest-news article footer a.read-more,
.light-layout.festival-button-style .widget.widget_search input[type=submit],
.festival-button-style .widget.widget_search input[type=submit],
.light-layout.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.light-layout.festival-button-style .tickera input[type=submit],
.festival-button-style .tickera input[type=submit],
.light-layout.festival-button-style .tickera button[type=submit],
.festival-button-style .tickera button[type=submit],
.light-layout.festival-button-style .bookatable input[type=submit],
.festival-button-style .bookatable input[type=submit],
.light-layout.festival-button-style .bookatable button[type=submit],
.festival-button-style .bookatable button[type=submit],
.light-layout.festival-button-style div.tickera .tc_in_cart a,
.festival-button-style div.tickera .tc_in_cart a,
.light-layout.festival-button-style table.tickera .add_to_cart,
.festival-button-style table.tickera .add_to_cart,
.light-layout.festival-button-style .tickera-page-order .blog-single-container.page p a,
.festival-button-style .tickera-page-order .blog-single-container.page p a,
.light-layout.festival-button-style .tickera .order-details tbody tr td a,
.festival-button-style .tickera .order-details tbody tr td a {
  background: rgba(255, 242, 0, 0.1);
}
.light-layout.festival-button-style .rate-album input[type=submit]:hover,
.festival-button-style .rate-album input[type=submit]:hover,
.light-layout.festival-button-style .comment-container .title-comments a:hover,
.festival-button-style .comment-container .title-comments a:hover,
.light-layout.festival-button-style .comment-form-theme .form-submit input:hover,
.festival-button-style .comment-form-theme .form-submit input:hover,
.light-layout.festival-button-style .woocommerce #respond input#submit:hover,
.festival-button-style .woocommerce #respond input#submit:hover,
.light-layout.festival-button-style .single-product #respond input#submit:hover,
.festival-button-style .single-product #respond input#submit:hover,
.light-layout.festival-button-style .woocommerce a.button:hover,
.festival-button-style .woocommerce a.button:hover,
.light-layout.festival-button-style .woocommerce button.button:hover,
.festival-button-style .woocommerce button.button:hover,
.light-layout.festival-button-style .single-product button.button:hover,
.festival-button-style .single-product button.button:hover,
.light-layout.festival-button-style .woocommerce input.button:hover,
.festival-button-style .woocommerce input.button:hover,
.light-layout.festival-button-style .single-product input.button:hover,
.festival-button-style .single-product input.button:hover,
.light-layout.festival-button-style .woocommerce input.button.alt:hover,
.festival-button-style .woocommerce input.button.alt:hover,
.light-layout.festival-button-style .woocommerce a.button.alt:hover,
.festival-button-style .woocommerce a.button.alt:hover,
.light-layout.festival-button-style ul.products .product > .button:hover,
.festival-button-style ul.products .product > .button:hover,
.light-layout.festival-button-style .news-listing article footer .read-more:hover,
.festival-button-style .news-listing article footer .read-more:hover,
.light-layout.festival-button-style .widget.widget-latest-news article footer a.read-more:hover,
.festival-button-style .widget.widget-latest-news article footer a.read-more:hover,
.light-layout.festival-button-style .widget.widget_search input[type=submit]:hover,
.festival-button-style .widget.widget_search input[type=submit]:hover,
.light-layout.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.festival-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.light-layout.festival-button-style .tickera input[type=submit]:hover,
.festival-button-style .tickera input[type=submit]:hover,
.light-layout.festival-button-style .tickera button[type=submit]:hover,
.festival-button-style .tickera button[type=submit]:hover,
.light-layout.festival-button-style .bookatable input[type=submit]:hover,
.festival-button-style .bookatable input[type=submit]:hover,
.light-layout.festival-button-style .bookatable button[type=submit]:hover,
.festival-button-style .bookatable button[type=submit]:hover,
.light-layout.festival-button-style div.tickera .tc_in_cart a:hover,
.festival-button-style div.tickera .tc_in_cart a:hover,
.light-layout.festival-button-style table.tickera .add_to_cart:hover,
.festival-button-style table.tickera .add_to_cart:hover,
.light-layout.festival-button-style .tickera-page-order .blog-single-container.page p a:hover,
.festival-button-style .tickera-page-order .blog-single-container.page p a:hover,
.light-layout.festival-button-style .tickera .order-details tbody tr td a:hover,
.festival-button-style .tickera .order-details tbody tr td a:hover {
  background: rgba(255, 242, 0, 0.2) !important;
}
.light-layout.festival-button-style .carousel-news-article footer .read-more a,
.festival-button-style .carousel-news-article footer .read-more a {
  padding: 0 2rem;
  color: #fff;
}
.light-layout.festival-button-style .widget .newsletter-container button:hover,
.festival-button-style .widget .newsletter-container button:hover {
  color: #fff;
  background: transparent;
}
.light-layout.festival-button-style .blog-articles article:hover footer .read-more,
.festival-button-style .blog-articles article:hover footer .read-more {
  color: #fff;
}
.light-layout.festival-button-style .rate-album input[type=submit],
.festival-button-style .rate-album input[type=submit],
.light-layout.festival-button-style .comment-container .title-comments a,
.festival-button-style .comment-container .title-comments a,
.light-layout.festival-button-style .comment-form-theme .form-submit input,
.festival-button-style .comment-form-theme .form-submit input,
.light-layout.festival-button-style .comments .comment-respond .form-submit input,
.festival-button-style .comments .comment-respond .form-submit input,
.light-layout.festival-button-style .woocommerce #respond input#submit,
.festival-button-style .woocommerce #respond input#submit,
.light-layout.festival-button-style .single-product #respond input#submit,
.festival-button-style .single-product #respond input#submit,
.light-layout.festival-button-style .woocommerce a.button,
.festival-button-style .woocommerce a.button,
.light-layout.festival-button-style .woocommerce button.button,
.festival-button-style .woocommerce button.button,
.light-layout.festival-button-style .single-product button.button,
.festival-button-style .single-product button.button,
.light-layout.festival-button-style .woocommerce input.button,
.festival-button-style .woocommerce input.button,
.light-layout.festival-button-style .single-product input.button,
.festival-button-style .single-product input.button {
  background: #801e00;
}
.light-layout.festival-button-style .widget .newsletter-container button,
.festival-button-style .widget .newsletter-container button {
  background: transparent;
}
.light-layout.festival-button-style .woocommerce #respond input#submit:hover,
.festival-button-style .woocommerce #respond input#submit:hover,
.light-layout.festival-button-style .single-product #respond input#submit:hover,
.festival-button-style .single-product #respond input#submit:hover,
.light-layout.festival-button-style .woocommerce a.button:hover,
.festival-button-style .woocommerce a.button:hover,
.light-layout.festival-button-style .woocommerce button.button:hover,
.festival-button-style .woocommerce button.button:hover,
.light-layout.festival-button-style .single-product button.button:hover,
.festival-button-style .single-product button.button:hover,
.light-layout.festival-button-style .woocommerce input.button:hover,
.festival-button-style .woocommerce input.button:hover,
.light-layout.festival-button-style .single-product input.button:hover,
.festival-button-style .single-product input.button:hover,
.light-layout.festival-button-style .buy-btn:hover,
.festival-button-style .buy-btn:hover,
.light-layout.festival-button-style .singular-album article figure figcaption .additional-buttons a.play-all-singular-songs:hover,
.festival-button-style .singular-album article figure figcaption .additional-buttons a.play-all-singular-songs:hover {
  color: #ff3c00;
}
.light-layout.festival-button-style .singular-album article figure figcaption .additional-buttons a.play-all-singular-songs,
.festival-button-style .singular-album article figure figcaption .additional-buttons a.play-all-singular-songs,
.light-layout.festival-button-style .carousel-news-article footer .read-more a,
.festival-button-style .carousel-news-article footer .read-more a,
.light-layout.festival-button-style .trak-item .additional-button a.shopping .icon,
.festival-button-style .trak-item .additional-button a.shopping .icon,
.light-layout.festival-button-style .buy-button,
.festival-button-style .buy-button,
.light-layout.festival-button-style .comment-container ul.comments li .comment .right-section a.comment-reply-link:hover,
.festival-button-style .comment-container ul.comments li .comment .right-section a.comment-reply-link:hover,
.light-layout.festival-button-style .comment-container ul.comments li .pingback .right-section a.comment-reply-link:hover,
.festival-button-style .comment-container ul.comments li .pingback .right-section a.comment-reply-link:hover,
.light-layout.festival-button-style .main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn,
.festival-button-style .main-big-calendar .big-calendar-body .calendar-main-items .item-body article .footer-buy-more-info .buy-btn,
.light-layout.festival-button-style .albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button.base-color .icon,
.festival-button-style .albums-container .album-content-container-tabs article figure figcaption .additional-buttons a.buy-button.base-color .icon {
  color: #000;
}
.light-layout.festival-button-style .carousel-news-article:hover footer .read-more a,
.festival-button-style .carousel-news-article:hover footer .read-more a {
  color: #fff;
  background: rgba(31, 31, 31, 0.9);
}
.light-layout.festival-button-style .news-listing article footer .read-more:hover:before,
.festival-button-style .news-listing article footer .read-more:hover:before,
.light-layout.festival-button-style .news-listing article footer .read-more:before,
.festival-button-style .news-listing article footer .read-more:before {
  opacity: 0;
}
.light-layout.festival-button-style .inline-event-listing .the-reserve-button a,
.festival-button-style .inline-event-listing .the-reserve-button a {
  padding: 2.5rem 3rem;
}
.light-layout.club-button-style .blog-articles article footer .read-more,
.club-button-style .blog-articles article footer .read-more,
.light-layout.club-button-style .hit-box footer .read-more,
.club-button-style .hit-box footer .read-more,
.light-layout.club-button-style .social-mini-box > a.view,
.club-button-style .social-mini-box > a.view {
  color: #ff3c00;
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
  box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
}
.light-layout.club-button-style .blog-articles article footer .read-more:after,
.club-button-style .blog-articles article footer .read-more:after,
.light-layout.club-button-style .hit-box footer .read-more:after,
.club-button-style .hit-box footer .read-more:after,
.light-layout.club-button-style .social-mini-box > a.view:after,
.club-button-style .social-mini-box > a.view:after {
  display: none;
}
.light-layout.club-button-style .blog-articles article footer .read-more:hover,
.club-button-style .blog-articles article footer .read-more:hover,
.light-layout.club-button-style .hit-box footer .read-more:hover,
.club-button-style .hit-box footer .read-more:hover,
.light-layout.club-button-style .social-mini-box > a.view:hover,
.club-button-style .social-mini-box > a.view:hover {
  color: #fff;
  background: rgba(255, 79, 202, 0.5);
  -webkit-box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
  box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
}
.light-layout.club-button-style .blog-articles article footer .read-more:hover:after,
.club-button-style .blog-articles article footer .read-more:hover:after,
.light-layout.club-button-style .hit-box footer .read-more:hover:after,
.club-button-style .hit-box footer .read-more:hover:after,
.light-layout.club-button-style .social-mini-box > a.view:hover:after,
.club-button-style .social-mini-box > a.view:hover:after {
  opacity: 1;
}
.light-layout.club-button-style .call-to-action-block .default-btn,
.club-button-style .call-to-action-block .default-btn {
  color: #ff3c00;
  padding: 1rem 4rem 1rem 4rem;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
  box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
  background: rgba(255, 79, 202, 0.4);
  color: #fff;
}
.light-layout.club-button-style .call-to-action-block .default-btn:after,
.club-button-style .call-to-action-block .default-btn:after {
  display: none;
}
.light-layout.club-button-style .call-to-action-block .default-btn:hover,
.club-button-style .call-to-action-block .default-btn:hover {
  color: #fff;
  background: rgba(255, 79, 202, 0.5);
  -webkit-box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
  box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
}
.light-layout.club-button-style .call-to-action-block .default-btn:hover:after,
.club-button-style .call-to-action-block .default-btn:hover:after {
  opacity: 1;
}
.light-layout.club-button-style .news-listing article footer > a,
.club-button-style .news-listing article footer > a,
.light-layout.club-button-style .news-listing article footer > div,
.club-button-style .news-listing article footer > div {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.light-layout.club-button-style .events-articles article footer .read-more,
.club-button-style .events-articles article footer .read-more {
  color: #ff3c00;
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
  box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
}
.light-layout.club-button-style .events-articles article footer .read-more:after,
.club-button-style .events-articles article footer .read-more:after {
  display: none;
}
.light-layout.club-button-style .events-articles article footer .read-more:hover,
.club-button-style .events-articles article footer .read-more:hover {
  color: #fff;
  background: rgba(255, 79, 202, 0.5);
  -webkit-box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
  box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
}
.light-layout.club-button-style .events-articles article footer .read-more:hover:after,
.club-button-style .events-articles article footer .read-more:hover:after {
  opacity: 1;
}
.light-layout.club-button-style .rate-album input[type=submit],
.club-button-style .rate-album input[type=submit],
.light-layout.club-button-style .comment-container .title-comments a,
.club-button-style .comment-container .title-comments a,
.light-layout.club-button-style .comment-form-theme .form-submit input,
.club-button-style .comment-form-theme .form-submit input,
.light-layout.club-button-style .comments .comment-respond .form-submit input,
.club-button-style .comments .comment-respond .form-submit input,
.light-layout.club-button-style .woocommerce #respond input#submit,
.club-button-style .woocommerce #respond input#submit,
.light-layout.club-button-style .single-product #respond input#submit,
.club-button-style .single-product #respond input#submit,
.light-layout.club-button-style .woocommerce a.button,
.club-button-style .woocommerce a.button,
.light-layout.club-button-style .single-product a.button,
.club-button-style .single-product a.button,
.light-layout.club-button-style .woocommerce button.button,
.club-button-style .woocommerce button.button,
.light-layout.club-button-style .single-product button.button,
.club-button-style .single-product button.button,
.light-layout.club-button-style .woocommerce input.button,
.club-button-style .woocommerce input.button,
.light-layout.club-button-style .single-product input.button,
.club-button-style .single-product input.button {
  background: #801e00;
}
.light-layout.club-button-style .widget.widget-blog-article article footer .read-more,
.club-button-style .widget.widget-blog-article article footer .read-more,
.light-layout.club-button-style .rate-album input[type=submit],
.club-button-style .rate-album input[type=submit],
.light-layout.club-button-style .comment-container .title-comments a,
.club-button-style .comment-container .title-comments a,
.light-layout.club-button-style .comment-form-theme .form-submit input,
.club-button-style .comment-form-theme .form-submit input,
.light-layout.club-button-style .woocommerce #respond input#submit,
.club-button-style .woocommerce #respond input#submit,
.light-layout.club-button-style .single-product #respond input#submit,
.club-button-style .single-product #respond input#submit,
.light-layout.club-button-style .woocommerce a.button,
.club-button-style .woocommerce a.button,
.light-layout.club-button-style .single-product a.button,
.club-button-style .single-product a.button,
.light-layout.club-button-style .woocommerce button.button,
.club-button-style .woocommerce button.button,
.light-layout.club-button-style .single-product button.button,
.club-button-style .single-product button.button,
.light-layout.club-button-style .woocommerce input.button,
.club-button-style .woocommerce input.button,
.light-layout.club-button-style .single-product input.button,
.club-button-style .single-product input.button,
.light-layout.club-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.club-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.light-layout.club-button-style .carousel-news-article footer .read-more a,
.club-button-style .carousel-news-article footer .read-more a,
.light-layout.club-button-style ul.products .product > .button,
.club-button-style ul.products .product > .button,
.light-layout.club-button-style .news-listing article footer .read-more,
.club-button-style .news-listing article footer .read-more,
.light-layout.club-button-style .widget.widget-latest-news article footer a.read-more,
.club-button-style .widget.widget-latest-news article footer a.read-more,
.light-layout.club-button-style .widget.widget_search input[type=submit],
.club-button-style .widget.widget_search input[type=submit],
.light-layout.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.light-layout.club-button-style .mini-call-to-action .buy,
.club-button-style .mini-call-to-action .buy,
.light-layout.club-button-style .tickera input[type=submit],
.club-button-style .tickera input[type=submit],
.light-layout.club-button-style .tickera button[type=submit],
.club-button-style .tickera button[type=submit],
.light-layout.club-button-style .bookatable input[type=submit],
.club-button-style .bookatable input[type=submit],
.light-layout.club-button-style .bookatable button[type=submit],
.club-button-style .bookatable button[type=submit],
.light-layout.club-button-style div.tickera .tc_in_cart a,
.club-button-style div.tickera .tc_in_cart a,
.light-layout.club-button-style table.tickera .add_to_cart,
.club-button-style table.tickera .add_to_cart,
.light-layout.club-button-style .inline-event-listing .the-reserve-button a,
.club-button-style .inline-event-listing .the-reserve-button a,
.light-layout.club-button-style .tickera-page-order .blog-single-container.page p a,
.club-button-style .tickera-page-order .blog-single-container.page p a,
.light-layout.club-button-style .tickera .order-details tbody tr td a,
.club-button-style .tickera .order-details tbody tr td a {
  color: #ff3c00;
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
  box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
}
.light-layout.club-button-style .widget.widget-blog-article article footer .read-more:after,
.club-button-style .widget.widget-blog-article article footer .read-more:after,
.light-layout.club-button-style .rate-album input[type=submit]:after,
.club-button-style .rate-album input[type=submit]:after,
.light-layout.club-button-style .comment-container .title-comments a:after,
.club-button-style .comment-container .title-comments a:after,
.light-layout.club-button-style .comment-form-theme .form-submit input:after,
.club-button-style .comment-form-theme .form-submit input:after,
.light-layout.club-button-style .woocommerce #respond input#submit:after,
.club-button-style .woocommerce #respond input#submit:after,
.light-layout.club-button-style .single-product #respond input#submit:after,
.club-button-style .single-product #respond input#submit:after,
.light-layout.club-button-style .woocommerce a.button:after,
.club-button-style .woocommerce a.button:after,
.light-layout.club-button-style .single-product a.button:after,
.club-button-style .single-product a.button:after,
.light-layout.club-button-style .woocommerce button.button:after,
.club-button-style .woocommerce button.button:after,
.light-layout.club-button-style .single-product button.button:after,
.club-button-style .single-product button.button:after,
.light-layout.club-button-style .woocommerce input.button:after,
.club-button-style .woocommerce input.button:after,
.light-layout.club-button-style .single-product input.button:after,
.club-button-style .single-product input.button:after,
.light-layout.club-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:after,
.club-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:after,
.light-layout.club-button-style .carousel-news-article footer .read-more a:after,
.club-button-style .carousel-news-article footer .read-more a:after,
.light-layout.club-button-style ul.products .product > .button:after,
.club-button-style ul.products .product > .button:after,
.light-layout.club-button-style .news-listing article footer .read-more:after,
.club-button-style .news-listing article footer .read-more:after,
.light-layout.club-button-style .widget.widget-latest-news article footer a.read-more:after,
.club-button-style .widget.widget-latest-news article footer a.read-more:after,
.light-layout.club-button-style .widget.widget_search input[type=submit]:after,
.club-button-style .widget.widget_search input[type=submit]:after,
.light-layout.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:after,
.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:after,
.light-layout.club-button-style .mini-call-to-action .buy:after,
.club-button-style .mini-call-to-action .buy:after,
.light-layout.club-button-style .tickera input[type=submit]:after,
.club-button-style .tickera input[type=submit]:after,
.light-layout.club-button-style .tickera button[type=submit]:after,
.club-button-style .tickera button[type=submit]:after,
.light-layout.club-button-style .bookatable input[type=submit]:after,
.club-button-style .bookatable input[type=submit]:after,
.light-layout.club-button-style .bookatable button[type=submit]:after,
.club-button-style .bookatable button[type=submit]:after,
.light-layout.club-button-style div.tickera .tc_in_cart a:after,
.club-button-style div.tickera .tc_in_cart a:after,
.light-layout.club-button-style table.tickera .add_to_cart:after,
.club-button-style table.tickera .add_to_cart:after,
.light-layout.club-button-style .inline-event-listing .the-reserve-button a:after,
.club-button-style .inline-event-listing .the-reserve-button a:after,
.light-layout.club-button-style .tickera-page-order .blog-single-container.page p a:after,
.club-button-style .tickera-page-order .blog-single-container.page p a:after,
.light-layout.club-button-style .tickera .order-details tbody tr td a:after,
.club-button-style .tickera .order-details tbody tr td a:after {
  display: none;
}
.light-layout.club-button-style .widget.widget-blog-article article footer .read-more:hover,
.club-button-style .widget.widget-blog-article article footer .read-more:hover,
.light-layout.club-button-style .rate-album input[type=submit]:hover,
.club-button-style .rate-album input[type=submit]:hover,
.light-layout.club-button-style .comment-container .title-comments a:hover,
.club-button-style .comment-container .title-comments a:hover,
.light-layout.club-button-style .comment-form-theme .form-submit input:hover,
.club-button-style .comment-form-theme .form-submit input:hover,
.light-layout.club-button-style .woocommerce #respond input#submit:hover,
.club-button-style .woocommerce #respond input#submit:hover,
.light-layout.club-button-style .single-product #respond input#submit:hover,
.club-button-style .single-product #respond input#submit:hover,
.light-layout.club-button-style .woocommerce a.button:hover,
.club-button-style .woocommerce a.button:hover,
.light-layout.club-button-style .single-product a.button:hover,
.club-button-style .single-product a.button:hover,
.light-layout.club-button-style .woocommerce button.button:hover,
.club-button-style .woocommerce button.button:hover,
.light-layout.club-button-style .single-product button.button:hover,
.club-button-style .single-product button.button:hover,
.light-layout.club-button-style .woocommerce input.button:hover,
.club-button-style .woocommerce input.button:hover,
.light-layout.club-button-style .single-product input.button:hover,
.club-button-style .single-product input.button:hover,
.light-layout.club-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover,
.club-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover,
.light-layout.club-button-style .carousel-news-article footer .read-more a:hover,
.club-button-style .carousel-news-article footer .read-more a:hover,
.light-layout.club-button-style ul.products .product > .button:hover,
.club-button-style ul.products .product > .button:hover,
.light-layout.club-button-style .news-listing article footer .read-more:hover,
.club-button-style .news-listing article footer .read-more:hover,
.light-layout.club-button-style .widget.widget-latest-news article footer a.read-more:hover,
.club-button-style .widget.widget-latest-news article footer a.read-more:hover,
.light-layout.club-button-style .widget.widget_search input[type=submit]:hover,
.club-button-style .widget.widget_search input[type=submit]:hover,
.light-layout.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.light-layout.club-button-style .mini-call-to-action .buy:hover,
.club-button-style .mini-call-to-action .buy:hover,
.light-layout.club-button-style .tickera input[type=submit]:hover,
.club-button-style .tickera input[type=submit]:hover,
.light-layout.club-button-style .tickera button[type=submit]:hover,
.club-button-style .tickera button[type=submit]:hover,
.light-layout.club-button-style .bookatable input[type=submit]:hover,
.club-button-style .bookatable input[type=submit]:hover,
.light-layout.club-button-style .bookatable button[type=submit]:hover,
.club-button-style .bookatable button[type=submit]:hover,
.light-layout.club-button-style div.tickera .tc_in_cart a:hover,
.club-button-style div.tickera .tc_in_cart a:hover,
.light-layout.club-button-style table.tickera .add_to_cart:hover,
.club-button-style table.tickera .add_to_cart:hover,
.light-layout.club-button-style .inline-event-listing .the-reserve-button a:hover,
.club-button-style .inline-event-listing .the-reserve-button a:hover,
.light-layout.club-button-style .tickera-page-order .blog-single-container.page p a:hover,
.club-button-style .tickera-page-order .blog-single-container.page p a:hover,
.light-layout.club-button-style .tickera .order-details tbody tr td a:hover,
.club-button-style .tickera .order-details tbody tr td a:hover {
  color: #fff;
  background: rgba(255, 79, 202, 0.5);
  -webkit-box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
  box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
}
.light-layout.club-button-style .widget.widget-blog-article article footer .read-more:hover:after,
.club-button-style .widget.widget-blog-article article footer .read-more:hover:after,
.light-layout.club-button-style .rate-album input[type=submit]:hover:after,
.club-button-style .rate-album input[type=submit]:hover:after,
.light-layout.club-button-style .comment-container .title-comments a:hover:after,
.club-button-style .comment-container .title-comments a:hover:after,
.light-layout.club-button-style .comment-form-theme .form-submit input:hover:after,
.club-button-style .comment-form-theme .form-submit input:hover:after,
.light-layout.club-button-style .woocommerce #respond input#submit:hover:after,
.club-button-style .woocommerce #respond input#submit:hover:after,
.light-layout.club-button-style .single-product #respond input#submit:hover:after,
.club-button-style .single-product #respond input#submit:hover:after,
.light-layout.club-button-style .woocommerce a.button:hover:after,
.club-button-style .woocommerce a.button:hover:after,
.light-layout.club-button-style .single-product a.button:hover:after,
.club-button-style .single-product a.button:hover:after,
.light-layout.club-button-style .woocommerce button.button:hover:after,
.club-button-style .woocommerce button.button:hover:after,
.light-layout.club-button-style .single-product button.button:hover:after,
.club-button-style .single-product button.button:hover:after,
.light-layout.club-button-style .woocommerce input.button:hover:after,
.club-button-style .woocommerce input.button:hover:after,
.light-layout.club-button-style .single-product input.button:hover:after,
.club-button-style .single-product input.button:hover:after,
.light-layout.club-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:after,
.club-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:after,
.light-layout.club-button-style .carousel-news-article footer .read-more a:hover:after,
.club-button-style .carousel-news-article footer .read-more a:hover:after,
.light-layout.club-button-style ul.products .product > .button:hover:after,
.club-button-style ul.products .product > .button:hover:after,
.light-layout.club-button-style .news-listing article footer .read-more:hover:after,
.club-button-style .news-listing article footer .read-more:hover:after,
.light-layout.club-button-style .widget.widget-latest-news article footer a.read-more:hover:after,
.club-button-style .widget.widget-latest-news article footer a.read-more:hover:after,
.light-layout.club-button-style .widget.widget_search input[type=submit]:hover:after,
.club-button-style .widget.widget_search input[type=submit]:hover:after,
.light-layout.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:after,
.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:after,
.light-layout.club-button-style .mini-call-to-action .buy:hover:after,
.club-button-style .mini-call-to-action .buy:hover:after,
.light-layout.club-button-style .tickera input[type=submit]:hover:after,
.club-button-style .tickera input[type=submit]:hover:after,
.light-layout.club-button-style .tickera button[type=submit]:hover:after,
.club-button-style .tickera button[type=submit]:hover:after,
.light-layout.club-button-style .bookatable input[type=submit]:hover:after,
.club-button-style .bookatable input[type=submit]:hover:after,
.light-layout.club-button-style .bookatable button[type=submit]:hover:after,
.club-button-style .bookatable button[type=submit]:hover:after,
.light-layout.club-button-style div.tickera .tc_in_cart a:hover:after,
.club-button-style div.tickera .tc_in_cart a:hover:after,
.light-layout.club-button-style table.tickera .add_to_cart:hover:after,
.club-button-style table.tickera .add_to_cart:hover:after,
.light-layout.club-button-style .inline-event-listing .the-reserve-button a:hover:after,
.club-button-style .inline-event-listing .the-reserve-button a:hover:after,
.light-layout.club-button-style .tickera-page-order .blog-single-container.page p a:hover:after,
.club-button-style .tickera-page-order .blog-single-container.page p a:hover:after,
.light-layout.club-button-style .tickera .order-details tbody tr td a:hover:after,
.club-button-style .tickera .order-details tbody tr td a:hover:after {
  opacity: 1;
}
.light-layout.club-button-style .carousel-news-article footer .read-more a,
.club-button-style .carousel-news-article footer .read-more a {
  padding: 0 2rem;
  color: #fff;
}
.light-layout.club-button-style .widget.widget-blog-article article:hover footer .read-more,
.club-button-style .widget.widget-blog-article article:hover footer .read-more {
  color: #fff;
}
.light-layout.club-button-style .widget.widget-blog-article article footer .read-more:hover:after,
.club-button-style .widget.widget-blog-article article footer .read-more:hover:after {
  opacity: 1;
}
.light-layout.club-button-style .blog-articles article:hover footer .read-more,
.club-button-style .blog-articles article:hover footer .read-more {
  color: #fff !important;
}
.light-layout.club-button-style .social-mini-box > a.view,
.club-button-style .social-mini-box > a.view {
  background: none;
}
.light-layout.club-button-style .social-mini-box:hover > a.view,
.club-button-style .social-mini-box:hover > a.view {
  color: #fff;
  background: rgba(245, 55, 194, 0.5);
  -webkit-box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
  box-shadow: 0 0 0 0.2rem #ff3c00, 0 0 0 0.3rem #450959, 0 0 4rem #ff3c00;
}
.light-layout.club-button-style .hit-box:hover footer .read-more,
.club-button-style .hit-box:hover footer .read-more {
  color: #fff;
}
.light-layout.club-button-style .hit-box footer .read-more,
.club-button-style .hit-box footer .read-more {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  background: none;
  display: inline-block;
  line-height: 1.1rem;
  font-weight: 500;
}
.light-layout.club-button-style .comment-form-theme .form-submit input:hover,
.club-button-style .comment-form-theme .form-submit input:hover,
.light-layout.club-button-style .comments .comment-respond .form-submit input:hover,
.club-button-style .comments .comment-respond .form-submit input:hover {
  background: #ff3c00;
}
.light-layout.club-button-style .rate-album input[type=submit],
.club-button-style .rate-album input[type=submit],
.light-layout.club-button-style .comment-container .title-comments a,
.club-button-style .comment-container .title-comments a,
.light-layout.club-button-style .comment-form-theme .form-submit input,
.club-button-style .comment-form-theme .form-submit input,
.light-layout.club-button-style .woocommerce #respond input#submit,
.club-button-style .woocommerce #respond input#submit,
.light-layout.club-button-style .single-product #respond input#submit,
.club-button-style .single-product #respond input#submit,
.light-layout.club-button-style .woocommerce a.button,
.club-button-style .woocommerce a.button,
.light-layout.club-button-style .single-product a.button,
.club-button-style .single-product a.button,
.light-layout.club-button-style .woocommerce button.button,
.club-button-style .woocommerce button.button,
.light-layout.club-button-style .single-product button.button,
.club-button-style .single-product button.button,
.light-layout.club-button-style .woocommerce input.button,
.club-button-style .woocommerce input.button,
.light-layout.club-button-style .single-product input.button,
.club-button-style .single-product input.button,
.light-layout.club-button-style .woocommerce input.button.alt,
.club-button-style .woocommerce input.button.alt,
.light-layout.club-button-style .woocommerce a.button.alt,
.club-button-style .woocommerce a.button.alt,
.light-layout.club-button-style .carousel-news-article footer .read-more a,
.club-button-style .carousel-news-article footer .read-more a,
.light-layout.club-button-style ul.products .product > .button,
.club-button-style ul.products .product > .button,
.light-layout.club-button-style .news-listing article footer .read-more,
.club-button-style .news-listing article footer .read-more,
.light-layout.club-button-style .widget.widget-latest-news article footer a.read-more,
.club-button-style .widget.widget-latest-news article footer a.read-more,
.light-layout.club-button-style .widget.widget_search input[type=submit],
.club-button-style .widget.widget_search input[type=submit],
.light-layout.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.light-layout.club-button-style .tickera input[type=submit],
.club-button-style .tickera input[type=submit],
.light-layout.club-button-style .tickera button[type=submit],
.club-button-style .tickera button[type=submit],
.light-layout.club-button-style .bookatable input[type=submit],
.club-button-style .bookatable input[type=submit],
.light-layout.club-button-style .bookatable button[type=submit],
.club-button-style .bookatable button[type=submit],
.light-layout.club-button-style div.tickera .tc_in_cart a,
.club-button-style div.tickera .tc_in_cart a,
.light-layout.club-button-style table.tickera .add_to_cart,
.club-button-style table.tickera .add_to_cart,
.light-layout.club-button-style .tickera-page-order .blog-single-container.page p a,
.club-button-style .tickera-page-order .blog-single-container.page p a,
.light-layout.club-button-style .tickera .order-details tbody tr td a,
.club-button-style .tickera .order-details tbody tr td a {
  background: transparent;
}
.light-layout.club-button-style .rate-album input[type=submit]:hover,
.club-button-style .rate-album input[type=submit]:hover,
.light-layout.club-button-style .comment-container .title-comments a:hover,
.club-button-style .comment-container .title-comments a:hover,
.light-layout.club-button-style .comment-form-theme .form-submit input:hover,
.club-button-style .comment-form-theme .form-submit input:hover,
.light-layout.club-button-style .woocommerce #respond input#submit:hover,
.club-button-style .woocommerce #respond input#submit:hover,
.light-layout.club-button-style .single-product #respond input#submit:hover,
.club-button-style .single-product #respond input#submit:hover,
.light-layout.club-button-style .woocommerce a.button:hover,
.club-button-style .woocommerce a.button:hover,
.light-layout.club-button-style .single-product a.button:hover,
.club-button-style .single-product a.button:hover,
.light-layout.club-button-style .woocommerce button.button:hover,
.club-button-style .woocommerce button.button:hover,
.light-layout.club-button-style .single-product button.button:hover,
.club-button-style .single-product button.button:hover,
.light-layout.club-button-style .woocommerce input.button:hover,
.club-button-style .woocommerce input.button:hover,
.light-layout.club-button-style .single-product input.button:hover,
.club-button-style .single-product input.button:hover,
.light-layout.club-button-style .woocommerce input.button.alt:hover,
.club-button-style .woocommerce input.button.alt:hover,
.light-layout.club-button-style .woocommerce a.button.alt:hover,
.club-button-style .woocommerce a.button.alt:hover,
.light-layout.club-button-style .carousel-news-article footer .read-more a:hover,
.club-button-style .carousel-news-article footer .read-more a:hover,
.light-layout.club-button-style ul.products .product > .button:hover,
.club-button-style ul.products .product > .button:hover,
.light-layout.club-button-style .news-listing article footer .read-more:hover,
.club-button-style .news-listing article footer .read-more:hover,
.light-layout.club-button-style .widget.widget-latest-news article footer a.read-more:hover,
.club-button-style .widget.widget-latest-news article footer a.read-more:hover,
.light-layout.club-button-style .widget.widget_search input[type=submit]:hover,
.club-button-style .widget.widget_search input[type=submit]:hover,
.light-layout.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.light-layout.club-button-style .tickera input[type=submit]:hover,
.club-button-style .tickera input[type=submit]:hover,
.light-layout.club-button-style .tickera button[type=submit]:hover,
.club-button-style .tickera button[type=submit]:hover,
.light-layout.club-button-style .bookatable input[type=submit]:hover,
.club-button-style .bookatable input[type=submit]:hover,
.light-layout.club-button-style .bookatable button[type=submit]:hover,
.club-button-style .bookatable button[type=submit]:hover,
.light-layout.club-button-style div.tickera .tc_in_cart a:hover,
.club-button-style div.tickera .tc_in_cart a:hover,
.light-layout.club-button-style table.tickera .add_to_cart:hover,
.club-button-style table.tickera .add_to_cart:hover,
.light-layout.club-button-style .tickera-page-order .blog-single-container.page p a:hover,
.club-button-style .tickera-page-order .blog-single-container.page p a:hover,
.light-layout.club-button-style .tickera .order-details tbody tr td a:hover,
.club-button-style .tickera .order-details tbody tr td a:hover {
  background: rgba(245, 55, 194, 0.5) !important;
}
.light-layout.club-button-style .widget.widget-latest-news article footer a.read-more,
.club-button-style .widget.widget-latest-news article footer a.read-more {
  padding: 0.8rem 1.7rem !important;
}
.light-layout.club-button-style .news-listing article footer .read-more,
.club-button-style .news-listing article footer .read-more {
  padding: 1.2rem 3rem;
}
.light-layout.club-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.club-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy {
  padding: 0.6rem 1.5rem;
}
.light-layout.club-button-style .comment-container .title-comments a,
.club-button-style .comment-container .title-comments a,
.light-layout.club-button-style .widget.widget_search input[type=submit],
.club-button-style .widget.widget_search input[type=submit] {
  padding: 1.5rem 2.5rem;
}
.light-layout.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.club-button-style .widget.woocommerce .woocommerce-product-search input[type=submit] {
  padding: 1rem 2.5rem;
}
.light-layout.club-button-style .rate-album input[type=submit],
.club-button-style .rate-album input[type=submit],
.light-layout.club-button-style .comment-form-theme .form-submit input,
.club-button-style .comment-form-theme .form-submit input {
  padding: 1.55rem 4rem;
}
.light-layout.club-button-style .woocommerce #respond input#submit,
.club-button-style .woocommerce #respond input#submit,
.light-layout.club-button-style .single-product #respond input#submit,
.club-button-style .single-product #respond input#submit,
.light-layout.club-button-style .woocommerce a.button,
.club-button-style .woocommerce a.button,
.light-layout.club-button-style .single-product a.button,
.club-button-style .single-product a.button,
.light-layout.club-button-style .woocommerce button.button,
.club-button-style .woocommerce button.button,
.light-layout.club-button-style .single-product button.button,
.club-button-style .single-product button.button,
.light-layout.club-button-style .woocommerce input.button,
.club-button-style .woocommerce input.button,
.light-layout.club-button-style .single-product input.button,
.club-button-style .single-product input.button,
.light-layout.club-button-style .woocommerce input.button.alt,
.club-button-style .woocommerce input.button.alt,
.light-layout.club-button-style .woocommerce a.button.alt,
.club-button-style .woocommerce a.button.alt {
  padding: 1.5rem 3rem;
}
.light-layout.club-button-style .widget .newsletter-container button,
.club-button-style .widget .newsletter-container button {
  background: transparent;
}
.light-layout.club-button-style .comment-container .title-comments a:hover,
.club-button-style .comment-container .title-comments a:hover,
.light-layout.club-button-style .woocommerce #respond input#submit:hover,
.club-button-style .woocommerce #respond input#submit:hover,
.light-layout.club-button-style .single-product #respond input#submit:hover,
.club-button-style .single-product #respond input#submit:hover,
.light-layout.club-button-style .woocommerce a.button:hover,
.club-button-style .woocommerce a.button:hover,
.light-layout.club-button-style .single-product a.button:hover,
.club-button-style .single-product a.button:hover,
.light-layout.club-button-style .woocommerce button.button:hover,
.club-button-style .woocommerce button.button:hover,
.light-layout.club-button-style .single-product button.button:hover,
.club-button-style .single-product button.button:hover,
.light-layout.club-button-style .woocommerce input.button:hover,
.club-button-style .woocommerce input.button:hover,
.light-layout.club-button-style .single-product input.button:hover,
.club-button-style .single-product input.button:hover,
.light-layout.club-button-style .buy-btn:hover,
.club-button-style .buy-btn:hover {
  color: #fff;
}
.light-layout.club-button-style .news-listing article footer .read-more:before,
.club-button-style .news-listing article footer .read-more:before {
  display: none;
}
.light-layout.club-button-style .carousel-news-article:hover footer .read-more a,
.club-button-style .carousel-news-article:hover footer .read-more a {
  color: #fff !important;
}
.light-layout.club-button-style .inline-event-listing .the-reserve-button a,
.club-button-style .inline-event-listing .the-reserve-button a {
  padding: 2.5rem 3rem;
  border-radius: 0.8rem;
}
.light-layout.club-button-style a.button:hover,
.club-button-style a.button:hover,
.light-layout.club-button-style div.product form.cart button[type=submit],
.club-button-style div.product form.cart button[type=submit] {
  color: #fff;
}
.light-layout.club-button-style.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.club-button-style.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  color: #fff;
}
.light-layout.artist-dark-button-style a.button:hover,
.artist-dark-button-style a.button:hover,
.light-layout.artist-dark-button-style div.product form.cart button[type=submit],
.artist-dark-button-style div.product form.cart button[type=submit] {
  color: #fff;
}
.light-layout.artist-dark-button-style div.product form.cart button[type=submit],
.artist-dark-button-style div.product form.cart button[type=submit] {
  background: transparent;
}
.light-layout.artist-dark-button-style div.product form.cart button[type=submit]:hover,
.artist-dark-button-style div.product form.cart button[type=submit]:hover {
  color: #000;
}
.light-layout.artist-dark-button-style .call-to-action-block h2,
.artist-dark-button-style .call-to-action-block h2 {
  padding-top: 0;
  font-weight: 300;
  font-size: 3rem;
}
.light-layout.artist-dark-button-style #bit-events td .bit-uiButtonDefault a,
.artist-dark-button-style #bit-events td .bit-uiButtonDefault a {
  background: #ff3c00;
  border-radius: 3rem;
}
.light-layout.artist-dark-button-style .call-to-action-block h2,
.artist-dark-button-style .call-to-action-block h2 {
  padding-top: 0;
  font-weight: 300;
  font-size: 3rem;
}
.light-layout.artist-dark-button-style .call-to-action-block p,
.artist-dark-button-style .call-to-action-block p {
  color: #6e6e6e;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 300;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy,
.artist-dark-button-style .mini-call-to-action .buy {
  color: #fff;
  padding: 1.2rem 3rem 1.2rem 3rem;
  border-radius: 3rem;
  display: inline-block;
  line-height: 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.7);
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:after,
.artist-dark-button-style .mini-call-to-action .buy:after,
.light-layout.artist-dark-button-style .mini-call-to-action .buy:before,
.artist-dark-button-style .mini-call-to-action .buy:before {
  background: transparent;
  opacity: 0.1;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover,
.artist-dark-button-style .mini-call-to-action .buy:hover {
  color: #000;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover:after,
.artist-dark-button-style .mini-call-to-action .buy:hover:after,
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover:before,
.artist-dark-button-style .mini-call-to-action .buy:hover:before {
  background: #fff;
  opacity: 1;
}
.light-layout.artist-dark-button-style .blog-articles article footer .read-more,
.artist-dark-button-style .blog-articles article footer .read-more,
.light-layout.artist-dark-button-style .hit-box footer .read-more,
.artist-dark-button-style .hit-box footer .read-more,
.light-layout.artist-dark-button-style .events-articles article footer .read-more,
.artist-dark-button-style .events-articles article footer .read-more {
  color: #fff;
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 2rem;
  display: inline-block;
  line-height: 1rem;
}
.light-layout.artist-dark-button-style .blog-articles article footer .read-more:after,
.artist-dark-button-style .blog-articles article footer .read-more:after,
.light-layout.artist-dark-button-style .hit-box footer .read-more:after,
.artist-dark-button-style .hit-box footer .read-more:after,
.light-layout.artist-dark-button-style .events-articles article footer .read-more:after,
.artist-dark-button-style .events-articles article footer .read-more:after {
  background: #ff3c00;
  opacity: 1;
}
.light-layout.artist-dark-button-style .blog-articles article footer .read-more:hover,
.artist-dark-button-style .blog-articles article footer .read-more:hover,
.light-layout.artist-dark-button-style .hit-box footer .read-more:hover,
.artist-dark-button-style .hit-box footer .read-more:hover,
.light-layout.artist-dark-button-style .events-articles article footer .read-more:hover,
.artist-dark-button-style .events-articles article footer .read-more:hover {
  color: #fff;
}
.light-layout.artist-dark-button-style .blog-articles article footer .read-more:hover:after,
.artist-dark-button-style .blog-articles article footer .read-more:hover:after,
.light-layout.artist-dark-button-style .hit-box footer .read-more:hover:after,
.artist-dark-button-style .hit-box footer .read-more:hover:after,
.light-layout.artist-dark-button-style .events-articles article footer .read-more:hover:after,
.artist-dark-button-style .events-articles article footer .read-more:hover:after {
  background: #801e00;
  opacity: 1;
}
.light-layout.artist-dark-button-style .call-to-action-block .default-btn,
.artist-dark-button-style .call-to-action-block .default-btn {
  color: #fff;
  padding: 1.6rem 3rem 1.6rem 3rem;
  border-radius: 3rem;
  display: inline-block;
  line-height: 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.7);
}
.light-layout.artist-dark-button-style .call-to-action-block .default-btn:after,
.artist-dark-button-style .call-to-action-block .default-btn:after,
.light-layout.artist-dark-button-style .call-to-action-block .default-btn:before,
.artist-dark-button-style .call-to-action-block .default-btn:before {
  background: transparent;
  opacity: 0.1;
}
.light-layout.artist-dark-button-style .call-to-action-block .default-btn:hover,
.artist-dark-button-style .call-to-action-block .default-btn:hover {
  color: #000;
}
.light-layout.artist-dark-button-style .call-to-action-block .default-btn:hover:after,
.artist-dark-button-style .call-to-action-block .default-btn:hover:after,
.light-layout.artist-dark-button-style .call-to-action-block .default-btn:hover:before,
.artist-dark-button-style .call-to-action-block .default-btn:hover:before {
  background: #fff;
  opacity: 1;
}
.light-layout.artist-dark-button-style .hit-box footer .read-more,
.artist-dark-button-style .hit-box footer .read-more {
  display: inline-block;
  line-height: 1rem;
  background: rgba(255, 242, 0, 0.1);
}
.light-layout.artist-dark-button-style .hit-box footer .read-more:hover,
.artist-dark-button-style .hit-box footer .read-more:hover {
  background: rgba(255, 242, 0, 0.2);
  color: #fff;
}
.light-layout.artist-dark-button-style .with-overlay .call-to-action-block .default-btn,
.artist-dark-button-style .with-overlay .call-to-action-block .default-btn {
  color: #fff;
  padding: 1.6rem 4.5rem 1.6rem 4.5rem;
  border-radius: 2rem;
  display: inline-block;
  line-height: 1rem;
  border: none;
}
.light-layout.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:after,
.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:after {
  background: #ff3c00;
  opacity: 1;
}
.light-layout.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:hover,
.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:hover {
  color: #fff;
}
.light-layout.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:hover:after,
.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:hover:after {
  background: #801e00;
  opacity: 1;
}
.light-layout.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:after,
.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:after,
.light-layout.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:before,
.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:before {
  background: rgba(0, 0, 0, 0.6);
}
.light-layout.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:hover:after,
.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:hover:after,
.light-layout.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:hover:before,
.artist-dark-button-style .with-overlay .call-to-action-block .default-btn:hover:before {
  background: rgba(0, 0, 0, 0.8);
}
.light-layout.artist-dark-button-style .rate-album input[type=submit],
.artist-dark-button-style .rate-album input[type=submit],
.light-layout.artist-dark-button-style .comment-container .title-comments a,
.artist-dark-button-style .comment-container .title-comments a,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input,
.artist-dark-button-style .comment-form-theme .form-submit input,
.light-layout.artist-dark-button-style .comments .comment-respond .form-submit input,
.artist-dark-button-style .comments .comment-respond .form-submit input,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit,
.artist-dark-button-style .woocommerce #respond input#submit,
.light-layout.artist-dark-button-style .single-product #respond input#submit,
.artist-dark-button-style .single-product #respond input#submit,
.light-layout.artist-dark-button-style .woocommerce a.button,
.artist-dark-button-style .woocommerce a.button,
.light-layout.artist-dark-button-style .woocommerce button.button,
.artist-dark-button-style .woocommerce button.button,
.light-layout.artist-dark-button-style .single-product button.button,
.artist-dark-button-style .single-product button.button,
.light-layout.artist-dark-button-style .woocommerce input.button,
.artist-dark-button-style .woocommerce input.button,
.light-layout.artist-dark-button-style .single-product input.button,
.artist-dark-button-style .single-product input.button {
  background: #801e00;
}
.light-layout.artist-dark-button-style .rate-album input[type=submit],
.artist-dark-button-style .rate-album input[type=submit],
.light-layout.artist-dark-button-style .comment-container .title-comments a,
.artist-dark-button-style .comment-container .title-comments a,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input,
.artist-dark-button-style .comment-form-theme .form-submit input,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit,
.artist-dark-button-style .woocommerce #respond input#submit,
.light-layout.artist-dark-button-style .single-product #respond input#submit,
.artist-dark-button-style .single-product #respond input#submit,
.light-layout.artist-dark-button-style .woocommerce a.button,
.artist-dark-button-style .woocommerce a.button,
.light-layout.artist-dark-button-style .woocommerce button.button,
.artist-dark-button-style .woocommerce button.button,
.light-layout.artist-dark-button-style .single-product button.button,
.artist-dark-button-style .single-product button.button,
.light-layout.artist-dark-button-style .woocommerce input.button,
.artist-dark-button-style .woocommerce input.button,
.light-layout.artist-dark-button-style .single-product input.button,
.artist-dark-button-style .single-product input.button,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.light-layout.artist-dark-button-style ul.products .product > .button,
.artist-dark-button-style ul.products .product > .button,
.light-layout.artist-dark-button-style .news-listing article footer .read-more,
.artist-dark-button-style .news-listing article footer .read-more,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more,
.artist-dark-button-style .widget.widget-latest-news article footer a.read-more,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit],
.artist-dark-button-style .widget.widget_search input[type=submit],
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.light-layout.artist-dark-button-style .tickera input[type=submit],
.artist-dark-button-style .tickera input[type=submit],
.light-layout.artist-dark-button-style .tickera button[type=submit],
.artist-dark-button-style .tickera button[type=submit],
.light-layout.artist-dark-button-style .bookatable input[type=submit],
.artist-dark-button-style .bookatable input[type=submit],
.light-layout.artist-dark-button-style .bookatable button[type=submit],
.artist-dark-button-style .bookatable button[type=submit],
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a,
.artist-dark-button-style div.tickera .tc_in_cart a,
.light-layout.artist-dark-button-style table.tickera .add_to_cart,
.artist-dark-button-style table.tickera .add_to_cart,
.light-layout.artist-dark-button-style .inline-event-listing .the-reserve-button a,
.artist-dark-button-style .inline-event-listing .the-reserve-button a,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a,
.artist-dark-button-style .tickera-page-order .blog-single-container.page p a,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a,
.artist-dark-button-style .tickera .order-details tbody tr td a {
  color: #fff;
  padding: 1.6rem 3rem 1.6rem 3rem;
  border-radius: 3rem;
  display: inline-block;
  line-height: 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.7);
}
.light-layout.artist-dark-button-style .rate-album input[type=submit]:after,
.artist-dark-button-style .rate-album input[type=submit]:after,
.light-layout.artist-dark-button-style .comment-container .title-comments a:after,
.artist-dark-button-style .comment-container .title-comments a:after,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:after,
.artist-dark-button-style .comment-form-theme .form-submit input:after,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:after,
.artist-dark-button-style .woocommerce #respond input#submit:after,
.light-layout.artist-dark-button-style .single-product #respond input#submit:after,
.artist-dark-button-style .single-product #respond input#submit:after,
.light-layout.artist-dark-button-style .woocommerce a.button:after,
.artist-dark-button-style .woocommerce a.button:after,
.light-layout.artist-dark-button-style .woocommerce button.button:after,
.artist-dark-button-style .woocommerce button.button:after,
.light-layout.artist-dark-button-style .single-product button.button:after,
.artist-dark-button-style .single-product button.button:after,
.light-layout.artist-dark-button-style .woocommerce input.button:after,
.artist-dark-button-style .woocommerce input.button:after,
.light-layout.artist-dark-button-style .single-product input.button:after,
.artist-dark-button-style .single-product input.button:after,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:after,
.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:after,
.light-layout.artist-dark-button-style ul.products .product > .button:after,
.artist-dark-button-style ul.products .product > .button:after,
.light-layout.artist-dark-button-style .news-listing article footer .read-more:after,
.artist-dark-button-style .news-listing article footer .read-more:after,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:after,
.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:after,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit]:after,
.artist-dark-button-style .widget.widget_search input[type=submit]:after,
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:after,
.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:after,
.light-layout.artist-dark-button-style .tickera input[type=submit]:after,
.artist-dark-button-style .tickera input[type=submit]:after,
.light-layout.artist-dark-button-style .tickera button[type=submit]:after,
.artist-dark-button-style .tickera button[type=submit]:after,
.light-layout.artist-dark-button-style .bookatable input[type=submit]:after,
.artist-dark-button-style .bookatable input[type=submit]:after,
.light-layout.artist-dark-button-style .bookatable button[type=submit]:after,
.artist-dark-button-style .bookatable button[type=submit]:after,
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a:after,
.artist-dark-button-style div.tickera .tc_in_cart a:after,
.light-layout.artist-dark-button-style table.tickera .add_to_cart:after,
.artist-dark-button-style table.tickera .add_to_cart:after,
.light-layout.artist-dark-button-style .inline-event-listing .the-reserve-button a:after,
.artist-dark-button-style .inline-event-listing .the-reserve-button a:after,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:after,
.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:after,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a:after,
.artist-dark-button-style .tickera .order-details tbody tr td a:after,
.light-layout.artist-dark-button-style .rate-album input[type=submit]:before,
.artist-dark-button-style .rate-album input[type=submit]:before,
.light-layout.artist-dark-button-style .comment-container .title-comments a:before,
.artist-dark-button-style .comment-container .title-comments a:before,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:before,
.artist-dark-button-style .comment-form-theme .form-submit input:before,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:before,
.artist-dark-button-style .woocommerce #respond input#submit:before,
.light-layout.artist-dark-button-style .single-product #respond input#submit:before,
.artist-dark-button-style .single-product #respond input#submit:before,
.light-layout.artist-dark-button-style .woocommerce a.button:before,
.artist-dark-button-style .woocommerce a.button:before,
.light-layout.artist-dark-button-style .woocommerce button.button:before,
.artist-dark-button-style .woocommerce button.button:before,
.light-layout.artist-dark-button-style .single-product button.button:before,
.artist-dark-button-style .single-product button.button:before,
.light-layout.artist-dark-button-style .woocommerce input.button:before,
.artist-dark-button-style .woocommerce input.button:before,
.light-layout.artist-dark-button-style .single-product input.button:before,
.artist-dark-button-style .single-product input.button:before,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:before,
.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:before,
.light-layout.artist-dark-button-style ul.products .product > .button:before,
.artist-dark-button-style ul.products .product > .button:before,
.light-layout.artist-dark-button-style .news-listing article footer .read-more:before,
.artist-dark-button-style .news-listing article footer .read-more:before,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:before,
.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:before,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit]:before,
.artist-dark-button-style .widget.widget_search input[type=submit]:before,
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:before,
.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:before,
.light-layout.artist-dark-button-style .tickera input[type=submit]:before,
.artist-dark-button-style .tickera input[type=submit]:before,
.light-layout.artist-dark-button-style .tickera button[type=submit]:before,
.artist-dark-button-style .tickera button[type=submit]:before,
.light-layout.artist-dark-button-style .bookatable input[type=submit]:before,
.artist-dark-button-style .bookatable input[type=submit]:before,
.light-layout.artist-dark-button-style .bookatable button[type=submit]:before,
.artist-dark-button-style .bookatable button[type=submit]:before,
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a:before,
.artist-dark-button-style div.tickera .tc_in_cart a:before,
.light-layout.artist-dark-button-style table.tickera .add_to_cart:before,
.artist-dark-button-style table.tickera .add_to_cart:before,
.light-layout.artist-dark-button-style .inline-event-listing .the-reserve-button a:before,
.artist-dark-button-style .inline-event-listing .the-reserve-button a:before,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:before,
.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:before,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a:before,
.artist-dark-button-style .tickera .order-details tbody tr td a:before {
  background: transparent;
  opacity: 0.1;
}
.light-layout.artist-dark-button-style .rate-album input[type=submit]:hover,
.artist-dark-button-style .rate-album input[type=submit]:hover,
.light-layout.artist-dark-button-style .comment-container .title-comments a:hover,
.artist-dark-button-style .comment-container .title-comments a:hover,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:hover,
.artist-dark-button-style .comment-form-theme .form-submit input:hover,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:hover,
.artist-dark-button-style .woocommerce #respond input#submit:hover,
.light-layout.artist-dark-button-style .single-product #respond input#submit:hover,
.artist-dark-button-style .single-product #respond input#submit:hover,
.light-layout.artist-dark-button-style .woocommerce a.button:hover,
.artist-dark-button-style .woocommerce a.button:hover,
.light-layout.artist-dark-button-style .woocommerce button.button:hover,
.artist-dark-button-style .woocommerce button.button:hover,
.light-layout.artist-dark-button-style .single-product button.button:hover,
.artist-dark-button-style .single-product button.button:hover,
.light-layout.artist-dark-button-style .woocommerce input.button:hover,
.artist-dark-button-style .woocommerce input.button:hover,
.light-layout.artist-dark-button-style .single-product input.button:hover,
.artist-dark-button-style .single-product input.button:hover,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover,
.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover,
.light-layout.artist-dark-button-style ul.products .product > .button:hover,
.artist-dark-button-style ul.products .product > .button:hover,
.light-layout.artist-dark-button-style .news-listing article footer .read-more:hover,
.artist-dark-button-style .news-listing article footer .read-more:hover,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:hover,
.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:hover,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit]:hover,
.artist-dark-button-style .widget.widget_search input[type=submit]:hover,
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.light-layout.artist-dark-button-style .tickera input[type=submit]:hover,
.artist-dark-button-style .tickera input[type=submit]:hover,
.light-layout.artist-dark-button-style .tickera button[type=submit]:hover,
.artist-dark-button-style .tickera button[type=submit]:hover,
.light-layout.artist-dark-button-style .bookatable input[type=submit]:hover,
.artist-dark-button-style .bookatable input[type=submit]:hover,
.light-layout.artist-dark-button-style .bookatable button[type=submit]:hover,
.artist-dark-button-style .bookatable button[type=submit]:hover,
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a:hover,
.artist-dark-button-style div.tickera .tc_in_cart a:hover,
.light-layout.artist-dark-button-style table.tickera .add_to_cart:hover,
.artist-dark-button-style table.tickera .add_to_cart:hover,
.light-layout.artist-dark-button-style .inline-event-listing .the-reserve-button a:hover,
.artist-dark-button-style .inline-event-listing .the-reserve-button a:hover,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:hover,
.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:hover,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a:hover,
.artist-dark-button-style .tickera .order-details tbody tr td a:hover {
  color: #000;
}
.light-layout.artist-dark-button-style .rate-album input[type=submit]:hover:after,
.artist-dark-button-style .rate-album input[type=submit]:hover:after,
.light-layout.artist-dark-button-style .comment-container .title-comments a:hover:after,
.artist-dark-button-style .comment-container .title-comments a:hover:after,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:hover:after,
.artist-dark-button-style .comment-form-theme .form-submit input:hover:after,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:hover:after,
.artist-dark-button-style .woocommerce #respond input#submit:hover:after,
.light-layout.artist-dark-button-style .single-product #respond input#submit:hover:after,
.artist-dark-button-style .single-product #respond input#submit:hover:after,
.light-layout.artist-dark-button-style .woocommerce a.button:hover:after,
.artist-dark-button-style .woocommerce a.button:hover:after,
.light-layout.artist-dark-button-style .woocommerce button.button:hover:after,
.artist-dark-button-style .woocommerce button.button:hover:after,
.light-layout.artist-dark-button-style .single-product button.button:hover:after,
.artist-dark-button-style .single-product button.button:hover:after,
.light-layout.artist-dark-button-style .woocommerce input.button:hover:after,
.artist-dark-button-style .woocommerce input.button:hover:after,
.light-layout.artist-dark-button-style .single-product input.button:hover:after,
.artist-dark-button-style .single-product input.button:hover:after,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:after,
.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:after,
.light-layout.artist-dark-button-style ul.products .product > .button:hover:after,
.artist-dark-button-style ul.products .product > .button:hover:after,
.light-layout.artist-dark-button-style .news-listing article footer .read-more:hover:after,
.artist-dark-button-style .news-listing article footer .read-more:hover:after,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:hover:after,
.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:hover:after,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit]:hover:after,
.artist-dark-button-style .widget.widget_search input[type=submit]:hover:after,
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:after,
.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:after,
.light-layout.artist-dark-button-style .tickera input[type=submit]:hover:after,
.artist-dark-button-style .tickera input[type=submit]:hover:after,
.light-layout.artist-dark-button-style .tickera button[type=submit]:hover:after,
.artist-dark-button-style .tickera button[type=submit]:hover:after,
.light-layout.artist-dark-button-style .bookatable input[type=submit]:hover:after,
.artist-dark-button-style .bookatable input[type=submit]:hover:after,
.light-layout.artist-dark-button-style .bookatable button[type=submit]:hover:after,
.artist-dark-button-style .bookatable button[type=submit]:hover:after,
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a:hover:after,
.artist-dark-button-style div.tickera .tc_in_cart a:hover:after,
.light-layout.artist-dark-button-style table.tickera .add_to_cart:hover:after,
.artist-dark-button-style table.tickera .add_to_cart:hover:after,
.light-layout.artist-dark-button-style .inline-event-listing .the-reserve-button a:hover:after,
.artist-dark-button-style .inline-event-listing .the-reserve-button a:hover:after,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:hover:after,
.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:hover:after,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a:hover:after,
.artist-dark-button-style .tickera .order-details tbody tr td a:hover:after,
.light-layout.artist-dark-button-style .rate-album input[type=submit]:hover:before,
.artist-dark-button-style .rate-album input[type=submit]:hover:before,
.light-layout.artist-dark-button-style .comment-container .title-comments a:hover:before,
.artist-dark-button-style .comment-container .title-comments a:hover:before,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:hover:before,
.artist-dark-button-style .comment-form-theme .form-submit input:hover:before,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:hover:before,
.artist-dark-button-style .woocommerce #respond input#submit:hover:before,
.light-layout.artist-dark-button-style .single-product #respond input#submit:hover:before,
.artist-dark-button-style .single-product #respond input#submit:hover:before,
.light-layout.artist-dark-button-style .woocommerce a.button:hover:before,
.artist-dark-button-style .woocommerce a.button:hover:before,
.light-layout.artist-dark-button-style .woocommerce button.button:hover:before,
.artist-dark-button-style .woocommerce button.button:hover:before,
.light-layout.artist-dark-button-style .single-product button.button:hover:before,
.artist-dark-button-style .single-product button.button:hover:before,
.light-layout.artist-dark-button-style .woocommerce input.button:hover:before,
.artist-dark-button-style .woocommerce input.button:hover:before,
.light-layout.artist-dark-button-style .single-product input.button:hover:before,
.artist-dark-button-style .single-product input.button:hover:before,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:before,
.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:before,
.light-layout.artist-dark-button-style ul.products .product > .button:hover:before,
.artist-dark-button-style ul.products .product > .button:hover:before,
.light-layout.artist-dark-button-style .news-listing article footer .read-more:hover:before,
.artist-dark-button-style .news-listing article footer .read-more:hover:before,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:hover:before,
.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:hover:before,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit]:hover:before,
.artist-dark-button-style .widget.widget_search input[type=submit]:hover:before,
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:before,
.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:before,
.light-layout.artist-dark-button-style .tickera input[type=submit]:hover:before,
.artist-dark-button-style .tickera input[type=submit]:hover:before,
.light-layout.artist-dark-button-style .tickera button[type=submit]:hover:before,
.artist-dark-button-style .tickera button[type=submit]:hover:before,
.light-layout.artist-dark-button-style .bookatable input[type=submit]:hover:before,
.artist-dark-button-style .bookatable input[type=submit]:hover:before,
.light-layout.artist-dark-button-style .bookatable button[type=submit]:hover:before,
.artist-dark-button-style .bookatable button[type=submit]:hover:before,
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a:hover:before,
.artist-dark-button-style div.tickera .tc_in_cart a:hover:before,
.light-layout.artist-dark-button-style table.tickera .add_to_cart:hover:before,
.artist-dark-button-style table.tickera .add_to_cart:hover:before,
.light-layout.artist-dark-button-style .inline-event-listing .the-reserve-button a:hover:before,
.artist-dark-button-style .inline-event-listing .the-reserve-button a:hover:before,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:hover:before,
.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:hover:before,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a:hover:before,
.artist-dark-button-style .tickera .order-details tbody tr td a:hover:before {
  background: #fff;
  opacity: 1;
}
.light-layout.artist-dark-button-style .rate-album input[type=submit],
.artist-dark-button-style .rate-album input[type=submit],
.light-layout.artist-dark-button-style .comment-container .title-comments a,
.artist-dark-button-style .comment-container .title-comments a,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input,
.artist-dark-button-style .comment-form-theme .form-submit input,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit,
.artist-dark-button-style .woocommerce #respond input#submit,
.light-layout.artist-dark-button-style .single-product #respond input#submit,
.artist-dark-button-style .single-product #respond input#submit,
.light-layout.artist-dark-button-style .woocommerce a.button,
.artist-dark-button-style .woocommerce a.button,
.light-layout.artist-dark-button-style .woocommerce button.button,
.artist-dark-button-style .woocommerce button.button,
.light-layout.artist-dark-button-style .single-product button.button,
.artist-dark-button-style .single-product button.button,
.light-layout.artist-dark-button-style .woocommerce input.button,
.artist-dark-button-style .woocommerce input.button,
.light-layout.artist-dark-button-style .single-product input.button,
.artist-dark-button-style .single-product input.button,
.light-layout.artist-dark-button-style .woocommerce input.button.alt,
.artist-dark-button-style .woocommerce input.button.alt,
.light-layout.artist-dark-button-style .woocommerce a.button.alt,
.artist-dark-button-style .woocommerce a.button.alt,
.light-layout.artist-dark-button-style ul.products .product > .button,
.artist-dark-button-style ul.products .product > .button,
.light-layout.artist-dark-button-style .news-listing article footer .read-more,
.artist-dark-button-style .news-listing article footer .read-more,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more,
.artist-dark-button-style .widget.widget-latest-news article footer a.read-more,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit],
.artist-dark-button-style .widget.widget_search input[type=submit],
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.light-layout.artist-dark-button-style .tickera input[type=submit],
.artist-dark-button-style .tickera input[type=submit],
.light-layout.artist-dark-button-style .tickera button[type=submit],
.artist-dark-button-style .tickera button[type=submit],
.light-layout.artist-dark-button-style .bookatable input[type=submit],
.artist-dark-button-style .bookatable input[type=submit],
.light-layout.artist-dark-button-style .bookatable button[type=submit],
.artist-dark-button-style .bookatable button[type=submit],
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a,
.artist-dark-button-style div.tickera .tc_in_cart a,
.light-layout.artist-dark-button-style table.tickera .add_to_cart,
.artist-dark-button-style table.tickera .add_to_cart,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a,
.artist-dark-button-style .tickera-page-order .blog-single-container.page p a,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a,
.artist-dark-button-style .tickera .order-details tbody tr td a {
  background: transparent;
}
.light-layout.artist-dark-button-style .rate-album input[type=submit]:hover,
.artist-dark-button-style .rate-album input[type=submit]:hover,
.light-layout.artist-dark-button-style .comment-container .title-comments a:hover,
.artist-dark-button-style .comment-container .title-comments a:hover,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:hover,
.artist-dark-button-style .comment-form-theme .form-submit input:hover,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:hover,
.artist-dark-button-style .woocommerce #respond input#submit:hover,
.light-layout.artist-dark-button-style .single-product #respond input#submit:hover,
.artist-dark-button-style .single-product #respond input#submit:hover,
.light-layout.artist-dark-button-style .woocommerce a.button:hover,
.artist-dark-button-style .woocommerce a.button:hover,
.light-layout.artist-dark-button-style .woocommerce button.button:hover,
.artist-dark-button-style .woocommerce button.button:hover,
.light-layout.artist-dark-button-style .single-product button.button:hover,
.artist-dark-button-style .single-product button.button:hover,
.light-layout.artist-dark-button-style .woocommerce input.button:hover,
.artist-dark-button-style .woocommerce input.button:hover,
.light-layout.artist-dark-button-style .single-product input.button:hover,
.artist-dark-button-style .single-product input.button:hover,
.light-layout.artist-dark-button-style .woocommerce input.button.alt:hover,
.artist-dark-button-style .woocommerce input.button.alt:hover,
.light-layout.artist-dark-button-style .woocommerce a.button.alt:hover,
.artist-dark-button-style .woocommerce a.button.alt:hover,
.light-layout.artist-dark-button-style ul.products .product > .button:hover,
.artist-dark-button-style ul.products .product > .button:hover,
.light-layout.artist-dark-button-style .news-listing article footer .read-more:hover,
.artist-dark-button-style .news-listing article footer .read-more:hover,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:hover,
.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:hover,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit]:hover,
.artist-dark-button-style .widget.widget_search input[type=submit]:hover,
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.light-layout.artist-dark-button-style .tickera input[type=submit]:hover,
.artist-dark-button-style .tickera input[type=submit]:hover,
.light-layout.artist-dark-button-style .tickera button[type=submit]:hover,
.artist-dark-button-style .tickera button[type=submit]:hover,
.light-layout.artist-dark-button-style .bookatable input[type=submit]:hover,
.artist-dark-button-style .bookatable input[type=submit]:hover,
.light-layout.artist-dark-button-style .bookatable button[type=submit]:hover,
.artist-dark-button-style .bookatable button[type=submit]:hover,
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a:hover,
.artist-dark-button-style div.tickera .tc_in_cart a:hover,
.light-layout.artist-dark-button-style table.tickera .add_to_cart:hover,
.artist-dark-button-style table.tickera .add_to_cart:hover,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:hover,
.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:hover,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a:hover,
.artist-dark-button-style .tickera .order-details tbody tr td a:hover {
  color: #000;
  background: #fff !important;
}
.light-layout.artist-dark-button-style .carousel-news-article footer .read-more a,
.artist-dark-button-style .carousel-news-article footer .read-more a,
.light-layout.artist-dark-button-style .widget.widget-blog-article article footer .read-more,
.artist-dark-button-style .widget.widget-blog-article article footer .read-more {
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 2rem;
  display: inline-block;
  line-height: 1rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  color: #fff;
}
.light-layout.artist-dark-button-style .carousel-news-article footer .read-more a:after,
.artist-dark-button-style .carousel-news-article footer .read-more a:after,
.light-layout.artist-dark-button-style .widget.widget-blog-article article footer .read-more:after,
.artist-dark-button-style .widget.widget-blog-article article footer .read-more:after {
  background: #ff3c00;
  opacity: 1;
}
.light-layout.artist-dark-button-style .carousel-news-article footer .read-more a:hover,
.artist-dark-button-style .carousel-news-article footer .read-more a:hover,
.light-layout.artist-dark-button-style .widget.widget-blog-article article footer .read-more:hover,
.artist-dark-button-style .widget.widget-blog-article article footer .read-more:hover {
  color: #fff;
}
.light-layout.artist-dark-button-style .carousel-news-article footer .read-more a:hover:after,
.artist-dark-button-style .carousel-news-article footer .read-more a:hover:after,
.light-layout.artist-dark-button-style .widget.widget-blog-article article footer .read-more:hover:after,
.artist-dark-button-style .widget.widget-blog-article article footer .read-more:hover:after {
  background: #801e00;
  opacity: 1;
}
.light-layout.artist-dark-button-style .twitter-feed-block footer ul li:first-child a,
.artist-dark-button-style .twitter-feed-block footer ul li:first-child a,
.light-layout.artist-dark-button-style .widget.widget-twitter footer ul li:first-child a,
.artist-dark-button-style .widget.widget-twitter footer ul li:first-child a {
  color: #fff;
  padding: 0.6rem 1.5rem 0.6rem 1.5rem;
  border-radius: 2rem;
  display: inline-block;
  border-width: 0.1rem;
  margin-right: 0.5rem;
  font-size: 1rem;
  line-height: 1rem;
  background: #ff3c00;
}
.light-layout.artist-dark-button-style .twitter-feed-block footer ul li:first-child a:after,
.artist-dark-button-style .twitter-feed-block footer ul li:first-child a:after,
.light-layout.artist-dark-button-style .widget.widget-twitter footer ul li:first-child a:after,
.artist-dark-button-style .widget.widget-twitter footer ul li:first-child a:after {
  background: #ff3c00;
  opacity: 1;
}
.light-layout.artist-dark-button-style .twitter-feed-block footer ul li:first-child a:hover,
.artist-dark-button-style .twitter-feed-block footer ul li:first-child a:hover,
.light-layout.artist-dark-button-style .widget.widget-twitter footer ul li:first-child a:hover,
.artist-dark-button-style .widget.widget-twitter footer ul li:first-child a:hover {
  color: #fff;
}
.light-layout.artist-dark-button-style .twitter-feed-block footer ul li:first-child a:hover:after,
.artist-dark-button-style .twitter-feed-block footer ul li:first-child a:hover:after,
.light-layout.artist-dark-button-style .widget.widget-twitter footer ul li:first-child a:hover:after,
.artist-dark-button-style .widget.widget-twitter footer ul li:first-child a:hover:after {
  background: #801e00;
  opacity: 1;
}
.light-layout.artist-dark-button-style .twitter-feed-block footer ul li:first-child a:hover,
.artist-dark-button-style .twitter-feed-block footer ul li:first-child a:hover,
.light-layout.artist-dark-button-style .widget.widget-twitter footer ul li:first-child a:hover,
.artist-dark-button-style .widget.widget-twitter footer ul li:first-child a:hover {
  color: #fff;
  background: #801e00;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy,
.artist-dark-button-style .mini-call-to-action .buy {
  color: #fff;
  padding: 1.2rem 3rem 1.2rem 3rem;
  border-radius: 3rem;
  display: inline-block;
  line-height: 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.7);
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:after,
.artist-dark-button-style .mini-call-to-action .buy:after,
.light-layout.artist-dark-button-style .mini-call-to-action .buy:before,
.artist-dark-button-style .mini-call-to-action .buy:before {
  background: transparent;
  opacity: 0.1;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover,
.artist-dark-button-style .mini-call-to-action .buy:hover {
  color: #000;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover:after,
.artist-dark-button-style .mini-call-to-action .buy:hover:after,
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover:before,
.artist-dark-button-style .mini-call-to-action .buy:hover:before {
  background: #fff;
  opacity: 1;
}
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:hover,
.artist-dark-button-style .comment-form-theme .form-submit input:hover,
.light-layout.artist-dark-button-style .comments .comment-respond .form-submit input:hover,
.artist-dark-button-style .comments .comment-respond .form-submit input:hover {
  background: #ff3c00;
}
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input,
.artist-dark-button-style .comment-form-theme .form-submit input {
  display: inherit;
}
.light-layout.artist-dark-button-style .carousel-news-article footer .read-more a,
.artist-dark-button-style .carousel-news-article footer .read-more a,
.light-layout.artist-dark-button-style .widget.widget-blog-article article footer .read-more,
.artist-dark-button-style .widget.widget-blog-article article footer .read-more {
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 2rem;
  display: inline-block;
  line-height: 1rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  color: #fff;
}
.light-layout.artist-dark-button-style .carousel-news-article footer .read-more a:after,
.artist-dark-button-style .carousel-news-article footer .read-more a:after,
.light-layout.artist-dark-button-style .widget.widget-blog-article article footer .read-more:after,
.artist-dark-button-style .widget.widget-blog-article article footer .read-more:after {
  background: #ff3c00;
  opacity: 1;
}
.light-layout.artist-dark-button-style .carousel-news-article footer .read-more a:hover,
.artist-dark-button-style .carousel-news-article footer .read-more a:hover,
.light-layout.artist-dark-button-style .widget.widget-blog-article article footer .read-more:hover,
.artist-dark-button-style .widget.widget-blog-article article footer .read-more:hover {
  color: #fff;
}
.light-layout.artist-dark-button-style .carousel-news-article footer .read-more a:hover:after,
.artist-dark-button-style .carousel-news-article footer .read-more a:hover:after,
.light-layout.artist-dark-button-style .widget.widget-blog-article article footer .read-more:hover:after,
.artist-dark-button-style .widget.widget-blog-article article footer .read-more:hover:after {
  background: #801e00;
  opacity: 1;
}
.light-layout.artist-dark-button-style .carousel-news-article:hover footer .read-more a,
.artist-dark-button-style .carousel-news-article:hover footer .read-more a {
  background: #801e00;
}
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more,
.artist-dark-button-style .widget.widget-latest-news article footer a.read-more {
  padding: 0.8rem 1.7rem !important;
}
.light-layout.artist-dark-button-style .news-listing article footer .read-more,
.artist-dark-button-style .news-listing article footer .read-more {
  padding: 1.2rem 3rem;
}
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy {
  padding: 0.6rem 1.5rem;
}
.light-layout.artist-dark-button-style .comment-container .title-comments a,
.artist-dark-button-style .comment-container .title-comments a,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit],
.artist-dark-button-style .widget.widget_search input[type=submit] {
  padding: 1.5rem 2.5rem;
}
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit] {
  padding: 1rem 2.5rem;
}
.light-layout.artist-dark-button-style .rate-album input[type=submit],
.artist-dark-button-style .rate-album input[type=submit],
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input,
.artist-dark-button-style .comment-form-theme .form-submit input {
  padding: 1.55rem 4rem;
}
.light-layout.artist-dark-button-style .woocommerce #respond input#submit,
.artist-dark-button-style .woocommerce #respond input#submit,
.light-layout.artist-dark-button-style .single-product #respond input#submit,
.artist-dark-button-style .single-product #respond input#submit,
.light-layout.artist-dark-button-style .woocommerce a.button,
.artist-dark-button-style .woocommerce a.button,
.light-layout.artist-dark-button-style .woocommerce button.button,
.artist-dark-button-style .woocommerce button.button,
.light-layout.artist-dark-button-style .single-product button.button,
.artist-dark-button-style .single-product button.button,
.light-layout.artist-dark-button-style .woocommerce input.button,
.artist-dark-button-style .woocommerce input.button,
.light-layout.artist-dark-button-style .single-product input.button,
.artist-dark-button-style .single-product input.button,
.light-layout.artist-dark-button-style .woocommerce input.button.alt,
.artist-dark-button-style .woocommerce input.button.alt,
.light-layout.artist-dark-button-style .woocommerce a.button.alt,
.artist-dark-button-style .woocommerce a.button.alt {
  padding: 1.5rem 3rem;
}
.light-layout.artist-dark-button-style .widget .newsletter-container button,
.artist-dark-button-style .widget .newsletter-container button {
  background: transparent;
}
.light-layout.artist-dark-button-style .comment-container .title-comments a:hover,
.artist-dark-button-style .comment-container .title-comments a:hover,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:hover,
.artist-dark-button-style .woocommerce #respond input#submit:hover,
.light-layout.artist-dark-button-style .single-product #respond input#submit:hover,
.artist-dark-button-style .single-product #respond input#submit:hover,
.light-layout.artist-dark-button-style .woocommerce a.button:hover,
.artist-dark-button-style .woocommerce a.button:hover,
.light-layout.artist-dark-button-style .woocommerce button.button:hover,
.artist-dark-button-style .woocommerce button.button:hover,
.light-layout.artist-dark-button-style .single-product button.button:hover,
.artist-dark-button-style .single-product button.button:hover,
.light-layout.artist-dark-button-style .woocommerce input.button:hover,
.artist-dark-button-style .woocommerce input.button:hover,
.light-layout.artist-dark-button-style .single-product input.button:hover,
.artist-dark-button-style .single-product input.button:hover,
.light-layout.artist-dark-button-style .buy-btn:hover,
.artist-dark-button-style .buy-btn:hover {
  color: #000;
}
.light-layout.artist-dark-button-style .news-listing article footer .read-more:before,
.artist-dark-button-style .news-listing article footer .read-more:before {
  display: none;
}
.light-layout.artist-dark-button-style .events-articles article:hover footer .read-more,
.artist-dark-button-style .events-articles article:hover footer .read-more,
.light-layout.artist-dark-button-style .blog-articles article:hover footer .read-more,
.artist-dark-button-style .blog-articles article:hover footer .read-more {
  color: #fff !important;
}
.light-layout.artist-dark-button-style .inline-event-listing .the-reserve-button a,
.artist-dark-button-style .inline-event-listing .the-reserve-button a {
  padding: 2.5rem 3rem;
  border-radius: 6rem;
}
.light-layout.artist-dark-button-style div.product form.cart button[type=submit],
.artist-dark-button-style div.product form.cart button[type=submit],
.light-layout.artist-dark-button-style.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.artist-dark-button-style.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: #fff;
  color: #000;
}
.light-layout.artist-dark-button-style div.product form.cart button[type=submit]:hover,
.artist-dark-button-style div.product form.cart button[type=submit]:hover,
.light-layout.artist-dark-button-style.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.artist-dark-button-style.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  opacity: 0.8;
}
.light-layout.artist-dark-button-style.light-layout div.product form.cart button[type=submit],
.artist-dark-button-style.light-layout div.product form.cart button[type=submit],
.light-layout.artist-dark-button-style.light-layout.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.artist-dark-button-style.light-layout.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: #000 !important;
  color: #fff;
}
.light-layout.artist-dark-button-style.light-layout div.product form.cart button[type=submit]:hover,
.artist-dark-button-style.light-layout div.product form.cart button[type=submit]:hover,
.light-layout.artist-dark-button-style.light-layout.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.artist-dark-button-style.light-layout.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  opacity: 0.8;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy {
  color: #000;
  padding: 1.2rem 3rem 1.2rem 3rem;
  border-radius: 3rem;
  display: inline-block;
  line-height: 1rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.7);
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:after,
.light-layout.artist-dark-button-style .mini-call-to-action .buy:before {
  background: transparent;
  opacity: 0.1;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover {
  color: #000;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover:after,
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover:before {
  background: #fff;
  opacity: 1;
}
.light-layout.artist-dark-button-style .call-to-action-block .default-btn {
  color: #000;
  padding: 1.6rem 3rem 1.6rem 3rem;
  border-radius: 3rem;
  display: inline-block;
  line-height: 1rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.7);
}
.light-layout.artist-dark-button-style .call-to-action-block .default-btn:after,
.light-layout.artist-dark-button-style .call-to-action-block .default-btn:before {
  background: transparent;
  opacity: 0.1;
}
.light-layout.artist-dark-button-style .call-to-action-block .default-btn:hover {
  color: #000;
}
.light-layout.artist-dark-button-style .call-to-action-block .default-btn:hover:after,
.light-layout.artist-dark-button-style .call-to-action-block .default-btn:hover:before {
  background: #fff;
  opacity: 1;
}
.light-layout.artist-dark-button-style .rate-album input[type=submit],
.light-layout.artist-dark-button-style .comment-container .title-comments a,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit,
.light-layout.artist-dark-button-style .single-product #respond input#submit,
.light-layout.artist-dark-button-style .woocommerce a.button,
.light-layout.artist-dark-button-style .single-product a.button,
.light-layout.artist-dark-button-style .woocommerce button.button,
.light-layout.artist-dark-button-style .single-product button.button,
.light-layout.artist-dark-button-style .woocommerce input.button,
.light-layout.artist-dark-button-style .single-product input.button,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.light-layout.artist-dark-button-style ul.products .product > .button,
.light-layout.artist-dark-button-style .news-listing article footer .read-more,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit],
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.light-layout.artist-dark-button-style .tickera input[type=submit],
.light-layout.artist-dark-button-style .tickera button[type=submit],
.light-layout.artist-dark-button-style .bookatable input[type=submit],
.light-layout.artist-dark-button-style .bookatable button[type=submit],
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a,
.light-layout.artist-dark-button-style table.tickera .add_to_cart,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a {
  color: #000;
  padding: 1.6rem 3rem 1.6rem 3rem;
  border-radius: 3rem;
  display: inline-block;
  line-height: 1rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.7);
}
.light-layout.artist-dark-button-style .rate-album input[type=submit]:after,
.light-layout.artist-dark-button-style .comment-container .title-comments a:after,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:after,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:after,
.light-layout.artist-dark-button-style .single-product #respond input#submit:after,
.light-layout.artist-dark-button-style .woocommerce a.button:after,
.light-layout.artist-dark-button-style .single-product a.button:after,
.light-layout.artist-dark-button-style .woocommerce button.button:after,
.light-layout.artist-dark-button-style .single-product button.button:after,
.light-layout.artist-dark-button-style .woocommerce input.button:after,
.light-layout.artist-dark-button-style .single-product input.button:after,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:after,
.light-layout.artist-dark-button-style ul.products .product > .button:after,
.light-layout.artist-dark-button-style .news-listing article footer .read-more:after,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:after,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit]:after,
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:after,
.light-layout.artist-dark-button-style .tickera input[type=submit]:after,
.light-layout.artist-dark-button-style .tickera button[type=submit]:after,
.light-layout.artist-dark-button-style .bookatable input[type=submit]:after,
.light-layout.artist-dark-button-style .bookatable button[type=submit]:after,
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a:after,
.light-layout.artist-dark-button-style table.tickera .add_to_cart:after,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:after,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a:after,
.light-layout.artist-dark-button-style .rate-album input[type=submit]:before,
.light-layout.artist-dark-button-style .comment-container .title-comments a:before,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:before,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:before,
.light-layout.artist-dark-button-style .single-product #respond input#submit:before,
.light-layout.artist-dark-button-style .woocommerce a.button:before,
.light-layout.artist-dark-button-style .single-product a.button:before,
.light-layout.artist-dark-button-style .woocommerce button.button:before,
.light-layout.artist-dark-button-style .single-product button.button:before,
.light-layout.artist-dark-button-style .woocommerce input.button:before,
.light-layout.artist-dark-button-style .single-product input.button:before,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:before,
.light-layout.artist-dark-button-style ul.products .product > .button:before,
.light-layout.artist-dark-button-style .news-listing article footer .read-more:before,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:before,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit]:before,
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:before,
.light-layout.artist-dark-button-style .tickera input[type=submit]:before,
.light-layout.artist-dark-button-style .tickera button[type=submit]:before,
.light-layout.artist-dark-button-style .bookatable input[type=submit]:before,
.light-layout.artist-dark-button-style .bookatable button[type=submit]:before,
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a:before,
.light-layout.artist-dark-button-style table.tickera .add_to_cart:before,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:before,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a:before {
  background: transparent;
  opacity: 0.1;
}
.light-layout.artist-dark-button-style .rate-album input[type=submit]:hover,
.light-layout.artist-dark-button-style .comment-container .title-comments a:hover,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:hover,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:hover,
.light-layout.artist-dark-button-style .single-product #respond input#submit:hover,
.light-layout.artist-dark-button-style .woocommerce a.button:hover,
.light-layout.artist-dark-button-style .single-product a.button:hover,
.light-layout.artist-dark-button-style .woocommerce button.button:hover,
.light-layout.artist-dark-button-style .single-product button.button:hover,
.light-layout.artist-dark-button-style .woocommerce input.button:hover,
.light-layout.artist-dark-button-style .single-product input.button:hover,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover,
.light-layout.artist-dark-button-style ul.products .product > .button:hover,
.light-layout.artist-dark-button-style .news-listing article footer .read-more:hover,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:hover,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit]:hover,
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.light-layout.artist-dark-button-style .tickera input[type=submit]:hover,
.light-layout.artist-dark-button-style .tickera button[type=submit]:hover,
.light-layout.artist-dark-button-style .bookatable input[type=submit]:hover,
.light-layout.artist-dark-button-style .bookatable button[type=submit]:hover,
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a:hover,
.light-layout.artist-dark-button-style table.tickera .add_to_cart:hover,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:hover,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a:hover {
  color: #000;
}
.light-layout.artist-dark-button-style .rate-album input[type=submit]:hover:after,
.light-layout.artist-dark-button-style .comment-container .title-comments a:hover:after,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:hover:after,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:hover:after,
.light-layout.artist-dark-button-style .single-product #respond input#submit:hover:after,
.light-layout.artist-dark-button-style .woocommerce a.button:hover:after,
.light-layout.artist-dark-button-style .single-product a.button:hover:after,
.light-layout.artist-dark-button-style .woocommerce button.button:hover:after,
.light-layout.artist-dark-button-style .single-product button.button:hover:after,
.light-layout.artist-dark-button-style .woocommerce input.button:hover:after,
.light-layout.artist-dark-button-style .single-product input.button:hover:after,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:after,
.light-layout.artist-dark-button-style ul.products .product > .button:hover:after,
.light-layout.artist-dark-button-style .news-listing article footer .read-more:hover:after,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:hover:after,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit]:hover:after,
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:after,
.light-layout.artist-dark-button-style .tickera input[type=submit]:hover:after,
.light-layout.artist-dark-button-style .tickera button[type=submit]:hover:after,
.light-layout.artist-dark-button-style .bookatable input[type=submit]:hover:after,
.light-layout.artist-dark-button-style .bookatable button[type=submit]:hover:after,
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a:hover:after,
.light-layout.artist-dark-button-style table.tickera .add_to_cart:hover:after,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:hover:after,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a:hover:after,
.light-layout.artist-dark-button-style .rate-album input[type=submit]:hover:before,
.light-layout.artist-dark-button-style .comment-container .title-comments a:hover:before,
.light-layout.artist-dark-button-style .comment-form-theme .form-submit input:hover:before,
.light-layout.artist-dark-button-style .woocommerce #respond input#submit:hover:before,
.light-layout.artist-dark-button-style .single-product #respond input#submit:hover:before,
.light-layout.artist-dark-button-style .woocommerce a.button:hover:before,
.light-layout.artist-dark-button-style .single-product a.button:hover:before,
.light-layout.artist-dark-button-style .woocommerce button.button:hover:before,
.light-layout.artist-dark-button-style .single-product button.button:hover:before,
.light-layout.artist-dark-button-style .woocommerce input.button:hover:before,
.light-layout.artist-dark-button-style .single-product input.button:hover:before,
.light-layout.artist-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:before,
.light-layout.artist-dark-button-style ul.products .product > .button:hover:before,
.light-layout.artist-dark-button-style .news-listing article footer .read-more:hover:before,
.light-layout.artist-dark-button-style .widget.widget-latest-news article footer a.read-more:hover:before,
.light-layout.artist-dark-button-style .widget.widget_search input[type=submit]:hover:before,
.light-layout.artist-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:before,
.light-layout.artist-dark-button-style .tickera input[type=submit]:hover:before,
.light-layout.artist-dark-button-style .tickera button[type=submit]:hover:before,
.light-layout.artist-dark-button-style .bookatable input[type=submit]:hover:before,
.light-layout.artist-dark-button-style .bookatable button[type=submit]:hover:before,
.light-layout.artist-dark-button-style div.tickera .tc_in_cart a:hover:before,
.light-layout.artist-dark-button-style table.tickera .add_to_cart:hover:before,
.light-layout.artist-dark-button-style .tickera-page-order .blog-single-container.page p a:hover:before,
.light-layout.artist-dark-button-style .tickera .order-details tbody tr td a:hover:before {
  background: #fff;
  opacity: 1;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy {
  color: #000;
  padding: 1.2rem 3rem 1.2rem 3rem;
  border-radius: 3rem;
  display: inline-block;
  line-height: 1rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.7);
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:after,
.light-layout.artist-dark-button-style .mini-call-to-action .buy:before {
  background: transparent;
  opacity: 0.1;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover {
  color: #000;
}
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover:after,
.light-layout.artist-dark-button-style .mini-call-to-action .buy:hover:before {
  background: #fff;
  opacity: 1;
}
.light-layout.fm-dark-button-style .mini-call-to-action .buy,
.fm-dark-button-style .mini-call-to-action .buy {
  color: #fff;
  padding: 1.2rem 3rem 1.2rem 3rem;
  border-radius: 0.4rem;
}
.light-layout.fm-dark-button-style .mini-call-to-action .buy:after,
.fm-dark-button-style .mini-call-to-action .buy:after,
.light-layout.fm-dark-button-style .mini-call-to-action .buy:before,
.fm-dark-button-style .mini-call-to-action .buy:before {
  background: #ff3c00;
  opacity: 0.45;
}
.light-layout.fm-dark-button-style .mini-call-to-action .buy:hover,
.fm-dark-button-style .mini-call-to-action .buy:hover {
  color: #fff;
}
.light-layout.fm-dark-button-style .mini-call-to-action .buy:hover:after,
.fm-dark-button-style .mini-call-to-action .buy:hover:after,
.light-layout.fm-dark-button-style .mini-call-to-action .buy:hover:before,
.fm-dark-button-style .mini-call-to-action .buy:hover:before {
  background: #801e00;
  opacity: 0.55;
}
.light-layout.fm-dark-button-style .blog-articles article footer .read-more,
.fm-dark-button-style .blog-articles article footer .read-more,
.light-layout.fm-dark-button-style .hit-box footer .read-more,
.fm-dark-button-style .hit-box footer .read-more {
  color: #fff;
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 0.4rem;
}
.light-layout.fm-dark-button-style .blog-articles article footer .read-more:after,
.fm-dark-button-style .blog-articles article footer .read-more:after,
.light-layout.fm-dark-button-style .hit-box footer .read-more:after,
.fm-dark-button-style .hit-box footer .read-more:after,
.light-layout.fm-dark-button-style .blog-articles article footer .read-more:before,
.fm-dark-button-style .blog-articles article footer .read-more:before,
.light-layout.fm-dark-button-style .hit-box footer .read-more:before,
.fm-dark-button-style .hit-box footer .read-more:before {
  background: #ff3c00;
  opacity: 0.45;
}
.light-layout.fm-dark-button-style .blog-articles article footer .read-more:hover,
.fm-dark-button-style .blog-articles article footer .read-more:hover,
.light-layout.fm-dark-button-style .hit-box footer .read-more:hover,
.fm-dark-button-style .hit-box footer .read-more:hover {
  color: #fff;
}
.light-layout.fm-dark-button-style .blog-articles article footer .read-more:hover:after,
.fm-dark-button-style .blog-articles article footer .read-more:hover:after,
.light-layout.fm-dark-button-style .hit-box footer .read-more:hover:after,
.fm-dark-button-style .hit-box footer .read-more:hover:after,
.light-layout.fm-dark-button-style .blog-articles article footer .read-more:hover:before,
.fm-dark-button-style .blog-articles article footer .read-more:hover:before,
.light-layout.fm-dark-button-style .hit-box footer .read-more:hover:before,
.fm-dark-button-style .hit-box footer .read-more:hover:before {
  background: #801e00;
  opacity: 0.55;
}
.light-layout.fm-dark-button-style .hit-box footer .read-more,
.fm-dark-button-style .hit-box footer .read-more {
  display: inline-block;
  line-height: 1rem;
}
.light-layout.fm-dark-button-style .hit-box footer .read-more:hover,
.fm-dark-button-style .hit-box footer .read-more:hover {
  color: #ff3c00;
}
.light-layout.fm-dark-button-style .call-to-action-block h2,
.fm-dark-button-style .call-to-action-block h2 {
  padding-top: 0;
  font-weight: 500;
  font-size: 2.4rem;
  text-transform: uppercase;
}
.light-layout.fm-dark-button-style .call-to-action-block p,
.fm-dark-button-style .call-to-action-block p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 300;
}
.light-layout.fm-dark-button-style .call-to-action-block .default-btn,
.fm-dark-button-style .call-to-action-block .default-btn {
  color: #fff;
  padding: 1rem 2.5rem 1rem 2.5rem;
  border-radius: 0.4rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  border: 0.1rem solid rgba(255, 255, 255, 0.8);
}
.light-layout.fm-dark-button-style .call-to-action-block .default-btn:after,
.fm-dark-button-style .call-to-action-block .default-btn:after,
.light-layout.fm-dark-button-style .call-to-action-block .default-btn:before,
.fm-dark-button-style .call-to-action-block .default-btn:before {
  background: #cc3000;
  opacity: 0;
}
.light-layout.fm-dark-button-style .call-to-action-block .default-btn:hover,
.fm-dark-button-style .call-to-action-block .default-btn:hover {
  color: #fff;
}
.light-layout.fm-dark-button-style .call-to-action-block .default-btn:hover:after,
.fm-dark-button-style .call-to-action-block .default-btn:hover:after,
.light-layout.fm-dark-button-style .call-to-action-block .default-btn:hover:before,
.fm-dark-button-style .call-to-action-block .default-btn:hover:before {
  opacity: 0.2;
}
.light-layout.fm-dark-button-style .events-articles article footer .read-more,
.fm-dark-button-style .events-articles article footer .read-more {
  color: #fff;
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 0.4rem;
}
.light-layout.fm-dark-button-style .events-articles article footer .read-more:after,
.fm-dark-button-style .events-articles article footer .read-more:after,
.light-layout.fm-dark-button-style .events-articles article footer .read-more:before,
.fm-dark-button-style .events-articles article footer .read-more:before {
  background: #ff3c00;
  opacity: 0.45;
}
.light-layout.fm-dark-button-style .events-articles article footer .read-more:hover,
.fm-dark-button-style .events-articles article footer .read-more:hover {
  color: #fff;
}
.light-layout.fm-dark-button-style .events-articles article footer .read-more:hover:after,
.fm-dark-button-style .events-articles article footer .read-more:hover:after,
.light-layout.fm-dark-button-style .events-articles article footer .read-more:hover:before,
.fm-dark-button-style .events-articles article footer .read-more:hover:before {
  background: #801e00;
  opacity: 0.55;
}
.light-layout.fm-dark-button-style .comment-form-theme .form-submit input:hover,
.fm-dark-button-style .comment-form-theme .form-submit input:hover,
.light-layout.fm-dark-button-style .comments .comment-respond .form-submit input:hover,
.fm-dark-button-style .comments .comment-respond .form-submit input:hover {
  background: #ff3c00;
}
.light-layout.fm-dark-button-style .rate-album input[type=submit],
.fm-dark-button-style .rate-album input[type=submit],
.light-layout.fm-dark-button-style .comment-container .title-comments a,
.fm-dark-button-style .comment-container .title-comments a,
.light-layout.fm-dark-button-style .comment-form-theme .form-submit input,
.fm-dark-button-style .comment-form-theme .form-submit input,
.light-layout.fm-dark-button-style .comments .comment-respond .form-submit input,
.fm-dark-button-style .comments .comment-respond .form-submit input,
.light-layout.fm-dark-button-style .woocommerce #respond input#submit,
.fm-dark-button-style .woocommerce #respond input#submit,
.light-layout.fm-dark-button-style .single-product #respond input#submit,
.fm-dark-button-style .single-product #respond input#submit,
.light-layout.fm-dark-button-style .woocommerce a.button,
.fm-dark-button-style .woocommerce a.button,
.light-layout.fm-dark-button-style .single-product a.button,
.fm-dark-button-style .single-product a.button,
.light-layout.fm-dark-button-style .woocommerce button.button,
.fm-dark-button-style .woocommerce button.button,
.light-layout.fm-dark-button-style .single-product button.button,
.fm-dark-button-style .single-product button.button,
.light-layout.fm-dark-button-style .woocommerce input.button,
.fm-dark-button-style .woocommerce input.button,
.light-layout.fm-dark-button-style .single-product input.button,
.fm-dark-button-style .single-product input.button {
  background: #ff3c00;
}
.light-layout.fm-dark-button-style .widget.widget-blog-article article footer .read-more,
.fm-dark-button-style .widget.widget-blog-article article footer .read-more,
.light-layout.fm-dark-button-style .rate-album input[type=submit],
.fm-dark-button-style .rate-album input[type=submit],
.light-layout.fm-dark-button-style .comment-container .title-comments a,
.fm-dark-button-style .comment-container .title-comments a,
.light-layout.fm-dark-button-style .comment-form-theme .form-submit input,
.fm-dark-button-style .comment-form-theme .form-submit input,
.light-layout.fm-dark-button-style .woocommerce #respond input#submit,
.fm-dark-button-style .woocommerce #respond input#submit,
.light-layout.fm-dark-button-style .single-product #respond input#submit,
.fm-dark-button-style .single-product #respond input#submit,
.light-layout.fm-dark-button-style .woocommerce a.button,
.fm-dark-button-style .woocommerce a.button,
.light-layout.fm-dark-button-style .single-product a.button,
.fm-dark-button-style .single-product a.button,
.light-layout.fm-dark-button-style .woocommerce button.button,
.fm-dark-button-style .woocommerce button.button,
.light-layout.fm-dark-button-style .single-product button.button,
.fm-dark-button-style .single-product button.button,
.light-layout.fm-dark-button-style .woocommerce input.button,
.fm-dark-button-style .woocommerce input.button,
.light-layout.fm-dark-button-style .single-product input.button,
.fm-dark-button-style .single-product input.button,
.light-layout.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.light-layout.fm-dark-button-style .carousel-news-article footer .read-more a,
.fm-dark-button-style .carousel-news-article footer .read-more a,
.light-layout.fm-dark-button-style ul.products .product > .button,
.fm-dark-button-style ul.products .product > .button,
.light-layout.fm-dark-button-style .news-listing article footer .read-more,
.fm-dark-button-style .news-listing article footer .read-more,
.light-layout.fm-dark-button-style .widget.widget-latest-news article footer a.read-more,
.fm-dark-button-style .widget.widget-latest-news article footer a.read-more,
.light-layout.fm-dark-button-style .widget.widget_search input[type=submit],
.fm-dark-button-style .widget.widget_search input[type=submit],
.light-layout.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.light-layout.fm-dark-button-style .tickera input[type=submit],
.fm-dark-button-style .tickera input[type=submit],
.light-layout.fm-dark-button-style .tickera button[type=submit],
.fm-dark-button-style .tickera button[type=submit],
.light-layout.fm-dark-button-style .bookatable input[type=submit],
.fm-dark-button-style .bookatable input[type=submit],
.light-layout.fm-dark-button-style .bookatable button[type=submit],
.fm-dark-button-style .bookatable button[type=submit],
.light-layout.fm-dark-button-style div.tickera .tc_in_cart a,
.fm-dark-button-style div.tickera .tc_in_cart a,
.light-layout.fm-dark-button-style table.tickera .add_to_cart,
.fm-dark-button-style table.tickera .add_to_cart,
.light-layout.fm-dark-button-style .inline-event-listing .the-reserve-button a,
.fm-dark-button-style .inline-event-listing .the-reserve-button a,
.light-layout.fm-dark-button-style .tickera-page-order .blog-single-container.page p a,
.fm-dark-button-style .tickera-page-order .blog-single-container.page p a,
.light-layout.fm-dark-button-style .tickera .order-details tbody tr td a,
.fm-dark-button-style .tickera .order-details tbody tr td a {
  color: #fff;
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 0.4rem;
}
.light-layout.fm-dark-button-style .widget.widget-blog-article article footer .read-more:after,
.fm-dark-button-style .widget.widget-blog-article article footer .read-more:after,
.light-layout.fm-dark-button-style .rate-album input[type=submit]:after,
.fm-dark-button-style .rate-album input[type=submit]:after,
.light-layout.fm-dark-button-style .comment-container .title-comments a:after,
.fm-dark-button-style .comment-container .title-comments a:after,
.light-layout.fm-dark-button-style .comment-form-theme .form-submit input:after,
.fm-dark-button-style .comment-form-theme .form-submit input:after,
.light-layout.fm-dark-button-style .woocommerce #respond input#submit:after,
.fm-dark-button-style .woocommerce #respond input#submit:after,
.light-layout.fm-dark-button-style .single-product #respond input#submit:after,
.fm-dark-button-style .single-product #respond input#submit:after,
.light-layout.fm-dark-button-style .woocommerce a.button:after,
.fm-dark-button-style .woocommerce a.button:after,
.light-layout.fm-dark-button-style .single-product a.button:after,
.fm-dark-button-style .single-product a.button:after,
.light-layout.fm-dark-button-style .woocommerce button.button:after,
.fm-dark-button-style .woocommerce button.button:after,
.light-layout.fm-dark-button-style .single-product button.button:after,
.fm-dark-button-style .single-product button.button:after,
.light-layout.fm-dark-button-style .woocommerce input.button:after,
.fm-dark-button-style .woocommerce input.button:after,
.light-layout.fm-dark-button-style .single-product input.button:after,
.fm-dark-button-style .single-product input.button:after,
.light-layout.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:after,
.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:after,
.light-layout.fm-dark-button-style .carousel-news-article footer .read-more a:after,
.fm-dark-button-style .carousel-news-article footer .read-more a:after,
.light-layout.fm-dark-button-style ul.products .product > .button:after,
.fm-dark-button-style ul.products .product > .button:after,
.light-layout.fm-dark-button-style .news-listing article footer .read-more:after,
.fm-dark-button-style .news-listing article footer .read-more:after,
.light-layout.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:after,
.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:after,
.light-layout.fm-dark-button-style .widget.widget_search input[type=submit]:after,
.fm-dark-button-style .widget.widget_search input[type=submit]:after,
.light-layout.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:after,
.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:after,
.light-layout.fm-dark-button-style .tickera input[type=submit]:after,
.fm-dark-button-style .tickera input[type=submit]:after,
.light-layout.fm-dark-button-style .tickera button[type=submit]:after,
.fm-dark-button-style .tickera button[type=submit]:after,
.light-layout.fm-dark-button-style .bookatable input[type=submit]:after,
.fm-dark-button-style .bookatable input[type=submit]:after,
.light-layout.fm-dark-button-style .bookatable button[type=submit]:after,
.fm-dark-button-style .bookatable button[type=submit]:after,
.light-layout.fm-dark-button-style div.tickera .tc_in_cart a:after,
.fm-dark-button-style div.tickera .tc_in_cart a:after,
.light-layout.fm-dark-button-style table.tickera .add_to_cart:after,
.fm-dark-button-style table.tickera .add_to_cart:after,
.light-layout.fm-dark-button-style .inline-event-listing .the-reserve-button a:after,
.fm-dark-button-style .inline-event-listing .the-reserve-button a:after,
.light-layout.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:after,
.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:after,
.light-layout.fm-dark-button-style .tickera .order-details tbody tr td a:after,
.fm-dark-button-style .tickera .order-details tbody tr td a:after,
.light-layout.fm-dark-button-style .widget.widget-blog-article article footer .read-more:before,
.fm-dark-button-style .widget.widget-blog-article article footer .read-more:before,
.light-layout.fm-dark-button-style .rate-album input[type=submit]:before,
.fm-dark-button-style .rate-album input[type=submit]:before,
.light-layout.fm-dark-button-style .comment-container .title-comments a:before,
.fm-dark-button-style .comment-container .title-comments a:before,
.light-layout.fm-dark-button-style .comment-form-theme .form-submit input:before,
.fm-dark-button-style .comment-form-theme .form-submit input:before,
.light-layout.fm-dark-button-style .woocommerce #respond input#submit:before,
.fm-dark-button-style .woocommerce #respond input#submit:before,
.light-layout.fm-dark-button-style .single-product #respond input#submit:before,
.fm-dark-button-style .single-product #respond input#submit:before,
.light-layout.fm-dark-button-style .woocommerce a.button:before,
.fm-dark-button-style .woocommerce a.button:before,
.light-layout.fm-dark-button-style .single-product a.button:before,
.fm-dark-button-style .single-product a.button:before,
.light-layout.fm-dark-button-style .woocommerce button.button:before,
.fm-dark-button-style .woocommerce button.button:before,
.light-layout.fm-dark-button-style .single-product button.button:before,
.fm-dark-button-style .single-product button.button:before,
.light-layout.fm-dark-button-style .woocommerce input.button:before,
.fm-dark-button-style .woocommerce input.button:before,
.light-layout.fm-dark-button-style .single-product input.button:before,
.fm-dark-button-style .single-product input.button:before,
.light-layout.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:before,
.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:before,
.light-layout.fm-dark-button-style .carousel-news-article footer .read-more a:before,
.fm-dark-button-style .carousel-news-article footer .read-more a:before,
.light-layout.fm-dark-button-style ul.products .product > .button:before,
.fm-dark-button-style ul.products .product > .button:before,
.light-layout.fm-dark-button-style .news-listing article footer .read-more:before,
.fm-dark-button-style .news-listing article footer .read-more:before,
.light-layout.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:before,
.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:before,
.light-layout.fm-dark-button-style .widget.widget_search input[type=submit]:before,
.fm-dark-button-style .widget.widget_search input[type=submit]:before,
.light-layout.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:before,
.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:before,
.light-layout.fm-dark-button-style .tickera input[type=submit]:before,
.fm-dark-button-style .tickera input[type=submit]:before,
.light-layout.fm-dark-button-style .tickera button[type=submit]:before,
.fm-dark-button-style .tickera button[type=submit]:before,
.light-layout.fm-dark-button-style .bookatable input[type=submit]:before,
.fm-dark-button-style .bookatable input[type=submit]:before,
.light-layout.fm-dark-button-style .bookatable button[type=submit]:before,
.fm-dark-button-style .bookatable button[type=submit]:before,
.light-layout.fm-dark-button-style div.tickera .tc_in_cart a:before,
.fm-dark-button-style div.tickera .tc_in_cart a:before,
.light-layout.fm-dark-button-style table.tickera .add_to_cart:before,
.fm-dark-button-style table.tickera .add_to_cart:before,
.light-layout.fm-dark-button-style .inline-event-listing .the-reserve-button a:before,
.fm-dark-button-style .inline-event-listing .the-reserve-button a:before,
.light-layout.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:before,
.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:before,
.light-layout.fm-dark-button-style .tickera .order-details tbody tr td a:before,
.fm-dark-button-style .tickera .order-details tbody tr td a:before {
  background: #ff3c00;
  opacity: 0.45;
}
.light-layout.fm-dark-button-style .widget.widget-blog-article article footer .read-more:hover,
.fm-dark-button-style .widget.widget-blog-article article footer .read-more:hover,
.light-layout.fm-dark-button-style .rate-album input[type=submit]:hover,
.fm-dark-button-style .rate-album input[type=submit]:hover,
.light-layout.fm-dark-button-style .comment-container .title-comments a:hover,
.fm-dark-button-style .comment-container .title-comments a:hover,
.light-layout.fm-dark-button-style .comment-form-theme .form-submit input:hover,
.fm-dark-button-style .comment-form-theme .form-submit input:hover,
.light-layout.fm-dark-button-style .woocommerce #respond input#submit:hover,
.fm-dark-button-style .woocommerce #respond input#submit:hover,
.light-layout.fm-dark-button-style .single-product #respond input#submit:hover,
.fm-dark-button-style .single-product #respond input#submit:hover,
.light-layout.fm-dark-button-style .woocommerce a.button:hover,
.fm-dark-button-style .woocommerce a.button:hover,
.light-layout.fm-dark-button-style .single-product a.button:hover,
.fm-dark-button-style .single-product a.button:hover,
.light-layout.fm-dark-button-style .woocommerce button.button:hover,
.fm-dark-button-style .woocommerce button.button:hover,
.light-layout.fm-dark-button-style .single-product button.button:hover,
.fm-dark-button-style .single-product button.button:hover,
.light-layout.fm-dark-button-style .woocommerce input.button:hover,
.fm-dark-button-style .woocommerce input.button:hover,
.light-layout.fm-dark-button-style .single-product input.button:hover,
.fm-dark-button-style .single-product input.button:hover,
.light-layout.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover,
.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover,
.light-layout.fm-dark-button-style .carousel-news-article footer .read-more a:hover,
.fm-dark-button-style .carousel-news-article footer .read-more a:hover,
.light-layout.fm-dark-button-style ul.products .product > .button:hover,
.fm-dark-button-style ul.products .product > .button:hover,
.light-layout.fm-dark-button-style .news-listing article footer .read-more:hover,
.fm-dark-button-style .news-listing article footer .read-more:hover,
.light-layout.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:hover,
.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:hover,
.light-layout.fm-dark-button-style .widget.widget_search input[type=submit]:hover,
.fm-dark-button-style .widget.widget_search input[type=submit]:hover,
.light-layout.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.light-layout.fm-dark-button-style .tickera input[type=submit]:hover,
.fm-dark-button-style .tickera input[type=submit]:hover,
.light-layout.fm-dark-button-style .tickera button[type=submit]:hover,
.fm-dark-button-style .tickera button[type=submit]:hover,
.light-layout.fm-dark-button-style .bookatable input[type=submit]:hover,
.fm-dark-button-style .bookatable input[type=submit]:hover,
.light-layout.fm-dark-button-style .bookatable button[type=submit]:hover,
.fm-dark-button-style .bookatable button[type=submit]:hover,
.light-layout.fm-dark-button-style div.tickera .tc_in_cart a:hover,
.fm-dark-button-style div.tickera .tc_in_cart a:hover,
.light-layout.fm-dark-button-style table.tickera .add_to_cart:hover,
.fm-dark-button-style table.tickera .add_to_cart:hover,
.light-layout.fm-dark-button-style .inline-event-listing .the-reserve-button a:hover,
.fm-dark-button-style .inline-event-listing .the-reserve-button a:hover,
.light-layout.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:hover,
.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:hover,
.light-layout.fm-dark-button-style .tickera .order-details tbody tr td a:hover,
.fm-dark-button-style .tickera .order-details tbody tr td a:hover {
  color: #fff;
}
.light-layout.fm-dark-button-style .widget.widget-blog-article article footer .read-more:hover:after,
.fm-dark-button-style .widget.widget-blog-article article footer .read-more:hover:after,
.light-layout.fm-dark-button-style .rate-album input[type=submit]:hover:after,
.fm-dark-button-style .rate-album input[type=submit]:hover:after,
.light-layout.fm-dark-button-style .comment-container .title-comments a:hover:after,
.fm-dark-button-style .comment-container .title-comments a:hover:after,
.light-layout.fm-dark-button-style .comment-form-theme .form-submit input:hover:after,
.fm-dark-button-style .comment-form-theme .form-submit input:hover:after,
.light-layout.fm-dark-button-style .woocommerce #respond input#submit:hover:after,
.fm-dark-button-style .woocommerce #respond input#submit:hover:after,
.light-layout.fm-dark-button-style .single-product #respond input#submit:hover:after,
.fm-dark-button-style .single-product #respond input#submit:hover:after,
.light-layout.fm-dark-button-style .woocommerce a.button:hover:after,
.fm-dark-button-style .woocommerce a.button:hover:after,
.light-layout.fm-dark-button-style .single-product a.button:hover:after,
.fm-dark-button-style .single-product a.button:hover:after,
.light-layout.fm-dark-button-style .woocommerce button.button:hover:after,
.fm-dark-button-style .woocommerce button.button:hover:after,
.light-layout.fm-dark-button-style .single-product button.button:hover:after,
.fm-dark-button-style .single-product button.button:hover:after,
.light-layout.fm-dark-button-style .woocommerce input.button:hover:after,
.fm-dark-button-style .woocommerce input.button:hover:after,
.light-layout.fm-dark-button-style .single-product input.button:hover:after,
.fm-dark-button-style .single-product input.button:hover:after,
.light-layout.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:after,
.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:after,
.light-layout.fm-dark-button-style .carousel-news-article footer .read-more a:hover:after,
.fm-dark-button-style .carousel-news-article footer .read-more a:hover:after,
.light-layout.fm-dark-button-style ul.products .product > .button:hover:after,
.fm-dark-button-style ul.products .product > .button:hover:after,
.light-layout.fm-dark-button-style .news-listing article footer .read-more:hover:after,
.fm-dark-button-style .news-listing article footer .read-more:hover:after,
.light-layout.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:hover:after,
.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:hover:after,
.light-layout.fm-dark-button-style .widget.widget_search input[type=submit]:hover:after,
.fm-dark-button-style .widget.widget_search input[type=submit]:hover:after,
.light-layout.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:after,
.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:after,
.light-layout.fm-dark-button-style .tickera input[type=submit]:hover:after,
.fm-dark-button-style .tickera input[type=submit]:hover:after,
.light-layout.fm-dark-button-style .tickera button[type=submit]:hover:after,
.fm-dark-button-style .tickera button[type=submit]:hover:after,
.light-layout.fm-dark-button-style .bookatable input[type=submit]:hover:after,
.fm-dark-button-style .bookatable input[type=submit]:hover:after,
.light-layout.fm-dark-button-style .bookatable button[type=submit]:hover:after,
.fm-dark-button-style .bookatable button[type=submit]:hover:after,
.light-layout.fm-dark-button-style div.tickera .tc_in_cart a:hover:after,
.fm-dark-button-style div.tickera .tc_in_cart a:hover:after,
.light-layout.fm-dark-button-style table.tickera .add_to_cart:hover:after,
.fm-dark-button-style table.tickera .add_to_cart:hover:after,
.light-layout.fm-dark-button-style .inline-event-listing .the-reserve-button a:hover:after,
.fm-dark-button-style .inline-event-listing .the-reserve-button a:hover:after,
.light-layout.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:hover:after,
.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:hover:after,
.light-layout.fm-dark-button-style .tickera .order-details tbody tr td a:hover:after,
.fm-dark-button-style .tickera .order-details tbody tr td a:hover:after,
.light-layout.fm-dark-button-style .widget.widget-blog-article article footer .read-more:hover:before,
.fm-dark-button-style .widget.widget-blog-article article footer .read-more:hover:before,
.light-layout.fm-dark-button-style .rate-album input[type=submit]:hover:before,
.fm-dark-button-style .rate-album input[type=submit]:hover:before,
.light-layout.fm-dark-button-style .comment-container .title-comments a:hover:before,
.fm-dark-button-style .comment-container .title-comments a:hover:before,
.light-layout.fm-dark-button-style .comment-form-theme .form-submit input:hover:before,
.fm-dark-button-style .comment-form-theme .form-submit input:hover:before,
.light-layout.fm-dark-button-style .woocommerce #respond input#submit:hover:before,
.fm-dark-button-style .woocommerce #respond input#submit:hover:before,
.light-layout.fm-dark-button-style .single-product #respond input#submit:hover:before,
.fm-dark-button-style .single-product #respond input#submit:hover:before,
.light-layout.fm-dark-button-style .woocommerce a.button:hover:before,
.fm-dark-button-style .woocommerce a.button:hover:before,
.light-layout.fm-dark-button-style .single-product a.button:hover:before,
.fm-dark-button-style .single-product a.button:hover:before,
.light-layout.fm-dark-button-style .woocommerce button.button:hover:before,
.fm-dark-button-style .woocommerce button.button:hover:before,
.light-layout.fm-dark-button-style .single-product button.button:hover:before,
.fm-dark-button-style .single-product button.button:hover:before,
.light-layout.fm-dark-button-style .woocommerce input.button:hover:before,
.fm-dark-button-style .woocommerce input.button:hover:before,
.light-layout.fm-dark-button-style .single-product input.button:hover:before,
.fm-dark-button-style .single-product input.button:hover:before,
.light-layout.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:before,
.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy:hover:before,
.light-layout.fm-dark-button-style .carousel-news-article footer .read-more a:hover:before,
.fm-dark-button-style .carousel-news-article footer .read-more a:hover:before,
.light-layout.fm-dark-button-style ul.products .product > .button:hover:before,
.fm-dark-button-style ul.products .product > .button:hover:before,
.light-layout.fm-dark-button-style .news-listing article footer .read-more:hover:before,
.fm-dark-button-style .news-listing article footer .read-more:hover:before,
.light-layout.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:hover:before,
.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:hover:before,
.light-layout.fm-dark-button-style .widget.widget_search input[type=submit]:hover:before,
.fm-dark-button-style .widget.widget_search input[type=submit]:hover:before,
.light-layout.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:before,
.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover:before,
.light-layout.fm-dark-button-style .tickera input[type=submit]:hover:before,
.fm-dark-button-style .tickera input[type=submit]:hover:before,
.light-layout.fm-dark-button-style .tickera button[type=submit]:hover:before,
.fm-dark-button-style .tickera button[type=submit]:hover:before,
.light-layout.fm-dark-button-style .bookatable input[type=submit]:hover:before,
.fm-dark-button-style .bookatable input[type=submit]:hover:before,
.light-layout.fm-dark-button-style .bookatable button[type=submit]:hover:before,
.fm-dark-button-style .bookatable button[type=submit]:hover:before,
.light-layout.fm-dark-button-style div.tickera .tc_in_cart a:hover:before,
.fm-dark-button-style div.tickera .tc_in_cart a:hover:before,
.light-layout.fm-dark-button-style table.tickera .add_to_cart:hover:before,
.fm-dark-button-style table.tickera .add_to_cart:hover:before,
.light-layout.fm-dark-button-style .inline-event-listing .the-reserve-button a:hover:before,
.fm-dark-button-style .inline-event-listing .the-reserve-button a:hover:before,
.light-layout.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:hover:before,
.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:hover:before,
.light-layout.fm-dark-button-style .tickera .order-details tbody tr td a:hover:before,
.fm-dark-button-style .tickera .order-details tbody tr td a:hover:before {
  background: #801e00;
  opacity: 0.55;
}
.light-layout.fm-dark-button-style .rate-album input[type=submit],
.fm-dark-button-style .rate-album input[type=submit],
.light-layout.fm-dark-button-style .comment-container .title-comments a,
.fm-dark-button-style .comment-container .title-comments a,
.light-layout.fm-dark-button-style .comment-form-theme .form-submit input,
.fm-dark-button-style .comment-form-theme .form-submit input,
.light-layout.fm-dark-button-style .woocommerce #respond input#submit,
.fm-dark-button-style .woocommerce #respond input#submit,
.light-layout.fm-dark-button-style .single-product #respond input#submit,
.fm-dark-button-style .single-product #respond input#submit,
.light-layout.fm-dark-button-style .woocommerce a.button,
.fm-dark-button-style .woocommerce a.button,
.light-layout.fm-dark-button-style .single-product a.button,
.fm-dark-button-style .single-product a.button,
.light-layout.fm-dark-button-style .woocommerce button.button,
.fm-dark-button-style .woocommerce button.button,
.light-layout.fm-dark-button-style .single-product button.button,
.fm-dark-button-style .single-product button.button,
.light-layout.fm-dark-button-style .woocommerce input.button,
.fm-dark-button-style .woocommerce input.button,
.light-layout.fm-dark-button-style .single-product input.button,
.fm-dark-button-style .single-product input.button,
.light-layout.fm-dark-button-style .woocommerce input.button.alt,
.fm-dark-button-style .woocommerce input.button.alt,
.light-layout.fm-dark-button-style .woocommerce a.button.alt,
.fm-dark-button-style .woocommerce a.button.alt,
.light-layout.fm-dark-button-style ul.products .product > .button,
.fm-dark-button-style ul.products .product > .button,
.light-layout.fm-dark-button-style .news-listing article footer .read-more,
.fm-dark-button-style .news-listing article footer .read-more,
.light-layout.fm-dark-button-style .widget.widget-latest-news article footer a.read-more,
.fm-dark-button-style .widget.widget-latest-news article footer a.read-more,
.light-layout.fm-dark-button-style .widget.widget_search input[type=submit],
.fm-dark-button-style .widget.widget_search input[type=submit],
.light-layout.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.light-layout.fm-dark-button-style .tickera input[type=submit],
.fm-dark-button-style .tickera input[type=submit],
.light-layout.fm-dark-button-style .tickera button[type=submit],
.fm-dark-button-style .tickera button[type=submit],
.light-layout.fm-dark-button-style .bookatable input[type=submit],
.fm-dark-button-style .bookatable input[type=submit],
.light-layout.fm-dark-button-style .bookatable button[type=submit],
.fm-dark-button-style .bookatable button[type=submit],
.light-layout.fm-dark-button-style div.tickera .tc_in_cart a,
.fm-dark-button-style div.tickera .tc_in_cart a,
.light-layout.fm-dark-button-style table.tickera .add_to_cart,
.fm-dark-button-style table.tickera .add_to_cart,
.light-layout.fm-dark-button-style .tickera-page-order .blog-single-container.page p a,
.fm-dark-button-style .tickera-page-order .blog-single-container.page p a,
.light-layout.fm-dark-button-style .tickera .order-details tbody tr td a,
.fm-dark-button-style .tickera .order-details tbody tr td a {
  background: rgba(66, 201, 105, 0.9);
}
.light-layout.fm-dark-button-style .rate-album input[type=submit]:hover,
.fm-dark-button-style .rate-album input[type=submit]:hover,
.light-layout.fm-dark-button-style .comment-container .title-comments a:hover,
.fm-dark-button-style .comment-container .title-comments a:hover,
.light-layout.fm-dark-button-style .comment-form-theme .form-submit input:hover,
.fm-dark-button-style .comment-form-theme .form-submit input:hover,
.light-layout.fm-dark-button-style .woocommerce #respond input#submit:hover,
.fm-dark-button-style .woocommerce #respond input#submit:hover,
.light-layout.fm-dark-button-style .single-product #respond input#submit:hover,
.fm-dark-button-style .single-product #respond input#submit:hover,
.light-layout.fm-dark-button-style .woocommerce a.button:hover,
.fm-dark-button-style .woocommerce a.button:hover,
.light-layout.fm-dark-button-style .single-product a.button:hover,
.fm-dark-button-style .single-product a.button:hover,
.light-layout.fm-dark-button-style .woocommerce button.button:hover,
.fm-dark-button-style .woocommerce button.button:hover,
.light-layout.fm-dark-button-style .single-product button.button:hover,
.fm-dark-button-style .single-product button.button:hover,
.light-layout.fm-dark-button-style .woocommerce input.button:hover,
.fm-dark-button-style .woocommerce input.button:hover,
.light-layout.fm-dark-button-style .single-product input.button:hover,
.fm-dark-button-style .single-product input.button:hover,
.light-layout.fm-dark-button-style .woocommerce input.button.alt:hover,
.fm-dark-button-style .woocommerce input.button.alt:hover,
.light-layout.fm-dark-button-style .woocommerce a.button.alt:hover,
.fm-dark-button-style .woocommerce a.button.alt:hover,
.light-layout.fm-dark-button-style ul.products .product > .button:hover,
.fm-dark-button-style ul.products .product > .button:hover,
.light-layout.fm-dark-button-style .news-listing article footer .read-more:hover,
.fm-dark-button-style .news-listing article footer .read-more:hover,
.light-layout.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:hover,
.fm-dark-button-style .widget.widget-latest-news article footer a.read-more:hover,
.light-layout.fm-dark-button-style .widget.widget_search input[type=submit]:hover,
.fm-dark-button-style .widget.widget_search input[type=submit]:hover,
.light-layout.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit]:hover,
.light-layout.fm-dark-button-style .tickera input[type=submit]:hover,
.fm-dark-button-style .tickera input[type=submit]:hover,
.light-layout.fm-dark-button-style .tickera button[type=submit]:hover,
.fm-dark-button-style .tickera button[type=submit]:hover,
.light-layout.fm-dark-button-style .bookatable input[type=submit]:hover,
.fm-dark-button-style .bookatable input[type=submit]:hover,
.light-layout.fm-dark-button-style .bookatable button[type=submit]:hover,
.fm-dark-button-style .bookatable button[type=submit]:hover,
.light-layout.fm-dark-button-style div.tickera .tc_in_cart a:hover,
.fm-dark-button-style div.tickera .tc_in_cart a:hover,
.light-layout.fm-dark-button-style table.tickera .add_to_cart:hover,
.fm-dark-button-style table.tickera .add_to_cart:hover,
.light-layout.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:hover,
.fm-dark-button-style .tickera-page-order .blog-single-container.page p a:hover,
.light-layout.fm-dark-button-style .tickera .order-details tbody tr td a:hover,
.fm-dark-button-style .tickera .order-details tbody tr td a:hover {
  background: #42c969 !important;
}
.light-layout.fm-dark-button-style .carousel-news-article footer .read-more a,
.fm-dark-button-style .carousel-news-article footer .read-more a {
  padding: 0 0.7rem;
  color: #fff;
}
.light-layout.fm-dark-button-style .carousel-news-article:hover footer .read-more a,
.fm-dark-button-style .carousel-news-article:hover footer .read-more a {
  background: #801e00;
  opacity: 1;
}
.light-layout.fm-dark-button-style .widget.widget-latest-news article footer a.read-more,
.fm-dark-button-style .widget.widget-latest-news article footer a.read-more {
  padding: 0.8rem 1.7rem !important;
}
.light-layout.fm-dark-button-style .news-listing article footer .read-more,
.fm-dark-button-style .news-listing article footer .read-more {
  padding: 1.2rem 3rem;
}
.light-layout.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy,
.fm-dark-button-style .blog-single-container .event-title header figure figcaption .buy-album .buy {
  padding: 0.6rem 1.5rem;
}
.light-layout.fm-dark-button-style .comment-container .title-comments a,
.fm-dark-button-style .comment-container .title-comments a,
.light-layout.fm-dark-button-style .widget.widget_search input[type=submit],
.fm-dark-button-style .widget.widget_search input[type=submit] {
  padding: 1.5rem 2.5rem;
}
.light-layout.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit],
.fm-dark-button-style .widget.woocommerce .woocommerce-product-search input[type=submit] {
  padding: 1rem 2.5rem;
}
.light-layout.fm-dark-button-style .rate-album input[type=submit],
.fm-dark-button-style .rate-album input[type=submit],
.light-layout.fm-dark-button-style .comment-form-theme .form-submit input,
.fm-dark-button-style .comment-form-theme .form-submit input {
  padding: 1.55rem 4rem;
}
.light-layout.fm-dark-button-style .woocommerce #respond input#submit,
.fm-dark-button-style .woocommerce #respond input#submit,
.light-layout.fm-dark-button-style .single-product #respond input#submit,
.fm-dark-button-style .single-product #respond input#submit,
.light-layout.fm-dark-button-style .woocommerce a.button,
.fm-dark-button-style .woocommerce a.button,
.light-layout.fm-dark-button-style .single-product a.button,
.fm-dark-button-style .single-product a.button,
.light-layout.fm-dark-button-style .woocommerce button.button,
.fm-dark-button-style .woocommerce button.button,
.light-layout.fm-dark-button-style .single-product button.button,
.fm-dark-button-style .single-product button.button,
.light-layout.fm-dark-button-style .woocommerce input.button,
.fm-dark-button-style .woocommerce input.button,
.light-layout.fm-dark-button-style .single-product input.button,
.fm-dark-button-style .single-product input.button,
.light-layout.fm-dark-button-style .woocommerce input.button.alt,
.fm-dark-button-style .woocommerce input.button.alt,
.light-layout.fm-dark-button-style .woocommerce a.button.alt,
.fm-dark-button-style .woocommerce a.button.alt {
  padding: 1.5rem 2.5rem;
}
.light-layout.fm-dark-button-style .widget .newsletter-container button,
.fm-dark-button-style .widget .newsletter-container button {
  background: transparent;
}
.light-layout.fm-dark-button-style .comment-container .title-comments a:hover,
.fm-dark-button-style .comment-container .title-comments a:hover,
.light-layout.fm-dark-button-style .woocommerce #respond input#submit:hover,
.fm-dark-button-style .woocommerce #respond input#submit:hover,
.light-layout.fm-dark-button-style .single-product #respond input#submit:hover,
.fm-dark-button-style .single-product #respond input#submit:hover,
.light-layout.fm-dark-button-style .woocommerce a.button:hover,
.fm-dark-button-style .woocommerce a.button:hover,
.light-layout.fm-dark-button-style .single-product a.button:hover,
.fm-dark-button-style .single-product a.button:hover,
.light-layout.fm-dark-button-style .woocommerce button.button:hover,
.fm-dark-button-style .woocommerce button.button:hover,
.light-layout.fm-dark-button-style .single-product button.button:hover,
.fm-dark-button-style .single-product button.button:hover,
.light-layout.fm-dark-button-style .woocommerce input.button:hover,
.fm-dark-button-style .woocommerce input.button:hover,
.light-layout.fm-dark-button-style .single-product input.button:hover,
.fm-dark-button-style .single-product input.button:hover,
.light-layout.fm-dark-button-style .buy-btn:hover,
.fm-dark-button-style .buy-btn:hover {
  color: #fff;
}
.light-layout.fm-dark-button-style .news-listing article footer .read-more:before,
.fm-dark-button-style .news-listing article footer .read-more:before {
  display: none;
}
.light-layout.fm-dark-button-style .social-mini-box > a.view,
.fm-dark-button-style .social-mini-box > a.view {
  color: #fff;
  padding: 0.8rem 2rem 0.8rem 2rem;
  border-radius: 0.4rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.8);
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  font-size: 1rem;
  line-height: 1rem;
  display: inline-block;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  background: none;
  color: #ff3c00;
  font-weight: 500;
  border-color: #ff3c00;
}
.light-layout.fm-dark-button-style .social-mini-box > a.view:after,
.fm-dark-button-style .social-mini-box > a.view:after,
.light-layout.fm-dark-button-style .social-mini-box > a.view:before,
.fm-dark-button-style .social-mini-box > a.view:before {
  background: #cc3000;
  opacity: 0;
}
.light-layout.fm-dark-button-style .social-mini-box > a.view:hover,
.fm-dark-button-style .social-mini-box > a.view:hover {
  color: #fff;
}
.light-layout.fm-dark-button-style .social-mini-box > a.view:hover:after,
.fm-dark-button-style .social-mini-box > a.view:hover:after,
.light-layout.fm-dark-button-style .social-mini-box > a.view:hover:before,
.fm-dark-button-style .social-mini-box > a.view:hover:before {
  opacity: 0.2;
}
.light-layout.fm-dark-button-style .social-mini-box > a.view:hover,
.fm-dark-button-style .social-mini-box > a.view:hover {
  border-color: #801e00;
  background: rgba(66, 201, 105, 0.7);
}
.light-layout.fm-dark-button-style .social-mini-box:hover > a.view,
.fm-dark-button-style .social-mini-box:hover > a.view {
  border-color: #801e00;
  background: rgba(66, 201, 105, 0.7);
  color: #fff;
}
.light-layout.fm-dark-button-style .events-articles article:hover footer .read-more:after,
.fm-dark-button-style .events-articles article:hover footer .read-more:after,
.light-layout.fm-dark-button-style .blog-articles article:hover footer .read-more:after,
.fm-dark-button-style .blog-articles article:hover footer .read-more:after,
.light-layout.fm-dark-button-style .events-articles article:hover footer .read-more:before,
.fm-dark-button-style .events-articles article:hover footer .read-more:before,
.light-layout.fm-dark-button-style .blog-articles article:hover footer .read-more:before,
.fm-dark-button-style .blog-articles article:hover footer .read-more:before {
  background: #801e00;
}
.light-layout.fm-dark-button-style .events-articles article:hover footer .read-more,
.fm-dark-button-style .events-articles article:hover footer .read-more,
.light-layout.fm-dark-button-style .blog-articles article:hover footer .read-more,
.fm-dark-button-style .blog-articles article:hover footer .read-more {
  color: #fff !important;
}
.light-layout.fm-dark-button-style .inline-event-listing .the-reserve-button a,
.fm-dark-button-style .inline-event-listing .the-reserve-button a {
  padding: 2.5rem 3rem;
}
.light-layout.fm-dark-button-style a.button:hover,
.fm-dark-button-style a.button:hover,
.light-layout.fm-dark-button-style div.product form.cart button[type=submit],
.fm-dark-button-style div.product form.cart button[type=submit] {
  color: #fff;
}
.light-layout.fm-dark-button-style .inline-event-listing .the-reserve-button a,
.fm-dark-button-style .inline-event-listing .the-reserve-button a {
  color: #252436;
  border-radius: 6rem;
}
.light-layout.fm-dark-button-style .inline-event-listing .the-reserve-button a:after,
.fm-dark-button-style .inline-event-listing .the-reserve-button a:after {
  opacity: 1;
  background: #fff;
  border-radius: 6rem;
}
.light-layout.fm-dark-button-style .inline-event-listing .the-reserve-button a:hover,
.fm-dark-button-style .inline-event-listing .the-reserve-button a:hover {
  color: #fff;
}
.light-layout.fm-dark-button-style .inline-event-listing .the-reserve-button a:hover:after,
.fm-dark-button-style .inline-event-listing .the-reserve-button a:hover:after {
  background: #ff3c00;
}
