@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');
.LogoText{
    font-family: "Bungee"!important;
    font-size:40px;
    font-weight:bold;
    color: #fff;
    -webkit-text-stroke: 2px black; /* width and color */
    -moz-text-stroke: 2px black; /* width and color */
    -ms-text-stroke: 2px black; /* width and color */
}

.navcolor{
	background-color: #FFFFFF!important;
	color: red;
}
.LogoTextSub{
        font-family: "Teko"!important;
    font-size:30px;
}

.not-animated { opacity: 0; }

.notouch .animated {
  opacity: 1;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.notouch .animated.hinge {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {opacity: 1;}
  25%, 75% {opacity: 0;}
}

@-moz-keyframes flash {
  0%, 50%, 100% {opacity: 1;}
  25%, 75% {opacity: 0;}
}

@-o-keyframes flash {
  0%, 50%, 100% {opacity: 1;}
  25%, 75% {opacity: 0;}
}

@keyframes flash {
  0%, 50%, 100% {opacity: 1;}
  25%, 75% {opacity: 0;}
}

.notouch .animated.flash {
  -webkit-animation-name: flash;
  -moz-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes shake {
  0%, 100% {-webkit-transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
  20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
}

@-moz-keyframes shake {
  0%, 100% {-moz-transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
  20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
}

@-o-keyframes shake {
  0%, 100% {-o-transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
  20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
}

@keyframes shake {
  0%, 100% {transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
  20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.notouch .animated.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
  40% {-webkit-transform: translateY(-30px);}
  60% {-webkit-transform: translateY(-15px);}
}

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
  40% {-moz-transform: translateY(-30px);}
  60% {-moz-transform: translateY(-15px);}
}

@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
  40% {-o-transform: translateY(-30px);}
  60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}

.notouch .animated.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes tada {
  0% {-webkit-transform: scale(1);}
  10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);}
  30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);}
  40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);}
  100% {-webkit-transform: scale(1) rotate(0);}
}

@-moz-keyframes tada {
  0% {-moz-transform: scale(1);}
  10%, 20% {-moz-transform: scale(0.9) rotate(-3deg);}
  30%, 50%, 70%, 90% {-moz-transform: scale(1.1) rotate(3deg);}
  40%, 60%, 80% {-moz-transform: scale(1.1) rotate(-3deg);}
  100% {-moz-transform: scale(1) rotate(0);}
}

@-o-keyframes tada {
  0% {-o-transform: scale(1);}
  10%, 20% {-o-transform: scale(0.9) rotate(-3deg);}
  30%, 50%, 70%, 90% {-o-transform: scale(1.1) rotate(3deg);}
  40%, 60%, 80% {-o-transform: scale(1.1) rotate(-3deg);}
  100% {-o-transform: scale(1) rotate(0);}
}

@keyframes tada {
  0% {transform: scale(1);}
  10%, 20% {transform: scale(0.9) rotate(-3deg);}
  30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);}
  40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);}
  100% {transform: scale(1) rotate(0);}
}

.notouch .animated.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada;
}
.notouch .animated .tada:hover{
  -webkit-animation:tada ease-in-out 1 normal 800ms;
  -moz-animation:tada ease-in-out 1 normal 800ms;
  -ms-animation:tada ease-in-out 1 normal 800ms;
  -o-animation:tada ease-in-out 1 normal 800ms;
  animation:tada ease-in-out 1 normal 800ms;
}
@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% { -webkit-transform-origin: top center; }
  20% { -webkit-transform: rotate(15deg); }
  40% { -webkit-transform: rotate(-10deg); }
  60% { -webkit-transform: rotate(5deg); }
  80% { -webkit-transform: rotate(-5deg); }
  100% { -webkit-transform: rotate(0deg); }
}

@-moz-keyframes swing {
  20% { -moz-transform: rotate(15deg); }
  40% { -moz-transform: rotate(-10deg); }
  60% { -moz-transform: rotate(5deg); }
  80% { -moz-transform: rotate(-5deg); }
  100% { -moz-transform: rotate(0deg); }
}

@-o-keyframes swing {
  20% { -o-transform: rotate(15deg); }
  40% { -o-transform: rotate(-10deg); }
  60% { -o-transform: rotate(5deg); }
  80% { -o-transform: rotate(-5deg); }
  100% { -o-transform: rotate(0deg); }
}

@keyframes swing {
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(5deg); }
  80% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

.notouch .animated.swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
}
.notouch .animated .swing:hover {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation: swing ease-in-out 1 normal 800ms;
  -moz-animation: swing ease-in-out 1 normal 800ms;
  -o-animation: swing ease-in-out 1 normal 800ms;
  animation: swing ease-in-out 1 normal 800ms;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% { -webkit-transform: translateX(0%); }
  15% { -webkit-transform: translateX(-25%) rotate(-5deg); }
  30% { -webkit-transform: translateX(20%) rotate(3deg); }
  45% { -webkit-transform: translateX(-15%) rotate(-3deg); }
  60% { -webkit-transform: translateX(10%) rotate(2deg); }
  75% { -webkit-transform: translateX(-5%) rotate(-1deg); }
  100% { -webkit-transform: translateX(0%); }
}

@-moz-keyframes wobble {
  0% { -moz-transform: translateX(0%); }
  15% { -moz-transform: translateX(-25%) rotate(-5deg); }
  30% { -moz-transform: translateX(20%) rotate(3deg); }
  45% { -moz-transform: translateX(-15%) rotate(-3deg); }
  60% { -moz-transform: translateX(10%) rotate(2deg); }
  75% { -moz-transform: translateX(-5%) rotate(-1deg); }
  100% { -moz-transform: translateX(0%); }
}

@-o-keyframes wobble {
  0% { -o-transform: translateX(0%); }
  15% { -o-transform: translateX(-25%) rotate(-5deg); }
  30% { -o-transform: translateX(20%) rotate(3deg); }
  45% { -o-transform: translateX(-15%) rotate(-3deg); }
  60% { -o-transform: translateX(10%) rotate(2deg); }
  75% { -o-transform: translateX(-5%) rotate(-1deg); }
  100% { -o-transform: translateX(0%); }
}

@keyframes wobble {
  0% { transform: translateX(0%); }
  15% { transform: translateX(-25%) rotate(-5deg); }
  30% { transform: translateX(20%) rotate(3deg); }
  45% { transform: translateX(-15%) rotate(-3deg); }
  60% { transform: translateX(10%) rotate(2deg); }
  75% { transform: translateX(-5%) rotate(-1deg); }
  100% { transform: translateX(0%); }
}

.notouch .animated.wobble {
  -webkit-animation-name: wobble;
  -moz-animation-name: wobble;
  -o-animation-name: wobble;
  animation-name: wobble;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% { -webkit-transform: scale(1); }
  50% { -webkit-transform: scale(1.1); }
  100% { -webkit-transform: scale(1); }
}
@-moz-keyframes pulse {
  0% { -moz-transform: scale(1); }
  50% { -moz-transform: scale(1.1); }
  100% { -moz-transform: scale(1); }
}
@-o-keyframes pulse {
  0% { -o-transform: scale(1); }
  50% { -o-transform: scale(1.1); }
  100% { -o-transform: scale(1); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.notouch .animated.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
}
.notouch .animated .pulse:hover {
  -webkit-animation: pulse ease-in-out 1 normal 800ms;
  -moz-animation: pulse ease-in-out 1 normal 800ms;
  -o-animation: pulse ease-in-out 1 normal 800ms;
  animation: pulse ease-in-out 1 normal 800ms;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@-moz-keyframes flip {
  0% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -moz-animation-timing-function: ease-out;
  }
  40% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -moz-animation-timing-function: ease-out;
  }
  50% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -moz-animation-timing-function: ease-in;
  }
  80% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -moz-animation-timing-function: ease-in;
  }
  100% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -moz-animation-timing-function: ease-in;
  }
}
@-o-keyframes flip {
  0% {
    -o-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -o-animation-timing-function: ease-out;
  }
  40% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -o-animation-timing-function: ease-out;
  }
  50% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -o-animation-timing-function: ease-in;
  }
  80% {
    -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -o-animation-timing-function: ease-in;
  }
  100% {
    -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -o-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}

.notouch .animated.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  
  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }
  
  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }
  
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.notouch .animated.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@-moz-keyframes flipOutX {
  0% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@-o-keyframes flipOutX {
  0% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.notouch .animated.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInY {
  0% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  
  40% {
    -moz-transform: perspective(400px) rotateY(-10deg);
  }
  
  70% {
    -moz-transform: perspective(400px) rotateY(10deg);
  }
  
  100% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInY {
  0% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  
  40% {
    -o-transform: perspective(400px) rotateY(-10deg);
  }
  
  70% {
    -o-transform: perspective(400px) rotateY(10deg);
  }
  
  100% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.notouch .animated.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutY {
  0% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutY {
  0% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.notouch .animated.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@-moz-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@-o-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.notouch .animated.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.notouch .animated.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.notouch .animated.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.notouch .animated.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.notouch .animated.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.notouch .animated.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.notouch .animated.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.notouch .animated.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.notouch .animated.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@-moz-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@-o-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

.notouch .animated.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.notouch .animated.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}

@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}

@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.notouch .animated.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}

@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
}

@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

.notouch .animated.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}

@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
}

@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

.notouch .animated.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@-moz-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}

@-o-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.notouch .animated.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -moz-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@-moz-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}

@-o-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.notouch .animated.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -moz-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@-moz-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}

@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.notouch .animated.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.notouch .animated.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
  }
  
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  
  70% {
    -webkit-transform: scale(.9);
  }
  
  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(.3);
  }
  
  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }
  
  70% {
    -moz-transform: scale(.9);
  }
  
  100% {
    -moz-transform: scale(1);
  }
}

@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(.3);
  }
  
  50% {
    opacity: 1;
    -o-transform: scale(1.05);
  }
  
  70% {
    -o-transform: scale(.9);
  }
  
  100% {
    -o-transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(.3);
  }
  
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  
  70% {
    transform: scale(.9);
  }
  
  100% {
    transform: scale(1);
  }
}

.notouch .animated.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  
  80% {
    -webkit-transform: translateY(10px);
  }
  
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }
  
  80% {
    -moz-transform: translateY(10px);
  }
  
  100% {
    -moz-transform: translateY(0);
  }
}

@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  
  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }
  
  80% {
    -o-transform: translateY(10px);
  }
  
  100% {
    -o-transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  
  80% {
    transform: translateY(10px);
  }
  
  100% {
    transform: translateY(0);
  }
}

.notouch .animated.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -moz-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  
  80% {
    -webkit-transform: translateY(-10px);
  }
  
  100% {
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  
  60% {
    opacity: 1;
    -moz-transform: translateY(30px);
  }
  
  80% {
    -moz-transform: translateY(-10px);
  }
  
  100% {
    -moz-transform: translateY(0);
  }
}

@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  
  60% {
    opacity: 1;
    -o-transform: translateY(30px);
  }
  
  80% {
    -o-transform: translateY(-10px);
  }
  
  100% {
    -o-transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  
  80% {
    transform: translateY(-10px);
  }
  
  100% {
    transform: translateY(0);
  }
}

.notouch .animated.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  
  80% {
    -webkit-transform: translateX(-10px);
  }
  
  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  
  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }
  
  80% {
    -moz-transform: translateX(-10px);
  }
  
  100% {
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  
  60% {
    opacity: 1;
    -o-transform: translateX(30px);
  }
  
  80% {
    -o-transform: translateX(-10px);
  }
  
  100% {
    -o-transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  
  80% {
    transform: translateX(-10px);
  }
  
  100% {
    transform: translateX(0);
  }
}

.notouch .animated.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  
  80% {
    -webkit-transform: translateX(10px);
  }
  
  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }
  
  80% {
    -moz-transform: translateX(10px);
  }
  
  100% {
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  
  60% {
    opacity: 1;
    -o-transform: translateX(-30px);
  }
  
  80% {
    -o-transform: translateX(10px);
  }
  
  100% {
    -o-transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  
  80% {
    transform: translateX(10px);
  }
  
  100% {
    transform: translateX(0);
  }
}

.notouch .animated.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  
  25% {
    -webkit-transform: scale(.95);
  }
  
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
  }
}

@-moz-keyframes bounceOut {
  0% {
    -moz-transform: scale(1);
  }
  
  25% {
    -moz-transform: scale(.95);
  }
  
  50% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }
  
  100% {
    opacity: 0;
    -moz-transform: scale(.3);
  }
}

@-o-keyframes bounceOut {
  0% {
    -o-transform: scale(1);
  }
  
  25% {
    -o-transform: scale(.95);
  }
  
  50% {
    opacity: 1;
    -o-transform: scale(1.1);
  }
  
  100% {
    opacity: 0;
    -o-transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  
  25% {
    transform: scale(.95);
  }
  
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  
  100% {
    opacity: 0;
    transform: scale(.3);
  }
}

.notouch .animated.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -moz-transform: translateY(20px);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}

