/*

	MAIN STYLESHEET
	=-=-=-=-=-=-=-=-=-=

	  1. Loading
	  2. Custom fonts
	  3. Clearing
	  4. Base
	  5. Fluid videos
	  6. Video background
	  7. Forms
	  8. Helpers
	  9. Medias
	10. Tables
	11. WordPress default classes
	12. Flexslider custom styles
	13. Lightbox custom styles
	14. Containers
	15. Typography
	16. Buttons
	17. Header
	18. Navigation
	19. Plugin Izotope filter
	20. Blog
	21. Gallery
	22. Widgets
	23. Footer
	24. Comments
	25. Pagination
	26. Zoom animation
	27. No touchable devices
	28. 404 page
	29. Search
	30. Wolf Page Builder
	31. Wolf Twitter
	32. Wolf Portfolio
	33. Wolf Albums
	34. Wolf Videos
	35. Wolf Discography
	36. Wolf Events
	37. Wolf Music Network
	38. Wolf Recipes
	39. WooCommerce
	40. 3rd party plugins
	41. Skins
	42. Ajax
	43. Media queries
*/
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	1. Loading
*/
.loading-overlay {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  display: table;
}
.loading-overlay .loader {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}
.loading-overlay .loading-logo {
  margin-top: 2rem;
}
.loading-overlay .loading-logo.pulse {
  -webkit-animation: logopulse 1.44s infinite;
  animation: logopulse 1.44s infinite;
}

@-webkit-keyframes logopulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  22% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  44% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes logopulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  22% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  44% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*
 *  Usage:
 *
      <div class="sk-rotating-plane"></div>
 *
 */
.sk-rotating-plane {
  width: 40px;
  height: 40px;
  background-color: #333333;
  margin: 40px auto;
  -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
  animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }

  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

@keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }

  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

/*
 *  Usage:
 *
      <div class="sk-double-bounce">
        <div class="sk-child sk-double-bounce1"></div>
        <div class="sk-child sk-double-bounce2"></div>
      </div>
 *
 */
.sk-double-bounce {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 40px auto;
}
.sk-double-bounce .sk-child {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-doubleBounce 2.0s infinite ease-in-out;
  animation: sk-doubleBounce 2.0s infinite ease-in-out;
}
.sk-double-bounce .sk-double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-doubleBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-doubleBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*
 *  Usage:
 *
      <div class="sk-wave">
        <div class="sk-rect sk-rect1"></div>
        <div class="sk-rect sk-rect2"></div>
        <div class="sk-rect sk-rect3"></div>
        <div class="sk-rect sk-rect4"></div>
        <div class="sk-rect sk-rect5"></div>
      </div>
 *
 */
.sk-wave {
  margin: 40px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}
.sk-wave .sk-rect {
  background-color: #333333;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
  animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}
.sk-wave .sk-rect1 {
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}
.sk-wave .sk-rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.sk-wave .sk-rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.sk-wave .sk-rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.sk-wave .sk-rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }

  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }

  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

/*
 *  Usage:
 *
      <div class="sk-wandering-cubes">
        <div class="sk-cube sk-cube1"></div>
        <div class="sk-cube sk-cube2"></div>
      </div>
 *
 */
.sk-wandering-cubes {
  margin: 40px auto;
  width: 40px;
  height: 40px;
  position: relative;
}
.sk-wandering-cubes .sk-cube {
  background-color: #333333;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
  animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
}
.sk-wandering-cubes .sk-cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-wanderingCube {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
    transform: translateX(30px) rotate(-90deg) scale(0.5);
  }

  50% {
    /* Hack to make FF rotate in the right direction */
    -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
    transform: translateX(30px) translateY(30px) rotate(-179deg);
  }

  50.1% {
    -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
    transform: translateX(30px) translateY(30px) rotate(-180deg);
  }

  75% {
    -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
    transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes sk-wanderingCube {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
    transform: translateX(30px) rotate(-90deg) scale(0.5);
  }

  50% {
    /* Hack to make FF rotate in the right direction */
    -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
    transform: translateX(30px) translateY(30px) rotate(-179deg);
  }

  50.1% {
    -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
    transform: translateX(30px) translateY(30px) rotate(-180deg);
  }

  75% {
    -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
    transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/*
 *  Usage:
 *
      <div class="sk-spinner sk-spinner-pulse"></div>
 *
 */
.sk-spinner-pulse {
  width: 40px;
  height: 40px;
  margin: 40px auto;
  background-color: #333333;
  border-radius: 100%;
  -webkit-animation: sk-pulseScaleOut 1.0s infinite ease-in-out;
  animation: sk-pulseScaleOut 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

/*
 *  Usage:
 *
      <div class="sk-chasing-dots">
        <div class="sk-child sk-dot1"></div>
        <div class="sk-child sk-dot2"></div>
      </div>
 *
 */
.sk-chasing-dots {
  margin: 40px auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-chasingDotsRotate 2s infinite linear;
  animation: sk-chasingDotsRotate 2s infinite linear;
}
.sk-chasing-dots .sk-child {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #333333;
  border-radius: 100%;
  -webkit-animation: sk-chasingDotsBounce 2s infinite ease-in-out;
  animation: sk-chasingDotsBounce 2s infinite ease-in-out;
}
.sk-chasing-dots .sk-dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-chasingDotsRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes sk-chasingDotsRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-chasingDotsBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-chasingDotsBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*
 *  Usage:
 *
      <div class="sk-three-bounce">
        <div class="sk-child sk-bounce1"></div>
        <div class="sk-child sk-bounce2"></div>
        <div class="sk-child sk-bounce3"></div>
      </div>
 *
 */
.sk-three-bounce {
  margin: 40px auto;
  width: 80px;
  text-align: center;
}
.sk-three-bounce .sk-child {
  width: 20px;
  height: 20px;
  background-color: #333333;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}
.sk-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.sk-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*
 *  Usage:
 *
      <div class="sk-circle">
        <div class="sk-circle1 sk-child"></div>
        <div class="sk-circle2 sk-child"></div>
        <div class="sk-circle3 sk-child"></div>
        <div class="sk-circle4 sk-child"></div>
        <div class="sk-circle5 sk-child"></div>
        <div class="sk-circle6 sk-child"></div>
        <div class="sk-circle7 sk-child"></div>
        <div class="sk-circle8 sk-child"></div>
        <div class="sk-circle9 sk-child"></div>
        <div class="sk-circle10 sk-child"></div>
        <div class="sk-circle11 sk-child"></div>
        <div class="sk-circle12 sk-child"></div>
      </div>
 *
 */
.sk-circle {
  margin: 40px auto;
  width: 40px;
  height: 40px;
  position: relative;
}
.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333333;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}
.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}
.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}
.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}
.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}
.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}
.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*
 *  Usage:
 *
      <div class="sk-cube-grid">
        <div class="sk-cube sk-cube1"></div>
        <div class="sk-cube sk-cube2"></div>
        <div class="sk-cube sk-cube3"></div>
        <div class="sk-cube sk-cube4"></div>
        <div class="sk-cube sk-cube5"></div>
        <div class="sk-cube sk-cube6"></div>
        <div class="sk-cube sk-cube7"></div>
        <div class="sk-cube sk-cube8"></div>
        <div class="sk-cube sk-cube9"></div>
      </div>
 *
 */
.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: 40px auto;
  /*
   * Spinner positions
   * 1 2 3
   * 4 5 6
   * 7 8 9
   */
}
.sk-cube-grid .sk-cube {
  width: 33.33%;
  height: 33.33%;
  background-color: #333333;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

/*
 *  Usage:
 *
      <div class="sk-fading-circle">
        <div class="sk-circle1 sk-circle"></div>
        <div class="sk-circle2 sk-circle"></div>
        <div class="sk-circle3 sk-circle"></div>
        <div class="sk-circle4 sk-circle"></div>
        <div class="sk-circle5 sk-circle"></div>
        <div class="sk-circle6 sk-circle"></div>
        <div class="sk-circle7 sk-circle"></div>
        <div class="sk-circle8 sk-circle"></div>
        <div class="sk-circle9 sk-circle"></div>
        <div class="sk-circle10 sk-circle"></div>
        <div class="sk-circle11 sk-circle"></div>
        <div class="sk-circle12 sk-circle"></div>
      </div>
 *
 */
.sk-fading-circle {
  margin: 40px auto;
  width: 40px;
  height: 40px;
  position: relative;
}
.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -40px;
}
.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333333;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}
.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}
.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

/*
 *  Usage:
 *
      <div class="sk-folding-cube">
        <div class="sk-cube1 sk-cube"></div>
        <div class="sk-cube2 sk-cube"></div>
        <div class="sk-cube4 sk-cube"></div>
        <div class="sk-cube3 sk-cube"></div>
      </div>
 *
 */
.sk-folding-cube {
  margin: 40px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/**
 * Copyright (c) 2016 Connor Atherton
 *
 * All animations must live in their own file
 * in the animations directory and be included
 * here.
 *
 */
/**
 * Styles shared by multiple animations
 */
/**
 * Dots
 */
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.ball-pulse-sync > div:nth-child(1) {
  -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}
.ball-pulse-sync > div:nth-child(2) {
  -webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
}
.ball-pulse-sync > div:nth-child(3) {
  -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
}
.ball-pulse-sync > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

@-webkit-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.ball-scale > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  animation: ball-scale 1s 0s ease-in-out infinite;
}

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.ball-scale > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  animation: ball-scale 1s 0s ease-in-out infinite;
}

.ball-scale-random {
  width: 37px;
  height: 40px;
}
.ball-scale-random > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  display: inline-block;
  height: 30px;
  width: 30px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  animation: ball-scale 1s 0s ease-in-out infinite;
}
.ball-scale-random > div:nth-child(1) {
  margin-left: -7px;
  -webkit-animation: ball-scale 1s 0.2s ease-in-out infinite;
  animation: ball-scale 1s 0.2s ease-in-out infinite;
}
.ball-scale-random > div:nth-child(3) {
  margin-left: -2px;
  margin-top: 9px;
  -webkit-animation: ball-scale 1s 0.5s ease-in-out infinite;
  animation: ball-scale 1s 0.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ball-rotate {
  position: relative;
}
.ball-rotate > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: relative;
}
.ball-rotate > div:first-child {
  -webkit-animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
  animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
}
.ball-rotate > div:before, .ball-rotate > div:after {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  content: "";
  position: absolute;
  opacity: 0.8;
}
.ball-rotate > div:before {
  top: 0px;
  left: -28px;
}
.ball-rotate > div:after {
  top: 0px;
  left: 25px;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ball-clip-rotate > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid white;
  border-bottom-color: transparent;
  height: 26px;
  width: 26px;
  background: transparent !important;
  display: inline-block;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }

  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }

  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}

@keyframes scale {
  30% {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.ball-clip-rotate-pulse {
  position: relative;
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.ball-clip-rotate-pulse > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 100%;
}
.ball-clip-rotate-pulse > div:first-child {
  background: white;
  height: 16px;
  width: 16px;
  top: 7px;
  left: -7px;
  -webkit-animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
.ball-clip-rotate-pulse > div:last-child {
  position: absolute;
  border: 2px solid white;
  width: 30px;
  height: 30px;
  left: -16px;
  top: -2px;
  background: transparent;
  border: 2px solid;
  border-color: white transparent white transparent;
  -webkit-animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }

  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }

  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}

.ball-clip-rotate-multiple {
  position: relative;
}
.ball-clip-rotate-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: -20px;
  top: -20px;
  border: 2px solid white;
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-radius: 100%;
  height: 35px;
  width: 35px;
  -webkit-animation: rotate 1s 0s ease-in-out infinite;
  animation: rotate 1s 0s ease-in-out infinite;
}
.ball-clip-rotate-multiple > div:last-child {
  display: inline-block;
  top: -10px;
  left: -10px;
  width: 15px;
  height: 15px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  border-color: white transparent white transparent;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

@-webkit-keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    opacity: 0.0;
  }
}

@keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    opacity: 0.0;
  }
}

.ball-scale-ripple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 2px solid white;
  -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}

@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    opacity: 0.0;
  }
}

@keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    opacity: 0.0;
  }
}

.ball-scale-ripple-multiple {
  position: relative;
  -webkit-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  transform: translateY(-25px);
}
.ball-scale-ripple-multiple > div:nth-child(0) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.ball-scale-ripple-multiple > div:nth-child(1) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.ball-scale-ripple-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.ball-scale-ripple-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.ball-scale-ripple-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -2px;
  left: -26px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid white;
  -webkit-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);
}

@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.ball-beat > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: ball-beat 0.7s 0s infinite linear;
  animation: ball-beat 0.7s 0s infinite linear;
}
.ball-beat > div:nth-child(2n-1) {
  -webkit-animation-delay: -0.35s !important;
  animation-delay: -0.35s !important;
}

@-webkit-keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.ball-scale-multiple {
  position: relative;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}
.ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.ball-scale-multiple > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: -30px;
  top: 0px;
  opacity: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
  animation: ball-scale-multiple 1s 0s linear infinite;
}

@-webkit-keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }

  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }

  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }

  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }

  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }

  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }

  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

.ball-triangle-path {
  position: relative;
  -webkit-transform: translate(-29.994px, -37.50938px);
  -ms-transform: translate(-29.994px, -37.50938px);
  transform: translate(-29.994px, -37.50938px);
}
.ball-triangle-path > div:nth-child(1) {
  -webkit-animation-name: ball-triangle-path-1;
  animation-name: ball-triangle-path-1;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.ball-triangle-path > div:nth-child(2) {
  -webkit-animation-name: ball-triangle-path-2;
  animation-name: ball-triangle-path-2;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.ball-triangle-path > div:nth-child(3) {
  -webkit-animation-name: ball-triangle-path-3;
  animation-name: ball-triangle-path-3;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.ball-triangle-path > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid white;
}
.ball-triangle-path > div:nth-of-type(1) {
  top: 50px;
}
.ball-triangle-path > div:nth-of-type(2) {
  left: 25px;
}
.ball-triangle-path > div:nth-of-type(3) {
  top: 50px;
  left: 50px;
}

@-webkit-keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}

@keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}

.ball-pulse-rise > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
.ball-pulse-rise > div:nth-child(2n) {
  -webkit-animation-name: ball-pulse-rise-even;
  animation-name: ball-pulse-rise-even;
}
.ball-pulse-rise > div:nth-child(2n-1) {
  -webkit-animation-name: ball-pulse-rise-odd;
  animation-name: ball-pulse-rise-odd;
}

@-webkit-keyframes ball-grid-beat {
  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@keyframes ball-grid-beat {
  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

.ball-grid-beat {
  width: 57px;
}
.ball-grid-beat > div:nth-child(1) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-beat > div:nth-child(2) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-beat > div:nth-child(3) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-beat > div:nth-child(4) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-beat > div:nth-child(5) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-beat > div:nth-child(6) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-beat > div:nth-child(7) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-beat > div:nth-child(8) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-beat > div:nth-child(9) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-beat > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  -webkit-animation-name: ball-grid-beat;
  animation-name: ball-grid-beat;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.ball-grid-pulse {
  width: 57px;
}
.ball-grid-pulse > div:nth-child(1) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-pulse > div:nth-child(2) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-pulse > div:nth-child(3) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-pulse > div:nth-child(4) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-pulse > div:nth-child(5) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-pulse > div:nth-child(6) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-pulse > div:nth-child(7) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-pulse > div:nth-child(8) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-pulse > div:nth-child(9) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.6s;
  animation-duration: random(100)/1000.6s;
}
.ball-grid-pulse > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  -webkit-animation-name: ball-grid-pulse;
  animation-name: ball-grid-pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

@-webkit-keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.ball-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -10px;
}
.ball-spin-fade-loader > div:nth-child(1) {
  top: 25px;
  left: 0;
  -webkit-animation: ball-spin-fade-loader 1s -0.96s infinite linear;
  animation: ball-spin-fade-loader 1s -0.96s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(2) {
  top: 17.04545px;
  left: 17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.84s infinite linear;
  animation: ball-spin-fade-loader 1s -0.84s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 25px;
  -webkit-animation: ball-spin-fade-loader 1s -0.72s infinite linear;
  animation: ball-spin-fade-loader 1s -0.72s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(4) {
  top: -17.04545px;
  left: 17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.6s infinite linear;
  animation: ball-spin-fade-loader 1s -0.6s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(5) {
  top: -25px;
  left: 0;
  -webkit-animation: ball-spin-fade-loader 1s -0.48s infinite linear;
  animation: ball-spin-fade-loader 1s -0.48s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(6) {
  top: -17.04545px;
  left: -17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.36s infinite linear;
  animation: ball-spin-fade-loader 1s -0.36s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -25px;
  -webkit-animation: ball-spin-fade-loader 1s -0.24s infinite linear;
  animation: ball-spin-fade-loader 1s -0.24s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(8) {
  top: 17.04545px;
  left: -17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.12s infinite linear;
  animation: ball-spin-fade-loader 1s -0.12s infinite linear;
}
.ball-spin-fade-loader > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
}

@-webkit-keyframes ball-spin-loader {
  75% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

@keyframes ball-spin-loader {
  75% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

.ball-spin-loader {
  position: relative;
}
.ball-spin-loader > span:nth-child(1) {
  top: 45px;
  left: 0;
  -webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
  animation: ball-spin-loader 2s 0.9s infinite linear;
}
.ball-spin-loader > span:nth-child(2) {
  top: 30.68182px;
  left: 30.68182px;
  -webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
  animation: ball-spin-loader 2s 1.8s infinite linear;
}
.ball-spin-loader > span:nth-child(3) {
  top: 0;
  left: 45px;
  -webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
  animation: ball-spin-loader 2s 2.7s infinite linear;
}
.ball-spin-loader > span:nth-child(4) {
  top: -30.68182px;
  left: 30.68182px;
  -webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
  animation: ball-spin-loader 2s 3.6s infinite linear;
}
.ball-spin-loader > span:nth-child(5) {
  top: -45px;
  left: 0;
  -webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
  animation: ball-spin-loader 2s 4.5s infinite linear;
}
.ball-spin-loader > span:nth-child(6) {
  top: -30.68182px;
  left: -30.68182px;
  -webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
  animation: ball-spin-loader 2s 5.4s infinite linear;
}
.ball-spin-loader > span:nth-child(7) {
  top: 0;
  left: -45px;
  -webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
  animation: ball-spin-loader 2s 6.3s infinite linear;
}
.ball-spin-loader > span:nth-child(8) {
  top: 30.68182px;
  left: -30.68182px;
  -webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
  animation: ball-spin-loader 2s 7.2s infinite linear;
}
.ball-spin-loader > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: green;
}

@-webkit-keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.ball-zig-zag {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  -ms-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}
.ball-zig-zag > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px;
}
.ball-zig-zag > div:first-child {
  -webkit-animation: ball-zig 0.7s 0s infinite linear;
  animation: ball-zig 0.7s 0s infinite linear;
}
.ball-zig-zag > div:last-child {
  -webkit-animation: ball-zag 0.7s 0s infinite linear;
  animation: ball-zag 0.7s 0s infinite linear;
}

@-webkit-keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }

  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }

  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.ball-zig-zag-deflect {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  -ms-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}
.ball-zig-zag-deflect > div {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px;
}
.ball-zig-zag-deflect > div:first-child {
  -webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
  animation: ball-zig-deflect 1.5s 0s infinite linear;
}
.ball-zig-zag-deflect > div:last-child {
  -webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
  animation: ball-zag-deflect 1.5s 0s infinite linear;
}

/**
 * Lines
 */
@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

.line-scale > div:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div {
  background-color: white;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

@-webkit-keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.line-scale-party > div:nth-child(1) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.3s;
  animation-duration: random(100)/1000.3s;
}
.line-scale-party > div:nth-child(2) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.3s;
  animation-duration: random(100)/1000.3s;
}
.line-scale-party > div:nth-child(3) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.3s;
  animation-duration: random(100)/1000.3s;
}
.line-scale-party > div:nth-child(4) {
  -webkit-animation-delay: random(100)/100-0.2s;
  animation-delay: random(100)/100-0.2s;
  -webkit-animation-duration: random(100)/1000.3s;
  animation-duration: random(100)/1000.3s;
}
.line-scale-party > div {
  background-color: white;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-name: line-scale-party;
  animation-name: line-scale-party;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

.line-scale-pulse-out > div {
  background-color: white;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}
.line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
  -webkit-animation-delay: -0.4s !important;
  animation-delay: -0.4s !important;
}
.line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
  -webkit-animation-delay: -0.2s !important;
  animation-delay: -0.2s !important;
}

@-webkit-keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }

  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

@keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }

  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

.line-scale-pulse-out-rapid > div {
  background-color: white;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
  animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
}
.line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
  -webkit-animation-delay: -0.25s !important;
  animation-delay: -0.25s !important;
}
.line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
  -webkit-animation-delay: 0s !important;
  animation-delay: 0s !important;
}

@-webkit-keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

@keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

.line-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -4px;
}
.line-spin-fade-loader > div:nth-child(1) {
  top: 20px;
  left: 0;
  -webkit-animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(2) {
  top: 13.63636px;
  left: 13.63636px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 20px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(4) {
  top: -13.63636px;
  left: 13.63636px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(5) {
  top: -20px;
  left: 0;
  -webkit-animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(6) {
  top: -13.63636px;
  left: -13.63636px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -20px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(8) {
  top: 13.63636px;
  left: -13.63636px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
}
.line-spin-fade-loader > div {
  background-color: white;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 5px;
  height: 15px;
}

/**
 * Misc
 */
@-webkit-keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }

  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }

  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }

  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
@keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }

  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }

  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }

  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}

.triangle-skew-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid white;
  -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

@-webkit-keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }

  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }

  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }

  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}

@keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }

  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }

  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }

  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}

.square-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 50px;
  height: 50px;
  background: white;
  -webkit-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;
}

@-webkit-keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }

  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

@keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }

  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

@-webkit-keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@-webkit-keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}

@keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}

.pacman {
  position: relative;
}
.pacman > div:nth-child(2) {
  -webkit-animation: pacman-balls 1s -0.99s infinite linear;
  animation: pacman-balls 1s -0.99s infinite linear;
}
.pacman > div:nth-child(3) {
  -webkit-animation: pacman-balls 1s -0.66s infinite linear;
  animation: pacman-balls 1s -0.66s infinite linear;
}
.pacman > div:nth-child(4) {
  -webkit-animation: pacman-balls 1s -0.33s infinite linear;
  animation: pacman-balls 1s -0.33s infinite linear;
}
.pacman > div:nth-child(5) {
  -webkit-animation: pacman-balls 1s 0s infinite linear;
  animation: pacman-balls 1s 0s infinite linear;
}
.pacman > div:first-of-type {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid white;
  border-left: 25px solid white;
  border-bottom: 25px solid white;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
  animation: rotate_pacman_half_up 0.5s 0s infinite;
  position: relative;
  left: -30px;
}
.pacman > div:nth-child(2) {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid white;
  border-left: 25px solid white;
  border-bottom: 25px solid white;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
  animation: rotate_pacman_half_down 0.5s 0s infinite;
  margin-top: -50px;
  position: relative;
  left: -30px;
}
.pacman > div:nth-child(3),
.pacman > div:nth-child(4),
.pacman > div:nth-child(5),
.pacman > div:nth-child(6) {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  width: 10px;
  height: 10px;
  position: absolute;
  -webkit-transform: translate(0, -6.25px);
  -ms-transform: translate(0, -6.25px);
  transform: translate(0, -6.25px);
  top: 25px;
  left: 70px;
}

@-webkit-keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg);
  }

  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg);
  }

  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg);
  }

  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg);
  }

  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

.cube-transition {
  position: relative;
  -webkit-transform: translate(-25px, -25px);
  -ms-transform: translate(-25px, -25px);
  transform: translate(-25px, -25px);
}
.cube-transition > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: white;
  -webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
  animation: cube-transition 1.6s 0s infinite ease-in-out;
}
.cube-transition > div:last-child {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin-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);
  }
}

.semi-circle-spin {
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden;
}
.semi-circle-spin > div {
  position: absolute;
  border-width: 0px;
  border-radius: 100%;
  -webkit-animation: spin-rotate 0.6s 0s infinite linear;
  animation: spin-rotate 0.6s 0s infinite linear;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), color-stop(30%, #ffffff), to(#ffffff));
  background-image: linear-gradient(transparent 0%, transparent 70%, #ffffff 30%, #ffffff 100%);
  width: 100%;
  height: 100%;
}

.ball-grid-pulse,
.ball-clip-rotate-pulse,
.ball-clip-rotate-multiple,
.ball-zip-zag,
.ball-zip-zag-deflect,
.ball-triangle-path,
.ball-scale-multiple,
.ball-scale-ripple-multiple,
.ball-spin-fade-loader,
.line-spin-fade-loader,
.pacman,
.ball-grid-beat,
.semi-circle-spin,
.ball-rotate {
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
}

.ball-zig-zag,
.ball-zip-zag-deflect {
  -webkit-transform: translate3d(50%, -15px, 0);
  transform: translate3d(50%, -15px, 0);
}

.ball-spin-fade-loader,
.line-spin-fade-loader {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	2. Custom fonts
*/
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	3. Clearing
*/
/* border box everything */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Contain floats */
.clearfix, .searchform, .centered, .comment, .comment-list,
.comment-list .children, .single-release .wolf-release, .clear {
  zoom: 1;
}
.clearfix:before, .searchform:before, .centered:before, .comment:before, .comment-list:before,
.comment-list .children:before, .single-release .wolf-release:before, .clearfix:after, .searchform:after, .centered:after, .comment:after, .comment-list:after,
.comment-list .children:after, .single-release .wolf-release:after, .clear:before, .clear:after {
  content: "";
  display: table;
}
.clearfix:after, .searchform:after, .centered:after, .comment:after, .comment-list:after,
.comment-list .children:after, .single-release .wolf-release:after, .clear:after {
  clear: both;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	4. Base
*/
html {
  height: 100%;
  max-height: 100%;
  font-size: 62.5%;
}

body {
  overflow-x: hidden !important;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-weight: 400;
  height: 100%;
}

a {
  text-decoration: none;
}

.grab, .vertical-slide:after {
  cursor: move;
  /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -webkit-grab;
}
.grab:active, .vertical-slide:active:after {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

body.site-layout-wide.desktop .site-container, body.site-layout-wide.desktop .parallax-mirror {
  max-width: none !important;
}

body.site-layout-boxed.desktop .site-container,
body.site-layout-boxed.desktop .parallax-mirror {
  max-width: 1200px;
}
body.site-layout-boxed.desktop .parallax-mirror {
  margin: 0 auto;
}
body.site-layout-boxed.desktop .site-container {
  margin-left: auto !important;
  margin-right: auto !important;
}
body.site-layout-boxed.desktop .parallax-mirror {
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	5. Fluid videos
*/
/* Fluid video */
.fluid-video {
  display: block;
  width: 100%;
  margin-bottom: 3rem;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

.fluid-video iframe,
.fluid-video embed,
.fluid-video object,
.fluid-video video {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	6. Video background
*/
.video-bg-container {
  display: block;
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.video-bg-container embed, .video-bg-container iframe, .video-bg-container object, .video-bg-container video {
  max-width: none;
}

.video-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

.video-bg-fallback {
  position: absolute;
  z-index: 0;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}

.video-bg-container {
  background: #0d0d0d;
}

.youtube-player {
  opacity: 0;
  -webkit-transition: opacity ease 2s;
  transition: opacity ease 2s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.youtube-player.youtube-player-is-loaded {
  opacity: 1;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	7. Forms
*/
form {
  margin-top: 2rem;
}

/* Basic input styles */
input[type=text],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=week],
input[type=password],
input[type=checkbox],
input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
select,
textarea {
  max-width: 100% !important;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  line-height: inherit;
  padding: 0.5rem 0.7rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  text-shadow: none;
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  color: #333;
}
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
input[type=password]:focus,
input[type=checkbox]:focus,
input[type=color]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.2);
}

select, option {
  padding: 0.5rem 0.7rem;
  min-width: 200px;
}

textarea {
  width: 100%;
  height: 250px;
}

input[type="submit"] {
  width: 100%;
  margin-left: 0 !important;
  position: relative;
  display: block;
}

input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[name="post_password"],
select,
textarea {
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select {
  background: rgba(255, 255, 255, 0.94);
  color: #000;
}

input[type="checkbox"],
input[type="radio"] {
  margin-left: 0.1rem;
  margin-right: 5px;
}

form p label {
  display: block;
  margin-bottom: 0.5rem;
  width: 100%;
}

/* Search form */
.searchform label,
.searchform input[type="submit"] {
  display: none;
}

/* Password form */
.post-password-form input[type="submit"] {
  top: -4px;
}

input[name="post_password"] {
  margin-bottom: 0.5em;
}

/* Comment Form */
#commentform {
  padding-top: 1em;
}
#commentform p {
  margin-bottom: 1em;
}
#commentform textarea {
  margin-top: 1em;
}
#commentform label {
  display: block;
  width: 100%;
}

/* No result form */
.nothing-found .searchform input {
  margin-bottom: 1em;
  width: 640px;
  max-width: 95%;
}

input {
  color: #333;
}

input[type=text],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=week],
input[type=password],
input[type=checkbox],
input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
select,
textarea {
  margin-top: 5px;
  padding: .8rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #333;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[type=text]:after, input[type=text]:before,
input[type=search]:after,
input[type=search]:before,
input[type=tel]:after,
input[type=tel]:before,
input[type=time]:after,
input[type=time]:before,
input[type=url]:after,
input[type=url]:before,
input[type=week]:after,
input[type=week]:before,
input[type=password]:after,
input[type=password]:before,
input[type=checkbox]:after,
input[type=checkbox]:before,
input[type=color]:after,
input[type=color]:before,
input[type=date]:after,
input[type=date]:before,
input[type=datetime]:after,
input[type=datetime]:before,
input[type=datetime-local]:after,
input[type=datetime-local]:before,
input[type=email]:after,
input[type=email]:before,
input[type=month]:after,
input[type=month]:before,
input[type=number]:after,
input[type=number]:before,
select:after,
select:before,
textarea:after,
textarea:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
input[type=password]:focus,
input[type=checkbox]:focus,
input[type=color]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.button-style-default input[type=text],
body.button-style-default input[type=search],
body.button-style-default input[type=tel],
body.button-style-default input[type=time],
body.button-style-default input[type=url],
body.button-style-default input[type=week],
body.button-style-default input[type=password],
body.button-style-default input[type=checkbox],
body.button-style-default input[type=color],
body.button-style-default input[type=date],
body.button-style-default input[type=datetime],
body.button-style-default input[type=datetime-local],
body.button-style-default input[type=email],
body.button-style-default input[type=month],
body.button-style-default input[type=number],
body.button-style-default select,
body.button-style-default textarea {
  border-radius: 3px;
}

body.button-style-round input[type=text],
body.button-style-round input[type=search],
body.button-style-round input[type=tel],
body.button-style-round input[type=time],
body.button-style-round input[type=url],
body.button-style-round input[type=week],
body.button-style-round input[type=password],
body.button-style-round input[type=checkbox],
body.button-style-round input[type=color],
body.button-style-round input[type=date],
body.button-style-round input[type=datetime],
body.button-style-round input[type=datetime-local],
body.button-style-round input[type=email],
body.button-style-round input[type=month],
body.button-style-round input[type=number] {
  border-radius: 5px;
}

input[type=submit] {
  outline: none;
  cursor: pointer;
  padding: .8em 1.4em;
  margin: .2em 0.1em 0.5em 0.2em;
  position: relative;
  line-height: 1 !important;
  font-style: normal !important;
  vertical-align: middle;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-shadow: none !important;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  text-align: center;
  font-weight: 700;
  text-decoration: none !important;
  display: block;
  width: 100%;
  letter-spacing: 0;
  color: white !important;
  border: 1px solid #bc9321;
  background: #bc9321;
  border-radius: 4px;
  outline: none;
  padding: 1.2rem;
}
input[type=submit]:hover {
  color: #bc9321 !important;
  background: none;
  opacity: 1;
}
input[type=submit]:active {
  top: 1px;
}

body.button-style-square input[type=submit] {
  border-radius: 0;
}

body.button-style-round input[type=submit] {
  border-radius: 99em;
}

/* Password protected post */
.post-password-form {
  max-width: 500px;
  margin: 0 auto;
}
.post-password-form label {
  display: block;
}
.post-password-form input[type=password] {
  margin-top: 15px;
  width: 100%;
}
.post-password-form input[type=submit] {
  display: block;
  width: 100%;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	8. Helpers
*/
/* Text alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/* Floats */
.left {
  float: left;
}

.right {
  float: right;
}

/* Text style */
.caption {
  opacity: 0.8;
}

.small {
  font-size: 0.9em;
}

.big {
  font-size: 1.2em;
}

/* Centered container */
.centered {
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
  float: none !important;
}

/* Cancellers */
.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-border,
.no-border img {
  border: none !important;
}

/* Table like */
.table {
  display: table;
  width: 100%;
}
.table .table-cell {
  display: table-cell;
  vertical-align: middle;
}

/* List */
ul.inline-list li {
  display: inline;
  margin: 0 1rem;
  list-style-type: none !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	9. Medias
*/
/* Responsive images */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Make sure videos and embeds fit their containers. */
embed,
iframe,
object,
audio,
video,
canvas {
  border: none !important;
  max-width: 100%;
}

/* WordPress mejs player */
.mejs-container {
  margin-bottom: 2em;
  outline: none;
}
.mejs-container .mejs-controls {
  background: #333;
}
.mejs-container .mejs-controls .mejs-button button:focus {
  outline: none;
}
.mejs-container .mejs-controls .mejs-time-rail span,
.mejs-container .mejs-controls .mejs-horizontal-volume-slider div {
  border-radius: 0 !important;
}
.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total,
.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background-image: none !important;
  background: #666666 !important;
}
.mejs-container .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background-image: none !important;
  background: #666666 !important;
}
.mejs-container .mejs-controls .mejs-time-rail .mejs-time-current,
.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  background-image: none !important;
  background: white !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	10. Tables
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.618rem;
  line-height: 2;
  margin: 0 0 1.5em;
  width: 100%;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

caption {
  font-size: 1em;
  margin: 0.5em 0;
}

td, th {
  padding: 15px 5px;
}

th {
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.1;
}

thead th {
  line-height: 1.5;
}

td {
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  padding: 15px 5px;
  line-height: 1.1;
}

.gist table {
  margin-bottom: 0;
}
.gist table td {
  border-bottom: none;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	11. WordPress default classes
*/
/* Text meant only for screen readers */
.says,
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  /* many screen reader and browser combinations announce broken words as they would appear visually */
  word-wrap: normal !important;
}

/* Images alignment */
.alignleft a, .alignright a, .aligncenter a, .alignnone a {
  border-bottom: none !important;
}

.alignleft, .wp-caption.alignleft {
  float: left;
}

.alignright, .wp-caption.alignright {
  float: right;
}

.alignleft, .wp-caption.alignleft {
  margin: 0.5em 1em 0.5em 0;
}

.alignright, .wp-caption.alignright {
  margin: 0.5em 0 0.5em 1em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.aligncenter {
  margin: 1em auto;
}

/* Image Caption */
.wp-caption .wp-caption-text,
.entry-caption {
  font-size: 0.9em;
  font-style: italic;
  font-weight: 400;
  font-family: "Noto Serif", "Georgia", serif;
  text-align: center;
}

dd.wp-caption-text.gallery-caption {
  display: none;
}

.widget_calendar td#prev {
  text-align: left;
}
.widget_calendar td#next {
  text-align: right;
}

/* Smileys */
img.wp-smiley,
.rsswidget img {
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Screen reader */
.screen-reader-text {
  clip: rect(1px 1px 1px 1px);
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	12. Flexslider custom styles
*/
/* Custom Flexslider Styles
---------------------------------------*/
/* reset */
.flexslider {
  margin: 0 0 30px;
  border: none;
  background: none;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
  /*a{
  	border:none!important;
  }*/
}
.flexslider img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: none !important;
}
.flexslider img:hover {
  opacity: 1 !important;
}
.flexslider a:hover {
  opacity: 1 !important;
}
.flexslider ul, .flexslider ol {
  margin: 0 !important;
  padding: 0;
}
.flexslider ul.slides {
  max-width: none !important;
}
.flexslider ul.slides li {
  padding: 0 !important;
  margin-left: 0 !important;
  list-style-type: none !important;
  position: relative;
}
.flexslider .flex-caption {
  margin-top: 0 !important;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  max-width: 95%;
}

.flex-control-paging {
  max-width: none !important;
  z-index: 999;
  height: 0;
  bottom: 30px;
  width: 100% !important;
}
.flex-control-paging li a {
  width: 8px;
  height: 8px;
  background: white !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
.flex-control-paging li a:hover {
  -webkit-box-shadow: 0 0 0 1px white;
  box-shadow: 0 0 0 1px white;
}
.flex-control-paging li a.flex-active {
  background: none !important;
  -webkit-box-shadow: 0 0 0 1px white;
  box-shadow: 0 0 0 1px white;
}
.flex-control-paging li a.flex-active:hover {
  -webkit-box-shadow: inset 0 0 0 11px white;
  box-shadow: inset 0 0 0 11px white;
}

.flex-direction-nav {
  max-width: none !important;
}
.flex-direction-nav .flex-disabled {
  display: none;
}
.flex-direction-nav li {
  list-style-type: none;
}
.flex-direction-nav .flex-prev,
.flex-direction-nav .flex-next {
  height: 50px;
  width: 50px;
  color: #fff;
  opacity: 1 !important;
}
.flex-direction-nav .flex-prev:hover,
.flex-direction-nav .flex-next:hover {
  color: #fff;
}

.format-gallery .wolf-gallery-slider .flex-control-nav {
  height: 30px;
}
.format-gallery .wolf-gallery-slider .flex-control-nav li a {
  width: 12px;
  height: 12px;
}

.flex-direction-nav .flex-prev,
.flex-direction-nav .flex-next {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
}
.flex-direction-nav .flex-prev:before,
.flex-direction-nav .flex-next:before {
  display: none;
}
.flex-direction-nav .flex-prev,
.flex-direction-nav .flex-next {
  width: 30px;
  height: 60px;
  background-size: 30px 60px;
  margin-top: -30px;
  background-color: transparent !important;
  background-position: center center;
}
.flex-direction-nav .flex-next {
  background-image: url("../img/next-light.png");
}
.flex-direction-nav .flex-prev {
  background-image: url("../img/prev-light.png");
}

.flex-caption {
  display: block;
  position: absolute;
  top: 20px;
  padding: 0.5em 1em;
  font-size: 0.95em;
  background: #333;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	13. Lightbox custom styles
*/
/* Swipebox */
#swipebox-slider .slide-loading {
  background-image: url("../img/swipebox/loader-dark.gif") !important;
}

#swipebox-prev,
#swipebox-next,
#swipebox-close {
  background-image: url("../img/swipebox/icons-dark.png") !important;
}

.svg #swipebox-prev,
.svg #swipebox-next,
.svg #swipebox-close {
  background-image: url("../img/swipebox/icons-dark.png") !important;
}

#swipebox-slider .slide .swipebox-video-container {
  max-width: none;
  max-width: calc(100%-20px);
  padding: 0;
}

.global-skin-light #swipebox-bottom-bar, .global-skin-light #swipebox-top-bar,
[class^="global-skin-light_"] #swipebox-bottom-bar,
[class^="global-skin-light_"] #swipebox-top-bar,
[class*=" global-skin-light_"] #swipebox-bottom-bar,
[class*=" global-skin-light_"] #swipebox-top-bar {
  text-shadow: 1px 1px 1px #fff;
  background: #fff;
}
.global-skin-light #swipebox-overlay,
[class^="global-skin-light_"] #swipebox-overlay,
[class*=" global-skin-light_"] #swipebox-overlay {
  background: #f1f1f1;
}
.global-skin-light #swipebox-title,
[class^="global-skin-light_"] #swipebox-title,
[class*=" global-skin-light_"] #swipebox-title {
  color: #333;
}

.global-skin-dark #swipebox-slider .slide-loading,
[class^="global-skin-dark_"] #swipebox-slider .slide-loading,
[class*=" global-skin-dark_"] #swipebox-slider .slide-loading {
  background-image: url("../img/swipebox/loader-light.gif") !important;
}
.global-skin-dark #swipebox-prev,
.global-skin-dark #swipebox-next,
.global-skin-dark #swipebox-close,
[class^="global-skin-dark_"] #swipebox-prev,
[class^="global-skin-dark_"] #swipebox-next,
[class^="global-skin-dark_"] #swipebox-close,
[class*=" global-skin-dark_"] #swipebox-prev,
[class*=" global-skin-dark_"] #swipebox-next,
[class*=" global-skin-dark_"] #swipebox-close {
  background-image: url("../img/swipebox/icons-light.png") !important;
}
.global-skin-dark body.svg #swipebox-prev,
.global-skin-dark body.svg #swipebox-next,
.global-skin-dark body.svg #swipebox-close,
[class^="global-skin-dark_"] body.svg #swipebox-prev,
[class^="global-skin-dark_"] body.svg #swipebox-next,
[class^="global-skin-dark_"] body.svg #swipebox-close,
[class*=" global-skin-dark_"] body.svg #swipebox-prev,
[class*=" global-skin-dark_"] body.svg #swipebox-next,
[class*=" global-skin-dark_"] body.svg #swipebox-close {
  background-image: url("../img/swipebox/icons-light.svg") !important;
}

/* Fancybox */
html.fancybox-lock {
  overflow: visible !important;
}

.fancybox-skin {
  padding: 0 !important;
}

.fancybox-close {
  background-image: url("../img/fancybox/close.png") !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  right: 0;
  top: 0;
  background-color: #393939;
  height: 54px;
  width: 54px;
  background-size: 15px 15px;
}

.fancybox-prev span {
  background-image: url("../img/fancybox/left.png") !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  background-color: #393939;
  height: 54px;
  width: 54px;
  background-size: 12px 20px;
}

.fancybox-next span {
  background-image: url("../img/fancybox/right.png") !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  background-color: #393939;
  height: 54px;
  width: 54px;
  background-size: 12px 20px;
}

#fancybox-loading div {
  background-image: url("../img/fancybox/fancybox_loading.gif");
}

.fancybox-nav {
  background: transparent url("../img/fancybox/blank.gif");
  /* helps IE */
}

.fancybox-overlay {
  background: url("../img/fancybox/fancybox_overlay.png");
}

.fancybox-nav {
  height: 60%;
  margin-top: 16%;
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  .fancybox-close {
    background-size: 15px 15px;
  }

  .fancybox-prev span, .fancybox-next span {
    background-size: 12px 20px;
  }

  #fancybox-loading div {
    background-image: url("../img/fancybox/fancybox_loading@2x.gif");
  }
}
@media screen and (max-width: 500px) {
  .flex-direction-nav {
    display: none;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	14. Containers
*/
.site-container {
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin: 0 auto;
}

.site-content {
  position: relative;
}

#page {
  position: relative;
}

.wrap {
  zoom: 1;
  width: 92%;
  margin: 0 auto;
  max-width: 1140px;
}
.wrap:before, .wrap:after {
  content: "";
  display: table;
}
.wrap:after {
  clear: both;
}

.content-inner {
  min-height: 60vh;
}

.content-wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 10;
}

.content-area {
  position: relative;
}

.content-wrapper,
.small-width {
  zoom: 1;
  width: 92%;
  margin: 0 auto;
  max-width: 1140px;
  max-width: 750px;
}
.content-wrapper:before, .content-wrapper:after,
.small-width:before,
.small-width:after {
  content: "";
  display: table;
}
.content-wrapper:after,
.small-width:after {
  clear: both;
}

.wolf-themes .content-wrapper {
  max-width: none;
}

.wolf-plugins .content-wrapper,
.page-full-width .content-wrapper,
.page-sidebar-right .content-wrapper,
.page-sidebar-left .content-wrapper,
.page-post-archives .content-wrapper,
.shop-layout-standard .content-wrapper,
.shop-layout-fullwidth.shop-display-list .content-wrapper,
.shop-layout-sidebar .content-wrapper,
.shop-layout-sidebar-left .content-wrapper,
.shop-layout-sidebar-right .content-wrapper,
.blog-layout-standard .content-wrapper,
.blog-layout-fullwidth.blog-display-standard .content-wrapper,
.blog-layout-fullwidth.blog-display-classic .content-wrapper,
.blog-layout-sidebar .content-wrapper,
.blog-layout-sidebar-left .content-wrapper,
.blog-layout-sidebar-right .content-wrapper,
.portfolio-layout-standard .content-wrapper,
.portfolio-layout-fullwidth .content-wrapper,
.portfolio-layout-sidebar .content-wrapper,
.portfolio-layout-sidebar-left .content-wrapper,
.portfolio-layout-sidebar-right .content-wrapper,
.discography-layout-standard .content-wrapper,
.discography-layout-sidebar-left .content-wrapper,
.discography-layout-sidebar-right .content-wrapper,
.videos-layout-standard .content-wrapper,
.videos-layout-sidebar-left .content-wrapper,
.videos-layout-sidebar-right .content-wrapper,
.albums-layout-standard .content-wrapper,
.albums-layout-sidebar-left .content-wrapper,
.albums-layout-sidebar-right .content-wrapper,
.events-layout-standard .content-wrapper,
.events-layout-sidebar-left .content-wrapper,
.events-layout-sidebar-right .content-wrapper,
.single-post-layout-sidebar .content-wrapper,
.single-post-layout-sidebar-left .content-wrapper,
.single-post-layout-sidebar-right .content-wrapper,
.single-release .content-wrapper,
.wolf-albums .content-wrapper,
.wolf-videos .content-wrapper,
.wolf-portfolio .content-wrapper,
.single-video .content-wrapper,
.single-work .content-wrapper,
.single-show .content-wrapper,
.single-event .content-wrapper,
.single-ticket .content-wrapper,
.single-attachment .content-wrapper {
  max-width: 1140px;
}

.blog-layout-fullwidth.blog-display-medium-image .content-wrapper,
.blog-layout-standard.blog-display-medium-image .content-wrapper {
  max-width: 960px;
}

.single-theme .content-wrapper,
.single-plugin .content-wrapper {
  max-width: none;
  width: 100%;
}

/*.blog-layout-standard.blog-display-medium-image{
	.content-wrapper{
		max-width: 800px;
	}
}*/
.shop-layout-standard.shop-display-list .content-wrapper,
.blog-layout-standard.blog-display-standard .content-wrapper,
.blog-layout-standard.blog-display-classic .content-wrapper {
  max-width: 750px;
}

.shop-layout-standard #secondary,
.shop-layout-fullwidth #secondary,
.blog-layout-standard #secondary,
.blog-layout-fullwidth #secondary,
.blog-layout-splitted #secondary,
.portfolio-layout-standard #secondary,
.portfolio-layout-fullwidth #secondary,
.portfolio-layout-splitted #secondary,
.discography-layout-standard #secondary,
.discography-layout-fullwidth #secondary,
.videos-layout-standard #secondary,
.videos-layout-fullwidth #secondary,
.albums-layout-standard #secondary,
.albums-layout-fullwidth #secondary,
.events-layout-standard #secondary,
.events-layout-fullwidth #secondary,
.single-release #secondary,
.is-photos #secondary {
  display: none !important;
}

/* Post type page full width */
.blog-layout-fullwidth:not(.blog-display-standard):not(.blog-display-classic):not(.blog-display-medium-image) .content-wrapper,
.portfolio-layout-fullwidth .content-wrapper,
.albums-layout-fullwidth .content-wrapper,
.discography-layout-fullwidth .content-wrapper,
.events-layout-fullwidth .content-wrapper,
.videos-layout-fullwidth .content-wrapper,
.is-photos .content-wrapper {
  max-width: none;
  width: 100%;
  padding: 0;
}

.shop-layout-fullwidth .content-wrapper {
  max-width: none;
  width: 92%;
}

/*.shop-layout-fullwidth.shop-padding-no{
	.woocommerce-products-header{
		padding: 15px 50px 0;
	}

	.woocommerce-result-count{
		margin-left: 15px;
	}

	.woocommerce-ordering{
		margin-right: 15px;
	}
}*/
/* Wolf Page Builder pages */
.wolf-page-builder .content-wrapper {
  background: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0;
}
.wolf-page-builder .content-wrapper {
  max-width: none;
  width: 100%;
}

#wpb-container {
  background: none;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	15. Typography
*/
h1, h2, h3, h4, h5,
h2.entry-title,
.post-title,
.widget-title,
.wpb-counter-text,
.wpb-countdown-period {
  font-family: "Noto Serif", "Helvetica", serif;
}

a {
  text-decoration: none;
}

.site-infos #back-to-top {
  color: #888;
}

.wpb-team-member-social,
.site-infos #back-to-top,
.entry-title a {
  opacity: 1 !important;
}
.wpb-team-member-social:hover,
.site-infos #back-to-top:hover,
.entry-title a:hover {
  color: #bc9321 !important;
}

.entry-link {
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.entry-link:hover {
  color: #bc9321 !important;
}

a:not(.wpb-image-inner) > img {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
a:not(.wpb-image-inner) > img:hover {
  opacity: 7;
}

::-moz-selection {
  background: #bc9321;
  color: #fff;
}

::selection {
  background: #bc9321;
  color: #fff;
}

body {
  font-size: 1.6rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
}

/* Paragraph and lists */
ul, ol, dl {
  margin: 1.6em 0;
}

p {
  margin-top: 0;
  margin-bottom: 1.88em;
}

ul {
  list-style-type: square;
}

ul, ol {
  padding-left: 25px;
}

ul ul, ul ol, ol ul, ol ol {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  padding-top: 0;
  padding-bottom: 0;
}
ul ul ul, ul ul ol, ul ol ul, ul ol ol, ol ul ul, ol ul ol, ol ol ul, ol ol ol {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  padding-top: 0;
  padding-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.44;
}

hr {
  border: none;
  margin: 50px auto;
  height: 1px;
}

h1 {
  font-size: 2.25em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.375em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1.125em;
}

h6 {
  font-size: 1em;
}

/* Blockquote */
blockquote {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.88em;
}
blockquote:before {
  font-family: Dashicons;
  content: "\f122";
  text-align: center;
  opacity: 0.2;
  display: block;
  margin-bottom: 10px;
}
blockquote p {
  margin: .8em 0;
}

/* Cite */
cite {
  font-size: 0.8em;
  font-weight: 400;
  display: inline-block;
  width: 100%;
  font-style: normal;
}
cite:before {
  content: '\2014 \00A0';
}

/* Pre, code */
code, pre {
  font: Console;
  line-height: 1.618;
  color: #0d0d0d;
}

code {
  margin: 0 0.5em;
  background: #FFF;
  line-height: 1em;
  display: inline;
}

pre {
  text-align: left;
  -ms-word-wrap: normal;
  word-wrap: normal;
  background: #FFF;
  padding: 0.5em 1em;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 1.618em 0 3em;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
pre span {
  color: green;
}

/* Others */
address {
  margin-bottom: 1.618rem;
}
address p {
  margin-bottom: 0;
}

abbr[title], acronym[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

dt {
  font-weight: bold;
  text-decoration: underline;
}

dd {
  margin: 0;
  padding: 0 0 0.5rem 0;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	16. Buttons
*/
.button,
.wolf-button,
.trigger,
.wolf-release-button a,
.wolf-show-ticket-button,
.wolf-show-facebook-button,
.wolf-more-dates {
  cursor: pointer;
  padding: .8em 1.4em;
  margin: .2em 0.1em 0.5em 0.2em;
  position: relative;
  line-height: 1 !important;
  font-style: normal !important;
  vertical-align: middle;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-shadow: none !important;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  text-align: center;
  font-weight: 700;
  text-decoration: none !important;
  display: block;
  width: 100%;
  letter-spacing: 0;
  color: white !important;
  border: 1px solid #bc9321;
  background: #bc9321;
  border-radius: 4px;
  outline: none;
}
.button:hover,
.wolf-button:hover,
.trigger:hover,
.wolf-release-button a:hover,
.wolf-show-ticket-button:hover,
.wolf-show-facebook-button:hover,
.wolf-more-dates:hover {
  color: #bc9321 !important;
  background: none;
  opacity: 1;
}
.button:active,
.wolf-button:active,
.trigger:active,
.wolf-release-button a:active,
.wolf-show-ticket-button:active,
.wolf-show-facebook-button:active,
.wolf-more-dates:active {
  top: 1px;
}

.wolf-button-outline {
  background: none !important;
  color: #bc9321 !important;
}
.wolf-button-outline:hover {
  background: #bc9321;
  color: white !important;
}

body.button-style-default .woocommerce-tabs li,
body.button-style-default .wpb-tabs-menu li,
body.button-style-round .woocommerce-tabs li,
body.button-style-round .wpb-tabs-menu li {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

body.button-style-square .button,
body.button-style-square .wolf-button,
body.button-style-square .trigger,
body.button-style-square .wolf-release-button a,
.wolf-release-button body.button-style-square a,
body.button-style-square .wolf-show-ticket-button,
body.button-style-square .wolf-show-facebook-button,
body.button-style-square .wolf-more-dates,
body.button-style-square .nav-menu li.button-style .menu-item-inner,
body.button-style-square .nav-menu-mobile li.button-style .menu-item-inner,
body.button-style-square .tagcloud a {
  border-radius: 0;
}

body.button-style-round .button,
body.button-style-round .wolf-button,
body.button-style-round .trigger,
body.button-style-round .wolf-release-button a,
.wolf-release-button body.button-style-round a,
body.button-style-round .wolf-show-ticket-button,
body.button-style-round .wolf-show-facebook-button,
body.button-style-round .wolf-more-dates,
body.button-style-round .nav-menu li.button-style .menu-item-inner,
body.button-style-round .nav-menu-mobile li.button-style .menu-item-inner,
body.button-style-round .tagcloud a {
  border-radius: 99em;
}

.wolf-wpb-button.wpb-button {
  color: white !important;
  background: #bc9321;
}
.wolf-wpb-button.wpb-button:hover {
  background: none !important;
}

.wpb-font-light .wolf-wpb-button.wpb-button:hover {
  color: white !important;
  border-color: white !important;
}

.wpb-font-dark .wolf-wpb-button.wpb-button:hover {
  color: #333333 !important;
  border-color: #333333 !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	17. Header
*/
.logo a {
  opacity: 1 !important;
}

.site-name,
.site-description {
  display: block;
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  text-indent: -9999px;
}

.parallax-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  position: fixed;
  z-index: 0;
}

.hero-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
}

.header-overlay,
.post-header-overlay {
  z-index: 1;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#top-search-form-container {
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.99);
  width: 100%;
  height: 100%;
  padding: 0.8em 0.5em;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 99999;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  color: #FFF;
}

.admin-bar #top-search-form-container {
  top: 32px;
}

body.search-toggle-overlay-on #top-search-form-container {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

#close-search {
  display: block;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
  /*width: 32px;
  height: 32px;*/
}
#close-search:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Arial, sans-serif;
  font-weight: 400;
  content: "\d7";
  font-size: 96px;
  line-height: 0.5;
  font-size: 32px;
}

#top-search-form {
  height: 100%;
  margin: 0 auto;
  width: 92%;
}
#top-search-form form {
  margin-top: 0;
  text-align: center;
}
#top-search-form input {
  width: auto;
  text-align: center;
  padding: 0;
  margin: 0;
  background: none !important;
  border: none !important;
  position: relative;
  vertical-align: middle;
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFF;
}
#top-search-form input[placeholder] {
  opacity: 1;
}

/* Scroll down arrow */
a#scroll-down {
  display: none;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 9999;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  bottom: 20px;
  padding: 6px;
  right: 15px;
  font-size: 18px;
  border-radius: 99em;
}
a#scroll-down:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #FFF;
  font-family: 'dashicons';
  content: "\f347";
  font-weight: 400 !important;
  text-decoration: none !important;
  line-height: 1;
  top: 8px;
  left: 6px;
  font-size: 20px;
  position: absolute;
}

.is-one-paged.full-window-header a#scroll-down {
  display: block;
}

.is-home-slider a#scroll-down {
  display: none !important;
}

.has-hero .woocommerce-products-header__title {
  display: none;
}

/* Top Bar */
#topbar {
  font-size: 12px;
  background: #fff;
  width: 100%;
  line-height: 30px;
}
#topbar .wrap {
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.2);
}
#topbar a {
  -webkit-transition: .2s;
  transition: .2s;
}
#topbar a:hover {
  color: #bc9321;
}

#top-nav {
  margin: 0;
  padding: 0;
}
#top-nav li {
  list-style-type: none;
  display: inline-block;
  margin-left: 10px;
}
#top-nav li .fa {
  margin-right: 7px;
}

#topbar-left,
#topbar-right {
  text-align: center;
}

/* Logo */
.logo {
  position: relative;
}
.logo a {
  float: left;
  position: relative;
}
.logo a img {
  opacity: 1 !important;
  height: auto;
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 300px;
  max-height: 200px;
}

body.desktop .logo {
  top: 0;
}

body.desktop:not(.sticking) .logo-container {
  height: 80px;
}

.menu-layout-centered.desktop .logo a img {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	18. Navigation
*/
.nav-menu li a span.menu-item-inner,
.nav-menu-mobile li a span.menu-item-inner {
  font-family: "Roboto", "Helvetica", serif;
}

.nav-menu li.new > a .menu-item-text-container,
.nav-menu li.hot > a .menu-item-text-container,
.nav-menu-mobile li.new > a .menu-item-text-container,
.nav-menu-mobile li.hot > a .menu-item-text-container {
  position: relative;
}
.nav-menu li.new > a .menu-item-text-container:before,
.nav-menu li.hot > a .menu-item-text-container:before,
.nav-menu-mobile li.new > a .menu-item-text-container:before,
.nav-menu-mobile li.hot > a .menu-item-text-container:before {
  content: 'new';
  line-height: 1;
  position: absolute;
  display: inline-block;
  background: #00AEDA;
  color: #fff;
  font-size: 9px;
  right: -21px;
  padding: 3px 5px 2px;
  top: -14px;
}

.nav-menu-mobile li.new > a .menu-item-text-container:before,
.nav-menu-mobile li.hot > a .menu-item-text-container:before {
  top: 2px;
  right: -50px;
}

.nav-menu li.hot > a .menu-item-text-container:before,
.nav-menu-mobile li.hot > a .menu-item-text-container:before {
  content: 'hot';
  background: #dd3333;
}

.admin-bar.sticking #navbar-container, .admin-bar.sticking #mobile-bar, .admin-bar.menu-type-standard #mobile-bar,
.admin-bar #navbar-mobile-container {
  top: 32px;
}

/* Menu social icons */
.nav-menu li.socials-menu-item:before {
  display: none;
}
.nav-menu li.socials-menu-item .wpb-socials-container {
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
}

/* Footer Nav */
#site-navigation-tertiary {
  font-size: 12px;
  text-transform: uppercase;
}
#site-navigation-tertiary a {
  color: #FFF;
}
#site-navigation-tertiary .fa {
  display: none;
}
#site-navigation-tertiary ul {
  margin-left: 0;
  padding-left: 0;
}
#site-navigation-tertiary ul li {
  margin: 0 0 0 0;
}
#site-navigation-tertiary ul li .bottom-menu-item-separator {
  padding: 0 5px;
}
#site-navigation-tertiary ul li:last-child .bottom-menu-item-separator {
  display: none;
}

/* Desktop navigation
-----------------------------------------------*/
#navbar-container .table-cell {
  vertical-align: top;
  height: 100%;
}
#navbar-container .logo-table-cell,
#navbar-container .icons-table-cell {
  width: 160px;
}
#navbar-container .menu-table-cell {
  text-align: center;
}
#navbar-container .icons-table-cell {
  text-align: right;
  vertical-align: middle;
}
#navbar-container .icons-table-cell .wpb-socials-container {
  width: 100%;
  display: inline-block;
  text-align: right;
  padding: 0;
}
#navbar-container .icons-table-cell .wpb-social {
  font-size: 18px;
  margin-left: 5px;
  margin-bottom: 0;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
#navbar-container .icons-table-cell .wpb-social:hover {
  opacity: .66;
}
#navbar-container .icons-table-cell a.cart-menu-item-link {
  padding-top: 10px;
}
#navbar-container .icons-table-cell a.cart-menu-item-link:before {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-100%, -100%, 0);
  transform: translate3d(-100%, -100%, 0);
}
#navbar-container .icons-table-cell .product-count {
  margin-right: -15px;
}
#navbar-container .icons-table-cell .search-menu-item-text {
  display: none;
}
#navbar-container .icons-table-cell .custom-wpml-iso-codes a {
  display: inline-block;
  margin-right: 5px;
  font-weight: 400 !important;
}
#navbar-container .icons-table-cell .custom-wpml-iso-codes a.wpml-ls-current-language {
  font-weight: 700 !important;
}

#topbar .wrap {
  padding: 0 2px;
}

.menu-width-fullwidth #topbar .wrap,
.menu-width-fullwidth #navbar-container .wrap,
.menu-width-wide #topbar .wrap,
.menu-width-wide #navbar-container .wrap,
.menu-layout-centered #topbar .wrap,
.menu-layout-centered #navbar-container .wrap {
  width: 98%;
  max-width: none;
}

.menu-width-fullwidth #topbar .wrap,
.menu-width-fullwidth #navbar-container .wrap {
  width: 100%;
}
.menu-width-fullwidth .icons-table-cell {
  padding-right: 15px;
}

.menu-layout-centered.menu-centered-alignment-wide #navbar-left {
  text-align: left;
}
.menu-layout-centered.menu-centered-alignment-wide #navbar-right {
  text-align: right;
}

.menu-layout-standard #navbar,
.menu-layout-big_logo #navbar {
  float: right;
}

.menu-layout-big_logo:not(.sticking) .logo-container {
  float: none;
  width: auto;
  height: 200px !important;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.menu-layout-big_logo:not(.sticking) .logo-container a {
  float: none;
}
.menu-layout-big_logo:not(.sticking) .logo-container a img {
  max-width: 1140px !important;
  max-height: 200px;
  -webkit-transform: translate(-50%, -50%) !important;
  -ms-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}
.menu-layout-big_logo:not(.sticking) #navbar {
  float: none;
}
.menu-layout-big_logo:not(.sticking) #site-navigation-primary-desktop .nav-menu {
  position: relative;
  width: auto;
  margin: 0 auto;
  display: inline-block;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.menu-layout-big_logo:not(.sticking) .nav-menu li.mega-menu ul.sub-menu {
  width: 100%;
}
.menu-layout-big_logo:not(.sticking) .post-header-inner {
  padding-top: 250px;
}

.theme-socials-container {
  display: inline-block;
}

#navbar-container {
  -webkit-transition: ease .3s;
  transition: ease .3s;
  z-index: 99997;
  position: absolute;
  height: auto;
  min-height: 80px;
  top: 0;
  left: 0;
  width: 100%;
}
#navbar-container .mobile-product-search-form {
  display: none !important;
}

#topbar {
  position: absolute;
  z-index: 99997;
}

.is-top-bar.desktop:not(.sticking) #navbar-container {
  top: 38px;
}

#navbar-left {
  float: left;
  text-align: right;
  width: 50%;
  padding-right: 130px;
}

#navbar-right {
  width: 50%;
  float: right;
  padding-left: 130px;
}

.logo-container {
  text-align: center;
  float: left;
}

.no-logo #navbar-left {
  padding-right: 0;
}
.no-logo #navbar-right {
  padding-left: 0;
}

/* No menu or logo */
.no-menu #page {
  padding-top: 0;
}
.no-menu .site-header {
  display: none;
}

.menu-type-transparent:not(.sticking) .site-header,
.menu-type-semi-transparent:not(.sticking) .site-header,
.menu-type-semi-transparent-black:not(.sticking) .site-header {
  height: 0;
}
.menu-type-transparent:not(.sticking) #topbar,
.menu-type-transparent:not(.sticking) #navbar-container,
.menu-type-transparent:not(.sticking) #mobile-bar,
.menu-type-semi-transparent:not(.sticking) #topbar,
.menu-type-semi-transparent:not(.sticking) #navbar-container,
.menu-type-semi-transparent:not(.sticking) #mobile-bar,
.menu-type-semi-transparent-black:not(.sticking) #topbar,
.menu-type-semi-transparent-black:not(.sticking) #navbar-container,
.menu-type-semi-transparent-black:not(.sticking) #mobile-bar {
  position: absolute;
  background: none !important;
}

.menu-type-absolute:not(.sticking) .site-header {
  height: 0;
}
.menu-type-absolute:not(.sticking) #navbar-container,
.menu-type-absolute:not(.sticking) #mobile-bar {
  position: absolute;
}

.menu-type-transparent:not(.sticking) .logo-dark,
.menu-type-semi-transparent:not(.sticking) .logo-dark,
.menu-type-semi-transparent-black:not(.sticking) .logo-dark {
  display: none !important;
}
.menu-type-transparent:not(.sticking) .logo-light,
.menu-type-semi-transparent:not(.sticking) .logo-light,
.menu-type-semi-transparent-black:not(.sticking) .logo-light {
  display: block !important;
}
.menu-type-transparent:not(.sticking) #toggle,
.menu-type-semi-transparent:not(.sticking) #toggle,
.menu-type-semi-transparent-black:not(.sticking) #toggle {
  color: #FFF;
}
.menu-type-transparent:not(.sticking) #topbar,
.menu-type-transparent:not(.sticking) #navbar-container li:not(.button-style),
.menu-type-transparent:not(.sticking) #navbar-container .wpb-social,
.menu-type-semi-transparent:not(.sticking) #topbar,
.menu-type-semi-transparent:not(.sticking) #navbar-container li:not(.button-style),
.menu-type-semi-transparent:not(.sticking) #navbar-container .wpb-social,
.menu-type-semi-transparent-black:not(.sticking) #topbar,
.menu-type-semi-transparent-black:not(.sticking) #navbar-container li:not(.button-style),
.menu-type-semi-transparent-black:not(.sticking) #navbar-container .wpb-social {
  color: white !important;
}
.menu-type-transparent:not(.sticking) #topbar a,
.menu-type-transparent:not(.sticking) #navbar-container li:not(.button-style) a,
.menu-type-transparent:not(.sticking) #navbar-container .wpb-social a,
.menu-type-semi-transparent:not(.sticking) #topbar a,
.menu-type-semi-transparent:not(.sticking) #navbar-container li:not(.button-style) a,
.menu-type-semi-transparent:not(.sticking) #navbar-container .wpb-social a,
.menu-type-semi-transparent-black:not(.sticking) #topbar a,
.menu-type-semi-transparent-black:not(.sticking) #navbar-container li:not(.button-style) a,
.menu-type-semi-transparent-black:not(.sticking) #navbar-container .wpb-social a {
  color: white !important;
}
.menu-type-transparent:not(.sticking) .custom-wpml-iso-codes a,
.menu-type-semi-transparent:not(.sticking) .custom-wpml-iso-codes a,
.menu-type-semi-transparent-black:not(.sticking) .custom-wpml-iso-codes a {
  color: white !important;
}
.menu-type-transparent:not(.sticking) .cart-menu-item-link:before,
.menu-type-semi-transparent:not(.sticking) .cart-menu-item-link:before,
.menu-type-semi-transparent-black:not(.sticking) .cart-menu-item-link:before {
  color: white !important;
}
.menu-type-transparent:not(.sticking) #topbar .wrap,
.menu-type-semi-transparent:not(.sticking) #topbar .wrap,
.menu-type-semi-transparent-black:not(.sticking) #topbar .wrap {
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, 0.15);
}
.menu-type-transparent:not(.sticking) #toggle,
.menu-type-semi-transparent:not(.sticking) #toggle,
.menu-type-semi-transparent-black:not(.sticking) #toggle {
  color: white !important;
}
.menu-type-transparent:not(.sticking) .nav-menu li.button-style .menu-item-inner:hover,
.menu-type-semi-transparent:not(.sticking) .nav-menu li.button-style .menu-item-inner:hover,
.menu-type-semi-transparent-black:not(.sticking) .nav-menu li.button-style .menu-item-inner:hover {
  color: white !important;
  border-color: white !important;
}
.menu-type-transparent:not(.sticking).menu-hover-style-line .nav-menu li a span.menu-item-text-container:after,
.menu-type-semi-transparent:not(.sticking).menu-hover-style-line .nav-menu li a span.menu-item-text-container:after,
.menu-type-semi-transparent-black:not(.sticking).menu-hover-style-line .nav-menu li a span.menu-item-text-container:after {
  background-color: white !important;
}

.menu-type-semi-transparent:not(.sticking) #topbar,
.menu-type-semi-transparent:not(.sticking) #navbar-container,
.menu-type-semi-transparent:not(.sticking) #mobile-bar {
  background: rgba(255, 255, 255, 0.15) !important;
}

.menu-type-semi-transparent-black:not(.sticking) #topbar,
.menu-type-semi-transparent-black:not(.sticking) #navbar-container,
.menu-type-semi-transparent-black:not(.sticking) #mobile-bar {
  background: rgba(0, 0, 0, 0.15) !important;
}

.menu-type-none .site-header {
  height: 0;
}
.menu-type-none #navbar-container {
  display: none !important;
}

#site-navigation-primary {
  width: auto;
  float: right;
  padding-right: 1em;
}

#navbar-mobile-container {
  display: none;
}

.nav-menu {
  padding: 0;
  margin: 0;
  font-size: 0;
}
.nav-menu li {
  position: relative;
  list-style-type: none !important;
  display: inline-block;
  font-size: 13px;
}
.nav-menu li a {
  display: table-cell !important;
  height: 100%;
  padding: 0 15px;
  vertical-align: middle;
}
.nav-menu li .menu-item-text-container {
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
.nav-menu li:before {
  content: '';
  display: table-cell;
  vertical-align: middle;
}
.nav-menu li.socials-menu-item {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: none !important;
}
.nav-menu li.socials-menu-item .wpb-social {
  margin-bottom: 2px;
}
.nav-menu li.search-menu-item {
  position: relative;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: none !important;
}
.nav-menu li.search-menu-item .search-menu-item-text {
  display: none;
}
.nav-menu li.search-menu-item:before {
  display: none;
}
.nav-menu li.search-menu-item a.search-toggle {
  margin-left: 0 !important;
}
.nav-menu li.search-menu-item a.search-toggle .fa {
  margin-left: 5px;
  margin-bottom: 3px;
}
.nav-menu li.cart-menu-item {
  position: relative;
  border: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.nav-menu li.cart-menu-item:before {
  display: none;
}
.nav-menu li:first-child:before {
  display: none;
}
.nav-menu li span.menu-item-inner {
  position: relative;
  display: inline-block;
}
.nav-menu li .wpb-socials-container {
  display: inline-block;
}
.nav-menu li a.wpb-social-link {
  padding: 0 1rem;
}
.nav-menu li a.wpb-social-link span.wpb-social {
  color: #FFF;
  font-size: 15px !important;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
.nav-menu li a.wpb-social-link span.wpb-social:hover {
  opacity: .66;
}
.nav-menu li.menu-item-icon-before .fa {
  margin-right: 8px;
}
.nav-menu li.menu-item-icon-after .fa {
  margin-left: 8px;
}
.nav-menu li.button-style {
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: none !important;
}
.nav-menu li.button-style:before {
  display: none;
}
.nav-menu li.button-style a {
  cursor: default;
  opacity: 1 !important;
}
.nav-menu li.button-style .menu-item-inner {
  cursor: pointer;
  padding: .8em 1.4em;
  margin: .2em 0.1em 0.5em 0.2em;
  position: relative;
  line-height: 1 !important;
  font-style: normal !important;
  vertical-align: middle;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-shadow: none !important;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  text-align: center;
  font-weight: 700;
  text-decoration: none !important;
  display: block;
  width: 100%;
  letter-spacing: 0;
  color: white !important;
  border: 1px solid #bc9321;
  background: #bc9321;
  border-radius: 4px;
  outline: none;
  padding: 1em 1.4em;
  margin: 0 10px 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.nav-menu li.button-style .menu-item-inner:hover {
  color: #bc9321 !important;
  background: none;
  opacity: 1;
}
.nav-menu li.button-style .menu-item-inner:active {
  top: 1px;
}
.nav-menu li.button-style .menu-item-inner:hover {
  opacity: 1 !important;
  color: #bc9321 !important;
}
.nav-menu li.button-style .menu-item-inner span.menu-item-text-container {
  opacity: 1 !important;
}
.nav-menu li.button-style .menu-item-inner span.menu-item-text-container:after {
  display: none !important;
}
.nav-menu li.no-menu-item-separator:before {
  display: none;
}
.nav-menu li ul.sub-menu,
.nav-menu li ul.children {
  z-index: 99997 !important;
  float: left;
  padding: 0;
  position: absolute;
  top: auto;
  left: 0;
  font-size: 12px;
  margin: 0 !important;
  -webkit-transition: 0.5s cubic-bezier(0.39, 0.28, 0.31, 1.27);
  transition: 0.5s cubic-bezier(0.39, 0.28, 0.31, 1.27);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}
.nav-menu li ul.sub-menu li:before,
.nav-menu li ul.children li:before {
  display: none !important;
}
.nav-menu li ul.sub-menu span.menu-item-text-container:after,
.nav-menu li ul.children span.menu-item-text-container:after {
  display: none !important;
}
.nav-menu li ul.sub-menu li,
.nav-menu li ul.children li {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: auto;
  display: block;
  margin: 0;
  line-height: 1.4;
}
.nav-menu li ul.sub-menu li a,
.nav-menu li ul.children li a {
  text-align: left;
  display: block !important;
  height: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  margin: 0;
  color: white !important;
  background: #bc9321;
  width: 200px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
  height: 100%;
  vertical-align: middle;
}
.nav-menu li ul.sub-menu li a:hover .menu-item-text-container, .nav-menu li ul.sub-menu li a:focus .menu-item-text-container,
.nav-menu li ul.children li a:hover .menu-item-text-container,
.nav-menu li ul.children li a:focus .menu-item-text-container {
  opacity: 0.66;
}
.nav-menu li ul.sub-menu li ul.sub-menu,
.nav-menu li ul.sub-menu li ul.children,
.nav-menu li ul.children li ul.sub-menu,
.nav-menu li ul.children li ul.children {
  margin-left: 0;
  top: 0 !important;
  left: 100%;
  margin-top: 0 !important;
  opacity: 0;
  visibility: hidden;
}
.nav-menu li ul.sub-menu li:hover ul,
.nav-menu li ul.children li:hover ul {
  opacity: 1;
  visibility: visible;
}
.nav-menu li ul.sub-menu li.menu-item-has-children span.menu-item-inner:before,
.nav-menu li ul.children li.menu-item-has-children span.menu-item-inner:before {
  display: none !important;
}
.nav-menu li ul.sub-menu li.menu-item-has-children > a:before,
.nav-menu li ul.children li.menu-item-has-children > a:before {
  position: absolute;
  content: ' ';
  font-family: 'dashicons';
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f345";
  color: #FFF;
}
.nav-menu li.menu-item-has-children > a span.menu-item-inner {
  padding-right: 20px;
}
.nav-menu li.menu-item-has-children > a span.menu-item-inner:before {
  content: ' ';
  font-family: 'dashicons';
  display: inline;
  content: "\f347";
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: inherit;
  margin-top: -1px;
}
.nav-menu li.menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.nav-menu li.menu-item-has-children.mega-menu:hover ul.sub-menu {
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.nav-menu li,
.nav-menu li a {
  height: 80px;
}

.skin-dark .nav-menu li ul.sub-menu li a,
.skin-dark .nav-menu li ul.children li a,
[class^="skin-dark_"] .nav-menu li ul.sub-menu li a,
[class^="skin-dark_"] .nav-menu li ul.children li a,
[class*=" skin-dark_"] .nav-menu li ul.sub-menu li a,
[class*=" skin-dark_"] .nav-menu li ul.children li a {
  color: white !important;
}

.cart-menu-panel {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: none;
  text-shadow: none;
  position: absolute;
  top: auto;
  right: 0;
  width: 230px;
  height: 150px;
  background: #bc9321;
  z-index: 108;
  text-align: center;
}
.cart-menu-panel a.cart-menu-panel-link {
  display: block !important;
}
.cart-menu-panel a {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  line-height: 1.7 !important;
  color: white !important;
  display: block;
  width: 100%;
}
.cart-menu-panel a span {
  opacity: 1 !important;
}
.cart-menu-panel a:hover {
  color: white !important;
}

.product-count {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -20px;
  margin-right: -20px;
  border-radius: 16px;
  width: 16px;
  height: 16px;
  background: #bc9321;
  color: #FFF;
  text-align: center;
  line-height: 15px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0;
  text-indent: 0;
  right: 50%;
  opacity: 1 !important;
}

a.cart-menu-item-link:before {
  position: relative;
  font-size: 1.8rem;
  margin-left: 5px;
  margin-right: 5px;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a.cart-menu-item-link {
  padding: 0 1rem;
  display: inline-block !important;
  margin-left: -4px;
  height: 100%;
}
a.cart-menu-item-link .cart-text {
  visibility: hidden;
  width: 0;
}

.cart-menu-item-container {
  position: relative;
  display: inline-block;
  height: 100%;
}
.cart-menu-item-container:before {
  display: none;
}
.cart-menu-item-container .icon-cart {
  display: block;
  text-align: center;
}
.cart-menu-item-container .icon-cart:before {
  position: relative;
  font-size: 3.2rem;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 2.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cart-menu-item-container .product-count {
  margin-top: -17px;
}
.cart-menu-item-container:hover .cart-menu-panel {
  display: block;
}

.icons-table-cell .cart-menu-item-container .product-count {
  margin-top: -20px;
}

.sticking .nav-menu span.menu-item-text-container:after {
  display: none !important;
}

.menu-hover-style-line .nav-menu li a span.menu-item-text-container {
  position: relative;
}
.menu-hover-style-line .nav-menu li a span.menu-item-text-container:after {
  content: "";
  position: absolute;
  width: 90%;
  height: 2px;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background: #ffffff;
  visibility: hidden;
  border-radius: 7px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: .25s linear;
  transition: .25s linear;
}
.menu-hover-style-line .nav-menu li:hover a span.menu-item-text-container:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.menu-hover-style-line2 .nav-menu li a span.menu-item-text-container {
  position: relative;
}
.menu-hover-style-line2 .nav-menu li a span.menu-item-text-container:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -10px;
  left: 0;
  margin: auto;
  background: #ffffff;
  border-radius: 7px;
  -webkit-transition: .25s linear;
  transition: .25s linear;
}
.menu-hover-style-line2 .nav-menu li:hover a span.menu-item-text-container:after {
  width: 100%;
}

.menu-hover-style-opacity .nav-menu li a:first-child:hover .menu-item-text-container, .menu-hover-style-opacity .nav-menu li a:first-child:focus .menu-item-text-container {
  opacity: 0.66;
}

.menu-hover-style-border .nav-menu li,
.menu-hover-style-plain .nav-menu li {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.menu-hover-style-border .nav-menu li:hover,
.menu-hover-style-border .nav-menu li.current_page_item,
.menu-hover-style-border .nav-menu li.current-menu-parent,
.menu-hover-style-border .nav-menu li.current-menu-item,
.menu-hover-style-border .nav-menu li.menu-link-active {
  -webkit-box-shadow: inset 0px 5px 0px 0px #ccc;
  box-shadow: inset 0px 5px 0px 0px #ccc;
}

.menu-hover-style-plain #navbar-container .nav-menu li.current_page_item, .menu-hover-style-plain #navbar-container .nav-menu li.current-menu-parent, .menu-hover-style-plain #navbar-container .nav-menu li.current-menu-item, .menu-hover-style-plain #navbar-container .nav-menu li.menu-link-active, .menu-hover-style-plain #navbar-container .nav-menu li:not(.socials-menu-item):not(.search-menu-item):hover {
  color: #FFF;
}
.menu-hover-style-plain #navbar-container .nav-menu li.current_page_item a,
.menu-hover-style-plain #navbar-container .nav-menu li.current_page_item .wpb-social, .menu-hover-style-plain #navbar-container .nav-menu li.current-menu-parent a,
.menu-hover-style-plain #navbar-container .nav-menu li.current-menu-parent .wpb-social, .menu-hover-style-plain #navbar-container .nav-menu li.current-menu-item a,
.menu-hover-style-plain #navbar-container .nav-menu li.current-menu-item .wpb-social, .menu-hover-style-plain #navbar-container .nav-menu li.menu-link-active a,
.menu-hover-style-plain #navbar-container .nav-menu li.menu-link-active .wpb-social, .menu-hover-style-plain #navbar-container .nav-menu li:not(.socials-menu-item):not(.search-menu-item):hover a,
.menu-hover-style-plain #navbar-container .nav-menu li:not(.socials-menu-item):not(.search-menu-item):hover .wpb-social {
  color: #FFF;
}

.menu-hover-style-plain .nav-menu li.cart-menu-item:hover .product-count {
  background: #fff;
  color: #333;
}

.menu-hover-style-plain .nav-menu li:hover,
.menu-hover-style-plain .nav-menu li.current_page_item,
.menu-hover-style-plain .nav-menu li.current-menu-parent,
.menu-hover-style-plain .nav-menu li.current-menu-item,
.menu-hover-style-plain .nav-menu li.menu-link-active {
  background: #333;
}

.menu-bottom-border #navbar-container,
.menu-bottom-border #mobile-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sticking #navbar-container {
  min-height: 80px;
  position: fixed;
}
.sticking .nav-menu li,
.sticking .nav-menu li a {
  height: 80px;
}
.sticking .logo-container {
  position: relative;
  height: 80px;
}
.sticking #navbar-container ul.sub-menu {
  top: 80px;
}

body.search-toggle-woocommerce-on #navbar,
body.search-toggle-woocommerce-on #navbar-right {
  position: relative;
}
body.search-toggle-woocommerce-on #menu-product-search-form-container {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s cubic-bezier(0.39, 0.28, 0.31, 1.27);
  transition: 0.5s cubic-bezier(0.39, 0.28, 0.31, 1.27);
}

#menu-product-search-form-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
}
#menu-product-search-form-container form {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
#menu-product-search-form-container input[type='submit'] {
  display: none;
}
#menu-product-search-form-container input[type='search'] {
  margin: 0;
  border: none;
  height: 100%;
  width: 100%;
  background: #fff;
  padding: 5px 15px;
  font-size: 18px;
}

#close-product-search-form {
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 32px;
  cursor: pointer;
}

#product-search-form-loader {
  position: absolute;
  right: 45px;
  top: 50%;
  margin-top: -6px;
  display: none;
}

#woocommerce-live-search-results {
  display: none;
  position: absolute;
  background: #FFF;
  padding: 15px;
  top: auto;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
#woocommerce-live-search-results ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#woocommerce-live-search-results ul li {
  list-style-type: none;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
#woocommerce-live-search-results ul li:last-child {
  border: none;
}
#woocommerce-live-search-results .product-search-link {
  opacity: 0.88;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
#woocommerce-live-search-results .product-search-link:hover {
  opacity: 1;
}
#woocommerce-live-search-results .product-search-image {
  width: 80px;
}
#woocommerce-live-search-results .product-search-image img {
  max-width: 44px;
}
#woocommerce-live-search-results .product-search-title,
#woocommerce-live-search-results .product-search-price {
  vertical-align: middle;
}
#woocommerce-live-search-results .product-search-title {
  text-align: left;
  font-weight: 400;
}
#woocommerce-live-search-results .product-search-price {
  text-align: right;
}

.skin-dark #woocommerce-live-search-results,
.skin-dark #menu-product-search-form-container input,
[class^="skin-dark_"] #woocommerce-live-search-results,
[class^="skin-dark_"] #menu-product-search-form-container input,
[class*=" skin-dark_"] #woocommerce-live-search-results,
[class*=" skin-dark_"] #menu-product-search-form-container input {
  background: #0d0d0d;
  color: #FFF;
}

/* Mobile navigation
-----------------------------------------------*/
#mobile-bar {
  display: none;
  z-index: 99997;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  padding: 0 5px;
}
#mobile-bar img {
  max-height: 60px;
}

/* Table cell for cart menu style */
#mobile-bar .toggle-table-cell,
#mobile-bar .mobile-cart-table-cell {
  width: 50px;
}
#mobile-bar .mobile-logo-table-cell .logo-container {
  float: none;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#mobile-bar .mobile-cart-table-cell a.cart-menu-item-link {
  padding-top: 10px;
  color: inherit;
  height: 50px;
}
#mobile-bar .mobile-cart-table-cell a.cart-menu-item-link:before {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-100%, -100%, 0);
  transform: translate3d(-100%, -100%, 0);
}
#mobile-bar .mobile-cart-table-cell .product-count {
  margin-right: -15px;
}
#mobile-bar .mobile-cart-table-cell .cart-menu-panel {
  display: none;
}

.menu-type-none #mobile-bar {
  display: none !important;
}

.no-menu #mobile-bar {
  display: none !important;
}
.no-menu .post-header-container {
  padding-top: 0 !important;
}

#toggle {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 0;
  top: 0;
  cursor: pointer;
}
#toggle:before {
  font-size: 24px;
  position: relative;
  top: 14px;
  left: 14px;
  right: 0;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Dashicons;
  content: "\f333";
  -webkit-transition: .2s;
  transition: .2s;
}

body.menu-toggle #toggle:before {
  content: "\f335";
}

#toggle-close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  font-size: 24px;
  width: 24px;
  display: none;
}

#navbar-mobile-container {
  display: none;
  -webkit-box-shadow: inset 5px 0px 10px -2px rgba(0, 0, 0, 0.8);
  box-shadow: inset 5px 0px 10px -2px rgba(0, 0, 0, 0.8);
  background: #0c0c0c;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  zoom: 1;
  color: #f1f1f1;
  width: 80%;
  position: fixed;
  top: 0;
  right: 0;
  height: auto;
  min-height: 100%;
  padding: 30px;
  z-index: 999;
  -webkit-transition: right .3s ease-in-out;
  transition: right .3s ease-in-out;
  right: -80%;
}
#navbar-mobile-container:before, #navbar-mobile-container:after {
  content: "";
  display: table;
}
#navbar-mobile-container:after {
  clear: both !important;
}

.site-container,
#mobile-bar,
.parallax-bg {
  left: 0;
  -webkit-transition: left .3s ease-in-out;
  transition: left .3s ease-in-out;
}

.parallax-slider {
  margin-left: 0;
  -webkit-transition: margin-left .3s ease-in-out;
  transition: margin-left .3s ease-in-out;
}

.menu-toggle.breakpoint.menu-type-standard #mobile-bar, .menu-toggle.breakpoint.sticking #mobile-bar,
.menu-toggle.breakpoint .site-container,
.menu-toggle.breakpoint .parallax-bg {
  left: -80%;
}
.menu-toggle.breakpoint #navbar-mobile-container {
  right: 0;
}
.menu-toggle.breakpoint .parallax-slider {
  margin-left: -80% !important;
}

body.search-toggle-woocommerce-on .nav-menu-mobile .search-menu-item .mobile-product-search-form {
  display: block;
}

.nav-menu-mobile {
  font-size: 13px;
  padding: 0;
  margin: 0;
  margin-bottom: 0;
  -ms-word-wrap: normal;
  word-wrap: normal;
  text-align: left;
}
.nav-menu-mobile .search-menu-item {
  position: relative;
}
.nav-menu-mobile .search-menu-item .search-toggle {
  margin: 0;
  position: relative;
  left: -5px;
}
.nav-menu-mobile .search-menu-item .mobile-product-search-form {
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: -2px;
  left: -1px;
  z-index: 10;
}
.nav-menu-mobile .search-menu-item .mobile-product-search-form form {
  margin: 0;
}
.nav-menu-mobile .search-menu-item .mobile-product-search-form .search-field {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  padding: 0 5px;
  background: #FFF;
  height: 30px;
  line-height: 28px;
}
.nav-menu-mobile .search-menu-item .mobile-product-search-form input[type=submit] {
  display: none;
}
.nav-menu-mobile .search-menu-item .close-product-search-form {
  display: block;
  position: absolute;
  top: 16px;
  right: 0;
  font-size: 24px;
  width: 24px;
  cursor: pointer;
  color: #333;
  z-index: 999;
  font-weight: 700;
  line-height: 0;
}
.nav-menu-mobile .cart-menu-item-link {
  position: relative;
  left: 3px;
}
.nav-menu-mobile .search-menu-item-text {
  display: inline-block !important;
}
.nav-menu-mobile li {
  display: block;
  list-style-type: none !important;
  line-height: 2.66;
  margin: 0;
}
.nav-menu-mobile li a {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  display: block;
  width: 100%;
  color: white !important;
  -webkit-transition: opacity ease 0.2s;
  transition: opacity ease 0.2s;
  text-decoration: none;
}
.nav-menu-mobile li a:hover, .nav-menu-mobile li a.active {
  opacity: 0.8;
}
.nav-menu-mobile li .wpb-social-link:first-child {
  margin-left: 0;
}
.nav-menu-mobile li .wpb-social {
  color: #FFF;
  font-size: 14px;
}
.nav-menu-mobile li.button-style a {
  opacity: 1 !important;
}
.nav-menu-mobile li.button-style .menu-item-inner {
  cursor: pointer;
  padding: .8em 1.4em;
  margin: .2em 0.1em 0.5em 0.2em;
  position: relative;
  line-height: 1 !important;
  font-style: normal !important;
  vertical-align: middle;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-shadow: none !important;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  text-align: center;
  font-weight: 700;
  text-decoration: none !important;
  display: block;
  width: 100%;
  letter-spacing: 0;
  color: white !important;
  border: 1px solid #bc9321;
  background: #bc9321;
  border-radius: 4px;
  outline: none;
  padding: 8px 12px;
  margin-left: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
  width: auto;
}
.nav-menu-mobile li.button-style .menu-item-inner:hover {
  color: #bc9321 !important;
  background: none;
  opacity: 1;
}
.nav-menu-mobile li.button-style .menu-item-inner:active {
  top: 1px;
}
.nav-menu-mobile li.menu-item-icon-before .fa {
  margin-right: 8px;
}
.nav-menu-mobile li .wpb-socials-container {
  display: block;
  width: 100%;
  max-width: none;
  text-align: left;
}
.nav-menu-mobile li .wpb-social-link {
  display: inline-block;
  width: auto;
  text-align: center;
  margin: 0 8px;
}
.nav-menu-mobile li ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 15px;
}
.nav-menu-mobile li ul.sub-menu,
.nav-menu-mobile li ul.children {
  display: none;
}
.nav-menu-mobile li.menu-item-has-children, .nav-menu-mobile li.page_item_has_children, .nav-menu-mobile li.active {
  position: relative;
  padding-bottom: 0;
}
.nav-menu-mobile li.menu-item-has-children:before, .nav-menu-mobile li.page_item_has_children:before, .nav-menu-mobile li.active:before {
  font-family: Dashicons;
  content: "\f347";
  position: absolute;
  right: 0;
  top: 0;
}
.nav-menu-mobile li.menu-item-has-children a:first-child, .nav-menu-mobile li.page_item_has_children a:first-child, .nav-menu-mobile li.active a:first-child {
  padding-right: 45px;
}
.nav-menu-mobile .cart-menu-item-container .cart-menu-panel {
  display: none;
}
.nav-menu-mobile .cart-menu-item-container .cart-menu-item-link {
  position: relative;
  padding-left: 0;
}
.nav-menu-mobile .cart-menu-item-container .cart-menu-item-link:before {
  margin-left: 0;
  margin-right: 10px;
}
.nav-menu-mobile .cart-menu-item-container .cart-menu-item-link .product-count {
  right: auto;
  left: 10px;
}
.nav-menu-mobile .cart-menu-item-container .cart-menu-item-link .cart-text {
  position: absolute;
  visibility: visible;
  width: auto;
  top: 0;
  left: 30px;
}

/* Mega menu
-----------------------------------------------*/
body.submenu-width-wide .nav-menu li.mega-menu ul.sub-menu {
  max-width: none;
}

.nav-menu li.mega-menu {
  position: static;
  	/*&.mega-menu-cols-2{
  		ul.sub-menu{
  			width: 50%;
  
  			li{
  				width: 48%;
  			}
  		}
  	}*/
}
.nav-menu li.mega-menu.mega-menu-bg-repeat ul.sub-menu {
  background-repeat: repeat;
}
.nav-menu li.mega-menu.mega-menu-bg-no-repeat ul.sub-menu {
  background-repeat: no-repeat;
  background-size: 100%;
  background-size: cover;
}
.nav-menu li.mega-menu.mega-menu-has-tagline .mega-menu-tagline {
  display: block;
  -webkit-transition: 0.5s cubic-bezier(0.39, 0.28, 0.31, 1.27);
  transition: 0.5s cubic-bezier(0.39, 0.28, 0.31, 1.27);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(-50%, 5px, 0);
  transform: translate3d(-50%, 5px, 0);
  position: absolute;
  width: 92%;
  max-width: 1140px;
  top: auto;
  left: 50%;
  padding: 14px;
  visibility: hidden;
  z-index: 99999;
  background: none !important;
  border-bottom: solid 1px rgba(255, 255, 255, 0.05);
  font-size: 1.2em;
  text-align: center;
  color: #FFF;
}
.nav-menu li.mega-menu.mega-menu-has-tagline > ul.sub-menu {
  padding-top: 66px;
}
.nav-menu li.mega-menu ul.sub-menu {
  position: absolute;
  width: 92%;
  max-width: 1140px;
  top: auto !important;
  left: 50%;
  -webkit-transform: translate3d(-50%, 5px, 0);
  transform: translate3d(-50%, 5px, 0);
  padding: 15px;
  background: #bc9321;
  visibility: hidden;
}
.nav-menu li.mega-menu ul.sub-menu li {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 !important;
  position: static;
  display: block;
  float: left !important;
  margin-right: 2%;
  border-right: rgba(255, 255, 255, 0.1) 1px solid;
  background: none !important;
  /*&.menu-item-has-children,
  &.page_item_has_children,
  &.active{
  	&:before{
  		display: none!important;
  	}
  }*/
}
.nav-menu li.mega-menu ul.sub-menu li a {
  position: relative;
  background: none !important;
  text-align: left !important;
  -webkit-box-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
  padding-top: 8px;
  padding-bottom: 8px;
  width: auto;
}
.nav-menu li.mega-menu ul.sub-menu li a span {
  position: relative;
}
.nav-menu li.mega-menu ul.sub-menu li a:before,
.nav-menu li.mega-menu ul.sub-menu li a .menu-item-inner:before {
  display: none !important;
}
.nav-menu li.mega-menu ul.sub-menu li:last-child {
  border: none;
}
.nav-menu li.mega-menu ul.sub-menu li.not-linked > a:first-child {
  opacity: 1 !important;
}
.nav-menu li.mega-menu ul.sub-menu li.not-linked > a:first-child span.menu-item-inner {
  color: white !important;
  font-weight: 700 !important;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 1 !important;
  cursor: default;
}
.nav-menu li.mega-menu ul.sub-menu li.not-linked > a:first-child span.menu-item-inner span.menu-item-text-container {
  opacity: 1 !important;
}
.nav-menu li.mega-menu ul.sub-menu li.hidden > a:first-child {
  display: none;
}
.nav-menu li.mega-menu ul.sub-menu li ul {
  margin-top: 0 !important;
  margin-left: 0 !important;
  padding: 0;
  top: 0;
  left: 0;
  right: auto !important;
  position: relative;
  width: auto;
  background: none !important;
  display: block !important;
  -webkit-transform: translateX(0) !important;
  -ms-transform: translateX(0) !important;
  transform: translateX(0) !important;
  opacity: 1 !important;
  visibility: hidden;
}
.nav-menu li.mega-menu ul.sub-menu li ul li {
  width: 100% !important;
  margin-right: 0 !important;
  float: none;
  border: none !important;
}
.nav-menu li.mega-menu ul.sub-menu li ul li ul {
  display: block !important;
}
.nav-menu li.mega-menu.mega-menu-4-cols ul.sub-menu li {
  width: 23%;
}
.nav-menu li.mega-menu.mega-menu-3-cols ul.sub-menu li {
  width: 31%;
}
.nav-menu li.mega-menu:hover .mega-menu-tagline,
.nav-menu li.mega-menu:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

/* Menu breakpoint
-----------------------------------------------*/
/* Menu breakpoint */
.breakpoint .site-header {
  height: 0;
}
.breakpoint #navbar-container,
.breakpoint #topbar {
  display: none;
}
.breakpoint #mobile-bar,
.breakpoint #navbar-mobile-container {
  display: block;
}

.breakpoint:not(.menu-type-none) .post-header-inner {
  padding-top: 50px;
}

.breakpoint .logo a img {
  height: 50px;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.breakpoint .nav-menu li.mega-menu ul.sub-menu li.hidden > a:first-child {
  display: block;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	19. Plugins izotope filter
*/
#plugin-filter,
#blog-filter,
#videos-filter,
#albums-filter,
#work-filter {
  list-style-type: none;
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}
#plugin-filter li,
#blog-filter li,
#videos-filter li,
#albums-filter li,
#work-filter li {
  list-style-type: none !important;
  display: inline;
  line-height: 30px;
}
#plugin-filter li a,
#blog-filter li a,
#videos-filter li a,
#albums-filter li a,
#work-filter li a {
  border-radius: 2px;
  text-shadow: none;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline;
  padding: 4px 8px 4px;
  margin-right: 20px;
}
#plugin-filter li a.active, #plugin-filter li a:hover,
#blog-filter li a.active,
#blog-filter li a:hover,
#videos-filter li a.active,
#videos-filter li a:hover,
#albums-filter li a.active,
#albums-filter li a:hover,
#work-filter li a.active,
#work-filter li a:hover {
  color: white !important;
  background: #404040;
}

body.button-style-square #plugin-filter li a,
body.button-style-square #blog-filter li a,
body.button-style-square #videos-filter li a,
body.button-style-square #albums-filter li a,
body.button-style-square #work-filter li a {
  border-radius: 0;
}

.blog-layout-fullwidth #plugin-filter,
.blog-layout-fullwidth #blog-filter,
.blog-layout-fullwidth #videos-filter,
.blog-layout-fullwidth #albums-filter,
.blog-layout-fullwidth #work-filter,
.albums-layout-fullwidth #plugin-filter,
.albums-layout-fullwidth #blog-filter,
.albums-layout-fullwidth #videos-filter,
.albums-layout-fullwidth #albums-filter,
.albums-layout-fullwidth #work-filter,
.videos-layout-fullwidth #plugin-filter,
.videos-layout-fullwidth #blog-filter,
.videos-layout-fullwidth #videos-filter,
.videos-layout-fullwidth #albums-filter,
.videos-layout-fullwidth #work-filter,
.portfolio-layout-fullwidth #plugin-filter,
.portfolio-layout-fullwidth #blog-filter,
.portfolio-layout-fullwidth #videos-filter,
.portfolio-layout-fullwidth #albums-filter,
.portfolio-layout-fullwidth #work-filter {
  padding-left: 30px;
}

.skin-light #plugin-filter li a,
.skin-light #blog-filter li a,
.skin-light #videos-filter li a,
.skin-light #albums-filter li a,
.skin-light #work-filter li a,
[class^="skin-light_"] #plugin-filter li a,
[class^="skin-light_"] #blog-filter li a,
[class^="skin-light_"] #videos-filter li a,
[class^="skin-light_"] #albums-filter li a,
[class^="skin-light_"] #work-filter li a,
[class*=" skin-light_"] #plugin-filter li a,
[class*=" skin-light_"] #blog-filter li a,
[class*=" skin-light_"] #videos-filter li a,
[class*=" skin-light_"] #albums-filter li a,
[class*=" skin-light_"] #work-filter li a {
  color: #333;
}
.skin-light #plugin-filter li a:after,
.skin-light #blog-filter li a:after,
.skin-light #videos-filter li a:after,
.skin-light #albums-filter li a:after,
.skin-light #work-filter li a:after,
[class^="skin-light_"] #plugin-filter li a:after,
[class^="skin-light_"] #blog-filter li a:after,
[class^="skin-light_"] #videos-filter li a:after,
[class^="skin-light_"] #albums-filter li a:after,
[class^="skin-light_"] #work-filter li a:after,
[class*=" skin-light_"] #plugin-filter li a:after,
[class*=" skin-light_"] #blog-filter li a:after,
[class*=" skin-light_"] #videos-filter li a:after,
[class*=" skin-light_"] #albums-filter li a:after,
[class*=" skin-light_"] #work-filter li a:after {
  background: #333;
}

.skin-dark #plugin-filter li a,
.skin-dark #blog-filter li a,
.skin-dark #videos-filter li a,
.skin-dark #albums-filter li a,
.skin-dark #work-filter li a,
[class^="skin-dark_"] #plugin-filter li a,
[class^="skin-dark_"] #blog-filter li a,
[class^="skin-dark_"] #videos-filter li a,
[class^="skin-dark_"] #albums-filter li a,
[class^="skin-dark_"] #work-filter li a,
[class*=" skin-dark_"] #plugin-filter li a,
[class*=" skin-dark_"] #blog-filter li a,
[class*=" skin-dark_"] #videos-filter li a,
[class*=" skin-dark_"] #albums-filter li a,
[class*=" skin-dark_"] #work-filter li a {
  color: #fff;
}
.skin-dark #plugin-filter li a:after,
.skin-dark #blog-filter li a:after,
.skin-dark #videos-filter li a:after,
.skin-dark #albums-filter li a:after,
.skin-dark #work-filter li a:after,
[class^="skin-dark_"] #plugin-filter li a:after,
[class^="skin-dark_"] #blog-filter li a:after,
[class^="skin-dark_"] #videos-filter li a:after,
[class^="skin-dark_"] #albums-filter li a:after,
[class^="skin-dark_"] #work-filter li a:after,
[class*=" skin-dark_"] #plugin-filter li a:after,
[class*=" skin-dark_"] #blog-filter li a:after,
[class*=" skin-dark_"] #videos-filter li a:after,
[class*=" skin-dark_"] #albums-filter li a:after,
[class*=" skin-dark_"] #work-filter li a:after {
  background: #fff;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	20. Blog
*/
/* Main blog layout
-----------------------------*/
/* Hide meta depending on user options */
body.blog-hide-date .posted-on {
  display: none !important;
}

body.blog-hide-category .categories-links {
  display: none !important;
}

body.blog-hide-tags .tags-links {
  display: none !important;
}

body.blog-hide-author .entry-meta .author-meta {
  display: none !important;
}
body.blog-hide-author .post-grid-entry-meta .author-meta {
  display: none !important;
}

body.blog-hide-comments-count .comments-link {
  display: none !important;
}

body.blog-hide-views .views-meta,
body.portfolio-hide-views .views-meta {
  display: none !important;
}

body.blog-hide-likes .likes-meta,
body.portfolio-hide-likes .likes-meta {
  display: none !important;
}

body.blog-hide-shares .shares-meta,
body.portfolio-hide-shares .shares-meta {
  display: none !important;
}

body.blog-display-standard.blog-hide-likes.blog-hide-views.blog-hide-comments-count footer.entry-meta {
  border-top: 0;
}

/* Custom bg for quote, link, aside and status format */
body .has-bg {
  color: white !important;
}
body .has-bg .featured-quote a,
body .has-bg .comments-link a,
body .has-bg .views-meta,
body .has-bg .likes-meta,
body .has-bg .shares-meta,
body .has-bg .entry-meta a,
body .has-bg .posted-on a,
body .has-bg .entry-link {
  color: white !important;
}
body .has-bg:before {
  display: block !important;
  z-index: 1;
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
}
body .has-bg footer.entry-meta {
  border-top-color: rgba(255, 255, 255, 0.2) !important;
}

/* Standard & classic display */
.entry-display-standard,
.entry-display-classic,
.entry-display-medium-image {
  padding-top: 0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.entry-display-standard .entry-thumbnail a img,
.entry-display-classic .entry-thumbnail a img,
.entry-display-medium-image .entry-thumbnail a img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.entry-display-standard .entry-thumbnail a:hover img,
.entry-display-classic .entry-thumbnail a:hover img,
.entry-display-medium-image .entry-thumbnail a:hover img {
  opacity: 0.8;
}
.entry-display-standard .sticky-post,
.entry-display-classic .sticky-post,
.entry-display-medium-image .sticky-post {
  margin-bottom: 10px;
}
.entry-display-standard footer.entry-meta .featured-post,
.entry-display-classic footer.entry-meta .featured-post,
.entry-display-medium-image footer.entry-meta .featured-post {
  display: none;
}

.entry-display-standard.sticky h2.entry-title,
.entry-display-classic.sticky h2.entry-title {
  font-size: 32px;
}

.entry-display-classic .entry-title {
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 10px;
}

.entry-display-standard .entry-title,
.entry-display-classic .entry-title,
.entry-display-medium-image .entry-title {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 24px;
}
.entry-display-standard .entry-meta,
.entry-display-standard .posted-on,
.entry-display-classic .entry-meta,
.entry-display-classic .posted-on,
.entry-display-medium-image .entry-meta,
.entry-display-medium-image .posted-on {
  font-size: 13px;
}
.entry-display-standard.format-quote, .entry-display-standard.format-link, .entry-display-standard.format-status, .entry-display-standard.format-aside,
.entry-display-classic.format-quote,
.entry-display-classic.format-link,
.entry-display-classic.format-status,
.entry-display-classic.format-aside,
.entry-display-medium-image.format-quote,
.entry-display-medium-image.format-link,
.entry-display-medium-image.format-status,
.entry-display-medium-image.format-aside {
  text-align: center;
}
.entry-display-standard.format-link .entry-header,
.entry-display-classic.format-link .entry-header,
.entry-display-medium-image.format-link .entry-header {
  display: none;
}
.entry-display-standard.format-quote .entry-header,
.entry-display-classic.format-quote .entry-header,
.entry-display-medium-image.format-quote .entry-header {
  max-width: 960px;
}
.entry-display-standard.format-quote .entry-meta,
.entry-display-standard.format-quote .entry-summary,
.entry-display-classic.format-quote .entry-meta,
.entry-display-classic.format-quote .entry-summary,
.entry-display-medium-image.format-quote .entry-meta,
.entry-display-medium-image.format-quote .entry-summary {
  float: none;
  margin: 0 !important;
}
.entry-display-standard.format-quote .entry-summary,
.entry-display-classic.format-quote .entry-summary,
.entry-display-medium-image.format-quote .entry-summary {
  width: 100%;
}
.entry-display-standard.format-quote .entry-summary .posted-on,
.entry-display-classic.format-quote .entry-summary .posted-on,
.entry-display-medium-image.format-quote .entry-summary .posted-on {
  display: block;
  text-align: center;
}
.entry-display-standard.format-quote .entry-summary .post-title-divider,
.entry-display-classic.format-quote .entry-summary .post-title-divider,
.entry-display-medium-image.format-quote .entry-summary .post-title-divider {
  display: none;
}
.entry-display-standard.format-quote .entry-content,
.entry-display-classic.format-quote .entry-content,
.entry-display-medium-image.format-quote .entry-content {
  padding-top: 0 !important;
}

/* Medium image */
.entry-display-medium-image .entry-title {
  margin-top: 0;
}

.entry-display-medium-image .entry-title {
  margin-top: -5px;
  margin-bottom: -10px;
  line-height: 1.5;
}
.entry-display-medium-image .entry-summary-inner {
  font-size: 14px;
}

/* Standard & classic display */
.entry-display-standard .entry-content,
.entry-display-classic .entry-content {
  max-width: 750px;
  margin: 0 auto;
}

/* Standard display */
.entry-display-standard .entry-content {
  padding: 30px;
}
.entry-display-standard .posted-on {
  display: block;
}

.entry-display-standard .sticky-post {
  margin-top: 15px;
  margin-bottom: -15px;
}

/* Classic display */
.entry-display-classic .entry-header,
.entry-display-medium-image .entry-header {
  margin: 0 auto 20px;
}
.entry-display-classic .entry-summary-inner,
.entry-display-medium-image .entry-summary-inner {
  margin-top: 20px;
}
.entry-display-classic.format-link .entry-content, .entry-display-classic.format-aside .entry-content, .entry-display-classic.format-status .entry-content, .entry-display-classic.format-quote .entry-content,
.entry-display-medium-image.format-link .entry-content,
.entry-display-medium-image.format-aside .entry-content,
.entry-display-medium-image.format-status .entry-content,
.entry-display-medium-image.format-quote .entry-content {
  padding: 30px;
}

.entry-display-classic .sticky-post {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* Grid  & photo display */
.entry-display-grid .entry-meta > span,
.entry-display-grid2 .entry-meta > span,
.entry-display-grid3 .entry-meta > span,
.entry-display-phot .entry-meta > span {
  margin-right: 8px;
}
.entry-display-grid .wp-post-image,
.entry-display-grid2 .wp-post-image,
.entry-display-grid3 .wp-post-image,
.entry-display-phot .wp-post-image {
  width: 100%;
}

.entry-display-grid .sticky-post,
.entry-display-grid2 .sticky-post,
.entry-display-grid3 .sticky-post,
.entry-display-metro .sticky-post,
.entry-display-column .sticky-post,
.entry-display-photo .sticky-post {
  z-index: 15;
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  padding: 10px 14px;
}

.post-grid-container {
  position: relative;
  background: black;
}
.post-grid-container .entry-thumbnail {
  margin-bottom: 0 !important;
}

.post-grid-title-container {
  padding: 35px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.post-grid-title-inner {
  height: 100%;
}

.post-grid-divider {
  border-top: 1px solid;
  display: block;
  max-width: 48px;
  margin: 15px auto 15px;
  opacity: 0.8;
}

.post-grid-content {
  color: #FFF;
}

.post-grid-status-avatar {
  display: block;
  margin-bottom: 20px;
}

.post-grid-entry-meta {
  font-size: 13px;
}
.post-grid-entry-meta .avatar {
  position: relative;
  margin-right: 7px;
}
.post-grid-entry-meta > span {
  color: white !important;
}

a.post-grid-container-entry-link {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: block;
}
a.post-grid-container-entry-link img.wp-post-image {
  vertical-align: bottom;
  z-index: 1;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
a.post-grid-container-entry-link:before {
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  z-index: 2;
  opacity: 0.4;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
a.post-grid-container-entry-link:hover:before {
  opacity: 0.666;
}
a.post-grid-container-entry-link:hover img.wp-post-image {
  -webkit-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.post-grid-featured-quote {
  padding: 0;
  margin: 0;
  font-size: 14px;
}

/* Column display */
.blog-display-column .content-wrapper article.post:nth-child(2n+1) {
  clear: left;
}

/* Column & masonry display */
.entry-display-column.post:not(.is-tweet) .entry-inner,
.entry-display-masonry.post:not(.is-tweet) .entry-inner,
.entry-display-masonry2.post:not(.is-tweet) .entry-inner,
.entry-display-grid2.post:not(.is-tweet) .entry-inner,
.entry-display-grid3.post:not(.is-tweet) .entry-inner {
  border-radius: 4px;
}
.entry-display-column .entry-header,
.entry-display-masonry .entry-header,
.entry-display-masonry2 .entry-header,
.entry-display-grid2 .entry-header,
.entry-display-grid3 .entry-header {
  max-width: none !important;
}
.entry-display-column .entry-thumbnail img,
.entry-display-masonry .entry-thumbnail img,
.entry-display-masonry2 .entry-thumbnail img,
.entry-display-grid2 .entry-thumbnail img,
.entry-display-grid3 .entry-thumbnail img {
  width: 100%;
}
.entry-display-column .content-wrapper article.post,
.entry-display-column .content-wrapper article.work,
.entry-display-masonry .content-wrapper article.post,
.entry-display-masonry .content-wrapper article.work,
.entry-display-masonry2 .content-wrapper article.post,
.entry-display-masonry2 .content-wrapper article.work,
.entry-display-grid2 .content-wrapper article.post,
.entry-display-grid2 .content-wrapper article.work,
.entry-display-grid3 .content-wrapper article.post,
.entry-display-grid3 .content-wrapper article.work {
  width: 100%;
}
.entry-display-column .entry-thumbnail,
.entry-display-masonry .entry-thumbnail,
.entry-display-masonry2 .entry-thumbnail,
.entry-display-grid2 .entry-thumbnail,
.entry-display-grid3 .entry-thumbnail {
  display: block !important;
  overflow: hidden;
}
.entry-display-column .entry-thumbnail img,
.entry-display-masonry .entry-thumbnail img,
.entry-display-masonry2 .entry-thumbnail img,
.entry-display-grid2 .entry-thumbnail img,
.entry-display-grid3 .entry-thumbnail img {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  vertical-align: bottom;
}
.entry-display-column .entry-thumbnail:hover img,
.entry-display-masonry .entry-thumbnail:hover img,
.entry-display-masonry2 .entry-thumbnail:hover img,
.entry-display-grid2 .entry-thumbnail:hover img,
.entry-display-grid3 .entry-thumbnail:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.entry-display-column .entry-content,
.entry-display-masonry .entry-content,
.entry-display-masonry2 .entry-content,
.entry-display-grid2 .entry-content,
.entry-display-grid3 .entry-content {
  padding: 20px 30px;
  line-height: 1.75;
}
.entry-display-column .entry-summary,
.entry-display-column .entry-meta,
.entry-display-masonry .entry-summary,
.entry-display-masonry .entry-meta,
.entry-display-masonry2 .entry-summary,
.entry-display-masonry2 .entry-meta,
.entry-display-grid2 .entry-summary,
.entry-display-grid2 .entry-meta,
.entry-display-grid3 .entry-summary,
.entry-display-grid3 .entry-meta {
  position: relative;
  z-index: 2;
}
.entry-display-column .entry-title,
.entry-display-masonry .entry-title,
.entry-display-masonry2 .entry-title,
.entry-display-grid2 .entry-title,
.entry-display-grid3 .entry-title {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 5px;
}
.entry-display-column .entry-summary,
.entry-display-masonry .entry-summary,
.entry-display-masonry2 .entry-summary,
.entry-display-grid2 .entry-summary,
.entry-display-grid3 .entry-summary {
  font-size: 13px;
}
.entry-display-column .entry-meta,
.entry-display-masonry .entry-meta,
.entry-display-masonry2 .entry-meta,
.entry-display-grid2 .entry-meta,
.entry-display-grid3 .entry-meta {
  margin-top: 10px;
  font-size: 12px;
}
.entry-display-column .entry-meta > span,
.entry-display-masonry .entry-meta > span,
.entry-display-masonry2 .entry-meta > span,
.entry-display-grid2 .entry-meta > span,
.entry-display-grid3 .entry-meta > span {
  margin-right: 8px;
}
.entry-display-column.is-soundcloud iframe,
.entry-display-masonry.is-soundcloud iframe,
.entry-display-masonry2.is-soundcloud iframe,
.entry-display-grid2.is-soundcloud iframe,
.entry-display-grid3.is-soundcloud iframe {
  margin-bottom: -8px;
}
.entry-display-column.is-wp-playlist .wp-playlist,
.entry-display-masonry.is-wp-playlist .wp-playlist,
.entry-display-masonry2.is-wp-playlist .wp-playlist,
.entry-display-grid2.is-wp-playlist .wp-playlist,
.entry-display-grid3.is-wp-playlist .wp-playlist {
  margin: 0;
}
.entry-display-column.is-wolf-playlist .wpm-playlist,
.entry-display-masonry.is-wolf-playlist .wpm-playlist,
.entry-display-masonry2.is-wolf-playlist .wpm-playlist,
.entry-display-grid2.is-wolf-playlist .wpm-playlist,
.entry-display-grid3.is-wolf-playlist .wpm-playlist {
  margin: 0;
}

/* Grid2 */
.post-grid2-entry a.entry-thumbnail {
  display: block;
  position: relative;
  z-index: 0;
  margin-bottom: 0 !important;
}
.post-grid2-entry a.entry-thumbnail:before {
  z-index: 5;
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid;
}

.post-grid2-entry a.entry-thumbnail:before {
  border-bottom-color: white;
}

/* Grid3 */
.post-grid3-entry .entry-thumbnail {
  margin-bottom: 0 !important;
}

.post-grid3-entry-inner {
  position: relative;
}

.post-grid3-entry-content {
  text-align: center;
  display: block;
  position: absolute !important;
  width: 100%;
  min-height: 90px;
  padding: 15px 20px;
  left: 0;
  bottom: 0;
  color: #FFF;
  background: rgba(0, 0, 0, 0.44);
  -webkit-transition: background ease .2s;
  transition: background ease .2s;
}
.post-grid3-entry-content .entry-title {
  color: #FFF;
}

.post-grid3-entry:hover .post-grid3-entry-content {
  background: rgba(0, 0, 0, 0.66);
}

.post-grid3-entry-caption {
  display: block;
  position: relative;
}

.post-grid3-category {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-size: 10px;
}

/* Masonry display */
.entry-display-masonry,
.entry-display-masonry2 {
  width: 100%;
}
.entry-display-masonry.format-link, .entry-display-masonry.format-aside, .entry-display-masonry.format-status, .entry-display-masonry.format-quote,
.entry-display-masonry2.format-link,
.entry-display-masonry2.format-aside,
.entry-display-masonry2.format-status,
.entry-display-masonry2.format-quote {
  text-align: center;
}
.entry-display-masonry.format-aside .entry-summary, .entry-display-masonry.format-status .entry-summary,
.entry-display-masonry2.format-aside .entry-summary,
.entry-display-masonry2.format-status .entry-summary {
  padding: 15px 5px;
  font-size: 18px;
  line-height: 1.5;
}

.entry-display-masonry2 .sticky-post {
  display: none;
}
.entry-display-masonry2 .entry-masonry2-content {
  padding-top: 15px;
  text-align: center;
}
.entry-display-masonry2 .category-label:before {
  content: '\2014';
  margin-right: 3px;
}
.entry-display-masonry2 .entry-frame {
  overflow: hidden;
  position: relative;
}
.entry-display-masonry2 .entry-frame .view-more {
  margin-top: 50px;
}
.entry-display-masonry2 .entry-frame .view-more:after {
  display: inline-block;
  font-family: Dashicons;
  content: "\f344";
  position: relative;
  left: 5px;
  top: 3px;
}
.entry-display-masonry2 .entry-frame .button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 13px;
  position: relative;
  z-index: 50;
  color: white !important;
  border: none;
  overflow: hidden;
}
.entry-display-masonry2 .entry-frame .button span {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.entry-display-masonry2 .entry-frame .button:before {
  font-family: Dashicons;
  content: "\f344";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  transform: translateX(-200%);
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 2.6;
}
.entry-display-masonry2 .entry-frame .button:hover:hover {
  background: #0d0d0d;
}
.entry-display-masonry2 .entry-frame .button:hover:hover span {
  -webkit-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
}
.entry-display-masonry2 .entry-frame .button:hover:hover:before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.entry-display-masonry2 .entry-frame .entry-title {
  color: #FFF;
}
.entry-display-masonry2 .entry-frame:hover {
  			/*.button{
  				background: #0d0d0d;
  				span{
  					transform: translateX(200%);
  				}
  
  				&:before{
  					transform: translateX(0);
  				}
  			}*/
}
.entry-display-masonry2 .mejs-container {
  margin-bottom: 0;
}
.entry-display-masonry2.format-video .entry-frame {
  min-height: 350px;
}
.entry-display-masonry2 .entry-mask-link {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 20;
}
.entry-display-masonry2 .entry-frame-inner {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 5;
  padding: 20px;
  text-align: center;
  padding-bottom: 30px;
}
.entry-display-masonry2 .entry-frame-inner .entry-title {
  font-size: 16px;
}
.entry-display-masonry2 .entry-frame-inner p {
  margin: 0;
}
.entry-display-masonry2 .entry-frame-inner .table {
  height: 100%;
  position: relative;
  z-index: 10;
}
.entry-display-masonry2 .entry-frame-overlay {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.14;
}
.entry-display-masonry2 .entry-summary {
  padding-bottom: 30px;
}
.entry-display-masonry2 .post-gallery-slider {
  margin-bottom: 0 !important;
}
.entry-display-masonry2 .post-gallery-slider .flex-direction-nav,
.entry-display-masonry2 .post-gallery-slider .flex-control-nav {
  display: none !important;
}
.entry-display-masonry2.format-standard .entry-frame-inner, .entry-display-masonry2.format-image .entry-frame-inner, .entry-display-masonry2.format-video .entry-frame-inner, .entry-display-masonry2.format-gallery .entry-frame-inner {
  position: absolute;
}
.entry-display-masonry2.format-image .entry-frame-inner, .entry-display-masonry2.format-video .entry-frame-inner, .entry-display-masonry2.format-gallery .entry-frame-inner {
  opacity: 0.66;
}
.entry-display-masonry2.format-image .entry-frame-inner:after, .entry-display-masonry2.format-video .entry-frame-inner:after, .entry-display-masonry2.format-gallery .entry-frame-inner:after {
  opacity: 0.22;
}
.entry-display-masonry2.format-image .entry-frame-inner-caption, .entry-display-masonry2.format-video .entry-frame-inner-caption, .entry-display-masonry2.format-gallery .entry-frame-inner-caption {
  position: relative;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  top: 10px;
}
.entry-display-masonry2.format-image .view-more, .entry-display-masonry2.format-video .view-more, .entry-display-masonry2.format-gallery .view-more {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  opacity: 0;
}
.entry-display-masonry2.format-image .entry-icons-meta, .entry-display-masonry2.format-video .entry-icons-meta, .entry-display-masonry2.format-gallery .entry-icons-meta {
  opacity: 0;
}
.entry-display-masonry2.format-image:hover .entry-frame-inner, .entry-display-masonry2.format-video:hover .entry-frame-inner, .entry-display-masonry2.format-gallery:hover .entry-frame-inner {
  opacity: 1;
}
.entry-display-masonry2.format-image:hover .entry-frame-overlay, .entry-display-masonry2.format-video:hover .entry-frame-overlay, .entry-display-masonry2.format-gallery:hover .entry-frame-overlay {
  opacity: .44;
}
.entry-display-masonry2.format-image:hover .entry-frame-inner-caption, .entry-display-masonry2.format-video:hover .entry-frame-inner-caption, .entry-display-masonry2.format-gallery:hover .entry-frame-inner-caption {
  top: 0;
}
.entry-display-masonry2.format-image:hover .view-more, .entry-display-masonry2.format-video:hover .view-more, .entry-display-masonry2.format-gallery:hover .view-more {
  opacity: 1;
}
.entry-display-masonry2.format-image:hover .entry-icons-meta, .entry-display-masonry2.format-video:hover .entry-icons-meta, .entry-display-masonry2.format-gallery:hover .entry-icons-meta {
  opacity: 1;
}
.entry-display-masonry2.format-image .entry-frame-inner, .entry-display-masonry2.format-standard .entry-frame-inner {
  opacity: 0;
}
.entry-display-masonry2.format-image:hover .entry-frame-inner, .entry-display-masonry2.format-standard:hover .entry-frame-inner {
  opacity: 1;
}
.entry-display-masonry2.format-audio .entry-frame-inner,
.entry-display-masonry2.format-audio .entry-icons-meta,
.entry-display-masonry2.format-audio .entry-mask-link, .entry-display-masonry2.is-instagram .entry-frame-inner,
.entry-display-masonry2.is-instagram .entry-icons-meta,
.entry-display-masonry2.is-instagram .entry-mask-link, .entry-display-masonry2.is-tweet .entry-frame-inner,
.entry-display-masonry2.is-tweet .entry-icons-meta,
.entry-display-masonry2.is-tweet .entry-mask-link, .entry-display-masonry2.is-soundcloud .entry-frame-inner,
.entry-display-masonry2.is-soundcloud .entry-icons-meta,
.entry-display-masonry2.is-soundcloud .entry-mask-link, .entry-display-masonry2.is-wolf-playlist .entry-frame-inner,
.entry-display-masonry2.is-wolf-playlist .entry-icons-meta,
.entry-display-masonry2.is-wolf-playlist .entry-mask-link, .entry-display-masonry2.is-wolf-jplayer .entry-frame-inner,
.entry-display-masonry2.is-wolf-jplayer .entry-icons-meta,
.entry-display-masonry2.is-wolf-jplayer .entry-mask-link {
  display: none;
}
.entry-display-masonry2 .entry-icons-meta {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 100%;
  font-size: 12px;
  text-align: center;
  position: absolute;
  bottom: 0;
  line-height: 2;
  z-index: 20;
  color: white !important;
}
.entry-display-masonry2 .entry-icons-meta a {
  color: white !important;
  opacity: 1 !important;
}
.entry-display-masonry2 footer.entry-meta .featured-post {
  display: none;
}

/* Photo display */
.post-photo-container {
  position: relative;
}

.post-photo-title-container {
  padding: 35px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.post-photo-title-container .entry-title {
  margin-top: 0;
  margin-bottom: 8px;
}

.post-photo-title-inner {
  height: 100%;
}

.post-photo-content {
  color: #FFF;
}

.post-photo-entry-meta {
  font-size: 13px;
}
.post-photo-entry-meta .avatar {
  position: relative;
  margin-right: 7px;
}
.post-photo-entry-meta > span {
  color: white !important;
}

a.post-photo-container-entry-link {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: block;
  margin-bottom: 0 !important;
}
a.post-photo-container-entry-link img.wp-post-image {
  vertical-align: bottom;
  z-index: 1;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
a.post-photo-container-entry-link:before {
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
a.post-photo-container-entry-link:hover:before {
  opacity: 0.666;
}
a.post-photo-container-entry-link:hover img.wp-post-image {
  -webkit-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
  -webkit-transform: scale(1.1) rotate(2deg);
  -ms-transform: scale(1.1) rotate(2deg);
  transform: scale(1.1) rotate(2deg);
}
a.post-photo-container-entry-link:hover .post-photo-title-container {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* Metro display */
.metro-item {
  float: left;
  position: relative;
}

.metro-item {
  width: 100%;
}

.post-metro-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.post-metro-cover {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: no-repeat center center scroll;
  background-size: 100%;
  background-size: cover;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.post-metro-title-container {
  padding: 25px 25px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  text-align: left;
  vertical-align: bottom;
}
.post-metro-title-container .entry-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.post-metro-title-inner {
  height: 100%;
}

.post-metro-content {
  color: #FFF;
}

.post-metro-entry-meta {
  font-size: 13px;
  font-weight: 400;
}
.post-metro-entry-meta .avatar {
  position: relative;
  margin-right: 7px;
}
.post-metro-entry-meta > span {
  color: white !important;
}

a.post-metro-container-entry-link {
  position: relative;
  z-index: 5;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
a.post-metro-container-entry-link:before {
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  z-index: 6;
  opacity: 0;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
a.post-metro-container-entry-link:hover:before {
  opacity: 0.666;
}
a.post-metro-container-entry-link:hover .post-metro-cover {
  -webkit-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-display-column.blog-layout-fullwidth .content-inner,
.blog-display-masonry.blog-layout-fullwidth .content-inner,
.blog-display-masonry2.blog-layout-fullwidth .content-inner,
.blog-display-grid2.blog-layout-fullwidth .content-inner,
.blog-display-grid3.blog-layout-fullwidth .content-inner {
  padding: 30px;
}

.entry-display-column .entry-inner {
  position: relative;
}

/* Blog  grid padding */
.blog-grid-padding-yes.blog-layout-fullwidth.blog-display-metro .content-inner, .blog-grid-padding-yes.blog-layout-fullwidth.blog-display-grid .content-inner, .blog-grid-padding-yes.blog-layout-fullwidth.blog-display-grid2 .content-inner, .blog-grid-padding-yes.blog-layout-fullwidth.blog-display-grid3 .content-inner, .blog-grid-padding-yes.blog-layout-fullwidth.blog-display-photo .content-inner {
  padding: 30px;
}

.blog-grid-padding-no.blog-layout-fullwidth.blog-display-masonry .content-inner, .blog-grid-padding-no.blog-layout-fullwidth.blog-display-masonry2 .content-inner, .blog-grid-padding-no.blog-layout-fullwidth.blog-display-metro .content-inner, .blog-grid-padding-no.blog-layout-fullwidth.blog-display-column .content-inner, .blog-grid-padding-no.blog-layout-fullwidth.blog-display-grid .content-inner, .blog-grid-padding-no.blog-layout-fullwidth.blog-display-grid2 .content-inner, .blog-grid-padding-no.blog-layout-fullwidth.blog-display-grid3 .content-inner, .blog-grid-padding-no.blog-layout-fullwidth.blog-display-photo .content-inner {
  padding: 0;
}

/* Blog filter adjustment */
.blog-layout-fullwidth.blog-grid-padding-yes #blog-filter {
  padding-top: 10px;
  padding-left: 0;
}
.blog-layout-fullwidth.blog-grid-padding-no #blog-filter-container {
  padding: 5px 0;
}
.blog-layout-fullwidth.blog-grid-padding-no #blog-filter {
  padding-top: 15px;
  padding-left: 15px;
  padding-bottom: 0;
}

/* Hide element for specific post format on specific display type */
.entry-display-standard.is-soundcloud .entry-thumbnail, .entry-display-standard.is-wolf-jplayer .entry-thumbnail, .entry-display-standard.is-wolf-playlist .entry-thumbnail, .entry-display-standard.is-wp-playlist .entry-thumbnail,
.entry-display-classic.is-soundcloud .entry-thumbnail,
.entry-display-classic.is-wolf-jplayer .entry-thumbnail,
.entry-display-classic.is-wolf-playlist .entry-thumbnail,
.entry-display-classic.is-wp-playlist .entry-thumbnail,
.entry-display-masonry.is-soundcloud .entry-thumbnail,
.entry-display-masonry.is-wolf-jplayer .entry-thumbnail,
.entry-display-masonry.is-wolf-playlist .entry-thumbnail,
.entry-display-masonry.is-wp-playlist .entry-thumbnail,
.entry-display-masonry2.is-soundcloud .entry-thumbnail,
.entry-display-masonry2.is-wolf-jplayer .entry-thumbnail,
.entry-display-masonry2.is-wolf-playlist .entry-thumbnail,
.entry-display-masonry2.is-wp-playlist .entry-thumbnail,
.entry-display-medium-image.is-soundcloud .entry-thumbnail,
.entry-display-medium-image.is-wolf-jplayer .entry-thumbnail,
.entry-display-medium-image.is-wolf-playlist .entry-thumbnail,
.entry-display-medium-image.is-wp-playlist .entry-thumbnail {
  display: none;
}

/* Title size */
.entry-display-masonry .entry-title,
.entry-display-masonry2 .entry-title,
.entry-display-column .entry-title,
.entry-display-grid .entry-title,
.entry-display-grid-2 .entry-title,
.entry-display-photo .entry-title,
.entry-display-metro .entry-title {
  font-size: 18px;
}

/* Title color */
.entry-display-grid .entry-title,
.entry-display-photo .entry-title,
.entry-display-metro .entry-title {
  color: white !important;
}

/* Padding */
.blog-grid-padding-yes.blog-display-grid #content, .blog-grid-padding-yes.blog-display-grid2 #content, .blog-grid-padding-yes.blog-display-grid3 #content, .blog-grid-padding-yes.blog-display-column #content, .blog-grid-padding-yes.blog-display-photo #content, .blog-grid-padding-yes.blog-display-metro #content, .blog-grid-padding-yes.blog-display-masonry #content, .blog-grid-padding-yes.blog-display-masonry2 #content {
  width: calc(100% + 20px );
  margin-left: -10px !important;
  margin-top: -10px;
}

.wpb-last-posts-padding-yes .entry-display-grid,
.wpb-last-posts-padding-yes .entry-display-grid2,
.wpb-last-posts-padding-yes .entry-display-grid3,
.wpb-last-posts-padding-yes .entry-display-column,
.wpb-last-posts-padding-yes .entry-display-photo,
.wpb-last-posts-padding-yes .entry-display-metro,
.wpb-last-posts-padding-yes .entry-display-masonry,
.wpb-last-posts-padding-yes .entry-display-masonry2,
.blog-grid-padding-yes .entry-display-grid,
.blog-grid-padding-yes .entry-display-grid2,
.blog-grid-padding-yes .entry-display-grid3,
.blog-grid-padding-yes .entry-display-column,
.blog-grid-padding-yes .entry-display-photo,
.blog-grid-padding-yes .entry-display-metro,
.blog-grid-padding-yes .entry-display-masonry,
.blog-grid-padding-yes .entry-display-masonry2 {
  padding: 10px;
}

/* Ajax loader */
#grid-ajax-loader {
  position: absolute;
  right: 0;
  top: 8px;
  display: block;
  width: 16px;
  height: 16px;
  opacity: 0;
}

/* Entry title
-----------------------------*/
.post-hide-title-text .post-header-container .post-title-container {
  display: none;
}

.post-hide-title-area .post-header-container {
  display: none;
}

.post-header-container {
  height: auto;
  width: 100%;
  position: relative;
  overflow: hidden !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  background-size: cover;
}
.post-header-container.post-header-parallax {
  background: none !important;
}

.post-header {
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}
.post-header .field {
  font-size: 18px;
  background: #FFF;
  max-width: 750px !important;
}

.parallax-window {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.menu-absolute .post-header-inner,
.menu-type-transparent .post-header-inner,
.menu-type-semi-transparent .post-header-inner,
.menu-type-semi-transparent-black .post-header-inner {
  padding-top: 80px;
}

.post-header-inner {
  width: 100%;
  display: table;
}

.post-header {
  padding: 50px 0 50px;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
  margin: 0 auto;
}

.post-title-container h1.post-title {
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1;
  font-size: 32px;
}
.post-title-container .subheading,
.post-title-container .category-description,
.post-title-container .post-title-date {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 0;
  display: block;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.category-label {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding: 1rem;
  line-height: 1;
  min-width: 9rem;
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.8rem;
  color: #fff;
}
.category-label a {
  color: white !important;
}

.post-title-container {
  position: relative;
  z-index: 999 !important;
}

.has-hero .post-header-container {
  color: #FFF;
}
.has-hero .breadcrumb {
  margin-bottom: 15px;
}
.has-hero .breadcrumb a {
  color: white !important;
}
.has-hero .post-title-container h1 {
  color: #fff;
}
.has-hero .post-title-container .subheading,
.has-hero .post-title-container .category-description {
  color: #FFF;
}
.has-hero .post-title-container .post-title-date a {
  color: white !important;
}
.has-hero .post-title-container .photos-search-header a {
  color: white !important;
}

.post-header-type-breadcrumb:not(.home) .post-header {
  text-align: left;
}
.post-header-type-breadcrumb:not(.home) .woocommerce-breadcrumb {
  display: none;
}

/* Entry meta
-----------------------------*/
.updated:not(.published) {
  display: none;
}

.entry-meta {
  margin-bottom: 10px;
  line-height: 1.8;
}
.entry-meta a {
  font-weight: normal;
  font-weight: 400;
}
.entry-meta .avatar {
  display: inline-block;
  position: relative;
  top: -2px;
  margin-right: 5px;
}
.entry-meta .avatar img {
  vertical-align: bottom;
}

footer.entry-meta {
  margin-top: 20px !important;
  padding-top: 20px !important;
  border-top-style: solid;
  border-top-width: 1px;
  margin-right: 8px;
}

.entry-meta a,
.posted-on a,
.edit-link a {
  font-weight: 400 !important;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  opacity: 0.8;
}

.author-meta {
  display: inline-block;
}

.edit-link {
  margin-top: 0;
  clear: both;
}

.entry-meta > span,
.wpb-entry-meta > span {
  display: inline;
  margin-right: 15px;
}

.sticky.format-standard .entry-meta .posted-on,
.sticky.format-audio .entry-meta .posted-on,
.sticky.format-chat .entry-meta .posted-on,
.sticky.format-image .entry-meta .posted-on,
.sticky.format-gallery .entry-meta .posted-on {
  display: none;
}

.taxonomy-description {
  text-align: center;
  display: block;
  margin-top: 1rem;
}

/* Entry content
-----------------------------*/
.sticky-post {
  background: #bc9321;
  font-size: 12px;
  display: inline-block;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  padding: 6px 8px;
  color: #FFF;
}

.entry-title {
  display: block;
}

.entry-header {
  margin-left: auto;
  margin-right: auto;
}
.entry-header .wp-video,
.entry-header iframe {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wolf-more-text {
  font-size: 19px;
  color: #bc9321;
}
.wolf-more-text:hover {
  opacity: .66;
}

.entry-thumbnail {
  text-align: center;
}
.entry-thumbnail a {
  display: block;
}
.entry-thumbnail a img {
  vertical-align: bottom;
}

.is-portfolio .entry-thumnail {
  margin-bottom: 0;
}

.entry-summary-inner p:first-child {
  margin-top: 0;
}

.single-video .entry-thumbnail {
  display: none;
}

.post-title-divider {
  border-top: 1px solid;
  display: block;
  max-width: 48px;
  margin: 15px auto 15px;
  opacity: 0.8;
}

.entry-content {
  position: relative;
  z-index: 0;
}

.entry-summary,
.entry-meta {
  position: relative;
  z-index: 2;
}

.is-blog .entry-header .fluid-video,
.is-blog .entry-header .flexslider,
.is-blog .entry-header .wolf-images-gallery,
.is-blog .entry-header .mejs-container,
.is-portfolio .entry-header .fluid-video,
.is-portfolio .entry-header .flexslider,
.is-portfolio .entry-header .wolf-images-gallery,
.is-portfolio .entry-header .mejs-container {
  margin-bottom: 0;
}
.is-blog .post-title-divider,
.is-portfolio .post-title-divider {
  margin: 25px 0 30px;
}
.is-blog .edit-link,
.is-portfolio .edit-link {
  margin-right: 20px !important;
}
.is-blog .more-container,
.is-portfolio .more-container {
  margin-bottom: 0;
}
.is-blog .more-container .more-link,
.is-portfolio .more-container .more-link {
  font-size: 13px;
}

.entry-content,
.comment-content {
  word-wrap: break-word;
}
.entry-content ul, .entry-content ol,
.comment-content ul,
.comment-content ol {
  margin-bottom: 1.5em;
}

.entry-content figure,
.enty-summary figure {
  margin: 0 auto;
  max-width: 100% !important;
}

.more-link {
  margin-left: 0;
}

/* Single page */
.page:not(.is-portfolio):not(.is-discography) .entry-thumbnail {
  margin-bottom: 20px;
}

/* Wordpress mejs player */
.mejs-container .mejs-controls * {
  outline: none;
}
.mejs-container .mejs-controls .mejs-time-rail .mejs-time-current,
.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  background: #bc9321 !important;
}

/* Entry formats
-----------------------------*/
/* Post formats common style */
.format-audio .entry-header {
  max-width: 750px;
}

.format-video .entry-header {
  max-width: 960px;
}
.format-video .entry-header .entry-thumbnail {
  display: none;
}

.is-instagram .entry-header,
.is-tweet .entry-header {
  max-width: 500px;
}

/*.is-blog{
	.format-audio{
		&.is-wolf-jplayer{
			.wolf-jplayer-playlist{
				margin-bottom: 0;
			}
		}

		&.is-wolf-playlist{
			.wpm-playlist{
				margin-bottom: 0!important;
			}
		}
	}
}*/
.is-tweet .twitter-tweet {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.is-instagram iframe {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.featured-quote {
  text-align: center;
}

.format-status .entry-avatar .avatar {
  float: none;
  text-align: center;
  margin: 0 auto 8px;
}

.single-post .format-image .entry-header,
.single-post .format-gallery .entry-header {
  max-width: 1600px;
}
.single-post .format-standard .entry-header,
.single-post .format-video .entry-header {
  max-width: 1140px;
}
.single-post .format-aside .entry-content,
.single-post .format-status .entry-content,
.single-post .format-link .entry-content,
.single-post .format-chat .entry-content {
  max-width: 750px;
}

/* Entry nav
-----------------------------*/
/* Single Post Nav */
.nav-single .nav-index {
  display: none;
  text-align: center;
  vertical-align: middle;
}
.nav-single .nav-has-bg {
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
}
.nav-single .nav-has-bg .nav-label {
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}
.nav-single .nav-has-bg .nav-bg-overlay {
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  z-index: 0;
  opacity: 0.5;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.nav-single .nav-index,
.nav-single .nav-previous,
.nav-single .nav-next {
  padding: 0;
}
.nav-single .nav-index a,
.nav-single .nav-previous a,
.nav-single .nav-next a {
  padding: 0 2rem;
  position: relative;
  display: block;
  width: 100%;
  z-index: 10;
}
.nav-single .nav-index:hover .nav-bg-overlay,
.nav-single .nav-previous:hover .nav-bg-overlay,
.nav-single .nav-next:hover .nav-bg-overlay {
  opacity: 0.9;
}
.nav-single .nav-index:hover.nav-has-bg,
.nav-single .nav-previous:hover.nav-has-bg,
.nav-single .nav-next:hover.nav-has-bg {
  background: #000;
}
.nav-single .nav-index:hover.nav-has-bg .nav-label,
.nav-single .nav-previous:hover.nav-has-bg .nav-label,
.nav-single .nav-next:hover.nav-has-bg .nav-label {
  color: #fff;
}
.nav-single .nav-previous {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-single .nav-next {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-single {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 auto 0;
  font-size: 1.6rem;
  display: table;
  width: 100%;
  max-width: none;
  position: relative;
}
.nav-single .nav-previous {
  text-align: left;
}
.nav-single .nav-next {
  text-align: right;
}
.nav-single .nav-previous,
.nav-single .nav-next {
  overflow: hidden;
  position: relative;
  width: 100%;
  vertical-align: middle;
  height: 100%;
  padding: 3rem 1.5rem;
}

.nav-label {
  text-transform: uppercase;
  width: 100%;
  display: block;
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
}

.page-links {
  text-align: center;
}

body.blog-navigation-standard .nav-single {
  margin: 2em auto 0;
}
body.blog-navigation-standard .nav-single .nav-previous a,
body.blog-navigation-standard .nav-single .nav-next a {
  padding: 0 2rem;
}

body.blog-navigation-both .nav-single .nav-previous a,
body.blog-navigation-both .nav-single .nav-next a {
  -webkit-transition: .2s ease;
  transition: .2s ease;
}
body.blog-navigation-both .nav-single .nav-previous a:hover {
  margin-left: -3px;
}
body.blog-navigation-both .nav-single .nav-next a:hover {
  margin-left: 3px;
}

/* Entry single
-----------------------------*/
.single .content-wrapper {
  padding-bottom: 0;
}
.single footer.entry-meta {
  border: none;
}
.single .entry-meta {
  font-size: 13px;
}
.single .post-title-date {
  font-size: 13px;
}
.single article.post {
  padding-top: 50px;
}
.single article.post.post-no-padding-top {
  padding-top: 0;
}
.single.single-post-layout-sidebar .content-wrapper {
  padding-top: 50px;
}
.single.single-post-layout-sidebar article.post {
  padding-top: 0 !important;
}
.single .entry-header {
  max-width: 750px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.single .entry-header .fluid-video {
  margin-bottom: 0;
}
.single .entry-header-inner,
.single .entry-thumbnail {
  display: inline-block;
  width: auto;
}
.single.single-format-gallery .entry-header-inner, .single.single-format-audio .entry-header-inner, .single.single-format-video .entry-header-inner {
  display: block;
  width: 100%;
}
.single.single-format-gallery .entry-header-inner .flexslider, .single.single-format-audio .entry-header-inner .flexslider, .single.single-format-video .entry-header-inner .flexslider {
  margin-bottom: 0;
}
.single .entry-content,
.single .entry-meta {
  zoom: 1;
  width: 92%;
  margin: 0 auto;
  max-width: 1140px;
}
.single .entry-content:before, .single .entry-content:after,
.single .entry-meta:before,
.single .entry-meta:after {
  content: "";
  display: table;
}
.single .entry-content:after,
.single .entry-meta:after {
  clear: both;
}
.single.single-format-aside .entry-content, .single.single-format-status .entry-content {
  text-align: center;
}
.single .entry-meta {
  margin-top: 20px;
  text-align: center;
}

.single:not(.single-product) .entry-content > p:first-of-type {
  margin-top: 0;
}

/* newsletter signup form */
.newsletter-signup .wpb-mailchimp-form-container {
  width: 92%;
  max-width: 750px;
  margin: 60px auto;
}
.newsletter-signup .wpb-mailchimp-form-container.wpb-mailchimp-has-bg input[type=submit] {
  background: none;
  border-color: white;
  color: white;
}
.newsletter-signup .wpb-mailchimp-form-container.wpb-mailchimp-has-bg input[type=submit]:hover {
  background: #bc9321;
  border-color: #bc9321;
  color: white !important;
}
.newsletter-signup .wpb-mailchimp-size-large {
  font-size: 14px;
}

.single-post .content-wrapper {
  padding-top: 0;
}

.post-hide-featured-image .entry-header .entry-thumbnail {
  display: none;
}

/* Single post layouts */
.single-post-layout-small-width .content-wrapper,
.single-post-layout-full-width .content-wrapper {
  max-width: none;
  width: 100%;
}

.single-post-layout-small-width .entry-content,
.single-post-layout-small-width .entry-meta {
  zoom: 1;
  width: 92%;
  margin: 0 auto;
  max-width: 1140px;
  max-width: 750px;
}
.single-post-layout-small-width .entry-content:before, .single-post-layout-small-width .entry-content:after,
.single-post-layout-small-width .entry-meta:before,
.single-post-layout-small-width .entry-meta:after {
  content: "";
  display: table;
}
.single-post-layout-small-width .entry-content:after,
.single-post-layout-small-width .entry-meta:after {
  clear: both;
}

/* Full width */
.single-post-layout-full-width .entry-header {
  max-width: none;
}
.single-post-layout-full-width .entry-inner .entry-thumbnail img {
  width: 100%;
}
.single-post-layout-full-width .entry-content {
  max-width: none;
  width: 100%;
}
.single-post-layout-full-width .entry-content p:not(.flex-caption), .single-post-layout-full-width .entry-content h1, .single-post-layout-full-width .entry-content h2, .single-post-layout-full-width .entry-content h3, .single-post-layout-full-width .entry-content h4, .single-post-layout-full-width .entry-content h5, .single-post-layout-full-width .entry-content h6, .single-post-layout-full-width .entry-content abbr[title], .single-post-layout-full-width .entry-content dfn,
.single-post-layout-full-width .entry-content pre, .single-post-layout-full-width .entry-content code, .single-post-layout-full-width .entry-content ol, .single-post-layout-full-width .entry-content ul, .single-post-layout-full-width .entry-content address, .single-post-layout-full-width .entry-content code,
.single-post-layout-full-width .entry-content kbd, .single-post-layout-full-width .entry-content table,
.single-post-layout-full-width .entry-content samp, .single-post-layout-full-width .entry-content dd, .single-post-layout-full-width .entry-content dt, .single-post-layout-full-width .entry-content dl, .single-post-layout-full-width .entry-content hr, .single-post-layout-full-width .entry-content fieldset,
.single-post-layout-full-width .entry-content .gist,
.single-post-layout-full-width .entry-content #wolf-recipe-box,
.single-post-layout-full-width .entry-content .wr-details,
.single-post-layout-full-width .entry-content .wr-note,
.single-post-layout-full-width .entry-content .wr-actions,
.single-post-layout-full-width .entry-content .author-info {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
}
.single-post-layout-full-width .entry-content blockquote {
  width: 92%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.single-post-layout-full-width .entry-content blockquote p {
  max-width: none !important;
}

/* Split layout */
.single-work-layout-split .content-wrapper,
.single-post-layout-split .content-wrapper {
  max-width: none;
  width: 100%;
}
.single-work-layout-split .panel-left,
.single-post-layout-split .panel-left {
  margin-bottom: 30px;
}
.single-work-layout-split article.post,
.single-post-layout-split article.post {
  padding-top: 0;
}
.single-work-layout-split .related-posts,
.single-post-layout-split .related-posts {
  padding-left: 20px;
  padding-right: 20px;
}
.single-work-layout-split .related-post-container,
.single-post-layout-split .related-post-container {
  padding: 10px;
}
.single-work-layout-split .related-post-inner img,
.single-post-layout-split .related-post-inner img {
  -webkit-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  transform: scale(1) !important;
}

/* Entry author info
-----------------------------*/
.author-info {
  margin: 50px auto;
  text-align: center;
  max-width: 64rem;
  opacity: 0.8;
}

.archive.author .author-info {
  margin-bottom: 4rem;
}

.author-avatar {
  margin-top: 20px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.author-avatar .avatar {
  margin: 0 auto 1.5rem;
  width: 80px;
}
.author-avatar a {
  margin: 0 5px 1.5rem;
  font-size: 16px;
  color: #666;
}

.author-name {
  font-size: 16px;
  margin-bottom: 0;
}

.author-socials {
  margin-top: 15px;
}

.author-socials a {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
  margin-right: 14px;
}
.author-socials a:hover {
  color: #333;
}

.author-description p {
  font-size: 0.85em;
}
.author-description h5 {
  font-size: inherit;
  line-height: 1.5;
}

.author-page-link {
  display: block;
  margin-top: 8px;
}

/* Entry related posts
-----------------------------*/
.related-post-container {
  z-index: 0;
  position: relative;
  overflow: hidden;
}
.related-post-container .related-post-inner {
  background: #000;
  position: relative;
  overflow: hidden;
}
.related-post-container .entry-meta {
  margin-top: 0;
}
.related-post-container img {
  width: 100%;
  height: auto;
  z-index: 0;
  position: relative;
  display: block;
  vertical-align: bottom;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.related-post-container .posted-on {
  display: none;
  margin: 0;
  color: #FFF;
}
.related-post-container .entry-title {
  margin-bottom: 0;
}
.related-post-container:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.related-post-container:hover .related-post-overlay {
  background: rgba(0, 0, 0, 0.66);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.related-post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.44);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.related-post-caption {
  margin-top: 0;
  letter-spacing: 0;
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.related-post-caption .entry-title,
.related-post-caption .entry-subheading {
  color: #fff;
}
.related-post-caption .entry-subheading {
  margin-right: 0;
  margin-left: 0;
}

/* Post archives
-----------------------------*/
.archives-search {
  margin-bottom: 80px !important;
}
.archives-search input[type="search"] {
  width: 100%;
  margin: 0 auto;
  padding: 10px 15px;
  font-size: 24px;
  font-weight: 700;
}

.page-post-archives .most-used-tags {
  text-align: center;
  margin-top: 20px;
}

.tag-list li {
  list-style-type: none;
  line-height: 2;
}

.tag-list h2,
.archives-list h2 {
  font-size: 24px;
}
.tag-list ul,
.archives-list ul {
  padding-left: 0;
}

.archives-list ul li {
  list-style-type: none;
  margin-left: 0;
  margin-bottom: 10px;
}
.archives-list ul li a:before {
  font-size: 11px;
  font-family: dashicons;
  content: "\f345";
  margin-right: 8px;
  margin-top: 3px;
}

/* Share
-----------------------------*/
/* Share
-----------------------------------------------*/
.share-box {
  text-align: center;
  margin: 2em auto;
  max-width: 960px;
}

.share-box-title {
  display: block;
  margin: 1.4rem 0 2rem;
}

.share-title {
  line-height: 1;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.share-link {
  text-align: center;
  letter-spacing: 1px;
  font-size: 11px;
  -webkit-transition: opacity .1s;
  transition: opacity .1s;
  color: white !important;
  display: inline-block;
  border: none;
  padding: 9px 15px;
  margin: 0 2px 8px;
  line-height: 1.5 !important;
  /*.dashicons, .fa{
  	font-size: 12px;
  	line-height: 19px;
  	width: auto;
  }*/
}
.share-link:hover {
  opacity: 0.8;
}
.share-link:before {
  font-size: 12px;
  position: relative;
}

.share-link-text {
  margin-left: 5px;
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 12px;
}

.share-link-facebook {
  background: #3b5997 !important;
}

.share-link-twitter {
  background: #41b7d8 !important;
}

.share-link-pinterest {
  background: #cb2027 !important;
}

.share-link-google {
  background: #d64937 !important;
}

.share-link-tumblr {
  background: #2c4762 !important;
}

.share-link-stumbleupon {
  background: #eb4923 !important;
}

.share-link-linkedin {
  background: #007bb6 !important;
}

.share-link-email {
  background: grey !important;
}

.share-link-pinterest .share-link-text,
.share-link-google .share-link-text,
.share-link-tumblr .share-link-text,
.share-link-stumbleupon .share-link-text,
.share-link-linkedin .share-link-text,
.share-link-email .share-link-text {
  display: none;
}

/* Dashicons
-----------------------------*/
/* Force dashicons font */
.dashicons,
.dashicons-before:before,
[class^="dashicons-"]:before, [class*=" dashicons-"]:before {
  font-family: Dashicons;
}

/* Expand Icon */
.zoom {
  position: relative !important;
  display: inline-block !important;
  width: auto;
  max-width: 100%;
}
.zoom img {
  vertical-align: bottom;
  margin-bottom: 0 !important;
}
.zoom:before {
  vertical-align: top;
  content: "\f065";
  font-family: 'FontAwesome';
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 25px;
  height: 25px;
  color: #fff;
  font-size: 18px !important;
  z-index: 3;
  opacity: 0.5;
}

.format-link .post-grid-entry-title:before,
.format-link .entry-title a:before {
  margin-right: 10px;
  position: relative;
  top: 0;
  font-size: inherit;
  font-size: 0.8em !important;
  display: inline-block;
}

.full-size-link a:before {
  content: "\f211";
  margin-right: 5px;
  font-family: 'dashicons';
  position: relative;
  top: 2px;
}

.comment-awaiting-moderation:before {
  content: "\f463";
  font-family: 'dashicons';
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.posted-on a:before {
  font-family: 'dashicons';
  content: "\f469";
  margin-right: 3px;
  top: 2px;
  position: relative;
}

.featured-post:before {
  content: "\f109";
  font-family: 'dashicons';
  margin-right: 5px;
  top: 2px;
  position: relative;
}

.permalink a:before {
  font-family: 'dashicons';
  content: "\f103";
  margin-right: 5px;
  top: 2px;
  position: relative;
}

.comments-link a:before,
.comment-count a:before {
  font-family: 'line-icons';
  content: "\e614";
  margin-right: 5px;
  top: 1px;
  position: relative;
}

/*.entry-meta .author a {
	&:before{
		font-family: 'dashicons';
		content: "\f110";
		margin-right: 5px;
		top: 3px;
		position: relative;
	}
}
*/
.work-link:before {
  font-family: 'dashicons';
  content: "\f242";
  margin-right: 5px;
  top: 3px;
  position: relative;
}

/*.bypostauthor .fn{
	&:before{
		display: inline-block;
		font-family: 'dashicons';
		content: "\f155";
		margin-right: 0.8rem;
		top: 3px;
		position: relative;
	}
}
*/
.categories-links a:first-child:before {
  font-family: 'FontAwesome';
  content: "\f115";
  margin-right: 5px;
  position: relative;
  top: 0;
}

.tags-links a:first-child:before {
  font-family: 'line-icons';
  content: "\e60c";
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.edit-link a:before {
  font-family: 'FontAwesome';
  content: "\f044";
  top: 1px;
  margin-right: 5px;
  position: relative;
}

.work-client:before {
  font-family: 'Dashicons';
  content: "\f110";
  margin-right: 5px;
  position: relative;
  top: 0;
}

.work-client-url:before {
  font-family: 'FontAwesome';
  content: "\f08e";
  margin-right: 5px;
  position: relative;
  top: 0;
}

.format-quote blockquote:before {
  text-align: center;
  display: block;
  font-style: normal;
  font-family: 'dashicons';
  content: "\f122";
  margin-right: 5px;
  position: relative;
  font-size: 1.2em !important;
  top: -2px;
  opacity: 0.8;
}

/*.format-aside .entry-meta .posted-on a {
	&:before{
		font-family: 'dashicons';
		content: "\f123";
	}
}

.format-chat .entry-meta .posted-on a {
	&:before{
		font-family: 'dashicons';
		content: "\f125";
		margin-right: 5px;
	}
}*/
/*.icon-status,
.format-status .entry-meta .posted-on a {
	&:before{
		font-family: 'dashicons';
		content: "\f130";
	}
}*/
/*.entry-meta .posted-on a,
.entry-meta .published.posted-on,
.post-title-date{
	&:before{
		font-family: 'dashicons';
		content: "\f469";
		margin-right: 3px;
		top: 2px;
		position: relative;
	}
}*/
.views-meta:before {
  font-family: 'FontAwesome';
  content: "\f06e";
  margin-right: 5px;
  position: relative;
  top: 0;
}

.likes-meta {
  cursor: pointer;
}
.likes-meta:before {
  font-family: 'FontAwesome';
  content: "\f08a";
  margin-right: 5px;
  position: relative;
  top: 0;
}
.likes-meta.liked {
  cursor: default;
  color: red;
}
.likes-meta.liked:before {
  content: "\f004";
}

.icon-status:before {
  font-family: 'dashicons';
  content: "\f130";
  margin-right: 5px;
  position: relative;
  top: -2px;
}

/* Infinitescroll
-----------------------------*/
.wolf-volume {
  display: none !important;
}

body.is-infinitescroll .paging-navigation {
  height: 0;
  padding: 0;
  display: none;
}
body.is-infinitescroll .wolf-volume {
  display: none !important;
}

/* Infinite scroll loading */
#infscr-loading {
  font-size: 1.6rem;
  background: #bc9321;
  bottom: -2rem;
  position: absolute;
  z-index: 100;
  width: 365px;
  height: 40px;
  line-height: 37px;
  left: 50%;
  margin-left: -175px;
  color: white;
  text-align: center;
  vertical-align: middle;
}
#infscr-loading > img {
  display: none !important;
}

.trigger-container {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.trigger {
  margin: 15px auto;
  position: relative;
  font-size: 13px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  background-color: #bc9321 !important;
}
.trigger a {
  color: white !important;
}
.trigger:hover {
  opacity: 0.8;
}

.trigger-spinner {
  position: absolute;
  top: 8px;
  right: 25px;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0 auto;
  margin-left: 5px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: scaleout 1.0s infinite ease-in-out;
  animation: scaleout 1.0s infinite ease-in-out;
  opacity: 0;
}

.trigger-loading .trigger-spinner {
  opacity: 1 !important;
}

@-webkit-keyframes scaleout {
  0% {
    -webkit-transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes scaleout {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	21. Gallery
*/
/* to prevent flickering */
.lazy-hidden {
  opacity: 0;
}

.lazy-loaded {
  opacity: 1 !important;
}

/* Fix for Safari issue not removing lazy-hidden class */
.is-apple .lazy-hidden {
  opacity: 1 !important;
}

.entry-content .wolf-images-gallery {
  margin-bottom: 30px;
}

.wolf-images-gallery {
  position: relative;
}
.wolf-images-gallery.padding .block {
  padding: 6px 6px;
}
.wolf-images-gallery .image-item {
  display: block;
}
.wolf-images-gallery .image-item img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: block;
  vertical-align: bottom;
  width: 100%;
  opacity: 1;
}

.mosaic-gallery {
  background: #000;
}
.mosaic-gallery .image-item {
  float: left;
  position: relative;
  overflow: hidden;
}
.mosaic-gallery .image-item img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}
.mosaic-gallery .image-item:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.mosaic-gallery .image-item:nth-child(6n+1), .mosaic-gallery .image-item:nth-child(6n+2), .mosaic-gallery .image-item:nth-child(6n+6) {
  width: 50%;
}
.mosaic-gallery .image-item:nth-child(6n+3), .mosaic-gallery .image-item:nth-child(6n+4), .mosaic-gallery .image-item:nth-child(6n+5) {
  width: 25%;
}
.mosaic-gallery .image-item:nth-child(6n+5), .mosaic-gallery .image-item:nth-child(6n+6) {
  margin-top: -25%;
}
.mosaic-gallery .image-item:nth-child(6n+6) {
  margin-left: 25%;
}

.simple-gallery img {
  width: 100%;
}

/* Images Gallery */
.wolf-images-gallery a.image-item,
.masonry-gallery a.image-item,
.wolf-single-image a.image-item {
  overflow: hidden;
}
.wolf-images-gallery.hover-default a.image-item img, .wolf-images-gallery.hover-greyscale a.image-item img, .wolf-images-gallery.hover-to-greyscale a.image-item img, .wolf-images-gallery.hover-scale-greyscale a.image-item img, .wolf-images-gallery.hover-scale-to-greyscale a.image-item img,
.masonry-gallery.hover-default a.image-item img,
.masonry-gallery.hover-greyscale a.image-item img,
.masonry-gallery.hover-to-greyscale a.image-item img,
.masonry-gallery.hover-scale-greyscale a.image-item img,
.masonry-gallery.hover-scale-to-greyscale a.image-item img,
.wolf-single-image.hover-default a.image-item img,
.wolf-single-image.hover-greyscale a.image-item img,
.wolf-single-image.hover-to-greyscale a.image-item img,
.wolf-single-image.hover-scale-greyscale a.image-item img,
.wolf-single-image.hover-scale-to-greyscale a.image-item img {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.wolf-images-gallery.hover-greyscale a.image-item img, .wolf-images-gallery.hover-scale-greyscale a.image-item img,
.masonry-gallery.hover-greyscale a.image-item img,
.masonry-gallery.hover-scale-greyscale a.image-item img,
.wolf-single-image.hover-greyscale a.image-item img,
.wolf-single-image.hover-scale-greyscale a.image-item img {
  -webkit-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
}
.wolf-images-gallery.hover-greyscale a.image-item:hover img, .wolf-images-gallery.hover-greyscale a.image-item:focus img, .wolf-images-gallery.hover-scale-greyscale a.image-item:hover img, .wolf-images-gallery.hover-scale-greyscale a.image-item:focus img,
.masonry-gallery.hover-greyscale a.image-item:hover img,
.masonry-gallery.hover-greyscale a.image-item:focus img,
.masonry-gallery.hover-scale-greyscale a.image-item:hover img,
.masonry-gallery.hover-scale-greyscale a.image-item:focus img,
.wolf-single-image.hover-greyscale a.image-item:hover img,
.wolf-single-image.hover-greyscale a.image-item:focus img,
.wolf-single-image.hover-scale-greyscale a.image-item:hover img,
.wolf-single-image.hover-scale-greyscale a.image-item:focus img {
  filter: none;
  /*Applies to FF + IE */
  -webkit-filter: grayscale(0);
  opacity: 1;
}
.wolf-images-gallery.hover-to-greyscale a.image-item:hover img, .wolf-images-gallery.hover-to-greyscale a.image-item:focus img, .wolf-images-gallery.hover-scale-to-greyscale a.image-item:hover img, .wolf-images-gallery.hover-scale-to-greyscale a.image-item:focus img,
.masonry-gallery.hover-to-greyscale a.image-item:hover img,
.masonry-gallery.hover-to-greyscale a.image-item:focus img,
.masonry-gallery.hover-scale-to-greyscale a.image-item:hover img,
.masonry-gallery.hover-scale-to-greyscale a.image-item:focus img,
.wolf-single-image.hover-to-greyscale a.image-item:hover img,
.wolf-single-image.hover-to-greyscale a.image-item:focus img,
.wolf-single-image.hover-scale-to-greyscale a.image-item:hover img,
.wolf-single-image.hover-scale-to-greyscale a.image-item:focus img {
  -webkit-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
  opacity: 1;
}
.wolf-images-gallery.hover-scale-greyscale a.image-item img, .wolf-images-gallery.hover-scale-to-greyscale a.image-item img,
.masonry-gallery.hover-scale-greyscale a.image-item img,
.masonry-gallery.hover-scale-to-greyscale a.image-item img,
.wolf-single-image.hover-scale-greyscale a.image-item img,
.wolf-single-image.hover-scale-to-greyscale a.image-item img {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.wolf-images-gallery.hover-scale-greyscale a.image-item:hover img, .wolf-images-gallery.hover-scale-greyscale a.image-item:focus img, .wolf-images-gallery.hover-scale-to-greyscale a.image-item:hover img, .wolf-images-gallery.hover-scale-to-greyscale a.image-item:focus img,
.masonry-gallery.hover-scale-greyscale a.image-item:hover img,
.masonry-gallery.hover-scale-greyscale a.image-item:focus img,
.masonry-gallery.hover-scale-to-greyscale a.image-item:hover img,
.masonry-gallery.hover-scale-to-greyscale a.image-item:focus img,
.wolf-single-image.hover-scale-greyscale a.image-item:hover img,
.wolf-single-image.hover-scale-greyscale a.image-item:focus img,
.wolf-single-image.hover-scale-to-greyscale a.image-item:hover img,
.wolf-single-image.hover-scale-to-greyscale a.image-item:focus img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.wolf-images-gallery.hover-default a.image-item:hover img, .wolf-images-gallery.hover-default a.image-item:focus img,
.masonry-gallery.hover-default a.image-item:hover img,
.masonry-gallery.hover-default a.image-item:focus img,
.wolf-single-image.hover-default a.image-item:hover img,
.wolf-single-image.hover-default a.image-item:focus img {
  opacity: 0.8;
}

.wolf-images-gallery.padding {
  margin-left: -5px;
  width: calc(100% + 10px );
}

.gallery-1-columns .block {
  float: left;
  width: 100%;
}

.gallery-2-columns .block {
  float: left;
  width: 50%;
}

.gallery-3-columns .block {
  float: left;
  width: 33.33333%;
}

.gallery-4-columns .block {
  float: left;
  width: 25%;
}

.gallery-5-columns .block {
  float: left;
  width: 20%;
}

.gallery-6-columns .block {
  float: left;
  width: 16.66667%;
}

.gallery-7-columns .block {
  float: left;
  width: 14.28571%;
}

.gallery-8-columns .block {
  float: left;
  width: 12.5%;
}

.gallery-9-columns .block {
  float: left;
  width: 11.11111%;
}

.gallery-1-columns .block {
  float: none;
  margin-bottom: 10px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	22. Widgets
*/
.widget-title {
  border: none;
}

.widget-area .wolf-jplayer-playlist {
  margin-bottom: 0;
}

.widget-title {
  font-size: 16px;
  margin-top: 0;
  word-break: break-word;
  padding: 0px 0px 20px 0px;
  margin: 0px 0px 20px 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.widget {
  font-size: 14px;
  margin-bottom: 50px;
}
.widget a {
  font-weight: 400 !important;
  font-weight: 500 !important;
  opacity: .66;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
.widget a:hover {
  opacity: 1;
}
.widget:first-child {
  margin-left: 0;
}
.widget:last-child {
  margin-right: 0;
}
.widget ul {
  padding: 0;
  margin: 0;
}
.widget ul li {
  margin-left: 1.2em;
  margin-bottom: 10px;
}
.widget input[type="submit"],
.widget input[type="text"],
.widget input[type="email"],
.widget input[type="search"],
.widget input[type="password"],
.widget input[name="post_password"] {
  width: 100% !important;
}
.widget p {
  margin-top: 0;
  margin-bottom: 1em;
}

.tagcloud a {
  font-size: 14px !important;
  display: inline-block;
  background: #bc9321;
  padding: 0 8px 1px;
  line-height: 2;
  margin-bottom: 5px;
  border-radius: 3px;
  opacity: 1 !important;
}
.tagcloud a:hover {
  opacity: 0.9 !important;
}

.widget_product_tag_cloud.widget .tagcloud a,
.widget_tag_cloud.widget .tagcloud a {
  color: white !important;
}

/*Widget list */
.widget_archive ul li,
.widget_categories ul li,
.widget_meta ul li,
.widget_product_categories ul li,
.widget_nav_menu ul li {
  list-style-type: none;
  margin-left: 0;
}
.widget_archive ul li a:before,
.widget_categories ul li a:before,
.widget_meta ul li a:before,
.widget_product_categories ul li a:before,
.widget_nav_menu ul li a:before {
  font-size: 11px;
  font-family: dashicons;
  content: "\f345";
  margin-right: 8px;
  margin-top: 3px;
}

.widget_nav_menu ul.sub-menu {
  margin-top: 10px !important;
  margin-left: 15px;
}

/* Last posts */
.widget_recent_entries ul li {
  margin-bottom: 10px;
}
.widget_recent_entries ul li a {
  font-size: 15px;
}
.widget_recent_entries .post-date {
  display: block;
  font-size: 12px;
}

.wolf_widget_recent_posts .widget-entry-title {
  font-size: 15px;
}

/* RSS widget */
.widget_rss .widget-title .rsswidget img {
  position: relative;
  top: 2px;
}
.widget_rss ul li {
  margin-bottom: 15px;
}
.widget_rss .rsswidget {
  font-weight: 700;
}

.sidebar-footer {
  color: #FFF;
}

.sidebar-inner {
  padding: 2em 0;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	23. Footer
*/
/* Hide footer */
.post-hide-footer .site-footer,
.post-hide-footer .music-social-icons-container {
  display: none;
}

/* Footer wide */
.footer-layout-wide .sidebar-footer-inner {
  max-width: none;
}

/* Widget area */
.sidebar-footer-inner {
  padding: 2em 0;
}
.sidebar-footer-inner a {
  color: #FFF;
}
.sidebar-footer-inner .widget-title {
  color: #FFF;
  border: none;
  padding: 0;
}
.sidebar-footer-inner .widget-content {
  line-height: 1.8;
}
.sidebar-footer-inner .wolf-twitter-widget .wolf-tweet-text a {
  font-weight: 700 !important;
  opacity: 1;
}
.sidebar-footer-inner .wolf-twitter-widget .wolf-tweet-text a:hover {
  opacity: 0.66;
}

.sidebar-footer {
  background: #161616;
}

body.wolf .sidebar-footer .widget a {
  color: white !important;
}
body.wolf .sidebar-footer .widget a:hover {
  color: white !important;
}

.credits,
.bottom-social-links {
  text-align: center;
}

.credits {
  color: #fff;
}
.credits a {
  color: white !important;
}
.credits a:hover {
  opacity: 1;
}

/* Copyright */
.site-infos {
  padding: 10px 30px 30px;
  font-size: 1.3rem;
  line-height: 2;
  background: #000;
  color: #888;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
.site-infos a {
  color: #888;
}
.site-infos a:hover {
  opacity: 1;
}
.site-infos a, .site-infos span {
  opacity: 0.6;
}
.site-infos .wpb-socials-container {
  padding: 0;
}
.site-infos .wpb-social {
  color: #FFF;
  font-size: 18px;
  opacity: 1;
  margin: 5px;
}
.site-infos .tertiary-navigation {
  text-align: center;
}

/* Back to top link */
#back-to-top {
  display: none;
  width: 30px;
  height: 30px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  text-indent: -9999px;
  color: #fff;
  background: #bc9321;
  border: 2px solid #bc9321;
}
#back-to-top:hover {
  background: none !important;
  color: #bc9321 !important;
}
#back-to-top:before {
  text-indent: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'dashicons';
  content: "\f343";
  font-weight: 400 !important;
  text-decoration: none !important;
  line-height: 1;
  top: 3px;
  left: 4px;
  font-size: 18px;
  position: absolute;
}

body.scroll-to-top-arrow-style-round #back-to-top {
  border-radius: 9999em;
}

body.is-wpm-bar-player #back-to-top {
  bottom: 70px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	24. Comments
*/
/*-----------------------------------------------------------------------------------*/
/*  Wordpress comments
/*-----------------------------------------------------------------------------------*/
#respond {
  margin: 1.5em auto;
}

.comment-list,
.comment-list .children {
  padding: 0;
}
.comment-list li,
.comment-list .children li {
  list-style-type: none !important;
}
.comment-list li #reply-title,
.comment-list li #respond #commentform,
.comment-list li #respond iframe,
.comment-list .children li #reply-title,
.comment-list .children li #respond #commentform,
.comment-list .children li #respond iframe {
  width: 100%;
}

.comment-list .children {
  margin-left: 8%;
}

.comment-list > li:after,
.comment-list .children > li:before {
  height: 0.4rem;
  background: rgba(0, 0, 0, 0.05);
  content: "";
  display: block;
  width: 100%;
}

.comment-list > li:last-child:after {
  display: none;
}

.comment {
  padding: 1.5em 0;
}

.comment-author {
  max-width: 8rem;
}

.comment .avatar {
  display: block;
  margin-bottom: 0.8em;
}

.comment-reply-title, #cancel-comment-reply-link {
  display: inline;
}

#cancel-comment-reply-link {
  float: right;
}

.comment-reply-link {
  font-style: normal;
  font-weight: 700;
}

.comment-meta .fn, .comment-meta .fn a {
  font-style: normal;
  font-weight: 700;
}

.comment-reply-link {
  color: #bc9321;
}

cite.fn {
  display: block;
}

cite.fn:before {
  display: none;
}

.no-avatars .comment-author {
  float: none;
  margin: 0 0 0.5em;
  max-width: 100%;
}

.no-avatars .comment-meta,
.no-avatars .comment-content,
.no-avatars .reply {
  width: 100%;
}

.comment-list .edit-link {
  margin-left: 2rem;
}

.comment-meta,
.comment-meta a {
  margin-bottom: 1rem;
}

.ping-meta {
  line-height: 2;
}

.no-comments {
  text-align: center;
}

.comments-title {
  padding-top: 1em;
}

.trackback p, .pingback p {
  margin-top: 1.618rem;
}

.comments-area {
  zoom: 1;
  width: 92%;
  margin: 0 auto;
  max-width: 1140px;
  font-size: 15px;
  max-width: 750px;
  margin: 3em auto 4em;
}
.comments-area:before, .comments-area:after {
  content: "";
  display: table;
}
.comments-area:after {
  clear: both;
}
.comments-area:empty {
  visibility: hidden;
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.page-sidebar-left .comments-area,
.page-sidebar-right .comments-area {
  width: 100%;
}

#commentform {
  padding-top: 0;
}
#commentform p {
  margin-bottom: 1em;
}

textarea#comment {
  height: 80px;
}

.comment-reply-link {
  color: #bc9321;
}

.comment-content p {
  margin-top: 0;
  margin-bottom: 10px;
}

.comments-title {
  font-size: 1.2em;
}

.avatar {
  -o-border-radius: 50%;
  border-radius: 50%;
}

.bypostauthor .avatar {
  border: 3px solid #bc9321;
}

.comment-meta {
  font-size: 0.8em;
}
.comment-meta cite.fn {
  font-size: 1.3em;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	25. Pagination
*/
/* Pagination */
.paging-navigation,
.post-navigation,
.release-paging-navigation,
.work-navigation {
  width: 100%;
  padding: 3em 0;
  font-weight: 700;
  zoom: 1;
  clear: both;
}
.paging-navigation:before, .paging-navigation:after,
.post-navigation:before,
.post-navigation:after,
.release-paging-navigation:before,
.release-paging-navigation:after,
.work-navigation:before,
.work-navigation:after {
  content: "";
  display: table;
}
.paging-navigation:after,
.post-navigation:after,
.release-paging-navigation:after,
.work-navigation:after {
  clear: both !important;
}
.paging-navigation .nav-previous, .paging-navigation .nav-links a[rel="prev"], .paging-navigation .previous,
.paging-navigation .nav-next, .paging-navigation .nav-links a[rel="next"], .paging-navigation .next,
.post-navigation .nav-previous,
.post-navigation .nav-links a[rel="prev"],
.post-navigation .previous,
.post-navigation .nav-next,
.post-navigation .nav-links a[rel="next"],
.post-navigation .next,
.release-paging-navigation .nav-previous,
.release-paging-navigation .nav-links a[rel="prev"],
.release-paging-navigation .previous,
.release-paging-navigation .nav-next,
.release-paging-navigation .nav-links a[rel="next"],
.release-paging-navigation .next,
.work-navigation .nav-previous,
.work-navigation .nav-links a[rel="prev"],
.work-navigation .previous,
.work-navigation .nav-next,
.work-navigation .nav-links a[rel="next"],
.work-navigation .next {
  padding: 0;
  margin: 0;
  width: 36px;
  height: 36px;
  position: relative;
  border-radius: 50%;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.paging-navigation .nav-previous:before, .paging-navigation .nav-links a[rel="prev"]:before, .paging-navigation .previous:before,
.paging-navigation .nav-next:before, .paging-navigation .nav-links a[rel="next"]:before, .paging-navigation .next:before,
.post-navigation .nav-previous:before,
.post-navigation .nav-links a[rel="prev"]:before,
.post-navigation .previous:before,
.post-navigation .nav-next:before,
.post-navigation .nav-links a[rel="next"]:before,
.post-navigation .next:before,
.release-paging-navigation .nav-previous:before,
.release-paging-navigation .nav-links a[rel="prev"]:before,
.release-paging-navigation .previous:before,
.release-paging-navigation .nav-next:before,
.release-paging-navigation .nav-links a[rel="next"]:before,
.release-paging-navigation .next:before,
.work-navigation .nav-previous:before,
.work-navigation .nav-links a[rel="prev"]:before,
.work-navigation .previous:before,
.work-navigation .nav-next:before,
.work-navigation .nav-links a[rel="next"]:before,
.work-navigation .next:before {
  text-align: center;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  color: #FFF;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  top: 7px;
  left: 0;
  font-family: 'dashicons';
}
.paging-navigation .nav-previous:hover, .paging-navigation .nav-links a[rel="prev"]:hover, .paging-navigation .previous:hover,
.paging-navigation .nav-next:hover, .paging-navigation .nav-links a[rel="next"]:hover, .paging-navigation .next:hover,
.post-navigation .nav-previous:hover,
.post-navigation .nav-links a[rel="prev"]:hover,
.post-navigation .previous:hover,
.post-navigation .nav-next:hover,
.post-navigation .nav-links a[rel="next"]:hover,
.post-navigation .next:hover,
.release-paging-navigation .nav-previous:hover,
.release-paging-navigation .nav-links a[rel="prev"]:hover,
.release-paging-navigation .previous:hover,
.release-paging-navigation .nav-next:hover,
.release-paging-navigation .nav-links a[rel="next"]:hover,
.release-paging-navigation .next:hover,
.work-navigation .nav-previous:hover,
.work-navigation .nav-links a[rel="prev"]:hover,
.work-navigation .previous:hover,
.work-navigation .nav-next:hover,
.work-navigation .nav-links a[rel="next"]:hover,
.work-navigation .next:hover {
  opacity: 0.6;
}
.paging-navigation .nav-previous, .paging-navigation .nav-links a[rel="prev"], .paging-navigation .previous,
.post-navigation .nav-previous,
.post-navigation .nav-links a[rel="prev"],
.post-navigation .previous,
.release-paging-navigation .nav-previous,
.release-paging-navigation .nav-links a[rel="prev"],
.release-paging-navigation .previous,
.work-navigation .nav-previous,
.work-navigation .nav-links a[rel="prev"],
.work-navigation .previous {
  float: left;
}
.paging-navigation .nav-previous:before, .paging-navigation .nav-links a[rel="prev"]:before, .paging-navigation .previous:before,
.post-navigation .nav-previous:before,
.post-navigation .nav-links a[rel="prev"]:before,
.post-navigation .previous:before,
.release-paging-navigation .nav-previous:before,
.release-paging-navigation .nav-links a[rel="prev"]:before,
.release-paging-navigation .previous:before,
.work-navigation .nav-previous:before,
.work-navigation .nav-links a[rel="prev"]:before,
.work-navigation .previous:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f341";
  left: -1px;
}
.paging-navigation .nav-next, .paging-navigation .nav-links a[rel="next"], .paging-navigation .next,
.post-navigation .nav-next,
.post-navigation .nav-links a[rel="next"],
.post-navigation .next,
.release-paging-navigation .nav-next,
.release-paging-navigation .nav-links a[rel="next"],
.release-paging-navigation .next,
.work-navigation .nav-next,
.work-navigation .nav-links a[rel="next"],
.work-navigation .next {
  float: right;
}
.paging-navigation .nav-next:before, .paging-navigation .nav-links a[rel="next"]:before, .paging-navigation .next:before,
.post-navigation .nav-next:before,
.post-navigation .nav-links a[rel="next"]:before,
.post-navigation .next:before,
.release-paging-navigation .nav-next:before,
.release-paging-navigation .nav-links a[rel="next"]:before,
.release-paging-navigation .next:before,
.work-navigation .nav-next:before,
.work-navigation .nav-links a[rel="next"]:before,
.work-navigation .next:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f345";
  left: 1px;
}
.paging-navigation .meta-nav,
.post-navigation .meta-nav,
.release-paging-navigation .meta-nav,
.work-navigation .meta-nav {
  display: none;
}
.paging-navigation .nav-previous a,
.paging-navigation .nav-next a,
.post-navigation .nav-previous a,
.post-navigation .nav-next a,
.release-paging-navigation .nav-previous a,
.release-paging-navigation .nav-next a,
.work-navigation .nav-previous a,
.work-navigation .nav-next a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  position: absolute;
  top: 0;
  left: 0;
}

.single .paging-navigation, .single .post-navigation {
  padding: 2em 0;
}

.single .nav-links,
.single-attachment .nav-links {
  width: 100%;
}

.navigation-image,
.comment-navigation {
  margin-bottom: 1em;
}
.navigation-image .previous,
.comment-navigation .previous {
  float: left;
  text-align: left;
}
.navigation-image .previous:hover,
.comment-navigation .previous:hover {
  background: none !important;
}
.navigation-image .next,
.comment-navigation .next {
  float: right;
  text-align: right;
}
.navigation-image .next:hover,
.comment-navigation .next:hover {
  background: none !important;
}

/*-----------------------------------------------------------------------------------*/
/*  Pagination
/*-----------------------------------------------------------------------------------*/
.pagination {
  margin: 0;
}
.pagination .nav-links {
  zoom: 1;
  width: auto;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
}
.pagination .nav-links:before, .pagination .nav-links:after {
  content: "";
  display: table;
}
.pagination .nav-links:after {
  clear: both !important;
}

.forum-pagination ul.page-numbers,
.woocommerce-pagination ul.page-numbers {
  padding: 0;
  zoom: 1;
  width: auto;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
}
.forum-pagination ul.page-numbers:before, .forum-pagination ul.page-numbers:after,
.woocommerce-pagination ul.page-numbers:before,
.woocommerce-pagination ul.page-numbers:after {
  content: "";
  display: table;
}
.forum-pagination ul.page-numbers:after,
.woocommerce-pagination ul.page-numbers:after {
  clear: both !important;
}
.forum-pagination ul.page-numbers li,
.woocommerce-pagination ul.page-numbers li {
  list-style-type: none;
  display: inline-block;
}

.page-links {
  zoom: 1;
  margin: 0 auto;
}
.page-links:before, .page-links:after {
  content: "";
  display: table;
}
.page-links:after {
  clear: both !important;
}

.page-links a,
.page-links > span:not(.page-links-title),
span.page-numbers,
a.page-numbers {
  text-align: center;
  font-size: 15px;
  line-height: 27px;
  position: relative;
  color: #333333 !important;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  height: 28px;
  width: 28px;
  margin: 10px 0 0;
  text-align: center;
  text-shadow: none;
  text-decoration: none !important;
  border: none;
  border: solid 1px rgba(0, 0, 0, 0.08);
}
.page-links a.current,
.page-links > span:not(.page-links-title).current,
span.page-numbers.current,
a.page-numbers.current {
  color: white !important;
  background-color: #bc9321 !important;
  border: solid 1px #bc9321;
  opacity: 1;
}

.page-links > span:not(.page-links-title) {
  color: white !important;
  background-color: #bc9321 !important;
  border: solid 1px #bc9321;
  opacity: 1;
}

li.page-numbers {
  list-style-type: none;
  display: inline-block;
}

body.button-style-default span.page-numbers,
body.button-style-default a.page-numbers {
  border-radius: 2px;
}

body.button-style-round span.page-numbers,
body.button-style-round a.page-numbers {
  border-radius: 9999em;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	26. Zoom animation
*/
.zoom-bg {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.do-zoom.zoom-bg {
  opacity: 1;
  -webkit-animation: zoomin 120s infinite linear 1s;
  animation: zoomin 120s infinite linear 1s;
}

.zoom-bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.zoom-bg img {
  width: 100%;
  height: auto;
}

@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	27. No touchable devices
*/
.no-touch {
  /* Square */
}
.no-touch .post-square img {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.no-touch .post-square:hover img {
  -webkit-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.7;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	28. 404 page
*/
body.error404 {
  background: none !important;
}
body.error404 .site-container {
  margin: 0 !important;
  width: 100%;
  max-width: none !important;
}
body.error404 h1 {
  display: block;
}
body.error404 h1 span {
  display: block;
  line-height: 1;
}
body.error404.has-404-bg {
  color: #FFF;
}
body.error404.has-404-bg .content-inner {
  position: relative;
}
body.error404.has-404-bg .content-inner:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.44);
}
body.error404.has-404-bg h1 {
  color: white !important;
}
body.error404.has-404-bg h5 {
  color: #FFF;
}
body.error404.has-404-bg .content-inner {
  background: no-repeat center center;
  background-size: 100%;
  background-size: cover;
  padding-top: 0 !important;
}
body.error404 #masthead,
body.error404 #colophon,
body.error404 .music-social-icons-container,
body.error404 #wolf-message-bar,
body.error404 #topbar {
  display: none;
}
body.error404 #page {
  padding-top: 0 !important;
}
body.error404 #content {
  width: 100%;
  height: 100%;
}
body.error404 .content-wrapper {
  background: none;
  padding: 0;
  text-align: center;
  height: 100%;
}
body.error404 .content-wrapper h1 {
  margin-bottom: 2rem;
}
body.error404 .content-wrapper article.post {
  border-bottom: none;
  max-width: 750px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	29. Search
*/
body.search.search-no-results #primary {
  width: 100% !important;
  text-align: center;
}
body.search.search-no-results .searchfield {
  width: 100%;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	30. Wolf Page Builder
*/
body.wolf-page-builder .content-inner {
  background: none !important;
}

/* Icons */
.wpb-icon-box.wpb-icon-type-circle .wpb-icon-no-custom-style.wpb-hover-fill-in:hover, .wpb-icon-box.wpb-icon-type-square .wpb-icon-no-custom-style.wpb-hover-fill-in:hover {
  -webkit-box-shadow: inset 0 0 0 1em #bc9321;
  box-shadow: inset 0 0 0 1em #bc9321;
  border-color: #bc9321;
  color: #fff;
}
.wpb-icon-box.wpb-icon-type-circle .wpb-icon-no-custom-style.wpb-hover-none:hover, .wpb-icon-box.wpb-icon-type-square .wpb-icon-no-custom-style.wpb-hover-none:hover {
  border-color: #bc9321;
  background: #bc9321;
  color: #FFF;
}
.wpb-icon-box.wpb-icon-type-circle .wpb-icon-no-custom-style.wpb-hover-none:hover a, .wpb-icon-box.wpb-icon-type-square .wpb-icon-no-custom-style.wpb-hover-none:hover a {
  color: #FFF;
}

/* Pricing table */
.wpb-pricing-table-featured-text,
.wpb-pricing-table-price-strike:before,
.wpb-pricing-table-button a {
  background: #bc9321;
}

.wpb-pricing-table-price,
.wpb-pricing-table-currency {
  color: #bc9321;
}

.wpb-arrow-down:hover {
  background: #bc9321;
  border-color: #bc9321;
}

.wpb-last-posts .wpb-entry-title a:hover {
  color: #bc9321 !important;
}

.wpb-post-column .wpb-post-column-entry-thumbnail-link {
  display: block;
  position: relative;
  z-index: 0;
}
.wpb-post-column .wpb-post-column-entry-thumbnail-link:before {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color: #FFF;
  font-family: Dashicons;
  font-size: 24px;
  position: absolute;
  content: "\f464";
  left: 50%;
  top: 50%;
  margin-top: -12px;
  margin-left: -12px;
  z-index: 5;
  opacity: 0;
  font-weight: 400;
}
.wpb-post-column.format-standard .wpb-post-column-entry-thumbnail-link:before {
  content: "\f464";
}
.wpb-post-column.format-image .wpb-post-column-entry-thumbnail-link:before {
  content: "\f128";
}
.wpb-post-column.format-gallery .wpb-post-column-entry-thumbnail-link:before {
  content: "\f233";
}
.wpb-post-column.format-audio .wpb-post-column-entry-thumbnail-link:before {
  content: "\f127";
}
.wpb-post-column.format-video .wpb-post-column-entry-thumbnail-link:before {
  content: "\f236";
}
.wpb-post-column.format-quote .wpb-post-column-entry-thumbnail-link:before {
  content: "\f122";
}
.wpb-post-column.format-link .wpb-post-column-entry-thumbnail-link:before {
  content: "\f103";
}
.wpb-post-column.format-aside .wpb-post-column-entry-thumbnail-link:before {
  content: "\f123";
}
.wpb-post-column.format-status .wpb-post-column-entry-thumbnail-link:before {
  ccontent: "\f130";
}
.wpb-post-column.format-chat .wpb-post-column-entry-thumbnail-link:before {
  content: "\f125";
}

.wpb-post-column-entry-thumbnail {
  overflow: hidden;
  background: #000;
}
.wpb-post-column-entry-thumbnail img {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-transition-property: all !important;
  transition-property: all !important;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.wpb-post-column-entry-thumbnail:hover img {
  opacity: 0.66 !important;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
}
.wpb-post-column-entry-thumbnail:hover .wpb-post-column-entry-thumbnail-link:before {
  opacity: .77;
}

.wpb-font-light input[type="text"],
.wpb-font-light input[type="email"],
.wpb-font-light input[type="search"],
.wpb-font-light input[type="password"],
.wpb-font-light input[type="tel"],
.wpb-font-light input[type="url"],
.wpb-font-light input[name="post_password"],
.wpb-font-light select,
.wpb-font-light textarea {
  color: #333333 !important;
}
.wpb-font-light .wpb-last-posts .wpb-entry-title a {
  color: white !important;
}

.wpb-font-dark .wpb-last-posts .wpb-entry-title a {
  color: #0d0d0d !important;
}

.wpb-advanced-slide.wpb-font-light .wolf-wpb-button.wpb-button:hover {
  color: white !important;
  border-color: white !important;
}

#wpb-container table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.618rem;
  line-height: 2;
  margin: 0 0 1.5em;
  width: 100%;
}
#wpb-container caption,
#wpb-container th,
#wpb-container td {
  font-weight: normal;
  text-align: left;
}
#wpb-container caption {
  font-size: 1em;
  margin: 0.5em 0;
}
#wpb-container td, #wpb-container th {
  padding: 15px 5px;
}
#wpb-container th {
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.1;
}
#wpb-container thead th {
  line-height: 1.5;
}
#wpb-container td {
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  line-height: 1.1;
}

/* Last posts big slider */
.wpb-last-posts-big-slide-category-link {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
}

.wpb-last-posts-big-slide-summary {
  font-size: 1.1em;
}

.wpb-last-post-big-slide-button {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
}

.wpb-post-big-slide-entry-title {
  line-height: 1.44;
}

/* Linked image */
.wpb-linked-image-button {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
}

/* Button */
.wolf-button .wpb-button-tagline, .trigger .wpb-button-tagline, .wolf-release-button a .wpb-button-tagline, .wolf-show-ticket-button .wpb-button-tagline,
.wolf-show-facebook-button .wpb-button-tagline {
  margin-top: 8px;
}

/* Last posts shortcode */
.wpb-last-posts article.post {
  width: 100%;
  float: none;
}
.wpb-last-posts.wpb-hide-category .post-grid-category {
  display: none;
}
.wpb-last-posts.wpb-hide-author .author-meta {
  display: none;
}

/* Mailchimp */
.wpb-mailchimp-submit-container .wpb-mailchimp-submit {
  line-height: 14px !important;
}

.wpb-block-content .wpb-mailchimp-submit-container .wpb-mailchimp-submit {
  line-height: 13px !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	31. Wolf Twitter
*/
/* Wolf Twitter */
.wolf-tweet-list {
  padding: 0 !important;
  margin: 0 !important;
}

.wolf ul.wolf-tweet-list li:before {
  font-family: Dashicons;
  content: "\f301";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #41b7d8;
  font-size: 18px;
  opacity: 0.6;
  position: absolute;
  left: -0.1em;
  top: 0;
  opacity: 1;
}

.wolf-tweet-list .wolf-tweet-text,
.wolf-tweet-list .wolf-tweet-time {
  font-weight: 400 !important;
}

.wolf-bigtweet-content {
  text-align: center;
  max-width: 1140px !important;
}
.wolf-bigtweet-content:before {
  display: block;
  color: #41b7d8;
  font-family: Dashicons;
  content: "\f301";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal !important;
  font-size: 24px;
  position: relative;
  margin-right: 0;
}
.wolf-bigtweet-content a {
  color: #bc9321 !important;
}
.wolf-bigtweet-content a:hover {
  opacity: 0.8;
}

.wolf .wolf-bigtweet-content span.wolf-tweet-text {
  font-style: normal;
  font-size: 16px;
}

.wolf-tweet-time_big a, .wolf-tweet-time a {
  font-weight: 400;
  text-decoration: none !important;
}

.wolf-tweet-separator,
.wolf-tweet-time_big a {
  font-size: 0.9em;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	32. Wolf Portfolio
*/
.work-item img {
  width: 100%;
}
.work-item .work-title {
  font-size: 18px;
}

.portfolio-layout-fullwidth.portfolio-grid-padding-yes .content-inner {
  padding: 10px;
}
.portfolio-layout-fullwidth.portfolio-grid-padding-yes #work-filter {
  padding-top: 10px;
  padding-left: 0;
}

.portfolio-grid-padding-yes .work {
  padding: 10px;
}
.portfolio-grid-padding-yes .works {
  width: calc(100% + 20px );
  margin-left: -10px !important;
}

.portfolio-grid-padding-no #work-filter {
  padding-bottom: 10px;
}
.portfolio-grid-padding-no.portfolio-layout-fullwidth #work-filter-container {
  padding: 5px 0;
}
.portfolio-grid-padding-no.portfolio-layout-fullwidth #work-filter {
  padding-top: 15px;
  padding-left: 15px;
  padding-bottom: 0;
}

@media screen and (min-width: 500px) {
  .work-grid-col-2 .work-item,
  .work-grid-col-3 .work-item,
  .work-grid-col-4 .work-item,
  .work-grid-col-5 .work-item,
  .work-grid-col-6 .work-item,
  .works-grid-col-2 .work-item,
  .works-grid-col-3 .work-item,
  .works-grid-col-4 .work-item,
  .works-grid-col-5 .work-item,
  .works-grid-col-6 .work-item {
    float: left;
    width: 50%;
  }

  .work-grid-col-3 .work-item,
  .works-grid-col-3 .work-item {
    float: left;
    width: 33.33%;
  }
  .work-grid-col-3 .work-item:nth-child(2n+1),
  .works-grid-col-3 .work-item:nth-child(2n+1) {
    clear: none;
  }
  .work-grid-col-3 .work-item:nth-child(3n+1),
  .works-grid-col-3 .work-item:nth-child(3n+1) {
    clear: left;
  }
}
@media screen and (min-width: 900px) {
  span.play-overlay {
    background-size: 60px 60px;
  }

  .work-grid-col-3 .work-item,
  .work-grid-col-6 .work-item,
  .works-grid-col-3 .work-item,
  .works-grid-col-6 .work-item {
    float: left;
    width: 33.33%;
  }
  .work-grid-col-3 .work-item:nth-child(2n+1),
  .work-grid-col-6 .work-item:nth-child(2n+1),
  .works-grid-col-3 .work-item:nth-child(2n+1),
  .works-grid-col-6 .work-item:nth-child(2n+1) {
    clear: none;
  }
  .work-grid-col-3 .work-item:nth-child(3n+1),
  .work-grid-col-6 .work-item:nth-child(3n+1),
  .works-grid-col-3 .work-item:nth-child(3n+1),
  .works-grid-col-6 .work-item:nth-child(3n+1) {
    clear: left;
  }

  .work-grid-col-4 .work-item,
  .works-grid-col-4 .work-item {
    width: 25%;
  }
  .work-grid-col-4 .work-item:nth-child(2n+1),
  .works-grid-col-4 .work-item:nth-child(2n+1) {
    clear: none;
  }
  .work-grid-col-4 .work-item:nth-child(4n+1),
  .works-grid-col-4 .work-item:nth-child(4n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1200px) {
  .work-grid-col-5 .work-item,
  .works-grid-col-5 .work-item {
    width: 20%;
  }
  .work-grid-col-5 .work-item:nth-child(2n+1),
  .works-grid-col-5 .work-item:nth-child(2n+1) {
    clear: none;
  }
  .work-grid-col-5 .work-item:nth-child(3n+1),
  .works-grid-col-5 .work-item:nth-child(3n+1) {
    clear: none;
  }
  .work-grid-col-5 .work-item:nth-child(4n+1),
  .works-grid-col-5 .work-item:nth-child(4n+1) {
    clear: none;
  }
  .work-grid-col-5 .work-item:nth-child(5n+1),
  .works-grid-col-5 .work-item:nth-child(5n+1) {
    clear: left;
  }

  .work-grid-col-6 .work-item,
  .works-grid-col-6 .work-item {
    width: 16.65%;
  }
  .work-grid-col-6 .work-item:nth-child(2n+1),
  .works-grid-col-6 .work-item:nth-child(2n+1) {
    clear: none;
  }
  .work-grid-col-6 .work-item:nth-child(3n+1),
  .works-grid-col-6 .work-item:nth-child(3n+1) {
    clear: none;
  }
  .work-grid-col-6 .work-item:nth-child(4n+1),
  .works-grid-col-6 .work-item:nth-child(4n+1) {
    clear: none;
  }
  .work-grid-col-6 .work-item:nth-child(5n+1),
  .works-grid-col-6 .work-item:nth-child(5n+1) {
    clear: none;
  }
  .work-grid-col-6 .work-item:nth-child(6n+1),
  .works-grid-col-6 .work-item:nth-child(6n+1) {
    clear: left;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	33. Wolf Albums
*/
.album-item-container figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  height: auto;
  background: #333;
  text-align: center;
  cursor: pointer;
}
.album-item-container figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}
.album-item-container figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.album-item-container figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}
.album-item-container figure figcaption:before, .album-item-container figure figcaption:after {
  pointer-events: none;
}
.album-item-container figure h2 {
  font-size: 16px;
  line-height: 1.5;
  word-spacing: -0.15em;
  font-weight: 400 !important;
}
.album-item-container figure h2 span {
  font-weight: 800;
}
.album-item-container figure h2, .album-item-container figure p {
  margin: 0;
  color: white !important;
}
.album-item-container figure p {
  letter-spacing: 1px;
  font-size: 12px;
}

/*-----------------*/
/***** Apollo *****/
/*-----------------*/
.albums-display-apollo figure.hover-effect {
  background: #222;
}

.albums-display-apollo figure.hover-effect img {
  opacity: 0.95;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
}

.albums-display-apollo figure.hover-effect figcaption::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background: rgba(255, 255, 255, 0.14);
  content: '';
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}

.albums-display-apollo figure.hover-effect p {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 3em;
  padding: 0 1em;
  max-width: 150px;
  border-right: 4px solid #fff;
  text-align: right;
  opacity: 0;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

.albums-display-apollo figure.hover-effect h2 {
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  text-align: left;
  opacity: 0.88;
}

.albums-display-apollo figure.hover-effect:hover h2 {
  opacity: 1;
}

.albums-display-apollo figure.hover-effect:hover img {
  opacity: 0.6;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.albums-display-apollo figure.hover-effect:hover figcaption::before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 130%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 130%, 0);
}

.albums-display-apollo figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

/*---------------*/
/***** Ming *****/
/*---------------*/
.albums-display-ming figure.hover-effect {
  background: #030c17;
}

.albums-display-ming figure.hover-effect img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

.albums-display-ming figure.hover-effect figcaption::before {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.2);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.4, 1.4, 1);
  transform: scale3d(1.4, 1.4, 1);
}

.albums-display-ming figure.hover-effect h2 {
  margin: 10% 0 10px 0;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}

.albums-display-ming figure.hover-effect p {
  padding: 1em;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.albums-display-ming figure.hover-effect:hover h2 {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.albums-display-ming figure.hover-effect:hover figcaption::before,
.albums-display-ming figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.albums-display-ming figure.hover-effect:hover figcaption {
  background-color: rgba(58, 52, 42, 0);
}

.albums-display-ming figure.hover-effect:hover img {
  opacity: 0.4;
}

/*-----------------*/
/***** Selena *****/
/*-----------------*/
.albums-display-selena figure.hover-effect {
  background: #333;
}

.albums-display-selena figure.hover-effect img {
  opacity: 0.95;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.albums-display-selena figure.hover-effect:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  opacity: .44;
}

.albums-display-selena figure.hover-effect h2 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.albums-display-selena figure.hover-effect p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
  transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}

.albums-display-selena figure.hover-effect:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.albums-display-selena figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0);
  transform: perspective(1000px) rotate3d(1, 0, 0, 0);
}

/*---------------*/
/***** Jazz *****/
/*---------------*/
.albums-display-jazz figure.hover-effect {
  background: linear-gradient(-45deg, #f3cf3f 0%, #f33f58 100%);
}

.albums-display-jazz figure.hover-effect img {
  opacity: 0.9;
}

.albums-display-jazz figure.hover-effect figcaption::after,
.albums-display-jazz figure.hover-effect img,
.albums-display-jazz figure.hover-effect p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.albums-display-jazz figure.hover-effect figcaption::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: '';
  opacity: 0;
  -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
  transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.albums-display-jazz figure.hover-effect h2,
.albums-display-jazz figure.hover-effect p {
  opacity: 1;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}

.albums-display-jazz figure.hover-effect h2 {
  padding-top: 14%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}

.albums-display-jazz figure.hover-effect p {
  padding: 0.5em 2em;
  text-transform: none;
  opacity: 0;
}

.albums-display-jazz figure.hover-effect:hover img {
  opacity: 0.7;
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
}

.albums-display-jazz figure.hover-effect:hover figcaption::after {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
  transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
}

.albums-display-jazz figure.hover-effect:hover h2,
.albums-display-jazz figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/*---------------*/
/***** Duke *****/
/*---------------*/
.albums-display-duke figure.hover-effect {
  background: linear-gradient(-45deg, #34495e 0%, #cc6055 100%);
}

.albums-display-duke figure.hover-effect img,
.albums-display-duke figure.hover-effect p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.albums-display-duke figure.hover-effect:hover img {
  opacity: 0.1;
  -webkit-transform: scale3d(2, 2, 1);
  transform: scale3d(2, 2, 1);
}

.albums-display-duke figure.hover-effect h2 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

.albums-display-duke figure.hover-effect p {
  width: calc(100% - 40px);
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 20px;
  padding: 10px;
  border: 2px solid #fff;
  text-transform: none;
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transform-origin: 50% -100%;
  -ms-transform-origin: 50% -100%;
  transform-origin: 50% -100%;
}

.albums-display-duke figure.hover-effect:hover h2,
.albums-display-duke figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/*---------------*/
/***** Sadie *****/
/*---------------*/
.albums-display-sadie figure.hover-effect figcaption::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(72, 76, 97, 0)), color-stop(75%, rgba(72, 76, 97, 0.8)));
  background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
}

.albums-display-sadie figure.hover-effect h2 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #484c61;
  -webkit-transition: -webkit-transform 0.35s, color 0.35s;
  transition: transform 0.35s, color 0.35s;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.albums-display-sadie figure.hover-effect figcaption::before,
.albums-display-sadie figure.hover-effect p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.albums-display-sadie figure.hover-effect p {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2em;
  width: 100%;
  opacity: 0;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

.albums-display-sadie figure.hover-effect:hover h2 {
  color: #fff;
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -40px, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, -40px, 0);
}

.albums-display-sadie figure.hover-effect:hover figcaption::before,
.albums-display-sadie figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*---------------*/
/***** Oscar *****/
/*---------------*/
.albums-display-oscar figure.hover-effect {
  background: linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
}

.albums-display-oscar figure.hover-effect img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

.albums-display-oscar figure.hover-effect figcaption {
  padding: 3em;
  background-color: rgba(58, 52, 42, 0.44);
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
}

.albums-display-oscar figure.hover-effect figcaption::before {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 1px solid #fff;
  content: '';
}

.albums-display-oscar figure.hover-effect h2 {
  margin: 10% 0 10px 0;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.albums-display-oscar figure.hover-effect figcaption::before,
.albums-display-oscar figure.hover-effect p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.albums-display-oscar figure.hover-effect:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.albums-display-oscar figure.hover-effect:hover figcaption::before,
.albums-display-oscar figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.albums-display-oscar figure.hover-effect:hover figcaption {
  background-color: rgba(58, 52, 42, 0);
}

.albums-display-oscar figure.hover-effect:hover img {
  opacity: 0.4;
}

/*---------------*/
/***** Marley *****/
/*---------------*/
.albums-display-marley figure.hover-effect figcaption {
  text-align: right;
}

.albums-display-marley figure.hover-effect h2,
.albums-display-marley figure.hover-effect p {
  position: absolute;
  right: 30px;
  left: 30px;
  padding: 10px 0;
}

.albums-display-marley figure.hover-effect p {
  bottom: 30px;
  line-height: 1.5;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.albums-display-marley figure.hover-effect h2 {
  top: 30px;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.albums-display-marley figure.hover-effect:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.albums-display-marley figure.hover-effect h2::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
  content: '';
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
}

.albums-display-marley figure.hover-effect h2::after,
.albums-display-marley figure.hover-effect p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.albums-display-marley figure.hover-effect:hover h2::after,
.albums-display-marley figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*---------------*/
/***** Roxy *****/
/*---------------*/
.albums-display-roxy figure.hover-effect {
  background: linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
}

.albums-display-roxy figure.hover-effect img {
  max-width: none;
  width: calc(100% + 60px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50px, 0, 0);
  transform: translate3d(-50px, 0, 0);
}

.albums-display-roxy figure.hover-effect figcaption::before {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 1px solid #fff;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-20px, 0, 0);
  transform: translate3d(-20px, 0, 0);
}

.albums-display-roxy figure.hover-effect figcaption {
  padding: 3em;
  text-align: left;
}

.albums-display-roxy figure.hover-effect h2 {
  padding: 20% 0 10px 0;
}

.albums-display-roxy figure.hover-effect p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.albums-display-roxy figure.hover-effect:hover img {
  opacity: 0.7;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.albums-display-roxy figure.hover-effect:hover figcaption::before,
.albums-display-roxy figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*---------------*/
/***** Bubba *****/
/*---------------*/
.albums-display-bubba figure.hover-effect {
  background: #9e5406;
}

.albums-display-bubba figure.hover-effect img {
  opacity: 0.7;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

.albums-display-bubba figure.hover-effect:hover img {
  opacity: 0.4;
}

.albums-display-bubba figure.hover-effect figcaption::before,
.albums-display-bubba figure.hover-effect figcaption::after {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.albums-display-bubba figure.hover-effect figcaption::before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
}

.albums-display-bubba figure.hover-effect figcaption::after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  transform: scale(1, 0);
}

.albums-display-bubba figure.hover-effect h2 {
  padding-top: 14%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}

.albums-display-bubba figure.hover-effect p {
  padding: 0 2.5em;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.albums-display-bubba figure.hover-effect:hover figcaption::before,
.albums-display-bubba figure.hover-effect:hover figcaption::after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.albums-display-bubba figure.hover-effect:hover h2,
.albums-display-bubba figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*---------------*/
/***** Romeo *****/
/*---------------*/
.albums-display-romeo figure.hover-effect {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.albums-display-romeo figure.hover-effect img {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 0, 300px);
  transform: translate3d(0, 0, 300px);
}

.albums-display-romeo figure.hover-effect:hover img {
  opacity: 0.6;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.albums-display-romeo figure.hover-effect figcaption::before,
.albums-display-romeo figure.hover-effect figcaption::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 1px;
  background: #fff;
  content: '';
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.albums-display-romeo figure.hover-effect:hover figcaption::before {
  opacity: 0.5;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.albums-display-romeo figure.hover-effect:hover figcaption::after {
  opacity: 0.5;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.albums-display-romeo figure.hover-effect h2,
.albums-display-romeo figure.hover-effect p {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}

.albums-display-romeo figure.hover-effect h2 {
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
}

.albums-display-romeo figure.hover-effect p {
  padding: 0.25em 2em;
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
}

.albums-display-romeo figure.hover-effect:hover h2 {
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
}

.albums-display-romeo figure.hover-effect:hover p {
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
}

/*---------------*/
/***** Sarah *****/
/*---------------*/
.albums-display-sarah figure.hover-effect {
  background: #42b078;
}

.albums-display-sarah figure.hover-effect img {
  max-width: none;
  width: calc(100% + 20px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.albums-display-sarah figure.hover-effect:hover img {
  opacity: 0.4;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.albums-display-sarah figure.hover-effect figcaption {
  text-align: left;
}

.albums-display-sarah figure.hover-effect h2 {
  position: relative;
  overflow: hidden;
  padding: 0.5em 0;
}

.albums-display-sarah figure.hover-effect h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  content: '';
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.albums-display-sarah figure.hover-effect:hover h2::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.albums-display-sarah figure.hover-effect p {
  padding: 1em 0;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.albums-display-sarah figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*---------------*/
/***** Chico *****/
/*---------------*/
.albums-display-chico figure.hover-effect img {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}

.albums-display-chico figure.hover-effect:hover img {
  opacity: 0.5;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.albums-display-chico figure.hover-effect figcaption {
  padding: 3em;
}

.albums-display-chico figure.hover-effect figcaption::before {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 1px solid #fff;
  content: '';
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.albums-display-chico figure.hover-effect figcaption::before,
.albums-display-chico figure.hover-effect p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.albums-display-chico figure.hover-effect h2 {
  padding: 5% 0 20px 0;
}

.albums-display-chico figure.hover-effect p {
  margin: 0 auto;
  max-width: 200px;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.albums-display-chico figure.hover-effect:hover figcaption::before,
.albums-display-chico figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/*---------------*/
/***** Milo *****/
/*---------------*/
.albums-display-milo figure.hover-effect {
  background: #2e5d5a;
}

.albums-display-milo figure.hover-effect img {
  max-width: none;
  width: calc(100% + 60px);
  opacity: 1;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-30px, 0, 0) scale(1.12);
  transform: translate3d(-30px, 0, 0) scale(1.12);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.albums-display-milo figure.hover-effect:hover img {
  opacity: 0.5;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

.albums-display-milo figure.hover-effect h2 {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1em 1.2em;
}

.albums-display-milo figure.hover-effect p {
  padding: 0 10px 0 0;
  width: 50%;
  border-right: 1px solid #fff;
  text-align: right;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}

.albums-display-milo figure.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.wolf-albums-not-found {
  margin: 50px auto;
  text-align: center;
}

.albums-layout-fullwidth.albums-padding-yes .content-inner {
  padding: 10px 20px;
}
.albums-layout-fullwidth.albums-padding-yes #albums-filter {
  padding-top: 10px;
  padding-left: 0;
}

.albums-padding-yes .album {
  padding: 10px;
}
.albums-padding-yes .albums {
  width: calc(100% + 20px );
  margin-left: -10px !important;
}

.albums-padding-no #albums-filter {
  padding-bottom: 10px;
}
.albums-padding-no.albums-layout-fullwidth #albums-filter-container {
  padding: 5px 0;
}
.albums-padding-no.albums-layout-fullwidth #albums-filter {
  padding-top: 15px;
  padding-left: 15px;
  padding-bottom: 0;
}

.albums,
.shortcode-gallery-grid {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  width: 100%;
  line-height: 1.7;
  zoom: 1;
}
.albums:before, .albums:after,
.shortcode-gallery-grid:before,
.shortcode-gallery-grid:after {
  content: "";
  display: table;
}
.albums:after,
.shortcode-gallery-grid:after {
  clear: both;
}
.albums .album-item-container,
.shortcode-gallery-grid .album-item-container {
  position: relative;
  margin: 0;
  width: 100%;
  height: auto;
  display: block;
  border-bottom: none !important;
}
.albums .album-item-container:after,
.shortcode-gallery-grid .album-item-container:after {
  display: none;
}
.albums span.album-item,
.shortcode-gallery-grid span.album-item {
  overflow: hidden;
  display: block;
  background: #333;
  position: relative;
}
.albums .albums .entry-link, .albums #shortcode-gallery-grid .entry-link,
.shortcode-gallery-grid .albums .entry-link,
.shortcode-gallery-grid #shortcode-gallery-grid .entry-link {
  display: block;
  text-shadow: none !important;
  text-align: left;
  color: #333333 !important;
}
.albums span.album-thumb,
.shortcode-gallery-grid span.album-thumb {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
}
.albums span.album-thumb img, .albums span.album-thumb p,
.shortcode-gallery-grid span.album-thumb img,
.shortcode-gallery-grid span.album-thumb p {
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
}
.albums span.album-thumb h5,
.shortcode-gallery-grid span.album-thumb h5 {
  margin-top: 0;
  line-height: 1.5;
  margin-bottom: 5px;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  color: white !important;
}
.albums span.album-thumb img,
.shortcode-gallery-grid span.album-thumb img {
  width: 100%;
  height: auto;
  top: 0;
  margin: 0 auto;
  margin-bottom: 0;
  vertical-align: bottom;
  position: relative;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  padding: 0;
}
.albums span.album-thumb h5,
.shortcode-gallery-grid span.album-thumb h5 {
  margin-top: 0 !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.albums span.album-thumb p,
.shortcode-gallery-grid span.album-thumb p {
  font-size: 15px;
  line-height: 1;
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  font-weight: normal;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-backface-visibility: hidden;
}
.albums span.album-thumb:hover img,
.shortcode-gallery-grid span.album-thumb:hover img {
  top: 100px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.albums span.album-thumb:hover h5,
.shortcode-gallery-grid span.album-thumb:hover h5 {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.albums span.album-thumb:hover p,
.shortcode-gallery-grid span.album-thumb:hover p {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.albums .album-title,
.shortcode-gallery-grid .album-title {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 90%;
  height: 10%;
  line-height: 0px;
  vertical-align: middle;
  color: white;
}
.albums span.album-overlay,
.shortcode-gallery-grid span.album-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}

.single-gallery .entry-content {
  padding-top: 0;
  max-width: none;
}
.single-gallery .entry-header {
  display: none;
}

.album-item-container img {
  width: 100%;
}

/* Vertical Carousel */
body.albums-display-vertical .post-header-container {
  display: none;
}
body.albums-display-vertical .content-wrapper {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
body.albums-display-vertical .content-inner {
  padding: 0 !important;
}

.vertical-slide {
  position: relative;
  padding: 50px;
}
.vertical-slide:after {
  content: ' ';
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #333;
  opacity: 0.44;
  -webkit-transition: .8s;
  transition: .8s;
}
.vertical-slide a.mask-link {
  z-index: 5;
  font-size: 0;
  position: absolute;
  width: 50%;
  height: 15%;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.vertical-slide .slide-album-title {
  -webkit-transition: .8s;
  transition: .8s;
  display: block;
  text-align: center;
  color: #FFF;
  z-index: 0;
  font-size: 32px;
  line-height: 32px;
  position: relative;
  top: 50%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
  opacity: 0.44;
  opacity: 0;
}
.vertical-slide:hover .slide-album-title {
  opacity: 0.88;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.vertical-slide:hover:after {
  opacity: 0;
}

/* Last photos widget */
.widget_last_photos a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding: 0px 2px;
  width: 50%;
}
.widget_last_photos a:after, .widget_last_photos a:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.widget_last_photos a img {
  display: block;
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

.widget_last_photos .last-photos-thumbnails {
  width: 33.33%;
}

/* Single gallery layout */
.single-gallery-layout-standard .content-wrapper,
.single-gallery-layout-small-width .content-wrapper,
.single-gallery-layout-large-width .content-wrapper,
.single-gallery-layout-full-width .content-wrapper {
  max-width: none;
  width: 100%;
}

.single-gallery-layout-full-width .content-wrapper {
  padding: 0;
}
.single-gallery-layout-full-width .entry-content {
  width: 100%;
}

.single-gallery-layout-small-width .entry-content,
.single-gallery-layout-small-width .entry-meta {
  zoom: 1;
  width: 92%;
  margin: 0 auto;
  max-width: 1140px;
  max-width: 750px;
}
.single-gallery-layout-small-width .entry-content:before, .single-gallery-layout-small-width .entry-content:after,
.single-gallery-layout-small-width .entry-meta:before,
.single-gallery-layout-small-width .entry-meta:after {
  content: "";
  display: table;
}
.single-gallery-layout-small-width .entry-content:after,
.single-gallery-layout-small-width .entry-meta:after {
  clear: both;
}

.single-gallery-layout-standard .entry-content,
.single-gallery-layout-standard .entry-meta {
  zoom: 1;
  width: 92%;
  margin: 0 auto;
  max-width: 1140px;
}
.single-gallery-layout-standard .entry-content:before, .single-gallery-layout-standard .entry-content:after,
.single-gallery-layout-standard .entry-meta:before,
.single-gallery-layout-standard .entry-meta:after {
  content: "";
  display: table;
}
.single-gallery-layout-standard .entry-content:after,
.single-gallery-layout-standard .entry-meta:after {
  clear: both;
}

.albums-padding-yes .album-item-container {
  padding: 10px;
}

.shortcode-gallery-grid {
  zoom: 1;
}
.shortcode-gallery-grid:before, .shortcode-gallery-grid:after {
  content: "";
  display: table;
}
.shortcode-gallery-grid:after {
  clear: both !important;
}
.shortcode-gallery-grid img {
  width: 100%;
}

.shortcode-gallery-padding-yes {
  width: calc(100% + 20px );
  margin-left: -10px !important;
}
.shortcode-gallery-padding-yes .gallery {
  padding: 10px;
}

@media screen and (min-width: 500px) {
  .albums-columns-2 .album-item-container,
  .albums-columns-3 .album-item-container,
  .albums-columns-4 .album-item-container,
  .albums-columns-5 .album-item-container,
  .albums-columns-6 .album-item-container {
    float: left;
    width: 50%;
  }

  .shortcode-gallery-grid.gallery-grid-col-2 .album-item-container, .shortcode-gallery-grid.gallery-grid-col-3 .album-item-container, .shortcode-gallery-grid.gallery-grid-col-4 .album-item-container, .shortcode-gallery-grid.gallery-grid-col-5 .album-item-container, .shortcode-gallery-grid.gallery-grid-col-6 .album-item-container {
    float: left;
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  .albums-columns-3 .album-item-container,
  .albums-columns-6 .album-item-container {
    width: 33.33%;
  }
  .albums-columns-3 .album-item-container:nth-child(2n+1),
  .albums-columns-6 .album-item-container:nth-child(2n+1) {
    clear: none;
  }
  .albums-columns-3 .album-item-container:nth-child(3n+1),
  .albums-columns-6 .album-item-container:nth-child(3n+1) {
    clear: left;
  }

  .albums-columns-4 .album-item-container {
    width: 25%;
  }
  .albums-columns-4 .album-item-container:nth-child(2n+1) {
    clear: none;
  }
  .albums-columns-4 .album-item-container:nth-child(4n+1) {
    clear: left;
  }

  .shortcode-gallery-grid.gallery-grid-col-3 .album-item-container, .shortcode-gallery-grid.gallery-grid-col-6 .album-item-container {
    width: 33.33%;
  }
  .shortcode-gallery-grid.gallery-grid-col-3 .album-item-container:nth-child(2n+1), .shortcode-gallery-grid.gallery-grid-col-6 .album-item-container:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-gallery-grid.gallery-grid-col-3 .album-item-container:nth-child(3n+1), .shortcode-gallery-grid.gallery-grid-col-6 .album-item-container:nth-child(3n+1) {
    clear: left;
  }
  .shortcode-gallery-grid.gallery-grid-col-4 .album-item-container {
    width: 25%;
  }
  .shortcode-gallery-grid.gallery-grid-col-4 .album-item-container:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-gallery-grid.gallery-grid-col-4 .album-item-container:nth-child(4n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1200px) {
  .albums-columns-5 .album-item-container {
    width: 20%;
  }
  .albums-columns-5 .album-item-container:nth-child(2n+1) {
    clear: none;
  }
  .albums-columns-5 .album-item-container:nth-child(3n+1) {
    clear: none;
  }
  .albums-columns-5 .album-item-container:nth-child(4n+1) {
    clear: none;
  }
  .albums-columns-5 .album-item-container:nth-child(5n+1) {
    clear: left;
  }

  .albums-columns-6 .album-item-container {
    width: 16.65%;
  }
  .albums-columns-6 .album-item-container:nth-child(2n+1) {
    clear: none;
  }
  .albums-columns-6 .album-item-container:nth-child(3n+1) {
    clear: none;
  }
  .albums-columns-6 .album-item-container:nth-child(4n+1) {
    clear: none;
  }
  .albums-columns-6 .album-item-container:nth-child(5n+1) {
    clear: none;
  }
  .albums-columns-6 .album-item-container:nth-child(6n+1) {
    clear: left;
  }

  .shortcode-gallery-grid.gallery-grid-col-5 .album-item-container {
    width: 20%;
  }
  .shortcode-gallery-grid.gallery-grid-col-5 .album-item-container:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-gallery-grid.gallery-grid-col-5 .album-item-container:nth-child(3n+1) {
    clear: none;
  }
  .shortcode-gallery-grid.gallery-grid-col-5 .album-item-container:nth-child(4n+1) {
    clear: none;
  }
  .shortcode-gallery-grid.gallery-grid-col-5 .album-item-container:nth-child(5n+1) {
    clear: left;
  }
  .shortcode-gallery-grid.gallery-grid-col-6 .album-item-container {
    width: 16.65%;
  }
  .shortcode-gallery-grid.gallery-grid-col-6 .album-item-container:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-gallery-grid.gallery-grid-col-6 .album-item-container:nth-child(3n+1) {
    clear: none;
  }
  .shortcode-gallery-grid.gallery-grid-col-6 .album-item-container:nth-child(4n+1) {
    clear: none;
  }
  .shortcode-gallery-grid.gallery-grid-col-6 .album-item-container:nth-child(5n+1) {
    clear: none;
  }
  .shortcode-gallery-grid.gallery-grid-col-6 .album-item-container:nth-child(6n+1) {
    clear: left;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	34. Wolf Videos
*/
.wolf-videos-not-found {
  margin: 50px auto;
  text-align: center;
}

.videos-layout-fullwidth.videos-padding-yes .content-inner {
  padding: 10px;
}
.videos-layout-fullwidth.videos-padding-yes #videos-filter {
  padding-top: 10px;
  padding-left: 0;
}

.videos-padding-yes .video {
  padding: 10px;
}
.videos-padding-yes .videos {
  width: calc(100% + 20px );
  margin-left: -10px !important;
}

.videos-padding-no #videos-filter {
  padding-bottom: 10px;
}
.videos-padding-no.videos-layout-fullwidth #videos-filter-container {
  padding: 5px 0;
}
.videos-padding-no.videos-layout-fullwidth #videos-filter {
  padding-top: 15px;
  padding-left: 15px;
  padding-bottom: 0;
}

.single-video .entry-content {
  padding-top: 0;
  max-width: none;
}

.video-item-container img {
  width: 100%;
}

/* Hover effect */
.video-thumb {
  display: block;
  position: relative;
}

.video-title {
  display: block;
  text-align: center;
  position: absolute;
  width: 100%;
  z-index: 5;
  bottom: 0;
  left: 0;
  vertical-align: middle;
  padding: 5px;
  bottom: -100%;
  background: rgba(0, 0, 0, 0.4);
  color: #FFF;
}
.video-title .video-heading {
  margin-top: 0;
  margin-bottom: 0;
  color: #FFF;
}

.play-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: url(../img/play.png) no-repeat center center;
  background-size: 80px 80px;
  z-index: 10;
  opacity: 0.66;
}

.video-item {
  position: relative;
}
.video-item .video-thumb {
  overflow: hidden;
}
.video-item img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.video-item img,
.video-item .video-title,
.video-item .play-overlay {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}
.video-item:hover .play-overlay {
  opacity: 1;
  top: -15px;
}
.video-item:hover img {
  -webkit-transform: scale(1.3) translateY(-15px);
  -ms-transform: scale(1.3) translateY(-15px);
  transform: scale(1.3) translateY(-15px);
  -webkit-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
}
.video-item:hover .video-title {
  bottom: 0;
}

.shortcode-video-grid {
  zoom: 1;
}
.shortcode-video-grid:before, .shortcode-video-grid:after {
  content: "";
  display: table;
}
.shortcode-video-grid:after {
  clear: both !important;
}
.shortcode-video-grid img {
  width: 100%;
}

.shortcode-video-padding-yes {
  width: calc(100% + 20px );
  margin-left: -10px !important;
}
.shortcode-video-padding-yes .video {
  padding: 10px;
}

@media screen and (min-width: 500px) {
  .videos-columns-2 .video,
  .videos-columns-3 .video,
  .videos-columns-4 .video,
  .videos-columns-5 .video,
  .videos-columns-6 .video {
    float: left;
    width: 50%;
  }

  .shortcode-video-grid.video-grid-col-2 .video, .shortcode-video-grid.video-grid-col-3 .video, .shortcode-video-grid.video-grid-col-4 .video, .shortcode-video-grid.video-grid-col-5 .video, .shortcode-video-grid.video-grid-col-6 .video {
    float: left;
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  .videos-columns-3 .video,
  .videos-columns-6 .video {
    width: 33.33%;
  }
  .videos-columns-3 .video:nth-child(2n+1),
  .videos-columns-6 .video:nth-child(2n+1) {
    clear: none;
  }
  .videos-columns-3 .video:nth-child(3n+1),
  .videos-columns-6 .video:nth-child(3n+1) {
    clear: left;
  }

  .videos-columns-4 .video {
    width: 25%;
  }
  .videos-columns-4 .video:nth-child(2n+1) {
    clear: none;
  }
  .videos-columns-4 .video:nth-child(4n+1) {
    clear: left;
  }

  .shortcode-video-grid.video-grid-col-3 .video, .shortcode-video-grid.video-grid-col-6 .video {
    width: 33.33%;
  }
  .shortcode-video-grid.video-grid-col-3 .video:nth-child(2n+1), .shortcode-video-grid.video-grid-col-6 .video:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-video-grid.video-grid-col-3 .video:nth-child(3n+1), .shortcode-video-grid.video-grid-col-6 .video:nth-child(3n+1) {
    clear: left;
  }
  .shortcode-video-grid.video-grid-col-4 .video {
    width: 25%;
  }
  .shortcode-video-grid.video-grid-col-4 .video:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-video-grid.video-grid-col-4 .video:nth-child(4n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1200px) {
  .videos-columns-5 .video {
    width: 20%;
  }
  .videos-columns-5 .video:nth-child(2n+1) {
    clear: none;
  }
  .videos-columns-5 .video:nth-child(3n+1) {
    clear: none;
  }
  .videos-columns-5 .video:nth-child(4n+1) {
    clear: none;
  }
  .videos-columns-5 .video:nth-child(5n+1) {
    clear: left;
  }

  .videos-columns-6 .video {
    width: 16.65%;
  }
  .videos-columns-6 .video:nth-child(2n+1) {
    clear: none;
  }
  .videos-columns-6 .video:nth-child(3n+1) {
    clear: none;
  }
  .videos-columns-6 .video:nth-child(4n+1) {
    clear: none;
  }
  .videos-columns-6 .video:nth-child(5n+1) {
    clear: none;
  }
  .videos-columns-6 .video:nth-child(6n+1) {
    clear: left;
  }

  .shortcode-video-grid.video-grid-col-5 .video {
    width: 20%;
  }
  .shortcode-video-grid.video-grid-col-5 .video:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-video-grid.video-grid-col-5 .video:nth-child(3n+1) {
    clear: none;
  }
  .shortcode-video-grid.video-grid-col-5 .video:nth-child(4n+1) {
    clear: none;
  }
  .shortcode-video-grid.video-grid-col-5 .video:nth-child(5n+1) {
    clear: left;
  }
  .shortcode-video-grid.video-grid-col-6 .video {
    width: 16.65%;
  }
  .shortcode-video-grid.video-grid-col-6 .video:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-video-grid.video-grid-col-6 .video:nth-child(3n+1) {
    clear: none;
  }
  .shortcode-video-grid.video-grid-col-6 .video:nth-child(4n+1) {
    clear: none;
  }
  .shortcode-video-grid.video-grid-col-6 .video:nth-child(5n+1) {
    clear: none;
  }
  .shortcode-video-grid.video-grid-col-6 .video:nth-child(6n+1) {
    clear: left;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	35. Wolf Discography
*/
/* Add padding for the standard display with the full width layout */
.discography-layout-fullwidth.discography-display-list .content-inner,
.discography-layout-fullwidth.discography-padding-yes[class*="discography-display-grid-"] .content-inner {
  padding: 50px;
}

.discography-display-grid-jake article.release .entry-thumbnail,
.shortcode-release-single article.release .entry-thumbnail,
.shortcode-release-grid article.release .entry-thumbnail {
  position: relative;
  overflow: hidden;
}
.discography-display-grid-jake article.release .entry-thumbnail span.release-image-container,
.shortcode-release-single article.release .entry-thumbnail span.release-image-container,
.shortcode-release-grid article.release .entry-thumbnail span.release-image-container {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 0;
}
.discography-display-grid-jake article.release .entry-thumbnail span.release-image-container:before,
.shortcode-release-single article.release .entry-thumbnail span.release-image-container:before,
.shortcode-release-grid article.release .entry-thumbnail span.release-image-container:before {
  -webkit-transition: opacity ease .2s;
  transition: opacity ease .2s;
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  z-index: 1;
}
.discography-display-grid-jake article.release .entry-thumbnail img,
.shortcode-release-single article.release .entry-thumbnail img,
.shortcode-release-grid article.release .entry-thumbnail img {
  width: 100%;
  opacity: 1 !important;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.discography-display-grid-jake article.release .entry-thumbnail h3,
.shortcode-release-single article.release .entry-thumbnail h3,
.shortcode-release-grid article.release .entry-thumbnail h3 {
  z-index: 3;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 0;
  top: 50%;
  margin-top: -24px;
  display: block;
  position: absolute;
  color: #FFF;
  padding: 10px;
  width: 100%;
  text-align: center;
}
.discography-display-grid-jake article.release .entry-thumbnail h3 .star-rating,
.shortcode-release-single article.release .entry-thumbnail h3 .star-rating,
.shortcode-release-grid article.release .entry-thumbnail h3 .star-rating {
  text-transform: none !important;
  font-weight: normal !important;
}
.discography-display-grid-jake article.release .entry-thumbnail:hover span.release-image-container:before,
.shortcode-release-single article.release .entry-thumbnail:hover span.release-image-container:before,
.shortcode-release-grid article.release .entry-thumbnail:hover span.release-image-container:before {
  opacity: 0.44;
}
.discography-display-grid-jake article.release .entry-thumbnail:hover h3,
.shortcode-release-single article.release .entry-thumbnail:hover h3,
.shortcode-release-grid article.release .entry-thumbnail:hover h3 {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.discography-display-grid-jake article.release .entry-thumbnail:hover img,
.shortcode-release-single article.release .entry-thumbnail:hover img,
.shortcode-release-grid article.release .entry-thumbnail:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
}

.discography-display-grid-classic .release-title {
  font-size: 20px;
}

[class*="discography-display-grid-"] .wolf-release-meta,
[class*="discography-display-grid-"] .entry-title,
[class*="discography-display-grid-"] p {
  display: none;
}

.discography-padding-yes[class*="discography-display-grid-"] .release {
  padding: 10px;
}
.discography-padding-yes[class*="discography-display-grid-"] #content {
  width: calc(100% + 20px );
  margin-left: -10px !important;
}

.discography-display-list .wolf-release .more-link {
  margin-top: 20px;
}
.discography-display-list .wolf-release .release-image-container .release-title {
  display: none;
}
.discography-display-list .wolf-release .release-title {
  font-size: 24px;
}

.no-release {
  text-align: center;
}

.single-release .content-wrapper {
  padding-bottom: 50px;
}
.single-release .wolf-release {
  margin-bottom: 50px;
}
.single-release .entry-thumbnail img {
  width: 100%;
}
.single-release .entry-content {
  width: 100%;
  max-width: none;
}

.wolf-release-buttons {
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
}
.wolf-release-buttons .wolf-release-button a {
  margin-left: 0;
  margin-right: 0;
}

.wolf-release-itunes:before,
.wolf-release-amazon:before,
.wolf-release-buy:before {
  position: relative;
  font-weight: normal;
}

.wolf-release-itunes:before {
  content: "\f179";
  font-family: FontAwesome;
  margin-right: 5px;
}

.wolf-release-amazon:before {
  content: "\f270";
  font-family: FontAwesome;
  margin-right: 5px;
  top: 3px;
}

.wolf-release-buy:before {
  content: "\f174";
  font-family: Dashicons;
  margin-right: 5px;
  top: 2px;
}

.shortcode-release-grid {
  zoom: 1;
}
.shortcode-release-grid:before, .shortcode-release-grid:after {
  content: "";
  display: table;
}
.shortcode-release-grid:after {
  clear: both !important;
}
.shortcode-release-grid .release .entry-title {
  display: none;
}
.shortcode-release-grid .release .release-thumbnail {
  margin-bottom: 0 !important;
}
.shortcode-release-grid .wolf-release-buttons {
  display: none;
}
.shortcode-release-grid img {
  width: 100%;
}

.shortcode-release-single .entry-title {
  display: none;
}

.shortcode-release-padding-yes {
  width: calc(100% + 20px );
  margin-left: -10px !important;
}
.shortcode-release-padding-yes .release {
  padding: 10px;
}

.release-navigation a {
  display: block;
  width: 50%;
  float: left;
}

.release-navigation a[rel="next"] {
  text-align: right;
}

/* Page title */
.single-release.post-is-title-text.post-is-title-area .entry-content .entry-title {
  display: none;
}

/* Discography widget */
.widget_discography a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding: 0px 5px;
  width: 50%;
}
.widget_discography a:after, .widget_discography a:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.widget_discography a img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: block;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
.widget_discography a:hover img {
  opacity: .88;
  -webkit-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
}
.widget_discography a.release-widget-first-child {
  width: 100%;
  margin-bottom: 3px;
}

/* Last release widget */
.widget_last_release .entry-title {
  display: none;
}

@media screen and (min-width: 500px) {
  [class*="discography-display-grid-"].discography-columns-2 .release, [class*="discography-display-grid-"].discography-columns-3 .release, [class*="discography-display-grid-"].discography-columns-4 .release, [class*="discography-display-grid-"].discography-columns-5 .release, [class*="discography-display-grid-"].discography-columns-6 .release {
    float: left;
    width: 50%;
  }

  .shortcode-release-grid.release-grid-col-2 .release, .shortcode-release-grid.release-grid-col-3 .release, .shortcode-release-grid.release-grid-col-4 .release, .shortcode-release-grid.release-grid-col-5 .release, .shortcode-release-grid.release-grid-col-6 .release {
    float: left;
    width: 50%;
  }

  .wolf-release-buttons {
    display: table;
    width: 100%;
  }

  .wolf-release-button {
    display: table-cell;
  }

  .wolf-release-buttons {
    margin-top: 5px;
  }
  .wolf-release-buttons .wolf-release-button a {
    margin-left: 3px;
    margin-right: 3px;
    display: block;
  }
  .wolf-release-buttons .wolf-release-button:first-child a {
    margin-left: 0;
  }
  .wolf-release-buttons .wolf-release-button:last-child a {
    margin-right: 0;
  }
  .wolf-release-buttons .wolf-release-button .wolf-release-itunes {
    position: relative;
    top: -0.5px;
  }
}
@media screen and (min-width: 800px) {
  .single-release .wolf-release .entry-thumbnail {
    float: left;
    width: 49%;
    margin-right: 1%;
  }
  .single-release .wolf-release .entry-content {
    float: left;
    width: 49%;
    margin-left: 1%;
    padding-top: 0;
  }

  [class*="discography-display-grid-"].discography-columns-3 .release, [class*="discography-display-grid-"].discography-columns-6 .release {
    width: 33.33%;
  }
  [class*="discography-display-grid-"].discography-columns-3 .release:nth-child(2n+1), [class*="discography-display-grid-"].discography-columns-6 .release:nth-child(2n+1) {
    clear: none;
  }
  [class*="discography-display-grid-"].discography-columns-3 .release:nth-child(3n+1), [class*="discography-display-grid-"].discography-columns-6 .release:nth-child(3n+1) {
    clear: left;
  }
  [class*="discography-display-grid-"].discography-columns-4 .release {
    width: 25%;
  }
  [class*="discography-display-grid-"].discography-columns-4 .release:nth-child(2n+1) {
    clear: none;
  }
  [class*="discography-display-grid-"].discography-columns-4 .release:nth-child(4n+1) {
    clear: left;
  }

  .shortcode-release-grid.release-grid-col-3 .release, .shortcode-release-grid.release-grid-col-6 .release {
    width: 33.33%;
  }
  .shortcode-release-grid.release-grid-col-3 .release:nth-child(2n+1), .shortcode-release-grid.release-grid-col-6 .release:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-release-grid.release-grid-col-3 .release:nth-child(3n+1), .shortcode-release-grid.release-grid-col-6 .release:nth-child(3n+1) {
    clear: left;
  }
  .shortcode-release-grid.release-grid-col-4 .release {
    width: 25%;
  }
  .shortcode-release-grid.release-grid-col-4 .release:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-release-grid.release-grid-col-4 .release:nth-child(4n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1200px) {
  [class*="discography-display-grid-"].discography-columns-5 .release {
    width: 20%;
  }
  [class*="discography-display-grid-"].discography-columns-5 .release:nth-child(2n+1) {
    clear: none;
  }
  [class*="discography-display-grid-"].discography-columns-5 .release:nth-child(3n+1) {
    clear: none;
  }
  [class*="discography-display-grid-"].discography-columns-5 .release:nth-child(4n+1) {
    clear: none;
  }
  [class*="discography-display-grid-"].discography-columns-5 .release:nth-child(5n+1) {
    clear: left;
  }
  [class*="discography-display-grid-"].discography-columns-6 .release {
    width: 16.65%;
  }
  [class*="discography-display-grid-"].discography-columns-6 .release:nth-child(2n+1) {
    clear: none;
  }
  [class*="discography-display-grid-"].discography-columns-6 .release:nth-child(3n+1) {
    clear: none;
  }
  [class*="discography-display-grid-"].discography-columns-6 .release:nth-child(4n+1) {
    clear: none;
  }
  [class*="discography-display-grid-"].discography-columns-6 .release:nth-child(5n+1) {
    clear: none;
  }
  [class*="discography-display-grid-"].discography-columns-6 .release:nth-child(6n+1) {
    clear: left;
  }

  .shortcode-release-grid.release-grid-col-5 .release {
    width: 20%;
  }
  .shortcode-release-grid.release-grid-col-5 .release:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-release-grid.release-grid-col-5 .release:nth-child(3n+1) {
    clear: none;
  }
  .shortcode-release-grid.release-grid-col-5 .release:nth-child(4n+1) {
    clear: none;
  }
  .shortcode-release-grid.release-grid-col-5 .release:nth-child(5n+1) {
    clear: left;
  }
  .shortcode-release-grid.release-grid-col-6 .release {
    width: 16.65%;
  }
  .shortcode-release-grid.release-grid-col-6 .release:nth-child(2n+1) {
    clear: none;
  }
  .shortcode-release-grid.release-grid-col-6 .release:nth-child(3n+1) {
    clear: none;
  }
  .shortcode-release-grid.release-grid-col-6 .release:nth-child(4n+1) {
    clear: none;
  }
  .shortcode-release-grid.release-grid-col-6 .release:nth-child(5n+1) {
    clear: none;
  }
  .shortcode-release-grid.release-grid-col-6 .release:nth-child(6n+1) {
    clear: left;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	36. Wolf Events
*/
.wolf-tour-dates h2 {
  margin-top: 0;
}

table.wolf-shows {
  margin-bottom: 40px !important;
}

.wolf-custom-show-date .wolf-show-day {
  font-size: 28px;
}
.wolf-custom-show-date .wolf-show-month {
  font-size: 16px;
}
.wolf-custom-show-date .wolf-show-year {
  font-size: 15px;
}

.wolf-show-day,
.wolf-show-month,
.wolf-show-year {
  display: block;
}

.wolf-shows {
  font-size: 14px;
  text-transform: uppercase;
}
.wolf-shows .wolf-show-facebook {
  text-align: center;
  display: block;
  width: 22px;
  height: 22px;
  padding: 5px 5px 5px 6px;
  color: white !important;
  background: #3b5998;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.wolf-shows .wolf-show-facebook:before {
  content: "\f09a";
}

.wolf-show-action {
  text-align: right !important;
}

.wolf-past-shows .wolf-show-facebook {
  display: none;
}

.wolf-show-action {
  font-weight: 700;
}

.wolf-show-cancelled {
  opacity: 0.4;
}

.wolf-show-ticket-button {
  letter-spacing: 1px;
  font-weight: 700;
}

/* Single showp page */
.show-meta .entry-thumbnail img {
  width: 100%;
  height: auto;
}

.show-meta .wolf-show-facebook-button,
.show-meta .wolf-show-buy-ticket-button {
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 1em 1.4em;
  margin: 10px 0;
  position: relative;
  line-height: 1 !important;
  font-style: normal !important;
  vertical-align: middle;
  -webkit-transition: ease .1s;
  transition: ease .1s;
  text-shadow: none !important;
  text-align: center;
  font-weight: 700;
  text-decoration: none !important;
  letter-spacing: 0;
  color: white !important;
}
.show-meta .wolf-show-facebook-button:before,
.show-meta .wolf-show-buy-ticket-button:before {
  color: #FFF;
}
.show-meta .wolf-show-facebook-button:hover,
.show-meta .wolf-show-buy-ticket-button:hover {
  opacity: 0.8;
}
.show-meta .wolf-show-facebook-button .fa,
.show-meta .wolf-show-buy-ticket-button .fa {
  margin-right: 5px;
}

.show-meta .wolf-show-facebook-button {
  font-family: "Open Sans";
}

.show-meta .wolf-show-facebook-button {
  border: 1px solid #2d4373;
  background: #3b5998;
}

.show-meta .wolf-show-buy-ticket-button {
  border: 1px solid #917119;
  background: #bc9321;
}

.wolf-show-mobile-show {
  display: block;
}

.wolf-show-entry-link:hover {
  color: #bc9321 !important;
}

.single-show .post-title-divider {
  margin: 30px 0 30px;
}

.wolf-show-ticket-button,
.wolf-show-facebook-button {
  margin-left: 0;
  margin-right: 5px;
}

.show-meta .wolf-show-facebook-button {
  background: #3b5998 !important;
  border-color: #3b5998 !important;
  color: white !important;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
.show-meta .wolf-show-facebook-button:hover {
  color: white !important;
  opacity: 0.8;
}

.wolf-show-ticket-text {
  text-transform: uppercase;
  font-weight: 700;
}

#wolf-show-details {
  margin-bottom: 30px;
}
#wolf-show-details h3 {
  margin-top: 0;
}

#wolf-show-meta {
  font-weight: 700;
}
#wolf-show-meta .entry-thumbnail {
  margin-bottom: 15px;
}
#wolf-show-meta .entry-thumbnail img {
  width: 100%;
}
#wolf-show-meta .wolf-show-actions {
  margin-top: 20px;
  margin-bottom: 20px;
}

.single-show .wolf-show .entry-header {
  display: none;
}
.single-show .wolf-show-place {
  font-size: 18px;
}

/* Widget */
.wolf-upcoming-shows-widget-table .wolf-show-ticket-text,
.wolf-upcoming-shows-widget-table .wolf-show-label {
  display: block;
  margin-top: 8px;
}
.wolf-upcoming-shows-widget-table .wolf-show-ticket-text {
  color: #bc9321;
}
.wolf-upcoming-shows-widget-table .wolf-show-ticket-text:hover {
  text-decoration: underline;
}

table.wolf-shows.wolf-upcoming-shows-widget-table {
  margin-bottom: 15px !important;
}

.wolf-events-table {
  text-transform: uppercase;
}

.we-list-title {
  font-size: 24px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	37. Wolf Music Network
*/
.music-social-icons-container {
  padding: 20px;
  background: #333;
}

.wolf-music-logo-link img {
  -webkit-transition: opacity .2 ease;
  transition: opacity .2 ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.wolf-music-logo-link:hover img {
  opacity: 0.8 !important;
}

/* Wolf Gram */
.wolf-instagram-item-container .wolf-instagram-item .wolf-instagram-overlay {
  background-size: 32px !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	38. Wolf Recipes
*/
#wolf-recipe-box {
  zoom: 1;
  margin-top: 0;
  margin-bottom: 0 !important;
  max-width: 1140px;
  background: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.22);
  position: relative;
}

.recipe-box-has-header .wr-recipe-header {
  color: #FFF;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.recipe-box-has-header .wr-recipe-header .wr-title,
.recipe-box-has-header .wr-recipe-header .wr-details {
  position: relative;
  z-index: 5;
}
.recipe-box-has-header .wr-recipe-header .wr-title {
  color: #FFF;
}

.wr-title {
  line-height: 1.5;
  font-size: 24px;
}

.recipe-header-bg {
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  z-index: 0;
  -webkit-filter: blur(8px);
  filter: blur(8px);
}
.recipe-header-bg:before {
  content: ' ';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .33;
}

.wr-recipe-header {
  padding: 35px 30px 45px;
}

.wr-recipe-content {
  padding: 0 30px 30px;
  font-size: 14px;
}
.wr-recipe-content h4 {
  font-size: 16px;
}

.wr-details > span {
  font-weight: 400;
  margin-right: 6px !important;
}
.wr-details > span:after {
  content: '\2022';
  margin-left: 6px;
}
.wr-details > span:last-child:after {
  display: none;
}

.wr-recipe-footer {
  padding: 0 30px 30px;
}

.wr-ingredients,
.wr-instructions,
.wr-note {
  margin-top: 50px !important;
}

ul.wr-ingredients-list,
ol.wr-instructions-list {
  margin-left: 0;
  padding-left: 0;
}
ul.wr-ingredients-list li,
ol.wr-instructions-list li {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

ul.wr-ingredients-list li {
  padding: 9px 14px 10px;
  font-size: 14px;
  margin: 0;
  list-style: none;
}
ul.wr-ingredients-list li:nth-child(odd) {
  background: rgba(0, 0, 0, 0.022);
}

ol.wr-instructions-list li {
  margin-bottom: 20px;
}

.wr-instruction-number {
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #bc9321;
  color: #FFF;
  font-size: 13px;
  margin-top: 4px;
  margin-right: 15px !important;
  float: left;
}
.wr-instruction-number:after {
  display: none;
}

.button-style-default .wr-instruction-number {
  border-radius: 3px;
}

.button-style-round .wr-instruction-number {
  border-radius: 9999em;
}

.wr-instruction-content {
  display: block;
}

.wr-note {
  font-size: 13px;
  line-height: 1.88;
}

.wr-note-title {
  margin-bottom: 15px;
  width: 100% !important;
}

.wr-print-icon {
  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;
}
.wr-print-icon:before {
  font-weight: 400;
  top: 0 !important;
  font-size: 18px;
  background-image: none !important;
  content: "\f02f" !important;
}

.wr-print-icon-top {
  z-index: 15;
  top: 15px !important;
  right: 15px !important;
}

.wr-print-button {
  font-size: 13px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	39. WooCommerce
*/
@font-face {
  font-family: 'star';
  src: url("lib/fonts/star.eot");
  src: url("lib/fonts/star.eot?#iefix") format("embedded-opentype"), url("lib/fonts/star.woff") format("woff"), url("lib/fonts/star.ttf") format("truetype"), url("lib/fonts/star.svg#star") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'WooCommerce';
  src: url("lib/fonts/WooCommerce.eot");
  src: url("lib/fonts/WooCommerce.eot?#iefix") format("embedded-opentype"), url("lib/fonts/WooCommerce.woff") format("woff"), url("lib/fonts/WooCommerce.ttf") format("truetype"), url("lib/fonts/WooCommerce.svg#WooCommerce") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Star rating */
.star-rating {
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  width: 5.4em;
  font-family: 'star';
}
.star-rating:before {
  content: "\73\73\73\73\73";
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.star-rating span:before {
  content: "\53\53\53\53\53";
  top: 0;
  position: absolute;
  left: 0;
}

p.stars {
  position: relative;
  font-size: 1em;
}
p.stars a {
  border-bottom: none !important;
  display: inline-block;
  font-weight: 700;
  margin-right: 1em;
  text-indent: -9999px;
  position: relative;
  color: #fff;
}
p.stars a:hover {
  color: #fff;
}
p.stars a:last-child {
  border-right: 0;
}
p.stars a.star-1, p.stars a.star-2, p.stars a.star-3, p.stars a.star-4, p.stars a.star-5 {
  border-right: 1px solid #ccc;
}
p.stars a.star-1:after, p.stars a.star-2:after, p.stars a.star-3:after, p.stars a.star-4:after, p.stars a.star-5:after {
  font-family: "WooCommerce";
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
}
p.stars a.star-1 {
  width: 2em;
}
p.stars a.star-1:after {
  content: "\e021";
}
p.stars a.star-1:hover:after, p.stars a.star-1.active:after {
  content: "\e020";
}
p.stars a.star-2 {
  width: 3em;
}
p.stars a.star-2:after {
  content: "\e021\e021";
}
p.stars a.star-2:hover:after, p.stars a.star-2.active:after {
  content: "\e020\e020";
}
p.stars a.star-3 {
  width: 4em;
}
p.stars a.star-3:after {
  content: "\e021\e021\e021";
}
p.stars a.star-3:hover:after, p.stars a.star-3.active:after {
  content: "\e020\e020\e020";
}
p.stars a.star-4 {
  width: 5em;
}
p.stars a.star-4:after {
  content: "\e021\e021\e021\e021";
}
p.stars a.star-4:hover:after, p.stars a.star-4.active:after {
  content: "\e020\e020\e020\e020";
}
p.stars a.star-5 {
  width: 6em;
  border: 0;
}
p.stars a.star-5:after {
  content: "\e021\e021\e021\e021\e021";
}
p.stars a.star-5:hover:after, p.stars a.star-5.active:after {
  content: "\e020\e020\e020\e020\e020";
}

.wr-stars > span.wr-star-voted:before, .wr-stars > span.wr-star-voted ~ span:before {
  color: #f5d016 !important;
}

.widget.woocommerce .star-rating {
  margin: 5px 0;
}
.widget.woocommerce .amount {
  font-size: 16px;
}

/* Cart widget */
.widget_shopping_cart .button {
  width: 100%;
  margin: 0;
  margin-bottom: 5px;
}

/* Search widget */
.widget_product_search #s {
  padding-left: 1%;
  padding-right: 1%;
  width: 98%;
}

.widget_product_search #woocommerce-product-search-field {
  margin-bottom: 5px;
}

/* Filter  */
.widget_layered_nav ul li {
  list-style-type: none;
  margin-left: 0;
}
.widget_layered_nav ul li a:before {
  font-size: 14px;
  font-family: Fontawesome;
  content: "\f096";
  margin-right: 8px;
  margin-top: 3px;
}
.widget_layered_nav ul li a:focus:before {
  content: "\f046";
}
.widget_layered_nav ul li.chosen a:before {
  content: "\f046";
}

.widget_layered_nav_filters ul li a {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.widget_layered_nav_filters ul li {
  list-style-type: none;
  margin-left: 0;
  margin-right: 5px;
  display: inline;
}
.widget_layered_nav_filters ul li a {
  display: inline-block;
  padding: 2px 8px;
  opacity: 1;
}
.widget_layered_nav_filters ul li a:before {
  font-size: 14px;
  content: '\00d7';
  margin-right: 5px;
}

body.button-style-default .widget_layered_nav_filters ul li a {
  border-radius: 3px;
}

body.button-style-round .widget_layered_nav_filters ul li a {
  border-radius: 9999em;
}

/* =Cart Sidebar
-------------------------------------------------------------- */
ul.cart_list,
ul.product_list_widget {
  list-style: none outside;
  padding: 0;
  margin: 0;
}
ul.cart_list li,
ul.product_list_widget li {
  padding: 4px 0;
  margin-left: 0 !important;
  margin-bottom: 1.2rem;
  zoom: 1;
  list-style: none;
}
ul.cart_list li:before, ul.cart_list li:after,
ul.product_list_widget li:before,
ul.product_list_widget li:after {
  content: "";
  display: table;
}
ul.cart_list li:after,
ul.product_list_widget li:after {
  clear: both !important;
}
ul.cart_list li a,
ul.product_list_widget li a {
  display: block;
  font-weight: 700;
}
ul.cart_list li img,
ul.product_list_widget li img {
  float: left;
  margin-right: 14px;
  width: auto;
  height: auto;
  max-width: 80px;
}
ul.cart_list li dl,
ul.product_list_widget li dl {
  margin: 0;
  padding-left: 1em;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  zoom: 1;
}
ul.cart_list li dl:before, ul.cart_list li dl:after,
ul.product_list_widget li dl:before,
ul.product_list_widget li dl:after {
  content: "";
  display: table;
}
ul.cart_list li dl:after,
ul.product_list_widget li dl:after {
  clear: both !important;
}
ul.cart_list li dl dt, ul.cart_list li dl dd,
ul.product_list_widget li dl dt,
ul.product_list_widget li dl dd {
  display: inline-block;
  float: left;
  margin-botom: 1em;
}
ul.cart_list li dl dt,
ul.product_list_widget li dl dt {
  font-weight: bold;
  padding: 0 0 .25em 0;
  margin: 0 4px 0 0;
  clear: left;
}
ul.cart_list li dl dd,
ul.product_list_widget li dl dd {
  padding: 0 0 .25em 0;
}
ul.cart_list li dl dd p:last-child,
ul.product_list_widget li dl dd p:last-child {
  margin-bottom: 0;
}
ul.cart_list li .quantity,
ul.product_list_widget li .quantity {
  width: 150px;
}
ul.cart_list li .star-rating,
ul.product_list_widget li .star-rating {
  float: none;
}
ul.cart_list li .reviewer,
ul.product_list_widget li .reviewer {
  font-size: 1.2rem;
}

.widget_shopping_cart .total, .widget_shopping_cart .total {
  border-top: 3px double rgba(0, 0, 0, 0.5);
  padding: 4px 0 0;
}
.widget_shopping_cart .total strong, .widget_shopping_cart .total strong {
  min-width: 40px;
  display: inline-block;
}
.widget_shopping_cart .buttons, .widget_shopping_cart .buttons {
  zoom: 1;
  padding: 0;
}
.widget_shopping_cart .buttons:before, .widget_shopping_cart .buttons:after, .widget_shopping_cart .buttons:before, .widget_shopping_cart .buttons:after {
  content: "";
  display: table;
}
.widget_shopping_cart .buttons:after, .widget_shopping_cart .buttons:after {
  clear: both !important;
}
.widget_shopping_cart .remove, .widget_shopping_cart .remove {
  text-align: right;
}

/**
 * Rating Filter Widget
 */
.widget_rating_filter ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}
.widget_rating_filter ul li {
  margin-left: 0;
  overflow: hidden;
  *zoom: 1;
  padding: 0 0 1px;
  list-style: none;
  font-size: 15px;
}
.widget_rating_filter ul li a {
  padding: 1px 0;
  text-decoration: none;
}
.widget_rating_filter ul li .star-rating {
  float: none;
  display: inline-block;
  position: relative;
  top: 5px;
}

/* =Price Filter Widget
-------------------------------------------------------------- */
.widget_price_filter .widget-title {
  border: none;
  padding-bottom: 0;
}
.widget_price_filter .button {
  display: inline-block;
  width: auto;
  float: left;
  margin-top: 5px;
}
.widget_price_filter .price_label {
  display: inline-block;
  position: relative;
  top: 8px;
}
.widget_price_filter .price_slider {
  margin-bottom: 1em;
}
.widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4em;
  font-size: 0.8751em;
}
.widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
}
.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-radius: 14px;
  cursor: pointer;
  background: #333;
  outline: none;
  top: -4px;
}
.widget_price_filter .ui-slider .ui-slider-handle:last-child {
  margin-left: -1em;
}
.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background: #bc9321;
  opacity: .88;
}
.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: rgba(0, 0, 0, 0.3);
}
.widget_price_filter .ui-slider-horizontal {
  height: .5em;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
  right: -1px;
}

/* =Product Categories Widget
-------------------------------------------------------------- */
.widget_product_categories ul.children {
  margin-left: 15px;
}

.woocommerce-result-count {
  float: left;
  width: 50%;
  margin-top: 10px;
}

.woocommerce-ordering {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  margin-top: 0;
  float: right;
  text-align: right;
  width: 50%;
  max-width: 320px;
}
.woocommerce-ordering:after {
  zoom: 1;
  content: "";
  display: table;
  clear: both;
}

ul.products {
  margin-left: 0;
}

.products {
  clear: both;
  zoom: 1;
  margin: 0 !important;
  padding: 0 !important;
  margin-left: 0;
}
.products:before, .products:after {
  content: "";
  display: table;
}
.products:after {
  clear: both;
}
.products mark {
  background: #FFF;
  color: inherit;
}
.products li {
  list-style-type: none !important;
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
.products li .product-thumbnail-container {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 0;
}
.products li .product-thumbnail-container:before {
  -webkit-transition: opacity ease .2s;
  transition: opacity ease .2s;
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: #000;
  opacity: 0;
  z-index: 1;
}
.products li .product-thumbnail-container .product-second-thumbnail {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .4s ease-in-out;
  transition: opacity .4s ease-in-out;
}
.products li img {
  width: 100%;
  opacity: 1 !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.products li h3 {
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
}
.products li .woocommerce-LoopProduct-link {
  position: relative;
  display: block;
}
.products li .price {
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
  min-height: 24px;
}
.products li .price del span {
  opacity: 0.6;
  font-size: 11px;
}
.products li .price ins {
  text-decoration: none;
  font-weight: 700;
}
.products li .star-rating {
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
  text-transform: none !important;
  font-weight: normal !important;
}
.products li .button {
  margin-top: 5px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.products li .added_to_cart {
  display: block;
  margin-top: 0;
  position: relative;
  z-index: 99;
}
.products li .fa {
  margin-left: 8px;
  position: relative;
  top: 0;
}
.products li .woocommerce-loop-product__title {
  font-size: 16px;
}

body.shop-display-grid .products li .product-thumbnail-container,
body.shop-display-list .products li .product-thumbnail-container {
  -webkit-transition: ease .5s;
  transition: ease .5s;
}
body.shop-display-grid .products li .woocommerce-LoopProduct-link h3,
body.shop-display-list .products li .woocommerce-LoopProduct-link h3 {
  margin-top: 8px;
}
body.shop-display-grid .products li .woocommerce-LoopProduct-link:hover .product-second-thumbnail,
body.shop-display-list .products li .woocommerce-LoopProduct-link:hover .product-second-thumbnail {
  opacity: 1;
}
body.shop-display-grid .products li .woocommerce-LoopProduct-link:hover .product-thumbnail-container,
body.shop-display-list .products li .woocommerce-LoopProduct-link:hover .product-thumbnail-container {
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.44);
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.44);
}

body.shop-display-grid .products li .woocommerce-loop-product__title {
  margin-top: 15px;
}

body.shop-display-list .products li .product-thumbnail-container {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

body.shop-display-loren .products li .woocommerce-LoopProduct-link {
  position: relative;
  display: block;
}
body.shop-display-loren .products li .woocommerce-LoopProduct-link .product-title-container {
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  margin-top: 0;
  margin-bottom: 0;
  top: 50%;
  margin-top: -24px;
  display: block;
  position: absolute;
  color: #FFF;
  z-index: 3;
  padding: 10px;
  width: 100%;
}
body.shop-display-loren .products li .woocommerce-LoopProduct-link .product-title-container h3 {
  color: #FFF;
}
body.shop-display-loren .products li .woocommerce-LoopProduct-link .product-title-container .star-rating {
  color: #f5d016;
}
body.shop-display-loren .products li .woocommerce-LoopProduct-link:hover .product-thumbnail-container:before {
  opacity: 0.44;
}
body.shop-display-loren .products li .woocommerce-LoopProduct-link:hover .product-title-container {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
body.shop-display-loren .products li .woocommerce-LoopProduct-link:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
}

body.shop-display-agathe .products li .woocommerce-LoopProduct-link {
  margin-bottom: 10px;
}
body.shop-display-agathe .products li .woocommerce-LoopProduct-link .product-title-container {
  position: absolute;
  padding: 10px;
  z-index: 3;
  display: block;
  top: 0;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
body.shop-display-agathe .products li .woocommerce-LoopProduct-link .product-title-container .star-rating {
  color: #f5d016;
}
body.shop-display-agathe .products li .woocommerce-LoopProduct-link .product-title-container .product-title-inner {
  display: table;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.66);
  padding: 10px;
}
body.shop-display-agathe .products li .woocommerce-LoopProduct-link .product-title-container .product-title-cell {
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  opacity: 0;
}
body.shop-display-agathe .products li .woocommerce-LoopProduct-link .product-title-container .product-title-cell h3,
body.shop-display-agathe .products li .woocommerce-LoopProduct-link .product-title-container .product-title-cell .price {
  color: #333333 !important;
}
body.shop-display-agathe .products li .woocommerce-LoopProduct-link:hover .product-title-container {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
body.shop-display-agathe .products li .woocommerce-LoopProduct-link:hover .product-title-cell {
  opacity: 1;
}

body.shop-display-maurice .products li .woocommerce-LoopProduct-link {
  margin-bottom: 10px;
}
body.shop-display-maurice .products li .woocommerce-LoopProduct-link .product-title-container {
  position: absolute;
  padding: 10px;
  z-index: 3;
  display: block;
  top: 0;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
body.shop-display-maurice .products li .woocommerce-LoopProduct-link .product-title-container .star-rating {
  color: #f5d016;
}
body.shop-display-maurice .products li .woocommerce-LoopProduct-link .product-title-container .product-title-inner {
  display: table;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.66);
  padding: 10px;
}
body.shop-display-maurice .products li .woocommerce-LoopProduct-link .product-title-container .product-title-cell {
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  opacity: 0;
}
body.shop-display-maurice .products li .woocommerce-LoopProduct-link .product-title-container .product-title-cell h3,
body.shop-display-maurice .products li .woocommerce-LoopProduct-link .product-title-container .product-title-cell .price {
  color: white !important;
}
body.shop-display-maurice .products li .woocommerce-LoopProduct-link:hover .product-title-container {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
body.shop-display-maurice .products li .woocommerce-LoopProduct-link:hover .product-title-cell {
  opacity: 1;
}

body.shop-display-list .products li {
  width: 100% !important;
  float: none !important;
  text-align: left;
}
body.shop-display-list .products li h3 {
  text-align: left;
}
body.shop-display-list .products li .star-rating {
  margin-left: 0 !important;
  color: #f5d016;
}
body.shop-display-list .products li .button {
  width: auto;
}
body.shop-display-list .products li p {
  margin-bottom: 1em;
}

/* Sale labels */
span.onsale {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  background: #bc9321;
  position: absolute;
  z-index: 10;
  border-radius: 0;
  left: 0;
  top: 0;
  padding: 5px 20px;
  width: auto;
  height: auto;
  line-height: 35px;
  font-size: 15px;
  color: #FFF;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.woocommerce-tabs h2,
.related.products h2 {
  font-size: 18px;
}

.woocommerce-product-gallery__trigger {
  display: none;
}

#reviews ol.commentlist {
  padding: 0;
}
#reviews #comments,
#reviews #review_form_wrapper {
  margin: 0 auto;
  max-width: 750px;
}
#reviews .meta strong {
  color: #FFF;
}

.single-product .entry-content {
  width: 100% !important;
}
.single-product .flex-prev,
.single-product .flex-next {
  width: 50px;
  background-color: rgba(0, 0, 0, 0.66) !important;
  background-position: 45% 50%;
}
.single-product .flex-prev {
  padding-right: 5px;
}
.single-product .flex-next {
  padding-left: 5px;
}

.wc-forward:before {
  content: "\f174";
  font-family: Dashicons;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.wc-forward.checkout:before {
  top: 0;
  font-family: FontAwesome;
  content: "\f08b";
}

.single-product .product {
  position: relative;
}
.single-product .product .woocommerce-product-gallery__wrapper {
  margin: 0;
  padding: 0;
}
.single-product .product .star-rating {
  margin: 5px 0;
}
.single-product .product .out-of-stock {
  color: red;
}
.single-product .product .woocommerce-main-image:before {
  display: none;
}
.single-product .product .product_title {
  line-height: 1;
  margin-bottom: 15px;
}
.single-product .product .flexslider {
  margin-bottom: 0;
}
.single-product .product .images {
  margin-bottom: 2em;
}
.single-product .product .images .thumbnails {
  width: calc(100% + 6px );
  margin-left: -3px !important;
  padding-top: 2px;
}
.single-product .product .images .thumbnails img {
  padding: 3px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /*&:hover{
  	opacity: .88;
  }*/
}
.single-product .product .images .thumbnails a {
  width: 25%;
}
.single-product .product .images .thumbnails a:before {
  display: none;
}
.single-product .product .images .thumbnails a:hover img {
  opacity: .88;
}
.single-product .product .summary {
  margin-bottom: 2em;
}
.single-product .product .summary .button {
  margin-top: 0;
}
.single-product .product .summary p {
  margin-top: 0;
  margin-bottom: 1em;
}
.single-product .product .summary h1 {
  font-size: 3rem;
}
.single-product .product .summary .woocommerce-product-rating {
  margin-top: 20px;
  margin-bottom: 20px;
}
.single-product .product .summary .star-rating {
  margin-bottom: 10px;
}
.single-product .product .summary .star-rating {
  margin-top: 0.5rem;
}
.single-product .product .summary .amount {
  font-size: 2rem;
}
.single-product .product .summary table.variations {
  font-size: inherit;
}
.single-product .product .summary table.variations td {
  width: 100%;
  margin: 0;
  padding: 0 !important;
  line-height: 30px;
}
.single-product .product .summary table.variations td.value select {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.single-product .product .summary .product_meta {
  margin-top: 1.5rem;
}
.single-product .product .summary .product_meta span:not(.sku) {
  display: block;
  font-weight: 700;
}
.single-product .product .summary .product_meta span:not(.sku) a {
  font-weight: 400;
}
.single-product .product .summary .button {
  width: auto !important;
  height: 48px;
}
.single-product .product .summary .price ins {
  text-decoration: none;
  font-weight: 700;
}
.single-product .product .share-box {
  text-align: left;
}
.single-product .product .share-box .share-link-text {
  display: none;
}
.single-product .product .related.products {
  margin-left: 0 !important;
  width: 100%;
}
.single-product .product .add_to_wishlist:before {
  font-family: 'line-icons';
  content: "\e600";
  position: relative;
  top: 2px;
  margin-right: 3px;
}

/* Tabs on the product page */
.woocommerce-tabs {
  clear: both;
  margin-bottom: 2em;
}
.woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0 0 0 1em;
  margin: 0 0 1.618em;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
}
.woocommerce-tabs ul.tabs li {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 0;
  padding: .6em 1em;
}
.woocommerce-tabs ul.tabs li a {
  padding: .5em 0;
  color: #888;
  text-shadow: none;
}
.woocommerce-tabs ul.tabs li.active {
  background: #bc9321;
}
.woocommerce-tabs ul.tabs li.active a {
  color: white !important;
}
.woocommerce-tabs .panel {
  font-size: 0.9em;
  padding: 3rem;
  padding-top: 50px;
  background: #bc9321;
  color: white;
}
.woocommerce-tabs .panel h1, .woocommerce-tabs .panel h2, .woocommerce-tabs .panel h3 {
  color: white;
}

#reviews .stars a {
  color: white !important;
}
#reviews .form-submit input#submit {
  background: none;
  border: 2px solid white !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-left: 0;
  top: 0 !important;
}
#reviews .form-submit input#submit:hover, #reviews .form-submit input#submit:focus, #reviews .form-submit input#submit:active {
  top: 0 !important;
  background: white !important;
  border-color: white !important;
  color: #666666 !important;
}
#reviews textarea#comment {
  min-height: 180px;
}
#reviews h2 small {
  float: right;
  font-size: 15px;
  line-height: 21px;
  margin: 10px 0 0 0;
}
#reviews h2 small a {
  text-decoration: none;
}
#reviews h3 {
  margin: 0;
}
#reviews #respond {
  margin: 0;
  border: 0;
  padding: 0;
}
#reviews #comment {
  height: 75px;
}
#reviews #comments h2 {
  clear: none;
  margin-bottom: 1em;
}
#reviews #comments ol.commentlist {
  margin: 0;
  width: 100%;
  background: none;
  list-style: none;
}
#reviews #comments ol.commentlist li {
  padding: 0;
  margin: 0 0 3em;
  border: 0;
  position: relative;
  background: 0;
  border: 0;
}
#reviews #comments ol.commentlist li .meta {
  font-size: 0.75em;
}
#reviews #comments ol.commentlist li img.avatar {
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px;
  width: 60px;
  height: auto;
  margin: 0;
  line-height: 1;
}
#reviews #comments ol.commentlist li .comment-text {
  margin: 0 0 0 60px;
  padding: 0 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: 0.83em;
}
#reviews #comments ol.commentlist li .comment-text .star-rating {
  margin-top: 0.5rem;
}
#reviews #comments ol.commentlist ul.children {
  list-style: none outside;
  margin: 20px 0 0 50px;
}
#reviews #comments ol.commentlist ul.children .star-rating {
  display: none;
}
#reviews #comments ol.commentlist #respond {
  padding: 1em 1em 0;
  margin: 20px 0 0 50px;
}
#reviews #comments .commentlist > li:before {
  content: "";
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
  font-size: 18px;
}

.woocommerce,
.woocommerce-page {
  /* =Forms
  -------------------------------------------------------------- */
}
.woocommerce .quantity,
.woocommerce-page .quantity {
  width: 66px;
  height: 49px;
  float: left;
  margin-right: 3px;
}
.woocommerce .qty,
.woocommerce-page .qty {
  text-align: center;
  width: 100%;
  height: 100%;
  margin-top: -1px;
}
.woocommerce .quantity .plus,
.woocommerce .quantity .minus,
.woocommerce-page .quantity .plus,
.woocommerce-page .quantity .minus {
  display: none;
}
.woocommerce form .select2-container .select2-choice,
.woocommerce-page form .select2-container .select2-choice {
  padding: 7px;
}
.woocommerce form .form-row,
.woocommerce-page form .form-row {
  zoom: 1;
}
.woocommerce form .form-row:before, .woocommerce form .form-row:after,
.woocommerce-page form .form-row:before,
.woocommerce-page form .form-row:after {
  content: "";
  display: table;
}
.woocommerce form .form-row:after,
.woocommerce-page form .form-row:after {
  clear: both;
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  display: block;
}
.woocommerce form .form-row label.checkbox,
.woocommerce-page form .form-row label.checkbox {
  display: inline;
}
.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
  width: 100%;
}
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
  width: 100%;
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  float: left;
  width: 47%;
  overflow: visible;
}
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-last {
  float: right;
}
.woocommerce form .form-row-wide,
.woocommerce-page form .form-row-wide {
  clear: both;
}
.woocommerce form .form-row,
.woocommerce-page form .form-row {
  padding: 3px;
  margin: 0 0 15px;
}
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
.woocommerce form .form-row input.input-text,
.woocommerce-page form .form-row select,
.woocommerce-page form .form-row textarea,
.woocommerce-page form .form-row input.input-text {
  border-color: #ccc;
}
.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder,
.woocommerce-page form .form-row [placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s 0.5s ease;
  transition: opacity 0.5s 0.5s ease;
  opacity: 0;
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  line-height: 2em;
}
.woocommerce form .form-row label.hidden,
.woocommerce-page form .form-row label.hidden {
  visibility: hidden;
}
.woocommerce form .form-row label.inline,
.woocommerce-page form .form-row label.inline {
  display: inline;
}
.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
  cursor: pointer;
  margin: 0;
}
.woocommerce form .form-row .required,
.woocommerce-page form .form-row .required {
  color: red;
  font-weight: bold;
  border: 0;
}
.woocommerce form .form-row .input-checkbox,
.woocommerce-page form .form-row .input-checkbox {
  display: inline;
  margin-left: 5px;
  text-align: center;
  vertical-align: middle;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea {
  width: 100%;
  margin: 0;
  outline: 0;
  line-height: 1em;
}
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row textarea {
  height: 4em;
  line-height: 1.5em;
  display: block;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.woocommerce form .form-row.validate-required.woocommerce-invalid .chosen-single, .woocommerce form .form-row.validate-required.woocommerce-invalid .chosen-drop, .woocommerce form .form-row.validate-required.woocommerce-invalid input.input-text, .woocommerce form .form-row.validate-required.woocommerce-invalid select,
.woocommerce-page form .form-row.validate-required.woocommerce-invalid .chosen-single,
.woocommerce-page form .form-row.validate-required.woocommerce-invalid .chosen-drop,
.woocommerce-page form .form-row.validate-required.woocommerce-invalid input.input-text,
.woocommerce-page form .form-row.validate-required.woocommerce-invalid select {
  border-color: #fb7f88;
}
.woocommerce form .form-row ::-webkit-input-placeholder,
.woocommerce-page form .form-row ::-webkit-input-placeholder {
  line-height: normal;
}
.woocommerce form .form-row :-moz-placeholder,
.woocommerce-page form .form-row :-moz-placeholder {
  line-height: normal;
}
.woocommerce form .form-row :-ms-input-placeholder,
.woocommerce-page form .form-row :-ms-input-placeholder {
  line-height: normal;
}
.woocommerce form.login, .woocommerce form.checkout_coupon, .woocommerce form.register,
.woocommerce-page form.login,
.woocommerce-page form.checkout_coupon,
.woocommerce-page form.register {
  padding: 20px;
  margin: 2em 0 2em 0px;
  text-align: left;
}
.woocommerce ul#shipping_method,
.woocommerce-page ul#shipping_method {
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.woocommerce ul#shipping_method li,
.woocommerce-page ul#shipping_method li {
  margin: 0;
  padding: .25em 0 .25em 22px;
  text-indent: -22px;
  list-style: none outside;
}
.woocommerce ul#shipping_method .amount,
.woocommerce-page ul#shipping_method .amount {
  font-weight: bold;
}
.woocommerce p.woocommerce-shipping-contents,
.woocommerce-page p.woocommerce-shipping-contents {
  margin: 0;
}

/* =Cart
-------------------------------------------------------------- */
.woocommerce-cart h2 {
  font-size: 18px;
}
.woocommerce-cart #coupon_code {
  width: 100%;
  margin-bottom: 10px;
}
.woocommerce-cart .coupon {
  width: 100%;
}
.woocommerce-cart .coupon label {
  display: block;
}
.woocommerce-cart input.button {
  display: block;
  width: 100%;
  margin: 5px 0;
}

.shipping-calculator-form {
  margin-top: 30px;
  max-width: 750px;
}

table.cart,
#content table.cart {
  margin-bottom: 50px;
}
table.cart thead,
#content table.cart thead {
  color: #333;
}
table.cart .product-thumbnail,
#content table.cart .product-thumbnail {
  min-width: 32px;
}
table.cart img,
#content table.cart img {
  width: 32px;
}
table.cart th, table.cart td,
#content table.cart th,
#content table.cart td {
  vertical-align: middle;
}
table.cart a.remove,
#content table.cart a.remove {
  -o-border-radius: 100%;
  border-radius: 100%;
  display: block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  color: red;
  text-decoration: none;
  font-weight: bold;
  border-bottom: none;
}
table.cart td.actions,
#content table.cart td.actions {
  text-align: right;
  padding: 1em 0;
}
table.cart td.actions .coupon,
#content table.cart td.actions .coupon {
  text-align: left;
  float: left;
}
table.cart td.actions .coupon .input-text,
#content table.cart td.actions .coupon .input-text {
  width: auto;
  margin: 0 4px 0 0;
  outline: 0;
  line-height: 1em;
}
table.cart input,
#content table.cart input {
  margin: 0;
  vertical-align: middle;
  line-height: 2.4em;
}

.wc-backward {
  width: auto;
  margin-left: 0;
}

.showcoupon {
  font-weight: 700;
}

.checkout_coupon {
  padding: 0 !important;
}
.checkout_coupon .form-row {
  width: 100% !important;
}
.checkout_coupon .form-row #coupon_code {
  padding: .9rem;
}
.checkout_coupon .form-row .button,
.checkout_coupon .form-row #coupon_code {
  width: 100% !important;
}

.woocommerce-checkout .form-row .chosen-container {
  width: 100% !important;
}
.woocommerce-checkout .form-row .chosen-container-single .chosen-single {
  height: 28px;
  line-height: 29px;
}
.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b {
  background: url("../img/woocommerce/chosen-sprite.png") no-repeat 0 3px !important;
}
.woocommerce-checkout .form-row .chosen-container-active .chosen-single-with-drop div b {
  background-position: -18px 4px !important;
}
.woocommerce-checkout .form-row .chosen-container-single .chosen-search input {
  line-height: 13px;
  width: 100% !important;
}
.woocommerce-checkout .form-row .chosen-container .chosen-drop {
  width: 100% !important;
}

.woocommerce,
.woocommerce-page {
  /* =Checkout
  -------------------------------------------------------------- */
  /* Payment box - appears on checkout and page page */
}
.woocommerce .col2-set,
.woocommerce-page .col2-set {
  zoom: 1;
}
.woocommerce .col2-set:before, .woocommerce .col2-set:after,
.woocommerce-page .col2-set:before,
.woocommerce-page .col2-set:after {
  content: "";
  display: table;
}
.woocommerce .col2-set:after,
.woocommerce-page .col2-set:after {
  clear: both !important;
}
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-1,
.woocommerce-page .col2-set .col-2 {
  width: 100%;
  margin: 0;
  margin-bottom: 50px;
}
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  margin-left: 0;
}
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  margin-right: 0;
}
.woocommerce .checkout .col2-set,
.woocommerce-page .checkout .col2-set {
  zoom: 1;
}
.woocommerce .checkout .col2-set:before, .woocommerce .checkout .col2-set:after,
.woocommerce-page .checkout .col2-set:before,
.woocommerce-page .checkout .col2-set:after {
  content: "";
  display: table;
}
.woocommerce .checkout .col2-set:after,
.woocommerce-page .checkout .col2-set:after {
  clear: both !important;
}
.woocommerce .checkout .col2-set .col-1,
.woocommerce-page .checkout .col2-set .col-1 {
  margin-left: 0;
}
.woocommerce .checkout .col2-set .col-2,
.woocommerce-page .checkout .col2-set .col-2 {
  margin-right: 0;
}
.woocommerce .checkout .col-2 h3#ship-to-different-address,
.woocommerce-page .checkout .col-2 h3#ship-to-different-address {
  float: left;
  clear: none;
}
.woocommerce .checkout .col-2 .notes,
.woocommerce-page .checkout .col-2 .notes {
  clear: left;
}
.woocommerce .checkout .col-2 .form-row-first,
.woocommerce-page .checkout .col-2 .form-row-first {
  clear: left;
}
.woocommerce .checkout .create-account small,
.woocommerce-page .checkout .create-account small {
  font-size: 11px;
  line-height: 13px;
  font-weight: normal;
}
.woocommerce .checkout div.shipping-address,
.woocommerce-page .checkout div.shipping-address {
  padding: 0;
  clear: left;
  width: 100%;
}
.woocommerce .checkout .shipping_address,
.woocommerce-page .checkout .shipping_address {
  clear: both;
}
.woocommerce #payment,
.woocommerce-page #payment {
  padding: 15px;
  background: #fff;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.woocommerce #payment .about_paypal,
.woocommerce-page #payment .about_paypal {
  color: #000;
  margin-left: 10px;
}
.woocommerce #payment ul.payment_methods,
.woocommerce-page #payment ul.payment_methods {
  zoom: 1;
  text-align: left;
  padding: 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0;
  list-style: none outside;
}
.woocommerce #payment ul.payment_methods:before, .woocommerce #payment ul.payment_methods:after,
.woocommerce-page #payment ul.payment_methods:before,
.woocommerce-page #payment ul.payment_methods:after {
  content: "";
  display: table;
}
.woocommerce #payment ul.payment_methods:after,
.woocommerce-page #payment ul.payment_methods:after {
  clear: both !important;
}
.woocommerce #payment ul.payment_methods li,
.woocommerce-page #payment ul.payment_methods li {
  list-style-type: none !important;
  line-height: 2em;
  text-align: left;
  margin: 0;
  font-weight: normal;
}
.woocommerce #payment ul.payment_methods li input,
.woocommerce-page #payment ul.payment_methods li input {
  margin: 0 1em 0 0;
}
.woocommerce #payment ul.payment_methods li img,
.woocommerce-page #payment ul.payment_methods li img {
  vertical-align: middle;
  margin: -2px 0 0 .5em;
  position: relative;
}
.woocommerce #payment div.form-row,
.woocommerce-page #payment div.form-row {
  padding: 1em;
}
.woocommerce #payment div.payment_box,
.woocommerce-page #payment div.payment_box {
  position: relative;
  width: 96%;
  padding: 10px;
  margin: 1em 0 1em 0;
  font-size: 0.92em;
  -o-border-radius: 2px;
  border-radius: 2px;
  line-height: 1.5em;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  background-color: #ebe8eb;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebe8eb), to(#e0dadf));
  background-image: linear-gradient(to bottom, #ebe8eb, #e0dadf);
  color: #666666 !important;
}
.woocommerce #payment div.payment_box p,
.woocommerce-page #payment div.payment_box p {
  margin-top: 0;
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc {
  font-size: 1.5em;
  padding: 8px;
  background-repeat: no-repeat;
  background-position: right;
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.visa {
  background-image: url(../img/woocommerce/icons/credit-cards/visa.png);
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard {
  background-image: url(../img/woocommerce/icons/credit-cards/mastercard.png);
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.laser {
  background-image: url(../img/woocommerce/icons/credit-cards/laser.png);
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub {
  background-image: url(../img/woocommerce/icons/credit-cards/diners.png);
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.maestro {
  background-image: url(../img/woocommerce/icons/credit-cards/maestro.png);
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.jcb {
  background-image: url(../img/woocommerce/icons/credit-cards/jcb.png);
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.amex {
  background-image: url(../img/woocommerce/icons/credit-cards/amex.png);
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.discover {
  background-image: url(../img/woocommerce/icons/credit-cards/discover.png);
}
.woocommerce #payment div.payment_box span.help,
.woocommerce-page #payment div.payment_box span.help {
  font-size: 11px;
  color: #888;
  line-height: 13px;
  font-weight: normal;
}
.woocommerce #payment div.payment_box .form-row,
.woocommerce-page #payment div.payment_box .form-row {
  margin: 0 0 1em;
}
.woocommerce #payment div.payment_box p:last-child,
.woocommerce-page #payment div.payment_box p:last-child {
  margin-bottom: 0;
}
.woocommerce #payment div.payment_box:after,
.woocommerce-page #payment div.payment_box:after {
  content: "";
  display: block;
  border: 8px solid #e0dadf;
  /* arrow size / color */
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -1px;
  left: 0;
  margin: -1em 0 0 2em;
}
.woocommerce #customer_details,
.woocommerce-page #customer_details {
  margin-bottom: 2em;
}

input[type='submit']#place_order {
  width: 100% !important;
  display: block;
  background: #bc9321 !important;
  border-color: #bc9321 !important;
  color: white !important;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 16px;
}
input[type='submit']#place_order:hover {
  background-color: transparent !important;
  color: #bc9321 !important;
}

.wolf-alert {
  width: 100%;
  padding: 0;
  position: relative;
  text-shadow: none !important;
  line-height: 1.5;
  font-size: 14px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0.2em 2em;
  margin-bottom: 1em;
}
.wolf-alert a {
  text-decoration: underline !important;
  font-weight: 700;
  opacity: 1 !important;
  border: none !important;
}
.wolf-alert .fa {
  margin-right: 15px;
}
.wolf-alert .wolf-alert-close {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 3px;
  width: 12px;
  height: 15px;
  display: inline-block;
  font-size: 100%;
  text-decoration: none !important;
  font-weight: 700 !important;
  line-height: 1.5;
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
}
.wolf-alert.info {
  color: #001c25;
  border: 1px solid #00a2d7 !important;
  background-color: #beefff;
}
.wolf-alert.info a, .wolf-alert.info a:hover, .wolf-alert.info strong, .wolf-alert.info span {
  color: #001c25 !important;
}
.wolf-alert.alert {
  color: #3d3100;
  border: 1px solid #f0c100 !important;
  background-color: #fff7d6;
}
.wolf-alert.alert a, .wolf-alert.alert a:hover, .wolf-alert.alert strong, .wolf-alert.alert span {
  color: #3d3100 !important;
}
.wolf-alert.success, .woocommerce-message, .woocommerce-info,
.woocommerce-error {
  color: #223602;
  border: 1px solid #8fe00a !important;
  background-color: #edfdd3;
}
.wolf-alert.success a, .woocommerce-message a, .woocommerce-info a,
.woocommerce-error a, .wolf-alert.success a:hover, .woocommerce-message a:hover, .woocommerce-info a:hover,
.woocommerce-error a:hover, .wolf-alert.success strong, .woocommerce-message strong, .woocommerce-info strong,
.woocommerce-error strong, .wolf-alert.success span, .woocommerce-message span, .woocommerce-info span,
.woocommerce-error span {
  color: #223602 !important;
}
.wolf-alert.error, .woocommerce-error {
  color: #4a0800;
  border: 1px solid #fc1b00 !important;
  background-color: #ffe6e3;
}
.wolf-alert.error a, .woocommerce-error a, .wolf-alert.error a:hover, .woocommerce-error a:hover, .wolf-alert.error strong, .woocommerce-error strong, .wolf-alert.error span, .woocommerce-error span {
  color: #4a0800 !important;
}

.woocommerce-message {
  position: relative;
  zoom: 1;
  padding: 1.7em 1em 1.6em;
  padding-left: 4.5em;
  margin: 0;
  margin-bottom: 30px;
}
.woocommerce-message:before, .woocommerce-message:after {
  content: "";
  display: table;
}
.woocommerce-message:after {
  clear: both !important;
}
.woocommerce-message:before {
  font-family: FontAwesome;
  font-size: 1.33333333em;
  content: "\f087";
  position: absolute;
  left: 1.5em;
  top: 1em;
}
.woocommerce-message .button {
  display: inline;
  padding: 0;
  margin: 0;
  width: auto;
  float: right;
  background-color: transparent !important;
  border: none !important;
  line-height: 25px;
  text-transform: none;
}
.woocommerce-message .button:hover {
  background-color: transparent !important;
  color: #333;
}

.woocommerce-info,
.woocommerce-error {
  position: relative;
  zoom: 1;
  margin: 0;
  margin-left: 0;
  margin-bottom: 30px;
  padding: 1.6em 1em 1.6em;
  padding-left: 4.5em;
}
.woocommerce-info:before, .woocommerce-info:after,
.woocommerce-error:before,
.woocommerce-error:after {
  content: "";
  display: table;
}
.woocommerce-info:after,
.woocommerce-error:after {
  clear: both !important;
}
.woocommerce-info:before,
.woocommerce-error:before {
  font-family: FontAwesome;
  font-size: 1.33333333em;
  content: "\f087";
  position: absolute;
  left: 1.5em;
  top: 1em;
}

.woocommerce-error:before {
  content: "\f071";
}

.woocommerce-error li {
  list-style-type: none;
  margin-left: 1em;
  line-height: 2;
}

small.note {
  display: block;
  color: #888;
  font-size: 11px;
  line-height: 21px;
  margin-top: 10px;
}

.woocommerce-account .woocommerce {
  max-width: 750px;
}
.woocommerce-account .woocommerce form {
  padding: 0;
}

.woocommerce-MyAccount-navigation ul {
  padding-left: 0;
  list-style-type: none;
}
.woocommerce-MyAccount-navigation ul li {
  display: inline-block;
  padding-right: 15px;
}

/* WooCommerce container width */
.single-product .content-wrapper,
.woocommerce-wishlist .content-wrapper,
.woocommerce-cart .content-wrapper,
.woocommerce-checkout .content-wrapper,
.woocommerce-account .content-wrapper {
  max-width: 1140px;
}

.woocommerce-account .content-wrapper {
  max-width: 750px;
}

.woocommerce-cart .entry-thumbnail,
.woocommerce-checkout .entry-thumbnail,
.woocommerce-account .entry-thumbnail {
  display: none !important;
}

.woocommerce-breadcrumb {
  zoom: 1;
  margin-bottom: 30px;
  padding: 0;
  font-size: 0.92em;
  color: #888;
}
.woocommerce-breadcrumb:before, .woocommerce-breadcrumb:after {
  content: "";
  display: table;
}
.woocommerce-breadcrumb:after {
  clear: both !important;
}
.woocommerce-breadcrumb a {
  color: #888;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .woocommerce a.button.loading:before, .woocommerce button.button.loading:before, .woocommerce input.button.loading:before, .woocommerce #respond input#submit.loading:before, .woocommerce #content input.button.loading:before, .woocommerce-page a.button.loading:before, .woocommerce-page button.button.loading:before, .woocommerce-page input.button.loading:before, .woocommerce-page #respond input#submit.loading:before, .woocommerce-page #content input.button.loading:before {
    background-image: url(../img/woocommerce/ajax-loader@2x.gif);
    background-size: 16px 16px;
  }
}
/* Layout media queries */
@media screen and (min-width: 500px) {
  .shop-columns-2 .products li,
  .shop-columns-3 .products li,
  .shop-columns-4 .products li,
  .shop-columns-5 .products li,
  .shop-columns-6 .products li,
  div.woocommerce.columns-2 .products li,
  div.woocommerce.columns-3 .products li,
  div.woocommerce.columns-4 .products li,
  div.woocommerce.columns-5 .products li,
  div.woocommerce.columns-6 .products li {
    float: left;
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  .shop-columns-3 .products li,
  .shop-columns-6 .products li,
  div.woocommerce.columns-3 .products li,
  div.woocommerce.columns-6 .products li {
    width: 33.33%;
  }
  .shop-columns-3 .products li:nth-child(2n+1),
  .shop-columns-6 .products li:nth-child(2n+1),
  div.woocommerce.columns-3 .products li:nth-child(2n+1),
  div.woocommerce.columns-6 .products li:nth-child(2n+1) {
    clear: none;
  }
  .shop-columns-3 .products li:nth-child(3n+1),
  .shop-columns-6 .products li:nth-child(3n+1),
  div.woocommerce.columns-3 .products li:nth-child(3n+1),
  div.woocommerce.columns-6 .products li:nth-child(3n+1) {
    clear: left;
  }

  .shop-columns-4 .products li,
  div.woocommerce.columns-4 .products li {
    width: 25%;
  }
  .shop-columns-4 .products li:nth-child(2n+1),
  div.woocommerce.columns-4 .products li:nth-child(2n+1) {
    clear: none;
  }
  .shop-columns-4 .products li:nth-child(4n+1),
  div.woocommerce.columns-4 .products li:nth-child(4n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1200px) {
  .shop-columns-5 .products li,
  div.woocommerce.columns-5 .products li {
    width: 20%;
  }
  .shop-columns-5 .products li:nth-child(2n+1),
  div.woocommerce.columns-5 .products li:nth-child(2n+1) {
    clear: none;
  }
  .shop-columns-5 .products li:nth-child(3n+1),
  div.woocommerce.columns-5 .products li:nth-child(3n+1) {
    clear: none;
  }
  .shop-columns-5 .products li:nth-child(4n+1),
  div.woocommerce.columns-5 .products li:nth-child(4n+1) {
    clear: none;
  }
  .shop-columns-5 .products li:nth-child(5n+1),
  div.woocommerce.columns-5 .products li:nth-child(5n+1) {
    clear: left;
  }

  .shop-columns-6 .products li,
  div.woocommerce.columns-6 .products li {
    width: 16.65%;
  }
  .shop-columns-6 .products li:nth-child(2n+1),
  div.woocommerce.columns-6 .products li:nth-child(2n+1) {
    clear: none;
  }
  .shop-columns-6 .products li:nth-child(3n+1),
  div.woocommerce.columns-6 .products li:nth-child(3n+1) {
    clear: none;
  }
  .shop-columns-6 .products li:nth-child(4n+1),
  div.woocommerce.columns-6 .products li:nth-child(4n+1) {
    clear: none;
  }
  .shop-columns-6 .products li:nth-child(5n+1),
  div.woocommerce.columns-6 .products li:nth-child(5n+1) {
    clear: none;
  }
  .shop-columns-6 .products li:nth-child(6n+1),
  div.woocommerce.columns-6 .products li:nth-child(6n+1) {
    clear: left;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	40. 3rd party plugins
*/
/* Visual Composer
-----------------------------*/
.is-vc .content-wrapper {
  background: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0;
}
.is-vc .content-wrapper {
  max-width: none;
  width: 100%;
}

.wolf-vc-row-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.wolf-vc-row-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: .4;
}

.wolf-vc-row-inner.standard-width {
  zoom: 1;
  width: 92%;
  margin: 0 auto;
  max-width: 1140px;
}
.wolf-vc-row-inner.standard-width:before, .wolf-vc-row-inner.standard-width:after {
  content: "";
  display: table;
}
.wolf-vc-row-inner.standard-width:after {
  clear: both;
}
.wolf-vc-row-inner.small-width {
  zoom: 1;
  width: 92%;
  margin: 0 auto;
  max-width: 1140px;
  max-width: 750px;
}
.wolf-vc-row-inner.small-width:before, .wolf-vc-row-inner.small-width:after {
  content: "";
  display: table;
}
.wolf-vc-row-inner.small-width:after {
  clear: both;
}
.wolf-vc-row-inner.large-width {
  zoom: 1;
  width: 92%;
  margin: 0 auto;
  max-width: 1140px;
  max-width: 98%;
  max-width: none;
}
.wolf-vc-row-inner.large-width:before, .wolf-vc-row-inner.large-width:after {
  content: "";
  display: table;
}
.wolf-vc-row-inner.large-width:after {
  clear: both;
}

/* Bandsintown
-----------------------------*/
.bit-events th,
.bit-events td {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.bit-date a.bit-event-data {
  text-transform: uppercase;
}

.bit-header-overflow-fix {
  margin-bottom: 20px;
  line-height: 1.5;
}

.bit-share-links a {
  margin-left: 5px;
}

.bit-buy-tix {
  font-weight: 700;
  text-transform: uppercase;
}

.wolf #bit-events td .bit-uiButton {
  height: 20px !important;
}

th.bit-venue,
td.bit-venue {
  display: none;
}

@media screen and (min-width: 800px) {
  th.bit-venue,
  td.bit-venue {
    display: table-cell;
  }
}
/* wBounce
-----------------------------*/
.wbounce-modal {
  font-family: "Open Sans", sans-serif;
  display: none;
  position: fixed;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10011;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.wbounce-modal .wbounce-modal-sub {
  display: block;
  position: relative;
  left: initial;
  opacity: 1;
  overflow: scroll;
  overflow-x: hidden;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  max-width: 95%;
  max-height: 95%;
  width: 600px;
  background-color: #f0f1f2;
  z-index: 21;
  padding: 40px 60px 20px;
}
.wbounce-modal .wbounce-modal-sub h1, .wbounce-modal .wbounce-modal-sub h2, .wbounce-modal .wbounce-modal-sub h3, .wbounce-modal .wbounce-modal-sub h3, .wbounce-modal .wbounce-modal-sub h4, .wbounce-modal .wbounce-modal-sub h5, .wbounce-modal .wbounce-modal-sub h6 {
  color: #666;
}
.wbounce-modal .wbounce-modal-sub .wpb-mailchimp-form-container {
  margin-bottom: 0;
}
.wbounce-modal .wbounce-modal-sub .wpb-mailchimp-size-large {
  font-size: 14px;
}

.has-default-header .wbounce-modal-sub {
  background: #333 no-repeat center center scroll;
  background-size: 100%;
  background-size: cover;
  color: white !important;
  position: relative;
  z-index: 0;
}
.has-default-header .wbounce-modal-sub h1, .has-default-header .wbounce-modal-sub h2, .has-default-header .wbounce-modal-sub h3, .has-default-header .wbounce-modal-sub h3, .has-default-header .wbounce-modal-sub h4, .has-default-header .wbounce-modal-sub h5, .has-default-header .wbounce-modal-sub h6 {
  color: #FFF;
}
.has-default-header .wbounce-modal-sub:before {
  z-index: 0;
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.44;
}
.has-default-header .wbounce-modal-sub .modal-title,
.has-default-header .wbounce-modal-sub .modal-body {
  position: relative;
  z-index: 999;
}

.wbounce-modal.underlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.wbounce-modal .wbounce-modal-flex {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
}

.wbounce-modal .wbounce-modal-flex.wbounce-modal-flex-activated {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.wbounce-modal .wbounce-modal-sub::-webkit-scrollbar {
  display: none;
}

.wbounce-modal .wbounce-modal-sub.belowIE10 {
  top: 50%;
  margin: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wbounce-modal .modal-title {
  font-size: 18px;
}

.wbounce-modal h3 {
  color: #fff;
  font-size: 1em;
  margin: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.wbounce-modal h4 {
  font-size: 1.25em;
  margin: 10px 0;
}

.wbounce-modal h4 a {
  text-decoration: none;
}

.wbounce-modal p {
  line-height: 1.4em;
}

.wbounce-modal form {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 5px;
}

.wbounce-modal form p {
  text-align: left;
  margin-left: 35px;
  opacity: 0.8;
  margin-top: 1px;
  padding-top: 1px;
  font-size: 0.9em;
}

/*.wbounce-modal form input[type=email],
.wbounce-modal form input[type=tel] {
    color: #999;
    padding: 12px;
    font-size: 15px;
    width: 300px;
    border-radius: 4px;
    border: 1px solid #ccc;
    -webkit-font-smoothing: antialiased
}
.wbounce-modal form input[type=text] {
    padding: 12px;
    font-size: 1.2em;
    width: 300px;
    border-radius: 4px;
    border: 1px solid #ccc;
    -webkit-font-smoothing: antialiased
}
.wbounce-modal form input[type=submit] {
    text-transform: uppercase;
    font-weight: bold;
    padding: 12px;
    font-size: 14px;
    border-radius: 4px;
    color: #fff;
    background-image: none;
    background-color: #4ab471;
    border: none;
    cursor: pointer;
    -webkit-font-smoothing: antialiased
}*/
.wbounce-modal form input[type=text],
.wbounce-modal form input[type=email],
.wbounce-modal form input[type=tel] {
  background: #FFF;
}

.wbounce-modal .byline,
.wbounce-modal .updated {
  display: block;
}

.wbounce-modal .modal-footer {
  position: relative;
  text-align: center;
  width: 100%;
  padding: 10px 0 20px;
}

.wbounce-modal .modal-footer p {
  text-transform: capitalize;
  cursor: pointer;
  display: inline;
}

.admin-bar .wbounce-modal {
  padding-top: 32px;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* WPML
-----------------------------*/
.nav-menu-mobile .wpml-ls-menu-item {
  display: inline-block;
  margin-right: 5px;
}

#topbar {
  height: 38px;
}
#topbar .wpml-ls-current-language {
  font-weight: 700;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	41. Skins
*/
/* Global skin style */
.global-skin-light .logo-light,
[class^="global-skin-light_"] .logo-light,
[class*=" global-skin-light_"] .logo-light {
  display: none;
}
.global-skin-light #swipebox-slider .slide-loading,
[class^="global-skin-light_"] #swipebox-slider .slide-loading,
[class*=" global-skin-light_"] #swipebox-slider .slide-loading {
  background-image: url("../img/swipebox/loader-light.gif") !important;
}

.global-skin-dark .logo-dark,
[class^="global-skin-dark_"] .logo-dark,
[class*=" global-skin-dark_"] .logo-dark {
  display: none;
}
.global-skin-dark #swipebox-slider .slide-loading,
[class^="global-skin-dark_"] #swipebox-slider .slide-loading,
[class*=" global-skin-dark_"] #swipebox-slider .slide-loading {
  background-image: url("../img/swipebox/loader-dark.gif") !important;
}

/* Non page builder skin only */
.skin-dark span.page-numbers,
.skin-dark a.page-numbers,
.skin-dark .page-links a,
[class^="skin-dark_"] span.page-numbers,
[class^="skin-dark_"] a.page-numbers,
[class^="skin-dark_"] .page-links a,
[class*=" skin-dark_"] span.page-numbers,
[class*=" skin-dark_"] a.page-numbers,
[class*=" skin-dark_"] .page-links a {
  color: white !important;
  border: solid 1px rgba(255, 255, 255, 0.08);
}

/* Common skin style */
.skin-light .entry-display-column.post:not(.is-tweet) .entry-inner,
.skin-light .entry-display-masonry.post:not(.is-tweet) .entry-inner,
.skin-light .entry-display-masonry2.post:not(.is-tweet) .entry-inner,
[class^="skin-light_"] .entry-display-column.post:not(.is-tweet) .entry-inner,
[class^="skin-light_"] .entry-display-masonry.post:not(.is-tweet) .entry-inner,
[class^="skin-light_"] .entry-display-masonry2.post:not(.is-tweet) .entry-inner,
[class*=" skin-light_"] .entry-display-column.post:not(.is-tweet) .entry-inner,
[class*=" skin-light_"] .entry-display-masonry.post:not(.is-tweet) .entry-inner,
[class*=" skin-light_"] .entry-display-masonry2.post:not(.is-tweet) .entry-inner,
.wpb-font-dark .entry-display-column.post:not(.is-tweet) .entry-inner,
.wpb-font-dark .entry-display-masonry.post:not(.is-tweet) .entry-inner,
.wpb-font-dark .entry-display-masonry2.post:not(.is-tweet) .entry-inner,
.wolf-vc-font-dark .entry-display-column.post:not(.is-tweet) .entry-inner,
.wolf-vc-font-dark .entry-display-masonry.post:not(.is-tweet) .entry-inner,
.wolf-vc-font-dark .entry-display-masonry2.post:not(.is-tweet) .entry-inner {
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}
.skin-light .entry-display-grid2 .entry-content,
[class^="skin-light_"] .entry-display-grid2 .entry-content,
[class*=" skin-light_"] .entry-display-grid2 .entry-content,
.wpb-font-dark .entry-display-grid2 .entry-content,
.wolf-vc-font-dark .entry-display-grid2 .entry-content {
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}

.skin-dark .entry-display-column.post:not(.is-tweet) .entry-inner,
.skin-dark .entry-display-masonry.post:not(.is-tweet) .entry-inner,
.skin-dark .entry-display-masonry2.post:not(.is-tweet) .entry-inner,
[class^="skin-dark_"] .entry-display-column.post:not(.is-tweet) .entry-inner,
[class^="skin-dark_"] .entry-display-masonry.post:not(.is-tweet) .entry-inner,
[class^="skin-dark_"] .entry-display-masonry2.post:not(.is-tweet) .entry-inner,
[class*=" skin-dark_"] .entry-display-column.post:not(.is-tweet) .entry-inner,
[class*=" skin-dark_"] .entry-display-masonry.post:not(.is-tweet) .entry-inner,
[class*=" skin-dark_"] .entry-display-masonry2.post:not(.is-tweet) .entry-inner,
.wpb-font-light .entry-display-column.post:not(.is-tweet) .entry-inner,
.wpb-font-light .entry-display-masonry.post:not(.is-tweet) .entry-inner,
.wpb-font-light .entry-display-masonry2.post:not(.is-tweet) .entry-inner,
.wolf-vc-font-light .entry-display-column.post:not(.is-tweet) .entry-inner,
.wolf-vc-font-light .entry-display-masonry.post:not(.is-tweet) .entry-inner,
.wolf-vc-font-light .entry-display-masonry2.post:not(.is-tweet) .entry-inner {
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.33);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.33);
}
.skin-dark .entry-display-grid2 .entry-content,
[class^="skin-dark_"] .entry-display-grid2 .entry-content,
[class*=" skin-dark_"] .entry-display-grid2 .entry-content,
.wpb-font-light .entry-display-grid2 .entry-content,
.wolf-vc-font-light .entry-display-grid2 .entry-content {
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.33);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.33);
}
.skin-dark a.wolf-button:hover, .skin-dark a.trigger:hover, .skin-dark .wolf-release-button a:hover, .wolf-release-button .skin-dark a:hover, .skin-dark a.wolf-show-ticket-button:hover,
.skin-dark a.wolf-show-facebook-button:hover,
[class^="skin-dark_"] a.wolf-button:hover,
[class^="skin-dark_"] a.trigger:hover,
[class^="skin-dark_"] .wolf-release-button a:hover,
.wolf-release-button [class^="skin-dark_"] a:hover,
[class^="skin-dark_"] a.wolf-show-ticket-button:hover,
[class^="skin-dark_"] a.wolf-show-facebook-button:hover,
[class*=" skin-dark_"] a.wolf-button:hover,
[class*=" skin-dark_"] a.trigger:hover,
[class*=" skin-dark_"] .wolf-release-button a:hover,
.wolf-release-button [class*=" skin-dark_"] a:hover,
[class*=" skin-dark_"] a.wolf-show-ticket-button:hover,
[class*=" skin-dark_"] a.wolf-show-facebook-button:hover,
.wpb-font-light a.wolf-button:hover,
.wpb-font-light a.trigger:hover,
.wpb-font-light .wolf-release-button a:hover,
.wolf-release-button .wpb-font-light a:hover,
.wpb-font-light a.wolf-show-ticket-button:hover,
.wpb-font-light a.wolf-show-facebook-button:hover,
.wolf-vc-font-light a.wolf-button:hover,
.wolf-vc-font-light a.trigger:hover,
.wolf-vc-font-light .wolf-release-button a:hover,
.wolf-release-button .wolf-vc-font-light a:hover,
.wolf-vc-font-light a.wolf-show-ticket-button:hover,
.wolf-vc-font-light a.wolf-show-facebook-button:hover {
  color: white !important;
  border-color: white !important;
}

/* WPB & VC skins */
.wpb-font-light .bit-widget-container,
.wolf-vc-font-light .bit-widget-container {
  color: #f7f7f7;
}
.wpb-font-light .comment-meta,
.wpb-font-light .comment-meta a,
.wpb-font-light .comment-awaiting-moderation,
.wpb-font-light .ping-meta,
.wpb-font-light .entry-meta,
.wpb-font-light .entry-meta a,
.wpb-font-light .posted-on,
.wpb-font-light .posted-on a,
.wpb-font-light .edit-link,
.wpb-font-light .wpb-entry-meta a,
.wpb-font-light .widget:not(.wpm_playlist_widget) a,
.wolf-vc-font-light .comment-meta,
.wolf-vc-font-light .comment-meta a,
.wolf-vc-font-light .comment-awaiting-moderation,
.wolf-vc-font-light .ping-meta,
.wolf-vc-font-light .entry-meta,
.wolf-vc-font-light .entry-meta a,
.wolf-vc-font-light .posted-on,
.wolf-vc-font-light .posted-on a,
.wolf-vc-font-light .edit-link,
.wolf-vc-font-light .wpb-entry-meta a,
.wolf-vc-font-light .widget:not(.wpm_playlist_widget) a {
  color: #f7f7f7 !important;
}
.wpb-font-light .wpb-team-member-social,
.wpb-font-light h1, .wpb-font-light h2, .wpb-font-light h3, .wpb-font-light h4, .wpb-font-light h5, .wpb-font-light h6,
.wpb-font-light a:not(.wolf-more-text):not(.wpb-button), .wpb-font-light strong,
.wolf-vc-font-light .wpb-team-member-social,
.wolf-vc-font-light h1,
.wolf-vc-font-light h2,
.wolf-vc-font-light h3,
.wolf-vc-font-light h4,
.wolf-vc-font-light h5,
.wolf-vc-font-light h6,
.wolf-vc-font-light a:not(.wolf-more-text):not(.wpb-button),
.wolf-vc-font-light strong {
  color: #fff;
}
.wpb-font-light .wpb-last-posts-classic .entry-title a,
.wolf-vc-font-light .wpb-last-posts-classic .entry-title a {
  color: white !important;
}
.wpb-font-light footer.entry-meta, .wpb-font-light .post-title-divider,
.wolf-vc-font-light footer.entry-meta,
.wolf-vc-font-light .post-title-divider {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.wpb-font-light .post-grid2-entry-content,
.wolf-vc-font-light .post-grid2-entry-content {
  background-color: #0d0d0d !important;
}
.wpb-font-light .post-grid2-entry-content a,
.wolf-vc-font-light .post-grid2-entry-content a {
  color: white !important;
}
.wpb-font-light .post-grid2-entry a.entry-thumbnail:before,
.wolf-vc-font-light .post-grid2-entry a.entry-thumbnail:before {
  border-bottom-color: #0d0d0d;
}
.wpb-font-light a.wolf-button:hover, .wpb-font-light a.trigger:hover, .wpb-font-light .wolf-release-button a:hover, .wolf-release-button .wpb-font-light a:hover, .wpb-font-light a.wolf-show-ticket-button:hover,
.wpb-font-light a.wolf-show-facebook-button:hover,
.wolf-vc-font-light a.wolf-button:hover,
.wolf-vc-font-light a.trigger:hover,
.wolf-vc-font-light .wolf-release-button a:hover,
.wolf-release-button .wolf-vc-font-light a:hover,
.wolf-vc-font-light a.wolf-show-ticket-button:hover,
.wolf-vc-font-light a.wolf-show-facebook-button:hover {
  color: white !important;
  border-color: white !important;
}

.wpb-font-dark .bit-widget-container,
.wolf-vc-font-dark .bit-widget-container {
  color: #333;
}
.wpb-font-dark .comment-meta,
.wpb-font-dark .comment-meta a,
.wpb-font-dark .comment-awaiting-moderation,
.wpb-font-dark .ping-meta,
.wpb-font-dark .entry-meta,
.wpb-font-dark .entry-meta a,
.wpb-font-dark .posted-on,
.wpb-font-dark .posted-on a,
.wpb-font-dark .edit-link,
.wpb-font-dark .wpb-entry-meta a,
.wpb-font-dark .widget:not(.wpm_playlist_widget) a,
.wolf-vc-font-dark .comment-meta,
.wolf-vc-font-dark .comment-meta a,
.wolf-vc-font-dark .comment-awaiting-moderation,
.wolf-vc-font-dark .ping-meta,
.wolf-vc-font-dark .entry-meta,
.wolf-vc-font-dark .entry-meta a,
.wolf-vc-font-dark .posted-on,
.wolf-vc-font-dark .posted-on a,
.wolf-vc-font-dark .edit-link,
.wolf-vc-font-dark .wpb-entry-meta a,
.wolf-vc-font-dark .widget:not(.wpm_playlist_widget) a {
  color: #333333 !important;
}
.wpb-font-dark .wpb-team-member-social,
.wpb-font-dark a:not(.wolf-more-text):not(.wpb-button), .wpb-font-dark strong,
.wolf-vc-font-dark .wpb-team-member-social,
.wolf-vc-font-dark a:not(.wolf-more-text):not(.wpb-button),
.wolf-vc-font-dark strong {
  color: #0d0d0d;
}
.wpb-font-dark h1, .wpb-font-dark h2, .wpb-font-dark h3, .wpb-font-dark h4, .wpb-font-dark h5, .wpb-font-dark h6,
.wolf-vc-font-dark h1,
.wolf-vc-font-dark h2,
.wolf-vc-font-dark h3,
.wolf-vc-font-dark h4,
.wolf-vc-font-dark h5,
.wolf-vc-font-dark h6 {
  color: #333;
}
.wpb-font-dark .wpb-last-posts-classic .entry-title a,
.wolf-vc-font-dark .wpb-last-posts-classic .entry-title a {
  color: #0d0d0d !important;
}
.wpb-font-dark footer.entry-meta, .wpb-font-dark .post-title-divider,
.wolf-vc-font-dark footer.entry-meta,
.wolf-vc-font-dark .post-title-divider {
  border-top-color: rgba(0, 0, 0, 0.15);
}
.wpb-font-dark .products li .price, .wpb-font-dark .products li .star-rating,
.wolf-vc-font-dark .products li .price,
.wolf-vc-font-dark .products li .star-rating {
  color: #333;
}

/* Force slide caption to be white */
.wpb-slide-caption a.wolf-button:hover, .wpb-slide-caption a.trigger:hover, .wpb-slide-caption .wolf-release-button a:hover, .wolf-release-button .wpb-slide-caption a:hover, .wpb-slide-caption a.wolf-show-ticket-button:hover,
.wpb-slide-caption a.wolf-show-facebook-button:hover {
  color: white !important;
  border-color: white !important;
}

/* VC only */
.wolf-vc-font-dark {
  color: #333;
}

.wolf-vc-font-light {
  color: #FFF;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	42. Ajax
*/
.is-ajax-nav .wolf-jplayer-loader-overlay {
  display: none;
}

#ajax-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  background: #bc9321;
  width: 0%;
  height: 3px;
  -webkit-transition: width 1s ease;
  transition: width 1s ease;
  z-index: 99999;
}

.sticking #ajax-progress-bar,
.breakpoint #ajax-progress-bar {
  position: fixed;
}
.sticking.admin-bar #ajax-progress-bar,
.breakpoint.admin-bar #ajax-progress-bar {
  top: 32px;
}

body.hide-ajax-progress-bar #ajax-progress-bar {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

#ajax-content {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

#ajax-loading-overlay {
  opacity: 0;
  visibility: hidden;
  display: table !important;
}

html.ajax-loading #ajax-loading-overlay {
  opacity: 1;
  visibility: visible;
}
html.ajax-loading .mega-menu-tagline,
html.ajax-loading .sub-menu {
  opacity: 0 !important;
  visibility: hidden !important;
}

body.loading #navbar-container {
  opacity: 0;
}
body.loading .post-header {
  opacity: 0;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	43. Media queries
*/
@media screen and (max-width: 782px) {
  .admin-bar.sticking #navbar-container, .admin-bar.sticking #mobile-bar, .admin-bar.menu-type-standard #mobile-bar,
  .admin-bar #navbar-mobile-container {
    top: 46px;
  }
  .admin-bar #top-search-form-container {
    top: 46px;
  }

  .sticking.admin-bar #ajax-progress-bar,
  .breakpoint.admin-bar #ajax-progress-bar {
    top: 46px;
  }

  .wolf-show-mobile-hide,
  .wolf-event-mobile-hide {
    display: none;
  }
}
@media screen and (min-width: 500px) {
  /* Metro */
  .metro-item {
    width: 50%;
  }

  .metro-item-width2 {
    width: 100%;
  }

  .wolf-show-mobile-show,
  .wolf-event-mobile-show {
    display: none;
  }

  .button,
  .wolf-button,
  .trigger,
  .wolf-release-button a,
  .wolf-show-ticket-button,
  .wolf-show-facebook-button,
  .wolf-more-dates {
    display: inline-block;
    width: auto;
  }

  /* Infinite scroll button */
  .trigger {
    width: 365px;
    font-size: 16px;
  }

  /* Post archives tags list */
  .tag-list ul {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }

  .products {
    width: calc(100% + 20px );
    margin-left: -10px !important;
  }

  .products li {
    padding: 10px;
  }

  .single-product .related.products li {
    width: 33.33% !important;
  }

  .single-product.shop-layout-fullwidth .related.products li {
    width: 25% !important;
  }

  #container .related.products li {
    clear: none !important;
  }
}
@media screen and (min-width: 800px) {
  /* Grid
  --------------------------*/
  .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    float: left;
    position: relative;
    margin-left: 1.618%;
    margin-right: 1.618%;
    margin-bottom: 0;
  }

  .col-1 {
    width: 5.367%;
  }

  .col-2 {
    width: 13.97%;
  }

  .col-3 {
    width: 22.573%;
  }

  .col-4 {
    width: 31.176%;
  }

  .col-5 {
    width: 39.779%;
  }

  .col-6 {
    width: 48.382%;
  }

  .col-7 {
    width: 56.985%;
  }

  .col-8 {
    width: 65.588%;
  }

  .col-9 {
    width: 74.191%;
  }

  .col-10 {
    width: 82.794%;
  }

  .col-11 {
    width: 91.397%;
  }

  .col-12 {
    width: 100%;
  }

  .alpha, .first {
    margin-left: 0 !important;
  }

  .omega, .last {
    margin-right: 0 !important;
  }

  /* Top bar */
  #topbar {
    line-height: 38px;
  }

  #topbar-left {
    float: left;
    width: 50%;
    text-align: left;
  }

  #topbar-right {
    float: right;
    width: 50%;
    text-align: right;
  }

  /* Header */
  .post-header {
    padding: 5em 0;
  }

  .post-header-type-breadcrumb:not(.home) .post-header .wrap {
    display: table;
  }
  .post-header-type-breadcrumb:not(.home) .post-title-container,
  .post-header-type-breadcrumb:not(.home) .breadcrumb {
    display: table-cell;
    vertical-align: middle;
  }
  .post-header-type-breadcrumb:not(.home) .breadcrumb {
    margin-bottom: 0;
    width: 30%;
  }
  .post-header-type-breadcrumb:not(.home) .post-title-container {
    text-align: right;
    width: 70%;
  }
  .post-header-type-breadcrumb:not(.home) .subheading,
  .post-header-type-breadcrumb:not(.home) .category-description,
  .post-header-type-breadcrumb:not(.home) .post-title-date {
    margin-right: 0;
    margin-top: 10px;
  }

  .breakpoint:not(.menu-type-none) .post-header-inner {
    padding-top: 60px;
  }

  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.88;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.75em;
  }

  h4 {
    font-size: 1.375em;
  }

  h5 {
    font-size: 1.25em;
  }

  h6 {
    font-size: 1.125em;
  }

  .widget-title {
    font-size: 18px;
  }

  /* Logo */
  .breakpoint .logo a img {
    height: 60px;
  }

  #top-search-form input {
    font-size: 32px;
  }

  /* Containers width sidebar */
  .blog-layout-sidebar #primary,
  .blog-layout-sidebar #container,
  .blog-layout-sidebar-right #primary,
  .blog-layout-sidebar-right #container,
  .single-post-layout-sidebar #primary,
  .single-post-layout-sidebar #container,
  .single-post-layout-sidebar-right #primary,
  .single-post-layout-sidebar-right #container,
  .page-sidebar-right #primary,
  .page-sidebar-right #container,
  .shop-layout-sidebar-right #primary,
  .shop-layout-sidebar-right #container,
  .discography-layout-sidebar-right #primary,
  .discography-layout-sidebar-right #container,
  .videos-layout-sidebar-right #primary,
  .videos-layout-sidebar-right #container,
  .albums-layout-sidebar-right #primary,
  .albums-layout-sidebar-right #container,
  .events-layout-sidebar-right #primary,
  .events-layout-sidebar-right #container,
  .single-attachment #primary,
  .single-attachment #container {
    width: 65.7%;
    float: left;
  }
  .blog-layout-sidebar #secondary,
  .blog-layout-sidebar #photo-sidebar,
  .blog-layout-sidebar-right #secondary,
  .blog-layout-sidebar-right #photo-sidebar,
  .single-post-layout-sidebar #secondary,
  .single-post-layout-sidebar #photo-sidebar,
  .single-post-layout-sidebar-right #secondary,
  .single-post-layout-sidebar-right #photo-sidebar,
  .page-sidebar-right #secondary,
  .page-sidebar-right #photo-sidebar,
  .shop-layout-sidebar-right #secondary,
  .shop-layout-sidebar-right #photo-sidebar,
  .discography-layout-sidebar-right #secondary,
  .discography-layout-sidebar-right #photo-sidebar,
  .videos-layout-sidebar-right #secondary,
  .videos-layout-sidebar-right #photo-sidebar,
  .albums-layout-sidebar-right #secondary,
  .albums-layout-sidebar-right #photo-sidebar,
  .events-layout-sidebar-right #secondary,
  .events-layout-sidebar-right #photo-sidebar,
  .single-attachment #secondary,
  .single-attachment #photo-sidebar {
    width: 29.2%;
    float: right;
  }

  .page-sidebar-left #primary,
  .page-sidebar-left #container,
  .single-post-layout-sidebar-left #primary,
  .single-post-layout-sidebar-left #container,
  .blog-layout-sidebar-left #primary,
  .blog-layout-sidebar-left #container,
  .shop-layout-sidebar-left #primary,
  .shop-layout-sidebar-left #container,
  .discography-layout-sidebar-left #primary,
  .discography-layout-sidebar-left #container,
  .videos-layout-sidebar-left #primary,
  .videos-layout-sidebar-left #container,
  .albums-layout-sidebar-left #primary,
  .albums-layout-sidebar-left #container,
  .events-layout-sidebar-left #primary,
  .events-layout-sidebar-left #container {
    width: 65.7%;
    float: right;
  }
  .page-sidebar-left #secondary,
  .single-post-layout-sidebar-left #secondary,
  .blog-layout-sidebar-left #secondary,
  .shop-layout-sidebar-left #secondary,
  .discography-layout-sidebar-left #secondary,
  .videos-layout-sidebar-left #secondary,
  .albums-layout-sidebar-left #secondary,
  .events-layout-sidebar-left #secondary {
    width: 29.2%;
    float: left;
  }

  /* Blog display */
  .blog-layout-fullwidth.blog-display-grid2 .content-wrapper article.post, .blog-layout-fullwidth.blog-display-column .content-wrapper article.post,
  .blog-layout-standard.blog-display-grid2 .content-wrapper article.post,
  .blog-layout-standard.blog-display-column .content-wrapper article.post {
    float: left;
    width: 50%;
  }
  .blog-layout-fullwidth.blog-display-grid2 .content-wrapper article.post:nth-child(2n+1), .blog-layout-fullwidth.blog-display-column .content-wrapper article.post:nth-child(2n+1),
  .blog-layout-standard.blog-display-grid2 .content-wrapper article.post:nth-child(2n+1),
  .blog-layout-standard.blog-display-column .content-wrapper article.post:nth-child(2n+1) {
    clear: left;
  }
  .blog-layout-fullwidth.blog-display-grid .content-wrapper article.post, .blog-layout-fullwidth.blog-display-grid3 .content-wrapper article.post, .blog-layout-fullwidth.blog-display-photo .content-wrapper article.post, .blog-layout-fullwidth.blog-display-masonry .content-wrapper article.post, .blog-layout-fullwidth.blog-display-masonry2 .content-wrapper article.post,
  .blog-layout-standard.blog-display-grid .content-wrapper article.post,
  .blog-layout-standard.blog-display-grid3 .content-wrapper article.post,
  .blog-layout-standard.blog-display-photo .content-wrapper article.post,
  .blog-layout-standard.blog-display-masonry .content-wrapper article.post,
  .blog-layout-standard.blog-display-masonry2 .content-wrapper article.post {
    float: left;
    width: 50%;
  }

  /* Blog  */
  .entry-display-standard.format-standard .entry-meta, .entry-display-standard.format-image .entry-meta, .entry-display-standard.format-gallery .entry-meta, .entry-display-standard.format-audio .entry-meta, .entry-display-standard.format-video .entry-meta, .entry-display-standard.format-chat .entry-meta {
    text-align: right;
    word-wrap: normal;
  }
  .entry-display-standard.format-standard .entry-meta .featured-post,
  .entry-display-standard.format-standard .entry-meta .categories-links,
  .entry-display-standard.format-standard .entry-meta .comments-links,
  .entry-display-standard.format-standard .entry-meta .tags-links,
  .entry-display-standard.format-standard .entry-meta .work-client,
  .entry-display-standard.format-standard .entry-meta .work-client-url,
  .entry-display-standard.format-standard .entry-meta .edit-link, .entry-display-standard.format-image .entry-meta .featured-post,
  .entry-display-standard.format-image .entry-meta .categories-links,
  .entry-display-standard.format-image .entry-meta .comments-links,
  .entry-display-standard.format-image .entry-meta .tags-links,
  .entry-display-standard.format-image .entry-meta .work-client,
  .entry-display-standard.format-image .entry-meta .work-client-url,
  .entry-display-standard.format-image .entry-meta .edit-link, .entry-display-standard.format-gallery .entry-meta .featured-post,
  .entry-display-standard.format-gallery .entry-meta .categories-links,
  .entry-display-standard.format-gallery .entry-meta .comments-links,
  .entry-display-standard.format-gallery .entry-meta .tags-links,
  .entry-display-standard.format-gallery .entry-meta .work-client,
  .entry-display-standard.format-gallery .entry-meta .work-client-url,
  .entry-display-standard.format-gallery .entry-meta .edit-link, .entry-display-standard.format-audio .entry-meta .featured-post,
  .entry-display-standard.format-audio .entry-meta .categories-links,
  .entry-display-standard.format-audio .entry-meta .comments-links,
  .entry-display-standard.format-audio .entry-meta .tags-links,
  .entry-display-standard.format-audio .entry-meta .work-client,
  .entry-display-standard.format-audio .entry-meta .work-client-url,
  .entry-display-standard.format-audio .entry-meta .edit-link, .entry-display-standard.format-video .entry-meta .featured-post,
  .entry-display-standard.format-video .entry-meta .categories-links,
  .entry-display-standard.format-video .entry-meta .comments-links,
  .entry-display-standard.format-video .entry-meta .tags-links,
  .entry-display-standard.format-video .entry-meta .work-client,
  .entry-display-standard.format-video .entry-meta .work-client-url,
  .entry-display-standard.format-video .entry-meta .edit-link, .entry-display-standard.format-chat .entry-meta .featured-post,
  .entry-display-standard.format-chat .entry-meta .categories-links,
  .entry-display-standard.format-chat .entry-meta .comments-links,
  .entry-display-standard.format-chat .entry-meta .tags-links,
  .entry-display-standard.format-chat .entry-meta .work-client,
  .entry-display-standard.format-chat .entry-meta .work-client-url,
  .entry-display-standard.format-chat .entry-meta .edit-link {
    margin-right: 15px;
    display: block;
  }
  .entry-display-standard.format-standard footer.entry-meta, .entry-display-standard.format-image footer.entry-meta, .entry-display-standard.format-gallery footer.entry-meta, .entry-display-standard.format-audio footer.entry-meta, .entry-display-standard.format-video footer.entry-meta, .entry-display-standard.format-chat footer.entry-meta {
    text-align: left;
  }

  .entry-display-medium-image.format-standard:not(.text-only):not(.is-instagram) .entry-header,
  .entry-display-medium-image.format-standard:not(.text-only):not(.is-instagram) .entry-content, .entry-display-medium-image.format-image:not(.text-only):not(.is-instagram) .entry-header,
  .entry-display-medium-image.format-image:not(.text-only):not(.is-instagram) .entry-content, .entry-display-medium-image.format-gallery:not(.text-only):not(.is-instagram) .entry-header,
  .entry-display-medium-image.format-gallery:not(.text-only):not(.is-instagram) .entry-content, .entry-display-medium-image.format-video:not(.text-only):not(.is-instagram) .entry-header,
  .entry-display-medium-image.format-video:not(.text-only):not(.is-instagram) .entry-content, .entry-display-medium-image.format-audio:not(.text-only):not(.is-instagram) .entry-header,
  .entry-display-medium-image.format-audio:not(.text-only):not(.is-instagram) .entry-content {
    width: 48.382%;
    float: left;
  }
  .entry-display-medium-image.format-standard:not(.text-only):not(.is-instagram) .entry-header, .entry-display-medium-image.format-image:not(.text-only):not(.is-instagram) .entry-header, .entry-display-medium-image.format-gallery:not(.text-only):not(.is-instagram) .entry-header, .entry-display-medium-image.format-video:not(.text-only):not(.is-instagram) .entry-header, .entry-display-medium-image.format-audio:not(.text-only):not(.is-instagram) .entry-header {
    margin-left: 0;
    margin-right: 1.618%;
  }
  .entry-display-medium-image.format-standard:not(.text-only):not(.is-instagram) .entry-content, .entry-display-medium-image.format-image:not(.text-only):not(.is-instagram) .entry-content, .entry-display-medium-image.format-gallery:not(.text-only):not(.is-instagram) .entry-content, .entry-display-medium-image.format-video:not(.text-only):not(.is-instagram) .entry-content, .entry-display-medium-image.format-audio:not(.text-only):not(.is-instagram) .entry-content {
    margin-right: 0;
    margin-left: 1.618%;
  }

  /* Metro item */
  .metro-item {
    width: 25%;
  }

  .metro-item-width2 {
    width: 50%;
  }

  /* Sidebar */
  #secondary .sidebar-inner {
    padding-top: 0;
  }

  /* Tour dates */
  /* Menu */
  #toggle:before {
    font-size: 32px;
    left: auto;
    right: 0;
  }

  #mobile-bar {
    height: 60px;
  }

  .nav-menu-mobile li a,
  .nav-menu-mobile li .wpb-social {
    font-size: 16px;
  }

  /* Comments */
  .comment .avatar {
    float: left;
    margin-right: 20px;
  }
  .comment .comment-content,
  .comment .reply {
    padding-left: 100px;
  }

  /* Form */
  input[type="text"],
  input[type="email"],
  input[type="search"],
  input[type="password"],
  input[type="tel"],
  input[type="url"],
  select {
    width: 75%;
  }

  input[type="submit"] {
    width: auto;
    display: inline-block;
  }

  /* Author info */
  .author-info {
    text-align: left;
  }

  /* Single Post Nav */
  .nav-single .nav-previous {
    border-bottom: none;
  }
  .nav-single .nav-index,
  .nav-single .nav-previous,
  .nav-single .nav-next {
    width: 33.33%;
    display: table-cell;
  }

  body.blog-navigation-standard .nav-single .nav-previous a,
  body.blog-navigation-standard .nav-single .nav-next a {
    padding: 40px 2px;
  }

  /* Discography */
  .discography-display-list .wolf-release {
    margin-bottom: 50px;
  }
  .discography-display-list .wolf-release .entry-thumbnail {
    float: left;
    width: 48.382%;
    margin-right: 1.618%;
  }
  .discography-display-list .wolf-release .entry-content {
    float: left;
    width: 48.382%;
    margin-left: 1.618%;
  }
  .discography-display-list .wolf-release .entry-title {
    margin-top: 0;
  }

  /* Tour dates */
  #wolf-show-meta,
  #wolf-show-content {
    float: left;
  }

  #wolf-show-meta {
    margin-right: 1%;
    width: 34%;
  }

  #wolf-show-content {
    margin-left: 1%;
    width: 64%;
  }

  /* Events */
  #wolf-event-meta,
  #wolf-event-content {
    float: left;
  }

  #wolf-event-meta {
    margin-right: 1%;
    width: 34%;
  }

  #wolf-event-content {
    margin-left: 1%;
    width: 64%;
  }

  /* Footer */
  .sidebar-footer-inner {
    padding: 3em 0;
  }

  #tertiary .widget {
    padding: 1em;
    margin-bottom: 0;
  }

  .footer-widgets-layout-2-cols #tertiary .widget,
  .footer-widgets-layout-4-cols #tertiary .widget {
    float: left;
    width: 50%;
  }

  .footer-widgets-layout-3-cols #tertiary .widget {
    float: left;
    width: 33.33%;
  }

  .footer-widgets-layout-one-half-two-quarter #tertiary .widget {
    float: left;
    width: 25%;
  }
  .footer-widgets-layout-one-half-two-quarter #tertiary .widget:first-child {
    width: 50%;
  }

  .footer-widgets-layout-two-quarter-one-half #tertiary .widget {
    float: left;
    width: 25%;
  }
  .footer-widgets-layout-two-quarter-one-half #tertiary .widget:last-child {
    width: 50%;
  }

  .footer-end #site-navigation-tertiary {
    width: 50%;
    float: left;
    text-align: left;
  }
  .footer-end #site-navigation-tertiary ul li:first-child {
    margin-left: 0;
  }
  .footer-end .wpb-socials-container {
    width: 50%;
    float: right;
    text-align: right;
    padding-top: 0.9em;
  }

  .back-to-top {
    line-height: 2.6;
  }

  body.bottom-bar-layout-centered .credits {
    line-height: 2.6;
  }
  body.bottom-bar-layout-centered .bottom-social-links .wpb-social {
    font-size: 24px;
  }

  body.bottom-bar-layout-default .bottom-social-links {
    float: right;
    width: 50%;
    line-height: 60px;
  }
  body.bottom-bar-layout-default .bottom-social-links .wpb-socials-container {
    text-align: right;
  }
  body.bottom-bar-layout-default.has-bottom-menu .credits {
    display: block;
    text-align: left;
    width: 100%;
  }
  body.bottom-bar-layout-default.has-bottom-menu .tertiary-navigation {
    text-align: left;
    float: left;
    width: 50%;
    font-size: 16px;
  }
  body.bottom-bar-layout-default.no-bottom-menu .tertiary-navigation {
    display: none;
  }
  body.bottom-bar-layout-default.no-bottom-menu .credits {
    float: left;
    text-align: left;
    width: 50%;
    line-height: 60px;
  }
  body.bottom-bar-layout-default.no-bottom-menu .bottom-social-links {
    float: right;
    width: 50%;
  }
  body.bottom-bar-layout-default.no-bottom-menu .bottom-social-links .wpb-socials-container {
    text-align: right;
  }

  body.scroll-to-top-text .back-to-top {
    display: inline-block;
  }

  /* Single tweet shortcode */
  .wolf-bigtweet-content {
    position: relative;
    text-align: left;
    padding-left: 120px;
  }
  .wolf-bigtweet-content:after {
    content: ' ';
    top: 0;
    left: 100px;
    position: absolute;
    height: 100%;
    width: 2px;
    background: rgba(0, 0, 0, 0.1);
  }
  .wolf-bigtweet-content:before {
    font-size: 90px;
    position: absolute;
    top: -30px;
    left: -4px;
  }

  /* Tweet */
  .wolf .wolf-bigtweet-content span.wolf-tweet-text {
    font-size: 24px;
  }

  /* Related posts */
  .related-post-container {
    width: 33.3%;
    float: left;
  }

  .related-post .posted-on {
    display: block;
  }

  .related-post .entry-title {
    margin-bottom: 5px;
  }

  /* Post archives tags list */
  .tag-list ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  .archives-list .archives-row {
    width: 31%;
    margin-left: 1%;
    margin-right: 1%;
    padding-bottom: 0;
    float: left;
  }
  .archives-list .archives-row:first-child {
    margin-left: 0;
  }
  .archives-list .archives-row:last-child {
    margin-right: 0;
  }

  /* Post grid featured quote */
  .post-grid-featured-quote {
    font-size: 16px;
  }

  /* Photo item icons */
  .photo-item-meta-container {
    font-size: 18px;
  }

  /* Basic grid column containers */
  .col-1 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-1 img,
  .col-1 iframe,
  .col-1 embed,
  .col-1 object,
  .col-1 video {
    max-width: 100%;
  }

  .col-2 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-2 img,
  .col-2 iframe,
  .col-2 embed,
  .col-2 object,
  .col-2 video {
    max-width: 100%;
  }

  .col-3 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-3 img,
  .col-3 iframe,
  .col-3 embed,
  .col-3 object,
  .col-3 video {
    max-width: 100%;
  }

  .col-4 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-4 img,
  .col-4 iframe,
  .col-4 embed,
  .col-4 object,
  .col-4 video {
    max-width: 100%;
  }

  .col-5 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-5 img,
  .col-5 iframe,
  .col-5 embed,
  .col-5 object,
  .col-5 video {
    max-width: 100%;
  }

  .col-6 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-6 img,
  .col-6 iframe,
  .col-6 embed,
  .col-6 object,
  .col-6 video {
    max-width: 100%;
  }

  .col-7 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-7 img,
  .col-7 iframe,
  .col-7 embed,
  .col-7 object,
  .col-7 video {
    max-width: 100%;
  }

  .col-8 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-8 img,
  .col-8 iframe,
  .col-8 embed,
  .col-8 object,
  .col-8 video {
    max-width: 100%;
  }

  .col-9 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-9 img,
  .col-9 iframe,
  .col-9 embed,
  .col-9 object,
  .col-9 video {
    max-width: 100%;
  }

  .col-10 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-10 img,
  .col-10 iframe,
  .col-10 embed,
  .col-10 object,
  .col-10 video {
    max-width: 100%;
  }

  .col-11 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-11 img,
  .col-11 iframe,
  .col-11 embed,
  .col-11 object,
  .col-11 video {
    max-width: 100%;
  }

  .col-12 {
    margin-bottom: 20px;
    min-height: 1px;
  }
  .col-12 img,
  .col-12 iframe,
  .col-12 embed,
  .col-12 object,
  .col-12 video {
    max-width: 100%;
  }

  /* Last posts shortcode */
  .wpb-last-posts:not(.wpb-last-posts-classic) article.post {
    float: left;
  }
  .wpb-last-posts:not(.wpb-last-posts-classic).wpb-last-posts-padding-yes {
    width: calc(100% + 20px );
    margin-left: -10px !important;
  }

  .wpb-last-posts {
    zoom: 1;
  }
  .wpb-last-posts:before, .wpb-last-posts:after {
    content: "";
    display: table;
  }
  .wpb-last-posts:after {
    clear: both !important;
  }
  .wpb-last-posts.wpb-last-posts-columns-2 article.post, .wpb-last-posts.wpb-last-posts-columns-4 article.post {
    width: 50%;
  }
  .wpb-last-posts.wpb-last-posts-columns-3 article.post, .wpb-last-posts.wpb-last-posts-columns-6 article.post {
    width: 33.33%;
  }

  .products li .button {
    width: auto;
  }

  .woocommerce-cart #primary,
  .woocommerce-checkout #primary,
  .woocommerce-account #primary {
    float: none;
    margin: 0 auto;
    width: 100%;
  }

  .single-product .product .images {
    float: left;
    width: 48%;
  }
  .single-product .product .summary {
    float: right;
    width: 48%;
  }
  .single-product .product .summary .product_title {
    margin-top: 0;
  }

  .woocommerce-cart .coupon {
    width: auto;
  }
  .woocommerce-cart .coupon label {
    display: inline;
  }
  .woocommerce-cart input.button,
  .woocommerce-cart #coupon_code {
    display: inline-block;
    width: auto;
    margin: 5px 5px;
  }
  .woocommerce-cart #coupon_code {
    padding: 9px 10px;
  }

  /*.woocommerce{
  	&.columns-3{
  		.products li{
  			width: 31%!important;
  			
  			&:nth-child(2n+1){
  				clear:none!important;
  			}
  
  			&:nth-child(3n+1){
  				clear:left!important;
  			}
  		}
  	}
  
  	&.columns-4{
  		.products li{
  			width: 23%!important;
  			margin-right: 1%!important;
  			margin-left: 1%!important;
  			
  			&:nth-child(2n+1),
  			&:nth-child(3n+1){
  				clear:none!important;
  			}
  
  			&:nth-child(4n+1){
  				clear:left!important;
  			}
  		}
  	}
  }*/
}
@media screen and (min-width: 1000px) {
  /* Blog layout */
  .blog-layout-fullwidth.blog-display-grid2 .content-wrapper article.post, .blog-layout-fullwidth.blog-display-column .content-wrapper article.post,
  .blog-layout-standard.blog-display-grid2 .content-wrapper article.post,
  .blog-layout-standard.blog-display-column .content-wrapper article.post {
    width: 33.33%;
  }
  .blog-layout-fullwidth.blog-display-grid2 .content-wrapper article.post:nth-child(2n+1), .blog-layout-fullwidth.blog-display-column .content-wrapper article.post:nth-child(2n+1),
  .blog-layout-standard.blog-display-grid2 .content-wrapper article.post:nth-child(2n+1),
  .blog-layout-standard.blog-display-column .content-wrapper article.post:nth-child(2n+1) {
    clear: none;
  }
  .blog-layout-fullwidth.blog-display-grid2 .content-wrapper article.post:nth-child(3n+1), .blog-layout-fullwidth.blog-display-column .content-wrapper article.post:nth-child(3n+1),
  .blog-layout-standard.blog-display-grid2 .content-wrapper article.post:nth-child(3n+1),
  .blog-layout-standard.blog-display-column .content-wrapper article.post:nth-child(3n+1) {
    clear: left;
  }
  .blog-layout-fullwidth.blog-display-grid .content-wrapper article.post, .blog-layout-fullwidth.blog-display-grid3 .content-wrapper article.post, .blog-layout-fullwidth.blog-display-photo .content-wrapper article.post, .blog-layout-fullwidth.blog-display-masonry .content-wrapper article.post, .blog-layout-fullwidth.blog-display-masonry2 .content-wrapper article.post,
  .blog-layout-standard.blog-display-grid .content-wrapper article.post,
  .blog-layout-standard.blog-display-grid3 .content-wrapper article.post,
  .blog-layout-standard.blog-display-photo .content-wrapper article.post,
  .blog-layout-standard.blog-display-masonry .content-wrapper article.post,
  .blog-layout-standard.blog-display-masonry2 .content-wrapper article.post {
    width: 33.33%;
  }
  .blog-layout-fullwidth.blog-display-grid3 .content-wrapper article.post,
  .blog-layout-standard.blog-display-grid3 .content-wrapper article.post {
    width: 25%;
  }

  .blog-layout-sidebar-left.blog-display-grid2 .content-wrapper article.post, .blog-layout-sidebar-left.blog-display-column .content-wrapper article.post,
  .blog-layout-sidebar-right.blog-display-grid2 .content-wrapper article.post,
  .blog-layout-sidebar-right.blog-display-column .content-wrapper article.post {
    float: left;
    width: 50%;
  }
  .blog-layout-sidebar-left.blog-display-grid2 .content-wrapper article.post:nth-child(2n+1), .blog-layout-sidebar-left.blog-display-column .content-wrapper article.post:nth-child(2n+1),
  .blog-layout-sidebar-right.blog-display-grid2 .content-wrapper article.post:nth-child(2n+1),
  .blog-layout-sidebar-right.blog-display-column .content-wrapper article.post:nth-child(2n+1) {
    clear: left;
  }
  .blog-layout-sidebar-left.blog-display-grid .content-wrapper article.post, .blog-layout-sidebar-left.blog-display-grid3 .content-wrapper article.post, .blog-layout-sidebar-left.blog-display-photo .content-wrapper article.post, .blog-layout-sidebar-left.blog-display-masonry .content-wrapper article.post, .blog-layout-sidebar-left.blog-display-masonry2 .content-wrapper article.post,
  .blog-layout-sidebar-right.blog-display-grid .content-wrapper article.post,
  .blog-layout-sidebar-right.blog-display-grid3 .content-wrapper article.post,
  .blog-layout-sidebar-right.blog-display-photo .content-wrapper article.post,
  .blog-layout-sidebar-right.blog-display-masonry .content-wrapper article.post,
  .blog-layout-sidebar-right.blog-display-masonry2 .content-wrapper article.post {
    float: left;
    width: 50%;
  }

  /* Split layout */
  .single-work-layout-split .content-wrapper,
  .single-post-layout-split .content-wrapper {
    padding-top: 50px;
  }
  .single-work-layout-split .entry-content,
  .single-post-layout-split .entry-content {
    padding-top: 0;
  }
  .single-work-layout-split .entry-content p:first-of-type,
  .single-post-layout-split .entry-content p:first-of-type {
    margin-top: 0;
  }

  .panel-left {
    margin-left: 1%;
    width: 49%;
    text-align: right;
    float: left;
    margin-bottom: 0;
  }
  .panel-left img,
  .panel-left iframe {
    width: 100%;
  }

  .panel-right {
    width: 50%;
    float: left;
    max-width: 750px;
  }

  /* Frame layout */
  body.site-layout-frame .site-container {
    margin: 15px;
  }

  /* Masonry 2 filter */
  body.blog-display-masonry2 #blog-filter {
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1200px) {
  /* Blog */
  .site-layout-wide.blog-layout-fullwidth.blog-display-grid2 .content-wrapper article.post, .site-layout-wide.blog-layout-fullwidth.blog-display-column .content-wrapper article.post {
    width: 25%;
  }
  .site-layout-wide.blog-layout-fullwidth.blog-display-grid2 .content-wrapper article.post:nth-child(3n+1), .site-layout-wide.blog-layout-fullwidth.blog-display-column .content-wrapper article.post:nth-child(3n+1) {
    clear: none;
  }
  .site-layout-wide.blog-layout-fullwidth.blog-display-grid2 .content-wrapper article.post:nth-child(4n+1), .site-layout-wide.blog-layout-fullwidth.blog-display-column .content-wrapper article.post:nth-child(4n+1) {
    clear: left;
  }
  .site-layout-wide.blog-layout-fullwidth.blog-display-grid .content-wrapper article.post, .site-layout-wide.blog-layout-fullwidth.blog-display-grid3 .content-wrapper article.post, .site-layout-wide.blog-layout-fullwidth.blog-display-photo .content-wrapper article.post, .site-layout-wide.blog-layout-fullwidth.blog-display-masonry .content-wrapper article.post, .site-layout-wide.blog-layout-fullwidth.blog-display-masonry2 .content-wrapper article.post {
    width: 25%;
  }

  /* Header */
  .post-header-type-standard .post-header {
    padding: 7em 0;
  }

  .post-header-type-big .post-header {
    padding: 10em 0;
  }

  #top-search-form input {
    font-size: 48px;
  }

  /* Gallery */
  .mosaic-gallery .block {
    width: 49.999%;
    float: left;
  }

  /* Post nav */
  body.blog-navigation-standard .nav-single .nav-previous a,
  body.blog-navigation-standard .nav-single .nav-next a {
    padding: 6rem 4rem;
  }

  /* Post archives tags list */
  .tag-list ul {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
    -moz-column-gap: 0.75em;
    -webkit-column-gap: 0.75em;
    column-gap: 0.75em;
  }

  /* Footer widgsets */
  .footer-widgets-layout-4-cols #tertiary .widget {
    width: 25%;
  }

  /* Last posts shortcode */
  .wpb-last-posts.wpb-last-posts-columns-4 article.post {
    width: 25%;
  }

  .wpb-last-posts.wpb-last-posts-columns-6 article.post {
    width: 16.66%;
  }

  .widget_shopping_cart .button {
    width: 48%;
    margin: 0;
    margin-right: 3%;
  }
  .widget_shopping_cart .checkout {
    margin-right: 0;
  }

  .woocommerce .col2-set .col-1,
  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-1,
  .woocommerce-page .col2-set .col-2 {
    float: left;
    width: 48.382%;
    margin-left: 1.618%;
    margin-right: 1.618%;
  }
  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1 {
    margin-left: 0;
  }
  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-2 {
    margin-right: 0;
  }
}
@media screen and (min-width: 1600px) {
  /* Blog layout */
  .site-layout-wide.blog-layout-fullwidth.blog-display-masonry .content-wrapper article.post, .site-layout-wide.blog-layout-fullwidth.blog-display-masonry2 .content-wrapper article.post {
    width: 20%;
  }
  .site-layout-wide.blog-layout-fullwidth.blog-display-grid3 .content-wrapper article.post {
    width: 16.66%;
  }

  .site-layout-wide.blog-layout-fullwidth.blog-display-metro .metro-item {
    width: 12.5%;
  }
  .site-layout-wide.blog-layout-fullwidth.blog-display-metro .metro-item-width2 {
    width: 25%;
  }

  /* Post header big */
  .post-header-type-big:not(.site-layout-boxed) .post-header {
    padding: 14em 0;
  }
}
