/*
 *  Usage:
 *
      <div class="sk-rotating-plane"></div>
 *
 */
.sk-rotating-plane {
  width: 40px;
  height: 40px;
  background-color: #333;
  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: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
            animation: sk-doubleBounce 2s 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: #333;
    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: #333;
    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: #333;
  border-radius: 100%;
  -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
          animation: sk-pulseScaleOut 1s 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: #333;
    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: #333;
    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: #333;
    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: #333;
    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: 0.0s;
            animation-delay: 0.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: 0; }
  .sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #333;
    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: #333;
    -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; } }
/* photos */
html.viewer-open { overflow: hidden; }
#modlar-photos .breadcrumb, #modlar-photos-collection .breadcrumb { margin-top: 24px; }
#modlar-photos h1 { color: #e74c3c; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; margin-top: 14px; margin-bottom: 20px; }
#modlar-photos h1 ~ p:last-of-type { margin-bottom: 34px; }
#modlar-photos .photo .photo-tile > div > .save-to-folder { position: absolute; top: 0; right: 0; padding: 13px 21px; display: none; }
#modlar-photos .photo .photo-tile:hover > div > .save-to-folder { display: block; z-index: 5; }
#modlar-photos .photo .photo-tile > div > a { position: relative; display: block; }
#modlar-photos .photo .photo-tile a .photo-loading { display: flex; justify-content: center; align-items: center; position: absolute; width: 100%; height: 100%; }
#modlar-photos .photo .photo-title { height: 40px; margin: 15px 0 34px; overflow: hidden; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 16px; text-align: center; }
#modlar-photos .photo .photo-title a { color: #000; }
#modlar-photos .photo .photo-title a:hover { color: #e74c3c; text-decoration: none; }
#modlar-photos .photos-carousel + #photos { margin-top: 30px; }
#modlar-photos .photo .photo-tile img { margin-left: auto; margin-right: auto; display: block; }
#modlar-photos .photo .photo-tile > div { margin-left: auto; margin-right: auto; position: relative; }

/* project type */
#project-type-nav .filter-title, #collection-type-nav .filter-title, .photo-collections-sidenav { margin: 0 0 10px; font-size: 14px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; cursor: pointer; color: #000000 !important; text-decoration: none !important; }
#project-type-nav i.btb, #collection-type-nav i.btb { position: relative; margin-left: 9px; font-size: 10px; }
#project-type-nav .project-type a.project-type-link, #collection-type-nav .collection-type a.collection-type-link { color: #000000; font-size: 13px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#project-type-nav .project-type a.project-type-link:hover, #photo-project-type-nav .project-type a.project-type-link:hover span, #collection-type-nav .collection-type a.collection-type-link:hover, #photo-collection-type-nav .collection-type a.collection-type-link:hover span { color: #e74c3c; }
#project-type-nav .project-type a.project-type-link span, #collection-type-nav .collection-type a.collection-type-link span { font-size: 11px; color: #81828f; font-weight: normal; }
#project-type-nav .project-type a.project-type-link.active, #collection-type-nav .collection-type a.collection-type-link.active { color: #e74c3c; }
#project-type-nav .project-type a.project-type-link.active span, #collection-type-nav .collection-type a.collection-type-link.active span { color: #e74c3c; }
#project-type-nav .project-type .children-list, #collection-type-nav .collection-type .children-list { margin-left: 10px; }
#project-type-nav .project-type, #collection-type-nav .collection-type { margin-bottom: 7px; }