@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -o-transform: translateY(20px);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.notouch .animated.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -moz-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@-moz-keyframes bounceOutDown {
  0% {
    -moz-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -moz-transform: translateY(-20px);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}

@-o-keyframes bounceOutDown {
  0% {
    -o-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -o-transform: translateY(-20px);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.notouch .animated.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  -moz-animation-name: bounceOutDown;
  -o-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@-moz-keyframes bounceOutLeft {
  0% {
    -moz-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}

@-o-keyframes bounceOutLeft {
  0% {
    -o-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -o-transform: translateX(20px);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.notouch .animated.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  -moz-animation-name: bounceOutLeft;
  -o-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@-moz-keyframes bounceOutRight {
  0% {
    -moz-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}

@-o-keyframes bounceOutRight {
  0% {
    -o-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -o-transform: translateX(-20px);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.notouch .animated.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  -moz-animation-name: bounceOutRight;
  -o-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateIn {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(-200deg);
    opacity: 0;
  }
  
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateIn {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(-200deg);
    opacity: 0;
  }
  
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}

.notouch .animated.rotateIn {
  -webkit-animation-name: rotateIn;
  -moz-animation-name: rotateIn;
  -o-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.notouch .animated.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -moz-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.notouch .animated.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -moz-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.notouch .animated.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -moz-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.notouch .animated.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -moz-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOut {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(200deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOut {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}

.notouch .animated.rotateOut {
  -webkit-animation-name: rotateOut;
  -moz-animation-name: rotateOut;
  -o-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.notouch .animated.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  -moz-animation-name: rotateOutUpLeft;
  -o-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

.notouch .animated.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  -moz-animation-name: rotateOutDownLeft;
  -o-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

.notouch .animated.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  -moz-animation-name: rotateOutUpRight;
  -o-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.notouch .animated.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  -moz-animation-name: rotateOutDownRight;
  -o-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes hinge {
  0% { -webkit-transform: rotate(0); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
  20%, 60% { -webkit-transform: rotate(80deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
  40% { -webkit-transform: rotate(60deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
  80% { -webkit-transform: rotate(60deg) translateY(0); opacity: 1; -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
  100% { -webkit-transform: translateY(700px); opacity: 0; }
}

@-moz-keyframes hinge {
  0% { -moz-transform: rotate(0); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
  20%, 60% { -moz-transform: rotate(80deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
  40% { -moz-transform: rotate(60deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
  80% { -moz-transform: rotate(60deg) translateY(0); opacity: 1; -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
  100% { -moz-transform: translateY(700px); opacity: 0; }
}

@-o-keyframes hinge {
  0% { -o-transform: rotate(0); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
  20%, 60% { -o-transform: rotate(80deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
  40% { -o-transform: rotate(60deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
  80% { -o-transform: rotate(60deg) translateY(0); opacity: 1; -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
  100% { -o-transform: translateY(700px); opacity: 0; }
}

@keyframes hinge {
  0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }
  20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; }
  40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; }
  80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; }
  100% { transform: translateY(700px); opacity: 0; }
}

.notouch .animated.hinge {
  -webkit-animation-name: hinge;
  -moz-animation-name: hinge;
  -o-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); }
  100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); }
}

@-moz-keyframes rollIn {
  0% { opacity: 0; -moz-transform: translateX(-100%) rotate(-120deg); }
  100% { opacity: 1; -moz-transform: translateX(0px) rotate(0deg); }
}

@-o-keyframes rollIn {
  0% { opacity: 0; -o-transform: translateX(-100%) rotate(-120deg); }
  100% { opacity: 1; -o-transform: translateX(0px) rotate(0deg); }
}

@keyframes rollIn {
  0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
  100% { opacity: 1; transform: translateX(0px) rotate(0deg); }
}

.notouch .animated.rollIn {
  -webkit-animation-name: rollIn;
  -moz-animation-name: rollIn;
  -o-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}

@-moz-keyframes rollOut {
  0% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(100%) rotate(120deg);
  }
}

@-o-keyframes rollOut {
  0% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}

.notouch .animated.rollOut {
  -webkit-animation-name: rollOut;
  -moz-animation-name: rollOut;
  -o-animation-name: rollOut;
  animation-name: rollOut;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes lightSpeedIn {
  0% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
  60% { -webkit-transform: translateX(-20%) skewX(30deg); opacity: 1; }
  80% { -webkit-transform: translateX(0%) skewX(-15deg); opacity: 1; }
  100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@-moz-keyframes lightSpeedIn {
  0% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
  60% { -moz-transform: translateX(-20%) skewX(30deg); opacity: 1; }
  80% { -moz-transform: translateX(0%) skewX(-15deg); opacity: 1; }
  100% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@-o-keyframes lightSpeedIn {
  0% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
  60% { -o-transform: translateX(-20%) skewX(30deg); opacity: 1; }
  80% { -o-transform: translateX(0%) skewX(-15deg); opacity: 1; }
  100% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@keyframes lightSpeedIn {
  0% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
  60% { transform: translateX(-20%) skewX(30deg); opacity: 1; }
  80% { transform: translateX(0%) skewX(-15deg); opacity: 1; }
  100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
}

.notouch .animated.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  -moz-animation-name: lightSpeedIn;
  -o-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.notouch .animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes lightSpeedOut {
  0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
  100% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@-moz-keyframes lightSpeedOut {
  0% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
  100% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@-o-keyframes lightSpeedOut {
  0% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
  100% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@keyframes lightSpeedOut {
  0% { transform: translateX(0%) skewX(0deg); opacity: 1; }
  100% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

.notouch .animated.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  -moz-animation-name: lightSpeedOut;
  -o-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.notouch .animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  -moz-animation-duration: 0.25s;
  -o-animation-duration: 0.25s;
  animation-duration: 0.25s;
}


@media (max-device-width: 1024px) {
  .not-animated { opacity: 1; }
}



/* #jQuery FancyBox v2.1.4
================================================== */
.fancybox-wrap,.fancybox-skin,.fancybox-outer,.fancybox-inner,.fancybox-image,.fancybox-wrap iframe,.fancybox-wrap object,.fancybox-nav,.fancybox-nav span,.fancybox-tmp{padding:0;margin:0;border:0;outline:0;vertical-align:top}
.fancybox-wrap{position:absolute;top:0;left:0;z-index:8020}
.fancybox-skin{position:relative;background:#000000;color:#818080
;text-shadow:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}
.fancybox-opened{z-index:8030}
.fancybox-opened .fancybox-skin{-webkit-box-shadow:0 10px 25px rgba(0,0,0,0.5);-moz-box-shadow:0 10px 25px rgba(0,0,0,0.5);box-shadow:0 10px 25px rgba(0,0,0,0.5)}
.fancybox-outer,.fancybox-inner{position:relative}
.fancybox-inner{overflow:hidden}
.fancybox-type-iframe .fancybox-inner{-webkit-overflow-scrolling:touch}
.fancybox-error{color:#444;font:14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;margin:0;padding:15px;white-space:nowrap}
.fancybox-image,.fancybox-iframe{display:block;width:100%;height:100%}
.fancybox-image{max-width:100%;max-height:100%}
#fancybox-loading,.fancybox-close,.fancybox-prev span,.fancybox-next span{background-image:url(//cdn.shopify.com/s/files/1/0322/2265/t/4/assets/fancybox_sprite.png?94267)}
#fancybox-loading{position:fixed;top:50%;left:50%;margin-top:-22px;margin-left:-22px;background-position:0 -108px;opacity:.8;filter:alpha(opacity = 80);cursor:pointer;z-index:8060}
#fancybox-loading div{width:44px;height:44px;background:url(//cdn.shopify.com/s/files/1/0322/2265/t/4/assets/fancybox_loading.gif?94267) center center no-repeat}
.fancybox-close{position:absolute;top:-18px;right:-18px;width:36px;height:36px;cursor:pointer;z-index:8040}
.fancybox-nav{position:absolute;top:0;width:40%;height:100%;cursor:pointer;text-decoration:none;background:transparent url(//cdn.shopify.com/s/files/1/0322/2265/t/4/assets/blank.gif?94267);-webkit-tap-highlight-color:rgba(0,0,0,0);z-index:8040}
.fancybox-prev{left:0}
.fancybox-next{right:0}
.fancybox-nav span{position:absolute;top:50%;width:36px;height:34px;margin-top:-18px;cursor:pointer;z-index:8040;visibility:hidden}
.fancybox-prev span{left:10px;background-position:0 -36px}
.fancybox-next span{right:10px;background-position:0 -72px}
.fancybox-nav:hover span{visibility:visible}
.fancybox-tmp{position:absolute;top:-99999px;left:-99999px;visibility:hidden;max-width:99999px;max-height:99999px;overflow:visible !important}
.fancybox-lock{overflow:hidden}
.fancybox-overlay{position:absolute;top:0;left:0;overflow:hidden;display:none;background:url(//cdn.shopify.com/s/files/1/0322/2265/t/4/assets/fancybox_overlay.png?94267)}
.fancybox-overlay-fixed{position:fixed;bottom:0;right:0;z-index:10001}
.fancybox-lock .fancybox-overlay{overflow:auto;overflow-y:scroll}
.fancybox-title{visibility:hidden;font:normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;position:relative;text-shadow:none;z-index:8050}
.fancybox-opened .fancybox-title{visibility:visible}
.fancybox-title-float-wrap{position:absolute;bottom:0;right:50%;margin-bottom:-35px;z-index:8050;text-align:center}
.fancybox-title-float-wrap .child{display:inline-block;margin-right:-100%;padding:2px 20px;background:transparent;background:rgba(0,0,0,0.8);-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;text-shadow:0 1px 2px #222;color:#FFF;font-weight:bold;line-height:24px;white-space:nowrap}
.fancybox-title-outside-wrap{position:relative;margin-top:10px;color:#fff}
.fancybox-title-inside-wrap{padding-top:10px}
.fancybox-title-over-wrap{position:absolute;bottom:0;left:0;color:#fff;padding:10px;background:#000;background:rgba(0,0,0,.8)}


/* #jQuery jGrowl
================================================== */
div.jGrowl{z-index:9999;color:#fff;font-size:12px}
div.ie6{position:absolute}
div.ie6.top-right{right:auto;bottom:auto;left:expression((0 - jGrowl.offsetWidth+(document.documentElement.clientWidth ? document.documentElement.clientWidth:document.body.clientWidth)+(ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft:document.body.scrollLeft))+'px');top:expression((0+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop:document.body.scrollTop))+'px')}
div.ie6.top-left{left:expression((0+(ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft:document.body.scrollLeft))+'px');top:expression((0+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop:document.body.scrollTop))+'px')}
div.ie6.bottom-right{left:expression((0 - jGrowl.offsetWidth+(document.documentElement.clientWidth ? document.documentElement.clientWidth:document.body.clientWidth)+(ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft:document.body.scrollLeft))+'px');top:expression((0 - jGrowl.offsetHeight+(document.documentElement.clientHeight ? document.documentElement.clientHeight:document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop:document.body.scrollTop))+'px')}
div.ie6.bottom-left{left:expression((0+(ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft:document.body.scrollLeft))+'px');top:expression((0 - jGrowl.offsetHeight+(document.documentElement.clientHeight ? document.documentElement.clientHeight:document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop:document.body.scrollTop))+'px')}
div.ie6.center{left:expression((0+(ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft:document.body.scrollLeft))+'px');top:expression((0+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop:document.body.scrollTop))+'px');width:100%}
div.jGrowl{position:absolute}
body>div.jGrowl{position:fixed}
div.jGrowl.top-left{left:0;top:0}
div.jGrowl.top-right{right:0;top:0}
div.jGrowl.bottom-left{left:0;bottom:0}
div.jGrowl.bottom-right{right:0;bottom:0}
div.jGrowl.center{top:0;width:50%;left:25%}
div.center div.jGrowl-notification,div.center div.jGrowl-closer{margin-left:auto;margin-right:auto}
div.jGrowl div.jGrowl-notification,div.jGrowl div.jGrowl-closer{background-color:#000000;color: #818080;zoom: 1;width: 300px;padding: 15px;margin-top: 5px;margin-bottom: 5px;font-size: 1em;text-align: left;display: none;-webkit-border-radius: 3px; -moz-border-radius: 3px; -o-border-radius: 3px;  border-radius: 3px; border: 1px solid #d9d9d9;}
div.jGrowl div.jGrowl-notification{min-height:40px;position:relative}
div.jGrowl div.jGrowl-notification,div.jGrowl div.jGrowl-closer{margin:10px}
div.jGrowl div.jGrowl-notification div.jGrowl-header{font-weight:bold;font-size:.85em}
div.jGrowl div.jGrowl-notification div.jGrowl-close{z-index:99;position:absolute;top:15px;left:15px;font-size:20px;cursor:pointer;display:block;}
div.jGrowl div.jGrowl-notification div.jGrowl-close:hover{color: #3db0c1;}
div.jGrowl div.jGrowl-notification div.jGrowl-close .icon-remove-circle{display:block;}
div.jGrowl div.jGrowl-notification div.jGrowl-message{display:inline-block}
div.jGrowl div.jGrowl-notification div.jGrowl-message img{max-width:100%}
div.jGrowl div.jGrowl-notification .jGrowl-title{text-transform:uppercase;margin:0;padding:0}
div.jGrowl div.jGrowl-notification .jGrowl-note{margin-top:5px}
div.jGrowl div.jGrowl-notification .jGrowl-note a{text-transform:none;color: #fff; font-size: 11px; font-weight: bold;}
div.jGrowl div.jGrowl-notification .jGrowl-note a:hover{color: #3db0c1;}
div.jGrowl div.jGrowl-closer{padding-top:4px;padding-bottom:4px;cursor:pointer;font-size:.9em;font-weight:bold;text-align:center;color: #000000;}
div.jGrowl div.jGrowl-closer:hover{color: #3db0c1;}
@media print{div.jGrowl{display:none}}


/* #jQuery Isotope v1.5.25
================================================== */
.isotope-item{z-index:2}
.isotope-hidden.isotope-item{pointer-events:none;z-index:1}
.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;-ms-transition-duration:.8s;-o-transition-duration:.8s;transition-duration:.8s}
.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;-ms-transition-property:height,width;-o-transition-property:height,width;transition-property:height,width}
.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;-ms-transition-property:-ms-transform,opacity;-o-transition-property:-o-transform,opacity;transition-property:transform,opacity}
.isotope.no-transition,.isotope.no-transition .isotope-item,.isotope .isotope-item.no-transition{-webkit-transition-duration:0;-moz-transition-duration:0;-ms-transition-duration:0;-o-transition-duration:0;transition-duration:0}

/*!
 * Bootstrap v3.0.3
 *
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */

/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
a {
  background: transparent;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 2cm .5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  background-color: #ffffff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #428bca;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #2a6496;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}
h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
h2 small,
h3 small,
h1 .small,
h2 .small,
h3 .small {
  font-size: 65%;
}
h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
h5 small,
h6 small,
h4 .small,
h5 .small,
h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
cite {
  font-style: normal;
}
.text-muted {
  color: #999999;
}
.text-primary {
  color: #428bca;
}
.text-primary:hover {
  color: #3071a9;
}
.text-warning {
  color: #8a6d3b;
}
.text-warning:hover {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
.text-danger:hover {
  color: #843534;
}
.text-success {
  color: #3c763d;
}
.text-success:hover {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
.text-info:hover {
  color: #245269;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.list-inline > li:first-child {
  padding-left: 0;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.428571429;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    content: " ";
    display: table;
  }
  .dl-horizontal dd:after {
    clear: both;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    content: " ";
    display: table;
  }
  .dl-horizontal dd:after {
    clear: both;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eeeeee;
}
blockquote p {
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.25;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote small,
blockquote .small {
  display: block;
  line-height: 1.428571429;
  color: #999999;
}
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small,
blockquote.pull-right .small {
  text-align: right;
}
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
blockquote:before,
blockquote:after {
  content: "";
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  white-space: nowrap;
  border-radius: 4px;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 740px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1180px;
  }
}
.row {
  margin-left: -10px;
  margin-right: -10px;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24 {
  float: left;
}
.col-xs-24 {
  width: 100%;
}
.col-xs-23 {
  width: 95.83333333333334%;
}
.col-xs-22 {
  width: 91.66666666666666%;
}
.col-xs-21 {
  width: 87.5%;
}
.col-xs-20 {
  width: 83.33333333333334%;
}
.col-xs-19 {
  width: 79.16666666666666%;
}
.col-xs-18 {
  width: 75%;
}
.col-xs-17 {
  width: 70.83333333333334%;
}
.col-xs-16 {
  width: 66.66666666666666%;
}
.col-xs-15 {
  width: 62.5%;
}
.col-xs-14 {
  width: 58.333333333333336%;
}
.col-xs-13 {
  width: 54.166666666666664%;
}
.col-xs-12 {
  width: 50%;
}
.col-xs-11 {
  width: 45.83333333333333%;
}
.col-xs-10 {
  width: 41.66666666666667%;
}
.col-xs-9 {
  width: 37.5%;
}
.col-xs-8 {
  width: 33.33333333333333%;
}
.col-xs-7 {
  width: 29.166666666666668%;
}
.col-xs-6 {
  width: 25%;
}
.col-xs-5 {
  width: 20.833333333333336%;
}
.col-xs-4 {
  width: 16.666666666666664%;
}
.col-xs-3 {
  width: 12.5%;
}
.col-xs-2 {
  width: 8.333333333333332%;
}
.col-xs-1 {
  width: 4.166666666666666%;
}
.col-xs-pull-24 {
  right: 100%;
}
.col-xs-pull-23 {
  right: 95.83333333333334%;
}
.col-xs-pull-22 {
  right: 91.66666666666666%;
}
.col-xs-pull-21 {
  right: 87.5%;
}
.col-xs-pull-20 {
  right: 83.33333333333334%;
}
.col-xs-pull-19 {
  right: 79.16666666666666%;
}
.col-xs-pull-18 {
  right: 75%;
}
.col-xs-pull-17 {
  right: 70.83333333333334%;
}
.col-xs-pull-16 {
  right: 66.66666666666666%;
}
.col-xs-pull-15 {
  right: 62.5%;
}
.col-xs-pull-14 {
  right: 58.333333333333336%;
}
.col-xs-pull-13 {
  right: 54.166666666666664%;
}
.col-xs-pull-12 {
  right: 50%;
}
.col-xs-pull-11 {
  right: 45.83333333333333%;
}
.col-xs-pull-10 {
  right: 41.66666666666667%;
}
.col-xs-pull-9 {
  right: 37.5%;
}
.col-xs-pull-8 {
  right: 33.33333333333333%;
}
.col-xs-pull-7 {
  right: 29.166666666666668%;
}
.col-xs-pull-6 {
  right: 25%;
}
.col-xs-pull-5 {
  right: 20.833333333333336%;
}
.col-xs-pull-4 {
  right: 16.666666666666664%;
}
.col-xs-pull-3 {
  right: 12.5%;
}
.col-xs-pull-2 {
  right: 8.333333333333332%;
}
.col-xs-pull-1 {
  right: 4.166666666666666%;
}
.col-xs-pull-0 {
  right: 0%;
}
.col-xs-push-24 {
  left: 100%;
}
.col-xs-push-23 {
  left: 95.83333333333334%;
}
.col-xs-push-22 {
  left: 91.66666666666666%;
}
.col-xs-push-21 {
  left: 87.5%;
}
.col-xs-push-20 {
  left: 83.33333333333334%;
}
.col-xs-push-19 {
  left: 79.16666666666666%;
}
.col-xs-push-18 {
  left: 75%;
}
.col-xs-push-17 {
  left: 70.83333333333334%;
}
.col-xs-push-16 {
  left: 66.66666666666666%;
}
.col-xs-push-15 {
  left: 62.5%;
}
.col-xs-push-14 {
  left: 58.333333333333336%;
}
.col-xs-push-13 {
  left: 54.166666666666664%;
}
.col-xs-push-12 {
  left: 50%;
}
.col-xs-push-11 {
  left: 45.83333333333333%;
}
.col-xs-push-10 {
  left: 41.66666666666667%;
}
.col-xs-push-9 {
  left: 37.5%;
}
.col-xs-push-8 {
  left: 33.33333333333333%;
}
.col-xs-push-7 {
  left: 29.166666666666668%;
}
.col-xs-push-6 {
  left: 25%;
}
.col-xs-push-5 {
  left: 20.833333333333336%;
}
.col-xs-push-4 {
  left: 16.666666666666664%;
}
.col-xs-push-3 {
  left: 12.5%;
}
.col-xs-push-2 {
  left: 8.333333333333332%;
}
.col-xs-push-1 {
  left: 4.166666666666666%;
}
.col-xs-push-0 {
  left: 0%;
}
.col-xs-offset-24 {
  margin-left: 100%;
}
.col-xs-offset-23 {
  margin-left: 95.83333333333334%;
}
.col-xs-offset-22 {
  margin-left: 91.66666666666666%;
}
.col-xs-offset-21 {
  margin-left: 87.5%;
}
.col-xs-offset-20 {
  margin-left: 83.33333333333334%;
}
.col-xs-offset-19 {
  margin-left: 79.16666666666666%;
}
.col-xs-offset-18 {
  margin-left: 75%;
}
.col-xs-offset-17 {
  margin-left: 70.83333333333334%;
}
.col-xs-offset-16 {
  margin-left: 66.66666666666666%;
}
.col-xs-offset-15 {
  margin-left: 62.5%;
}
.col-xs-offset-14 {
  margin-left: 58.333333333333336%;
}
.col-xs-offset-13 {
  margin-left: 54.166666666666664%;
}
.col-xs-offset-12 {
  margin-left: 50%;
}
.col-xs-offset-11 {
  margin-left: 45.83333333333333%;
}
.col-xs-offset-10 {
  margin-left: 41.66666666666667%;
}
.col-xs-offset-9 {
  margin-left: 37.5%;
}
.col-xs-offset-8 {
  margin-left: 33.33333333333333%;
}
.col-xs-offset-7 {
  margin-left: 29.166666666666668%;
}
.col-xs-offset-6 {
  margin-left: 25%;
}
.col-xs-offset-5 {
  margin-left: 20.833333333333336%;
}
.col-xs-offset-4 {
  margin-left: 16.666666666666664%;
}
.col-xs-offset-3 {
  margin-left: 12.5%;
}
.col-xs-offset-2 {
  margin-left: 8.333333333333332%;
}
.col-xs-offset-1 {
  margin-left: 4.166666666666666%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24 {
    float: left;
  }
  .col-sm-24 {
    width: 100%;
  }
  .col-sm-23 {
    width: 95.83333333333334%;
  }
  .col-sm-22 {
    width: 91.66666666666666%;
  }
  .col-sm-21 {
    width: 87.5%;
  }
  .col-sm-20 {
    width: 83.33333333333334%;
  }
  .col-sm-19 {
    width: 79.16666666666666%;
  }
  .col-sm-18 {
    width: 75%;
  }
  .col-sm-17 {
    width: 70.83333333333334%;
  }
  .col-sm-16 {
    width: 66.66666666666666%;
  }
  .col-sm-15 {
    width: 62.5%;
  }
  .col-sm-14 {
    width: 58.333333333333336%;
  }
  .col-sm-13 {
    width: 54.166666666666664%;
  }
  .col-sm-12 {
    width: 50%;
  }
  .col-sm-11 {
    width: 45.83333333333333%;
  }
  .col-sm-10 {
    width: 41.66666666666667%;
  }
  .col-sm-9 {
    width: 37.5%;
  }
  .col-sm-8 {
    width: 33.33333333333333%;
  }
  .col-sm-7 {
    width: 29.166666666666668%;
  }
  .col-sm-6 {
    width: 25%;
  }
  .col-sm-5 {
    width: 20.833333333333336%;
  }
  .col-sm-4 {
    width: 16.666666666666664%;
  }
  .col-sm-3 {
    width: 12.5%;
  }
  .col-sm-2 {
    width: 8.333333333333332%;
  }
  .col-sm-1 {
    width: 4.166666666666666%;
  }
  .col-sm-pull-24 {
    right: 100%;
  }
  .col-sm-pull-23 {
    right: 95.83333333333334%;
  }
  .col-sm-pull-22 {
    right: 91.66666666666666%;
  }
  .col-sm-pull-21 {
    right: 87.5%;
  }
  .col-sm-pull-20 {
    right: 83.33333333333334%;
  }
  .col-sm-pull-19 {
    right: 79.16666666666666%;
  }
  .col-sm-pull-18 {
    right: 75%;
  }
  .col-sm-pull-17 {
    right: 70.83333333333334%;
  }
  .col-sm-pull-16 {
    right: 66.66666666666666%;
  }
  .col-sm-pull-15 {
    right: 62.5%;
  }
  .col-sm-pull-14 {
    right: 58.333333333333336%;
  }
  .col-sm-pull-13 {
    right: 54.166666666666664%;
  }
  .col-sm-pull-12 {
    right: 50%;
  }
  .col-sm-pull-11 {
    right: 45.83333333333333%;
  }
  .col-sm-pull-10 {
    right: 41.66666666666667%;
  }
  .col-sm-pull-9 {
    right: 37.5%;
  }
  .col-sm-pull-8 {
    right: 33.33333333333333%;
  }
  .col-sm-pull-7 {
    right: 29.166666666666668%;
  }
  .col-sm-pull-6 {
    right: 25%;
  }
  .col-sm-pull-5 {
    right: 20.833333333333336%;
  }
  .col-sm-pull-4 {
    right: 16.666666666666664%;
  }
  .col-sm-pull-3 {
    right: 12.5%;
  }
  .col-sm-pull-2 {
    right: 8.333333333333332%;
  }
  .col-sm-pull-1 {
    right: 4.166666666666666%;
  }
  .col-sm-pull-0 {
    right: 0%;
  }
  .col-sm-push-24 {
    left: 100%;
  }
  .col-sm-push-23 {
    left: 95.83333333333334%;
  }
  .col-sm-push-22 {
    left: 91.66666666666666%;
  }
  .col-sm-push-21 {
    left: 87.5%;
  }
  .col-sm-push-20 {
    left: 83.33333333333334%;
  }
  .col-sm-push-19 {
    left: 79.16666666666666%;
  }
  .col-sm-push-18 {
    left: 75%;
  }
  .col-sm-push-17 {
    left: 70.83333333333334%;
  }
  .col-sm-push-16 {
    left: 66.66666666666666%;
  }
  .col-sm-push-15 {
    left: 62.5%;
  }
  .col-sm-push-14 {
    left: 58.333333333333336%;
  }
  .col-sm-push-13 {
    left: 54.166666666666664%;
  }
  .col-sm-push-12 {
    left: 50%;
  }
  .col-sm-push-11 {
    left: 45.83333333333333%;
  }
  .col-sm-push-10 {
    left: 41.66666666666667%;
  }
  .col-sm-push-9 {
    left: 37.5%;
  }
  .col-sm-push-8 {
    left: 33.33333333333333%;
  }
  .col-sm-push-7 {
    left: 29.166666666666668%;
  }
  .col-sm-push-6 {
    left: 25%;
  }
  .col-sm-push-5 {
    left: 20.833333333333336%;
  }
  .col-sm-push-4 {
    left: 16.666666666666664%;
  }
  .col-sm-push-3 {
    left: 12.5%;
  }
  .col-sm-push-2 {
    left: 8.333333333333332%;
  }
  .col-sm-push-1 {
    left: 4.166666666666666%;
  }
  .col-sm-push-0 {
    left: 0%;
  }
  .col-sm-offset-24 {
    margin-left: 100%;
  }
  .col-sm-offset-23 {
    margin-left: 95.83333333333334%;
  }
  .col-sm-offset-22 {
    margin-left: 91.66666666666666%;
  }
  .col-sm-offset-21 {
    margin-left: 87.5%;
  }
  .col-sm-offset-20 {
    margin-left: 83.33333333333334%;
  }
  .col-sm-offset-19 {
    margin-left: 79.16666666666666%;
  }
  .col-sm-offset-18 {
    margin-left: 75%;
  }
  .col-sm-offset-17 {
    margin-left: 70.83333333333334%;
  }
  .col-sm-offset-16 {
    margin-left: 66.66666666666666%;
  }
  .col-sm-offset-15 {
    margin-left: 62.5%;
  }
  .col-sm-offset-14 {
    margin-left: 58.333333333333336%;
  }
  .col-sm-offset-13 {
    margin-left: 54.166666666666664%;
  }
  .col-sm-offset-12 {
    margin-left: 50%;
  }
  .col-sm-offset-11 {
    margin-left: 45.83333333333333%;
  }
  .col-sm-offset-10 {
    margin-left: 41.66666666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 37.5%;
  }
  .col-sm-offset-8 {
    margin-left: 33.33333333333333%;
  }
  .col-sm-offset-7 {
    margin-left: 29.166666666666668%;
  }
  .col-sm-offset-6 {
    margin-left: 25%;
  }
  .col-sm-offset-5 {
    margin-left: 20.833333333333336%;
  }
  .col-sm-offset-4 {
    margin-left: 16.666666666666664%;
  }
  .col-sm-offset-3 {
    margin-left: 12.5%;
  }
  .col-sm-offset-2 {
    margin-left: 8.333333333333332%;
  }
  .col-sm-offset-1 {
    margin-left: 4.166666666666666%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24 {
    float: left;
  }
  .col-md-24 {
    width: 100%;
  }
  .col-md-23 {
    width: 95.83333333333334%;
  }
  .col-md-22 {
    width: 91.66666666666666%;
  }
  .col-md-21 {
    width: 87.5%;
  }
  .col-md-20 {
    width: 83.33333333333334%;
  }
  .col-md-19 {
    width: 79.16666666666666%;
  }
  .col-md-18 {
    width: 75%;
  }
  .col-md-17 {
    width: 70.83333333333334%;
  }
  .col-md-16 {
    width: 66.66666666666666%;
  }
  .col-md-15 {
    width: 62.5%;
  }
  .col-md-14 {
    width: 58.333333333333336%;
  }
  .col-md-13 {
    width: 54.166666666666664%;
  }
  .col-md-12 {
    width: 50%;
  }
  .col-md-11 {
    width: 45.83333333333333%;
  }
  .col-md-10 {
    width: 41.66666666666667%;
  }
  .col-md-9 {
    width: 37.5%;
  }
  .col-md-8 {
    width: 33.33333333333333%;
  }
  .col-md-7 {
    width: 29.166666666666668%;
  }
  .col-md-6 {
    width: 25%;
  }
  .col-md-5 {
    width: 20.833333333333336%;
  }
  .col-md-4 {
    width: 16.666666666666664%;
  }
  .col-md-3 {
    width: 12.5%;
  }
  .col-md-2 {
    width: 8.333333333333332%;
  }
  .col-md-1 {
    width: 4.166666666666666%;
  }
  .col-md-pull-24 {
    right: 100%;
  }
  .col-md-pull-23 {
    right: 95.83333333333334%;
  }
  .col-md-pull-22 {
    right: 91.66666666666666%;
  }
  .col-md-pull-21 {
    right: 87.5%;
  }
  .col-md-pull-20 {
    right: 83.33333333333334%;
  }
  .col-md-pull-19 {
    right: 79.16666666666666%;
  }
  .col-md-pull-18 {
    right: 75%;
  }
  .col-md-pull-17 {
    right: 70.83333333333334%;
  }
  .col-md-pull-16 {
    right: 66.66666666666666%;
  }
  .col-md-pull-15 {
    right: 62.5%;
  }
  .col-md-pull-14 {
    right: 58.333333333333336%;
  }
  .col-md-pull-13 {
    right: 54.166666666666664%;
  }
  .col-md-pull-12 {
    right: 50%;
  }
  .col-md-pull-11 {
    right: 45.83333333333333%;
  }
  .col-md-pull-10 {
    right: 41.66666666666667%;
  }
  .col-md-pull-9 {
    right: 37.5%;
  }
  .col-md-pull-8 {
    right: 33.33333333333333%;
  }
  .col-md-pull-7 {
    right: 29.166666666666668%;
  }
  .col-md-pull-6 {
    right: 25%;
  }
  .col-md-pull-5 {
    right: 20.833333333333336%;
  }
  .col-md-pull-4 {
    right: 16.666666666666664%;
  }
  .col-md-pull-3 {
    right: 12.5%;
  }
  .col-md-pull-2 {
    right: 8.333333333333332%;
  }
  .col-md-pull-1 {
    right: 4.166666666666666%;
  }
  .col-md-pull-0 {
    right: 0%;
  }
  .col-md-push-24 {
    left: 100%;
  }
  .col-md-push-23 {
    left: 95.83333333333334%;
  }
  .col-md-push-22 {
    left: 91.66666666666666%;
  }
  .col-md-push-21 {
    left: 87.5%;
  }
  .col-md-push-20 {
    left: 83.33333333333334%;
  }
  .col-md-push-19 {
    left: 79.16666666666666%;
  }
  .col-md-push-18 {
    left: 75%;
  }
  .col-md-push-17 {
    left: 70.83333333333334%;
  }
  .col-md-push-16 {
    left: 66.66666666666666%;
  }
  .col-md-push-15 {
    left: 62.5%;
  }
  .col-md-push-14 {
    left: 58.333333333333336%;
  }
  .col-md-push-13 {
    left: 54.166666666666664%;
  }
  .col-md-push-12 {
    left: 50%;
  }
  .col-md-push-11 {
    left: 45.83333333333333%;
  }
  .col-md-push-10 {
    left: 41.66666666666667%;
  }
  .col-md-push-9 {
    left: 37.5%;
  }
  .col-md-push-8 {
    left: 33.33333333333333%;
  }
  .col-md-push-7 {
    left: 29.166666666666668%;
  }
  .col-md-push-6 {
    left: 25%;
  }
  .col-md-push-5 {
    left: 20.833333333333336%;
  }
  .col-md-push-4 {
    left: 16.666666666666664%;
  }
  .col-md-push-3 {
    left: 12.5%;
  }
  .col-md-push-2 {
    left: 8.333333333333332%;
  }
  .col-md-push-1 {
    left: 4.166666666666666%;
  }
  .col-md-push-0 {
    left: 0%;
  }
  .col-md-offset-24 {
    margin-left: 100%;
  }
  .col-md-offset-23 {
    margin-left: 95.83333333333334%;
  }
  .col-md-offset-22 {
    margin-left: 91.66666666666666%;
  }
  .col-md-offset-21 {
    margin-left: 87.5%;
  }
  .col-md-offset-20 {
    margin-left: 83.33333333333334%;
  }
  .col-md-offset-19 {
    margin-left: 79.16666666666666%;
  }
  .col-md-offset-18 {
    margin-left: 75%;
  }
  .col-md-offset-17 {
    margin-left: 70.83333333333334%;
  }
  .col-md-offset-16 {
    margin-left: 66.66666666666666%;
  }
  .col-md-offset-15 {
    margin-left: 62.5%;
  }
  .col-md-offset-14 {
    margin-left: 58.333333333333336%;
  }
  .col-md-offset-13 {
    margin-left: 54.166666666666664%;
  }
  .col-md-offset-12 {
    margin-left: 50%;
  }
  .col-md-offset-11 {
    margin-left: 45.83333333333333%;
  }
  .col-md-offset-10 {
    margin-left: 41.66666666666667%;
  }
  .col-md-offset-9 {
    margin-left: 37.5%;
  }
  .col-md-offset-8 {
    margin-left: 33.33333333333333%;
  }
  .col-md-offset-7 {
    margin-left: 29.166666666666668%;
  }
  .col-md-offset-6 {
    margin-left: 25%;
  }
  .col-md-offset-5 {
    margin-left: 20.833333333333336%;
  }
  .col-md-offset-4 {
    margin-left: 16.666666666666664%;
  }
  .col-md-offset-3 {
    margin-left: 12.5%;
  }
  .col-md-offset-2 {
    margin-left: 8.333333333333332%;
  }
  .col-md-offset-1 {
    margin-left: 4.166666666666666%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24 {
    float: left;
  }
  .col-lg-24 {
    width: 100%;
  }
  .col-lg-23 {
    width: 95.83333333333334%;
  }
  .col-lg-22 {
    width: 91.66666666666666%;
  }
  .col-lg-21 {
    width: 87.5%;
  }
  .col-lg-20 {
    width: 83.33333333333334%;
  }
  .col-lg-19 {
    width: 79.16666666666666%;
  }
  .col-lg-18 {
    width: 75%;
  }
  .col-lg-17 {
    width: 70.83333333333334%;
  }
  .col-lg-16 {
    width: 66.66666666666666%;
  }
  .col-lg-15 {
    width: 62.5%;
  }
  .col-lg-14 {
    width: 58.333333333333336%;
  }
  .col-lg-13 {
    width: 54.166666666666664%;
  }
  .col-lg-12 {
    width: 50%;
  }
  .col-lg-11 {
    width: 45.83333333333333%;
  }
  .col-lg-10 {
    width: 41.66666666666667%;
  }
  .col-lg-9 {
    width: 37.5%;
  }
  .col-lg-8 {
    width: 33.33333333333333%;
  }
  .col-lg-7 {
    width: 29.166666666666668%;
  }
  .col-lg-6 {
    width: 25%;
  }
  .col-lg-5 {
    width: 20.833333333333336%;
  }
  .col-lg-4 {
    width: 16.666666666666664%;
  }
  .col-lg-3 {
    width: 12.5%;
  }
  .col-lg-2 {
    width: 8.333333333333332%;
  }
  .col-lg-1 {
    width: 4.166666666666666%;
  }
  .col-lg-pull-24 {
    right: 100%;
  }
  .col-lg-pull-23 {
    right: 95.83333333333334%;
  }
  .col-lg-pull-22 {
    right: 91.66666666666666%;
  }
  .col-lg-pull-21 {
    right: 87.5%;
  }
  .col-lg-pull-20 {
    right: 83.33333333333334%;
  }
  .col-lg-pull-19 {
    right: 79.16666666666666%;
  }
  .col-lg-pull-18 {
    right: 75%;
  }
  .col-lg-pull-17 {
    right: 70.83333333333334%;
  }
  .col-lg-pull-16 {
    right: 66.66666666666666%;
  }
  .col-lg-pull-15 {
    right: 62.5%;
  }
  .col-lg-pull-14 {
    right: 58.333333333333336%;
  }
  .col-lg-pull-13 {
    right: 54.166666666666664%;
  }
  .col-lg-pull-12 {
    right: 50%;
  }
  .col-lg-pull-11 {
    right: 45.83333333333333%;
  }
  .col-lg-pull-10 {
    right: 41.66666666666667%;
  }
  .col-lg-pull-9 {
    right: 37.5%;
  }
  .col-lg-pull-8 {
    right: 33.33333333333333%;
  }
  .col-lg-pull-7 {
    right: 29.166666666666668%;
  }
  .col-lg-pull-6 {
    right: 25%;
  }
  .col-lg-pull-5 {
    right: 20.833333333333336%;
  }
  .col-lg-pull-4 {
    right: 16.666666666666664%;
  }
  .col-lg-pull-3 {
    right: 12.5%;
  }
  .col-lg-pull-2 {
    right: 8.333333333333332%;
  }
  .col-lg-pull-1 {
    right: 4.166666666666666%;
  }
  .col-lg-pull-0 {
    right: 0%;
  }
  .col-lg-push-24 {
    left: 100%;
  }
  .col-lg-push-23 {
    left: 95.83333333333334%;
  }
  .col-lg-push-22 {
    left: 91.66666666666666%;
  }
  .col-lg-push-21 {
    left: 87.5%;
  }
  .col-lg-push-20 {
    left: 83.33333333333334%;
  }
  .col-lg-push-19 {
    left: 79.16666666666666%;
  }
  .col-lg-push-18 {
    left: 75%;
  }
  .col-lg-push-17 {
    left: 70.83333333333334%;
  }
  .col-lg-push-16 {
    left: 66.66666666666666%;
  }
  .col-lg-push-15 {
    left: 62.5%;
  }
  .col-lg-push-14 {
    left: 58.333333333333336%;
  }
  .col-lg-push-13 {
    left: 54.166666666666664%;
  }
  .col-lg-push-12 {
    left: 50%;
  }
  .col-lg-push-11 {
    left: 45.83333333333333%;
  }
  .col-lg-push-10 {
    left: 41.66666666666667%;
  }
  .col-lg-push-9 {
    left: 37.5%;
  }
  .col-lg-push-8 {
    left: 33.33333333333333%;
  }
  .col-lg-push-7 {
    left: 29.166666666666668%;
  }
  .col-lg-push-6 {
    left: 25%;
  }
  .col-lg-push-5 {
    left: 20.833333333333336%;
  }
  .col-lg-push-4 {
    left: 16.666666666666664%;
  }
  .col-lg-push-3 {
    left: 12.5%;
  }
  .col-lg-push-2 {
    left: 8.333333333333332%;
  }
  .col-lg-push-1 {
    left: 4.166666666666666%;
  }
  .col-lg-push-0 {
    left: 0%;
  }
  .col-lg-offset-24 {
    margin-left: 100%;
  }
  .col-lg-offset-23 {
    margin-left: 95.83333333333334%;
  }
  .col-lg-offset-22 {
    margin-left: 91.66666666666666%;
  }
  .col-lg-offset-21 {
    margin-left: 87.5%;
  }
  .col-lg-offset-20 {
    margin-left: 83.33333333333334%;
  }
  .col-lg-offset-19 {
    margin-left: 79.16666666666666%;
  }
  .col-lg-offset-18 {
    margin-left: 75%;
  }
  .col-lg-offset-17 {
    margin-left: 70.83333333333334%;
  }
  .col-lg-offset-16 {
    margin-left: 66.66666666666666%;
  }
  .col-lg-offset-15 {
    margin-left: 62.5%;
  }
  .col-lg-offset-14 {
    margin-left: 58.333333333333336%;
  }
  .col-lg-offset-13 {
    margin-left: 54.166666666666664%;
  }
  .col-lg-offset-12 {
    margin-left: 50%;
  }
  .col-lg-offset-11 {
    margin-left: 45.83333333333333%;
  }
  .col-lg-offset-10 {
    margin-left: 41.66666666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 37.5%;
  }
  .col-lg-offset-8 {
    margin-left: 33.33333333333333%;
  }
  .col-lg-offset-7 {
    margin-left: 29.166666666666668%;
  }
  .col-lg-offset-6 {
    margin-left: 25%;
  }
  .col-lg-offset-5 {
    margin-left: 20.833333333333336%;
  }
  .col-lg-offset-4 {
    margin-left: 16.666666666666664%;
  }
  .col-lg-offset-3 {
    margin-left: 12.5%;
  }
  .col-lg-offset-2 {
    margin-left: 8.333333333333332%;
  }
  .col-lg-offset-1 {
    margin-left: 4.166666666666666%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  max-width: 100%;
  background-color: transparent;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table .table {
  background-color: #ffffff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  float: none;
  display: table-cell;
}
.table > thead > tr > .active,
.table > tbody > tr > .active,
.table > tfoot > tr > .active,
.table > thead > .active > td,
.table > tbody > .active > td,
.table > tfoot > .active > td,
.table > thead > .active > th,
.table > tbody > .active > th,
.table > tfoot > .active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > .active:hover,
.table-hover > tbody > .active:hover > td,
.table-hover > tbody > .active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > .success,
.table > tbody > tr > .success,
.table > tfoot > tr > .success,
.table > thead > .success > td,
.table > tbody > .success > td,
.table > tfoot > .success > td,
.table > thead > .success > th,
.table > tbody > .success > th,
.table > tfoot > .success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > .success:hover,
.table-hover > tbody > .success:hover > td,
.table-hover > tbody > .success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > .danger,
.table > tbody > tr > .danger,
.table > tfoot > tr > .danger,
.table > thead > .danger > td,
.table > tbody > .danger > td,
.table > tfoot > .danger > td,
.table > thead > .danger > th,
.table > tbody > .danger > th,
.table > tfoot > .danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > .danger:hover,
.table-hover > tbody > .danger:hover > td,
.table-hover > tbody > .danger:hover > th {
  background-color: #ebcccc;
}
.table > thead > tr > .warning,
.table > tbody > tr > .warning,
.table > tfoot > tr > .warning,
.table > thead > .warning > td,
.table > tbody > .warning > td,
.table > tfoot > .warning > td,
.table > thead > .warning > th,
.table > tbody > .warning > th,
.table > tfoot > .warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > .warning:hover,
.table-hover > tbody > .warning:hover > td,
.table-hover > tbody > .warning:hover > th {
  background-color: #faf2cc;
}
@media (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */

  line-height: normal;
}
input[type="file"] {
  display: block;
}
select[multiple],
select[size] {
  height: auto;
}
select optgroup {
  font-size: inherit;
  font-style: inherit;
  font-family: inherit;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  height: auto;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control:-moz-placeholder {
  color: #999999;
}
.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder {
  color: #999999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
}
textarea.form-control {
  height: auto;
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  vertical-align: middle;
}
.radio label,
.checkbox label {
  display: inline;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm {
  height: auto;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg {
  height: auto;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.form-control-static {
  margin-bottom: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
  }
  .form-inline select.form-control {
    width: auto;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
}
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -10px;
  margin-right: -10px;
}
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  content: " ";
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  content: " ";
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
.form-horizontal .form-control-static {
  padding-top: 7px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.btn:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus {
  color: #333333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default .badge {
  color: #ffffff;
  background-color: #fff;
}
.btn-primary {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary .badge {
  color: #428bca;
  background-color: #fff;
}
.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ed9c28;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #d2322d;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #47a447;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #39b3d7;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #999999;
  text-decoration: none;
}
.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('fonts/glyphicons-halflings-regular.eot');
  src: url('fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('fonts/glyphicons-halflings-regular.woff') format('woff'), url('fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon:empty {
  width: 1em;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.glyphicon-euro:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #428bca;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #999999;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: none;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar:before,
.btn-toolbar:after {
  content: " ";
  display: table;
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar:before,
.btn-toolbar:after {
  content: " ";
  display: table;
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar .btn-group {
  float: left;
}
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group,
.btn-toolbar > .btn-group + .btn-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  display: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  white-space: nowrap;
}
.input-group-btn:first-child > .btn {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn {
  margin-left: -1px;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -4px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:active {
  z-index: 2;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav:before,
.nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav:before,
.nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #999999;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #999999;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #428bca;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #dddddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #428bca;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.navbar:before,
.navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}
.navbar:before,
.navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
.navbar-header:before,
.navbar-header:after {
  content: " ";
  display: table;
}
.navbar-header:after {
  clear: both;
}
.navbar-header:before,
.navbar-header:after {
  content: " ";
  display: table;
}
.navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  max-height: 340px;
  overflow-x: visible;
  padding-right: 10px;
  padding-left: 10px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse:before,
.navbar-collapse:after {
  content: " ";
  display: table;
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse:before,
.navbar-collapse:after {
  content: " ";
  display: table;
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;    
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.container > .navbar-header,
.container > .navbar-collapse {
  margin-right: -10px;
  margin-left: -10px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  padding: 15px 10px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand {
    margin-left: -10px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 10px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -10px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-nav.navbar-right:last-child {
    margin-right: -10px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
  }
}
.navbar-form {
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px 10px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
  }
  .navbar-form select.form-control {
    width: auto;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-form.navbar-right:last-child {
    margin-right: -10px;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-nav.pull-right > li > .dropdown-menu,
.navbar-nav > li > .dropdown-menu.pull-right {
  left: auto;
  right: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
  }
  .navbar-text.navbar-right:last-child {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777777;
}
.navbar-default .navbar-nav > li > a {
  color: #777777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #dddddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #dddddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #cccccc;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555555;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777777;
}
.navbar-default .navbar-link:hover {
  color: #333333;
}
.navbar-inverse {
  background-color: #222222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #999999;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #999999;
}
.navbar-inverse .navbar-nav > li > a {
  color: #999999;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #ffffff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #ffffff;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #999999;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #999999;
}
.navbar-inverse .navbar-link:hover {
  color: #ffffff;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #cccccc;
}
.breadcrumb > .active {
  color: #999999;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.428571429;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: #eeeeee;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #428bca;
  border-color: #428bca;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999999;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.pager:before,
.pager:after {
  content: " ";
  display: table;
}
.pager:after {
  clear: both;
}
.pager:before,
.pager:after {
  content: " ";
  display: table;
}
.pager:after {
  clear: both;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999999;
  background-color: #ffffff;
  cursor: not-allowed;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
.label[href]:hover,
.label[href]:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #999999;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #808080;
}
.label-primary {
  background-color: #428bca;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #3071a9;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #999999;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #428bca;
  background-color: #ffffff;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 200;
  line-height: 2.1428571435;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  line-height: 1;
  color: inherit;
}
.jumbotron p {
  line-height: 1.4;
}
.container .jumbotron {
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #428bca;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable {
  padding-right: 35px;
}
.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: #428bca;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress.active .progress-bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media,
.media .media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media-object {
  display: block;
}
.media-heading {
  margin: 0 0 5px;
}
.media > .pull-left {
  margin-right: 10px;
}
.media > .pull-right {
  margin-left: 10px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
a.list-group-item {
  color: #555555;
}
a.list-group-item .list-group-item-heading {
  color: #333333;
}
a.list-group-item:hover,
a.list-group-item:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #428bca;
  border-color: #428bca;
}
a.list-group-item.active .list-group-item-heading,
a.list-group-item.active:hover .list-group-item-heading,
a.list-group-item.active:focus .list-group-item-heading {
  color: inherit;
}
a.list-group-item.active .list-group-item-text,
a.list-group-item.active:hover .list-group-item-text,
a.list-group-item.active:focus .list-group-item-text {
  color: #e1edf7;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-body:before,
.panel-body:after {
  content: " ";
  display: table;
}
.panel-body:after {
  clear: both;
}
.panel-body:before,
.panel-body:after {
  content: " ";
  display: table;
}
.panel-body:after {
  clear: both;
}
.panel > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item {
  border-width: 1px 0;
}
.panel > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel > .list-group .list-group-item:last-child {
  border-bottom: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table {
  margin-bottom: 0;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
  border-top: 1px solid #dddddd;
}
.panel > .table > tbody:first-child th,
.panel > .table > tbody:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:last-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-bordered > thead > tr:last-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
  overflow: hidden;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse .panel-body {
  border-top: 1px solid #dddddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}
.panel-default {
  border-color: #dddddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #dddddd;
}
.panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #dddddd;
}
.panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #dddddd;
}
.panel-primary {
  border-color: #428bca;
}
.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #428bca;
  border-color: #428bca;
}
.panel-primary > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #428bca;
}
.panel-primary > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #428bca;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ebccd1;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #bce8f1;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  z-index: 1050;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.428571429px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}
.modal-body {
  position: relative;
  padding: 20px;
}
.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #000000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover .arrow {
  border-width: 11px;
}
.popover .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff;
}
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.popover.bottom .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff;
}
.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
  outline: none;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicons-chevron-left,
  .carousel-control .glyphicons-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    font-size: 30px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
tr.visible-xs,
th.visible-xs,
td.visible-xs {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-xs.visible-sm {
    display: block !important;
  }
  table.visible-xs.visible-sm {
    display: table;
  }
  tr.visible-xs.visible-sm {
    display: table-row !important;
  }
  th.visible-xs.visible-sm,
  td.visible-xs.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-xs.visible-md {
    display: block !important;
  }
  table.visible-xs.visible-md {
    display: table;
  }
  tr.visible-xs.visible-md {
    display: table-row !important;
  }
  th.visible-xs.visible-md,
  td.visible-xs.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-xs.visible-lg {
    display: block !important;
  }
  table.visible-xs.visible-lg {
    display: table;
  }
  tr.visible-xs.visible-lg {
    display: table-row !important;
  }
  th.visible-xs.visible-lg,
  td.visible-xs.visible-lg {
    display: table-cell !important;
  }
}
.visible-sm,
tr.visible-sm,
th.visible-sm,
td.visible-sm {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-sm.visible-xs {
    display: block !important;
  }
  table.visible-sm.visible-xs {
    display: table;
  }
  tr.visible-sm.visible-xs {
    display: table-row !important;
  }
  th.visible-sm.visible-xs,
  td.visible-sm.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-sm.visible-md {
    display: block !important;
  }
  table.visible-sm.visible-md {
    display: table;
  }
  tr.visible-sm.visible-md {
    display: table-row !important;
  }
  th.visible-sm.visible-md,
  td.visible-sm.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-sm.visible-lg {
    display: block !important;
  }
  table.visible-sm.visible-lg {
    display: table;
  }
  tr.visible-sm.visible-lg {
    display: table-row !important;
  }
  th.visible-sm.visible-lg,
  td.visible-sm.visible-lg {
    display: table-cell !important;
  }
}
.visible-md,
tr.visible-md,
th.visible-md,
td.visible-md {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-md.visible-xs {
    display: block !important;
  }
  table.visible-md.visible-xs {
    display: table;
  }
  tr.visible-md.visible-xs {
    display: table-row !important;
  }
  th.visible-md.visible-xs,
  td.visible-md.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-md.visible-sm {
    display: block !important;
  }
  table.visible-md.visible-sm {
    display: table;
  }
  tr.visible-md.visible-sm {
    display: table-row !important;
  }
  th.visible-md.visible-sm,
  td.visible-md.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-md.visible-lg {
    display: block !important;
  }
  table.visible-md.visible-lg {
    display: table;
  }
  tr.visible-md.visible-lg {
    display: table-row !important;
  }
  th.visible-md.visible-lg,
  td.visible-md.visible-lg {
    display: table-cell !important;
  }
}
.visible-lg,
tr.visible-lg,
th.visible-lg,
td.visible-lg {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-lg.visible-xs {
    display: block !important;
  }
  table.visible-lg.visible-xs {
    display: table;
  }
  tr.visible-lg.visible-xs {
    display: table-row !important;
  }
  th.visible-lg.visible-xs,
  td.visible-lg.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-lg.visible-sm {
    display: block !important;
  }
  table.visible-lg.visible-sm {
    display: table;
  }
  tr.visible-lg.visible-sm {
    display: table-row !important;
  }
  th.visible-lg.visible-sm,
  td.visible-lg.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-lg.visible-md {
    display: block !important;
  }
  table.visible-lg.visible-md {
    display: table;
  }
  tr.visible-lg.visible-md {
    display: table-row !important;
  }
  th.visible-lg.visible-md,
  td.visible-lg.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
.hidden-xs {
  display: block !important;
}
table.hidden-xs {
  display: table;
}
tr.hidden-xs {
  display: table-row !important;
}
th.hidden-xs,
td.hidden-xs {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-xs,
  tr.hidden-xs,
  th.hidden-xs,
  td.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-xs.hidden-sm,
  tr.hidden-xs.hidden-sm,
  th.hidden-xs.hidden-sm,
  td.hidden-xs.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-xs.hidden-md,
  tr.hidden-xs.hidden-md,
  th.hidden-xs.hidden-md,
  td.hidden-xs.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xs.hidden-lg,
  tr.hidden-xs.hidden-lg,
  th.hidden-xs.hidden-lg,
  td.hidden-xs.hidden-lg {
    display: none !important;
  }
}
.hidden-sm {
  display: block !important;
}
table.hidden-sm {
  display: table;
}
tr.hidden-sm {
  display: table-row !important;
}
th.hidden-sm,
td.hidden-sm {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-sm.hidden-xs,
  tr.hidden-sm.hidden-xs,
  th.hidden-sm.hidden-xs,
  td.hidden-sm.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm,
  tr.hidden-sm,
  th.hidden-sm,
  td.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-sm.hidden-md,
  tr.hidden-sm.hidden-md,
  th.hidden-sm.hidden-md,
  td.hidden-sm.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-sm.hidden-lg,
  tr.hidden-sm.hidden-lg,
  th.hidden-sm.hidden-lg,
  td.hidden-sm.hidden-lg {
    display: none !important;
  }
}
.hidden-md {
  display: block !important;
}
table.hidden-md {
  display: table;
}
tr.hidden-md {
  display: table-row !important;
}
th.hidden-md,
td.hidden-md {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-md.hidden-xs,
  tr.hidden-md.hidden-xs,
  th.hidden-md.hidden-xs,
  td.hidden-md.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md.hidden-sm,
  tr.hidden-md.hidden-sm,
  th.hidden-md.hidden-sm,
  td.hidden-md.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md,
  tr.hidden-md,
  th.hidden-md,
  td.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-md.hidden-lg,
  tr.hidden-md.hidden-lg,
  th.hidden-md.hidden-lg,
  td.hidden-md.hidden-lg {
    display: none !important;
  }
}
.hidden-lg {
  display: block !important;
}
table.hidden-lg {
  display: table;
}
tr.hidden-lg {
  display: table-row !important;
}
th.hidden-lg,
td.hidden-lg {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-lg.hidden-xs,
  tr.hidden-lg.hidden-xs,
  th.hidden-lg.hidden-xs,
  td.hidden-lg.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-lg.hidden-sm,
  tr.hidden-lg.hidden-sm,
  th.hidden-lg.hidden-sm,
  td.hidden-lg.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg.hidden-md,
  tr.hidden-lg.hidden-md,
  th.hidden-lg.hidden-md,
  td.hidden-lg.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg,
  tr.hidden-lg,
  th.hidden-lg,
  td.hidden-lg {
    display: none !important;
  }
}
.visible-print,
tr.visible-print,
th.visible-print,
td.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
  .hidden-print,
  tr.hidden-print,
  th.hidden-print,
  td.hidden-print {
    display: none !important;
  }
}

/*
** Base CSS
**/
/* begin Headings, body, etc */
html, body, p{
  line-height: 1.5em;
}
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  color: #818080;
  background-color: #000000;
}
a {
  color: #000000;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #3db0c1;
  text-decoration: none;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small{
  color: #818080;
}
h1,
.h1 {
  font-size: 26px;
  color: #3db0c1;
  font-weight: normal;
}
h2,
.h2 {
  font-size: 26px;
  color: #3db0c1;
  font-weight: normal;
}
h3,
.h3 {
  font-size: 20px;
  color: #000000;
  font-weight: normal;
}
h4,
.h4 {
  font-size: 16px;
  color: #000000;
  font-weight: normal;
}
h5,
.h5 {
  font-size: 12px;
  color: #000000;
  font-weight: normal;
}
h6,
.h6 {
  font-size: 11px;
  color: #000000;
  font-weight: normal;
}
blockquote small {
  color: #818080;
}
.alert{
  border-radius: 0;
}
.alert-success {
  background-color: #9abf73;
  border-color: #9abf73;
  color: #f2f6ec;
}
.alert-danger{
  background-color: #f55856;
  border-color: #f55856;
  color: #fff0f0;
}
/* end Headings, body, etc */

/* begin Tables */
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  border-top-color: #d9d9d9;
}
.table > thead > tr > th {
  border-bottom-color: #d9d9d9;
}
table thead th,
table thead td{
  background-color: #f1f1f1;
  color: #000000;
}
.table > tbody + tbody {
  border-top-color: #d9d9d9;
}
.table .table {
  background-color: #ffffff;
}
.table-bordered {
  border-color: #d9d9d9;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border-color: #d9d9d9;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f1f1f1;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #fafafa;
}
/* end Tables */

/* begin Forms */
.form-control {
  display: block;
  width: 100%;
  height: 26px;
  padding: 3px 12px;
  font-size: 11px;
  line-height: 1.428571429;
  color: #818080;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  margin-bottom: 3px;
}
.form-control:focus {
  border-color: #818080;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-control:-moz-placeholder {
  color: #818080;
}
.form-control::-moz-placeholder {
  color: #818080;
}
.form-control:-ms-input-placeholder {
  color: #818080;
}
.form-control::-webkit-input-placeholder {
  color: #818080;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #fff0f0;
}
.has-error .form-control {
  border-color: #f55856;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-error .form-control:focus {
  border-color: #f55856;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #f2f6ec;
}
.has-success .form-control {
  border-color: #9abf73;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-success .form-control:focus {
  border-color: #9abf73;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* end Forms */
/*
** end Base CSS
**/

/*
** begin Plugins
**/
/* begin Tooltips*/
.tooltip-inner {
  max-width: 200px;
  padding: 6px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #202020;
  font-size: 10px;
  border-radius: 0;
}
.tooltip.top .tooltip-arrow {
  border-top-color: #202020;
}
.tooltip.top-left .tooltip-arrow {
  border-top-color: #202020;
}
.tooltip.top-right .tooltip-arrow {
  border-top-color: #202020;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #202020;
}
.tooltip.left .tooltip-arrow {
  border-left-color: #202020;
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #202020;
}
.tooltip.bottom-left .tooltip-arrow {
  border-bottom-color: #202020;
}
.tooltip.bottom-right .tooltip-arrow {
  border-bottom-color: #202020;
}

/* end Tooltips*/
/* begin Dropdown */
.dropdown-menu {
  background-color: #000000;
  border: 1px solid #d9d9d9;
  color: #818080;
}
.dropdown-menu:before{
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #d9d9d9;
  position: absolute;
  top: -7px;
  left: 9px;
}
.dropdown-menu:after{
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #000000;
  position: absolute;
  top: -6px;
  left: 10px;
}
.dropdown, 
.dropdown-toggle{
  position: relative;
}
.dropdown .sub-dropdown,
.dropdown-toggle .sub-dropdown,
.dropdown .sub-dropdown1,
.dropdown-toggle .sub-dropdown1{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.dropdown .sub-dropdown,
.dropdown-toggle .sub-dropdown{
  padding-bottom: 20px;
  z-index: 1;
  cursor: default;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.dropdown .sub-dropdown1,
.dropdown-toggle .sub-dropdown1{
  z-index: 2;
  cursor: pointer;
}
.open>.dropdown-menu{
  display: block!important;
}
/* end Dropdown */
/*
** end Plugins
**/

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.24
*/

.owl-theme .owl-controls{
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons > div{
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;/*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);/*IE7 fix*/
  opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons > div:hover{
  filter: Alpha(Opacity=100);/*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
  display: inline-block;
  zoom: 1;
  *display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);/*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
  filter: Alpha(Opacity=100);/*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
  min-height: 150px;
  background: url(//cdn.shopify.com/s/files/1/0322/2265/t/4/assets/loader.gif?94281) no-repeat center center
}

/* 
* 	Core Owl Carousel CSS File
*	v1.24
*/

/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel{
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item{
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
  cursor:url(//cdn.shopify.com/s/files/1/0322/2265/t/4/assets/grabbing.png?94281) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility:    hidden;
  -ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/* CSS3 Transitions */

.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x : 50%;
  -webkit-perspective-origin-y : 50%;
  -moz-perspective : 1200px;
  -moz-perspective-origin-x : 50%;
  -moz-perspective-origin-y : 50%;
  perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}


/*!
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('fontawesome-webfont.eot?v=4.0.3');src:url('fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'),url('fontawesome-webfont.woff?v=4.0.3') format('woff'),url('fontawesome-webfont.ttf?v=4.0.3') format('truetype'),url('fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.2857142857142858em;text-align:center}.fa-ul{padding-left:0;margin-left:2.142857142857143em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;top:.14285714285714285em;text-align:center}.fa-li.fa-lg{left:-1.8571428571428572em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);-webkit-transform:scale(1,-1);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}
.fa-strikethrough:before{content:"\f0cc"}
.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-asc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-desc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-reply-all:before{content:"\f122"}.fa-mail-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}


.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.responsive-slider {
  width: 100%;
  position: relative;
}
.responsive-slider .touch-surface {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-slider .slides {
  position: relative;
  overflow: hidden;
}
.responsive-slider .slides ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  font-size: 0;
}
.responsive-slider .slides ul li {
  display: inline-block;
  max-width: 100%;
}
.responsive-slider .slides ul li .slide-body {
  display: inline-block;
  position: relative;
  max-width: 100%;
  font-size: 14px;
}
.responsive-slider .slides ul li .slide-body img {
  max-width: 100%;
}
.responsive-slider .slides ul li .slide-body .caption {
  position: absolute;
  color: #fff;
  text-shadow: 0px 1px 0px #000000;
}
.responsive-slider .slides ul li .slide-body .caption.header {
  top: 28%;
  left: 8%;
}
.responsive-slider .slides ul li .slide-body .caption.header h2 {
  font-size: 40px;
}
.responsive-slider .slides ul li .slide-body .caption.header h2 i {
  font-size: 35px;
}
@media (min-width: 481px) and (max-width: 767px) {
  .responsive-slider .slides ul li .slide-body .caption.header h2 {
    font-size: 25px;
  }
  .responsive-slider .slides ul li .slide-body .caption.header h2 i {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .responsive-slider .slides ul li .slide-body .caption.header h2 {
    font-size: 16px;
  }
  .responsive-slider .slides ul li .slide-body .caption.header h2 i {
    font-size: 14px;
  }
}
.responsive-slider .slides ul li .slide-body .caption.sub {
  bottom: -8px;
  right: -20px;
  font-weight: bold;
}
@media (min-width: 481px) and (max-width: 767px) {
  .responsive-slider .slides ul li .slide-body .caption.sub {
    font-size: 11px;
    bottom: 0px;
    right: -10px;
  }
}
@media (max-width: 480px) {
  .responsive-slider .slides ul li .slide-body .caption.sub {
    font-size: 10px;
    bottom: 5px;
    right: 0;
  }
}
.responsive-slider .slides ul li .slide-body .caption.img-html5 {
  top: 13%;
  right: 8%;
  width: 30%;
}
.responsive-slider .slides ul li .slide-body .caption.img-html5 img {
  max-width: 100%;
}
.responsive-slider .slides ul li .slide-body .caption.img-css3 {
  top: 57%;
  right: 12%;
  width: 10%;
}
.responsive-slider .slides ul li .slide-body .caption.img-css3 img {
  max-width: 100%;
}
.responsive-slider .slides ul li .slide-body .caption.img-bootstrap {
  top: 48%;
  right: 12%;
  width: 11%;
}
.responsive-slider .slides ul li .slide-body .caption.img-bootstrap img {
  max-width: 100%;
}
.responsive-slider .slides ul li .slide-body .caption.img-twitter {
  top: 19%;
  right: 12%;
  width: 11%;
}
.responsive-slider .slides ul li .slide-body .caption.img-twitter img {
  max-width: 100%;
}
.responsive-slider .slides ul li .slide-body .caption.img-jquery {
  top: 66%;
  right: 12%;
  width: 33%;
}
.responsive-slider .slides ul li .slide-body .caption.img-jquery img {
  max-width: 100%;
}
.responsive-slider .slider-control {
  position: absolute;
  font-size: 40px;
  color: #000;
  top: 40%;
  background-color: #fff;
  padding: 10px 10px 15px 10px;
}
.responsive-slider .slider-control.left {
  left: 0;
  padding-left: 0;
  -webkit-border-radius: 0px 6px 6px 0px;
  border-radius: 0px 6px 6px 0px;
}
.responsive-slider .slider-control.left:hover {
  text-decoration: none;
  padding-left: 10px;
}
.responsive-slider .slider-control.right {
  right: 0;
  padding-right: 0;
  -webkit-border-radius: 6px 0px 0px 6px;
  border-radius: 6px 0px 0px 6px;
}
.responsive-slider .slider-control.right:hover {
  text-decoration: none;
  padding-right: 10px;
}
@media (max-width: 480px) {
  .responsive-slider .slider-control.left,
  .responsive-slider .slider-control.right {
    display: none;
  }
}
.responsive-slider .pages {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.responsive-slider .pages .page {
  display: inline-block;
  color: transparent;
  width: 5px;
  height: 5px;
  border: 3px solid #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.responsive-slider .pages .page.active {
  opacity: 1;
  filter: alpha(opacity=100);
}




/*
** HTML, Body settings
*/
/*---------------*/
/*----------------------*/

  body{ background: url(../img/bg_image.png) no-repeat center top; }
  
  
::selection{ 
  background-color: #3db0c1;
  color: #ffffff;
}
::-moz-selection{
  background-color: #3db0c1;
  color: #ffffff;
}

html{
  background: #050405 url(../img/bg.png) repeat ;
}
body,
label,
button,
select{
  color: #818080;
  font-size: 11px;
}
label.control-label{
  cursor: default;
  margin-bottom: 6px;
  display: block;  
  font-size: 11px;  
  text-transform: none;
  font-weight: 600;
}
button, input, select, textarea{
  font-size: 11px;
  font-family: 'Roboto', sans-serif;
}
a, a:focus, a:hover, a:active{
  text-decoration: none;
}
a:focus, select:focus, input:focus, button:focus{
  outline: none;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Open Sans', sans-serif;      
  font-weight: 700;
}
h1{
  font-size: 26px;
  color: #3db0c1;
}
h2{
  font-size: 26px;
  color: #3db0c1;
}
h3{
  font-size: 20px;
  color: #000000;
}
h4{
  font-size: 16px;
  color: #000000;
}
h5{
  font-size: 12px;
  color: #000000;
}
h6{
  font-size: 11px;
  color: #000000;
}

hr{
  margin: 5px 0;
  color: #a1d4d3;
}
p {
  margin: 0 0 10px;
}
ul, ol{
  padding-left: 0;
}
ol li, ul li{
  padding: 4px 0;
  list-style-position: inside;
}
ul ul, ul ol, ol ol, ol ul {
  color: #818080;
  padding-left: 10px;
}
dl{
  margin-top: 0;
  margin-bottom: 0;
}
dl dt{
  font-family: 'Open Sans', sans-serif;
  text-transform: none;
  color: #000000;
  margin-top: 5px;
  margin-bottom: 6px;
}
dl dd{
  margin-bottom: 20px;
  margin-left: 0;
}
table{
  width: 100%;  
}
table thead th,
table thead td{
  text-align: center;
  padding: 9px 20px 9px;
  font-family: 'Open Sans', sans-serif;
  text-transform: none;
  font-weight: 600;  
  font-size:11px;
  background-color: #f1f1f1;
  border: 1px solid #d9d9d9;
}
table tbody td,
table tfoot td{
  text-align: center; 	  
  line-height: 20px;
  border: 1px solid #d9d9d9;
  padding: 10px 20px;
  vertical-align: middle;
}
#customer_orders table td a,
table tbody td a,
table tbody td span{
  color: #000000;
}
.cart-items .title{
  vertical-align: top;
}

address{
  margin-bottom: 20px;
}
address .address-group{
  padding-left: 10px;
  font-family: 'Open Sans', sans-serif;
  max-width: 250px;
}
address .icon-user, address .icon-home, address .icon-phone,
address .author{
  font-size: 16px;
  color: #000000;  
  font-weight: 600;
}
address .email{
  color: #3db0c1;
  font-size: 12px;
}
address .info,
address .address,
address .phone{
  display: table;
  font-size: 12px;    
  width: 100%;
  margin-bottom: 10px;
}
address .info .fa-user,
address .address .fa-home,
address .phone .fa-phone{
  	padding: 12px 13px;
  	border: 2px solid #000000;
  	color: #000000; 
  	display: block;
  	float: left;
}
address .address .fa-home{
  	padding: 11px 12px;
}
address .phone{
  	padding-bottom: 0;
  	padding-bottom: 0;
}
address .icon-user, address .icon-home, address .icon-phone, address .address-group{
    display: table-cell;
    vertical-align: middle;
    float: left;
    max-width: 200px;
}
address .icon-user, address .icon-home, address .icon-phone{
  vertical-align: top;
}
address .email, address .city1, address .zip, address .phone-number{
  display: block;
}
form#address_form_new{
  margin: 0 20px;
}
.customer_address{
  border: 1px solid #d9d9d9; 
  padding: 15px 0px 20px; 
  border-radius: 3px;
  margin-top: 25px;    
  -webkit-box-shadow: 1px 1px 9px 1px rgba(241,241,241,1);
  -moz-box-shadow: 1px 1px 9px 1px rgba(241,241,241,1);
  box-shadow: 1px 1px 9px 1px rgba(241,241,241,1);

}
.customer_address address .phone{
  border-bottom: 0;
}
blockquote {
  font-style: italic;
  background: #f1f1f1 url(../img/icons/quote.png) no-repeat 20px center;
  /*padding: 29px 29px 30px 80px;*/
  border: none;
  color: #000000;
  opacity: 0.4;
  filter: alpha(opacity=40);
}
blockquote p{
    font-size: 11px;
    font-weight: normal;
    margin-bottom: 15px;
    line-height: 1.3em;
}
.action_edit, .action_delete{
    position: relative;
    display: inline-block;
    margin-right: 7px;
}
.action_edit a, .action_delete a{
  vertical-align: top;
}
.status_authorized{
  text-transform: capitalize;
  color: #2e8900;
}
.status_unauthorized{
  text-transform: capitalize;
  color: #000000;
}
.status_fulfilled{
  text-transform: capitalize;
  color: #666666;
}
.status_unfulfilled{
  text-transform: capitalize;
  color: #d40107;
}

hr{
  border: 0;
  border-top: 1px solid ;
}
.wrap-table {
  overflow-y: hidden;
  overflow-x: auto;
  clear: both;
  margin-bottom: 5px;
}

/*
** Input settings
*/
select {
  width: 134px;
  background-color: #ffffff;
  background-image: none;
  filter: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid #e6e6e6;
  outline: none;
  height: 25px;
  line-height: 20px;  
  padding-top: 5px;  
  box-shadow: inset 0px 0px 5px -1px #e6e6e6;
  -webkit-box-shadow: inset 0px 0px 5px -1px #e6e6e6;
  -moz-box-shadow: inset 0px 0px 5px -2px #e6e6e6;
}
select:focus{
  outline-offset: -2px;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  border-color: #818080;
  outline: 0 !important;
}
/*
** Button settings
*/
.btn{
  filter: none;
  cursor: pointer;
  outline: none;
  border-radius: 4px;
  margin-bottom: 3px;    
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 4.5px;
  padding-bottom:4.5px;
  
  font-weight: bold;
  text-transform: uppercase;
  line-height: normal;
  text-align: center;
  
  font-family: 'Open Sans', sans-serif;     
  font-size: 10px;    
  border: 1px solid #d6d6d6;
    
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f9f9f9 50%, #f2f2f2 51%, #ffffff 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff), color-stop(50%, #f9f9f9), color-stop(51%, #f2f2f2), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #ffffff 0%, #f9f9f9 50%, #f2f2f2 51%, #ffffff 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f9f9f9 50%, #f2f2f2 51%, #ffffff 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f9f9f9 50%, #f2f2f2 51%, #ffffff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 50%, #f2f2f2 51%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );

  
  
  
}
.btn a, a.btn{
   color: #787878;
}
.small.btn{
  padding-top: 3px;
  padding-bottom: 3px;
}

.btn:hover,
.btn:focus,
.btn:active{
  background: #47b6c2;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47b6c2', endColorstr='#0065AB', GradientType=0);
  color: #ffffff;
  border-color: #0065AB;
  
  outline: none;
}

.touch .add-to-cart:hover,
.touch .add-to-cart:focus,
.touch .add-to-cart:active{
  background: #ececec;
  color: #787878;
  border-color: #d6d6d6;
}

.btn.disabled:hover, .btn[disabled]:hover {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #333333;
  background-color: #e6e6e6;
  border-color: #d6d6d6;
}

.btn-1{
  background: #47b6c2;  
  background: -webkit-gradient(linear, 0 0, 0 bottom, from(#47b6c2), to(#1f8e9d));
  background: -webkit-linear-gradient(#47b6c2, #1f8e9d);
  background: -moz-linear-gradient(#47b6c2, #1f8e9d);
  background: -ms-linear-gradient(#47b6c2, #1f8e9d);
  background: -o-linear-gradient(#47b6c2, #1f8e9d);
  background: linear-gradient(#47b6c2, #1f8e9d);
  -pie-background: linear-gradient(#47b6c2, #1f8e9d);      
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47b6c2', endColorstr='#47b6c2', GradientType=0 );
  -webkit-box-shadow: inset 0px 1px 0px 0px #6adce3;
  -moz-box-shadow: inset 0px 1px 0px 0px #6adce3;
  box-shadow: inset 0px 1px 0px 0px #6adce3;  
    
  color: #ffffff;
  border: 1px solid #2f99a6;
  font-size: 10px;  
}
.small.btn-1{
  padding-top: 3px;
  padding-bottom: 3px;
}
.btn-1:hover,
.btn-1:focus,
.btn-1:active{
  background: #0065AB;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0065AB', endColorstr='#005152', GradientType=0 );
  color: #ffffff;
  border-color: #005152;  
  -webkit-box-shadow: inset 0px 2px 0px 0px #005152;
  -moz-box-shadow: inset 0px 2px 0px 0px #005152;
  box-shadow: inset 0px 2px 0px 0px #005152;  
  
}

.btn-2{
  background: #47b6c2;  
  background: -webkit-gradient(linear, 0 0, 0 bottom, from(#47b6c2), to(#0065AB));
  background: -webkit-linear-gradient(#47b6c2, #0065AB);
  background: -moz-linear-gradient(#47b6c2, #0065AB);
  background: -ms-linear-gradient(#47b6c2, #0065AB);
  background: -o-linear-gradient(#47b6c2, #0065AB);
  background: linear-gradient(#47b6c2, #0065AB);
  -pie-background: linear-gradient(#47b6c2, #0065AB);     
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47b6c2', endColorstr='#47b6c2', GradientType=0 );
  
  -webkit-box-shadow: inset 0px 1px 0px 0px #47b6c2;
  -moz-box-shadow: inset 0px 1px 0px 0px #47b6c2;
  box-shadow: inset 0px 1px 0px 0px #47b6c2;  
    
  color: #ffffff;
  border: 1px solid #47b6c2;
  font-size: 10px;  
}
.btn-2:hover,
.btn-2:focus,
.btn-2:active{
  background-color: #000000;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );  
  color: #ffffff;
  border-color: #262525;
  -webkit-box-shadow: inset 0px 2px 0px 0px #262525;
  -moz-box-shadow: inset 0px 2px 0px 0px #262525;
  box-shadow: inset 0px 2px 0px 0px #262525;  
}

.btn-3{  
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 50%, #fafafa 51%, #efefef 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff), color-stop(50%, #ffffff), color-stop(51%, #fafafa), color-stop(100%, #efefef));
  background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 50%, #fafafa 51%, #efefef 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #ffffff 50%, #fafafa 51%, #efefef 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #ffffff 50%, #fafafa 51%, #efefef 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #fafafa 51%, #efefef 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef', GradientType=0 );

  color: #777777;
  border-color: #d7dbde;
  font-size: 10px;      
  padding: 4.5px 15px;    
}

.btn-3:hover,
.btn-3:focus,
.btn-3:active{
  background: #131313;
  color: #ffffff;
  border-color: #131313;  
  
  background: #4c4c4c;
  background: -moz-linear-gradient(top, #4c4c4c 0%, #131313 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #4c4c4c), color-stop(100%, #131313));
  background: -webkit-linear-gradient(top, #4c4c4c 0%, #131313 100%);
  background: -o-linear-gradient(top, #4c4c4c 0%, #131313 100%);
  background: -ms-linear-gradient(top, #4c4c4c 0%, #131313 100%);
  background: linear-gradient(to bottom, #4c4c4c 0%, #131313 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313', GradientType=0 );

}

.btn-4{       
  background: #000000;  
  background: -webkit-gradient(linear, 0 0, 0 bottom, from(#000000), to(#000000));
  background: -webkit-linear-gradient(#000000, #000000);
  background: -moz-linear-gradient(#000000, #000000);
  background: -ms-linear-gradient(#000000, #000000);
  background: -o-linear-gradient(#000000, #000000);
  background: linear-gradient(#000000, #000000);
  -pie-background: linear-gradient(#000000, #000000); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
  
  font-size: 10px; 
  color: #ffffff;
  border-color: #262525;
  -webkit-box-shadow: inset 0px 2px 0px 0px #262525;
  -moz-box-shadow: inset 0px 2px 0px 0px #262525;
  box-shadow: inset 0px 2px 0px 0px #262525;  
}

.btn-4:hover,
.btn-4:focus,
.btn-4:active{
  background: #47b6c2;  
  background: -webkit-gradient(linear, 0 0, 0 bottom, from(#47b6c2), to(#0065AB));
  background: -webkit-linear-gradient(#47b6c2, #0065AB);
  background: -moz-linear-gradient(#47b6c2, #0065AB);
  background: -ms-linear-gradient(#47b6c2, #0065AB);
  background: -o-linear-gradient(#47b6c2, #0065AB);
  background: linear-gradient(#47b6c2, #0065AB);
  -pie-background: linear-gradient(#47b6c2, #0065AB);      
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47b6c2', endColorstr='#0065AB', GradientType=0 );
  -webkit-box-shadow: inset 0px 1px 0px 0px #47b6c2;
  -moz-box-shadow: inset 0px 1px 0px 0px #47b6c2;
  box-shadow: inset 0px 1px 0px 0px #47b6c2;  
    
  
}

.btn-5{
  background: #ececec;
  color: #787878;
  border-color: #d6d6d6;
  
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  
  padding: 0;
  width: 34px;
  height: 34px;
}
.active .btn-5,
.btn-5:hover,
.btn-5:focus,
.btn-5:active{
  background-color: #787878;
  color: #ececec;
  border-color: #787878;
}

.mini{
  padding: 0 10px!important;
  min-height: 35px!important;
}
/*
** Title, Heading
*/
.wrapper-title{
  position: relative;
  text-align: center;
  display: block;
  margin-bottom: 15px;
}
#shipping-calculator .wrapper-title,
#checkout-addnote .wrapper-title{
  text-align: left;
}
.login-page .wrapper-title{
  text-align: left;  
}
.wrapper-title span{
  font-size: 11px;
  color: #818080;
}
.reset-page #page-title-login,
.login-page #page-title-login{
  margin-left: 40px;
  font-size: 13px;
  color: #3db0c1;
}
.title-1, .title-2, .title-3, .title-4{
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
}
.title-1{
  color: #ffffff;
  font-size: 26px;
  
  /*border-top: 2px solid #3db0c1;*/
  padding: 12px 0;
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px;
}
.title-1 .sub-title{
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 200px;
  background-color: #2f99a6;
}
.title-1 .content-title{
  display: inline-block;
}
.title-2{
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  
  font-size: 18px;
  color: #000000;
  font-weight: bold;
}
.title-3{  
  font-size: 26px;
  color: #3db0c1;
}
.wrapper-title .title-3{
  display: inline-block;
  background-color: transparent;
  position: relative;
  z-index: 2;
  padding-left: 10px;
  padding-right: 10px;
}
.wrapper-title .line{
  border-top-color: #3db0c1;
  border-top-style: none;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 13px;
}
.title-5{
  font-size: 11px;
  font-family: 'Open Sans', sans-serif;
  margin-top: 10px;
  font-weight: normal;
}
.title-5:hover{
  font-weight: normal;
}
.title-5 i.fa{
  margin: 0 0 0 10px;
  color: #3db0c1;
}

/* Colour */
.color-1{
  color: #46b5c0;
}
.color-2{
  color: #ff6f6f;
}
.color-3{
  color: #efefef;
}
.color-4{
  color: #ffffff;
}

/*
** Background
*/
#content.container,
#content .background{
  background-color: #000000;
}
/*
** Header settings
*/
#top{ 
  color: #969696;
}
#top a{
  text-shadow: none; 
}
#top a:hover,
#top a:focus{
  text-shadow: none;
  color: #fff;
  font-style: normal;  
}
#top #search-submit{
  color: #969696;
}
#top #site-title{
  margin-left: -10px;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  
  
}
#top #site-title:hover{
  color: #a1d4d3;
  text-decoration: none;
}
/*
** Top settings
*/
#top-other{
  height: 30px;
  font-weight: 600;  
  font-size: #969696;
  font-family: 'Open Sans', sans-serif;
  color: #969696;
  background-color: #000000;
  text-transform: uppercase;    
}

#top-other .welcome{
  margin: 6.5px 0;
  padding-left: 0;
  font-weight: bold;
  font-size: 10px;
}
.top-other ul{ 
  margin: 0px 0 0 0;
  font-size: 10px;
}
.top-other ul li span{
  	font-weight: bold;
}
.customer-links{  
  padding: 0;
}
.customer-links li,
.customer-links li span,
.customer-links li a{
  text-transform: uppercase;
}
/*
** Footer settings
*/
#footer, 
#footer label{
  font-size: 12px;
}
#footer a{
  color: #a0a0a0;
  font-style: normal;  
}
.article-extras h5.title a{
  font-weight: bold;
  color: #3db0c1!important;
}
.article-extras h5.title a:hover{
  color: #3db0c1 !important;
}
#footer a:hover,
#footer a:focus{
  color: #3db0c1;
  font-style: normal;  
}
#footer #email-submit{
  color: #a0a0a0;
}
.article-extras h5.title a{
  font-weight: bold;
  color: #3db0c1;
}
.article-extras h5.title a:hover{
  color: #3db0c1;
}
/*
** Sidebar settings
*/
.sidebar{  
  font-size: 11px;
  color: #545054;  
  border-radius: 5px 0 0 5px;  
  padding: 0 20px 17px 20px;
}

.sidebar .sb-title{
  color: #000000;
  background-color: #000000;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;    
  border-bottom: 1px dotted #000000;
  text-transform: normal;
  margin: 0;
  color: #ffffff;  
}
.sidebar .sb-title .fa{
  margin-right: 10px;
  font-size: 18px;
}
.sidebar .sb-content{
  margin-left: 0;
  margin-top: 10px;
}
.sidebar .sb-content .blogs-item .h5 a{
  color: #3db0c1;
  font-size: 12px;
  font-weight: bold;
  padding-left: 0px;
}
.sidebar .sb-content .blogs-item .h5 a:hover{
  color: #3db0c1; 
}
.sidebar a{
  color: #a0a0a0;
  font-style: normal;
  font-weight: normal;
}
.sidebar a:hover,
.sidebar a:focus{
  color: #202020;
  font-style: normal;
  font-weight: bold;
}

/* MISC */
.float-left{
  float: left;
}
.float-right{
  float: right;
}
.float-none{
  float: none;
}
.bold{
  font-weight: bold;
}
.unbold{
  font-weight: normal;
}
.caroufredsel_wrapper{
  margin: 0!important;
}
.caroufredsel_wrapper li.items{
  float:left;
  height: auto!important;
}
.unmargin{
  margin: 0!important;
}
.unmargin-top{
  margin-top: 0!important;
}
.unmargin-bottom{
  margin-bottom: 0!important;
}
.unmargin-left{
  margin-left: 0!important;
}
.unmargin-right{
  margin-right: 0!important;
}
.unpadding{
  padding: 0!important;
}
.unpadding-top{
  padding-top: 0!important;
}
.unpadding-bottom{
  padding-bottom: 0!important;
}
.unpadding-left{
  padding-left: 0!important;
}
.unpadding-right{
  padding-right: 0!important;
}
.unborder{
  border: 0!important;
}
.img-responsive {
  display: inline-block!important;
  height: auto;
  max-width: 100%;
}
.margin-right-10{
  margin-right: 10px;
}
.margin-left-10{
  margin-left: 10px;
}
.mright-1{
  margin-right: 1px;
}
.mleft-1{
  margin-left: 1px;
}
.mright-3{
  margin-right: 3px;
  *margin-right: 3px;
}
.mleft-3{
  margin-left: 3px;
  *margin-left: 3px;
}
.mright-7{
  margin-right: 7px;
}
.table-cell{
  display: table;
}
.table-cell li{
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px;
}
.alert-error, .alert-success{
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 5px 20px 5px 20px;
  margin: 10px 0;
  text-shadow: none;
  
  -webkit-transition:all 0.3s ease-out;
  -moz-transition:all 0.3s ease-out;
  -o-transition:all 0.3s ease-out;
  -ms-transition:all 0.3s ease-out;
  transition:all 0.3s ease-out;
}
.alert .close{
  top: 4px;
}
.opacity_85{
  opacity: 0.85;
  filter: alpha(opacity=85);
}
.opacity_93{
  opacity: 0.93;
  filter: alpha(opacity=93);
}
.header_style{
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
.overlay-content{
  position: fixed;
  background: #000000 url(../img/loader.gif) no-repeat center;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0.9;
}
.uppercase{
  text-transform: uppercase;
}
.pos-relative{
  position: relative;
}
span.btn_down{
  background: url(../img/icons/btn_down.png) no-repeat 0 0;
  width: 40px;
  height: 50px;
  display: block;
  float: left;
  margin-right: 10px;
  
}

/*fix*/
#recover-password{
  margin-left: 15px;
}
#recover-password .login-page .wrapper-title {
	margin-left: 10px;  	
}
#recover-password .wrapper-title .title-3 {
  width: 100%;
  padding: 10px 0;
  display: block;
}
#recover-password .wrapper-title .line{
  top: 33px;
}
#recover-form li{
  padding-left: 0;
}

#recover-form .alert{
  margin-left: 0 !important;
  margin-top: 10px;
}
.has-error label.control-label,
label.control-label {
  color: #000000;
}
.customer-accounts label.control-label{
  color: #fff;
}
#customer-login .wrapper-title{
  margin-left: 10px;
}

/* all placeholder */
input:-moz-placeholder,
textarea:-moz-placeholder {
  font-style: normal;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  font-style: normal;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-style: normal;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
  font-style: normal;
}
/*
** General
*/
a{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a:focus,
a:active{
  background-color: transparent;
}
form{
  margin: 0;
}
.alert ul{
  margin: 0;
  list-style: none;
}
.icons{
  background-image: url(../img/icons/payment.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
  display: inline-block;
}
.control-container{
  padding: 10px 18px;
}
.control-group{ 
  padding: 0;
  margin: 0;
  position: relative;
}
.control-group.first{
  margin-top: 40px;
}
.control-group.last{
  margin-top: 20px;
}
.control-group.last1{
  margin-top: 15px;
}
.control-group.actions{
  margin-top: 5px;
}
.control-nav{
  position: absolute;
  top: 0;
  right: 0;
}
.others-bottom{
  margin-top: 10px;
}
.input-mini{
  width: 40px;
}
.input-medium{
  width: 170px;
}
.input-xlarge{
  width: 375px;
}
.navbar .hoverMenuWrapper > li > a > .bg-down,
.navbar .hoverMenuWrapper > li > a > .bg-up,
.navbar .hoverMenuWrapper > li > a > h4,
.list-styled li,
.list-styled li a,
.btn,
.btn:hover,
.btn:focus,
.btn:active,
#header-search,
.currency .currency_wrapper{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.btn-large{
  font-size: 13px;
}
.btn-6{
  background-image: none;
  filter: none;
  min-height: 32px;
  padding: 0 18px;
  cursor: pointer;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0!important;
  -moz-border-radius: 0!important;
  border-radius: 0!important;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  text-shadow: none;
  text-align: left;
  
  background: #000000;
  color: #818080;
  border: 1px solid #a1d4d3;
  
  box-shadow: inset 0px 0px 5px -1px #a1d4d3;
  -webkit-box-shadow: inset 0px 0px 5px -1px #a1d4d3;
  -moz-box-shadow: inset 0px 0px 5px -2px #a1d4d3;
}
.btn-6 i,
.custom-style-select-box-inner i{
  color: #000000;    
  float: right;
  margin-right: -10px;
  margin-top: 5px;
  font-size: 12px;
}
.custom-style-select-box{
  background-image: none;
  filter: none;
  min-height: 25px;
  padding: 0 18px 0 5px;
  cursor: pointer;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0!important;
  -moz-border-radius: 0!important;
  border-radius: 0!important;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  text-shadow: none;
  text-align: left;
  
  background: #ffffff;
  color: #818080;
  border: 1px solid #eeeeee;    
}
.custom-style-select-box-inner{
  width: auto!important;
  max-height: 20px;
}
.notice{
  opacity: 0.7;
  filter: alpha(opacity=70);
  margin: 8px 0 15px;
}
.input-1{
  width: 57px;
}
input::-ms-clear{ 
  display: none; 
}
/*
** Header
*/
/* General*/
#site-title{
  margin-top: 0;
}
.navbar .btn-navbar .icon-bar,
.btn-navbar,
.dropdown-menu,
.search-form input[type="text"],
.search-form input[type="search"]{
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.search-form{
  border: 1px solid #e6e6e6;
  max-width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.search-form input[type="text"],
.search-form input[type="search"]{
  margin: 0;
  float: left;
  border: 0;
  width: 280px;
  line-height: 20px;
  outline: none;
  min-height: 34px;
}
.dropdown-menu:before{
  border-bottom: 0;
}
#loginBox #customer_login{
  margin: 0;
}
#loginBox{ 
  padding: 0; 
  text-transform: none;
}
#loginBox, 
#loginBox .btn{
  margin: 0;
}
#accounts .welcome{
  padding-right: 7px;
}
#accounts a,
#accounts #loginButton{
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#top .customer-links{
  padding-left: 0;
  padding-right: 0;
  padding-top: 0px;
  font-weight: bold;
}

#top .top-other .hidden-phone .pos-relative{
  margin-bottom: 20px;
}
#top .top-other{
  margin-top: 0;
}
.top-other ul li:last-child,
.top-other {
  padding-right: 0px;
}
#accounts .login:hover a,
#accounts .login:hover #loginButton {
  text-decoration: none;
  color: #3db0c1;
}
#accounts .login a.register{
  color: #ffffff;
}
#accounts .login a.register:hover{
  color:#3db0c1;
}
#accounts li{
  padding-right: 0 !important;
}
#top{  
  z-index: 110;  
  position: relative;
}

#top .shadow{
  -webkit-box-shadow: 0px 0px 7px 0px #000000;
  -moz-box-shadow: 0px 0px 7px 0px #000000;
  box-shadow: 0px 0px 7px 0px #000000;
  background-color: #000000;
  
  position: absolute;
  width: 100%;
  height: 7px;
  bottom: 0;
  z-index: 1;
}
#loginBox.dropdown-menu{
  border: 0;
  width: 300px;
  text-transform: none;
  left: auto;
  right: 0;  
  z-index: 99999;    
  padding-top: 20px;
  background-color: rgba(0, 0, 0, 0.95);    
}
#loginBox .control-container {
  padding: 5px 14px 25px;
}
.customer-accounts li.last1{
  margin-bottom: 5px;
}

#bodyBox .sb-title{
  padding: 0 14px;
  color: #3db0c1;
}
.navbar .nav .dropdown-menu,
#umbrella .dropdown-menu{
  margin: 0;
  border: 1px solid transparent;
  border-top: 3px solid transparent !important;   
  left: -9px;
  display: none;  
}
.navbar .btn-navbar{
  background: transparent;
  color: #969696;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
.dropdown .sub-dropdown, .dropdown-toggle .sub-dropdown{
  padding-bottom: 3px;
}
.navbar .btn-navbar i,
.icon-idea{
  font-size: 20px;
}
.customer-links,
.currencies-switcher,
.header-search{
  vertical-align: middle;
}
.currencies-switcher,
.header-search{
  position: relative;
}
.currencies.dropdown-menu{
  padding-top: 10px;
  right: 0;
  left: auto;
  min-width: 70px;
}
.currencies.dropdown-menu:before {
  right: 9px;
  left: auto;
}
.currencies.dropdown-menu:after {
  right: 10px;
  left: auto;
}
.currencies.dropdown-menu li{
  padding: 0;
  margin-top: 1px;
}
.customer.dropdown-menu{
  padding-top: 10px;
  min-width: 100px;
  text-transform: uppercase;
  font-weight: bold;
}
.customer.dropdown-menu li{
  padding: 0;
  margin-top: 1px;
  text-align: left;
}
#top .customer-links{
  margin-right: 0;
}
#top .currencies-switcher{
  margin-right: 10px;
}
#top .customer-links,
#top .currencies-switcher{ 
  border-right: 1px dotted #4e3a34; 
  padding: 0 10px 0 0;
}
#top .currencies-switcher{
  border-left: 1px dotted #4e3a34;
  padding: 0 10px 0 10px;
}
#top .currencies.dropdown-menu li a,
.currencies.dropdown-menu li a,
#top .customer.dropdown-menu li a,
.customer.dropdown-menu li a{
  color: #818080;
  font-size: 10px;
}
#top .currencies.dropdown-menu li > a:hover,
.currencies.dropdown-menu li > a:hover,
#top .currencies.dropdown-menu .active > a, 
.currencies.dropdown-menu .active > a,
#top .currencies.dropdown-menu .active > a:hover,
.currencies.dropdown-menu .active > a:hover,
#top .customer.dropdown-menu li > a:hover,
.customer.dropdown-menu li > a:hover,
#top .customer.dropdown-menu .active > a, 
.customer.dropdown-menu .active > a,
#top .customer.dropdown-menu .active > a:hover,
.customer.dropdown-menu .active > a:hover{
  color: #3db0c1;
  background-image: none;
  background-color: #eee;
  filter: none;
}
.top-other ul li{
  line-height: 20px;
}
/*.notouch #umbrella .cart-link .dropdown-toggle:hover + #cart-info, 
.notouch #cart-info:hover{
display: block;
}
*/

/* Header on mobile */
.is-mobile{
  text-align: right;
}
.is-mobile > ul{
  margin: 0;
}
.is-mobile > ul > li{
  vertical-align: middle;
  position: relative;
  top: 0;
  padding: 15px 20px;
  border-left: 1px solid #4d4d4d;
}
.is-mobile > ul > li:first-child{
  padding-left: 0;
  border-left: none;
}
.is-mobile .currencies.dropdown-menu{
  top: 28px;
  left: -21px;
}
.is-mobile .customer.dropdown-menu{
  top: 28px;
  left: -10px;
}
.is-mobile .btn-navbar{
  padding: 0!important;
}
.is-mobile .btn-group{
  position: relative;
  font-size: 12px;
  margin: 0;
}
.is-mobile .currency .currency_wrapper,
.is-mobile .currency .currency_wrapper:hover{
  border-color: #4d4d4d;
  color: #f00909;
}
.is-mobile .is-mobile-login i,
.is-mobile .is-mobile-search i,
.is-mobile .is-mobile-cart i,
.is-mobile .is-mobile-currency a{
  color: #f00909;
  cursor: pointer;
}
.is-mobile .is-mobile-login i,
.is-mobile .is-mobile-search i,
.is-mobile .is-mobile-cart i{
  font-size: 18px;
}
.is-mobile .is-mobile-search{
  position: static;
}
.is-mobile .is-mobile-search .search-form{
  display: none;
  position: absolute;
  top: 5px;
  width: 90%;
  left: 5%;
  z-index: 10;
  height: 38px;
}
.is-mobile .is-mobile-search .search-form input{
  max-width: 100%;
}
.is-mobile .is-mobile-currency .currency_wrapper{
  border: none;
  padding: 0;
}
.is-mobile .is-mobile-login .dropdown-toggle{
  line-height: 1.5em;
}

/* Logo */
#top #site-title{
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 20px;
  overflow: hidden;
}

/* Currency */
.currency{
  font-size: 10px;
}
.currency .currency_code{
  font-weight: bold;
}
.currency .icon-caret-down{
  font-size: 12px;
  color: #44cfe4;
}

#top .currencies-switcher{
  margin-left: 26px;
}
#top .currency-plain .heading{
  font-weight: bold;
}
#top .currency-plain a:hover,
#top .currency-plain .active a{
  color: #ffffff;
}
#top .currency-plain .active a{
  font-weight: bold;
  cursor: default;
}
#top .currency-plain,
#top .currency-plain a{
  color: #818080;
  text-transform: uppercase;
  font-weight: normal;
}
#top .currency-plain .heading{
  padding-right: 5px;
}
#top .currency-plain .currencies li{
  padding-left: 0;
}
#top .currency-plain .currencies li:last-child{
  padding-right: 0;
}

/* Dropdown menu */
#navigation .site-title{
  display: none;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
}
#navigation .site-title:hover{
  color: #a1d4d3;
  text-decoration: none;
}
#navigation.on .site-title{
  display: inline-block;
  max-width: 100%;
}
#navigation.on .site-title img{
  max-width: 80%;
}
#navigation.on{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #000;
  border-bottom: 3px solid #000000;
  -webkit-box-shadow: 0px 0px 7px 0px #000000;
  -moz-box-shadow: 0px 0px 7px 0px #000000;
  box-shadow: 0px 0px 7px 0px #000000;
}
#navigation.on .navigation{
  border-bottom: 0;
}
#navigation.on .navbar{
  display: inline-block;
  margin-left: 50px;
}
#navigation.on .navbar .nav{
  margin-top: 0;
  
}
#navigation.on .navbar .nav > li > a{
  padding: 10px 15px;
}
#navigation.on .navbar .hoverMenuWrapper > li > a > h4{
  font-size: 12px;
}

#navigation .navigation{
  border-bottom: 3px solid #000000;
}
.navbar{
  margin: 0;
  z-index: 10000;
}
.navbar .nav{
  text-align: left;
  float: none;
  margin-right: 0;
  border-radius: 7px 7px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -weblit-border-radius: 5px 5px 0 0;
	 
  
 /* Shatakshi Added 22 april*/
  border-top: 1px solid #005152;  
	  border-bottom: 3px solid #005152;
  background: #0065AB; /* Old browsers */
  background: -moz-linear-gradient(top, #0065AB 0%, #189D98 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0065AB), color-stop(100%,#189D98)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #0065AB 0%,#189D98 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #0065AB 0%,#189D98 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #0065AB 0%,#189D98 100%); /* IE10+ */
  background: linear-gradient(to bottom, #0065AB 0%,#189D98 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0065AB', endColorstr='#0065AB',GradientType=0 ); /* IE6-9 */
 
  
}
.navbar .nav > li{
  padding: 0;
  display: block;
  float: left;  
}
.navbar .nav > li:last-child a{
  border-radius: 0 5px 0 0 !important;
}
.navbar .nav > li:first-child a,
.navbar .nav > li:first-child a:hover,
.navbar .nav > li:first-child a:focus{
  border-radius: 5px 0 0 0;
}
.navbar .nav > li a:hover,
.navbar .nav > li a:hover{
  background-color: #000000;
}
.navbar .nav > li.active{
  background-color: #000000;
  position: relative;
}
.navbar .nav > li.active > i{
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: -5px;
  font-size: 15px;
  color: #ffffff;
}
.navbar .nav > li.active > a > h4{
  color: #ffffff;
}
.navbar .nav > li:first-child{
  margin-left: 0;
}
.navbar .nav > li:last-child{
  margin-right: 0;
}
.navbar .nav > li > .dropdown-menu{
  min-width: 230px;
  z-index: 1;  
  left: 0;
}
#navigation.on .navbar .nav > li > .dropdown-menu{
  margin-top: 3px;
}

.navbar .nav > li > .dropdown-menu:before,
.navbar .nav > li > .dropdown-menu:after{
  border: none;
  display: none;
}
.navbar .nav > li > .dropdown-menu .icon-caret-up{
  display: none;
}
.navbar .nav > li > a{
  position: relative;
  padding: 8px 20px;
  text-shadow: none;
  font-weight: bold !important;
  color: #ffffff;
  font-size: 14px;  
}
.navbar .nav > li.last{
  float: right;  
}
.navbar .nav > li.last a{
  font-weight: bold;
}
.navbar .nav > li > a:after{
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;      
  content: " ";  
}
.navbar .nav > li > a:after:hover{
  background-color: #621705;
}

.navbar .nav > li:hover > a,
.navbar .nav > li.active > a{  
/* Shatakshi Added 22 april */

  background: #0065AB; /* Old browsers */
  background: -moz-linear-gradient(top, #0065AB 0%, #189D98 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0065AB), color-stop(100%,#189D98)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #0065AB 0%,#189D98 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #0065AB 0%,#189D98 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #0065AB 0%,#189D98 100%); /* IE10+ */
  background: linear-gradient(to bottom, #0065AB 0%,#189D98 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0065AB', endColorstr='#0065AB',GradientType=0 ); /* IE6-9 */
 
  color: #ffffff !important;
}

.navbar .nav .dropdown-menu > li > a:hover, 
.navbar .nav .dropdown-menu > li > a:focus{
  background: transparent;
}
.navbar .nav > li > a > h4{
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
}
.navbar .hoverMenuWrapper{
  position: relative;
}
.navbar .hoverMenuWrapper > li > a > h4{
  text-transform: uppercase;
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.navbar .hoverMenuWrapper > li > a > .bg-down,
.navbar .hoverMenuWrapper > li > a > .bg-up{
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  background: ;
}
.navbar .hoverMenuWrapper > li > a > .bg-down{
  top: 0;
}
.navbar .hoverMenuWrapper > li > a > .bg-up{
  bottom: 0;
}
.navbar .hoverMenuWrapper > li > a:hover .bg-down,
.navbar .hoverMenuWrapper > li:hover > a .bg-down,
.navbar .hoverMenuWrapper > li > a:hover .bg-up,
.navbar .hoverMenuWrapper > li:hover > a .bg-up{
  height: 100%;
}
.navbar .hoverMenuWrapper > li > a:hover h4,
.navbar .hoverMenuWrapper > li:hover > a h4{
  color: #ffffff;
}
.navbar-inner,
.navbar .nav .dropdown-menu > li{
  padding: 0;
  border: 0;
}
.navbar .nav .dropdown-menu > li:last-child{
  margin-bottom: 20px;
}
.navbar .nav .dropdown-menu > li{
  min-width: 200px;
  text-align: left;
}
#top .navbar .nav .dropdown-menu > li > a{
  margin-top: 10px;
  margin-bottom: 0px;
  margin-left: 20px;
  margin-right: 20px;
  line-height: 15px!important;
  white-space: normal;
  padding: 0;
  display: inline-block;
  position: relative;
  font-size: 11px;
  color: #a0a0a0 ;
}
/*
.navbar .nav .dropdown-menu > li > a:hover span{
border-bottom: 2px solid #a0a0a0;
position: absolute;
left: 0;
bottom: 1px;
width: 100%;
}
*/
#top .navbar .nav .dropdown-menu > li > a:hover{
  color: #44cfe4;
  padding-left: 3px;
}
.navbar-inner,
.navbar .nav>.active>a, .navbar .nav>.active>a:hover, .navbar .nav>.active>a:focus,
.navbar .nav li.dropdown.open>.dropdown-toggle, .navbar .nav li.dropdown.active>.dropdown-toggle, .navbar .nav li.dropdown.open.active>.dropdown-toggle{  
  filter: none;
}
.container .line{
  height: 1px;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
          
  -webkit-box-shadow: 0 13px 21px 3px rgba(0,0,NaN,0.75);
  -moz-box-shadow: 0 13px 21px 3px rgba(0,0,NaN,0.75);
  box-shadow: 0 13px 21px 3px rgba(0,0,NaN,0.75);
}
/* Menu in Mobile */
.navbar .btn-navbar{
  padding-top: 23px;
  background: transparent;
  color: #818080;
}
.navbar .btn-navbar:hover{
  cursor: pointer;
  background: transparent;
  color: #818080;
}
.navbar .icon-bar-group{
  display: inline-block;
}
/* Search */
.top-search #header-search .search-form{
  	height: 30px;
  	line-height: 30px;
}
#header-search{  	
    background: #ffffff;
    width: 320px;
    border-radius: 5px;
    float: right;    
    padding: 2px 5px; 
    margin-right: -10px;
  
}
#header-search.focus{
  border-color: #ffffff;
}
#header-search input{
  background-color: transparent;    
  height: 24px;
  line-height: 24px;  
  min-height: 24px;  
  padding: 0 0 0 5px;
  
}
#header-search .search-form{
  height: 36px;
}
#header-search .fa-search{
  color: #000000;
  font-size: 13px;
}
.top-support #header-search input{
    vertical-align: top !important;
}
.search-form .search-submit{           
  padding: 6px 7px;  
  right: 0;
  top: 0;  
  border: none;
  float: right;
  position: absolute;
  display: inline-block;  
  background-color: transparent;
  border-radius: 0 5px 5px 0;  
  
  background: #e2e2e2;
  background: -moz-linear-gradient(top, #e2e2e2 0%, #fefefe 21%, rgba(226,226,226,1) 62%, rgba(226,226,226,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(254,254,254,1)), color-stop(21%, rgba(245,245,245,1)), color-stop(62%, rgba(226,226,226,1)), color-stop(100%, rgba(226,226,226,1)));
  background: -webkit-linear-gradient(top, rgba(254,254,254,1) 0%, rgba(245,245,245,1) 21%, rgba(226,226,226,1) 62%, rgba(226,226,226,1) 100%);
  background: -o-linear-gradient(top, rgba(254,254,254,1) 0%, rgba(245,245,245,1) 21%, rgba(226,226,226,1) 62%, rgba(226,226,226,1) 100%);
  background: -ms-linear-gradient(top, rgba(254,254,254,1) 0%, rgba(245,245,245,1) 21%, rgba(226,226,226,1) 62%, rgba(226,226,226,1) 100%);
  background: linear-gradient(to bottom, rgba(254,254,254,1) 0%, rgba(245,245,245,1) 21%, rgba(226,226,226,1) 62%, rgba(226,226,226,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#e2e2e2', GradientType=0 );
  
}
.search .empty{
  line-height: 15px;
  margin-top: 15px;
}
.search-page{
  padding-bottom: 35px;
}
.search-page .search-form{
  margin-bottom: 10px;
}
.search-page .container-nav{
  margin-top: 0;
}
.search-page .search-form .search-submit{
  border-radius: 0;
  padding: 9px 15px;
  position: absolute;
  right: 0;
  top: 0;
}
.search-page .search-form{
  box-shadow: inset 0px 0px 5px -1px #e6e6e6;
  -webkit-box-shadow: inset 0px 0px 5px -1px #e6e6e6;
  -moz-box-shadow: inset 0px 0px 5px -2px #e6e6e6;
  padding: 1px;
}
.search-page .search-form input{  
  line-height: 32px;
  min-height: 32px;
  padding: 0 60px 0 10px;
  width: 100%;
}

/* Cart */
#umbrella .cart-checkout{
  margin-left: 22px;
}
#umbrella > li{
  padding: 0;
  vertical-align: middle;
}
#umbrella .icon-shopping-cart{
  margin-right: 5px;
  color: #ffffff;
  font-size: 24px;  
}
#umbrella .num-items-in-cart{
  cursor: default;
}
#umbrella .num-items-in-cart span.icon,
#umbrella .icon .number,
#umbrella .icon .total,
#umbrella .icon .total .money{
  color: #818080;
  cursor: pointer;
}

#umbrella .icon-caret-down{
  color: #44cfe4;
}
#umbrella .empty{
  padding: 0 10px 0 0;
  font-size: 11px;
}
#umbrella .empty a{
  text-transform: uppercase;
  color: #000000;
}
#umbrella .empty a:hover{
  color: #3db0c1;
}
#umbrella .num-items-in-cart{  
  position: relative;
  z-index: 9;
  top: 2px;
}
#umbrella .num-items-in-cart span.icon:hover,
#umbrella .num-items-in-cart span.icon:hover span{
  color: #3db0c1 !important;
}
#umbrella .num-items-in-cart .icon-caret-down{
  font-size: 12px;
  margin-left: 8px;
}
#top #umbrella .cart-checkout a{
  font-size: 10px;
  color: #787878;
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
}
#top #umbrella .cart-checkout a:hover{
  color: #ffffff;
}
#umbrella .cart-checkout a span{
  border-bottom: 1px solid #969696;
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
}
#umbrella{
  z-index: 9999;
}
#umbrella .dropdown-menu{
  width: 310px;
  right: -1px;
}

#umbrella #cart-info{
  text-align: left;
  padding-top: 0;  
}
#umbrella #cart-info .sb-title a{
  text-transform: none;
  color: #44cfe4;
  font-weight: bold;
}
#umbrella #cart-info .sb-title a:hover{
  text-transform: none;
  color: #ffffff;
  font-weight: bold;
}
#umbrella #cart-info .cart-left{  
  display: block;
}
#umbrella #cart-info .cart-left a.cart-image{
  	padding: 0 5px;
}
#umbrella #cart-info .cart-left a.cart-image img{
  	max-width: 100%;
}
#umbrella #cart-info .cart-close,
#umbrella #cart-info .cart-close i{
  position: absolute;
  top: 0px;
  right: 5px;
  z-index: 1;
  font-size: 12px;
}
#umbrella #cart-info .cart-close i{  
  padding: 1px 2px;    
  color: #a52e0a;
}
#umbrella #cart-info .cart-close i:hover{  
  
}
#umbrella #cart-info .items .row-fluid{
  margin-bottom: 17px;
}
#umbrella #cart-info .items,
#umbrella #cart-info .items .row-fluid.last{
  margin-bottom: 0;
}
#umbrella #cart-info .items{
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0;
}
#umbrella #cart-info .items .row{
  margin-bottom: 20px;
  position: relative;
}
#umbrella #cart-info .cart-right a{
  color: #3db0c1 !important;  
  font-weight: bold;
  padding-right: 10px;
  display: inline !important;
}
#umbrella #cart-info .cart-right a:hover{
  color: #3db0c1 !important;
}
#umbrella #cart-info.dropdown-menu{
  right: -2px;
  left: auto;
  width: 300px;  
  text-transform: none;
}
#umbrella #cart-info .action{
  font-family: 'Open Sans', sans-serif;  
  padding: 0 0px 7px; 
}
#umbrella #cart-info .action span.cart-total-right{
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  margin-left: 5px;
}
#umbrella #cart-info .action .btn{
  padding: 8px 15px;
}
#umbrella #cart-info .last{
  border-top: 1px solid #d9d9d9;
  padding-bottom: 5px;
  padding-top: 6px;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 20px;
  color: #44cfe4;
}
#umbrella #cart-info .last .cart-left{
  font-size: 14px;
}
#umbrella #cart-info .last .cart-right{
  font-size: 18px;
}
#umbrella #cart-info .last .cart-right span{
  margin-left: 12px;
}
#umbrella #cart-info .cart-title{
  line-height: 15px;
}
#umbrella #cart-info .cart-title a{  
  font-family: 'Roboto', sans-serif;
  line-height: 1.3em;
  display: inherit;
}
#umbrella #cart-info .cart-price .money,
#umbrella #cart-info .cart-price{
  font-size: 11px;
  margin-top: 2px;
  color: #fff;
  font-weight: bold;
}

#umbrella #cart-info .icon-caret i{
  position: absolute;
  top: -3px;
  right: 27%;
  font-size: 14px;
  color: #000000;
  padding: 0;
}
#umbrella #cart-info .loading{
  text-align: center;
  min-height: 100px;
}
#umbrella #cart-info .loading img{
  margin-top: 45px;
}
#umbrella #cart-info .sb-title{
  text-transform: none;
  font-size: 14px !important;
  margin-bottom: 13px;
  font-family: 'Roboto', sans-serif;
}
#umbrella #cart-info #cart-content{  
  font-size: 12px;
  padding: 20px 13px 0;
}
#umbrella #cart-info #cart-content .col-md-16{
  padding-left: 0;
}
#umbrella #cart-info #cart-content div{
  line-height: 20px;
}
#umbrella #cart-info #cart-content .col-md-7.cart-left{
  width: 27.5%!important;
}
#umbrella #cart-info #cart-content div.cart-right{
  width: 65%;
  float: left;
}
#umbrella #cart-info .recently{
  background-color: rgba(43,43,43,0.8);
  margin: 0 -14px;
  margin-top: 10px;
}
#umbrella #cart-info .recently span{  
  display: block;
  font-weight: bold;
  padding: 5.5px 15px; 
}
#umbrella .cart-link i.sub-dropdown{
  padding-bottom: 10px;
}
.cart-items .item{
  vertical-align: top;
}
.cart-items .image,
.cart-items .image img{
  min-width: 80px;
}
.cart-items .input-mini{
  overflow: hidden;
  margin-top: -3px;
}
.cart-items .update-quantities{
  min-width: 130px;
}
.cart-items a{
  display: inline-block;
  line-height: 15px;
}
.cart-items .action{
  min-width: 70px;
}
.cart-items .title{
  min-width: 300px;
  text-align: left;  
  padding: 0 20px;
  vertical-align: middle;
}
.cart-items .title .link{    
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  position: relative;  
}
.cart-items .title .link .block{
  display: block;
  color:#3db0c1;
  font-weight:bold;
}
table tbody td span.variant_title{
  font-weight: bold;
  color:#a0a0a0;
}
.cart-items .title .link .variant_title:hover,
.cart-items .title .link .block:hover{
  color:#3db0c1;
}
.cart-items .title .link i{
  color: #3db0c1;
  margin-left: 10px;
}
.cart-items tr th{
  text-transform: uppercase;
  font-weight: bold;
  font-size: 10px;
}
tr.bottom-summary td{
  padding: 10px 20px;
}