/* collections sidenav */
.sidenav-border { border-top: 1px solid #e7e7e7; margin: 28px 0; }
.photo-collections-sidenav a { color: #000000 !important; text-decoration: none !important; }
.photo-collections-sidenav a:hover { color: #e74c3c !important; }
.photo-collections-sidenav span.label { background-color: #e74c3c; font-size: 10px; font-weight: normal; margin-left: 12px; padding: .2em .6em .2em; }

/* photos carousel */
li.refined-breadcrumb a { text-decoration: none !important; }
li.refined-breadcrumb a > span { padding: 3px 6px; border: 1px solid #dbdbdb; border-radius: 2px; font-size: 13px; }
li.refined-breadcrumb a > span i { position: relative; top: -2px; font-size: 8px; color: #666; }
li.refined-breadcrumb a:hover > span i { color: #e74c3c; }

div.photos-carousel #lightslider { list-style: none; max-height: 320px; margin: 0; padding-left: 0; overflow: hidden; }
div.photos-carousel #lightslider > li.active { position: relative; }
div.photos-carousel #lightslider > li a.modlar-btn.photo-link { display: none; position: absolute; top: 43%; left: 41.8%; text-transform: uppercase; padding: 11px 21px; font-size: 14px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
div.photos-carousel .lSSlideOuter:hover #lightslider > li.active a.modlar-btn.photo-link { display: block; }
div.photos-carousel { position: relative; max-height: 320px; margin-bottom: 25px; overflow: hidden; }
div.photos-carousel .lSPager { z-index: 3; position: absolute; bottom: 21px; right: 0; left: 0; opacity: 0.8; }
div.photos-carousel .lSSlideOuter .lSPager.lSpg > li { position: relative; padding: 0 14px; }
div.photos-carousel .lSSlideOuter .lSPager.lSpg > li a { position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; margin: -3px 0 0 -3px; background-color: #fff; border: 1px solid #000; border-radius: 0; -webkit-transition: all 0.1s ease-in-out; -moz-transition: all 0.1s ease-in-out; -o-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; }
div.photos-carousel .lSSlideOuter .lSPager.lSpg > li a:hover { width: 10px; height: 10px; margin: -5px 0 0 -5px; }
div.photos-carousel .lSSlideOuter .lSPager.lSpg > li.active a, div.photos-carousel .lSSlideOuter .lSPager.lSpg > li.active a:hover { width: 12px; height: 12px; margin: -6px 0 0 -6px; background-color: #e74c3c; border-color: #e74c3c; }
div.photos-carousel .lSSlideOuter .lSAction > .lSPrev { left: 16px; }
div.photos-carousel .lSSlideOuter .lSAction > .lSNext { right: 16px; }
div.photos-carousel .lSSlideOuter .lSAction > a { width: auto; height: auto; opacity: 1; color: #ffffff; font-size: 38px; background-image: none; text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000, 1px 0 0 #000, -1px 0 0 #000, 0px -1px 0 #000, 0 1px 0 #000; }

/* viewer */
#photo-viewer, #collection-viewer { z-index: 1039; position: fixed; top: 0; left: 0; bottom: 0; right: 0; width: 100%; margin: 0; padding: 0; background-color: #000; }
#photo-viewer.viewer-hidden, #collection-viewer.viewer-hidden { display: none !important; visibility: hidden !important; }
#photo-viewer .viewer-close, #collection-viewer .viewer-close { position: absolute; top: 0; right: 0; width: 46px; height: 46px; padding: 11px; background-color: #fff; font-size: 24px; color: #000; z-index: 10; }
#photo-viewer .viewer-close i, #collection-viewer .viewer-close i { cursor: pointer; }
#photo-page, #collection-page { margin: 0; padding: 0; background: #000; overflow: hidden; position: relative; }
#photo-page .back-to-collection { min-height: 46px; margin-bottom: 15px; }
#photo-page .back-to-collection div { display: inline-block; background-color: #ffffff; border: 1px solid #000000; padding: 3px 5px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#photo-page .back-to-collection div a { text-decoration: none !important; color: #e74c3c !important; }
#photo-page .back-to-collection div img { display: inline-block; margin-left: 5px; }

/* viewer - view */
#photo-view, #collection-view { width: calc(100% - 420px); min-height: 470px; height: 100vh; padding: 0; }
#photo-view.nav-open, #collection-view.nav-open { height: calc(100vh - 109px) !important; } /* height of nav bar */
div.back-to-collection + #photo-view.nav-open { height: calc(100vh - 126px) !important; } /* height of nav bar - back to collection btn */
#photo-view.expand, #collection-view.expand { width: 100% !important; }
#photo-view .photo-image, #collection-view .collection-photo-slider { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; text-align: center; white-space: nowrap; position: relative; }
#photo-view .photo-image span { display: inline-block; vertical-align: middle; position: relative; }
#photo-view .photo-image img, #collection-view .collection-photo-slider > div > span img { max-width: 100%; max-height: 100vh; }
#photo-view.nav-open .photo-image img, #collection-view.nav-open .collection-photo-slider > div > span > img { max-height: calc(100vh - 109px) !important; } /* height of nav bar */
div.back-to-collection + #photo-view.nav-open .photo-image img { max-height: calc(100vh - 126px) !important; } /* height of nav bar */
#photo-view .photo-nav, #collection-view .photo-nav { position: absolute; z-index: 4; top: 50%; display: inline-block; margin-top: -26px; cursor: pointer; font-size: 50px; color: #fff; }
#photo-view .photo-nav i, #collection-view .photo-nav i { text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000, 1px 0 0 #000, -1px 0 0 #000, 0px -1px 0 #000, 0 1px 0 #000; }
#photo-view .photo-prev, #collection-view .photo-prev { left: 20px; }
#photo-view .photo-next, #collection-view .photo-next { right: 20px; }
#photo-view .photo-expand, #photo-view .photo-add-hotspot, #collection-view .photo-expand { position: absolute; bottom: 35px; right: 32px; width: 40px; height: 40px; padding: 8px 9px 10px; background-color: #000; border: 1px solid #fff; font-size: 19px; color: #fff; text-align: center; cursor: pointer; }
#photo-view .photo-add-hotspot { left: 32px; }
#photo-view .photo-add-hotspot .btl { font-weight: normal; }
#photo-view .photo-add-hotspot .hotspot-tooltip { display: none; position: absolute; background-color: #ecf0f1; font-size: 14px; border-radius: 2px; color: #000000; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; white-space: nowrap; padding: 8px 12px; top: -63px; left: 0; }
#photo-view .photo-add-hotspot .hotspot-tooltip:after { content: ''; position: absolute; border-width: 10px 6px 0; border-style: solid; border-top-color: #ecf0f1; left: 14%; bottom: -10px; border-right-color: transparent; border-left-color: transparent; }
#photo-view .photo-add-hotspot:hover .hotspot-tooltip { display: block; }

#photo-view .learn-more, #collection-view .learn-more { position: absolute; bottom: 32px; left: 32px; padding: 12px; color: #fff; background-color: #000; border: 1px solid #fff; cursor: pointer; }
#photo-view .learn-more i, #collection-view .learn-more i { margin: 0 0 0 4px; padding: 0; }
#photo-view > .save-to-folder, #collection-view .collection-photo-slider > div > .save-to-folder { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); padding: 12px 26px; border: 1px solid #e74c3c; }

/* viewer - sidebar */
#photo-sidebar, #collection-sidebar { position: absolute; top: 0; right: 0; width: 420px; padding: 0; background-color: #fff; transition: right 250ms ease-out; z-index: 3; }
#photo-sidebar.expand, #collection-sidebar.expand { right: -420px; }

#photo-tabs, #collection-tabs { position: absolute; width: 100%; top: 0; right: 0; }
#photo-tabs ul, #collection-tabs ul { height: 46px; margin: 0; padding-left: 0; background-color: #f4f4f4; list-style: none; }
#photo-tabs ul li, #collection-tabs ul li { position: relative; display: inline-block; float: left; width: 50px; height: 46px; padding: 16px 0 15px; border-right: 1px solid #e6e6e6; text-align: center; transition: all 250ms ease-in-out; cursor: pointer; }
#photo-tabs ul li.current, #collection-tabs ul li.current { cursor: default; background-color: #fff; border-right-color: transparent; box-shadow: 2px -1px 1px rgba(0,0,0,0.08), -2px -1px 1px rgba(0,0,0,0.08); z-index: 1; }
#photo-tabs ul li.current::before, #collection-tabs ul li.current::before { content: ""; position: absolute; top: 0; left: 0; height: 3px; width: calc(100% + 1px); background-color: #ff6a5a; }
#photo-tabs ul li:first-child, #collection-tabs ul li:first-child { border-left-color: transparent; }
#photo-tabs ul li:first-child.current, #collection-tabs ul li:first-child.current { box-shadow: 2px -1px 2px rgba(0,0,0,0.08); }
#photo-tabs ul li:first-child.disabled, #collection-tabs ul li:first-child.disabled { cursor: default; }
#photo-tabs ul li i, #collection-tabs ul li i { transition: all 250ms ease-in-out; font-size: 18px; color: #666; }
#photo-tabs ul li.disabled i, #collection-tabs ul li.disabled i { color: #ccc; }

#photo-info, #collection-info { position: relative; width: 100%; height: calc(100vh - 45px); margin-top: 45px; padding-top: 1px; }
#photo-sidebar.nav-open #photo-info, #collection-sidebar.nav-open #collection-info { height: calc(100vh - 108px) !important; }  /* 45px + height of nav bar */
#photo-tabs::after, #photo-info::after, #collection-tabs::after, #collection-info::after { content: ""; position: absolute; left: 1px; right: 0; height: 16px; pointer-events: none; }
#photo-tabs::after, #collection-tabs::after { top: 46px; height: 16px; background: linear-gradient(to bottom, #fff 10%, rgba(255,255,255,0) 100%); z-index: 1; }
#photo-info::after, #collection-info::after { top: calc(100% - 16px); background: linear-gradient(to top, #fff 10%, rgba(255,255,255,0) 100%); }

.photo-info-scroll, .collection-info-scroll { position: absolute; overflow-x: hidden; overflow-y: scroll; height: 100%; width: 100%; }
.photo-info-body, .collection-info-body { position: relative; min-width: 100%; padding: 25px 0 30px; }
.photo-info, .collection-info { padding: 20px 30px 10px; }
.photo-info h1, .collection-info h1 { margin-top: 0; font-size: 24px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; color: #e74c3c; }
.photo-info h2, .collection-info h2 { margin-top: 0; margin-bottom: 6px; font-size: 12px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; color: #e74c3c; text-transform: uppercase; }
.photo-info h3, .collection-info h3 { margin-top: 0; margin-bottom: 12px; font-size: 18px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; color: #e74c3c; }
.collection-info h3 > a { text-decoration: none !important; color: #e74c3c !important; }
.collection-info h3 > a:hover { color: #c0392c !important; }

.photo-info.overview, .collection-info.overview { padding-top: 0 !important; }
.photo-info.overview .photo-share, .collection-info.overview .collection-share { padding: 11px 0; margin-bottom: 10px; text-align: center; }
.photo-info.overview .photo-share .title, .photo-info.overview .photo-share .title-like, .collection-info.overview .collection-share .title, .collection-info.overview .collection-share .title-like { display: inline-block; padding-right: 6px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, Arial, sans-serif; font-size: 13px; color: #4e4c4e; }
.photo-info.overview .photo-share .title-like, .collection-info.overview .collection-share .title-like { margin-left: 24px; }
.photo-info.overview .photo-share a, .collection-info.overview .collection-share a { margin: 0 5px; font-size: 13px; color: #4E4C4E; }
.photo-info.overview .photo-share a:first-child, .collection-info.overview .collection-share a:first-child { margin-left: 8px; }

.photo-info.overview .photo-share div.photo-like, .collection-info.overview .collection-share div.collection-like { display: inline-block; text-align: right; color: #81828f; }
.photo-info.overview .photo-share div.photo-like.disabled, .collection-info.overview .collection-share div.collection-like.disabled { pointer-events: none; cursor: default; }
.photo-info.overview .photo-share .p-like, .collection-info.overview .collection-share .c-like { display: inline-block; vertical-align: middle; font-size: 12px; }
.photo-info.overview .photo-share .bt-heart, .collection-info.overview .collection-share .bt-heart { cursor: pointer; }
.photo-info.overview .photo-share div.unlike, .collection-info.overview .collection-share div.unlike { color: #81828f; text-align: right; }
.photo-info.overview .photo-share div.like, .collection-info.overview .collection-share div.like { color: #e74c3c; }
.photo-info.overview .photo-share div.p-like, .collection-info.overview .collection-share div.c-like { display: inline-block; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 12px; vertical-align: middle; }

.photo-info.overview .overview-details, .collection-info.overview .overview-details { margin: 0; padding: 0; list-style: none; }
.photo-info.overview .overview-details .overview-item, .collection-info.overview .overview-details .overview-item { margin-bottom: 4px; font-size: 13px; color: #4e4c4e; position: relative; }
.photo-info.overview .overview-details .overview-item .item, .collection-info.overview .overview-details .overview-item .item { position: absolute; left: 0; }
.photo-info.overview .overview-details .overview-item .item > div, .collection-info.overview .overview-details .overview-item .item > div { margin-left: 14px; }
.photo-info.overview .overview-details .overview-item .glyphicon-stop, .collection-info.overview .overview-details .overview-item .glyphicon-stop { position: absolute; font-size: 6px;  color: #e74c3c; top: 7px; }
.photo-info.overview .overview-details .overview-item a:hover, .collection-info.overview .overview-details .overview-item a:hover { color: #c0392c; text-decoration: none; }
.photo-info.overview .overview-intro, .collection-info.overview .overview-intro { margin-top: 28px; font-size: 14px; line-height: 20px; }
.photo-info.overview .overview-intro p:last-child, .collection-info.overview .overview-intro p:last-child { margin-bottom: 0; }

.photo-info.project-type a, .photo-info.style a, .photo-info.materials a, .photo-info.brands a, .collection-info.collection-type a, .collection-info.style a, .collection-info.materials a { display: inline-block; height: 30px; margin-right: 6px; margin-top: 10px; }
.photo-info.project-type a:hover, .photo-info.style a:hover, .photo-info.materials a:hover, .photo-info.brands a:hover, .photo-info.project-type a:focus, .photo-info.style a:focus, .photo-info.materials a:focus, .photo-info.brands a:focus, .collection-info.collection-type a:hover, .collection-info.style a:hover, .collection-info.materials a:hover, .collection-info.project-type a:focus, .collection-info.style a:focus, .collection-info.materials a:focus { text-decoration: none; }
.photo-info.project-type span.label, .photo-info.style span.label, .photo-info.materials span.label, .photo-info.brands span.label, .collection-info.collection-type span.label, .collection-info.style span.label, .collection-info.materials span.label { padding: 6px 12px; color: #333; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-weight: normal; font-size: 13px; border-radius: 2px; background-color: #ecf0f1; }
.photo-info.project-type span.label:hover, .photo-info.style span.label:hover, .photo-info.materials span.label:hover, .photo-info.brands span.label:hover, .collection-info.collection-type span.label:hover, .collection-info.style span.label:hover, .collection-info.materials span.label:hover { background-color: #d4d8d9; }

.photo-info.project-photos { padding-bottom: 0 !important; }
.photo-info.project-photos > div, .photo-info.related-photos > div, .collection-info.collection-photos .collection-gallery-list { margin-right: -15px; }
.photo-info.project-photos a, .photo-info.related-photos a, .collection-info.collection-photos .collection-gallery-list div { float: left; margin: 0 10px 10px 0; }

.photo-info.related-photos { padding-bottom: 0 !important; }

/* phot / collection ad unit */
#photo-ad-unit, #collection-ad-unit { position: absolute; bottom: 35px; right: 90px; }

/*.photo-info.related-products { padding-bottom: 0 !important; }*/
.photo-info.related-products .related-product { position: relative; clear: both; margin-bottom: 10px; padding: 2px 0 0 74px; min-height: 64px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 14px; }
.photo-info.related-products .related-product a { display: block; color: #000; }
.photo-info.related-products .related-product a:hover { color: #e74c3c; text-decoration: none; }
.photo-info.related-products .related-product a:first-of-type { position: absolute; top: 0; left: 0; }
.photo-info.related-products .related-product a.related-product-page { font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 12px; }

.photo-info.questions { padding: 30px 0 10px !important; }
.photo-info.questions .ask-photo-question { padding: 0 30px; }
.photo-info.questions .ask-photo-question h3 { margin-top: 9px; margin-bottom: 0; }
.photo-info.questions .ask-photo-question a.modlar-btn { font-size: 12px; padding: 8px 13px; bottom: 14px; }
.photo-info.questions .expand-questions { color: #e74c3c; font-size: 14px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; margin-top: 18px; cursor: pointer; }
.photo-info.questions .expand-answers { color: #e74c3c; cursor: pointer; }

#photo-questions .question { margin-top: 35px; margin-bottom: 25px; padding: 0 30px; }
#photo-questions .question-user-avatar { width: 30px; height: 30px; float: left; margin-right: 8px; }
#photo-questions .question-content { float: left; width: 316px; }
#photo-questions .question-content .question-user { font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 14px; color: #4e4c4e; text-decoration: none !important; }
#photo-questions .question-content .question-title { font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 14px; color: #e74c3c; display: inline; text-decoration: none !important; }
#photo-questions .question-content > p { display: inline; color: #4e4c4e; font-size: 13px; font-family: 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }

#photo-questions .question-answers .question-answer-user { font-size: 13px; }
#photo-questions .question-answers .question-answer-avatar, #photo-questions .question-answers .question-answer-content { margin-top: 25px; }
#photo-questions .question-answer-avatar { width: 30px; height: 30px; float: left; margin-right: 8px; }
#photo-questions .question-answers .add-answer { padding: 0; background-color: transparent; margin-bottom: 0; }
#photo-questions .question-answers .add-answer > .modlar-alert { margin: 10px 0; }
#photo-questions .add-answer { padding: 14px 25px 14px 67px; background-color: #ecf0f1; }
#photo-questions .add-answer .form-group { margin-bottom: 0; }
#photo-questions .add-answer textarea { resize: none; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 13px; background-color: #ffffff; }

#photo-questions .question-answer-content { float: left; width: 276px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 13px; }
#photo-questions .question-answer-content textarea.discuss { border-bottom: none; }
#photo-questions .question-answer-content textarea:focus { border-color: #ccc; outline: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
#photo-questions .question-answer-content p { margin: 0; }
#photo-questions .question-answer-content button { padding: 4px 10px; }

#photo-questions .question-answer-content div.answer-edit-menu { position: relative; display: inline-block; }
#photo-questions .question-answer-content a.answer-edit, div.question-answers div.add-answer a.answer-delete { cursor: pointer; margin-left: 10px; }
#photo-questions .question-answer-content a.answer-edit i, div.question-answers div.add-answer a.answer-delete i  { color: #ff6a5a; font-size: 10px; }
#photo-questions .question-answer-content ul.dropdown-menu { left: 30px; font-size: 12px; min-width: 110px; -webkit-box-shadow: none; box-shadow: none; }
#photo-questions .question-answer-content ul.dropdown-menu li { text-align: center; }
#photo-questions .question-answer-content ul.dropdown-menu li a { padding: 3px 10px; }
#photo-questions .question-answer-content .add-answer-details { display: none; padding: 8px; text-align: right; background-color: #fff; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; border-left: 1px solid #ccc; }
#photo-questions div.answer-like { color: #81828f; line-height: 14px; }
#photo-questions div.answer-like.disabled { pointer-events: none; cursor: default; }
#photo-questions .a-like { margin-top: 1px; display: inline-block; vertical-align: middle; font-size: 12px; }
#photo-questions .bt-heart { vertical-align: middle; font-size:13px; cursor: pointer; }
#photo-questions div.unlike { color: #81828f; }
#photo-questions div.like { color: #e74c3c; }
#photo-questions div.a-like { display: inline-block; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 12px; vertical-align: middle; }

.photo-info.color .hex-color { float: left; width: 50px; height: 50px; margin-right: 7px; border-radius: 50%; border: 1px solid #bdc3c7; }

#photo-page .photo-info.sponsored-paints .sponsored-paint-heading { display: inline-block; margin-right: 50px; }
#photo-page .photo-info.sponsored-paints .paint-sponsor-logo { display: inline-block; margin-bottom: 10px;}
#photo-page .paint-color { display: inline-block; width: 50px; height: 50px; margin-right: 15px; border-radius: 50%; border: 1px solid #bdc3c7; }
#photo-page .paint-name { font-size: 14px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#photo-page .paint-link { font-size: 13px; }
#photo-page .paint-link a:hover { color: #c0392c; text-decoration: none; }
#photo-page .sponsored-paint { position: relative; }
#photo-page .paint-info-container { display: inline-block; position: absolute; top: 4px; }

.photo-info.description .overview-description, .collection-info.description .overview-description { font-size: 15px; line-height: 24px; }
.photo-info.description .overview-description p:last-child, .collection-info.description .overview-description p:last-child { margin-bottom: 0; }

.photo-info.references a { margin-top: 0; font-size: 18px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; color: #bdc3c7; }
#photo-references .modal-dialog { width: 480px; }
#photo-references .modal-header { padding-bottom: 5px; border-bottom: none; }
#photo-references .modal-header h3 { font-size: 20px; }
#photo-references .modal-body { padding: 0 15px 15px; }
#photo-references .photo-references-title { font-family: 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 14px; }
#photo-references .photo-references-list { max-height: 320px; margin-bottom: 15px; overflow: auto; }
#photo-references .photo-reference { word-wrap: break-word; font-size: 12px; color: #9b9b9b; }

/* photo recommend / collection recomend*/
#photorecommend .modal-dialog, #collectionrecommend .modal-dialog { width: 470px; margin: 100px auto; }
#photo-recommend-frm .modal-header, #collection-recommend-frm .modal-header { border-bottom: none; }
#photo-recommend-frm .modal-header h4, #collection-recommend-frm .modal-header h4 { font-size: 28px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; color:#e74c3c; }
#photo-recommend-frm .modal-header .photo-recommend-error, #collection-recommend-frm .modal-header .collection-recommend-error { background-color: #dddddd; color: #333333; line-height: 19px; padding: 12px; position: relative; margin-bottom: 5px; font-size: 13px; margin-top: 20px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#photo-recommend-frm .modal-header .photo-recommend-error:after, #collection-recommend-frm .modal-header .collection-recommend-error:after { content: ""; top: 100%; left: 20px; border-top: 12px solid #dddddd; position: absolute; border-left: 8px solid transparent; border-right: 8px solid transparent; }
#photo-recommend-frm .modal-body, #collection-recommend-frm .modal-body { padding: 0 15px; }
#photo-recommend-frm .modal-body label, #collection-recommend-frm .modal-body label { font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#photo-recommend-frm .modal-body input, #collection-recommend-frm .modal-body input { height: 43px; line-height: 28px; }
#photo-recommend-frm .modal-body .has-error .form-control, #collection-recommend-frm .modal-body .has-error .form-control { border-color: #a94442 !important; }
#photo-recommend-frm .modal-body .form-control, #collection-recommend-frm .modal-body .form-control { border: 1px solid #9b9b9b; resize: none; }
#photo-recommend-frm .modal-body p, #collection-recommend-frm .modal-body p { font-size: 14px; color: #333; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#photo-recommend-frm .modal-footer, #collection-recommend-frm .modal-footer { border-top: none; }
#photo-recommend-frm .modal-footer .photo-recommend-cancel, #collection-recommend-frm .modal-footer .collection-recommend-cancel { background-color: #dddddd; color: #7D7D7D; }

/* ask question popup / answer delete */
#ask-question-popup .modal-dialog { width: 470px; margin: 100px auto; }
#questionfrm .modal-header { border-bottom: none; }
#questionfrm .modal-header h4 { font-size: 28px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; color:#e74c3c; }
#questionfrm .modal-header .modlar-answers-error { background-color: #dddddd; color: #333333; line-height: 19px; padding: 12px; position: relative; margin-bottom: 5px; font-size: 13px; margin-top: 20px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#questionfrm .modal-header .modlar-answers-error:after { content: ""; top: 100%; left: 20px; border-top: 12px solid #dddddd; position: absolute; border-left: 8px solid transparent; border-right: 8px solid transparent; }
#questionfrm .modal-body { padding: 0 15px; }
#questionfrm .modal-body #question { height: 43px; line-height: 28px; }
#questionfrm .modal-body #questiondetails { height: 165px; }
#questionfrm .modal-body .has-error .form-control { border-color: #a94442 !important; }
#questionfrm .modal-body .form-control { border: 1px solid #9b9b9b; resize: none; }
#questionfrm .modal-body p { font-size: 14px; color: #e74c3c; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#questionfrm .modal-footer { border-top: none; }
#questionfrm .modal-footer .ask-question-cancel { background-color: #dddddd; color: #7D7D7D; }

#modlar-photos .popover.bottom { margin-top: 20px; width: 250px; }
#modlar-photos .popover.bottom > .arrow { left: 89%!important; border-bottom-color: #72d9a0; }
#photo-page .popover.left { margin-left: -16px; }
#photo-page .popover.left > .arrow { border-left-color: #72d9a0; }

/* photo hotspots */
#hotspot-cursor { display: none; z-index: 10001; position: absolute; background-color: #ecf0f1; font-size: 14px; border-radius: 2px; color: #000000; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; white-space: nowrap; padding: 8px 12px; }
.photo-image img.add-hotspot-cursor-select { cursor: default; }
.photo-add-hotspot { z-index: 10; position: absolute; bottom: 20px; right: 20px; font-size: 41px; color: #fff; text-align: center; background-color: #000; cursor: pointer; }
.photo-add-hotspot:hover { color: #e74c3c; }

.photo-hotspot { position: absolute; cursor: pointer; z-index: 1; }
.photo-hotspot .sk-double-bounce { margin: 8px auto; }
.photo-hotspot .sk-double-bounce .sk-child { background-color: #fff; }
.photo-hotspot-draft .sk-double-bounce .sk-child { background-color: #e74c3c !important; }

.photo-hotspot-info { z-index: 2; display: none; position: absolute; width: 274px; height: 137px; }
.photo-hotspot-info.top-left { top: -89px; left: -236px; }
.photo-hotspot-info.bottom-left { top: 5px; left: -236px; }
.photo-hotspot-info.top-right { top: -89px; left: 0px; }
.photo-hotspot-info.bottom-right { top: 5px; left: 0px; }

.photo-hotspot-info .photo-hotspot-line { position: absolute; width: 40px; height: 1px; border-bottom: 1px solid #fff; cursor: default; }
.photo-hotspot-info.top-left .photo-hotspot-line { top: 104px; right: 12px; transform: rotate(45deg); -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); }
.photo-hotspot-info.bottom-left .photo-hotspot-line { top: 36px; right: 12px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); }
.photo-hotspot-info.top-right .photo-hotspot-line { top: 104px; left: 12px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); }
.photo-hotspot-info.bottom-right .photo-hotspot-line { top: 36px; left: 12px; transform: rotate(45deg); -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); }
.photo-hotspot-draft .photo-hotspot-info .photo-hotspot-line { border-bottom-color: #e74c3c !important; }
.photo-hotspot-info .photo-hotspot-details div .view-product, .photo-hotspot-info .photo-hotspot-details div .save-to-folder { position: relative !important; bottom: 0 !important; right: 0 !important; padding: 5px 13px 4px !important; border: 1px solid #e74c3c; margin-top: 5px; font-size: 10px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
.photo-hotspot-info .photo-hotspot-details div .view-product { margin-right: 5px; color: #e74c3c; background-color: transparent; }
.photo-hotspot-draft .photo-hotspot-info .photo-hotspot-details div .view-product { color: #ffffff; border-color: #ffffff; }
.photo-hotspot-draft .photo-hotspot-info .photo-hotspot-details div .save-to-folder { color: #e74c3c; background-color: #ffffff; }

.photo-hotspot-info .photo-hotspot-details { position: absolute; width: 220px; height: 97px; text-align: left; }
.photo-hotspot-info .photo-hotspot-details:after { position: absolute; top: 0; left: 0; width: 220px; height: 97px; content: ''; background-color: #fff; }
.photo-hotspot-info.top-left .photo-hotspot-details { top: -6px; left: 8px; }
.photo-hotspot-info.bottom-left .photo-hotspot-details { top: 50px; left: 8px; }
.photo-hotspot-info.top-right .photo-hotspot-details { top: -6px; left: 46px; }
.photo-hotspot-info.bottom-right .photo-hotspot-details { top: 50px; left: 46px; }
.photo-hotspot-info .photo-hotspot-details img { position: absolute; top: 10px; left: 10px; z-index: 1; }
.photo-hotspot-info .photo-hotspot-details div { position: absolute; top: 12px; left: 84px; z-index: 1; width: 136px; }
.photo-hotspot-info .photo-hotspot-details p { margin-bottom: 0; }
.photo-hotspot-info .photo-hotspot-details p:nth-child(2) { font-size: 12px; }
.photo-hotspot-draft .photo-hotspot-info .photo-hotspot-details div { color: #fff !important; }
.photo-hotspot-draft .photo-hotspot-info .photo-hotspot-details:after { background-color: #e74c3c !important; }
.photo-hotspot-info .photo-hotspot-details div i { margin-left: 5px; font-size: 14px; }

#photo-hotspot-add .modal-dialog { width: 543px; }
#photo-hotspot-add .modal-body { padding: 40px 38px; }
#photo-hotspot-add .modal-body .carousel-inner { overflow: visible; }
#photo-hotspot-add .hotspot-add-close { z-index: 20; position: absolute; top: 0; right: 0; padding: 15px; font-size: 18px; color: #4e4c4e; cursor: pointer; }
#photo-hotspot-add .modal-body h3 { color: #e74c3c; margin-top: 0; margin-bottom: 20px; }
#photo-hotspot-add .modal-body .hotspot-product-error { background-color: #dddddd; color: #333333; line-height: 19px; padding: 12px; position: relative; margin: 10px 0; font-size: 13px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#photo-hotspot-add .modal-body .hotspot-product-error:after { content: ""; top: 100%; left: 20px; border-top: 12px solid #dddddd; position: absolute; border-left: 8px solid transparent; border-right: 8px solid transparent; }
#photo-hotspot-add .modal-body .hotspot-edit-btn { margin-top: 22px; }
#hotspotaddfrm { margin-top: 36px; }
#hotspotaddfrm #hotspot_product { height: 36px; margin-top: 12px; margin-bottom: 53px; }
#hotspotaddfrm #hotspot_product.ui-autocomplete-input { display: block; }
#hotspotaddfrm .save-hotspot-btn { padding: 8px 63px; }

/* photo collections */
#modlar-photos-collection h1 { color: #e74c3c; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; margin-top: 14px; margin-bottom: 20px; }
#modlar-photos-collection .collection .collection-tile > div { position: relative; max-width: 458px; max-height: 303px; margin: 0 auto; }
#modlar-photos-collection .collection .collection-tile .collection-img-grid { display: flex; }
#modlar-photos-collection .collection .collection-tile .collection-img-grid > div { padding-left: 0; padding-right: 0; }
#modlar-photos-collection .collection .collection-tile .collection-img-grid > div:first-child { padding-left: 0; padding-right: 7px; }
#modlar-photos-collection .collection .collection-tile .collection-img-grid .img-left-fix { margin: 0 0 0 auto; }
#modlar-photos-collection .collection .collection-tile .collection-img-grid .img-top-fix { position: absolute; top: 0; height: calc(50% - 3.5px); }
#modlar-photos-collection .collection .collection-tile .collection-img-grid .img-bottom-fix { position: absolute; bottom: 0; height: calc(50% - 3.5px); }
#modlar-photos-collection .collection .collection-title-desc { height: 125px; margin: 5px 0 34px; overflow: hidden; color: #000; border-bottom: 1px solid #bdc3c7; }
#modlar-photos-collection .collection:nth-last-child(-n+2) .collection-title-desc { border-bottom: none; }
#modlar-photos-collection .collection .collection-title-desc h3 { font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 22px; }
#modlar-photos-collection .collection .collection-title-desc p { font-size: 13px; }
#modlar-photos-collection .collection .collection-title-desc h3 > a { color: #000 !important; }
#modlar-photos-collection .collection .collection-title-desc h3 > a:hover { color: #e74c3c !important; }
.collection-img-grid #collection-ad-unit { right: 7px; bottom: 0; }

/* photo collection comments */
div.collection-comments { margin-top: 10px; }
div.collection-comments div.collection-comment-srnd { margin: 20px 0; }
div.collection-comments div.add-comment .alert { margin: 5px 3px 8px 0; }
div.collection-comments div.collection-comment-avatar { float: left; width: 40px; height: 40px; margin-right: 8px; }
div.collection-comments div.collection-comment-content { float: left; width: calc(100% - 51px); }
div.collection-comments div.collection-comment-content div.comment-edit-menu { position: relative; display: inline-block; }
div.collection-comments div.collection-comment-content a.comment-edit, div.collection-comments div.add-comment a.comment-delete { cursor: pointer; margin-left: 10px; }
div.collection-comments div.collection-comment-content a.comment-edit i, div.collection-comments div.add-comment a.comment-delete i  { color: #ff6a5a; font-size: 10px; }
div.collection-comments div.collection-comment-content ul.dropdown-menu { left: 30px; font-size: 12px; min-width: 110px; -webkit-box-shadow: none; box-shadow: none; }
div.collection-comments div.collection-comment-content ul.dropdown-menu li { text-align: center; }
div.collection-comments div.collection-comment-content ul.dropdown-menu li a { padding: 3px 10px; }
div.collection-comments div.collection-comment-content form { margin-top: 3px; }
div.collection-comments div.collection-comment-content .add-comment-details { display: none; margin: 10px 0 0; }
div.collection-comments div.collection-comment-content .collection-comment-btn { margin-right: 40px; }
div.collection-comments div.comment-like { text-align: right;color: #81828f; }
div.collection-comments div.comment-like.disabled { pointer-events: none; cursor: default; }
div.collection-comments .a-like { margin-top: 1px; display: inline-block; vertical-align: middle; font-size: 12px; }
div.collection-comments .bt-heart { vertical-align: middle; font-size:13px; cursor: pointer; }
div.collection-comments div.unlike { color: #81828f; text-align: right; }
div.collection-comments div.like { color: #e74c3c; text-align: right; }
div.collection-comments div.a-like { display: inline-block; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 12px; vertical-align: middle; }

/* collection view */
#collection-view .photo-nav > a { color: #fff; }
#collection-view .new-collection { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 34px; color: #fff; padding: 28px; background-color: rgba(0,0,0,0.6); opacity: 0; }
#collection-view .collection-photo-slider { margin: 0 auto; text-align: center; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; }
#collection-view .collection-photo-slider-nav { cursor: pointer; font-size: 20px; color: #000000; }
#collection-view .collection-photo-slider > div { display: none; }
#collection-view .collection-photo-slider > .active { display: inline-block; }
#collection-view .collection-photo-slider > div > span { position: relative; display: block; }

#collection-view .tooltip-inner { color: #000000; background-color: #ecf0f1; font-size: 14px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#collection-view .tooltip.top .tooltip-arrow { border-width: 12px 6px 0; border-top-color: #ecf0f1; bottom: -7px; }
#collection-view .tooltip.bottom .tooltip-arrow { border-width: 0 6px 12px; border-bottom-color: #ecf0f1; top: -7px; }
#collection-view .tooltip.left .tooltip-arrow { border-width: 6px 0 6px 12px; border-left-color: #ecf0f1; right: -7px; }
#collection-view .tooltip.right .tooltip-arrow { border-width: 6px 12px 6px 0; border-right-color: #ecf0f1; left: -7px; }
#collection-view .tooltip .tooltip-inner { padding: 8px 16px; max-width: 100%; white-space: nowrap; }

.collection-info .overview-intro { margin-top: 0 !important; }
.collection-info.collection-photos .load-more-photos { border: 1px solid #e74c3c; color: #e74c3c; font-size: 11px; padding: 2px 0; cursor: pointer; }
.collection-info.collection-photos .collection-gallery-list div.active img { border: 1px solid #e74c3c; }

/* photo colorpicker */
#photo-view .colorpicker > i { position: absolute; border: 2px solid #ffffff; border-radius: 50%; opacity: 0.7; cursor: pointer; width: 32px; height: 32px; top: -16px; left: -16px; }
#photo-view .colorpicker > i::before { top: 13px; left: 8px; width: 12px; height: 2px; }
#photo-view .colorpicker > i::after { top: 8px; left: 13px; width: 2px; height: 12px; }
#photo-view .colorpicker > i::before, #photo-view .colorpicker > i::after { content: ""; position: absolute; background-color: #ffffff; }

.colorpicker-info { z-index: 2; position: absolute; display: none; width: 220px; height: 82px; }
.colorpicker-info.top-left { bottom: 22px; right: 23px; }
.colorpicker-info.bottom-left { top: 22px; right: 23px; }
.colorpicker-info.top-right { bottom: 22px; left: 23px; }
.colorpicker-info.bottom-right { top: 22px; left: 23px; }

.colorpicker-info .colorpicker-info-line { position: absolute; width: 18px; height: 1px; border-bottom: 1px solid #ffffff; cursor: default; }
.colorpicker-info.top-left .colorpicker-info-line { top: 85px; left: 217px; transform: rotate(45deg); -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); }
.colorpicker-info.bottom-left .colorpicker-info-line { top: -6px; right: -15px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); }
.colorpicker-info.top-right .colorpicker-info-line { top: 85px; left: -15px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); }
.colorpicker-info.bottom-right .colorpicker-info-line { top: -6px; left: -15px; transform: rotate(45deg); -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); }

.colorpicker-info .colorpicker-info-details { text-align: left; background-color: #ffffff; }
.colorpicker-info .sponsored-paint { padding: 15px 15px 10px; }
#photo-page .colorpicker-info .paint-info-container { top: 18px; }
#photo-page .colorpicker-info .paint-name { text-overflow: ellipsis; overflow: hidden; width: 125px; }
#photo-page .sponsored-paint-btns { margin-top: 30px; }
#photo-page .sponsored-paint-btns .modlar-btn { font-size: 12px; width: 110px; margin-top: 0; }
#photo-page .sponsored-paint-btns .contact-btn { color: #ffffff; text-decoration: none; }

#email-colors .email-colors-palette { padding: 35px 7px; border: 1px solid #9b9b9b; text-align: center; margin-top: 25px; }
#email-colors .email-colors-palette-item { display: inline-block; width: 40px; height: 40px; border-radius: 50%; margin: 5px; }
#email-colors .email-colors-palette-title { text-align: center; margin-top: 5px; }

/* photo loader */
a .photo-loading { display: flex; justify-content: center; align-items: center; position: absolute; width: 100%; height: 100%; }
a .photo-loading .spinner { float: left; margin: 0 auto; width: 50px; height: 40px; text-align: center; font-size: 10px; }
a .photo-loading .spinner > div { background-color: #fff; height: 100%; width: 6px; margin: 0 3px 0 0; display: inline-block; -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; animation: sk-stretchdelay 1.2s infinite ease-in-out; }
a .photo-loading .spinner .rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; }
a .photo-loading .spinner .rect3 { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; }
a .photo-loading .spinner .rect4 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; }
a .photo-loading .spinner .rect5 { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; }
@-webkit-keyframes sk-stretchdelay {
	0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
	20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
	0%, 40%, 100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}  20% {
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}

/* media queries */

@media (max-width: 1023px) {
	#modlar-photos #photos { margin-top: 80px; }
	#photo-viewer, #collection-viewer { overflow-x: hidden; overflow-y: scroll; }
	#photo-view, #collection-view { width: 100% !important; }
	#photo-view.nav-open, #collection-view.nav-open { height: calc(100vh - 86px) !important; } /* height of nav bar */
	div.back-to-collection + #photo-view.nav-open { height: calc(100vh - 103px) !important; } /* height of nav bar - back to collection btn*/
	#photo-view.nav-open .photo-image img, #collection-view.nav-open .collection-photo-slider > div > span img { max-height: 100vh !important; }
	#photo-view .photo-nav { margin-top: 21px; font-size: 40px; }
	#photo-sidebar, #collection-sidebar { position: relative; width: 100% !important; }
	#photo-info, #collection-info, #photo-sidebar.nav-open #photo-info, #collection-sidebar.nav-open #collection-info { height: calc(100% - 45px) !important; }
	#photo-info::after, #collection-info::after { background: none; }
	#collection-page { overflow: auto; }
	div.photo-info, div.collection-info { padding: 30px 20px 10px; }
	.photo-info-scroll, .collection-info-scroll { position: relative; overflow-x: visible; overflow-y: visible; padding-right: 0; }
	.photo-info.overview .photo-share, .collection-info.overview .collection-share { width: 100%; text-align: left; }
	.photo-info.overview .photo-share a, .collection-info.overview .collection-share a  { margin: 0 12px; }
	.photo-info.questions .ask-photo-question { padding: 0 20px; }
	#photorecommend .modal-dialog, #ask-question-popup .modal-dialog, #photo-references .modal-dialog, #collectionrecommend .modal-dialog { width: calc(100vw - 20px); margin: 12px auto; }
	div.photos-carousel #lightslider > li a.modlar-btn.photo-link { left: 27%; }
	#photo-questions .question-content { width: 100%; }
	#photo-questions .question-answer-content { width: 100%; }
	#photo-view .save-to-folder, #collection-view .save-to-folder { position: absolute; bottom: 32px; right: 32px; left: initial; transform: none; padding: 12px 26px; }
	#photo-viewer .viewer-close, #collection-viewer .viewer-close { background-color: transparent; color: #fff; }
	#photo-sidebar.expand, #collection-sidebar.expand { right: 0; }
	#modlar-photos-collection .collection .collection-title-desc { height: auto; }
	#photo-ad-unit, #collection-ad-unit { right: 130px; }
}

@media (min-width: 992px) and (max-width: 1199px) {
	#modlar-photos .popover.bottom { padding: 10px; margin-top: 16px; width: 190px; }
	#modlar-photos .popover.bottom > .arrow { left: 81% !important; top: -10px; }
	#modlar-photos .popover > .popover-title, #photo-page .popover > .popover-title, #collection-page .popover > .popover-title { font-size: 16px; }
	#modlar-photos .popover > .popover-content, #photo-page .popover > .popover-content, #collection-page .popover > .popover-content { font-size: 12px; padding: 8px 0 0; }
	#modlar-photos .popover > .popover-buttons, #photo-page .popover > .popover-buttons, #collection-page .popover > .popover-buttons { padding: 11px 0 0; }
	#photo-page .popover.left, #collection-page .popover.left { padding: 10px; width: 190px; }
	div.photos-carousel #lightslider > li a.modlar-btn.photo-link { left: 38.8%; }
}


@media (max-width: 1199px) {
	#photo-sidebar, #collection-sidebar { width: 360px; }
	#photo-view, #collection-view { width: calc(100% - 360px); }
	#modlar-photos-collection .collection .collection-tile .collection-img-grid { margin: 0; }
}
/* products */
html.viewer-open { overflow: hidden; }
.umsg .umsg-alert { z-index: 1040; }
div.product .product-img a { position: relative; display: block; }

/* viewer */
#product-viewer { z-index: 1039; position: fixed; top: 0; left: 0; bottom: 0; right: 0; width: 100%; margin: 0; padding: 0; background-color: #ffffff; }
#product-viewer.viewer-hidden { display: none !important; visibility: hidden !important; }
#product-page { margin: 0; padding: 0; background: #ffffff; overflow: hidden; position: relative;}

/* viewer - view */
#product-view { width: calc(100% - 520px); min-height: 470px; height: 100vh; padding: 0; display: flex; align-items: center; }
#product-view.nav-open { height: calc(100vh - 109px) !important; } /* height of nav bar */
#product-view.expand { width: 100% !important; }
#product-view .product-nav { cursor: pointer; font-size: 50px; color: #000000; }
#product-view .product-nav i { text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0px -1px 0 #fff, 0 1px 0 #fff; margin: 0 20px; color: #000000; }
#product-view .product-expand { position: absolute; bottom: 32px; right: 32px; width: 40px; height: 40px; padding: 8px 9px 10px; background-color: #ffffff; border: 1px solid #81828f; font-size: 19px; color: #81828f; text-align: center; cursor: pointer; }

#product-view .prd-slider { text-align: center; width: calc(100% - 207.16px); user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; }
#product-view .prd-slider-nav { cursor: pointer; font-size: 20px; color: #000000; }
#product-view .prd-slider-gallery-controls { display: flex; text-align: center; flex-direction: column; margin-right: 20px; }
#product-view .prd-slider-gallery-controls.show { display: flex !important; }
#product-view .prd-slider-gallery-controls.hide + .prd-slider { width: calc(100% - 137.16px); } /* -50px when gallery is hidden */
#product-view .prd-slider > div { display: none; }
#product-view .prd-slider > .active { display: inline-block; }
#product-view .prd-slider-gallery { max-height: 440px; overflow: hidden; margin: 10px 0; }
#product-view .prd-slider-gallery .prd-gallery-list { transition-duration: 400ms; transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -webkit-transform: translateY(0); -o-transform: translateY(0); }
#product-view .prd-slider-gallery .prd-gallery-list > div { margin-bottom: 15px; }
#product-view .prd-slider-gallery .prd-gallery-list > div:last-child { margin: 0; }
#product-view .prd-slider-gallery .prd-gallery-list > div.active img { border: 1px solid #e74c3c!important; }

#product-view .tooltip-inner, #product-sidebar .tooltip-inner { color: #000000; background-color: #ecf0f1; font-size: 14px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#product-view .tooltip.top .tooltip-arrow { border-width: 12px 6px 0; border-top-color: #ecf0f1; bottom: -7px; }
#product-view .tooltip.bottom .tooltip-arrow { border-width: 0 6px 12px; border-bottom-color: #ecf0f1; top: -7px; }
#product-view .tooltip.left .tooltip-arrow { border-width: 6px 0 6px 12px; border-left-color: #ecf0f1; right: -7px; }
#product-view .tooltip.right .tooltip-arrow { border-width: 6px 12px 6px 0; border-right-color: #ecf0f1; left: -7px; }
#product-view .tooltip .tooltip-inner { padding: 8px 16px; max-width: 100%; white-space: nowrap; }
#product-view .prd-slider-nav .vertical + .tooltip  { margin-left: 72px; margin-top: -12px; left: 0 !important; }
#product-view .prd-slider-nav .vertical + .tooltip.bottom { margin-top: 12px; }
#product-view .prd-slider-nav .vertical + .tooltip .tooltip-arrow { left: 11% !important; }
#product-view .prd-slider-nav .horizontal + .tooltip.left { margin-left: -15px; }
#product-view .prd-slider-nav .horizontal + .tooltip.right { margin-left: 15px; }
#product-view .product-nav.product-prev + .tooltip.top { margin-top: -18px; margin-left: 20px; left: 0 !important; }
#product-view .product-nav.product-prev + .tooltip.top .tooltip-arrow { left: 11% !important; }
#product-view .product-nav.product-next + .tooltip.top { left: auto !important; right: 0; margin-right: 20px; margin-top: -18px; }
#product-view .product-nav.product-next + .tooltip.top .tooltip-arrow { left: 85% !important; }
#product-viewer .prd-slider-nav .vertical + .tooltip.bottom { margin-top: 7px; }

#product-view .learn-more { position: absolute; bottom: 32px; left: 32px; padding: 12px; color: #fff; background-color: #000; border: 1px solid #fff; cursor: pointer; }
#product-view .learn-more i { margin: 0 0 0 4px; padding: 0; }
#product-view .save-to-folder { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); padding: 12px 26px; border: 1px solid #e74c3c; }

/* viewer - sidebar */
#product-sidebar { position: absolute; top: 0; right: 0; width: 520px; padding: 0; background-color: #fff; transition: right 250ms ease-out; z-index: 3; border-left: solid 1px #bdc3c7; }
#product-sidebar.expand { right: -520px; }
#product-sidebar .tooltip-inner { font-size: 12px; }
#product-sidebar .tooltip-arrow { border-bottom-color: #ecf0f1; }

#product-tabs { position: absolute; width: 100%; top: 0; right: 0; }
#product-tabs ul { height: 46px; margin: 0; padding-left: 0; background-color: #f4f4f4; list-style: none; }
#product-tabs ul li { position: relative; display: inline-block; float: left; width: 50px; height: 46px; padding: 16px 0 15px; border-right: 1px solid #e6e6e6; text-align: center; transition: all 250ms ease-in-out; cursor: pointer; }
#product-tabs ul li.current { cursor: default; background-color: #fff; border-right-color: transparent; box-shadow: 2px -1px 1px rgba(0,0,0,0.08), -2px -1px 1px rgba(0,0,0,0.08); z-index: 1; }
#product-tabs ul li.current::before { content: ""; position: absolute; top: 0; left: 0; height: 3px; width: calc(100% + 1px); background-color: #ff6a5a; }
#product-tabs ul li:first-child { border-left-color: transparent; }
#product-tabs ul li:first-child.current { box-shadow: 2px -1px 2px rgba(0,0,0,0.08); }
#product-tabs ul li:first-child.disabled { cursor: default; }
#product-tabs ul li i { transition: all 250ms ease-in-out; font-size: 18px; color: #666; }
#product-tabs ul li.disabled i { color: #ccc; }
#product-tabs .viewer-close { position: absolute; top: 0; right: 0; width: 46px; height: 46px; padding: 11px; background-color: #fff; font-size: 24px; color: #000; }
#product-tabs .viewer-close i { cursor: pointer; }

#product-info { position: relative; width: 100%; height: calc(100vh - 45px); margin-top: 45px; padding-top: 1px; }
#product-sidebar.nav-open #product-info { height: calc(100vh - 108px) !important; }  /* 45px + height of nav bar */

#product-tabs::after, #product-info::after { content: ""; position: absolute; left: 1px; right: 0; height: 16px; pointer-events: none; }
#product-tabs::after { top: 46px; height: 16px; background: linear-gradient(to bottom, #fff 10%, rgba(255,255,255,0) 100%); z-index: 1; }
#product-info::after { top: calc(100% - 16px); background: linear-gradient(to top, #fff 10%, rgba(255,255,255,0) 100%); }

.product-info-scroll { position: absolute; overflow-x: hidden; overflow-y: scroll; height: 100%; width: 100%; }
.product-info-body { position: relative; min-width: 100%; padding: 25px 0 30px; }
div.product-info { position: relative; padding: 20px 30px 10px; }
.product-info h1 { margin-top: 0; font-size: 24px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; color: #e74c3c; }
.product-info h2 { margin-top: 0; margin-bottom: 6px; font-size: 12px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; color: #e74c3c; text-transform: uppercase; }
.product-info h3 { margin-top: 0; margin-bottom: 12px; font-size: 18px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; color: #e74c3c; }

.product-info.downloads h2 { font-size: 18px; text-transform: capitalize; }
.product-info .product-downloads { background-color: #ecf0f1; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, Arial, sans-serif; padding: 14px 18px 8px 18px; margin-top: 12px; }
.product-info .product-downloads h4 { font-size: 20px; margin-top: 0; margin-bottom: 15px; }
.product-info .product-downloads .row > div { margin-bottom: 10px; padding-left: 0; }
.product-info .product-downloads .row > div:nth-child(4n+1) { padding-left: 15px; }
.product-info .product-download-btns { background-color: #e74c3c; }
.product-info .product-download-btns .modlar-btn { padding: 8px 0; font-size: 12px; }
.product-info .product-download-btns .modlar-btn-dropbox { font-size: 16px; }
.product-info .product-download-btns .btn-divider { border-left: 1px solid #fff; padding: 10px 0; float: left; margin: 14px 0; width: 1px; }
.product-info.spec.downloads button { background: none!important; border: none; padding: 0!important; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; color: #e74c3c; font-size: 18px; }
.product-info.spec.downloads button:hover { color: #c0392c; }

.product-info.overview { padding-top: 0 !important; }
.product-info.overview .product-share { padding: 11px 0; margin-bottom: 10px; text-align: center; }
.product-info.overview .product-share .title, .product-info.overview .product-share .title-like { display: inline-block; padding-right: 6px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, Arial, sans-serif; font-size: 13px; color: #4e4c4e; }
.product-info.overview .product-share .title-like { margin-left: 24px; }
.product-info.overview .product-share a { margin: 0 5px; font-size: 13px; color: #4E4C4E; }
.product-info.overview .product-share a:first-child { margin-left: 8px; }

.product-info.overview .product-share div.product-like { display: inline-block; text-align: right; color: #81828f; }
.product-info.overview .product-share div.product-like.disabled { pointer-events: none; cursor: default; }
.product-info.overview .product-share .p-like { display: inline-block; vertical-align: middle; font-size: 12px; }
.product-info.overview .product-share .bt-heart { cursor: pointer; }
.product-info.overview .product-share div.unlike { color: #81828f; text-align: right; }
.product-info.overview .product-share div.like { color: #e74c3c; }
.product-info.overview .product-share div.p-like { display: inline-block; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 12px; vertical-align: middle; }

.product-info.overview .overview-details { margin: 0; padding: 0; list-style: none; }
.product-info.overview .overview-details .overview-item { margin-bottom: 4px; font-size: 13px; color: #4e4c4e; position: relative;}
.product-info.overview .overview-details .overview-item .item { position: absolute; left: 0; }
.product-info.overview .overview-details .overview-item .item > div { margin-left: 14px; }
.product-info.overview .overview-details .overview-item .glyphicon-stop { position: absolute; font-size: 6px;  color: #e74c3c; top: 7px; }
.product-info.overview .overview-details .overview-item a:hover { color: #c0392c; text-decoration: none; }
.product-info.overview .overview-intro { margin-top: 28px; font-size: 14px; line-height: 20px; }
.product-info.overview .overview-intro p:last-child { margin-bottom: 0; }
.product-info.overview .where-to-buy-btn { margin: 5px 0 0 30px; font-size: 12px; }
.product-info a.morelink:hover { color: #c0392c; text-decoration: none; }

.product-info.formats a, .product-info.materials a, .product-info.csi-divisions a, .product-info.product-tags a { display: inline-block; height: 30px; margin-right: 6px; margin-top: 10px; }
.product-info.formats a:hover, .product-info.materials a:hover, .product-info.csi-divisions a:hover, .product-info.product-tags a:hover, .product-info.formats a:focus, .product-info.materials a:focus, .product-info.csi-divisions a:focus, .product-info.product-tags a:focus { text-decoration: none; }
.product-info.formats span.label, .product-info.materials span.label, .product-info.csi-divisions span.label, .product-info.product-tags span.label { padding: 6px 12px; color: #333; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-weight: normal; font-size: 13px; border-radius: 2px; background-color: #ecf0f1; }
.product-info.formats span.label:hover, .product-info.materials span.label:hover, .product-info.csi-divisions span.label:hover, .product-info.product-tags span.label:hover { background-color: #d4d8d9; }

.product-info.related-photos a { float: left; margin: 0 13px 13px 0; }
.product-info.related-photos a:nth-of-type(5n) { margin-right: 0; }
.product-info.related-photos { padding-bottom: 0 !important; }

.product-info.related-products { padding-bottom: 0 !important; }
.product-info.related-products .related-product { position: relative; clear: both; margin-bottom: 10px; padding: 2px 0 0 74px; min-height: 64px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 14px; }
.product-info.related-products .related-product a { display: block; color: #000; }
.product-info.related-products .related-product a:hover { color: #e74c3c; text-decoration: none; }
.product-info.related-products .related-product a:first-of-type { position: absolute; top: 0; left: 0; }
.product-info.related-products .related-product a.related-product-brand { font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 12px; }

.product-info.manufacturer { padding-bottom: 0 !important; }
.product-info.manufacturer .contact-brand { margin-top: 33px; }
.product-info.manufacturer .contact-brand .modlar-btn { font-size: 12px; }
.product-info.manufacturer .brand-img { max-width: 130px; text-align: center; }
.product-info.manufacturer .brand-img img { margin: 0 auto; padding: 6px; border: 1px solid #bdc3c7; }
.product-info.manufacturer .brand-info { padding-left: 0px; }
.product-info.manufacturer .brand-title h4 { margin: 0 10px 0 0; font-size: 18px; text-decoration: none !important; }
.product-info.manufacturer .brand-title > a:hover { color: #e74c3c; }
.product-info.manufacturer div[itemprop="description"] { font-size: 13px; line-height: 18px; margin: 12px 0 0 0; }
.product-info.manufacturer .brand-follow a { background-color: #e74c3c; border: 1px solid #e74c3c; color: #fff; cursor: pointer; display: inline-block; font-size: 10px; line-height: 10px; margin-top: 3px; min-width: 79px; padding: 7px 8px 6px; text-align: center; text-decoration: none; text-transform: uppercase; }
.product-info.manufacturer .brand-follow a:hover { background-color: #c0392b; border: 1px solid #c0392b; }
.product-info.manufacturer .brand-follow .brand-following { background-color: #47c67f !important; border: 1px solid #47c67f !important; }
.product-info.manufacturer .brand-follow .brand-unfollow:hover { background-color: #fff !important; border: 1px solid #47c67f !important; color: #47c67f !important; }
.product-info.manufacturer .brand-products { margin-top: 30px; }
.product-info.manufacturer .brand-products > div { margin-right: -15px; }
.product-info.manufacturer .brand-products a { margin: 0 10px 10px 0; }

.product-info.questions { padding: 20px 0 10px !important; }
.product-info.questions .ask-product-question { padding: 0 30px; }
.product-info.questions .ask-product-question h3 { margin-top: 9px; margin-bottom: 0; }
.product-info.questions .ask-product-question a.modlar-btn { font-size: 12px; padding: 8px 13px; bottom: 14px; }
.product-info.questions .expand-questions { color: #e74c3c; font-size: 14px; font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; margin-top: 18px; cursor: pointer; }
.product-info.questions .expand-answers { color: #e74c3c; cursor: pointer; }

#product-questions .question { margin-top: 35px; margin-bottom: 25px; padding: 0 30px; }
#product-questions .question-user-avatar { width: 30px; height: 30px; float: left; margin-right: 8px; }
#product-questions .question-content { float: left; width: 420px; }
#product-questions .question-content .question-user { font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 14px; color: #4e4c4e; text-decoration: none !important; }
#product-questions .question-content .question-title { font-family: 'geomanistbook', 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 14px; color: #e74c3c; display: inline; text-decoration: none !important; }
#product-questions .question-content > p { display: inline; color: #4e4c4e; font-size: 13px; font-family: 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }

#product-questions .question-answers .question-answer-user { font-size: 13px; }
#product-questions .question-answers .question-answer-avatar, #product-questions .question-answers .question-answer-content { margin-top: 25px; }
#product-questions .question-answer-avatar { width: 30px; height: 30px; float: left; margin-right: 8px; }
#product-questions .question-answers .add-answer { padding: 0; background-color: transparent; margin-bottom: 0; }
#product-questions .question-answers .add-answer > .modlar-alert { margin: 10px 0; }
#product-questions .add-answer { padding: 14px 25px 14px 67px; background-color: #ecf0f1; }
#product-questions .add-answer .form-group { margin-bottom: 0; }
#product-questions .add-answer textarea { resize: none; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 13px; background-color: #ffffff; }

#product-questions .question-answer-content { float: left; width: 380px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 13px; }
#product-questions .question-answer-content textarea.discuss { border-bottom: none; }
#product-questions .question-answer-content textarea:focus { border-color: #ccc; outline: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
#product-questions .question-answer-content p { margin: 0; }
#product-questions .question-answer-content button { padding: 4px 10px; margin: 0; }

#product-questions .question-answer-content div.answer-edit-menu { position: relative; display: inline-block; }
#product-questions .question-answer-content a.answer-edit, div.question-answers div.add-answer a.answer-delete { cursor: pointer; margin-left: 10px; }
#product-questions .question-answer-content a.answer-edit i, div.question-answers div.add-answer a.answer-delete i  { color: #ff6a5a; font-size: 10px; }
#product-questions .question-answer-content ul.dropdown-menu { left: 30px; font-size: 12px; min-width: 110px; -webkit-box-shadow: none; box-shadow: none; }
#product-questions .question-answer-content ul.dropdown-menu li { text-align: center; }
#product-questions .question-answer-content ul.dropdown-menu li a { padding: 3px 10px; }
#product-questions .question-answer-content .add-answer-details { margin: 0; display: none; padding: 8px; text-align: right; background-color: #fff; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; border-left: 1px solid #ccc; }
#product-questions div.answer-like { color: #81828f; line-height: 14px; }
#product-questions div.answer-like.disabled { pointer-events: none; cursor: default; }
#product-questions .a-like { margin-top: 1px; display: inline-block; vertical-align: middle; font-size: 12px; }
#product-questions .bt-heart { vertical-align: middle; font-size:13px; cursor: pointer; }
#product-questions div.unlike { color: #81828f; }
#product-questions div.like { color: #e74c3c; }
#product-questions div.a-like { display: inline-block; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; font-size: 12px; vertical-align: middle; }

/* product catalog / quote / recommend (bim_object) */
#modlar-product .product-catalog-quote-btn { display: inline-block; margin-top: 15px; margin-bottom: 15px; padding: 6px 10px; text-decoration: none; text-align: center; vertical-align: middle; color: #333; border: 1px solid #979797; cursor: pointer; font-size: 11px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; text-transform: uppercase; }

/* ask question popup / answer delete */
#ask-question-popup .modal-dialog { width: 470px; margin: 100px auto; }
#questionfrm .modal-header { border-bottom: none; }
#questionfrm .modal-header h4 { font-size: 28px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; color:#e74c3c; }
#questionfrm .modal-header .modlar-answers-error { background-color: #ddd; color: #333; line-height: 19px; padding: 12px; position: relative; margin-bottom: 5px; font-size: 13px; margin-top: 20px; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#questionfrm .modal-header .modlar-answers-error:after { content: ""; top: 100%; left: 20px; border-top: 12px solid #ddd; position: absolute; border-left: 8px solid transparent; border-right: 8px solid transparent; }
#questionfrm .modal-body { padding: 0 15px; }
#questionfrm .modal-body #question { height: 43px; line-height: 28px; }
#questionfrm .modal-body #questiondetails { height: 165px; }
#questionfrm .modal-body .has-error .form-control { border-color: #a94442 !important; }
#questionfrm .modal-body .form-control { border: 1px solid #9b9b9b; resize: none; }
#questionfrm .modal-body p { font-size: 14px; color: #e74c3c; font-family: 'geomanistregular', 'geomanistlight', 'geomanistextralight', 'geomanistthin', Helvetica, sans-serif; }
#questionfrm .modal-footer { border-top: none; }
#questionfrm .modal-footer .ask-question-cancel { background-color: #ddd; color: #7D7D7D; }

#product-page .popover.left { margin-left: -16px; }
#product-page .popover.left > .arrow { border-left-color: #72d9a0; }

#product-sidebar #prd_affixtop.affix, #prd_affixtop.affix-top, #prd_affixtop.affix-bottom { width: 100%; }
#product-sidebar #prd_affixtop.affix-bottom { position: absolute; }

/* product loader */
.feed-item-content a .product-loading { top: 0px !important; } /* homepage feed */
a .product-loading { display: flex; justify-content: center; align-items: center; position: absolute; width: 100%; height: 100%; }
a .product-loading .spinner { float: left; margin: 0 auto; width: 50px; height: 40px; text-align: center; font-size: 10px; }
a .product-loading .spinner > div { background-color: #fff; height: 100%; width: 6px; margin: 0 3px 0 0; display: inline-block; -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; animation: sk-stretchdelay 1.2s infinite ease-in-out; }
a .product-loading .spinner .rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; }
a .product-loading .spinner .rect3 { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; }
a .product-loading .spinner .rect4 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; }
a .product-loading .spinner .rect5 { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; }
@-webkit-keyframes sk-stretchdelay {
	0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
	20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
	0%, 40%, 100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}  20% {
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}

/* media queries */
@media (max-width: 320px) { /* iphone 5 */
	#product-view .prd-slider, #product-view .product-nav-parent { position: relative; top: -16%; }
	#product-view .prd-slider-gallery { max-width: 240px; }
}

@media (max-width: 767px) { /* extra small devices (phones, less than 767px) */
	#product-view .prd-slider, #product-view .product-nav-parent { position: relative; top: -14%; }
	#product-view .prd-slider-gallery-controls { bottom: 100px; }
	#product-view .prd-slider-gallery { height: 50px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
	#product-view .prd-slider, #product-view .product-nav-parent { position: relative; top: -10%; }
	#product-view .prd-slider-gallery { max-width: 310px; }
}

@media (max-width: 1023px) {
	#product-viewer { overflow-x: hidden; overflow-y: scroll; }
	#product-view { width: 100% !important; }
	#product-view.nav-open { height: calc(100vh - 86px) !important; } /* height of nav bar */
	#product-view.nav-open .product-image img { max-height: 100vh !important; }
	#product-view .product-nav { font-size: 40px; }
	#product-sidebar { position: relative; width: 100% !important; border-left: none; }
	#product-info { height: calc(100% - 45px) !important; }
	#product-info::after { background: none; }
	div.product-info { padding: 30px 20px 10px; }
	.product-info-scroll { position: relative; overflow-x: visible; overflow-y: visible; padding-right: 0; }
	.product-info.overview .product-share { width: 100%; text-align: left; }
	.product-info.overview .product-share a { margin: 0 12px; }
	.product-info.related-products a { margin: 0 5px 13px 0; }
	.product-info.questions .ask-product-question { padding: 0 20px; }
	#prdrecommend .modal-dialog, #ask-question-popup .modal-dialog { width: calc(100vw - 20px); margin: 12px auto; }
	#product-questions .question-content { width: 100%; }
	#product-questions .question-answer-content { width: 100%; }
	#product-view .save-to-folder { position: absolute; bottom: 32px; right: 32px; left: initial; transform: none; padding: 12px 26px; }
	
	#product-view .prd-slider { width: calc(100% - 125.72px); }
	#product-view .prd-slider-gallery-controls { position: absolute; flex-direction: row; left: 50%; transform: translateX(-50%); bottom: 120px; align-items: center; margin-right: 0; }
	#product-view .prd-slider-gallery { margin: 0 10px; position: relative; }
	#product-view .prd-slider-gallery .prd-gallery-list { height: 100%; transform: none; }
	#product-view .prd-slider-gallery .prd-gallery-list > div { margin-bottom: 0; margin-right: 15px; float: left; }
	#product-view .prd-slider-gallery .prd-gallery-list > div:last-child { margin: 0; }
	.product-info.overview .overview-details .overview-item { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
	.product-info .product-downloads .radio-inline input { -webkit-appearance : radio; }
	.product-info .product-downloads .row > div:nth-child(2n+1) { padding-left: 15px; }
	#product-view .prd-slider iframe { max-width: 100%; height: auto; }
	#product-view .tooltip .tooltip-inner { white-space: normal; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
	#product-page .popover > .popover-title { font-size: 16px; }
	#product-page .popover > .popover-content { font-size: 12px; padding: 8px 0 0; }
	#product-page .popover > .popover-buttons { padding: 11px 0 0; }
	#product-page .popover.left { padding: 10px; width: 190px; }
	
	#product-view .prd-slider { width: calc(100% - 137.16px); }
	#product-view .prd-slider-gallery-controls { position: absolute; flex-direction: row; left: 50%; transform: translateX(-50%); bottom: 100px; align-items: center; margin-right: 0; }
	#product-view .prd-slider-gallery { max-width: 310px; margin: 0 10px; position: relative; }
	#product-view .prd-slider-gallery .prd-gallery-list { height: 100%; transform: none; }
	#product-view .prd-slider-gallery .prd-gallery-list > div { margin-bottom: 0; margin-right: 15px; float: left; }
	#product-view .prd-slider-gallery .prd-gallery-list > div:last-child { margin: 0; }
	#product-view .prd-slider iframe { max-width: 100%; height: auto; }
	#product-view .tooltip .tooltip-inner { white-space: normal; }
}