.cart-items td img{
  max-width: 60px;
  height: auto;
}
.cart-items tbody tr td:first-child,
.cart-items tbody tr:last-child td:first-child{
  padding-top: 10px;
  padding-bottom: 10px;
}
table tbody td.qty{
  width: 50px;
  padding: 0 20px;
}
.cart-items .bottom-summary .btn{
  margin-bottom: 0;
  margin-top: 0;
  position: relative;  
}
.cart-items .title-1{
  font-weight: bold;
  color: #3daebe;
}
.cart-items .btn-7{
  padding: 0px 8px 1px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -web-border-radius: 50%;
  border: 1px solid transparent;
  color:#862207;
  font-size: 12px;
  background: none;  
  font-weight: normal;
  text-transform: lowercase;
  margin: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  position: relative;
  top: 2px;
}
.cart-items .btn-7:hover{
  color: #3db0c1;
}
#shipping-calculator{
  padding: 10px;
}
#shipping-calculator h3{
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  color: #000000;
  margin-bottom: 5px;
  margin-top: 35px;
}
#shipping-calculator .get-rates{
  margin-bottom: 10px;
}
#shipping-calculator #address_zip{
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 10px;
}
#shipping-calculator #wrapper-response{
  font-size: 13px;
}
#shipping-calculator select.form-control{
  padding: 3px 3px 3px 12px;
}
#cartform{
  margin-bottom: 25px;
  margin-top: 10px;
  padding: 0 10px;
}
#cartform .cart-items td.title-1{  
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
}
#cartform .cart-items td.image{
  border-right: 0;
  padding:20px 0;
}

#cartform .cart-items td input.input-1{
  width: 100%;
  line-height: 19px;
}

.cart-items .title ul{
  margin-bottom: 0;
}
.cart-items .title li{
  vertical-align: top;
  padding: 0;
}
#checkout-addnote{
  margin-left: -10px;
}
#checkout-addnote .control-label{
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  color: #000000;
  margin-bottom: 11px;
  margin-top: 3px;
}
#checkout-addnote textarea{
  height: 130px;
}
.greyScale{
            -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
            filter: grayscale(100%);
          }
#checkout-proceed button#update-cart{
  font-size: 15px;
  margin: 15px 0px 30px 0;
  padding: 12px 60px;
  text-transform: none;
  position: relative;
  transition: none 0s ease 0s;
}
#checkout-proceed button#update-cart i.fa{  
  margin-top: -7px;
  position: absolute;
  right: 4%;
  top: 50%;
  color: #ffffff;
}
#checkout-proceed button#update-cart:hover i.fa{
  color: #fff !important;
}
/* Messages */
#messages{
  margin-top: 10px;
}
#messages li{
  padding-top: 0;
  padding-bottom: 1px;
}
#messages li:first-child{
  padding-right: 35px;
}

/*
** Content
*/
/* General */
.content{
  position: relative;
}
#content{
  padding-bottom: 40px;
  background: #ffffff!important;
  position: relative;
}
#page-header{
  margin-bottom: 20px;
  padding: 0 10px;
}
.pagination .disabled{
  display:none;
}
.pagination ul,
.thumbnail,
#breadcrumb,
.navbar-inner,
.carousel-control,
.navbar .nav>.active>a, 
.navbar .nav>.active>a:hover, 
.navbar .nav>.active>a:focus,
.tooltip-inner{
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.pagination .total-item-number,
.pagination #scroll-to-top-collect{
  padding-right:0 !important;
  padding-left: 0 !important;
}
.pagination #scroll-to-top-collect.text-right{
  text-align: right;
  float: right;
}

.hoverHomeBackgroundWrapper .details h4,
.hoverHomeBackgroundWrapper .details>.bg,
.hoverHomeBackgroundWrapper .hover .theHover,
.image-boxes .grayscale,
.hoverBorder .product-ajax-cart .btn,
.hoverBorder .hoverBorderWrapper,
.hoverBorder .hoverBorderWrapper .theHoverBorder,
.hoverBorder .hoverBorderWrapper .theHoverMore,
.hoverBackgroundWrapper .details h4,
.hoverBackgroundWrapper a:hover .details .title-5,
.hoverBackgroundWrapper a:hover .details .contents,
.hoverBackgroundWrapper .details>.bg,
.hoverBackgroundWrapper .hover .theHover,
.hoverBackgroundWrapper img,
.notouch .hoverBackgroundWrapper a .hover{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.hoverBackgroundWrapper .hover {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hoverBackgroundWrapper .hover .theHover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  display: block;
}
.hoverBackgroundWrapper a,
.hoverBackgroundWrapper a:focus,
.hoverBackgroundWrapper a:hover{
  text-decoration: none;
  display: block;
}
.notouch .hoverBackgroundWrapper a:hover .theHover{
  opacity: 0.85;
  filter: alpha(opacity=85);
}
.notouch .hoverBackgroundWrapper a:hover img{
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.macos .product-ajax-cart .overlay_mask,
.macos .product-ajax-cart .overlay_icon,
.macos .hoverHomeBackgroundWrapper .details>.bg,
.macos .hoverBackgroundWrapper .details>.bg,
.macos .hoverBackgroundWrapper a .theHover,
.macos .hoverBackgroundWrapper a img{
  -webkit-transition: none;
}
.macos .hoverBackgroundWrapper a:hover img {
  -webkit-transform: scale(1);
}
.hoverBackgroundWrapper a .theHover i{
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  font-size: 20px;
  color: #000000;
  display: block;
}
.hoverBackgroundWrapper .details {
  display: block;
  position: relative;
  height: 100%;
  cursor: pointer;
  padding-bottom: 1px;
}
.hoverBackgroundWrapper .details .h4{
  color: #3db0c1;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
}
.hoverBackgroundWrapper .details span{
  font-size: 11px;
  line-height: 1.5em;
}
.notouch .hoverBackgroundWrapper a:hover .details>.bg {
  opacity: 1;
  filter: alpha(opacity=100);
}

.hoverHomeBackgroundWrapper .hover {
  display: block;
  position: relative;
  overflow: hidden;
}
.hoverHomeBackgroundWrapper .hover .theHover {
  position: absolute;
  top: 0;
  height: 0;
  width: 100%;
  left: 0;
  background: #000000;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.notouch .hoverHomeBackgroundWrapper a:hover .theHover{
  height: 110%;
}
.hoverHomeBackgroundWrapper a .theHover i{
  position: absolute;
  top: 40%;
  left: 50%;
  margin-left: -10px;
  font-size: 20px;
  color: #000000;
  display: block;
}
.hoverHomeBackgroundWrapper .details {
  display: block;
  position: relative;
}
.notouch .hoverHomeBackgroundWrapper a:hover .details>.bg {
  top: 0;
}
.hoverHomeBackgroundWrapper .details>.bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  display: block;
  
  background: #3db0c1;
}
.hoverHomeBackgroundWrapper .details {
  padding: 10px 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.notouch .hoverHomeBackgroundWrapper a:hover .details{
  color: #000000;
  font-weight: bold;
}

.hoverBorder{
  position: relative;
  display: block;  
  max-width: 100%;
  text-align: center;
}
.hoverBorder .hoverBorderWrapper{
  position: relative;
  display: block;
  overflow: hidden;  
  -webkit-backface-visibility: hidden;		
}

.hoverBorder .hoverBorderWrapper .theHoverBorder{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hoverBorder .hoverBorderWrapper .theHoverMore{
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  background: #3db0c1;
  color: #000000;
  padding: 0 5px;  
}
.notouch .hoverBorder:hover .hoverBorderWrapper .theHoverBorder{
  box-shadow: 0 0 0 2px #d9d9d9 inset;
}
.image-boxes .hoverBorder:hover .hoverBorderWrapper{
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.image-boxes .hoverBorder .hoverBorderWrapper .theHoverBorder{
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15) inset;
}
.notouch .image-boxes .hoverBorder:hover .hoverBorderWrapper .theHoverBorder{
  box-shadow: 0 0 0 4px #3db0c1 inset;
}
.notouch .image-boxes .hoverBorder:hover .hoverBorderWrapper .theHoverMore{
  left: 15px;
  opacity: 1;
  filter: alpha(opacity=100);
  cursor: pointer;
}
.image-boxes .hoverBorder .hoverBorderWrapper .theHoverBorder,
.image-boxes .hoverBorder .hoverBorderWrapper .theHoverMore,
.image-boxes .hoverBorder:hover img{
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.hoverBorder:hover .product-ajax-cart .quick_shop{
  opacity: 1;
  filter: alpha(opacity=100);
}
.touch .product-ajax-cart{
  display: none;
}

.image-boxes .grayscale{
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
  filter: gray; /* IE 6-9 */
}
.image-boxes:hover .grayscale{
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
  filter: url(grayscale.svg); /* Firefox 4+ */
  filter: none; /* IE 6-9 */
}
.boxesWrapper{
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
}
.boxesWrapper h3{
  margin-bottom: 30px;
}

.sold_out,
.unavailable,
.price_compare,
.price,
.price_sale{
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-weight: normal;
}
.price,
.price_sale{
  color: #1e1e1e;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;    
}
.sold_out,
.unavailable{
  color: #808080;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
}
.price_compare{
  color: #808080;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  text-decoration: line-through;
}


.sale_banner{
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 10;
  
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  
  
}
.sale_banner .sale_text{
  background-color: #000000;
  color: #ffffff;
  font-size: 13px;
  line-height: 13px;
  font-weight: bold;
  text-transform: uppercase;
  
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  
  height: 55px;
  width: 55px;
  display: table-cell;
  vertical-align: middle;
}

.home_products a.hoverBorder{
  display: block;
}
.content_tabs .sale_banner{
  right: 10px;
}
.home_products .sale_banner{
  max-width: 50%;
  right: 0;
}
.sale_banner img{
  max-width: 100%;
  vertical-align: bottom;
}
/* --- Home --- */
/* General */
#home-slider .selectors,
.hideControls .slider-control,
.hideControls .slider-control .btn-label,
.hideControls .slider-control .sub-control{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* Navigation Carousel */
.owl-theme .owl-controls{
  margin: 0;
  position: absolute;
  top: -52px;
  right: 10px;
}
.owl-theme .owl-controls .owl-buttons > div{
  color: #818080;
  margin: 0;
  padding: 2px 0;
  font-size: 25px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: transparent;
  filter: Alpha(Opacity=100);
  opacity: 1;
}

.owl-theme .owl-controls .owl-buttons > div:first-child{
  margin-right: 2px;
}
.owl-theme .owl-controls .owl-buttons > div i{
  position: relative;
  padding: 10px;
  background-color: #000000;
  color: #fff;
  
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.owl-theme .owl-controls .owl-buttons > div i:hover{
  background-color:#000000;
  color: #fff;
}

/* Slideshow */
.home-slider-wrapper .wrap_slider{  
  padding: 0!important;
  width: 1200px !important;
}
#home-slider li{
  padding: 0;
}
#home-slider .slide-body .caption{
  text-shadow: none;
}
#home-slider .caption.header{
  position: absolute;
  max-width: 100%;
  left: 17%;
  right: auto;
  top: auto;
  top: 22%;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  padding: 10px 40px 20px 60px;  
  text-align: left;
}

#home-slider .caption.header .h2{
  position: relative;
  z-index: 2;
  padding-bottom: 7px;
}
#home-slider .caption.header h2 {
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  display: inline-block;
}
#home-slider .caption.header h2 .caption-content{
  font-size: 33px;
  font-weight: bold;
}
#home-slider .caption.header .sub{
  left: 0;
  position: relative;
  white-space: normal;
  padding: 18px 0 5px;
  z-index: 2;
}
#home-slider .caption.header .sub .caption-content{
  font-size: 119px;
  font-weight: bold;
}
#home-slider .caption.header .content{
  font-size: 10px;
  line-height: 12px;
  margin-bottom: 17px;
  text-transform: uppercase;
}
#home-slider .caption-content span{
  padding-left: 2px;
}
#home-slider:hover .s-prev, 
#home-slider:hover .s-next,
.touch #home-slider .s-prev, 
.touch #home-slider .s-next{
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 5!important;
}
#home-slider .pages{
  width: auto;
  bottom: 0%;
  left: auto;
  right: 6%;
  z-index: 10;
}
#home-slider .pages .page{
  width: 4px;
  height: 4px;
  border-color: #e8e8e8;
  background-color: #e8e8e8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  opacity: 1;
  filter: alpha(opacity=100);
  margin-left: 5px;
}
#home-slider .pages .page:first-child{
  margin-left: 0;
}
#home-slider .pages .page:hover{
  background-color: #c5e7e6;
}
#home-slider .pages .page.active{
  border-color: #c5e7e6;
  background-color: #c5e7e6;
  cursor: default;
}

/* Banners beside the slideshow */
#home_banners ul{
  margin-bottom: 0;
}
#home_banners li{
  padding: 0;
  overflow: hidden;
}
#home_banners li a{
  display: block;
}
.notouch #home_banners li img{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.notouch #home_banners li:hover img{
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* Static Blocks below the slideshow */
#home_blocks{
  margin-top: 30px;
  margin-bottom: 52px;
  border-top: 1px solid #d9d9d9;
}
#home_blocks .block-three{
  padding-top: 25px;
  overflow: hidden;
}
#home_blocks .block-heading{
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}
#home_blocks .block-title{
  margin-top: 5px;
  margin-bottom: 7px;
}
#home_blocks .block-caption{
  margin-bottom: 11px;
}
#home_blocks .block-action i{
  font-size: 14px;
  position: relative;
  top: 1px;
}
#home_blocks .block-logo{
  text-align: center;
}

/* Home - All collection */
#home_collections_wrapper{
  margin-right: -10px;
  margin-left: -10px;
}
.home_collections{
  margin-bottom: 27px;
}
.home_collections .items{
  margin: 0 10px;
}
/* Home Featured Product */
.home_products{
  margin-bottom: 10px;
}
.home_products .title-1{
  margin-bottom: 10px;
}
.home_products .element{
  margin: 0 10px;
  margin-top: 10px;
}
.home_products .element li.row-left{
  padding-top: 0;
}
.home_products .element .row-right p,
.home_products .element .row-right .btn{
  display: none!important;
}
.home_products .element .row-right .product-price{
  margin-bottom: 0;
}

/* Partners Logo */
#widget-partners .wrapper-title{
  margin-bottom: 0;
}
#widget-partners .wrapper-title .title-3{
  font-size: 18px;
}
#partners-container{
  padding: 23px 0;  
}
#partners-container .owl-theme .owl-controls .owl-buttons > div i:hover{
  background-color: transparent;
}
#widget-partners .logo{
  padding: 0 5px;
  max-width: 100%;
}
#widget-partners .logo a{
  display: inline-block;
  width: 100%;
}
.notouch #widget-partners .logo a img{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.notouch #widget-partners .logo a:hover img{
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.notouch #widget-partners .logo a img{
  max-width:100%;
}
#widget-partners .owl-carousel .owl-wrapper-outer{
  z-index: 10;
}
#widget-partners .owl-theme .owl-controls{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  margin-top: -25px;
}
#widget-partners .owl-theme .owl-controls .owl-buttons > div{
  position: absolute;
  z-index: 10;
  transition:all 0.3s ease-out;
  -moz-transition:all 0.3s ease-out;
  -webkit-transition:all 0.3s ease-out;
  opacity: 0;
  filter: alpha(opacity=0);
}
#widget-partners .owl-theme .owl-controls .owl-buttons .owl-prev{
  left: -20px;
}
#widget-partners .owl-theme .owl-controls .owl-buttons .owl-next{
  right: -20px;
}
#widget-partners #partners-container:hover .owl-prev{
  left: 0px;
  opacity: 1;
  filter: alpha(opacity=100);
}
#widget-partners #partners-container:hover .owl-next{
  right: 0px;
  opacity: 1;
  filter: alpha(opacity=100);
}

.owl-theme .owl-controls .owl-buttons > div i.fa-caret-left,
.owl-theme .owl-controls .owl-buttons > div i.fa-caret-right{
  padding: 10px 15px;
}

/*widget-shipping*/
#widget-shipping{
  border-top: 1px dotted #000000;  
  border-bottom: 2px solid #000000;
}
#widget-shipping h1{
  font-size: 30px;
  margin-bottom: 7px;
  margin-top: 27px;
  
}
#widget-shipping ul li a{
  font-size: 16px;
  font-weight: bold;
}
#widget-shipping ul li a i{
  margin: 0 10px;
}
#widget-shipping ul li{
  margin-bottom: 20px;
}
/*end widget-shipping*/

/* --- Main Content --- */
/* General */
.blog .num-comment a,
.grid_list ul li,
#page-header .list_tags strong,
.grid_list .icon-th-list, .grid_list .icon-th-large,
.grid_list .l-hov, .grid_list .r-hov,
.grid_list #goTrid, .grid_list #goList,
#sortForm li,
.sidebar .list li a{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.sidebar .sb-content li > a{
  color: #545054;
}
.sidebar .sb-content li > a:hover{
  color: #000000;
}

/* Breadcrumb */
.group_breadcrumb{
  padding-bottom: 4px;
  border-bottom: 1px solid #e5e5e5;     
  margin-bottom: 27px;
  margin-left: -10px;
  margin-right: -10px;    
}
#breadcrumb{  
  background: #f1f1f1;
  -webkit-box-shadow: inset 0px 3px 2px 0px #bebebe;
  -moz-box-shadow: inset 0px 3px 2px 0px #bebebe;
  box-shadow: inset 0px 3px 2px 0px #bebebe;            
  border-bottom: 1px solid #e5e5e5;          
  padding: 7px 0 7px 10px;    
  margin: 0;
  
}
#breadcrumb i{
  font-style: normal;
}
#breadcrumb a, #breadcrumb span{
  color: #787878;
  font-size: 10px;
  font-weight: bold;
}
#breadcrumb a, #breadcrumb .page-title{
  margin: 0 6px;
  font-family: 'Open Sans', sans-serif;  
}
#breadcrumb a:hover{
  color: #3db0c1; 
}
 
#breadcrumb a:first-child, 
#breadcrumb .homepage-link{
  margin-left: 0;
}
#breadcrumb a:last-child, 
#breadcrumb .page-title{
  margin-right: 0;
}
/* Pagination */
#page-title{
  text-transform: none;  
  padding-bottom: 8px;
  margin-top:3px;
  text-align: center;
}
#scroll-to-top-collect span{
  cursor: pointer;
}
#scroll-to-top-collect span:hover{
  color: #646464;  
}

.pagination ul{
  display: inline;  
}
.pagination{
  position: relative;
  text-align: center;
  width: 100%;  
  margin: 0;  
  padding-top:6px;
  margin-top: 0px;
  border-radius: 0;
  font-size: 10px;
  font-weight: bold;
  
  color: #a0a0a0;
  border-top: 1px solid #e7e7e7;
  
}
.pagination ul li{
  padding-top: 0;
  padding-bottom: 0;
}
.pagination .btn{
  margin-top: 5px;
}
.pagination-num-showing,
.collect-option{    
  color: #333;
  font-weight: 600;
  left: 10px;
  margin: -10px 0 0 0;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  line-height: 20px;
}
.pagination .active *{
  cursor: default;
}
.pagination ul>li>a, 
.pagination ul>li>span{ 
  color: #a0a0a0;  
  text-transform: lowercase;
  margin: 0 1px;  
  font-size: 10px;
  font-weight: bold;
}

.pagination li.prev a{
  text-transform: uppercase;
}
.pagination li.prev a i{
  margin: 0 10px 0 0;
}

.pagination li.next a{
  text-transform: uppercase;
}
.pagination li.next a i.fa{
  margin: 0 0 0 10px;
}

.pagination ul>li:first-child>a, 
.pagination ul>li:first-child>span,
.pagination ul>li:last-child>a, 
.pagination ul>li:last-child>span{
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-weight: bold;
}
.pagination ul>li>a{
  /*blog_text*/
  color: #a0a0a0; 
  font-size: 9px;
}
.pagination ul>li>a:hover, .pagination ul>li>a:focus, .pagination ul>.active>a, .pagination ul>.active>span{
  color: #000000;  
  
}

.pagination ul>li>a.disabled,
.pagination ul>li>a.disabled:hover{
  cursor: default;
  color: #000000;   
}
.pagination ul>li.prev>a{
  margin-right: 6px;
}
.pagination ul>li.next>a{
  margin-left: 6px;
}

/* Sidebar */
.sidebar .blogs{
  margin-top: 13px;
  margin-bottom: 29px;
}
.sidebar ul{
  margin-top: 27px;
}
.sidebar ul.featured-products{
  margin-bottom: -7px;
  margin-top: 20px;
}
#prodcoll .sb-wrapper .sb-content img{
  margin-bottom: 10px;  
}
.sb-wrapper a img{
  margin-bottom: 10px;
}
#prodcoll.sidebar .sb-content{
  margin-top: 10px;
  margin-bottom: 30px;
}
.sidebar .fprod-grid{
  padding: 10px;
}
.sidebar > .row-fluid{
  padding-top: 0px;
}
.sidebar .sb-wrapper .textwidget{
  margin-top: 13px;
}
.sidebar > .row-fluid:first-child{
  margin-top: 0;
  padding-top: 5px;
}
.sidebar > .row-fluid .row-fluid{
  margin-bottom: 20px;
}
.sidebar .fprod-title{
  line-height: 1.3em; 
}
.sidebar .fprod-title a{
  padding-left: 0;
}

.sidebar .product-price{
  margin-bottom: 17px;
}
.sidebar .product-wrapper{
  margin-left: 10px;
  margin-right: 10px;
}
.sidebar .product-wrapper .fprod-title a .fa{
  margin: 0 10px;
  color: #3db0c1;
}
.sidebar .fprod-title a{
  font-size: 12px;
  font-weight: bold;
  color: #3db0c1;
  font-family: 'Roboto', sans-serif;
}
#product-header h3#page-product-title{
  font-family: 'Roboto', sans-serif;
}
.cart-items .title .link .block{
  font-family: 'Roboto', sans-serif;
}
.sidebar .fprod-title a:hover{
  color: #3db0c1;
}
.sidebar .sb-content li{
  line-height: 1.5em;
}
.sidebar .sb-content li > a{
  font-size: 11px;
  text-transform: capitalize;
  font-weight: normal;
}
.sidebar .list-styled li > a:hover{
  padding-left: 12px;
  font-weight: bold;
}
.sidebar p{
  margin: 0;
}
.sidebar .title-6 a{
  color: #969696;
  font-weight: normal;
}
.sidebar .title-6 a:hover{
  color: #f55856;
  font-weight: normal;
}
.sidebar .blogs .title-6 a{
  color: #969696;
}
.sidebar .blogs .title-6 a:hover{
  color: #f55856;
}
.sidebar .active a{
  color: #f55856;
}
.sidebar .blogs .blogs-item{
  margin-top: 16px;
  padding-top: 0px;  
  margin-bottom: 20px;
}
.sidebar .blogs .blogs-item .intro{
  color: #545054;
  line-height: 15px;
  font-weight: 600;
}
.sidebar .blogs .blogs-item span.line{
  width: 20px;
  height: 1px;  
  display: block;
  margin: 8px 0 5px;
  border-bottom: 1px solid #545054;
}
.sidebar .blogs .blogs-item:first-child{
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.sidebar .blogs .title-6{
  margin-top: 0;
  margin-bottom: 5px;
}
.sidebar .blogs .post{
  margin-top: 13px;
  height: 30px;
  line-height: 30px;
}
.sidebar .blogs .post i{
  font-size: 17px;
  margin-right: 10px;
  position: relative;
  top: 1px;
}
.sidebar .blogs .post .date,
.sidebar .blogs .post .comment{    
  height: 30px;
  line-height: 20px;
  display: block;
  float: left;
  text-align: center;
  color: #545054;
}

.sidebar .blogs .post .author,
.sidebar .blogs .post .date{
  border-right: 0;
  height: auto;
  float: left; 
  width: 100%;
  text-align: left;
  color: #545054;
}
.sidebar .blogs .post .author span{
  color: #a0a0a0;  
}
.sidebar .blogs .post, 
.sidebar .blogs .post .comment > a {
  font-size: 10px;
  color: #646464;
  text-transform: none;
  font-weight: normal;
}
.sidebar .blogs .post .comment > a span,
.sidebar .blogs .post .comment > a:hover{
  color: #969696;
  font-weight: normal;
}
.sidebar .sb-tags{
  margin-top: 8px;
}
.sidebar .sb-tags li{ 
  margin-right: 5px;
  margin-bottom: 0px;  
  padding: 0;
}

.sidebar .sb-tags a{
  font-weight: normal;
}
.sidebar .sb-tags li.active,
.sidebar .sb-tags li:hover{
  background-color: transparent;
}
.sidebar .sb-tags li a{
  color: #a0a0a0;
}
.sidebar .sb-tags li.active a,
.sidebar .sb-tags li:hover a{
  color: #ffffff;    
  text-decoration: none;
  font-weight: bold;
}
.sidebar .sb-tags li.active a{
  cursor: default;
}
.sidebar .title-6 i.fa{
  margin: 0 10px 0 0;
  color: #3db0c1;
}

/* All Collection */
.collection-page{
  padding-bottom: 35px;
}
.search-page .container-nav,
.collection-page .container-nav{
  background: #f1f1f1;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding: 6px 7px;
  position: relative;
}
.search-page .container-nav:before,
.collection-page .container-nav:before{
  border-top: 1px solid #FFFFFF;
  content: "";
  left: 0;
  margin-left: 0.5%;
  position: absolute;
  top: 0;
  width: 99%;
    
}
.allcollection-page{
  padding-bottom: 200px;
}
#col-main.clearfix{
  position: relative;
}
#col-main.collection #page-header{
  margin-bottom: 16px;
}
#col-main.collection #page-title{
  padding-top: 10px;
}
#page-header{
  position: relative;
  display: block;
}
#page-header .browse_tags,
#page-header .list_tags{
  position: absolute;
  bottom: 0;
  right: 0;
  height: 75%;
  margin: 0;
  z-index: 10;
}
#page-header .browse_tags{
  height: 100%;
  text-align: right;
}
#page-header .browse_tags select{
  margin: 0;
}
#page-header .browse_tags li{
  padding-left: 0;
}
#page-header .list_tags li{
  padding: 0;
  margin: 0 1px;
  position: relative;
  height: 100%;
  z-index: 2;
  border-top: 1px solid #a1d4d3;
}
#page-header .list_tags li.active,
#page-header .list_tags li:hover{
  border-top-width: 2px;
  border-top-color: #46b5c0;
}
#page-header .list_tags li.active{
  background-color: #000000;
}
#page-header .list_tags li.first{
  padding-left: 0;
  margin-left: 0;
}
#page-header .list_tags li.last{
  padding-right: 0;
  margin-right: 0;
}
#page-header .list_tags strong{
  color: #000000;
  padding: 0 15px;
  min-width: 40px;
  text-align: center;
  display: inline-block;
  *display: inline;
  zoom: 1;
  height: 100%;
  border-left: 1px solid #a1d4d3;
  border-right: 1px solid #a1d4d3;
}
#page-header .list_tags strong span{
  position: relative;
  top: 10px;
}
#page-header .collection-line{
  border-top: 1px solid #a1d4d3;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  bottom: -2px;
}
#all-collections #page-title{
  margin-bottom: 0;
}
#collections .collection-item{
  margin-top: 7px;
  margin-bottom: 25px;
  padding: 0 !important;
}
#collections .collection-item .hover{
  border: 1px solid #eeeeee;
  margin-bottom: 12px;
}
.collection-info{
  text-transform: uppercase;
  line-height: 14px;
}
#collection_tags{
  max-width: 100px;
  position: relative;
  top: -2px;
}
.container-nav{
  margin-top: 5px;
  margin-bottom: 8px;
  position: relative;
}
.container-nav > ul{
  margin-bottom: 0;
}
.container-nav ul li{
  padding: 0;
  color: #333;
}
.container-nav .grid_list{
  margin-right: 11px;
  vertical-align: middle;
}
.container-nav .grid_list > ul{
  margin-top: 2px;
}
.row-right p{
  margin-bottom: 0;
  margin-top: 7px;
}
.row-right .product-price{
  margin-bottom: 13px;
  margin-top: 5px;
  font-size: 13px;
}

.grid_list .icon-th-list, .grid_list .icon-th-large{
  font-size: 19px;
  position: relative;
  z-index: 1;
  color: #818080;
}
.notouch .grid_list .icon-th-list:hover, 
.notouch .grid_list .icon-th-large:hover,
.grid_list .active .icon-th-list, 
.grid_list .active .icon-th-large{
  color: #46b5c0;
}
.grid_list ul li{
  display: inline;
  cursor: pointer;
  position: relative;
  margin-right: 5px;
}
.sortBy{
  position: relative;
  margin-left: 20px;
}
.sortBy > strong{
  padding-right: 10px;
  font-size: 10px;
  text-transform: uppercase;  
}
.sortBy #sortForm li.selected,
.sortBy #sortForm li:hover{
  color: #3db0c1;
}
.sortBy #sortForm li:hover{
  cursor: pointer;
}
.sortBy #sortForm li.selected{
  cursor: default;
}
.sortBy #sortBox{
  position: absolute;
  top: 110%;
  right: 0;
  left: auto;
  z-index: 1000;
  background: #fff;
  border: 1px solid #d9d9d9;
  width: 260px;
  text-transform: lowercase;
  width: 180px;  
  margin-top: 3px;
  font-size: 11px;
}
.sortBy #sortBox ul li{
  line-height: 20px;
}
.sortBy .title,
.sortBy #sortButtonWarper{
  position: relative;
  display: inline-block;
}
.sortBy #sortButtonWarper .icon-caret-down{
  position: absolute;
  right: 15px;
  top: 35%;
  font-size: 12px;
}
.sortBy #sortButton{
  min-width: 125px;
  min-height: 25px;
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: none;
  text-align:left;
}
.sortBy #sortButton i.fa{
  color:#000;
  float: right;
  margin: 5px 0;
}
.sortBy #sortButtonWarper.dropdown-toggle .sub-dropdown{
  padding-bottom: 10px;
}

.sortBy #sortButton span{
  margin-right: 10px;
  text-transform: lowercase;
  line-height: 20px;
}
.sortBy .dropdown-menu:after {
    border-bottom: 6px solid transparent; 
}
.touch .grid_list ul li{
  margin-right: 20px;
}
.grid_list ul li i{
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.grid_list ul li i.fa{
  font-size: 15px;
}
.grid_list ul li:first-child{
  margin-right: 10px;
}
.grid_list ul li.active{
  cursor: default;
}
.grid_list ul li.active i,
.grid_list ul li:hover i
{
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.grid_list ul li strong{
  position: relative;
  bottom: 2px;
}

.hidden-grid{
  display: block!important;
}
.hidden-list{
  display: none!important;
}
.visible-grid{
  visibility: visible!important;
}
.visible-list{
  visibility: hidden!important;
}

#sandBox-wrapper{
  margin-left: -13px;
  margin-right: -13px;
}
.full_width#sandBox-wrapper{
  margin: 0;
}
#sandBox{
  margin: 0;
}
.element, .element li{
  padding: 0;
}
.element li .group_info a.title-5{
  color: #3db0c1;
  font-weight: bold;
  font-size: 12px;
}
.element .row-container{  
  padding: 3px 13px 17px;  
  margin: 10px 3px;
  
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;  
}
.element .row-container:hover{    
  background: #fcfcfc;  
}

.element .row-container:hover .disabled{
  opacity: 0.65;
  filter: alpha(opacity=65);
}
#sandBox .full_width .row-right h4{
  margin-bottom: 11px;
  margin-top: 10px;
}
#sandBox .full_width .row-right p{
  margin-bottom: 11px;
}
#sandBox .row-right .product-price{
  margin-bottom: 12px;
}
#sandBox .full_width .row-right .title-5{
  margin-top: 0;
}
#sandBox .full_width .row-left{
  padding-right: 33px;
  text-align: center;
}
#sandBox .full_width .row-right{
  padding-left: 0px;
  margin-left: -13px;
}
#sandBox .full_width .hidden-grid{
  display: none!important;
}
#sandBox .full_width .hidden-list{
  display: block!important;
}
#sandBox .full_width .visible-grid{
  display: none!important;
}
#sandBox .full_width .visible-list{
  display: block!important;
}
#sandBox > li.element .add-to-cart{
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
#sandBox > li.element.full_width .add-to-cart{
  width: 150px;
}
#sandBox > li.element.full_width{
  width: 100%;
}
#sandBox > li.element.full_width .row-container,
#sandBox > li.element.full_width .row-container:hover{
  border: 0;
}
.col-title{
  font-weight:bold;
  text-transform: uppercase;
  font-size: 10px;
  color: #a0a0a0;
}
.sidebar a.col-title:hover,
.col-title:hover{
  color: #3db0c1;
}
/*.full_width */
#sandBox {
  position: relative;
  max-width: 100%!important;
  width: 100%!important;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  display: block!important;
  margin-bottom: 0;
}
#sandBox .full_width:last-child{
  border-bottom: 0;
}
#sandBox .full_width  .text-center{
  text-align: left;
}
#sandBox .full_width .row-left,
#sandBox .full_width .row-right{
  display: inline-block; 
  position: relative;
  
}
.full_width #sandBox .row-right{
  padding-top: 0;
  padding-left: 13px;
}
.full_width #sandBox .product-price{
  margin-top: 10px;
}
#sandBox > .full_width li.element{
  width: 100%;  
  margin-bottom: 20px;
}
/* Blog */
.blog .h4 a,
.blog .h4{
  font-size: 14px;
  color: #3db0c1;
  font-weight: bold;
}
.article-extras span.line{
  margin: 10px 0 10px;
}
.article-extras p.desc{
  line-height: 1.4em;
  font-family: arial;
  font-weight: 600;
  font-size: 11px;
}
.article-extras h5.title{
  font-family: 'Roboto', sans-serif;
}
a.title-5{
  font-family: 'Roboto', sans-serif;
}

font-family: 'Roboto', sans-serif
.blog span.line{
  margin: 4px 0 0;
}
.article-extras span.line,
.blog span.line{  
  border-bottom: 1px solid #818080 !important;
  display: block;
  height: 1px;  
  width: 20px;    
}

.blog span.date{
  font-size: 10px;
  font-weight: bold;
  color: #a0a0a0
}
.blog #page-title i.fa{
  margin: 0 10px 0 0;
  color: #3db0c1;
}
.blog .page-title{
  padding-bottom: 20px;
}
.blogs-item{
  padding: 0 10px;
}
.blog-page,
.article-page{
  padding-bottom: 70px;
  margin-top: -8px;
  min-height: 650px;
}
.blog{
  color: #646464;
}
.blog .blogs{
   margin-bottom: 0;
   padding-bottom:20px; 
}
.blog .blogs .blogs-item h1{
  margin-bottom: 20px;
}
.blogs .blogs-item .h1{
  margin-bottom: 10px !important;
}
.blogs h1 a{
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-bottom: 20px;  	
}
.blogs-item h1 a{
  display: inline-block;
  display: inline;
  zoom: 1;
  margin-bottom: 10px !important;
}
.blogs-item img,
.blogs-item iframe{
  max-width: 100%;
}
.blog .h1 a i.fa{
  margin-right: 10px;
  color: #3db0c1;
}
.blog .blogs.first{
  margin-top: 8px;
}

.blog .blogs .blogs-image{
  margin-bottom: 18px;
}
.blog .post{
  font-size: 10px;
  color: #646464;  
}
.blog .post .comment > a{
  font-size: 10px;
  font-weight: bold;
  color: #969696; 
}
.blog .post .comment > a:hover{
 color: #f55856; 
}
.blog .post .author span{
  color: #110d11;
}
.blog .post .comment_by span,
.blog .post .comment span{
  color: #969696;
}
.post span.author,
.post span.date{
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #fff;
}
.post span.author,
.post span.date{   
   padding: 5px 10px 5px 0;
}
.blog .post i{
  font-size: 17px;
  margin-right: 10px;
  position: relative;
  top: 1px;
}
.blog a{
  color: #969696;
}
.blog .title-4{
  color: #969696;
  font-size: 20px;
  text-transform: none;
  margin-bottom: 15px;
}
.blog a:hover{
  color: #3db0c1; 
}
.blog .post{
  position: relative;
  top: 0px;
  float: left;
}
.blog .post-action{        
  position: relative;
  text-align: right;
  text-transform: uppercase;  
  line-height: 23px;
  height: 23px;
  min-height: 23px;      
  margin-top: 10px;
}
.btn.post-action{
  padding: 4px 20px;
  font-size: 10px;
}
.blog .post-action a{      
  border: 1px solid #d6d6d6;
  color: #787878;
  box-shadow: none;
  height: 23px;
  line-height: 23px;
  min-height: 23px;
  padding: 3px 8px;  
  width: 10px;
  
  background: rgba(255,255,255,1);
  background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(47%, rgba(246,246,246,1)), color-stop(100%, rgba(237,237,237,1)));
  background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
  background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
  background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=1 );
  
}
.blog .post-action a:hover{
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.blog .article{
  margin: 0px 0 23px;  
}
.blog .blogs-item .intro{
  color: #646464;
  margin: 10px 0 0 0;
}
.blog .blogs-item .intro .col-md-16{
  line-height: 15px;
  font-size: 11px;
  margin-left: -10px;
}
.blog .blogs-item .intro p{
  line-height: 15px;
  font-size: 11px;
}
.blog .blogs-item .intro .col-md-8 img{
  max-width: 100%;
  margin-left: -10px;
}
.blog .blogs-item .post-action{ 
  color: #818080;  
  font-size: 10px;
  display: inline;      
 
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 52%, #f6f6f6 52%, #f6f6f6 52%, #ededed 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff), color-stop(52%, #f2f2f2), color-stop(52%, #f6f6f6), color-stop(52%, #f6f6f6), color-stop(100%, #ededed));
  background: -webkit-linear-gradient(top, #ffffff 0%, #f2f2f2 52%, #f6f6f6 52%, #f6f6f6 52%, #ededed 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f2f2f2 52%, #f6f6f6 52%, #f6f6f6 52%, #ededed 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f2f2f2 52%, #f6f6f6 52%, #f6f6f6 52%, #ededed 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 52%, #f6f6f6 52%, #f6f6f6 52%, #ededed 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 );

}

.blog .blogs-item .post-action:hover,
.blog .blogs-item .post-action:focus,
.blog .blogs-item .post-action:active{
  background: #a52e0a;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a52e0a', endColorstr='#a52e0a', GradientType=0 );
  color: #ffffff;
  border-color: #982909;
  
  outline: none;
}
.blog .blogs-item .post-action i{
  color: #818080;
  margin: 4px 10px;
  font-size: 17px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.blog .blogs-item h1{
  margin-bottom: 10px;
}

.blog .blogs-item .article-extras{
  border-top: 1px solid #e7e7e7;    
  padding-top: 10px;
  margin: 10px 0px 10px 0px !important;
}
.blog .blogs-item .article-extras .col-md-12{  
  padding: 0;
}
.blog .blogs-item .article-extras ul.post li{
  padding-top: 0;
}
.blog .blogs-item .article-extras ul li a,
.blog .blogs-item .article-extras ul li span{
  text-transform: none;
}
ul.post li.author {
  font-weight: bold;
}
span.author span{
  color: #000000 !important;
}
.article-extras img{
  max-width: 100%;
}
#footer{
  position: relative;
}
#footer-content .wrap_item{
  margin-left: -10px;
  margin-right: -10px;
}
#footer-content .title-5 span.content-title{
  font-weight: bold !important;
}
#footer-content .group{
  padding: 0 20px;
}
#footer-content .group span.date{
  font-size: 9px !important;
  color: #545054;
  font-weight: 600;
}
#comments .title-5{
  margin-left: 10px;
}
#comments .title-5,
#comment-form .title-5 span.content-title{
  font-weight: bold;
  color: #110d11;
  font-size: 14px;
}
#comment-form.comments{
  margin-bottom: 35px;
  margin: 0 10px;
  border-top: 1px solid #e7e7e7;
}
#comment-form.comments .title-5{
  margin-top: 6px;
  margin-bottom: 7px;
  color: #000000; 
}
#comment-form.comments h3{
  padding-bottom: 10px;
  margin-bottom: 17px;
  border-bottom: 2px solid #e7e7e7;
}
#comment-form.comments h3:after {
  background-color: #000000;
  height: 2px;
  position: absolute;
  width: 120px;
  content: " ";
  display: block;
  margin-top: 10px;
}
#comment-form .notice span{
  color: #969696;
}
#comment-form .alert.alert-danger{
  margin-left: 0;
  width: 66%;
}
.row.title-article{
  padding: 0 10px;
}
#comment-form .alert.alert-success{
  padding-left: 10px;
  padding-right: 10px;
  margin: 10px 0;
  width: 66%;
}

#comments{
  border-top: 1px solid #e7e7e7;
  padding-top: 5px;
}
#comments .row-fluid{
  margin-top: 17px;
}
#comments .comment-head{
  background: #f8f8f8;
  padding: 10px 0 10px 10px;
  position: relative;
}
.blog #comments .comment-head .post{
  top: 2px;
}
#comments .comment-head .post-reply{
  float: right;
}
#comments .comment-head .post-reply .btn{
  margin: 0;    
  padding: 4.5px 12px;
}

#comments .comment-content{
  padding: 12px 0 10px 10px;
}
#comments .comment-content p{
  font-size: 11px;  
  font-style: italic;
  line-height: 15px;
}
#comments .title-5{
  font-weight: bold;  
  color: #000000; 
}

/* Product */
.product-page{
  padding-bottom: 150px;
}

#product-header h3#page-product-title{
  margin-top: -4px;
  color: #3db0c1;
}

.description p{
  font-size: 11px;
}
.wrapper{
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.wrapper select{
  left: 0;
  top: 0;
  width: 100%;
}
.product-page h2{
  margin-top: 25px;
  margin-bottom: 15px;
}

.qty-group{
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ffffff;
}
.qty-group input{
  margin: 0;
}
.qty-group .qty-wrapper{
  position: relative;
  height: 25px;
  display: block;  
}
.qty-group .qty-wrapper .qty-up{
  border-bottom: 1px solid #d9d9d9;
}
.qty-group .qty-wrapper .qty-up,
.qty-group .qty-wrapper .qty-down{
  position: relative;
  height: 100%;
  line-height: 38px;
  display: block;
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  border-left: 1px solid #eeeeee;
  cursor: pointer;
}
.qty-group .qty-wrapper .qty-up i,
.qty-group .qty-wrapper .qty-down i{
  position: absolute;  
  color: #000000;    
  right: 50%;
  top: 50%;
  margin-top: -5px;
  margin-right: -5px;
}
.qty-group .qty-wrapper .qty-up i:hover,
.qty-group .qty-wrapper .qty-down i:hover{
  color: #962808;
}
/*
.qty-group .qty-wrapper .qty-up i{
  bottom: 1px;
}
.qty-group .qty-wrapper .qty-down i{
  top: 1px;
}
*/
.selector-wrapper .icon-caret-down{
  position: absolute;
  right: 15px;
  top: 35%;
  color: #000000;
}

.product-information{
  padding-left: 20px;
  padding-right: 30px;
}
.product-information .relative{
  margin-top: 7px;
}
.product-information .sharing{
  margin-top: 17px;
  padding-top: 15px;
  position: relative;
  z-index: 0;
  clear: both;
}
.product-information h4.unmargin-top{
  margin-bottom: 13px;
}
.product-information .tags a{  
  font-size: 11px;    
  margin-top: 10px;
  margin-right: 5px;
  display: inline-block;
  *display: inline;
  zoom: 1;  
}
.product-information .tags a:hover{
  color: #000000;  
}
.product-information .relative li{
  font-size: 13px;
  padding-bottom: 0;
  font-size: 13px;
}
.product-information .relative a{
  font-weight: bold;
  font-size: 11px;
  color: #7a7a7a;
}
.product-information .relative a:hover{
  color: #000;
}
.product-information .tags a{
  color: #58AE3F;
  font-weight: 600;
}
.product-information .relative a:hover{
  color: #000000;
}
.product-information .relative .variants-wrapper select,
.product-information .relative .quantity-wrapper select{
  width: 100%;
  box-shadow: 0 !important;
}
.quantity-wrapper .wrapper{
  padding: 2px;  
  height: 25px;
  border: 1px solid #eeeeee;
}
.quantity-wrapper .wrapper .btn-block{
  border: 0 !important;
  height: 19px;
  line-height: 19px;
  padding-bottom: 5px\9;
}
.product-information .detail-price{  
  margin-bottom: 15px; 
  margin-top: 10px;
  padding-top: 25px;  
  border-top: 1px solid #eeeeee;
}
.product-information .price_sale{
  display: block !important;
  margin-bottom: 5px;
}

.product-information .price .money,
.product-information .price_sale .money{
  color: #3daebe;
  font-size: 30px;
  font-style: normal;
  font-weight: bold;    
}
.product-information .price_compare .money{
  color: #808080;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  margin-right: 5px;
}
.product-information .sold-out,
.product-information .unavailable{
  color: #808080;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
}
.product-information .selector-wrapper{
  margin-top: 5px;
}
.product-information .quantity-wrapper{
  margin-top: 7px;
}
.product-information .selector-wrapper{
  position: relative;
}
.product-information .selector-wrapper .fa{    
  position: absolute;
  right: 0;    
  padding: 5px 10px;
  font-size: 8px;
  color: #000;
}
.product-information .selector-wrapper .fa-caret-up{
  top: 50%;
  margin-top: -15px;
}
.product-information .selector-wrapper .fa-caret-down{
  top: 50%;
  margin-top: -6px;
}
.product-information .others-bottom{
  margin-top: 15px;
}
.product-information .selector-wrapper label,
.product-information .wrapper-title{
  color: #000000;
  font-size: 13px;
  display: inline-block;  
  text-align:left;
  text-transform: capitalize;
  font-size: 10px;
  min-width: 50px;  
}

.product-information .wrapper{
  display: inline-block!important;
  vertical-align: middle;
  float: none!important;
  width: 100px;
  padding: 2px 3px;
}
.product-information .quantity-wrapper .wrapper{
  width: 94px;
}
.product-information .wrapper select{
  padding: 0;
}
.product-image .product-image-thumb{
  margin-top: 10px;
  text-align: center;
}
.product-image .image-thumb{
  display: block;
  overflow: hidden;
  margin: 13px;
  border: 1px solid #000000;
}
.product-image .image-thumb.active:hover,
.product-image .image-thumb.active{
  border-color: #eeeeee !important;
  cursor: default;
}
.notouch .product-image .image-thumb:hover{
  border-color: #982909;
}
.product-image .image-thumb img,
.product-image .image-thumb:hover img{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.product-image .image-thumb img{
  opacity: 0.6;
  filter: alpha(opacity=60);   
  height: auto;
}
.product-image .image-thumb.active img,
.notouch .product-image .image-thumb:hover img{  
  opacity: 1;
  filter: alpha(opacity=100);
}
.product-image .main-image{
  display: block;
  text-align: center;
  position: relative;
}
.product-image .main-image div{
  top: 50%;
  margin-top: -25px;
  left: 50%;
  margin-left: -25px;
  width: 50px!important;
  height: 50px!important;
  background-color: #FFFFFF!important;
  opacity: 0.8;
  filter: alpha(opacity = 80);
}
.product-image .main-image .main-image-bg{
  top: 50%;
  margin-top: -25px;
  left: 50%;
  margin-left: -25px;
  width: 50px!important;
  height: 50px!important;
  background-color: #000000!important;
  opacity: 0.8;
  filter: alpha(opacity = 80);
  position: absolute;
  background-image: url(../img/loader.gif);
  background-position: 50% 50%;
  background-repeat: no-repeat no-repeat;
  display: none;
}
.product-image .owl-carousel .owl-wrapper-outer{
  z-index: 2002;
}
.product-image .owl-theme .owl-controls{
  position: absolute;
  width: 100%;
  height: 100%;
  top: -15px;
  left: 0;
  bottom: 0;
  right: 0; 
}
.product-image .owl-theme .owl-controls .owl-buttons > div{
  position: absolute;
  z-index: 9;
  top: -55px;
  margin-top: -3px;
  z-index: 2001;
}
.product-image .owl-theme .owl-controls .owl-buttons .owl-prev{
  right: 65px;
}
.product-image .owl-theme .owl-controls .owl-buttons .owl-next{
  right: 20px;
}
.product-image .owl-theme .owl-controls .owl-buttons .owl-prev i.fa{
  padding: 10px 10px 10px 7px;
}
.rel-container .owl-theme .owl-controls .owl-buttons > div:hover i,
.product-image .owl-theme .owl-controls .owl-buttons .owl-next:hover i,
.product-image .owl-theme .owl-controls .owl-buttons .owl-prev:hover i{
  color: #47b6c2;
}
.product-image #quick-shop-image .owl-theme .owl-controls .owl-buttons .owl-prev{
  right: auto !important;
}
#product{
  margin-bottom: 28px;
}
#product-actions .control-navigation{
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #eeeeee;
}
#product-actions .control-navigation .btn-next{
  float: right;
}
.rel-container{
  margin-top: 0px;
}
.rel-container .sb-title{
  background: #1e1e1e;
  border-radius: 3px;  
}
.rel-container .sb-title h4.content-title{
  color: #fff;
  font-size: 14px;
  margin: 0;
  padding: 7px 18px;
}
.rel-container .control-group{
  margin-bottom: 10px;
}
.rel-container .row-right .visible-grid{
  display: none!important;
}
.rel-container li .row-container{
  padding: 0 13px;
}
.rel-container .prod-related-wrapper{
  margin-left: -10px;
  margin-right: -10px;
}
.rel-container .prod-related .row-left{
  padding-top: 0;
}
.rel-container .owl-theme .owl-controls{            
  
  background: #4c4c4c;
  background: -moz-linear-gradient(top, #4c4c4c 0%, #3b3b3b 19%, #302e30 35%, #131313 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #4c4c4c), color-stop(19%, #3b3b3b), color-stop(35%, #302e30), color-stop(100%, #131313));
  background: -webkit-linear-gradient(top, #4c4c4c 0%, #3b3b3b 19%, #302e30 35%, #131313 100%);
  background: -o-linear-gradient(top, #4c4c4c 0%, #3b3b3b 19%, #302e30 35%, #131313 100%);
  background: -ms-linear-gradient(top, #4c4c4c 0%, #3b3b3b 19%, #302e30 35%, #131313 100%);
  background: linear-gradient(to bottom, #4c4c4c 0%, #3b3b3b 19%, #302e30 35%, #131313 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313', GradientType=0 );

  
  border-radius: 0 3px 3px 0;
  margin-right: 0;
  padding: 3.5px 5px;
  position: absolute;
  right: 0;
  text-align: right;
  top: -29px;
  width: auto;
}
.rel-container .owl-theme .owl-controls .owl-buttons > div{
  padding: 3px 6px;
}
.rel-container .prod-related .owl-controls .owl-buttons{
  position: relative;
}
.rel-container .prod-related .owl-controls .owl-buttons div i{  
  padding: 10px 15px;
  background: #000000;        
}
.owl-controls .owl-buttons div i{
  width: 35px;
  height: 45px;
  display: block;
}
#prod-related .owl-controls .owl-buttons div i{
  height: auto !important;
  padding: 0 !important;
  width: auto !important;
  background-color: transparent;
  font-size: 15px;
}
#prod-related .element .row-container{
  padding: 10px 15px 17px;
}
#prod-related .element .add-to-cart{
  width: 100%;
}
.owl-controls .owl-buttons div i.partner-prev{     
  background: url(../img/icons/prev1.png);
}
.owl-controls .owl-buttons div i.partner-next{     
  background: url(../img/icons/next1.png);
}

.owl-controls .owl-buttons div i:hover{  
  color: #000000;
}
.rel-container .prod-related .owl-controls .owl-buttons .owl-next,
.rel-container .prod-related .owl-controls .owl-buttons .owl-prev{
  position: absolute;
  top:0;  
}
.rel-container .prod-related .owl-controls .owl-buttons .owl-next{  
  right: -21px;
}
.rel-container .prod-related .owl-controls .owl-buttons .owl-prev{  
  left: 10px;
}
.zoomContainer{
  z-index: 2000;
  height: auto!important;
  width: auto!important;
}

/* Account */
.reset-page,
.login-page{
  padding-bottom: 250px;
}
.reset-page .row-left,
.login-page .row-left,
.reset-page .row-right
.login-page .row-right{
  padding-top: 13px; 
}
.reset-page .row-left,
.login-page .row-left{
  padding-right: 33px;
  padding-left: 40px;
  border-right: 1px solid #d9d9d9
}
.reset-page .row-right,
.login-page .row-right{
  padding-left: 23px;
}

.account-page,
.order-page,
.address-page,
.active-page,
.reset-page{
  padding-bottom: 210px;
}
.order-page{
  	padding-left: 20px;
  	padding-right: 20px;
}
#accounts .customer-accounts .customer-forgot{
  overflow: hidden;
}
#customer_orders .alert,
#customer_orders .wrap-table{
  margin-top: 27px;
}
#customer_orders .title-5{      
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  padding-top: 15px;
}
#customer_orders .btn_down{
  margin-top: -30px;
}
.manage-address{
  position: relative;
}
.set_default input{
  margin: 0;
  position: relative;
  top: 1px;
}
.address_table{
  margin-top: 25px;    
  padding: 0 !important;
}
.show.address_table{
  padding: 0;  
  box-shadow: none;
  -moz-box-shadow: none;
  -wibkit-box-shadow: none;
}
.show.address_table .edit_address{
  padding: 15px 20px 12px;
}
.show.address_table .address_info{
  padding-bottom: 8px;  
}
.address_table .set_default{
  position: relative;
  top: 4px;
}

#address_tables .row{
  margin-bottom: 20px;
}
.address_table .address_actions a{
  font-size: 11px;
  font-weight: normal;
  color: #000000
}
.address_table .address_actions .action_edit,
.address_table .address_actions .action_delete{  
  vertical-align: middle;
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
}
.address_table .address_actions .action_edit{
  margin: 0;
}
.address_table .address_actions .action_delete{
  margin: 0 0 0 38px;  
}
.address_table .address_actions .fa{
  font-size: 16px;
}
.address_table .address_actions .action_edit .fa{
  color: #58a300;
}
.address_table .address_actions .action_delete .fa{
  color: #3db0c1;
}
.address_table .address_actions .action_delete:hover a,
.address_table .address_actions .action_edit:hover a{
  color: #3db0c1;
}
.address_table .control-group.last .btn{
  margin-bottom: 10px;
}
.address_table .address_actions .btn:hover{
  background: #3db0c1;
}
#address_tables{
  padding: 0 10px;
}
#new-address{
  margin-left: 10px;
}

#customer_orders table tbody a:hover{
  color: #3db0c1;
}
#customer_orders table tbody a,
#customer_orders table tbody .total,
.order-detail .money{
  font-size: 13px;
}
#customer_orders table tbody .total{
  font-size: 13px;
}
#customer_orders h3{
  line-height: 20px;
  margin-bottom: 15px;
}
#customer_orders table td a{ 
  font-size: 13px;
}
#customer_login,
#recover-password .note{
  margin-top: 13px;
}
#recover-password .alert.alert-danger{
  margin-left: 0;
  margin-top: 30px;
}
#guest .note{  
  margin-bottom: 105px;
  margin-left: 10px;
}
.login-page .action{
  color: #818080;
  font-size: 10px;
  font-weight: bold;
}
.login-page .action:hover{
  color: #3db0c1;
}
.login-page .return{
  color: #3db0c1;
  font-weight: bold;
}
.login-page .return:hover{
  color: #000000;
}

.login-page #customer-login .wrapper-title span.h5{
  display: none;
}

#login-form .control-group a.btn-2{
  color: #ffffff;
}
#reset_password > .col-md-12{
  margin-left: 30px;
}
/* Contact Page */
.contact-page{
  padding-bottom: 265px;
}
.contact-page form {
	margin: 0 0 0 20px !important;
}
.contact-page #page-title{
  margin-bottom: 6px;    
}
.contact-page .title-1 .sub-title{
  width: 110px;
}
.address-page #page-title{
  padding-bottom: 10px;
}
.allcollections-page #page-title{
  padding-bottom: 10px;
  margin: 18px 0 10px 0;
}

.contact-form .alert{
  margin: 0 50px 20px 0;  
}
.contact-form button.btn{
  padding: 6.5px 20px !important;  
}
.contact-form button.btn-1{
  margin-top: 10px !important;
}
#contact_map img{
  max-width: none;
}
#contact_map_wrapper{
  border: 1px solid #d9d9d9;
  padding: 3px;
  margin-bottom: 36px;
  margin-left: 40px;
  margin-right: 0px;
}
#contact_map{
  width: 100%;
  height: 310px;
}
.contact-content{
  margin-bottom: 55px;
}
.contact-form .title-2{
  margin-top: -5px;
  margin-bottom: 16px;
}

#contact-form #message{
  height: 150px;
}

/* Mixc */
.product-ajax-cart .overlay_mask,
.product-ajax-cart .overlay_icon,
.product-ajax-cart .hoverBorderWrapper img,
.element .hoverBorder .hoverBorderWrapper img,
#prod-related .item .hoverBorder .hoverBorderWrapper img{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.customer-accounts .r-border{
  border-right: 1px solid ;
}
.customer-accounts .r-border .alert{
  margin-right: 20px;
}
.customer-accounts h3.title{
  margin-bottom: 15px;
}

.product-ajax-cart .overlay_mask{
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #000000;
  opacity: 1;
  filter: alpha(opacity=1);
  
  display: none;
}

#sandBox .element .hoverBorder:hover .overlay_icon,
#prod-related .item .hoverBorder:hover .overlay_icon,
.touch #sandBox .element .overlay_icon,
.touch #prod-related .item .overlay_icon{
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  opacity: 1;
  filter: alpha(opacity=100);
  text-decoration: none;
  font-weight: normal;
  font-style: normal;
}
.touch .overlay_mask{
  display: none;
}


/* Quick Shop */
.quick_shop{
  position: absolute;
  z-index: 10;
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop, .modal-backdrop.fade.in{
  background-color: #000000;
}
#quick-shop-modal.modal{
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  z-index: 2002 !important;
}
#quick-shop-modal .quick-shop-modal-bg{
  background: url(../img/loader.gif) no-repeat center;
  height: 100%;
  width: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
#quick-shop-modal .modal-content{  
  color: #818080;
}
#quick-shop-modal .modal-header .close{
  font-size: 12px;
  padding: 1px 2px;  
  color: #787878;
  line-height: normal;
  text-shadow: none;
  opacity: 1;
  filter: alpha(opacity=100);
}
#quick-shop-modal .modal-header{
  margin-top: -7px;
}
#quick-shop-modal .modal-header .close:hover{  
  color: #47b6c2;
}
#quick-shop-modal #quick-shop-title{
  margin: 0;
}
#quick-shop-modal #quick-shop-title a{
  color: #3db0c1;
  font-family: 'Roboto', sans-serif;
}
#quick-shop-modal #quick-shop-title a:hover{
  color: #3db0c1;
}
#quick-shop-modal .owl-carousel .owl-wrapper-outer{
  z-index: 10;
}
#quick-shop-modal .owl-theme .owl-controls{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#quick-shop-modal .owl-theme .owl-controls .owl-buttons > div{
  position: absolute;
  z-index: 20;
  top: 50%;
  margin-top: -27px;
  display: none;
}
#quick-shop-modal .owl-theme .owl-controls .owl-buttons .owl-prev{
  left: -8px;
}
#quick-shop-modal .owl-theme .owl-controls .owl-buttons .owl-next{
  right: -8px;
}
#quick-shop-modal .owl-theme:hover .owl-controls .owl-buttons .owl-next,
#quick-shop-modal .owl-theme:hover .owl-controls .owl-buttons .owl-prev{
  display: block;
}

/*
** Footer
*/
#footer{
  font-family: 'Open Sans', sans-serif;
}
#footer .footer-content-bottom{
  padding-top: 15px;
  padding-bottom: 5px;
}
#footer .footer-content-bottom,
#footer .footer-content-bottom a{
  font-size: 10px;
  text-transform: uppercase;
}

#footer-content .list-styled a:hover{
  padding-left: 5px;
}
#footer .title-3{
  font-size: 18px;
}
#footer h5{  
  margin-bottom: 8px;
}
#footer h5.title{
  margin-top: 13px;
}
#footer .footer-content-middle h5{
  margin-top: 21px;
  font-family: 'Roboto', sans-serif;
}

/*footer bottom*/
.footer_bottom{
  
  background-image: url(../img/footer_pattern.png);
  
  color: #a0a0a0;
  
  border-radius: 0 0 5px 5px;  
  margin-bottom: 150px;
  padding-bottom: 25px;
}
.footer-content-middle{
  padding: 0;
  margin: 0 -10px;
}
.footer-content-middle .wrap_linklist{
  margin: 0 -10px;
}
ul.contact_us li,
.footer-content-middle .wrap_linklist ul li{  
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  padding: 0;
}
ul.contact_us .address_span{
  display:block;
}
/*back ground blog*/
#widget-blog{
  background: rgb(37,34,37); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(37,34,37,1) 0%, rgba(36,33,36,1) 47%, rgba(36,33,36,1) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(37,34,37,1)), color-stop(47%,rgba(36,33,36,1)), color-stop(100%,rgba(36,33,36,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(37,34,37,1) 0%,rgba(36,33,36,1) 47%,rgba(36,33,36,1) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(37,34,37,1) 0%,rgba(36,33,36,1) 47%,rgba(36,33,36,1) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(37,34,37,1) 0%,rgba(36,33,36,1) 47%,rgba(36,33,36,1) 100%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(37,34,37,1) 0%,rgba(36,33,36,1) 47%,rgba(36,33,36,1) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#252225', endColorstr='#242124',GradientType=0 ); /* IE6-9 */
  
  padding-bottom: 26px;
  border-radius: 0 0 5px 5px;
}
/*end footer bottom*/

/*  Flickr  */
#flickr{
  padding-top: 5px;
}
#flickr li{
  padding-left: 0;
  padding-right: 10px;
  padding-bottom: 6px;
}
#flickr li a span{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 3px #ffffff inset;
  -webkit-box-shadow: 0 0 0 3px #ffffff inset;
  -moz-box-shadow: 0 0 0 3px #ffffff inset;
  
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#flickr li a{
  display: inline-block;
  position: relative;
}
#flickr li a:hover span{
  box-shadow: 0 0 0 2px #000000 inset;
  -webkit-box-shadow: 0 0 0 2px #000000 inset;
  -moz-box-shadow: 0 0 0 2px #000000 inset;
}
#flickr li img{
  max-width: 54px;
}

/* Social Icons */

}
#footer .footer_social_icons a:hover{
  color: #3db0c1;
}
.footer_social_icons ul.social_icons li a i{
  font-size: 18px;
  color: #a0a0a0;
}
.footer_social_icons ul.social_icons li a i:hover{
  color: #3db0c1;
}

/* Footer Menu */
#widget-linklist4 li{
  padding-left: 0;
  padding-top: 0;
  padding-right: 6px;
}
#widget-location ul,
#widget-linklist2 ul{
  margin-bottom: 0;
}

/* Payment method */
#footer #payments{
  text-align: right;
}
#footer #payments > li{ 
  padding: 0; 
  margin-left: 5px;
}
#footer #payments > li:first-child{
  margin-left: 0;
}
#footer .copyright p{
  margin: 0;
  margin-left: 20px;
}
#footer .copyright a,
#footer .copyright a:hover,
#footer .copyright a:focus{
  font-weight: normal;
  font-style: normal;
}
#footer .icons{
  display: block;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#footer .icons:hover{
  opacity: 1;
  filter: alpha(opacity=100);
}
#footer .icons.visa{
  background-position: 0px 0px;
  width: 42px;
  height: 18px;
}
#footer .icons.mastercard{
  background-position:-47px 0;
  width: 35px;
  height: 18px;
}
#footer .icons.amex{    
  background-position: -87px 0;
  height: 16px;
  width: 16px;
}
#footer .icons.paypal{   
  background-position: -111px 0;
  height: 18px;
  width: 62px;
}
#footer .icons.moneybookers{   
  background-position: -181px 0;
  height: 15px;
  width: 50px;
}

/* Newsletter */
#footer .newsletter{
  text-align: right;
  margin-bottom: 0;
  margin-top: 7px;
}
#footer .newsletter h5{
  margin-bottom: 0;
  margin-right: 9px;
}
#footer .newsletter #email-input{
  margin: 0;
  height: 36px;
  line-height: 16px;
}
#footer .newsletter .btn-3{
  font-size: 12px;
  padding: 10px 10px 10px;
  margin-left: 2px;
}
#footer #newsletter .mail_action form#mc-embedded-subscribe-form{
  background: #ffffff !important;
  border-radius: 4px;
  padding: 5.5px 90px 5.5px 5px;
  position: relative;     
  margin: 14px 0;   
  height: 30px;
}
#footer #newsletter .mail_action form#mc-embedded-subscribe-form input#email-input{
  width: 100%;
  border: 1px solid transparent;
  padding-left: 5px;
  line-height: 15px;
  box-shadow: none;
  appearance: none;
  -moz-appearance: none;		
  -webkit-appearance: none;
}
#footer #newsletter .mail_action form#mc-embedded-subscribe-form button.btooltip{
  width: 76px;  
  position: absolute;
  right: 0px;
  top: 0;
  border: 1px solid transparent;
  height: 30px;
  border-radius: 0 5px 5px 0;
  color: #000000;
  text-transform: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;  
  
  background: rgba(254,254,254,1);
  background: -moz-linear-gradient(top, rgba(254,254,254,1) 0%, rgba(209,209,209,1) 51%, rgba(226,226,226,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(254,254,254,1)), color-stop(51%, rgba(209,209,209,1)), color-stop(100%, rgba(226,226,226,1)));
  background: -webkit-linear-gradient(top, rgba(254,254,254,1) 0%, rgba(209,209,209,1) 51%, rgba(226,226,226,1) 100%);
  background: -o-linear-gradient(top, rgba(254,254,254,1) 0%, rgba(209,209,209,1) 51%, rgba(226,226,226,1) 100%);
  background: -ms-linear-gradient(top, rgba(254,254,254,1) 0%, rgba(209,209,209,1) 51%, rgba(226,226,226,1) 100%);
  background: linear-gradient(to bottom, rgba(254,254,254,1) 0%, rgba(209,209,209,1) 51%, rgba(226,226,226,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#e2e2e2', GradientType=0 );
  
}
#footer #newsletter .mail_action form#mc-embedded-subscribe-form button.btooltip:hover{
  color:#3db0c1;
}
#footer .widget-header{
  padding-bottom: 17px;
}

#footer .widget-header h4{
  color: #ffffff !important; 
  font-size: 14px;
  margin: 20px 0 3px;  
}
#footer .widget-header span{
  margin-bottom: 10px;
}
#footer .widget-header a{
  color: #ffffff;
  font-size: 10px;
  font-weight:bold;
}
#footer .widget-header a:hover{
  color: #a0a0a0;
}
.footer_categories{
  margin: 30px 20px 40px;
  text-align: left;
}
.footer_categories ul li{
  font-size; 11px;   
  padding: 0 5px 0 0;
}
.footer_categories ul li h5{
  color: #3db0c1;
  font-family: 'Roboto', sans-serif;
}
#footer .footer_categories ul li a{
  color: #a0a0a0;
  font-size: 11px;
  font-family: 'Roboto', sans-serif;
  padding-right: 7px;
}
#footer .footer_categories ul li a:hover{
  color: #3db0c1;
}
#footer .footer_categories ul li a,
#footer .footer_categories ul li h5,
.footer_categories ul li{
  margin: 0 ;
}
.footer_categories ul li:last-child a{
  border-right: 0px;
}
/* jGrowl */
div.jGrowl div.jGrowl-notification div.jGrowl-close i{
  font-size: 12px;
  margin: 10px 5px 5px 5px;
  padding: 1px 2px;  
  color: #787878;
}
div.jGrowl div.jGrowl-notification div.jGrowl-close i:hover{  
  color: #a52e0a;
}
div.jGrowl div.jGrowl-notification div.jGrowl-close{
  top: -6px;
  right: 0px;
  left: auto;
}
div.jGrowl div.jGrowl-notification .jGrowl-title{
  color: #3db0c1;
  font-size: 13px;
  text-transform: none;
  font-weight: bold;
}
div.jGrowl div.jGrowl-notification .jGrowl-title:hover{
  color: #3db0c1;
}
div.jGrowl div.jGrowl-notification .jGrowl-title,
div.jGrowl div.jGrowl-notification .jGrowl-note{
  left: 10px;
  position: relative;
}
div.jGrowl div.jGrowl-notification, 
div.jGrowl div.jGrowl-closer{
  -webkit-border-radius: 5;
  -moz-border-radius: 5;
  border-radius: 5;
}

/* Scroll to top */
#scroll-to-top{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -moz-backface-visibility: hidden;
  
  opacity: 0;
  filter: alpha(opacity=0);
  position: fixed;
  right: -50px;
  bottom: 10px;
  z-index: 1000;
  display: block;
  cursor: pointer;
  text-align: center;
}
.touch #scroll-to-top{
  display: none;
}
#scroll-to-top i{
  opacity: 0.6;
  filter: alpha(opacity=60);
  font-size: 23px;
  padding: 5px 12px 8px;
  background: #ececec;
  color: #787878;
  display: block;
}
#scroll-to-top i:hover{
  opacity: 1;
  filter: alpha(opacity=100);
  background: #a52e0a;
  color: #ffffff;
}
#scroll-to-top.on {
  right: 10px;
  opacity: 1;
  filter: alpha(opacity=100);
}
#scroll-to-top.off {
  right: -60px;
}

/* Typography */
.normal-page{
  padding-bottom: 150px;    
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.row-typo{
  margin-left: 0;
  margin-right: 0;
}
.typo .heading{
  margin-left: 10px;
  padding-left: 15px;
}
.typo .demo{
  margin: 27px 0 23px;
}
.typo .demo1{
  margin: 30px 0 23px;
}
.typo .demo,
.typo .demo1{
  
  padding: 11px 20px;
  background: #000;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  margin-left: -20px;
  border-radius: 0 3px 3px 0;
  font-weight: 600;  
}
.typo table,
.typo blockquote{
  margin-bottom: 20px;
}
.req{
  color: #f55856;
}

/* Page 404 */
.page-404{
  padding-bottom: 200px;
}
.page-404 .row{
  margin:0;
  padding: 0 10px;
}
.page-404 .btn{
  margin: 0;
}
.page-404 .search-form .search-submit{
  top: 3px;
}
.page-404 .search-form input{
  line-height: 16px;
  padding: 0 30px 0 10px;
}
.page-404 .search-form .search-submit{
  position: absolute;
  top: 0;
  right: 0;
  padding: 8.8px 10px !important;
  border-radius: 0;
}

.search-404{
  vertical-align: middle;
}


.fancybox-opened{
  z-index: 999999;
}

/*ACCOUNT*/
.product-page #page-title,
.account-page #page-title{
  padding-bottom: 10px;
  margin-bottom:32px;
}
#customer_detail{
  margin-top: 10px;
}
#customer_detail li address{
  margin-bottom: -22px;
}
#customer_detail address div{
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 5px;
  border: 0;
}
#customer_detail address div.address{
  padding-bottom: 0;
}
.sidebar  #customer_detail li:last-child{
  text-align: left;  
  padding-top: 10px;
}
.sidebar  #customer_detail button#view_address{
  margin-left: 10px;
}
.sidebar .sb-wrapper{
  margin-bottom: 40px;
}

/*END ACCOUNT*/
/*tag*/
#tabs-content:after{
  clear: both;  
}
#tabs-content{
  *zoom: 1;
  margin-bottom: 0;
}
#tabs-content:before,
#tabs-content:after {
  display: table;
  content: "";
  line-height: 0;
}

#tabs-content li{
  float: left;
  margin-right: 40px;  
  border:2px solid transparent;  
}
#tabs-content li h2 a{
  color:#818080;
}
#tabs-content li:hover{
  border-bottom: 2px solid #982909;
}
#tabs-content li:hover h2 a{
  color: #000000;
}
/*edn tag*/
/*BLOG*/
#widget-newsletter{  
  padding: 28px 0 38px;  
}
#widget-newsletter ul{
  margin: 0;
  height: 50px;  
}
#widget-newsletter ul li{
  line-height: 30px;
  height: 30px;
  font-family: 'Open Sans', sans-serif;
}
#widget-newsletter ul li .btn{
  padding: 8px 10px;
}
#widget-newsletter .form-control{
  width: 535px;
  line-height: 30px;
  height: 42px;
  padding-top: 4px;
  padding-bottom: 4px;  
}
#widget-contact .widget-wrapper{
  max-width: 70%;
  margin: 0 auto;
}
.footer-content-middle h5{
  color: #47cbde;
}
#widget-contact h1 span{  
  font-size: 20px;
  margin-bottom: 1px;
  display: block;
  font-weight: normal;
}
#widget-contact li.info{
  padding-top: 11px;
  padding-bottom: 8px;
  line-height: 1.3em;
}
#widget-contact ul li{
  color: #000000;
  font-family: 'Open Sans', sans-serif;
}
#widget-contact ul li.address,
#widget-contact ul li.email,
#widget-contact ul li.support{  
  padding: 0;
}
#widget-contact ul li .contact-title{
  color: #818080;
}
#widget-contact ul li i.contact-title{
  margin: 0 5px;
}
/*END BLOG*/
/*create_customer*/
.re_script{
  margin-bottom: 30px;
}
.re_script p{
  line-height: 16px;
  margin-bottom: 3px;
  font-size: 11px;
  
}

.register-page{
  margin-bottom: 250px;
}
.register-page #page-title{
  padding: 0;
  margin-bottom: 15px;
  font-size: 16px;  
}
a.register{
  font-size: 10px;
  font-weight: bold !important;
  margin-top: 5px;  
}
/*end create_customer*/
/*top-below-nav*/
.top-navigation{
  height: 41px;
  position: relative;
  z-index: 1;
}
.top-below-nav ul{
  margin: 0;
}

.top-below-nav ul li:last-child{
  margin-right: 0;
}
.top-below-nav ul li a:hover span{
  color: #3db0c1;
}
.top-below-nav ul li a{  
  font-weight: bold;  
}
.top-below-nav ul li span{
  color: #828282;
  display: block;
  font-size: 11px;
  line-height: 10px;
}
.top-below-nav ul li a span{
  color: #3db0c1;
  display: inline-block;
  display: inline;
  zoom: 1;
  font-size: 14px;
  font-weight: bold;
}
.top-below-nav .social{
  float: right;
  width:47%;
  margin: 2px 0 2px;
}
.top-below-nav .social ul li{  
  margin-top: 10px; 
  margin-bottom: 10px; 
}
.top-below-nav .social ul li a img:hover{
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  opacity: .75;
}
.top-below-nav .sub_menu{
  float: left;
  width:52%;  
  position: relative;
}
.top-below-nav .sub_menu ul{   
  padding: 12px 0;
}
.top-below-nav .sub_nav{
  width: 43px;
  height: 50px;
  background-image: url(../img/icon1.png);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.top-below-nav .social li a{
  display: block;  
}
.top-below-nav .social li:last-child{
  margin-right: 10px;
}
.gr-below-nav .container{
  position: relative; 
  padding-left: 0;
  padding-right: 0;  
}
/*end top-below-nav*/
/*support*/
.top-support{
  margin-top: 30px;
}
.top-support .support{
  text-align: right;
  margin: 0 -8px 10px 0!important;
}
.top-search{
  margin-right: 2px;
}
.top-support .support .line{  
  border-right: 1px solid #ffffff;
  
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
  
  display: inline-block;
  zoom: 1;
  height: 10px;
  line-height: 10px;
  top: 2px;
  position: relative;
}
.top-support .support a,
.top-support .support span{
  color: #ffffff;
  text-transform: uppercase;
  font-size: 10px;
  padding-left: 0;
  padding-right: 0;  
  font-weight: bold;
}
.top-support .support a{
  margin-right: 0px;
}
.top-support .support span{
  margin-right: 5px;
}
.txt_color{
  color: #44cfe4 !important;
}
/*end support*/
/*footer bottom*/
.wrap_bot{
  margin: 0 10px;
}
.footer_bot_info{
  font-size: 10px;
  line-height: 1.2em;
}
.footer_bot_info a,
.footer_bot_info div{
  color: #a0a0a0;  
}
#bottom{
  position: relative;
}
#bottom .container{
  background: #ffffff;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.2);
  box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.2);
}
/*end er bottom*/

/*fix*/
.navbar-collapse{
  margin: 0 -10px;
}
.templateIndex #content-wrapper-parent{
  padding-top: 54px;  
}
.info_caption{
  padding: 10px 0 10px 10px;  	
  border-left: 1px solid #818080;  
  margin-left: -10px !important;
}
.share_article{
  margin: 30px 0 20px !important;
}
.share_article span.txt{
  float:left;
  font-size: 10px;
  font-weight: bold;
  margin-right: 10px;
}
.share_article .sharing{
  float: left;
}
/*end fix*/
/*register-form*/
#register-form li{  
  margin-bottom: 9px;      
  padding: 0 20px;
}
#register-form button.btn-1{
  margin-top: 5px;
}
/*end register-form*/

/*templateListCollections*/
.templateListCollections .sidebar{  
   border-radius: 0;    
   position: relative;
   background-color: transparent;
   padding-top: 0;
}
.allcollections-page ul#collections li{
   margin-right: 30px;
}

ul#collections{
  margin-right: -37px;
}
/*end templateListCollections*/
/*slider*/

.responsive-slider .slides{
  overflow: hidden;
}
#collect-slider .responsive-slider .slides{
  border-radius: 5px;  
}
.responsive-slider .slides ul li{
  padding: 0;
}
#collect-slider .responsive-slider .slides ul li .slide-body{
  border-radius: 5px;
}
#home-slider .responsive-slider .slides ul li .slide-body,
#home-slider .responsive-slider .slides{
  border-radius: 0px;
}
/*slider banner*/
/*title sidebar*/
.sb-wrapper .sb-title,
.sb-wrapper .sb-title.box{
  border-radius: 5px;
  padding: 24px 10px 5px;
  background-color: #000000;
  border-color: #000000;
}
.sb-title.box.featured_game{
  background-color: #a92e0a;
  border-color: #a92e0a;
}
.sb-wrapper .sb-title,
.sb-title.box.text_widget{
  background-color: #3db0c1;
  border-color: #3db0c1;
}
.templateBlog .sb-wrapper .sb-title,
.templateBlog .sb-title.box.text_widget,
.templateArticle .sb-wrapper .sb-title,
.templateArticle .sb-title.box.text_widget{
  background-color: transparent;
  border-color:  transparent;
}
.templateBlog .sb-wrapper .sb-title,
.templateArticle .sb-wrapper .sb-title{
  padding: 0;
}
/*end title sidebar*/
/*bg-left & right*/

a#bg-left,
a#bg-right{
  display: block;
  position: fixed;
  top: 50%;
  margin-top: -132px;
  z-index: 0;
}
a#bg-left{
  left: 40px;
}
a#bg-right{     
  right: 40px;
}

.top-below-nav{
  position: relative;
}
/*end bg-left & right*/
/*tab*/
#tabs_container{    
  background: #2b2b2b;
  background: -moz-linear-gradient(top, #2b2b2b 0%, #1f2020 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #1f2020));
  background: -webkit-linear-gradient(top, #2b2b2b 0%, #1f2020 100%);
  background: -o-linear-gradient(top, #2b2b2b 0%, #1f2020 100%);
  background: -ms-linear-gradient(top, #2b2b2b 0%, #1f2020 100%);
  background: linear-gradient(to bottom, #2b2b2b 0%, #1f2020 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b2b2b', endColorstr='#1f2020', GradientType=0 );

  text-align: center;
}
#tabs_container ul#tabs{
  margin-bottom: 0;  
}
#tabs_container{
  position: relative;
  margin-bottom: 21px;
}
#tabs_container:before{
  position: absolute;
  top:0;
  height: 1px;
  width: 100%;
  background: #373737;
  content: '';
}
#tabs_container ul#tabs li{
  display: inline-block;
  *display: inline;
  zoom: 1;
  padding: 10px 15px;
}
#tabs_container ul#tabs li.active:hover,
#tabs_container ul#tabs li.active:hover a{
  cursor: default;
}
#tabs_container ul#tabs li.active,
#tabs_container ul#tabs li:hover{  
  background: #f1f1f1;
  background: -moz-linear-gradient(top, #f1f1f1 0%, #ffffff 50%, #f0f0f0 51%, #fefefe 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #f1f1f1), color-stop(50%, #ffffff), color-stop(51%, #f0f0f0), color-stop(100%, #fefefe));
  background: -webkit-linear-gradient(top, #f1f1f1 0%, #ffffff 50%, #f0f0f0 51%, #fefefe 100%);
  background: -o-linear-gradient(top, #f1f1f1 0%, #ffffff 50%, #f0f0f0 51%, #fefefe 100%);
  background: -ms-linear-gradient(top, #f1f1f1 0%, #ffffff 50%, #f0f0f0 51%, #fefefe 100%);
  background: linear-gradient(to bottom, #f1f1f1 0%, #ffffff 50%, #f0f0f0 51%, #fefefe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f1f1', endColorstr='#fefefe', GradientType=0 );
  border-radius: 5px 5px 0 0;
  
  position: relative;  
}
#tabs_container ul#tabs li.active:before,
#tabs_container ul#tabs li:hover:before{  
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  border-radius:5px 5px 0 0;
}
#tabs_container ul#tabs li a{
  color: #fff;  
  font-weight: bold;
  font-size: 12px;
}
#tabs_container ul#tabs li.active a,
#tabs_container ul#tabs li:hover a{
  color: #000;
}
/*end tab*/
/*main slider*/
.caption.header{
  width: 30%;
}
.slide-price span{
  font-size: 26px;
  padding-right: 10px;
}
.slide-price span,
.slide-price a{
  display: block;
  float: left;
  width: 95px;
  line-height; 30px;  
}
.slide-price a{
  color: #ffffff;
  border-left: 1px solid #818080;
  font-size: 10px;
  text-transform: uppercase;
  padding: 0 10px;  
}
.slide-price a:hover{
  color: #47cbde;
}
.responsive-slider .caption.header .caption1{    
  white-space: normal;
  font-family: arial;
  font-size: 12px;
  font-weight: normal;    
  line-height: 15px;
  margin-bottom:17px;
}
.responsive-slider .caption.header .heading{
	top: 0;
  	margin-bottom:5px; 
}
.responsive-slider .caption.header .heading a{
  font-size: 26px;
  line-height: 30px;
}
.responsive-slider .caption.header .heading span:hover{
  color: #fff !important;
}
.responsive-slider .slides ul li .slide-body .caption{
  top: 24%;
  left: 20px;
}
/*end main slider*/

/*templateIndex submenu*/
.templateIndex .gr-below-nav .container{
  background-color: transparent;
}
.gr-below-nav .container .top-below-nav{
  background: #000000;
  height: 50px;
}
.top-below-nav ul li{
  padding: 0; 
  margin-left: 20px;
  margin-right: 0px;
}
.templateIndex .top-below-nav .sub_menu ul{
  padding: 12.1px 0;
}
.templateIndex .top-below-nav .sub_nav{
  right: -43px;
}
.templateIndex #content-wrapper-parent{
  padding-top: 0;
}
.templateIndex .home_below_nav{
  position: absolute;
  top: 0;
  width: 52%;
}
.templateIndex .top-below-nav .sub_menu{
  width: 100%;
}
/*end templateIndex submenu*/

/*button slider*/
#home-slider{
  position: relative;
}
.control-slideshow{
  background-image: url(../img/icon2.png);  
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;  
}
.responsive-slider .slider-control {
    background-color: transparent;
    color: #fff;
    font-size: 40px;
   	margin-right: 19px;
    position: inherit;
    top: auto;  
  	padding: 0;
}
.responsive-slider .slider-control:hover{
  color: #3db0c1;
}

.control-slideshow .control{
  background: transparent;
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-left: 44px;  
}

/*end button slider*/
#tabs_content_container{
  overflow: hidden;  
}
.content_tabs{
  margin-left: -20px;
  margin-right: -20px;  
}
.support .line{
  background: transparent;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
.content_tabs ul li form a.hoverBorder{
  padding: 0 10px;
}
.content_tabs ul li form ul li .group_info{
  padding: 0 10px;
}
.content_tabs ul li{
  margin-bottom: 0px;
  padding-bottom: 0;  
  vertical-align: top;
}
.content_tabs ul li>ul>li{
  width: 100%;
}
.content_tabs ul li button.add-to-cart{
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.content_tabs ul li a.title-5,
.fprod-title a.title-5{
  font-size:12px;
  color: #3db0c1;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}

.content_tabs ul li a.title-5:hover,
.fprod-title a.title-5:hover,
.element li .group_info a.title-5:hover{
  color: #3db0c1;
}
/*home-platforms*/
#home-platforms header.control-group{
  margin-bottom: 10px;
}
#home-platforms .platforms-title .sb-title{
  color: #000000;
  font-weight: bold;
  font-size: 14px;
  margin: 20px 0 5px !important;  
  float: left;
  width: 100%;
}
#home-platforms .platforms-title > div{
  float: left !important;
  width: 100% !important;
  margin-bottom: 20px !important;  
}
#home-platforms header.control-group a{
  float: right;
}
#home-platforms header.control-group a:hover{
  color:#3db0c1;
}
#home-platforms header.control-group .sb-title{
  text-align: left;
}
#home-platforms header.control-group a,
#home-platforms header.control-group .sb-title{
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}
#home-platforms header.control-group .platforms-wrapper-title{    
  padding: 11.2px 10px;
  margin: 0 10px;    
  border-radius: 5px;  
  position: relative;  
}
#home-platforms header.control-group .platforms-wrapper-title:before{  
  width: 100px;
  height: 39px;
  position: absolute;
  content:'';
  z-index: 0;
  top: 0;
  left: 0;
}
#home-platforms header.control-group .platforms-wrapper-title:after{  
  width: 90px;
  height: 39px;  
  position: absolute;  
  top: 0;
  right: 0;
  content: '';
}

#home-platforms header.control-group-1 .platforms-wrapper-title{  
  background-image: url(../img/center1.png);
}
#home-platforms header.control-group-1 .platforms-wrapper-title:before{
  background-image: url(../img/before1.png);
}
#home-platforms header.control-group-1 .platforms-wrapper-title:after{
  background-image: url(../img/after1.png); 
}


#home-platforms header.control-group-2 .platforms-wrapper-title{  
  background-image: url(../img/center2.png);
}
#home-platforms header.control-group-2 .platforms-wrapper-title:before{
  background-image: url(../img/before2.png);
  width: 90px;
}
#home-platforms header.control-group-2 .platforms-wrapper-title:after{
 background-image: url(../img/after1.png);   
}

#home-platforms header.control-group-3 .platforms-wrapper-title{  
  background-image: url(../img/center3.png);
}
#home-platforms header.control-group-3 .platforms-wrapper-title:before{
  background-image: url(../img/before3.png);
  width: 124px;
}
#home-platforms header.control-group-3 .platforms-wrapper-title:after{
  background-image: url(../img/after1.png);   
}


#home-platforms .platform_shop a.btn_shop_Accessories,
#home-platforms .shop_platform a.btn_shop_platform{
  background: #66a93f;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  border-radius: 5px;
  border: 1p solid #65a73e; 
  text-transform: uppercase;
  position: relative;    
}
#home-platforms .platform_shop a.btn_shop_Accessories{
   padding: 9px 18px;
}
#home-platforms .shop_platform a.btn_shop_platform{
   padding: 9px 24px;
}
#home-platforms .shop_platform,
#home-platforms .platform_shop{
  height: 35px;
  line-height: 30px;
}
#home-platforms .platform_shop a.btn_shop_Accessories:before,
#home-platforms .shop_platform a.btn_shop_platform:before{
 	background: none repeat scroll 0 0 #FFFFFF;
    content: "";
    height: 1px;
    left: 5px;
    margin: 0 auto;
    opacity: 0.2;
    position: absolute;
    top: 1px;
    width: 93%;  
}
#home-platforms .platform_shop a.btn_shop_Accessories{    
  background: #464646;
  background: -moz-linear-gradient(45deg, #464646 0%, #2e2f2e 57%, #0c0c0c 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #464646), color-stop(57%, #2e2f2e), color-stop(100%, #0c0c0c));
  background: -webkit-linear-gradient(45deg, #464646 0%, #2e2f2e 57%, #0c0c0c 100%);
  background: -o-linear-gradient(45deg, #464646 0%, #2e2f2e 57%, #0c0c0c 100%);
  background: -ms-linear-gradient(45deg, #464646 0%, #2e2f2e 57%, #0c0c0c 100%);
  background: linear-gradient(45deg, #464646 0%, #2e2f2e 57%, #0c0c0c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#464646', endColorstr='#0c0c0c', GradientType=1 );
}

#home-platforms .shop_platform a.btn_shop_platform_1{  
  background: #78b946;
  background: -moz-linear-gradient(left, #78b946 0%, #78b946 47%, #509433 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #78b946), color-stop(47%, #78b946), color-stop(100%, #509433));
  background: -webkit-linear-gradient(left, #78b946 0%, #78b946 47%, #509433 100%);
  background: -o-linear-gradient(left, #78b946 0%, #78b946 47%, #509433 100%);
  background: -ms-linear-gradient(left, #78b946 0%, #78b946 47%, #509433 100%);
  background: linear-gradient(to right, #78b946 0%, #78b946 47%, #509433 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#78b946', endColorstr='#509433', GradientType=1 );
}
#home-platforms .shop_platform a.btn_shop_platform_2{ 
  background: #ad2c0c;
  background: -moz-linear-gradient(left, #ad2c0c 0%, #902508 47%, #962709 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #ad2c0c), color-stop(47%, #902508), color-stop(100%, #962709));
  background: -webkit-linear-gradient(left, #ad2c0c 0%, #902508 47%, #962709 100%);
  background: -o-linear-gradient(left, #ad2c0c 0%, #902508 47%, #962709 100%);
  background: -ms-linear-gradient(left, #ad2c0c 0%, #902508 47%, #962709 100%);
  background: linear-gradient(to right, #ad2c0c 0%, #902508 47%, #962709 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ad2c0c', endColorstr='#962709', GradientType=1 );
}
#home-platforms .shop_platform a.btn_shop_platform_3{  
  background: #46b6c0;
  background: -moz-linear-gradient(left, #46b6c0 0%, #279ca9 47%, #289daa 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #46b6c0), color-stop(47%, #279ca9), color-stop(100%, #289daa));
  background: -webkit-linear-gradient(left, #46b6c0 0%, #279ca9 47%, #289daa 100%);
  background: -o-linear-gradient(left, #46b6c0 0%, #279ca9 47%, #289daa 100%);
  background: -ms-linear-gradient(left, #46b6c0 0%, #279ca9 47%, #289daa 100%);
  background: linear-gradient(to right, #46b6c0 0%, #279ca9 47%, #289daa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#46b6c0', endColorstr='#289daa', GradientType=1 );

}
.platform_shop a.btn_shop_Accessories:hover,
#home-platforms .shop_platform a.btn_shop_platform:hover{
  opacity: 0.85;    
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#279ca9', endColorstr='#279ca9', GradientType=1 );
  
}
/*end home-platforms*/

/*home-block*/
#home-block .block-image a{
  display: block;  
}
#home-block .block-image a.image-1,
#home-block .block-image a.image-3,
#home-block .block-image a.image-5{
  padding: 0 0 0 10px;
}
#home-block .block-image a.image-2,
#home-block .block-image a.image-4,
#home-block .block-image a.image-6{
  margin-top: 7px;
}
.home_products .fprod-title a{
  color: #3db0c1;
  font-size: 12px;
  font-weight: bold;
}
.home_products .fprod-title a:hover{
  color: #3db0c1;
}
.home_products a.col-title,
#prodcoll a.col-title{
  font-weight: bold;
  color: #a0a0a0;
  font-size: 10px;
  padding-left: 0;
}
.home_products a.col-title:hover,
#prodcoll a.col-title:hover{
  color: #3db0c1;
}
.home_products .product-price a,
.home_products .product-price span{  
  font-weight: bold;
}
.price_sale span{
  color: #000000;
}
.price_compare span{  
  color: #808080;
}

/*end home-block*/

/*sidebar*/
.templateArticle .sidebar,
.templateBlog .sidebar{
  padding-top: 20px;
  position: absolute;  
  top: 0;
  right: 0;
  background-color: #000000;
}
.templateArticle .r_sidebar,
.templateBlog .r_sidebar{
  position: relative;
}
.templateArticle .sidebar .arrow_top,
.templateBlog .sidebar .arrow_top,
.templateArticle .sidebar .arrow_bottom,
.templateBlog .sidebar .arrow_bottom{
  position: absolute;
  right: 0px;
  width: 5px;
  height: 5px;
  display: block;
}
.templateArticle .sidebar .arrow_top,
.templateBlog .sidebar .arrow_top{
  top: -5px;
  background: url(../image/icons/arrow1.png) no-repeat 0 0;
}
.templateArticle .sidebar .arrow_bottom,
.templateBlog .sidebar .arrow_bottom{
  bottom: -5px;
  background: url(../image/icons/arrow1.png) no-repeat -5px 0px;
}
.templateProduct .group_breadcrumb,
.templateArticle .group_breadcrumb,
.templateBlog .group_breadcrumb,
.templateCollection .group_breadcrumb{
  margin-bottom: 20px;
}

.featured-products li{
  padding-bottom: 17px;
  padding-top: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.featured-products li.last{
  border-bottom: none;
  padding-bottom: 0px;
}
.featured-products li:first-child{
  padding-top: 10px;  
}
.featured-products li:last-child{
  border-bottom: 0px;
  padding-bottom: 0px;
}
/*end sidebar*/

/*header_home_products*/
.header_home_products{ 
  line-height: 23px;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 50%, #f0f0f0 50%, #ffffff 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff), color-stop(50%, #f6f6f6), color-stop(50%, #f0f0f0), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #ffffff 0%, #f6f6f6 50%, #f0f0f0 50%, #ffffff 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f6f6f6 50%, #f0f0f0 50%, #ffffff 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f6f6f6 50%, #f0f0f0 50%, #ffffff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f6f6f6 50%, #f0f0f0 50%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );

  padding: 8px 0;
  margin-bottom: 15px;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  position: relative;
  height: 40px;   
}
.header_home_products:before{
  content: '';
  border-top: 1px solid #fff;
  position: absolute; 
  left: 0;
  width: 100%;
  height: 1px;      
  top: -2px; 
}
.header_home_products:after{
  content: '';
  border-bottom: 1px solid #fff;
  position: absolute; 
  left: 0;
  width: 100%;
  height: 1px;      
  bottom: -2px; 
}
.header_home_products .sb-title{
  font-size: 14px;
  font-weight: bold;
  padding-left: 20px;
}
/*end header_home_products*/
/*home-block*/
#home-block{
  margin-bottom: 50px;
}
.platforms_products_wrapper{
  padding-bottom: 20px;
  position: relative;
}
.platforms_products_wrapper:before{
  content:'';
  height: 1px;
  background: #e6e6e6;
  position: absolute;
  bottom: 5px;
  left: 5%;
  width: 75%;
  
  -webkit-box-shadow: 2px 1px 3px 0px rgba(213,210,210,1);
  -moz-box-shadow: 2px 1px 3px 0px rgba(213,210,210,1);
  box-shadow: 2px 1px 3px 0px rgba(213,210,210,1);

}
.platforms_products_wrapper:after{
  content:'';
  height: 1px; 
  position: absolute;
  bottom: 4px;
  left: 5%;
  width: 75%;
}

/*end home-block*/
div.jGrowl div.jGrowl-closer,
div.jGrowl div.jGrowl-notification{
  border-color: #000;
  color: #fff;
  background: #000;
}
.top-support ul.support li a,
#umbrella .num-items-in-cart span{    
  display: inline-block;
  *display: inline;
  zoom:1;
  line-height: 20px !important;
  color: #ffffff;
} 
#partners{
  padding: 0 50px;
}
/*fixed*/
div.jGrowl div.jGrowl-notification div.jGrowl-message .col-md-16{
  margin-left: -20px;
}
.customer_address .btn-4{
  	font-size: 11px;
}
#partners .tooltip.top{
  left: 1px !important; 
  font-weight: bold;
  top:-30px !important;
}

.article img{
  max-width: 100%;
}
.sidebar p,
.sidebar a{
  padding-left: 10px;
}
.sidebar a.col-title{
  padding-left: 0px;
}

#collect-slider .pages{  	
    top: 20px;
    right: 20px;   
    text-align: right;
  	width: auto;
}
.responsive-slider .pages .page{
  	border-width: 4px;
  	margin: 0 2px;
}
.sidebar .product-wrapper button.add-to-cart{
  	width: 100%;
  	padding-left: 0;
  	padding-right: 0;
}
.about-us{
  padding-left: 40px;
  padding-right: 40px;
}

.typography .wrap-table{
  padding-right: 20px;
}
.typo blockquote{
  	margin-right: 20px;
}

.hideControls .slider-control .btn-label{
 	display: none !important;
}
.collection-page .container-nav ul li{
  line-height: 20px !important;
}

form .alert{
  margin-left: 60px;
  margin-right: 60px;
}
#customer-login{
  padding-left: 10px;
}
#customer-login form .alert{
  margin-left: 10px;
}
#guest .wrapper-title{
  padding-left: 10px !important;
}
#customer-login .wrapper-title span.h5,
#guest .wrapper-title span.h5{
  color: #3db0c1;
  font-weight: 600;
}
#customer-login .wrapper-title span.h5{
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
.alert-danger a:hover{
  
}
/*end fixed*/
.alert-danger a{
  color: #fff;
}
.errors ul li a:hover{
  color: #000000;
}

.wrapper-title .line {    
    box-shadow: none;
    
}
.login-page #recover-password .wrapper-title{
  margin-right: 10px;
}
ul.login-wrapper li:last-child{
  padding-left: 0;
}
.responsive-slider .pages .page.active{
  cursor: default;
}
.element form li.row-right .group_info{
  margin-top: 10px;
}
.full_width.element form li.row-right .group_info{
  margin-top: 0px;
}
.platforms-price{
  font-size: 26px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}
.platforms-from{
  font-weight: 600;
  margin-bottom: 5px;
}
.platforms-caption{
  margin-bottom: 8px;
  font-weight: 600;
}
#home-platforms .shop_platform, #home-platforms .platform_shop{
	text-align: right;
}
.platforms-item .group-platform{  
  text-align: left;  
  padding-left: 46px;
}
#home-platforms .shop_platform, #home-platforms .platform_shop{
	text-align: right;
}
.platforms-item .group-platform{  
  text-align: left;  
  padding-left: 46px;
}
#home-block .block-image a.image-2, #home-block .block-image a.image-4, #home-block .block-image a.image-6{
  text-align: right;
  padding-right: 10px;
}
#home-platforms .platform_shop a.btn_shop_Accessories{
   padding: 9px 13px;
}
#home-platforms .shop_platform a.btn_shop_platform{
   padding: 9px 19px;
}
/*
** CODESPOT customize
*/
/* Large desktop */
@media (min-width: 1200px) { 
  #guest{
    margin-left: -10px;
  }
  /* Collection */
  #sandBox > li.element{
    margin: 0;
    width: 20%;    
  }
  .normal-page .page-about{
    max-width: 87.5%;
    margin: 0 auto;
  }
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 991px) { 
  #tabs_content_container{
    width: 100%;
    margin: 10px 0 0 0;
  }
  #tabs_content_container .content_tabs ul{
    margin-left: 0;
  	margin-top: 10px;
  } 
	
  
}
@media only screen and (max-device-width: 1024px) {
  .image-boxes .hoverBorder .hoverBorderWrapper .theHoverBorder,
  .hoverBorder .hoverBorderWrapper .theHoverMore,
  .hoverHomeBackgroundWrapper .details>.bg,
  .hoverHomeBackgroundWrapper .hover .theHover,
  .hoverBorder .hoverBorderWrapper .theHoverBorder,
  .hoverBackgroundWrapper .hover .theHover,
  .hoverBackgroundWrapper .details>.bg,
  .navbar .hoverMenuWrapper > li > a > .bg-down{
    display: none;
  }
  
  .hoverBackgroundWrapper a:hover .details h4,
  .hoverHomeBackgroundWrapper a:hover .details h4{
    color: #3db0c1;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { 
  .product-image{
    padding-right: 15px; 
  }  
  .navbar .hoverMenuWrapper > li > a > h4 > i{
    display: inline-block!important;
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px){
    .sidebar .article .author{
      display: block
    }
    .navbar .nav > li > a{
      padding-left: 20px;
      padding-right: 20px;
    }
	/*home*/
	.navbar .nav > li > a{
  		padding-left: 10px;
  		padding-right: 10px;
	}
	.top-below-nav .sub_menu li.col-md-5{
  		width: 19%;
	}
	.sidebar .add-to-cart{
  		width: 100%;
	}
	#home-slider .caption.header{
  		left: 21%;
	}
	/*home*/
	/*account*/
	.customer_address .address_info.col-md-17{
  		width:65% !important;
	}
	.customer_address .col-md-7{
  		width:35% !important;
	}
	/*end account*/	
	/*collection*/
	.allcollections-page ul#collections li{
  		margin-right: 22px;
	}
	/*end collection*/		
	
	#home-platforms .platform_shop a.btn_shop_Accessories{
  		padding: 9px 15px;
	}
	#home-platforms .shop_platform a.btn_shop_platform{
  		padding: 9px 22px;
	}

	.slide-body .caption.image{
  		width: 160px;
  		height: auto;
	}	
	#home-slider .caption.header{
  		padding: 10px 40px 20px 20px;
	}
	#create_customer .alert.alert-danger{
  		margin-left: 50px;
  		margin-right: 50px;
	}
	.top-below-nav ul li{      
      margin-left: 10px;      
    }
	.contact-form .alert{
  		margin-right: 40px !important;
	}
	/*fix*/
	.platforms-item .group-platform{
  		padding-left: 10px;   
	}

	/*end fix*/
	
}
 
@media (max-width: 1199px){
  .account-page, .order-page, .address-page, .active-page, .reset-page{
    padding-bottom: 0;
  }
  #umbrella .cart-checkout{
    display: none;
  }
  #sandBox-wrapper{
    margin-left: -5px;
    margin-right: -5px;
  }
  #sandBox > li.element{
    width: 33.3%;
    margin: 0;
  }
  #sandBox > li.element .row-container{
    margin-left: 10px;
    margin-right: 10px;
  }
  #umbrella #cart-info.dropdown-menu{
    right: -2px;
    left: auto;
  }
  #umbrella #cart-info.dropdown-menu:before{
    right: 29px;
    left: auto;
  }
  #umbrella #cart-info.dropdown-menu:after{
    right: 30px;
    left: auto;
  }
  #sandBox .full_width .row-left{
    width: 33.33% !important;
    float: left;
  	padding-right: 0;
  }
  #sandBox .full_width .row-left a.hoverBorder{
  	margin-right: 31px;  	
  }
  #sandBox .full_width .row-right{
    width: 66.5% !important;
    float: left;
  }
  .top-below-nav .sub_menu{
	width:59%;
  }
  .top-below-nav .social{
    width:39%;
  }
  /*contact*/
  .register-page{
  	margin-bottom: 50px;
  }
  .contact-page{
    padding-bottom: 50px;
  }
  /*end contact*/
  .sidebar .product-wrapper a{
  	padding-left: 0;
  }
  #widget-partners .owl-theme .owl-controls .owl-buttons .owl-prev{
    left: 0px;
  }
  #widget-partners .owl-theme .owl-controls .owl-buttons .owl-next{
    right: 0px;
  }
  .content_tabs ul li form ul li .group_info{
  	text-align: left;
  }

}
@media (min-width: 768px) and (max-width: 1199px){
	/*sidebar*/
	.sidebar .sb-wrapper li .row{
  		margin: 0 !important;
	}
	.sidebar .sb-wrapper .row .col-md-16,
	.sidebar .sb-wrapper .row .col-md-8{
  		width: 100% !important;
  		padding: 0;
  		
	}
	.sidebar .sb-wrapper .row .col-md-8 a{
  		padding: 0 10px;
  		display: block;
	}
	.sidebar .sb-wrapper .row .col-md-8 a img{
  		max-width: 100%;
	}
	.sidebar .product-wrapper a{
  		padding: 0;
	}	
	/*end sidebar*/
}

@media (min-width: 992px) {
  .sidebar{
    padding-right: 20px;
  }    
}
@media (max-width: 991px){
    .contact-form .alert {
      margin-right: 0!important;
    }
	/*home*/
    #top-other{
      height: auto;
    }	
    #top-other .welcome.col-md-9{
      width: 30%;
      float:left;
    }
    #top-other .top-other.col-md-15{
      width: 65%;
      float:right;
    }
    .top-support.col-md-12,
    .top-logo.col-md-12 {
      width: 50%;
      float: left;
    }
    .navbar .nav > li > a{
      font-size: 12px;
      padding: 8px 7px;
    }
    .templateIndex .top-below-nav .sub_menu ul{
      padding:10.1px 0;
    }
    .top-below-nav ul li {
        margin-left: 8px;
        margin-right: 8px;
    }	
    #home-slider .caption.header{
      left:27%;
    }
    .footer_bottom .footer-content-middle .col-md-8,
    .article-extras.col-md-8,
    .home_products.col-md-8,
    .header_home_products .control-group.col-md-8,
    #tabs_content_container .content_tabs.list_carousel .col-md-4{
      width: 32.9%;
      display: inline-block;
      *display: inline;
      zoom: 1;
    }  
    #home-platforms .platforms_products.col-md-8{
      width: 33.33%;
      float: left;
    }
    .wrap_bot .col-md-12{
      width: 50%;    
      float: left;
    }
    .platforms_products_wrapper:before{
      background: transparent;
      box-shadow: none;
    }
    #home-block .block-image.col-md-4{
      width: 34%;
      display: inline-block;
      *display: block;
      zoom: 1;
    }
    /*end home*/
	/*address*/
	.customer_address .address_actions{
  		padding: 0 10px;
	}	
	/*end address*/	
	/*fix*/	
    /*fix*/	
    .platforms-item .group-platform{
       padding-left: 0;
    }
    .platforms-item .row-right {
      text-align: left;
    }
	#home-platforms .shop_platform, #home-platforms .platform_shop{
		text-align: left;
	}
    #home-block .block-image a.image-2, #home-block .block-image a.image-4, #home-block .block-image a.image-6{
      text-align: left;
    }
    /*End fix*/
    /*End fix*/
	
}
@media (max-width: 992px){
  #widget-partners .owl-theme .owl-controls .owl-buttons > div{  
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media (max-width: 991px){
	#partners img{
  		max-width: 100%;
	}
	#checkout-addnote {
        margin-left: 0;
        padding: 0;
        width: 100%;
    }
	/*tab*/
  	#footer #payments{
      text-align: right;
      margin-top: 20px !important;
    }
	
	#tabs_content_container h3{
  		background: #000;  		
  		text-align: center;  		
  		margin: 0;
  		border-top: 1px solid #fff;
	}
	#tabs_content_container h3:hover,
	#tabs_content_container h3.active{
  		background: #2d2d2d;
	}

	#tabs_content_container h3 a{
  		color: #fff;
  		font-size: 15px;
  		line-height: 20px;
  		padding: 10px 0;  		
  		display: block;
	}
    #tabs_content_container h3.active a:hover{
  		cursor: default;
    }
	.content_tabs ul li{  				
  		width: 100%;
	}
	/*end tab*/
    .login-page{
  		padding-bottom: 0;
    }
    .login-page #page-title-login{
  		margin-left: 20px;
    }
	.login-page .row{
  		margin: 0;
  		
	}
	.login-page .row-right{
  		padding: 0;
	}
	.login-page .row-right #customer-login{
  		padding: 0 10px;
	}
	.login-page .row-left{
  		padding-left:10px;
  		margin-bottom: 50px;
	}
	#customer-login form .alert {
		margin-right: 10px;
	}	
	/*footer*/
	.footer_bottom .footer-content-middle .col-md-8{
  		float: left;
        width: 33.33%;
	}
	/*end footer*/
	/*account*/
	#customer_detail li address{
  		margin-left: -10px;
	}
	.sidebar #customer_detail button#view_address{
  		margin-left: 0;
	}
	#customer_orders{
  		padding: 0 10px;
	}
	/*end account*/	
	/*collection*/	  
    ul#collections{
      margin-right: 0;
    }
    .allcollections-page ul#collections li{
      border: 0;	
      margin-right: 0;
      width: 33.33%;
      display: inline-block;
      *display: inline;
      zoom: 1;
    }
    .allcollections-page ul#collections li .text-center{
      margin: 0 10px;
    }
    /*end collection*/
	#guest .note{
      margin-bottom: 15px;
    }
	.col-md-12.guest,
	#customer_login_guest{
  		width: 50%;
  		float: left;
	}	
	/*about us*/
	.page img{
  		max-width: 100%;
	}	
	/*end about us*/  	
    #umbrella #cart-info .cart-left{      	
      float: left;
    }
	.jGrowl-message .col-md-8{
  		float: left;
	}
	div.jGrowl.top-right{
  		right: 10px;
	}
	#contact_map_wrapper{
      margin: 0 20px 36px;
    }
    .contact-page form{
      margin: 0 20px !important;
    }
    .contact-content{  	
      margin: 0 20px 55px;
    }
	.pagination .col-md-8{
      width: 75%;      
      text-align: center;
    }
	.col-md-8.text-left{
  		width: 20%;
  		float: left;
	}
	.col-md-8.text-right{
  		width: 10%;
  		float: right;
	}
	.pagination .total-item-number{
  		text-align:left;
	}
    .pagination #scroll-to-top-collect{
     	text-align:right;
    }
	.container .line{
  		display: none;
	}
    #home-platforms{
      border-top: 1px solid #d9d9d9;
      margin-top: 30px;
    }
	#tabs_content_container {
  		margin-top: 10px;
	}
	.cart-items td{   		
  		padding: 15px !important; 	
	}
	#create_customer .alert.alert-danger{
      margin-left: 10px;
      margin-right: 10px;
    }
	#comment-form .alert.alert-danger{      
      width: 100%;
    }    
    #comment-form .alert.alert-success{     
      width: 100%;
    }
}

@media (min-width: 600px) and (max-width: 991px){  
  .col-md-8.top-paginate{
  	width: 100% !important;
  }  	   
}
@media (min-width: 768px) and (max-width: 991px){
  .search .search-form{
    width: 40%;
  }
  .search #options{
    width: 100%;
  }
  .search #options .sortBy > strong{
    display: none;
  }
  .cart-items .image, .cart-items .image img {
    min-width: 70px;
  }  
  #top #header-search{
    width: 90%;
    float: right;
  }
  #top .header-search #header-search{
    position: absolute;
    top: 10px;
    right: 0;
    width: 65px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  #top .header-search #header-search input{
    width: 75%;
    padding-left: 10px;
  }
  #top .header-search #header-search.focus{
    width: 150px;
  }
  .product-information .others-bottom .float-left,
  .product-information .others-bottom .float-right{
    float: none;
  }
  .product-information .others-bottom .float-right{
    margin-top: 15px;
  }  
  .sidebar .featured-products > li{
    margin-bottom: 15px;
  }
  .sidebar .featured-products > li:last-child{
    margin-bottom: 0;
  }
  .sidebar .product-wrapper button.add-to-cart{
  	width: 100% !important;
  }

  #home_blocks .block-three .block-logo{
    display: none;
  }
  #home_blocks .block-three .block-content{
    width: 100%;
    margin-left: 0;
  }

  /*collections*/	
  .featured-products li .col-md-8{
      width: 26% !important;
      float: left;
  }
  .featured-products li .col-md-16.parent-fly{
      width: 60% !important;
      float: left;
  }  
  .sidebar .product-wrapper button.add-to-cart{
    width: auto;
  }
  /*end collections*/	
  /*product*/
  .col-md-5.sidebar{
  	width: 30%;
  	float: left;
  }	
  .search-page.col-md-19{
  	width: 70%;
  	float: right;
  }
  .product-page.col-md-19,
  .collection-page.col-md-19{
    width: 70% !important;
    float: right;
  }
  .blog-page.col-md-19,
  .article-page.col-md-19{
  	width: 70% !important;
    float: left;
  }

  #product .col-md-12.product-information,
  #product .col-md-12.product-image{
    width: 100%;
    float: left;
  }
  /*end product*/
  /*collection*/	  
  ul#collections{
  	margin-right: 0;
  }
  .allcollections-page ul#collections li{
    border: 0;	
  	margin-right: 0;
  	width: 33.33%;
  	float: left;
  }
  .allcollections-page ul#collections li .text-center{
  	margin: 0 10px;
  }
  /*end collection*/
  .jGrowl-message a.col-md-8{
  	float: left;  	
  }
  #top-other .top-other.col-md-15{
  	width: 70%;
  }
  #top-other .welcome.col-md-9{
    width: 29%;
  }
  #umbrella #cart-info .cart-left{
  	width: 31%;	
  	float: left;
  }
  .slide-body .caption.image{
    width: 130px;
    height: auto;
  }	
  #home-slider .caption.header{
    padding: 0px 40px 20px 0px;
  }
  #home-slider .caption.header{
  	left: 25%;
  }
  .responsive-slider .caption.header .caption1{
  	display: none;
  }
  .slide-price span, .slide-price a{
  	width: 89px;
  } 
	/*fix*/	
  #create_customer,
  #customer-login  #customer_login, #recover-password{
  		padding-right: 20%;
  }
  /*shopping cart*/
  #checkout-addnote{
  	width: 70%;
  }
  #shipping-calculator {  
    width: 70.7%;
  }
  
  /*end shopping cart*/
  .home_products_wrapper .section-item .col-md-5{
    width: 30%;
  	float: left;
  }
  .home_products_wrapper .section-item .col-md-19{
  	width: 70%;
  	float: left;
  }
  .product-image .owl-theme .owl-controls .owl-buttons .owl-next{
  	right: 50px;
  }
  .product-image .owl-theme .owl-controls .owl-buttons .owl-prev{
  	right: 95px;
  }  
  /*end fix*/
  /*quick shop*/
  #quick-shop-modal .col-md-12.product-image{
    width: 50% !important;
  	float: left;
  }
  #quick-shop-modal .col-md-12.product-information{
    width: 50% !important;
  	float: left;
  }  
  /*end quick shop*/
  .home_products .sale_banner{
	right: 1px;
  }
}
@media (max-width: 979px){
  .page-404, .article-page, .blog-page, .cart-page, .collection-page, 
  .account-page, .active-page, .address-page, .login-page, .order-page, .register-page, .reset-page,
  .contact-page, .normal-page, .product-page, .search-page{
    padding-bottom: 0;
  } 
	
}


@media (min-width: 768px) {
  #home-slider.span8{
    width: 67%;
  }
  #home_banners.span4{
    width: 31.5%;
    margin-left: 1.5%;
  }
}

@media (max-width: 768px) {
  body{
  	overflow-x: hidden;
  }
  ul.social_icons{
    margin-left: 0;
  }
  ul.social_icons > li:first-child{
    padding-left: 0;
  }
  .address_table .address_actions .action_edit{
    margin-right: 16px;
  }
  /*home*/
    #content .background{
      padding-top: 10px !important;
    }  
	/*header*/	
	/*end header*/
    /*footer*/
	#footer{
  		overflow: hidden;
	}
    /*end footer*/
  /*end home*/  
}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {  
  .blog-page, .article-page{
  	min-height: 300px;
  }
  #top-other .top-other {
    display: none;
  }
  #home-slider .slide-body .caption{
  	display: none;
  }
  .search #options{
    margin-top: 15px;
  }  
  #top #site-title{
    display: inline-block;
    text-align: center;
    margin: 15px 0;
  }
  #top .shadow{
    display: none;
  }
  #top .shadow,
  #footer{
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  #customer-accounts .r-border{
    border-right: 0;
  }
  #top .customer-links{
    padding-left: 0;
  }
  #top .span6.pos-relative,
  #umbrella{
    text-align: left;
    padding: 0 15px;
  }
  #umbrella .cart-checkout{
    display: inline-block;
  }
  #umbrella #cart-info.dropdown-menu,
  #loginBox.dropdown-menu{
    left: 0;
    top: 100%;  
  }
  #umbrella #cart-info .items{
    text-align: center;
  }
  #umbrella .cart-link{
    text-align: left;
    position: relative;
  }
  #cart-info #cart-content .span4{
    width: 30%;
    float: left;
  }
  #cart-info #cart-content .span8{
    width: 68%;
    float: right;
  }
  #cart-info .cart-image img{
    max-width: 100%;
  }
  .cart-items .image{
    min-width: 70px;
  }
  #loginBox.dropdown-menu .icon-caret i,
  #umbrella #cart-info .icon-caret i{
    left: 20%;
    right: auto;
  }
  #home-slider .caption.header h2{
    margin: 0;
    line-height: normal;
  }
  #home-slider .caption.header h2 .caption-content{
    font-size: 30px;
  }
  #home-slider .caption.header .sub{
    padding-top: 5px;
  }
  #home-slider .caption.header .sub .caption-content{
    font-size: 50px;
  }
  #home-slider.hideControls .slider-control{
    opacity: 1;
    filter: alpha(opacity=100);
  }
  #home_banners{
    display: block;
    overflow: hidden;
  }
  #home_banners > ul{
    margin-left: -5px;
    margin-right: -5px;
  }
  #home_banners > ul > li{
    float: left;
    width: 33.33333%;
  }
  #home_banners > ul > li > a{
    margin: 10px 5px;
    overflow: hidden;
  }
  #home_blocks .block-three .block-logo{
    width: 31.491712707182323%;
    float: left;
  }
  #home_blocks .block-three .block-content{
    width: 65.74585635359117%;
    margin-left: 2.7624309392265194%;
    float: left;
  }

  #widget-linklist1 li{
    margin-right: 0;
  }
  h3.title{
    margin-top: 20px;
  }
  .customer-accounts .r-border{
    border-right: 0;
  }
  #guest{
    margin-top: 50px;
  }
  
  .control-group.guest{
    margin-top: 20px;
  }
  #new-address{
    position: static;
  }
  .address_table .address_actions .action_edit{
    margin-right: 20px;
  }
  
  #footer .row-fluid [class*="span"] .widget-wrapper{
    border: none;
    margin-bottom: 25px;
    padding: 0;
  }
  .home_collections .heading2{
    text-align: left;
  }
  .templateIndex .blogs img{
    max-width: 50%;
  }
  #sandBox > li.element{
    width: 49.9%;
    margin: 0;
  }
  .collection-warper .collection-description {
    padding: 15px 25px 25px 25px;
  }
  #collections .collection-item{
    margin-bottom: 25px;
  }
  
  #product-information{
    margin-top: 30px;
  }
  
  .sidebar{
    margin-top: 25px;
  }
  .sidebar .featured-products{
    text-align: center;
  }
  .sidebar .fprod-title{
    margin: 10px 0;
  }
  
  #umbrella #cart-info .items .row-fluid:first-child{
    text-align: center;
  }
  #umbrella #cart-info .items .row-fluid.last > div.span6{
    width: 50%;
    float: left;
  }
  #umbrella #cart-info .items .row-fluid.last > div.span6:first-child{
    text-align: left;
  }
  
  .jGrowl-message .row-fluid .span9 {
    width: 74.30939226519337%;
    *width: 74.25620077583166%;
    float: right;
  }
  .jGrowl-message .row-fluid .span3 {
    width: 22.92817679558011%;
    *width: 22.87498530621841%;
    float: left;
  }
  
  .margin-right-10,
  .margin-left-10{
    margin-bottom: 10px;
  }
  #content{
    min-height: 200px;
  }
  #footer .newsletter{
    text-align: left;
    margin-top: 20px;
  }
  #footer > .container{
    padding: 0 10px;
  }
  #footer .copyright{    
    margin-bottom: 0;
  }
  #footer #payments{    
    margin-right: 0;
  }
  #footer #widget-contact{
    padding-top: 20px;
  }
  #footer .footer-content-bottom{
    border: none;
    margin-top: 0;
    padding-top: 10px;
  }
  #footer .text-right{
    text-align: center;
  }

  #contact_map{
    height: 200px;
  }

/*home*/
  .gr-below-nav{
    display: none;
  }
  .top-navigation .navbar-header{
    width: 50%;
    float: left;
  }	
  
  #top-other .welcome.col-md-9,
  #top-other .top-other.col-md-15{
    width: 100%;
  	text-align: center;
  }
  #top-other .top-other .text-right{
    text-align: center;
  }
  
  .top-support .support,
  .top-support .top-search .search-form{
    margin-right: 0px !important;
  }
  .top-logo{
    text-align: left;
  }
  .top-support{
    margin-top: 20px;
  }
  /*menu*/
  .is-mobile > ul > li{
    margin: 0;
  }
  #top .currencies-switcher{
  	margin-right: 0;
    margin-left: 0;
  }
  .navbar-header .navbar-toggle{
    float: left;
  }
  .top-navigation{
  	margin-top: 10px;
    height: auto; 
  	background: #000;
  }
  .navbar-header .navbar-toggle .icon-bar{
    background: #fff;
  }
  .is-mobile .is-mobile-login i,  
  .is-mobile .is-mobile-cart i, 
  .is-mobile .is-mobile-currency a{
  	color: #fff;
  }
  
  .currency .currency_code{
  	color: #fff;
  }
  #top .customer-links, 
  #top .currencies-switcher{
    border-right: 0;
  	border-left:1px solid #4d4d4d;  
	padding: 15px 15px 15px 20px;    
  }	
  /*end menu*/
  /*slider*/
  .responsive-slider .slides ul li .slide-body .caption{  
    top: 10%;
  }
  #home-slider .caption.header{
    top: 8%;
    left: 20%;
    padding-top: 0;
  }
  .responsive-slider .slides ul li .slide-body .caption.image{
    width: 150px;
  }
  .responsive-slider .slides ul li .slide-body .caption.header{
    width: 300px;
  }
  /*end slider*/
  /*menu*/
  .navbar-collapse {
    border-top: 1px solid rgba(0, 0, 0, 0);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    margin: 0 !important;
    max-height: 340px;
    overflow-x: visible;
    padding: 0;
    width: 100%;
  }
  .navbar .nav {
    border: 0 none;
    border-radius: 0;
    margin: 0;
    padding-top: 0;
  	background: #000;
  }
  .navbar{
    border: 0 !important;
  }
  .navbar .nav > li {
    display: block;
    float: left;
    padding: 0;
    width: 100%;
  	border-top: 1px solid #fff;
  }
  .navbar .nav > li:last-child a{
    border-radius: 0;
  }
  .navbar .nav > li:first-child a,
  .navbar .nav > li:first-child a:hover,
  .navbar .nav > li:first-child a:focus{
    border-radius: 0;
  }
  #top .navbar .nav > li:hover > a, 
  .navbar .nav > li.active > a,
  #top .navbar .nav .open > a, 
  #top .navbar .nav .open > a:hover, 
  #top .navbar .nav .open > a:focus,
  #top .navbar .nav > li a:hover, 
  #top .navbar .nav > li a:focus{
  	color: #fff;
  background: #3db0c1!important;
  }
  #top .navbar .nav > li > ul.dropdown-menu{
    margin-top: 0;
  }
  #top .navbar .nav > li > ul.dropdown-menu li a:hover{
  	background: transparent!important;
  }
  #top .navbar .nav > li .fa{
    margin-top: -5px;
    position: absolute;
    right: 10px;
    top: 50%;
  }
  .dropdown-menu:after{
  	border-bottom-color: #fff;
  }
  #top .currencies.dropdown-menu li > a:hover, 
  .currencies.dropdown-menu li > a:hover, 
  #top .currencies.dropdown-menu .active > a, 
  .currencies.dropdown-menu .active > a, 
  #top .currencies.dropdown-menu .active > a:hover, 
  .currencies.dropdown-menu .active > a:hover, 
  #top .customer.dropdown-menu li > a:hover, 
  .customer.dropdown-menu li > a:hover, 
  #top .customer.dropdown-menu .active > a, 
  .customer.dropdown-menu .active > a, 
  #top .customer.dropdown-menu .active > a:hover, 
  .customer.dropdown-menu .active > a:hover{
    background-color: #000;
  }
  /* end menu*/
  /*breadcrumb*/
  #breadcrumb {   
    margin: 0;
    padding: 7px 0;
    width: 100%;
  }
  /*end breadcrumb*/  
/*end home*/
  /*register*/
  .login-page #page-title-login{
  	margin-left: 20px;
  }
  .login-page .row{
    margin: 0;
  } 
  /*end register*/  
  #sandBox .full_width .row-left a.hoverBorder{
  	margin-right: 23px;
  } 

  .top-support.col-md-12, .top-logo.col-md-12{
    width: 100%;
    float: left;
  	text-align: center;
  }
  .top-support .support{   
  	text-align: center;
  }
  .top-support .top-search{
    margin-left: 0px;
    margin-right: 0px;
  }
  .top-search #header-search{
    width: 100%;
  }
  .umbrella{
    width: 30% !important;
    float: right !important;
  }
  .home_products.col-md-8{
    width: 100%;
  }
  .header_home_products.sb-title {
    font-size: 14px;
    font-weight: bold;
    padding-left: 20px;
  	line-height: 20px;
  }
  
  .home_products_wrapper  .col-md-5{  	
  	width: 90px;
  	float: left;
  }
  .home_products_wrapper .col-md-19{
  	width: 80%;
  	float: left;
  }    
  #sandBox .full_width .row-left{
    width: 49.9% !important;
    float: left;
  }
  #sandBox .full_width .row-right{
    width: 50% !important;
    float: right;
  }

	/*blog*/
  .templateArticle .sidebar, .templateBlog .sidebar{
    position: inherit;
    border-radius: 0;  		
  }
  .templateArticle .sidebar, .templateBlog .sidebar{
    background-color: #fff;
  }
  .templateArticle .sidebar .arrow_bottom, .templateBlog .sidebar .arrow_bottom,
  .templateArticle .sidebar .arrow_top, .templateBlog .sidebar .arrow_top{
    background: none;
  }
  .templateBlog .sb-wrapper .sb-title, .templateArticle .sb-wrapper .sb-title{
    border-radius: 5px;
    padding: 24px 10px 5px;
    background-color: #000000;
    border-color: #000000;	
  }
  .sidebar .sb-tags li.active a, .sidebar .sb-tags li:hover a{
    color: #818080;
  }
  .blog-page, .article-page{
    padding-bottom: 0;
  }
  /*end blog*/
  .blog .blogs-item .intro .col-md-8{
  	padding: 0;
  }
  .blog .blogs-item .intro .col-md-8 img{  
    margin-left: 0px;
  }
  .info_caption{
  	max-width: 100%;
  }  
}
@media (min-width: 600px) and (max-width: 767px){
	.container{
  		width: 560px;
	}
	.allcollections-page ul#collections li{
  		width: 32.9%;
	}
    .top-support .top-search {
      margin-left: -10px;
      margin-right: -10px;
    }

	
	
}
@media (min-width: 481px) and (max-width: 767px){

  .sidebar .featured-products .row-left{
    width: 31.491712707182323%;
    float: left;
  }
  .sidebar .featured-products .row-right{
    width: 65.74585635359117%;
    margin-left: 2.127659574468085%;
    float: left;
    text-align: left;
  }
  .sidebar .featured-products .fprod-title{
    margin-top: 0;
  }
}
@media(max-width: 600px){	
	.footer_bottom .footer-content-middle .col-md-8#newsletter{
      width: 100%;
    }
    .footer_bottom .footer-content-middle .col-md-8{
      width: 50%;
    }		
}
@media(max-width: 599px){  
  #home-platforms .platforms_products.col-md-8 .hoverBorder{
  	display: block;  	
  }
  #home-platforms .platforms_products .hoverBorderWrapper img{
  	width: 100%;
  	height: auto;
  }  
  #widget-blog .article-extras.col-md-8{
    width: 100%;
    margin-bottom: 30px;
  }	  
  .footer_categories{
    margin: 0 20px 20px;
  } 

  .top-support.col-md-12, .top-logo.col-md-12{
    width: 100%;  		
  	padding: 0;
  	text-align: center;
  }
  /*collection*/
  #home-platforms .shop_platform, #home-platforms .platform_shop{
    width: 100%;
    float: left;
  }
  #home-block .block-image.col-md-4{
    width: 49.5%;
  }	
  /*end collection*/
  .top-support .support{
    text-align: center !important;
  }
  #header-search{
    width: 100%;
  }
  .wrap_bot .col-md-12{
    width: 100%;
    text-align: left;
  }
  #footer #payments{
    margin: 10px 0 0;
    text-align: left;
  }
  .home_products_wrapper .col-md-19{
    width: 70%;
  }
  /*fix*/
  #partners .tooltip.top{
  	display: none !important;
  }
}
@media (min-width: 480px) and (max-width: 599px){
	/*home*/
	.container{
  		width: 440px;
	}	
	#home-platforms header.control-group .platforms-wrapper-title{
  		margin: 0;
	}
	.platforms-item  .col-md-12{
  		padding: 0;
	}	
	#home-platforms header.control-group a, #home-platforms header.control-group .sb-title{
  		font-size: 10px;
	}
	.responsive-slider .slides ul li .slide-body .caption{
  		display: none;
	}			
	#footer #payments{
  		margin: 10px 0 0;
    	text-align: left;
	}
	#top-other{
  		display: none;
	}	
	#header-search{
  		float: left;
	}	
	.top-support{
  		margin-top: 0;
	}	
	
	/*home*/
	/*collection*/
	.allcollections-page ul#collections li{
  		width: 49.6%;
	}
	/*end collection*/
	#home-platforms .platform_shop a.btn_shop_Accessories{
  		padding: 9px 10px;
	}
	#home-platforms .shop_platform a.btn_shop_platform{
  		padding: 9px 16px;
	}
}

/* Landscape phones and down */
@media (max-width: 480px) { 
	label.control-label{
  		text-align: left;
	}
  .hoverBorder{
    width: auto;
    display: inline-block;
  }    
  .templateIndex .blogs img{
    max-width: 100%;
  }  
  #top .currencies-switcher{
    padding-left: 17px;
    padding-right: 7px;
  }
  #top .header-search{
    padding-left: 0;
  }  
  #home-slider .caption.header h2 .caption-content{
    font-size: 20px;
  }
  #home-slider .caption.header .sub{
    padding-top: 0;
  }
  #home-slider .caption.header .sub .caption-content{
    font-size: 25px;
  }
  #home-slider .caption.header{
    padding-bottom: 0;
  }
  #home_banners > ul > li{
    float: none;
    width: 100%;
    text-align: center;
  }
  #home_banners > ul > li > a{
    display: inline-block;
    margin: 5px 0;
  }
  #home_banners > ul > li:first-child > a{
    margin-top: 15px;
  }
  #comments .comment-head .comment-posted{
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 10px;
    margin-bottom: 10px;
  }
  #comments .comment-head .text-right{
    display: inline;
  }
  #comments .comment-head .text-right .btn{
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .blog #comments .pagination{
    text-align: center;
  }
  .blog .imgFloat{
    float: none;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    margin-right: 0;
  }
  #page-header .browse_tags{
    position: relative;
  }  
  
  #footer .footer_copyright{
    margin-top: 30px;
  }
  #footer .newsletter .btn-3{
    display: none;
  }
  #footer .newsletter li:last-child{
    display: block;
  }
  #footer .newsletter #email-input{
    width: 90%;
  }
  #footer-content{
    margin-top: 10px;
  }

  .sidebar .featured-products > li{
    margin-bottom: 15px;
  }
  .sidebar .featured-products > li:last-child{
    margin-bottom: 0;
  }  
}
@media (max-width: 479px){
	.normal-page .page{
      padding-left: 20px;
      padding-right: 20px;
    }
	.container{
  		margin: 0 10px;
	}	
    .navbar .is-mobile{
      width: 100%;
      float: left;  	
    }
	.navbar-header .navbar-toggle{
      position: absolute;
    }
	#footer-content .group{
  		padding: 0 20px;
	}	
    #footer .footer-content-middle h5{		
      margin-top: 25px;
    }
	.wrap_bot .col-md-12{
      width: 100%;
      float: left;
	}	
	.container.background{
  		margin-bottom: 10px;
	}
	/*tab*/
  
	#tabs_content_container .content_tabs .col-md-4{
  		width: 100% !important;  		
	}
	/*end tab*/	       
    .top-support {
      margin-top: 0;
    }
    .top-support.col-md-12, .top-logo.col-md-12{
      width: 100%;
    }
	#home-slider .slide-body .caption{
  		display: none;
	}	
	/*collection*/
	.allcollections-page ul#collections li{
  		width: 100%;
	}
	/*end collection*/		
	#product-actions .control-navigation .btn-next{
  		float: left;
	}
    .content_tabs ul li{
    	float: left;    
    }
	.content_tabs ul li form ul li .group_info{
  		text-align: center;
	}
    .blog .blogs-item .article-extras .col-md-12{
      text-align: left !important;
    }
	.footer_bottom .footer-content-middle .col-md-8{
  		width: 100%;
	}
	.content_tabs ul li{
  		width: 100%;
	}
	#home-platforms .platforms_products.col-md-8{
  		width: 100%;
	}
	.home_products_wrapper{
      
    }
	/*slider*/
    .control-slideshow {            
      width: 77px;
      height: 30px;
      background-size: 100%;
    }
	.responsive-slider .slider-control{
  		margin-right: 10px;
  		font-size: 27px;  		
	}
	.control-slideshow .control{
  		margin-left: 30px;
	}
	
	/*end slider*/
	.collect-option{
  		display: none;
	}
	.control-navigation .btn{
  		margin-right: 10px;
	}
	#sandBox .full_width .row-right{
      width: 45% !important;
      float: right;
    }	
	#sandBox > li.element.full_width .add-to-cart{
  		width: 100px;
	}
	.platforms_products_wrapper .platforms-item .col-md-12 {
		display: inline-block;
		width: 49%;
	}
	
	.content_tabs ul li {
		text-align: center;
	}
	/*fix*/	
	.platforms-item .group-platform{
		padding-left: 0;
		text-align: right
	}
	.platforms-item .row-right {
		text-align: right;
	}
	#home-block .block-image a.image-2, #home-block .block-image a.image-4, #home-block .block-image a.image-6{
		text-align: right;
	}
	#home-platforms .shop_platform, #home-platforms .platform_shop{
		text-align: right;
	}
	  /*End fix*/
}
@media (max-width: 380px) { 
  .is-mobile > ul > li{
    padding-left: 15px;
    padding-right: 15px;
  }
  .product-information .others-bottom .float-left,
  .product-information .others-bottom .float-right{
    float: none;
  }
  .product-information .others-bottom .float-right{
    margin-top: 15px;
  }
  #footer .newsletter #email-input{
    width: 83%;
  }
  #widget-linklist1{
    margin-top: 15px;
  }
  #footer #footer-secondary{
    margin-bottom: 20px;
  }
  #footer #payments{
    margin-top: 0;
  }

  #comments .comment-head .post-reply{
    float: none;
    position: relative;
    top: 3px;
  }
  #comments .comment-head .post{
    position: static;
  }
  #sandBox > li.element{
    width: 100%;
    padding-top: 10px;  	
  }
  #sandBox .full_width .row-right{
  	text-align: left !important;
  }
  .sortBy{
  	margin-top: 10px;
  }
  .sale_banner{
    bottom: 1px;
  }
  .home_products  .home_products_wrapper{
    width: 100%;	
    margin: 0 auto;
  }
  
}
@media (max-width: 379px){
	.container-nav .grid_list{
  		margin-right: 0;  		
	}
	.sortBy{
  		margin-top: 0;
	}
	li#goList{
  		margin-right: 0 !important;
	}
}

@media (max-width: 360px){
  .home_products_wrapper .col-md-19{
  	width: 65%;  	
  }
}

/* Landscape phones and down */
@media (max-width: 320px) {
  .container{
    width: 280px;  	
  	margin: 0 auto;
  }   
  .footer_bottom .footer-content-middle #newsletter.col-md-8{
   	margin-top: 0px;
  }
  .footer_bottom{
  	padding: 0;
  }
  .footer_categories{
    margin-bottom: 10px;
  }
  #checkout-proceed button#update-cart {    
    margin: 15px 0 30px;
    padding: 12px 0;        
    width: 100%;
  }
  #checkout-addnote {
    margin-left: 0;
    width: 100%;
  	padding: 0;
  }
  #footer .widget-header {
      padding: 0 20px 17px;
  }
	/*slide*/  
  #home-block .block-image.col-md-4{
  	width: 49%;
  }
    /*end slide*/       
  #header-search input{  	    
    width: 87%;
  }  
  .top-support .support a, .top-support .support span{
  	font-size: 8px;
  }
  div.jGrowl div.jGrowl-notification,div.jGrowl div.jGrowl-closer{
    width: 265px!important;
  }
  #umbrella #cart-info.dropdown-menu, 
  #loginBox.dropdown-menu{
    width: 250px;
  }
  #umbrella #cart-info.dropdown-menu .btn{
    width: 100%;
  }
  #umbrella #cart-info.dropdown-menu .btn:first-child{
    margin-bottom: 3px;
    margin-right: 0;
  }
  #umbrella #cart-info .items .row-fluid .cart-right{
    text-align: left;
  }
  .customer-accounts .action .title-2{
    margin: 0;
  }
  #home-slider .caption.header{
    display: none;
  }
  #comments .comment-head .text-right{
    display: inline-block;
    text-align: left;
  }
  #comments .comment-head .text-right .btn{
    position: relative;
    top: 0;
    right: 0;
  }
  .sortBy #sortButton {
    min-width: 125px;
  }
  .pagination .next,
  .pagination .prev{
    display: none;
  }
  .home_collections .owl-theme .owl-controls .owl-buttons > div:first-child{
    margin-right: 5px;
  }
  #footer #payments > li{
    margin-bottom: 5px;
  }    
}
@media (max-width: 300px){
  body{
    280px;
    overflow: hidden;
  }
  .container{
    width: 100%;  	      
  } 
  .sortBy #sortButton {
    min-width: 100px;
  }
  .home_products_wrapper .col-md-19{
    width: 60%;  	
  }
	
}


/* This will work for firefox */
@-moz-document url-prefix() {
  #currency .currency_wrapper{
    padding: 9px 13px;
  }
  #umbrella .cart-checkout a span{
    right: 3px;
  }
  .product-image .owl-theme .owl-controls .owl-buttons > div i{
    position: relative;
    top: 3px;
  }
  select{
    padding-top: 6px;
  }
  #home-slider.hideControls .right,
  #home-slider.hideControls .left{
    padding-bottom: 1px;
  }
  
  .cart-items .title-1{
    position: relative;
    top: 1px;
  }
}
/* This will work for IE10 */
@media all and (-ms-high-contrast: none) {
  div.jGrowl.top-right{
    right: 10px;
  }
  #footer #newsletter .mail_action form#mc-embedded-subscribe-form button.btooltip{
    height: 28.6px;
  } 
  
  
}
/* This will work for Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) { 
  .product-image .owl-theme .owl-controls .owl-buttons > div i{
    position: relative;
    top: 2px;
  }
  .hideControls .slider-control .btn-label{
    margin-top: -9px;
  }
}

.not-animated { opacity: 0; }

.notouch .animated {
  opacity: 1;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.notouch .animated.hinge {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {opacity: 1;}
  25%, 75% {opacity: 0;}
}

@-moz-keyframes flash {
  0%, 50%, 100% {opacity: 1;}
  25%, 75% {opacity: 0;}
}

@-o-keyframes flash {
  0%, 50%, 100% {opacity: 1;}
  25%, 75% {opacity: 0;}
}

@keyframes flash {
  0%, 50%, 100% {opacity: 1;}
  25%, 75% {opacity: 0;}
}

.notouch .animated.flash {
  -webkit-animation-name: flash;
  -moz-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes shake {
  0%, 100% {-webkit-transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
  20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
}

@-moz-keyframes shake {
  0%, 100% {-moz-transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
  20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
}

@-o-keyframes shake {
  0%, 100% {-o-transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
  20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
}

@keyframes shake {
  0%, 100% {transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
  20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.notouch .animated.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
  40% {-webkit-transform: translateY(-30px);}
  60% {-webkit-transform: translateY(-15px);}
}

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
  40% {-moz-transform: translateY(-30px);}
  60% {-moz-transform: translateY(-15px);}
}

@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
  40% {-o-transform: translateY(-30px);}
  60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}

.notouch .animated.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes tada {
  0% {-webkit-transform: scale(1);}
  10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);}
  30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);}
  40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);}
  100% {-webkit-transform: scale(1) rotate(0);}
}

@-moz-keyframes tada {
  0% {-moz-transform: scale(1);}
  10%, 20% {-moz-transform: scale(0.9) rotate(-3deg);}
  30%, 50%, 70%, 90% {-moz-transform: scale(1.1) rotate(3deg);}
  40%, 60%, 80% {-moz-transform: scale(1.1) rotate(-3deg);}
  100% {-moz-transform: scale(1) rotate(0);}
}

@-o-keyframes tada {
  0% {-o-transform: scale(1);}
  10%, 20% {-o-transform: scale(0.9) rotate(-3deg);}
  30%, 50%, 70%, 90% {-o-transform: scale(1.1) rotate(3deg);}
  40%, 60%, 80% {-o-transform: scale(1.1) rotate(-3deg);}
  100% {-o-transform: scale(1) rotate(0);}
}

@keyframes tada {
  0% {transform: scale(1);}
  10%, 20% {transform: scale(0.9) rotate(-3deg);}
  30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);}
  40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);}
  100% {transform: scale(1) rotate(0);}
}

.notouch .animated.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada;
}
.notouch .animated .tada:hover{
  -webkit-animation:tada ease-in-out 1 normal 800ms;
  -moz-animation:tada ease-in-out 1 normal 800ms;
  -ms-animation:tada ease-in-out 1 normal 800ms;
  -o-animation:tada ease-in-out 1 normal 800ms;
  animation:tada ease-in-out 1 normal 800ms;
}
@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% { -webkit-transform-origin: top center; }
  20% { -webkit-transform: rotate(15deg); }
  40% { -webkit-transform: rotate(-10deg); }
  60% { -webkit-transform: rotate(5deg); }
  80% { -webkit-transform: rotate(-5deg); }
  100% { -webkit-transform: rotate(0deg); }
}

@-moz-keyframes swing {
  20% { -moz-transform: rotate(15deg); }
  40% { -moz-transform: rotate(-10deg); }
  60% { -moz-transform: rotate(5deg); }
  80% { -moz-transform: rotate(-5deg); }
  100% { -moz-transform: rotate(0deg); }
}

@-o-keyframes swing {
  20% { -o-transform: rotate(15deg); }
  40% { -o-transform: rotate(-10deg); }
  60% { -o-transform: rotate(5deg); }
  80% { -o-transform: rotate(-5deg); }
  100% { -o-transform: rotate(0deg); }
}

@keyframes swing {
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(5deg); }
  80% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

.notouch .animated.swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
}
.notouch .animated .swing:hover {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation: swing ease-in-out 1 normal 800ms;
  -moz-animation: swing ease-in-out 1 normal 800ms;
  -o-animation: swing ease-in-out 1 normal 800ms;
  animation: swing ease-in-out 1 normal 800ms;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% { -webkit-transform: translateX(0%); }
  15% { -webkit-transform: translateX(-25%) rotate(-5deg); }
  30% { -webkit-transform: translateX(20%) rotate(3deg); }
  45% { -webkit-transform: translateX(-15%) rotate(-3deg); }
  60% { -webkit-transform: translateX(10%) rotate(2deg); }
  75% { -webkit-transform: translateX(-5%) rotate(-1deg); }
  100% { -webkit-transform: translateX(0%); }
}

@-moz-keyframes wobble {
  0% { -moz-transform: translateX(0%); }
  15% { -moz-transform: translateX(-25%) rotate(-5deg); }
  30% { -moz-transform: translateX(20%) rotate(3deg); }
  45% { -moz-transform: translateX(-15%) rotate(-3deg); }
  60% { -moz-transform: translateX(10%) rotate(2deg); }
  75% { -moz-transform: translateX(-5%) rotate(-1deg); }
  100% { -moz-transform: translateX(0%); }
}

@-o-keyframes wobble {
  0% { -o-transform: translateX(0%); }
  15% { -o-transform: translateX(-25%) rotate(-5deg); }
  30% { -o-transform: translateX(20%) rotate(3deg); }
  45% { -o-transform: translateX(-15%) rotate(-3deg); }
  60% { -o-transform: translateX(10%) rotate(2deg); }
  75% { -o-transform: translateX(-5%) rotate(-1deg); }
  100% { -o-transform: translateX(0%); }
}

@keyframes wobble {
  0% { transform: translateX(0%); }
  15% { transform: translateX(-25%) rotate(-5deg); }
  30% { transform: translateX(20%) rotate(3deg); }
  45% { transform: translateX(-15%) rotate(-3deg); }
  60% { transform: translateX(10%) rotate(2deg); }
  75% { transform: translateX(-5%) rotate(-1deg); }
  100% { transform: translateX(0%); }
}

.notouch .animated.wobble {
  -webkit-animation-name: wobble;
  -moz-animation-name: wobble;
  -o-animation-name: wobble;
  animation-name: wobble;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% { -webkit-transform: scale(1); }
  50% { -webkit-transform: scale(1.1); }
  100% { -webkit-transform: scale(1); }
}
@-moz-keyframes pulse {
  0% { -moz-transform: scale(1); }
  50% { -moz-transform: scale(1.1); }
  100% { -moz-transform: scale(1); }
}
@-o-keyframes pulse {
  0% { -o-transform: scale(1); }
  50% { -o-transform: scale(1.1); }
  100% { -o-transform: scale(1); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.notouch .animated.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
}
.notouch .animated .pulse:hover {
  -webkit-animation: pulse ease-in-out 1 normal 800ms;
  -moz-animation: pulse ease-in-out 1 normal 800ms;
  -o-animation: pulse ease-in-out 1 normal 800ms;
  animation: pulse ease-in-out 1 normal 800ms;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@-moz-keyframes flip {
  0% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -moz-animation-timing-function: ease-out;
  }
  40% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -moz-animation-timing-function: ease-out;
  }
  50% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -moz-animation-timing-function: ease-in;
  }
  80% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -moz-animation-timing-function: ease-in;
  }
  100% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -moz-animation-timing-function: ease-in;
  }
}
@-o-keyframes flip {
  0% {
    -o-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -o-animation-timing-function: ease-out;
  }
  40% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -o-animation-timing-function: ease-out;
  }
  50% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -o-animation-timing-function: ease-in;
  }
  80% {
    -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -o-animation-timing-function: ease-in;
  }
  100% {
    -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -o-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}

.notouch .animated.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  
  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }
  
  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }
  
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.notouch .animated.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@-moz-keyframes flipOutX {
  0% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@-o-keyframes flipOutX {
  0% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.notouch .animated.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInY {
  0% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  
  40% {
    -moz-transform: perspective(400px) rotateY(-10deg);
  }
  
  70% {
    -moz-transform: perspective(400px) rotateY(10deg);
  }
  
  100% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInY {
  0% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  
  40% {
    -o-transform: perspective(400px) rotateY(-10deg);
  }
  
  70% {
    -o-transform: perspective(400px) rotateY(10deg);
  }
  
  100% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.notouch .animated.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutY {
  0% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutY {
  0% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.notouch .animated.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@-moz-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@-o-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.notouch .animated.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.notouch .animated.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.notouch .animated.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.notouch .animated.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.notouch .animated.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.notouch .animated.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.notouch .animated.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.notouch .animated.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.notouch .animated.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@-moz-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@-o-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

.notouch .animated.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.notouch .animated.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}

@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}

@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.notouch .animated.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}

@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
}

@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

.notouch .animated.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}

@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
}

@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

.notouch .animated.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@-moz-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}

@-o-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.notouch .animated.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -moz-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@-moz-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}

@-o-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.notouch .animated.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -moz-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@-moz-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}

@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.notouch .animated.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.notouch .animated.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
  }
  
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  
  70% {
    -webkit-transform: scale(.9);
  }
  
  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(.3);
  }
  
  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }
  
  70% {
    -moz-transform: scale(.9);
  }
  
  100% {
    -moz-transform: scale(1);
  }
}

@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(.3);
  }
  
  50% {
    opacity: 1;
    -o-transform: scale(1.05);
  }
  
  70% {
    -o-transform: scale(.9);
  }
  
  100% {
    -o-transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(.3);
  }
  
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  
  70% {
    transform: scale(.9);
  }
  
  100% {
    transform: scale(1);
  }
}

.notouch .animated.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  
  80% {
    -webkit-transform: translateY(10px);
  }
  
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }
  
  80% {
    -moz-transform: translateY(10px);
  }
  
  100% {
    -moz-transform: translateY(0);
  }
}

@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  
  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }
  
  80% {
    -o-transform: translateY(10px);
  }
  
  100% {
    -o-transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  
  80% {
    transform: translateY(10px);
  }
  
  100% {
    transform: translateY(0);
  }
}

.notouch .animated.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -moz-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  
  80% {
    -webkit-transform: translateY(-10px);
  }
  
  100% {
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  
  60% {
    opacity: 1;
    -moz-transform: translateY(30px);
  }
  
  80% {
    -moz-transform: translateY(-10px);
  }
  
  100% {
    -moz-transform: translateY(0);
  }
}

@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  
  60% {
    opacity: 1;
    -o-transform: translateY(30px);
  }
  
  80% {
    -o-transform: translateY(-10px);
  }
  
  100% {
    -o-transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  
  80% {
    transform: translateY(-10px);
  }
  
  100% {
    transform: translateY(0);
  }
}

.notouch .animated.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  
  80% {
    -webkit-transform: translateX(-10px);
  }
  
  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  
  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }
  
  80% {
    -moz-transform: translateX(-10px);
  }
  
  100% {
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  
  60% {
    opacity: 1;
    -o-transform: translateX(30px);
  }
  
  80% {
    -o-transform: translateX(-10px);
  }
  
  100% {
    -o-transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  
  80% {
    transform: translateX(-10px);
  }
  
  100% {
    transform: translateX(0);
  }
}

.notouch .animated.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  
  80% {
    -webkit-transform: translateX(10px);
  }
  
  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }
  
  80% {
    -moz-transform: translateX(10px);
  }
  
  100% {
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  
  60% {
    opacity: 1;
    -o-transform: translateX(-30px);
  }
  
  80% {
    -o-transform: translateX(10px);
  }
  
  100% {
    -o-transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  
  80% {
    transform: translateX(10px);
  }
  
  100% {
    transform: translateX(0);
  }
}

.notouch .animated.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  
  25% {
    -webkit-transform: scale(.95);
  }
  
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
  }
}

@-moz-keyframes bounceOut {
  0% {
    -moz-transform: scale(1);
  }
  
  25% {
    -moz-transform: scale(.95);
  }
  
  50% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }
  
  100% {
    opacity: 0;
    -moz-transform: scale(.3);
  }
}

@-o-keyframes bounceOut {
  0% {
    -o-transform: scale(1);
  }
  
  25% {
    -o-transform: scale(.95);
  }
  
  50% {
    opacity: 1;
    -o-transform: scale(1.1);
  }
  
  100% {
    opacity: 0;
    -o-transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  
  25% {
    transform: scale(.95);
  }
  
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  
  100% {
    opacity: 0;
    transform: scale(.3);
  }
}

.notouch .animated.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -moz-transform: translateY(20px);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}

@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -o-transform: translateY(20px);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.notouch .animated.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -moz-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@-moz-keyframes bounceOutDown {
  0% {
    -moz-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -moz-transform: translateY(-20px);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}

@-o-keyframes bounceOutDown {
  0% {
    -o-transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    -o-transform: translateY(-20px);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.notouch .animated.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  -moz-animation-name: bounceOutDown;
  -o-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@-moz-keyframes bounceOutLeft {
  0% {
    -moz-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}

@-o-keyframes bounceOutLeft {
  0% {
    -o-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -o-transform: translateX(20px);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.notouch .animated.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  -moz-animation-name: bounceOutLeft;
  -o-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@-moz-keyframes bounceOutRight {
  0% {
    -moz-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}

@-o-keyframes bounceOutRight {
  0% {
    -o-transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    -o-transform: translateX(-20px);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.notouch .animated.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  -moz-animation-name: bounceOutRight;
  -o-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateIn {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(-200deg);
    opacity: 0;
  }
  
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateIn {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(-200deg);
    opacity: 0;
  }
  
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}

.notouch .animated.rotateIn {
  -webkit-animation-name: rotateIn;
  -moz-animation-name: rotateIn;
  -o-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.notouch .animated.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -moz-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.notouch .animated.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -moz-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.notouch .animated.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -moz-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.notouch .animated.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -moz-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOut {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(200deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOut {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}

.notouch .animated.rotateOut {
  -webkit-animation-name: rotateOut;
  -moz-animation-name: rotateOut;
  -o-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.notouch .animated.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  -moz-animation-name: rotateOutUpLeft;
  -o-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

.notouch .animated.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  -moz-animation-name: rotateOutDownLeft;
  -o-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

.notouch .animated.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  -moz-animation-name: rotateOutUpRight;
  -o-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.notouch .animated.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  -moz-animation-name: rotateOutDownRight;
  -o-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes hinge {
  0% { -webkit-transform: rotate(0); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
  20%, 60% { -webkit-transform: rotate(80deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
  40% { -webkit-transform: rotate(60deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
  80% { -webkit-transform: rotate(60deg) translateY(0); opacity: 1; -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
  100% { -webkit-transform: translateY(700px); opacity: 0; }
}

@-moz-keyframes hinge {
  0% { -moz-transform: rotate(0); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
  20%, 60% { -moz-transform: rotate(80deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
  40% { -moz-transform: rotate(60deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
  80% { -moz-transform: rotate(60deg) translateY(0); opacity: 1; -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
  100% { -moz-transform: translateY(700px); opacity: 0; }
}

@-o-keyframes hinge {
  0% { -o-transform: rotate(0); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
  20%, 60% { -o-transform: rotate(80deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
  40% { -o-transform: rotate(60deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
  80% { -o-transform: rotate(60deg) translateY(0); opacity: 1; -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
  100% { -o-transform: translateY(700px); opacity: 0; }
}

@keyframes hinge {
  0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }
  20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; }
  40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; }
  80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; }
  100% { transform: translateY(700px); opacity: 0; }
}

.notouch .animated.hinge {
  -webkit-animation-name: hinge;
  -moz-animation-name: hinge;
  -o-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); }
  100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); }
}

@-moz-keyframes rollIn {
  0% { opacity: 0; -moz-transform: translateX(-100%) rotate(-120deg); }
  100% { opacity: 1; -moz-transform: translateX(0px) rotate(0deg); }
}

@-o-keyframes rollIn {
  0% { opacity: 0; -o-transform: translateX(-100%) rotate(-120deg); }
  100% { opacity: 1; -o-transform: translateX(0px) rotate(0deg); }
}

@keyframes rollIn {
  0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
  100% { opacity: 1; transform: translateX(0px) rotate(0deg); }
}

.notouch .animated.rollIn {
  -webkit-animation-name: rollIn;
  -moz-animation-name: rollIn;
  -o-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}

@-moz-keyframes rollOut {
  0% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
  
  100% {
    opacity: 0;
    -moz-transform: translateX(100%) rotate(120deg);
  }
}

@-o-keyframes rollOut {
  0% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
  
  100% {
    opacity: 0;
    -o-transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}

.notouch .animated.rollOut {
  -webkit-animation-name: rollOut;
  -moz-animation-name: rollOut;
  -o-animation-name: rollOut;
  animation-name: rollOut;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes lightSpeedIn {
  0% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
  60% { -webkit-transform: translateX(-20%) skewX(30deg); opacity: 1; }
  80% { -webkit-transform: translateX(0%) skewX(-15deg); opacity: 1; }
  100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@-moz-keyframes lightSpeedIn {
  0% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
  60% { -moz-transform: translateX(-20%) skewX(30deg); opacity: 1; }
  80% { -moz-transform: translateX(0%) skewX(-15deg); opacity: 1; }
  100% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@-o-keyframes lightSpeedIn {
  0% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
  60% { -o-transform: translateX(-20%) skewX(30deg); opacity: 1; }
  80% { -o-transform: translateX(0%) skewX(-15deg); opacity: 1; }
  100% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@keyframes lightSpeedIn {
  0% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
  60% { transform: translateX(-20%) skewX(30deg); opacity: 1; }
  80% { transform: translateX(0%) skewX(-15deg); opacity: 1; }
  100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
}

.notouch .animated.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  -moz-animation-name: lightSpeedIn;
  -o-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.notouch .animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes lightSpeedOut {
  0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
  100% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@-moz-keyframes lightSpeedOut {
  0% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
  100% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@-o-keyframes lightSpeedOut {
  0% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
  100% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@keyframes lightSpeedOut {
  0% { transform: translateX(0%) skewX(0deg); opacity: 1; }
  100% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

.notouch .animated.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  -moz-animation-name: lightSpeedOut;
  -o-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.notouch .animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  -moz-animation-duration: 0.25s;
  -o-animation-duration: 0.25s;
  animation-duration: 0.25s;
}


@media (max-device-width: 1024px) {
  .not-animated { opacity: 1; }
}







#cookieConsent {
  background-color: rgba(20,20,20,0.8);
  min-height: 26px;
  font-size: 14px;
  color: #ccc;
  line-height: 26px;
  padding: 8px 0 8px 30px;
  font-family: "Trebuchet MS",Helvetica,sans-serif;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 9999;
}
#cookieConsent a {
  color: #4B8EE7;
  text-decoration: none;
}
#closeCookieConsent {
  float: right;
  display: inline-block;
  cursor: pointer;
  height: 20px;
  width: 20px;
  margin: -15px 0 0 0;
  font-weight: bold;
}
#closeCookieConsent:hover {
  color: #FFF;
}
#cookieConsent a.cookieConsentOK {
  background-color: #F1D600;
  color: #000;
  display: inline-block;
  border-radius: 5px;
  padding: 0 20px;
  cursor: pointer;
  float: right;
  margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
  background-color: #E0C91F;
}
/*Cookie Consent End*/