/*
Animate.css - http://daneden.me/animate
LICENSED UNDER THE  GPL LICENSE (GPL) http://www.gnu.org/licenses/gpl.html

Copyright (c) 2013 Dan Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/


.animated {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
}

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

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

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

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}
}

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

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}
@-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);
	}	
}

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

.bounceOut {
	-webkit-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);
	}
}

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

.bounceOutUp {
	-webkit-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);
	}
}

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

.bounceOutDown {
	-webkit-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);
	}
}

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

.bounceOutLeft {
	-webkit-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);
	}
}

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

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}


/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */


.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/* line 5, app/assets/stylesheets/billing.scss */
#billing .billing-block {
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px #d9d9d9;
  padding: 45px 48px 53px 41px;
  margin-bottom: 40px;
}

/* line 13, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans {
  margin-top: 85px;
}

/* line 16, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block {
  background-color: #ffffff;
  border: solid 1px #dddddd;
}

/* line 20, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-header {
  height: 46px;
  color: white;
}

/* line 24, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-header .text-center {
  padding-top: 12px;
}

/* line 29, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-content {
  padding-bottom: 30px;
}

/* line 32, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-content .plan-price {
  min-height: 115px;
  padding-top: 8px;
}

/* line 36, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-content .plan-price h2 {
  font-weight: 700;
  color: #585858;
}

/* line 41, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-content .plan-price h4 {
  color: #585858;
  margin: 0 auto;
}

/* line 46, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-content .plan-price h2.contact-us {
  padding-top: 10px;
}

/* line 50, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-content .plan-price h4.text-center {
  font-size: 14px;
}

/* line 55, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-content .buy-button {
  width: 180px;
  height: 50px;
  border-radius: 4px;
  background-color: #4a90e2;
  color: white;
  line-height: 32px;
  border: none;
  max-width: 100%;
  margin: 27px 27px 0 27px;
}

/* line 67, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-content .buy-button.current {
  background-color: #d6d6d6;
}

/* line 71, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-content .stripe-button-el {
  margin-left: 60px;
}

/* line 75, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-content p.text-center {
  min-height: 43px;
  padding-top: 16px;
}

/* line 80, app/assets/stylesheets/billing.scss */
#billing .billing-block .plans .plan-block .plan-content hr {
  margin: 0;
  padding: 0;
}

/* line 88, app/assets/stylesheets/billing.scss */
#billing .billing-block .solo {
  background-color: #dc5858;
}

/* line 92, app/assets/stylesheets/billing.scss */
#billing .billing-block .essential {
  background-color: #4c6ecc;
}

/* line 96, app/assets/stylesheets/billing.scss */
#billing .billing-block .professional {
  background-color: #19cb7f;
}

/* line 100, app/assets/stylesheets/billing.scss */
#billing .billing-block .enterprise {
  background-color: #904ccc;
}

/* line 104, app/assets/stylesheets/billing.scss */
#billing .billing-block .plan-popular {
  margin-top: -40px;
  height: 40px;
  color: white;
  background-color: #61a96d;
}

/* line 110, app/assets/stylesheets/billing.scss */
#billing .billing-block .plan-popular .text-center {
  padding-top: 10px;
}
/*!
 * Bootstrap v3.1.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! normalize.css v3.0.0 | MIT License | git.io/normalize */

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  margin: .67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
@media print {
  * {
    color: #000 !important;
    text-shadow: none !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;
  }
  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;
  }
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  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: #333;
  background-color: #fff;
}
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;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  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: #999;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
cite {
  font-style: normal;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-muted {
  color: #999;
}
.text-primary {
  color: #428bca;
}
a.text-primary:hover {
  color: #3071a9;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #428bca;
}
a.bg-primary:hover {
  background-color: #3071a9;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}
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-right: 5px;
  padding-left: 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;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #999;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
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;
  white-space: nowrap;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  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 {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666666666666%;
}
.col-xs-10 {
  width: 83.33333333333334%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666666666666%;
}
.col-xs-7 {
  width: 58.333333333333336%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666666666667%;
}
.col-xs-4 {
  width: 33.33333333333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.666666666666664%;
}
.col-xs-1 {
  width: 8.333333333333332%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666666666666%;
}
.col-xs-pull-10 {
  right: 83.33333333333334%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666666666666%;
}
.col-xs-pull-7 {
  right: 58.333333333333336%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666666666667%;
}
.col-xs-pull-4 {
  right: 33.33333333333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.666666666666664%;
}
.col-xs-pull-1 {
  right: 8.333333333333332%;
}
.col-xs-pull-0 {
  right: 0;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666666666666%;
}
.col-xs-push-10 {
  left: 83.33333333333334%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666666666666%;
}
.col-xs-push-7 {
  left: 58.333333333333336%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666666666667%;
}
.col-xs-push-4 {
  left: 33.33333333333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.666666666666664%;
}
.col-xs-push-1 {
  left: 8.333333333333332%;
}
.col-xs-push-0 {
  left: 0;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666666666666%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333333334%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666666666666%;
}
.col-xs-offset-7 {
  margin-left: 58.333333333333336%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666666666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.666666666666664%;
}
.col-xs-offset-1 {
  margin-left: 8.333333333333332%;
}
.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 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666666666666%;
  }
  .col-sm-10 {
    width: 83.33333333333334%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666666666666%;
  }
  .col-sm-7 {
    width: 58.333333333333336%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666666666667%;
  }
  .col-sm-4 {
    width: 33.33333333333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.666666666666664%;
  }
  .col-sm-1 {
    width: 8.333333333333332%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666666666666%;
  }
  .col-sm-pull-10 {
    right: 83.33333333333334%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666666666666%;
  }
  .col-sm-pull-7 {
    right: 58.333333333333336%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666666666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.666666666666664%;
  }
  .col-sm-pull-1 {
    right: 8.333333333333332%;
  }
  .col-sm-pull-0 {
    right: 0;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666666666666%;
  }
  .col-sm-push-10 {
    left: 83.33333333333334%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666666666666%;
  }
  .col-sm-push-7 {
    left: 58.333333333333336%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666666666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.666666666666664%;
  }
  .col-sm-push-1 {
    left: 8.333333333333332%;
  }
  .col-sm-push-0 {
    left: 0;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666666666666%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .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 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666666666666%;
  }
  .col-md-10 {
    width: 83.33333333333334%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666666666666%;
  }
  .col-md-7 {
    width: 58.333333333333336%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666666666667%;
  }
  .col-md-4 {
    width: 33.33333333333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.666666666666664%;
  }
  .col-md-1 {
    width: 8.333333333333332%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666666666666%;
  }
  .col-md-pull-10 {
    right: 83.33333333333334%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666666666666%;
  }
  .col-md-pull-7 {
    right: 58.333333333333336%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666666666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.666666666666664%;
  }
  .col-md-pull-1 {
    right: 8.333333333333332%;
  }
  .col-md-pull-0 {
    right: 0;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666666666666%;
  }
  .col-md-push-10 {
    left: 83.33333333333334%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666666666666%;
  }
  .col-md-push-7 {
    left: 58.333333333333336%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666666666667%;
  }
  .col-md-push-4 {
    left: 33.33333333333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.666666666666664%;
  }
  .col-md-push-1 {
    left: 8.333333333333332%;
  }
  .col-md-push-0 {
    left: 0;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666666666666%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-md-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-md-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666666666666%;
  }
  .col-lg-10 {
    width: 83.33333333333334%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666666666666%;
  }
  .col-lg-7 {
    width: 58.333333333333336%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666666666667%;
  }
  .col-lg-4 {
    width: 33.33333333333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.666666666666664%;
  }
  .col-lg-1 {
    width: 8.333333333333332%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666666666666%;
  }
  .col-lg-pull-10 {
    right: 83.33333333333334%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666666666666%;
  }
  .col-lg-pull-7 {
    right: 58.333333333333336%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666666666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.666666666666664%;
  }
  .col-lg-pull-1 {
    right: 8.333333333333332%;
  }
  .col-lg-pull-0 {
    right: 0;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666666666666%;
  }
  .col-lg-push-10 {
    left: 83.33333333333334%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666666666666%;
  }
  .col-lg-push-7 {
    left: 58.333333333333336%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666666666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.666666666666664%;
  }
  .col-lg-push-1 {
    left: 8.333333333333332%;
  }
  .col-lg-push-0 {
    left: 0;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666666666666%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .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 #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-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;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
@media (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  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;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control:-moz-placeholder {
  color: #999;
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}
input[type="date"] {
  line-height: 34px;
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  display: block;
  min-height: 20px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  display: inline;
  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;
  font-weight: normal;
  vertical-align: middle;
  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,
select[multiple].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,
select[multiple].input-lg {
  height: auto;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.has-feedback .form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}
.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;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.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;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
.form-horizontal .form-control-static {
  padding-top: 7px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 15px;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  box-shadow: none;
  opacity: .65;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #333;
  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: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #fff;
  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-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  color: #fff;
  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: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  color: #fff;
  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-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  color: #fff;
  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: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  color: #fff;
  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-link {
  font-weight: normal;
  color: #428bca;
  cursor: pointer;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  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: #999;
  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-right: 0;
  padding-left: 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;
  transition: opacity .15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height .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-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;
  font-size: 14px;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.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: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #428bca;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #999;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px solid;
}
.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;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.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 {
  margin-left: -5px;
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-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-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-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-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  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-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.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,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  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 > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.nav > li.disabled > a {
  color: #999;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #999;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  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 #ddd;
}
.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: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.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 #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    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: #fff;
  }
}
.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: #fff;
  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 {
  margin-bottom: 5px;
  text-align: center;
}
.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 #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    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: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  max-height: 340px;
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.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;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 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;
  height: 20px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: none;
}
.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 -15px;
}
.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: -15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    box-shadow: none;
  }
  .navbar-form.navbar-right:last-child {
    margin-right: -15px;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
  .navbar-text.navbar-right:last-child {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #999;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #999;
}
.navbar-inverse .navbar-nav > li > a {
  color: #999;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}
@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: #999;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #999;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.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 {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #999;
}
.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;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #428bca;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #2a6496;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #428bca;
  border-color: #428bca;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.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-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-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-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.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: #999;
  cursor: not-allowed;
  background-color: #fff;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
.label[href]:hover,
.label[href]:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #999;
}
.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;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #999;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #428bca;
  background-color: #fff;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.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-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #428bca;
}
.thumbnail .caption {
  padding: 9px;
  color: #333;
}
.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 {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.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 {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #428bca;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  transition: width .6s ease;
}
.progress-striped .progress-bar {
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .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:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .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 {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-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: #555;
}
a.list-group-item .list-group-item-heading {
  color: #333;
}
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: #fff;
  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-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
  padding: 15px;
}
.panel > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group .list-group-item:first-child {
  border-top: 0;
}
.panel > .list-group .list-group-item:last-child {
  border-bottom: 0;
}
.panel > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table {
  margin-bottom: 0;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,
.panel > .table-bordered > tfoot > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:first-child > th,
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tfoot > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:first-child > td {
  border-top: 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 {
  margin-bottom: 0;
  border: 0;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-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 #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 4px;
}
.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 #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #428bca;
}
.panel-primary > .panel-heading {
  color: #fff;
  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-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;
}
.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;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, .15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  transition:         transform .3s ease-out;
  transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  transform: translate(0, 0);
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: none;
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  min-height: 16.428571429px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}
.modal-body {
  position: relative;
  padding: 20px;
}
.modal-footer {
  padding: 19px 20px 20px;
  margin-top: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  font-size: 12px;
  line-height: 1.4;
  visibility: visible;
  filter: alpha(opacity=0);
  opacity: 0;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  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: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  right: 5px;
  bottom: 0;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  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 {
  content: "";
  border-width: 10px;
}
.popover.top .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
}
.popover.right .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, .25);
}
.popover.left .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  transition: .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;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: none;
  opacity: .9;
}
.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%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(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 {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: 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;
  }
}
.visible-sm,
tr.visible-sm,
th.visible-sm,
td.visible-sm {
  display: none !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;
  }
}
.visible-md,
tr.visible-md,
th.visible-md,
td.visible-md {
  display: none !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;
  }
}
.visible-lg,
tr.visible-lg,
th.visible-lg,
td.visible-lg {
  display: none !important;
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (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-sm,
  tr.hidden-sm,
  th.hidden-sm,
  td.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-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;
  }
}
@media print {
  .hidden-print,
  tr.hidden-print,
  th.hidden-print,
  td.hidden-print {
    display: none !important;
  }
}
/* line 1, app/assets/stylesheets/chart.scss */
.border {
  border: 1px solid #d9d9d9;
}

/* line 5, app/assets/stylesheets/chart.scss */
.plotlyChartArea {
  height: 500px;
}

/* line 10, app/assets/stylesheets/chart.scss */
.js-plotly-plot .plotly .modebar-container .modebar {
  position: absolute;
  top: 10px;
  right: 10px;
}

@media (min-width: 767px) and (max-width: 992px) {
  /* line 17, app/assets/stylesheets/chart.scss */
  .mt-chart {
    margin-top: 50px;
  }
  /* line 20, app/assets/stylesheets/chart.scss */
  #survey_header div.survey-flex {
    margin-top: 60px !important;
  }
}

/* line 25, app/assets/stylesheets/chart.scss */
.spinner-chart {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #00000022;
  color: #fff;
}

/* line 39, app/assets/stylesheets/chart.scss */
.spinner-table {
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #00000022;
  color: #fff;
}

/* line 53, app/assets/stylesheets/chart.scss */
.chart-actions, .table-actions {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* line 60, app/assets/stylesheets/chart.scss */
.mb-0 {
  margin-bottom: 0 !important;
}

/* line 64, app/assets/stylesheets/chart.scss */
.mb-20 {
  margin-bottom: 20px !important;
}

/* line 68, app/assets/stylesheets/chart.scss */
.p-15 {
  padding: 15px !important;
}

/* line 72, app/assets/stylesheets/chart.scss */
.gtitle {
  font-weight: bold !important;
}

/* line 76, app/assets/stylesheets/chart.scss */
.flex-chart, .flex-table {
  display: flex;
  position: relative;
}

/* line 81, app/assets/stylesheets/chart.scss */
.w-100 {
  width: 100%;
}

/* line 85, app/assets/stylesheets/chart.scss */
.js-plotly-plot .plotly .main-svg {
  width: 100%;
}

/* line 89, app/assets/stylesheets/chart.scss */
.select-chart, .select-table {
  display: inline-block !important;
}

/* line 93, app/assets/stylesheets/chart.scss */
.charts .results-block {
  padding: 10px;
}

/* line 97, app/assets/stylesheets/chart.scss */
.navigatorBtn, .navigatorBtnTable {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px !important;
  margin-top: 64px;
  font-size: 20px !important;
  background-color: transparent;
  border-radius: 0 !important;
  color: #428bca;
}

/* line 107, app/assets/stylesheets/chart.scss */
.navigatorBtn:hover, .navigatorBtnTable:hover {
  background-color: #efefef !important;
  color: #428bca !important;
}

/* line 111, app/assets/stylesheets/chart.scss */
.navigatorBtn:active, .navigatorBtnTable:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.13);
  outline: 0 !important;
  color: #428bca !important;
}

/* line 116, app/assets/stylesheets/chart.scss */
.navigatorBtn[disabled="true"], .navigatorBtnTable[disabled="true"] {
  opacity: 0.2 !important;
  pointer-events: none;
}

/* line 122, app/assets/stylesheets/chart.scss */
.order-3 {
  order: 3;
}

@media (max-width: 600px) {
  /* line 127, app/assets/stylesheets/chart.scss */
  .chart-div, .table-div {
    order: 3;
  }
  /* line 129, app/assets/stylesheets/chart.scss */
  .chart-div .border, .table-div .border {
    margin: 0 5px;
  }
  /* line 133, app/assets/stylesheets/chart.scss */
  .flex-chart, .flex-table {
    flex-direction: column;
    align-items: center;
  }
  /* line 137, app/assets/stylesheets/chart.scss */
  .chart-actions, .table-actions {
    margin: 40px 5px 10px 5px;
  }
  /* line 140, app/assets/stylesheets/chart.scss */
  .navigatorBtn, .navigatorBtnTable {
    padding: 6px 12px !important;
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
    margin-top: 0;
    border-radius: 4px !important;
    position: absolute;
    font-size: 14px !important;
    top: 0;
  }
  /* line 150, app/assets/stylesheets/chart.scss */
  .navigatorBtn:hover, .navigatorBtn:focus, .navigatorBtnTable:hover, .navigatorBtnTable:focus {
    color: #fff !important;
    background-color: #428bca !important;
    border-color: #357ebd;
  }
  /* line 156, app/assets/stylesheets/chart.scss */
  .navigatorBtn:first-child, .navigatorBtnTable:first-child {
    order: 1;
    transform: translate(calc(50% - 25px));
  }
  /* line 160, app/assets/stylesheets/chart.scss */
  .navigatorBtn:last-child, .navigatorBtnTable:last-child {
    order: 2;
    transform: translate(calc(50% + 25px));
  }
}

@media (max-width: 767px) {
  /* line 168, app/assets/stylesheets/chart.scss */
  .charts {
    padding: 0px !important;
  }
  /* line 171, app/assets/stylesheets/chart.scss */
  .p-15 {
    padding: 10px 0px !important;
  }
}

/* line 176, app/assets/stylesheets/chart.scss */
.mw-155 {
  max-width: 155px;
}

/* line 180, app/assets/stylesheets/chart.scss */
.mw-195 {
  max-width: 195px;
}

/* line 184, app/assets/stylesheets/chart.scss */
.date-chart, .date-table {
  display: inline-block !important;
  cursor: pointer !important;
  background: #ffffff !important;
}

/* line 188, app/assets/stylesheets/chart.scss */
.date-chart:hover, .date-table:hover {
  border-color: #66afe9;
}

/* line 193, app/assets/stylesheets/chart.scss */
.mr-10 {
  margin-right: 10px;
}

/* line 197, app/assets/stylesheets/chart.scss */
.ml-10 {
  margin-left: 10px;
}

/* line 201, app/assets/stylesheets/chart.scss */
.chart-description {
  color: #455a79;
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 20px !important;
}

/* line 208, app/assets/stylesheets/chart.scss */
.bglayer .bg {
  x: 0;
  width: 100%;
}

/* line 213, app/assets/stylesheets/chart.scss */
.nsewdrag.cursor-pointer {
  cursor: default !important;
}

/* line 217, app/assets/stylesheets/chart.scss */
.yearSelect, .quarterSelect {
  width: 200px;
}

/* line 219, app/assets/stylesheets/chart.scss */
.yearSelect .flatpickr-rContainer, .quarterSelect .flatpickr-rContainer {
  width: 100%;
}

/* line 222, app/assets/stylesheets/chart.scss */
.yearSelect .flatpickr-monthSelect-month, .quarterSelect .flatpickr-monthSelect-month {
  display: none;
  margin: 2px 0;
  background: #fff;
  color: #fff;
  width: 97%;
  height: calc(40px);
  border: 1px solid #e6e6e6;
}

/* line 230, app/assets/stylesheets/chart.scss */
.yearSelect .flatpickr-monthSelect-month.selected, .quarterSelect .flatpickr-monthSelect-month.selected {
  background: #fff;
  color: #fff;
}

/* line 233, app/assets/stylesheets/chart.scss */
.yearSelect .flatpickr-monthSelect-month.selected:after, .quarterSelect .flatpickr-monthSelect-month.selected:after {
  color: #000;
}

/* line 237, app/assets/stylesheets/chart.scss */
.yearSelect .flatpickr-monthSelect-month:nth-child(1), .quarterSelect .flatpickr-monthSelect-month:nth-child(1) {
  display: inline-block;
}

/* line 240, app/assets/stylesheets/chart.scss */
.yearSelect .flatpickr-monthSelect-month:hover, .quarterSelect .flatpickr-monthSelect-month:hover {
  background: #e6e6e6;
  color: #e6e6e6;
}

/* line 244, app/assets/stylesheets/chart.scss */
.yearSelect .flatpickr-monthSelect-month:after, .quarterSelect .flatpickr-monthSelect-month:after {
  color: #000;
  position: absolute;
  top: calc(50% - 12px);
}

/* line 254, app/assets/stylesheets/chart.scss */
.yearSelect .flatpickr-monthSelect-month:nth-child(1):after {
  content: 'Select';
  left: calc(50% - 18.22px);
}

/* line 262, app/assets/stylesheets/chart.scss */
.quarterSelect .flatpickr-monthSelect-month:nth-child(4), .quarterSelect .flatpickr-monthSelect-month:nth-child(7), .quarterSelect .flatpickr-monthSelect-month:nth-child(10) {
  display: inline-block;
}

/* line 264, app/assets/stylesheets/chart.scss */
.quarterSelect .flatpickr-monthSelect-month:nth-child(4):after, .quarterSelect .flatpickr-monthSelect-month:nth-child(7):after, .quarterSelect .flatpickr-monthSelect-month:nth-child(10):after {
  left: calc(50% - 30.36px);
}

/* line 268, app/assets/stylesheets/chart.scss */
.quarterSelect .flatpickr-monthSelect-month.selected {
  background: #569ff7;
  color: #569ff7;
}

/* line 271, app/assets/stylesheets/chart.scss */
.quarterSelect .flatpickr-monthSelect-month.selected:after {
  color: #fff;
}

/* line 275, app/assets/stylesheets/chart.scss */
.quarterSelect .flatpickr-monthSelect-month:nth-child(1):after {
  left: calc(50% - 30.36px);
  content: 'Quarter 1';
}

/* line 279, app/assets/stylesheets/chart.scss */
.quarterSelect .flatpickr-monthSelect-month:nth-child(4):after {
  content: 'Quarter 2';
}

/* line 282, app/assets/stylesheets/chart.scss */
.quarterSelect .flatpickr-monthSelect-month:nth-child(7):after {
  content: 'Quarter 3';
}

/* line 285, app/assets/stylesheets/chart.scss */
.quarterSelect .flatpickr-monthSelect-month:nth-child(10):after {
  content: 'Quarter 4';
}

/* line 291, app/assets/stylesheets/chart.scss */
.reference-table {
  border-top: 2px solid #ddd;
}

/* line 294, app/assets/stylesheets/chart.scss */
.reference-table th {
  font-weight: bolder;
}

/* line 297, app/assets/stylesheets/chart.scss */
.reference-table td, .reference-table th {
  text-align: center;
  vertical-align: middle;
}

/* line 301, app/assets/stylesheets/chart.scss */
.reference-table .number {
  margin-left: 10px;
  color: #888888;
}

/* line 305, app/assets/stylesheets/chart.scss */
.reference-table .badge {
  padding: 2px 8px;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid;
  margin-left: 10px;
}

/* line 311, app/assets/stylesheets/chart.scss */
.reference-table .badge.danger {
  color: red;
  border-color: red;
}

/* line 315, app/assets/stylesheets/chart.scss */
.reference-table .badge.success {
  color: green;
  border-color: green;
}

@media (max-width: 767px) {
  /* line 323, app/assets/stylesheets/chart.scss */
  .reference-table .table-responsive {
    overflow-x: auto;
    margin-bottom: 0;
    border: 0;
  }
}

/* line 330, app/assets/stylesheets/chart.scss */
.w-20 {
  width: 20%;
}

/* line 334, app/assets/stylesheets/chart.scss */
.plotlyjsicon {
  display: none;
}

/* line 338, app/assets/stylesheets/chart.scss */
.table-title {
  font-size: 17px;
  text-align: center;
  margin: 20px 0 15px 0;
}

/* line 344, app/assets/stylesheets/chart.scss */
.nodata-table {
  font-size: "Open Sans", verdana, arial, sans-serif;
  color: #444444;
  height: 333px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  background-color: #f3f3f3;
}

/* line 356, app/assets/stylesheets/chart.scss */
.point path {
  filter: drop-shadow(4px 2px 1px rgba(0, 0, 0, 0.3));
}

@media (min-width: 992px) {
  /* line 361, app/assets/stylesheets/chart.scss */
  .survey-flex .pull-right {
    flex-shrink: 0;
  }
}
/* line 1, app/assets/stylesheets/choices.scss */
.response-noscript {
  color: #666;
  font-size: 16px;
  left: 50%;
  margin: 0 auto;
  max-width: 600px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* line 11, app/assets/stylesheets/choices.scss */
.response-noscript h1 {
  margin-top: 0;
}

@media screen and (max-width: 700px) {
  /* line 1, app/assets/stylesheets/choices.scss */
  .response-noscript {
    margin: 50px;
    position: static;
    transform: none;
  }
}
/*
 * This combined file was created by the DataTables downloader builder:
 *   https://datatables.net/download
 *
 * To rebuild or modify this file with the latest versions of the included
 * software please visit:
 *   https://datatables.net/download/#dt/dt-1.10.13
 *
 * Included libraries:
 *   DataTables 1.10.13
 */

/*
 * Table styles
 */

table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
   * Header and footer styles
   */
  /*
   * Body styles
   */
}
table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}
table.dataTable thead th,
table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #111;
}
table.dataTable thead th:active,
table.dataTable thead td:active {
  outline: none;
}
table.dataTable tfoot th,
table.dataTable tfoot td {
  padding: 10px 18px 6px 18px;
  border-top: 1px solid #111;
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
  cursor: pointer;
  *cursor: hand;
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  background-repeat: no-repeat;
  background-position: center right;
}
table.dataTable thead .sorting {
  background-image: url(/assets/sort_both.png);
}
table.dataTable thead .sorting_asc {
  background-image: url(/assets/sort_asc.png);
}
table.dataTable thead .sorting_desc {
  background-image: url(/assets/sort_desc.png);
}
table.dataTable thead .sorting_asc_disabled {
  background-image: url(/assets/sort_asc_disabled.png);
}
table.dataTable thead .sorting_desc_disabled {
  background-image: url(/assets/sort_desc_disabled.png);
}
table.dataTable tbody tr {
  background-color: #ffffff;
}
table.dataTable tbody tr.selected {
  background-color: #B0BED9;
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 8px 10px;
}
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  border-top: 1px solid #ddd;
}
table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
  border-top: none;
}
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
  border-left: 1px solid #ddd;
}
table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
  border-top: none;
}
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
  background-color: #f9f9f9;
}
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
  background-color: #acbad4;
}
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
  background-color: #f6f6f6;
}
table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
  background-color: #aab7d1;
}
table.dataTable.order-column tbody tr > .sorting_1,
table.dataTable.order-column tbody tr > .sorting_2,
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
table.dataTable.display tbody tr > .sorting_2,
table.dataTable.display tbody tr > .sorting_3 {
  background-color: #fafafa;
}
table.dataTable.order-column tbody tr.selected > .sorting_1,
table.dataTable.order-column tbody tr.selected > .sorting_2,
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
table.dataTable.display tbody tr.selected > .sorting_2,
table.dataTable.display tbody tr.selected > .sorting_3 {
  background-color: #acbad5;
}
table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  background-color: #f1f1f1;
}
table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
  background-color: #f3f3f3;
}
table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
  background-color: whitesmoke;
}
table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
  background-color: #a6b4cd;
}
table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
  background-color: #a8b5cf;
}
table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
  background-color: #a9b7d1;
}
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
  background-color: #fafafa;
}
table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
  background-color: #fcfcfc;
}
table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
  background-color: #fefefe;
}
table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
  background-color: #acbad5;
}
table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
  background-color: #aebcd6;
}
table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
  background-color: #afbdd8;
}
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  background-color: #eaeaea;
}
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  background-color: #ececec;
}
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  background-color: #efefef;
}
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  background-color: #a2aec7;
}
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  background-color: #a3b0c9;
}
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  background-color: #a5b2cb;
}
table.dataTable.no-footer {
  border-bottom: 1px solid #111;
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}
table.dataTable.compact thead th,
table.dataTable.compact thead td {
  padding: 4px 17px 4px 4px;
}
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
  padding: 4px;
}
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

table.dataTable,
table.dataTable th,
table.dataTable td {
  box-sizing: content-box;
}

/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
  *zoom: 1;
  zoom: 1;
}
.dataTables_wrapper .dataTables_length {
  float: left;
}
.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}
.dataTables_wrapper .dataTables_filter input {
  margin-left: 0.5em;
}
.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em;
}
.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  *cursor: hand;
  color: #333 !important;
  border: 1px solid transparent;
  border-radius: 2px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #333 !important;
  border: 1px solid #979797;
  background-color: white;
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
  /* W3C */
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111;
  background-color: #585858;
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #585858 0%, #111 100%);
  /* W3C */
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #2b2b2b;
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  /* W3C */
  box-shadow: inset 0 0 3px #111;
}
.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em;
}
.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #333;
}
.dataTables_wrapper .dataTables_scroll {
  clear: both;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  *margin-top: -1px;
  -webkit-overflow-scrolling: touch;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td {
  vertical-align: middle;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #111;
}
.dataTables_wrapper.no-footer div.dataTables_scrollHead table,
.dataTables_wrapper.no-footer div.dataTables_scrollBody table {
  border-bottom: none;
}
.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em;
  }
}
/* line 4, app/assets/stylesheets/edit_password.scss */
#edit_password {
  color: white;
  width: 100%;
  min-height: 100%;
  background-image: url(/assets/welcome-bg-a8136faaf2d9ac9b146206cf6e7bb0464296b38a44142b6d5ea2da0ec3446aee.png);
  background-position: center;
  background-size: cover;
  padding: 40px;
}

/* line 13, app/assets/stylesheets/edit_password.scss */
#edit_password h1 {
  margin-top: 10%;
}

/* line 16, app/assets/stylesheets/edit_password.scss */
#edit_password .container {
  margin-top: 32px;
}

/* line 19, app/assets/stylesheets/edit_password.scss */
#edit_password .container #editPasswordForm {
  width: 390px;
  margin-left: auto;
  margin-right: auto;
}

/* line 24, app/assets/stylesheets/edit_password.scss */
#edit_password .container #editPasswordForm .btn {
  color: white;
  margin-top: 25px;
  border: none;
  width: 390px;
  height: 50px;
  border-radius: 4px;
  background-color: #19cb7f;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

/* line 38, app/assets/stylesheets/edit_password.scss */
#edit_password a {
  font-weight: normal;
  font-size: 14px;
  color: white;
}
/* line 8, app/assets/stylesheets/edit_profile.scss */
#edit_profile .header .pull-right, #billing .header .pull-right, #integrations .header .pull-right {
  margin-top: 22px;
}

/* line 11, app/assets/stylesheets/edit_profile.scss */
#edit_profile .header .pull-right .btn-default, #billing .header .pull-right .btn-default, #integrations .header .pull-right .btn-default {
  width: 129px;
  height: 35px;
  border-radius: 4px;
  border: solid 1px #cdcdcd;
  color: #949494;
  background: transparent;
}

/* line 19, app/assets/stylesheets/edit_profile.scss */
#edit_profile .header .pull-right .btn-default.active, #billing .header .pull-right .btn-default.active, #integrations .header .pull-right .btn-default.active {
  background-color: rgba(255, 255, 255, 0.49);
  border: solid 1px #50b3e3;
  color: #50b3e3;
}

/* line 29, app/assets/stylesheets/edit_profile.scss */
#edit_profile form.edit_user, #billing form.edit_user, #integrations form.edit_user {
  width: 100%;
  padding: 22.3px 0 45px 31.5px;
  background: white;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px #d9d9d9;
  border-radius: 4px;
}

/* line 38, app/assets/stylesheets/edit_profile.scss */
#edit_profile input, #billing input, #integrations input {
  max-width: 30%;
}

/* line 41, app/assets/stylesheets/edit_profile.scss */
#edit_profile input.btn-default, #billing input.btn-default, #integrations input.btn-default {
  width: 151px;
  height: 44px;
  border-radius: 4px;
  font-size: 16px;
  color: #ffffff;
  background-color: #19cb7f;
}

/* line 49, app/assets/stylesheets/edit_profile.scss */
#edit_profile a.btn-default, #billing a.btn-default, #integrations a.btn-default {
  margin-top: 5px;
  margin-left: 24px;
  width: 91px;
  height: 35px;
  font-size: 16px;
  color: #5a5a5a;
  background-color: #e4e4e4;
}

/* line 59, app/assets/stylesheets/edit_profile.scss */
#edit_profile h4, #billing h4, #integrations h4 {
  font-size: 20px;
  margin: 28px 0;
  color: #455a79;
}
/* line 2, app/assets/stylesheets/god.scss */
#god .stats {
  list-style: none;
  padding: 0;
}

/* line 6, app/assets/stylesheets/god.scss */
#god .stats .stat {
  display: inline-block;
  width: 170px;
  height: 120px;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  margin-right: 20px;
}

/* line 13, app/assets/stylesheets/god.scss */
#god .stats .stat .name {
  text-align: center;
  font-weight: bold;
}

/* line 18, app/assets/stylesheets/god.scss */
#god .stats .stat .value {
  font-size: 48px;
  margin: 0 auto;
  text-align: center;
}
@font-face {
	font-family: 'icomoon';
	src:url(/assets/icomoon/icomoon-7d7dfed0613d06ce3620c85f444fa98ba1056b875be7e5fbc4e544ba8314ef97.eot);
	src:url(/assets/icomoon/icomoon--7d7dfed0613d06ce3620c85f444fa98ba1056b875be7e5fbc4e544ba8314ef97.eot#iefix) format('embedded-opentype'),
		url(/assets/icomoon/icomoon-89791a13e55aa4aa024cb3514d4f0d2c1b3eefae24b54fbcf447478dcd7ef436.woff) format('woff'),
		url(/assets/icomoon/icomoon-492b3fa8dd8c6d1879e9b262e357b9054a75c7a1b2ac59b838be4b047d7f22dc.ttf) format('truetype'),
		url(/comoon/icomoon.svg.txt#icomoon) format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'icomoon';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-cancel-circle, .icon-puzzle, .icon-lamp, .icon-wand, .icon-vector, .icon-menu, .icon-close, .icon-twitter, .icon-facebook, .icon-vimeo, .icon-dribbble, .icon-mug, .icon-droplet, .icon-puzzle-2, .icon-target, .icon-dice, .icon-map, .icon-location, .icon-box-add, .icon-phone, .icon-phone-2, .icon-phone-3, .icon-tumblr, .icon-forrst, .icon-feed, .icon-pinterest, .icon-clock, .icon-bubble, .icon-screen, .icon-screen-2, .icon-laptop, .icon-mobile, .icon-mobile-2, .icon-tablet, .icon-tv, .icon-pencil, .icon-new-tab, .icon-quotes-left, .icon-user, .icon-bubble-2, .icon-google-plus, .icon-instagram, .icon-youtube, .icon-flickr, .icon-deviantart, .icon-github, .icon-blogger, .icon-soundcloud, .icon-lastfm, .icon-file, .icon-images, .icon-arrow-right, .icon-arrow-left, .icon-bubble-3, .icon-envelop, .icon-compass, .icon-spinner, .icon-spinner-2, .icon-spinner-3, .icon-play, .icon-pause, .icon-arrow-up-left, .icon-arrow-right-2, .icon-arrow-down-right, .icon-arrow-down, .icon-arrow-left-2, .icon-arrow-up, .icon-arrow-up-right, .icon-arrow-down-left, .icon-stopwatch, .icon-pushpin, .icon-compass-2, .icon-history, .icon-clock-2, .icon-alarm, .icon-earth, .icon-globe, .icon-target-2, .icon-car, .icon-truck, .icon-fire, .icon-lab, .icon-dumbbell, .icon-rocket, .icon-meter, .icon-dashboard, .icon-meter-fast, .icon-hammer, .icon-trophy, .icon-trophy-star, .icon-eye, .icon-eye-2, .icon-fan, .icon-sun, .icon-airplane, .icon-cogs, .icon-anchor, .icon-shield, .icon-lightning, .icon-power, .icon-pyramid, .icon-road, .icon-ladder, .icon-hammer-2, .icon-cube, .icon-cube-2, .icon-camera, .icon-piano, .icon-movie, .icon-connection, .icon-knight, .icon-diamonds, .icon-stack, .icon-folder-remove, .icon-folder-open, .icon-cart-checkout, .icon-cart, .icon-tag, .icon-basket, .icon-support, .icon-phone-4, .icon-reply, .icon-flip, .icon-database, .icon-database-2, .icon-calendar, .icon-calendar-2, .icon-keyboard, .icon-user-plus, .icon-users, .icon-bubble-forward, .icon-bubble-up, .icon-bubble-last, .icon-bubble-link, .icon-bubble-check, .icon-bubble-quote, .icon-lock, .icon-user-plus-2, .icon-user-minus, .icon-lock-2, .icon-paw, .icon-accessibility, .icon-eye-blocked, .icon-download, .icon-smiley, .icon-thumbs-down, .icon-yin-yang, .icon-remove, .icon-bars, .icon-pie, .icon-plus-circle, .icon-sad, .icon-shocked, .icon-neutral, .icon-checkmark, .icon-volume-low, .icon-arrow-down-2, .icon-volume0, .icon-bookmarks, .icon-arrow-left-3, .icon-radio-unchecked, .icon-sigma, .icon-strikethrough, .icon-backspace, .icon-filter, .icon-arrow-up-right-2, .icon-arrow-up-right-3, .icon-file-zip, .icon-home, .icon-blog, .icon-camera-2, .icon-file-2, .icon-copy, .icon-cart-plus, .icon-music, .icon-lock-3, .icon-zoom-out, .icon-user-block, .icon-search, .icon-zoom-in, .icon-bubble-notification, .icon-storage, .icon-grid, .icon-grid-2, .icon-signup, .icon-switch, .icon-volume-high, .icon-volume-medium, .icon-arrow-left-4, .icon-play-2, .icon-point-up, .icon-heart, .icon-heart-2, .icon-star, .icon-star-2, .icon-star-3, .icon-star-4, .icon-star-5, .icon-star-6, .icon-heart-3, .icon-weather-snow, .icon-weather-lightning, .icon-heart-4, .icon-weather-rain, .icon-windy, .icon-paypal, .icon-paypal-2, .icon-paypal-3, .icon-yelp, .icon-html5, .icon-css3, .icon-html5-2, .icon-stumbleupon, .icon-stumbleupon-2, .icon-wordpress, .icon-joomla, .icon-wordpress-2, .icon-github-2, .icon-github-3, .icon-volume-mute, .icon-volume-mute-2, .icon-volume-increase, .icon-volume-decrease, .icon-tongue, .icon-question, .icon-male, .icon-medal, .icon-key, .icon-contract, .icon-bubbles, .icon-file-3, .icon-file-4, .icon-pencil-2, .icon-headphones, .icon-film, .icon-film-2, .icon-mic, .icon-radio, .icon-settings, .icon-pie-2, .icon-inject, .icon-zoom-in-2, .icon-bubble-notification-2, .icon-link, .icon-brightness-contrast, .icon-flag, .icon-upload, .icon-skull, .icon-leaf, .icon-apple-fruit, .icon-food, .icon-cake, .icon-food-2, .icon-gift, .icon-balloon, .icon-medal-2, .icon-rating, .icon-rating-2, .icon-rating-3, .icon-steps, .icon-flower, .icon-remove-2, .icon-briefcase, .icon-briefcase-2, .icon-grid-3, .icon-sun-glasses, .icon-tree, .icon-tree-2, .icon-exit, .icon-evil, .icon-people, .icon-cool, .icon-thumbs-up, .icon-bed, .icon-bed-2, .icon-brightness-low, .icon-heart-broken, .icon-sun-2, .icon-umbrella, .icon-warning, .icon-move, .icon-point-left, .icon-point-down, .icon-point-right, .icon-question-2, .icon-notification, .icon-radio-checked, .icon-checkbox-partial, .icon-checkbox-unchecked, .icon-checkbox-checked, .icon-command, .icon-pen, .icon-quill, .icon-quill-2, .icon-wand-2, .icon-tools, .icon-eye-3, .icon-moon, .icon-contrast, .icon-eye-4, .icon-eye-5, .icon-user-block-2, .icon-bubble-paperclip, .icon-drawer, .icon-drawer-2, .icon-watch, .icon-archive, .icon-cabinet, .icon-clock-3, .icon-clock-4, .icon-connection-2, .icon-new, .icon-play-3, .icon-marker, .icon-movie-2, .icon-podcast, .icon-share, .icon-scissors, .icon-scissors-2, .icon-subscript, .icon-rulers, .icon-filter-2, .icon-loop, .icon-loop-2, .icon-shuffle, .icon-shuffle-2, .icon-loop-3, .icon-loop-4, .icon-plus, .icon-enter, .icon-angry, .icon-attachment, .icon-download-2, .icon-upload-2, .icon-thumbs-up-2, .icon-glasses, .icon-glasses-2, .icon-stats-up, .icon-bottle, .icon-bars-2, .icon-cog, .icon-bubble-dots, .icon-upload-3, .icon-download-3, .icon-location-2, .icon-location-3, .icon-location-4, .icon-envelop-2, .icon-coin, .icon-ticket {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}
.icon-cancel-circle:before {
	content: "\e000";
}
.icon-puzzle:before {
	content: "\e001";
}
.icon-lamp:before {
	content: "\e002";
}
.icon-wand:before {
	content: "\e003";
}
.icon-vector:before {
	content: "\e004";
}
.icon-menu:before {
	content: "\e005";
}
.icon-close:before {
	content: "\e00b";
}
.icon-twitter:before {
	content: "\e00c";
}
.icon-facebook:before {
	content: "\e00d";
}
.icon-vimeo:before {
	content: "\e00e";
}
.icon-dribbble:before {
	content: "\e00f";
}
.icon-mug:before {
	content: "\e010";
}
.icon-droplet:before {
	content: "\e011";
}
.icon-puzzle-2:before {
	content: "\e012";
}
.icon-target:before {
	content: "\e013";
}
.icon-dice:before {
	content: "\e014";
}
.icon-map:before {
	content: "\e015";
}
.icon-location:before {
	content: "\e016";
}
.icon-box-add:before {
	content: "\e017";
}
.icon-phone:before {
	content: "\e018";
}
.icon-phone-2:before {
	content: "\e01a";
}
.icon-phone-3:before {
	content: "\e019";
}
.icon-tumblr:before {
	content: "\e01b";
}
.icon-forrst:before {
	content: "\e01c";
}
.icon-feed:before {
	content: "\e01d";
}
.icon-pinterest:before {
	content: "\e01e";
}
.icon-clock:before {
	content: "\e01f";
}
.icon-bubble:before {
	content: "\e020";
}
.icon-screen:before {
	content: "\e021";
}
.icon-screen-2:before {
	content: "\e022";
}
.icon-laptop:before {
	content: "\e023";
}
.icon-mobile:before {
	content: "\e024";
}
.icon-mobile-2:before {
	content: "\e025";
}
.icon-tablet:before {
	content: "\e026";
}
.icon-tv:before {
	content: "\e027";
}
.icon-pencil:before {
	content: "\e028";
}
.icon-new-tab:before {
	content: "\e029";
}
.icon-quotes-left:before {
	content: "\e02a";
}
.icon-user:before {
	content: "\e02b";
}
.icon-bubble-2:before {
	content: "\e02c";
}
.icon-google-plus:before {
	content: "\e02d";
}
.icon-instagram:before {
	content: "\e02e";
}
.icon-youtube:before {
	content: "\e02f";
}
.icon-flickr:before {
	content: "\e030";
}
.icon-deviantart:before {
	content: "\e031";
}
.icon-github:before {
	content: "\e032";
}
.icon-blogger:before {
	content: "\e033";
}
.icon-soundcloud:before {
	content: "\e034";
}
.icon-lastfm:before {
	content: "\e035";
}
.icon-file:before {
	content: "\e036";
}
.icon-images:before {
	content: "\e037";
}
.icon-arrow-right:before {
	content: "\e038";
}
.icon-arrow-left:before {
	content: "\e039";
}
.icon-bubble-3:before {
	content: "\e03a";
}
.icon-envelop:before {
	content: "\e03b";
}
.icon-compass:before {
	content: "\e03c";
}
.icon-spinner:before {
	content: "\e03e";
}
.icon-spinner-2:before {
	content: "\e03d";
}
.icon-spinner-3:before {
	content: "\e040";
}
.icon-play:before {
	content: "\e03f";
}
.icon-pause:before {
	content: "\e041";
}
.icon-arrow-up-left:before {
	content: "\e009";
}
.icon-arrow-right-2:before {
	content: "\e007";
}
.icon-arrow-down-right:before {
	content: "\e00a";
}
.icon-arrow-down:before {
	content: "\e006";
}
.icon-arrow-left-2:before {
	content: "\e008";
}
.icon-arrow-up:before {
	content: "\e042";
}
.icon-arrow-up-right:before {
	content: "\e043";
}
.icon-arrow-down-left:before {
	content: "\e044";
}
.icon-stopwatch:before {
	content: "\e045";
}
.icon-pushpin:before {
	content: "\e046";
}
.icon-compass-2:before {
	content: "\e047";
}
.icon-history:before {
	content: "\e048";
}
.icon-clock-2:before {
	content: "\e049";
}
.icon-alarm:before {
	content: "\e04a";
}
.icon-earth:before {
	content: "\e04b";
}
.icon-globe:before {
	content: "\e04c";
}
.icon-target-2:before {
	content: "\e04d";
}
.icon-car:before {
	content: "\e04e";
}
.icon-truck:before {
	content: "\e04f";
}
.icon-fire:before {
	content: "\e050";
}
.icon-lab:before {
	content: "\e051";
}
.icon-dumbbell:before {
	content: "\e052";
}
.icon-rocket:before {
	content: "\e053";
}
.icon-meter:before {
	content: "\e054";
}
.icon-dashboard:before {
	content: "\e055";
}
.icon-meter-fast:before {
	content: "\e056";
}
.icon-hammer:before {
	content: "\e057";
}
.icon-trophy:before {
	content: "\e058";
}
.icon-trophy-star:before {
	content: "\e059";
}
.icon-eye:before {
	content: "\e05a";
}
.icon-eye-2:before {
	content: "\e05b";
}
.icon-fan:before {
	content: "\e05c";
}
.icon-sun:before {
	content: "\e05d";
}
.icon-airplane:before {
	content: "\e05e";
}
.icon-cogs:before {
	content: "\e05f";
}
.icon-anchor:before {
	content: "\e060";
}
.icon-shield:before {
	content: "\e061";
}
.icon-lightning:before {
	content: "\e062";
}
.icon-power:before {
	content: "\e063";
}
.icon-pyramid:before {
	content: "\e064";
}
.icon-road:before {
	content: "\e065";
}
.icon-ladder:before {
	content: "\e066";
}
.icon-hammer-2:before {
	content: "\e067";
}
.icon-cube:before {
	content: "\e068";
}
.icon-cube-2:before {
	content: "\e069";
}
.icon-camera:before {
	content: "\e06a";
}
.icon-piano:before {
	content: "\e06b";
}
.icon-movie:before {
	content: "\e06c";
}
.icon-connection:before {
	content: "\e06d";
}
.icon-knight:before {
	content: "\e06e";
}
.icon-diamonds:before {
	content: "\e06f";
}
.icon-stack:before {
	content: "\e070";
}
.icon-folder-remove:before {
	content: "\e071";
}
.icon-folder-open:before {
	content: "\e072";
}
.icon-cart-checkout:before {
	content: "\e073";
}
.icon-cart:before {
	content: "\e074";
}
.icon-tag:before {
	content: "\e075";
}
.icon-basket:before {
	content: "\e076";
}
.icon-support:before {
	content: "\e077";
}
.icon-phone-4:before {
	content: "\e078";
}
.icon-reply:before {
	content: "\e079";
}
.icon-flip:before {
	content: "\e07a";
}
.icon-database:before {
	content: "\e07b";
}
.icon-database-2:before {
	content: "\e07c";
}
.icon-calendar:before {
	content: "\e07d";
}
.icon-calendar-2:before {
	content: "\e07e";
}
.icon-keyboard:before {
	content: "\e07f";
}
.icon-user-plus:before {
	content: "\e080";
}
.icon-users:before {
	content: "\e081";
}
.icon-bubble-forward:before {
	content: "\e082";
}
.icon-bubble-up:before {
	content: "\e083";
}
.icon-bubble-last:before {
	content: "\e084";
}
.icon-bubble-link:before {
	content: "\e085";
}
.icon-bubble-check:before {
	content: "\e086";
}
.icon-bubble-quote:before {
	content: "\e087";
}
.icon-lock:before {
	content: "\e088";
}
.icon-user-plus-2:before {
	content: "\e089";
}
.icon-user-minus:before {
	content: "\e08a";
}
.icon-lock-2:before {
	content: "\e08b";
}
.icon-paw:before {
	content: "\e08c";
}
.icon-accessibility:before {
	content: "\e08d";
}
.icon-eye-blocked:before {
	content: "\e08e";
}
.icon-download:before {
	content: "\e08f";
}
.icon-smiley:before {
	content: "\e090";
}
.icon-thumbs-down:before {
	content: "\e091";
}
.icon-yin-yang:before {
	content: "\e092";
}
.icon-remove:before {
	content: "\e093";
}
.icon-bars:before {
	content: "\e094";
}
.icon-pie:before {
	content: "\e095";
}
.icon-plus-circle:before {
	content: "\e096";
}
.icon-sad:before {
	content: "\e097";
}
.icon-shocked:before {
	content: "\e098";
}
.icon-neutral:before {
	content: "\e099";
}
.icon-checkmark:before {
	content: "\e09a";
}
.icon-volume-low:before {
	content: "\e09b";
}
.icon-arrow-down-2:before {
	content: "\e09c";
}
.icon-volume0:before {
	content: "\e09d";
}
.icon-bookmarks:before {
	content: "\e09e";
}
.icon-arrow-left-3:before {
	content: "\e09f";
}
.icon-radio-unchecked:before {
	content: "\e0a0";
}
.icon-sigma:before {
	content: "\e0a1";
}
.icon-strikethrough:before {
	content: "\e0a2";
}
.icon-backspace:before {
	content: "\e0a3";
}
.icon-filter:before {
	content: "\e0a4";
}
.icon-arrow-up-right-2:before {
	content: "\e0a5";
}
.icon-arrow-up-right-3:before {
	content: "\e0a6";
}
.icon-file-zip:before {
	content: "\e0a7";
}
.icon-home:before {
	content: "\e0a8";
}
.icon-blog:before {
	content: "\e0a9";
}
.icon-camera-2:before {
	content: "\e0aa";
}
.icon-file-2:before {
	content: "\e0ab";
}
.icon-copy:before {
	content: "\e0ac";
}
.icon-cart-plus:before {
	content: "\e0ad";
}
.icon-music:before {
	content: "\e0ae";
}
.icon-lock-3:before {
	content: "\e0af";
}
.icon-zoom-out:before {
	content: "\e0b0";
}
.icon-user-block:before {
	content: "\e0b1";
}
.icon-search:before {
	content: "\e0b2";
}
.icon-zoom-in:before {
	content: "\e0b3";
}
.icon-bubble-notification:before {
	content: "\e0b4";
}
.icon-storage:before {
	content: "\e0b5";
}
.icon-grid:before {
	content: "\e0b6";
}
.icon-grid-2:before {
	content: "\e0b8";
}
.icon-signup:before {
	content: "\e0b9";
}
.icon-switch:before {
	content: "\e0ba";
}
.icon-volume-high:before {
	content: "\e0bb";
}
.icon-volume-medium:before {
	content: "\e0bc";
}
.icon-arrow-left-4:before {
	content: "\e0bd";
}
.icon-play-2:before {
	content: "\e0be";
}
.icon-point-up:before {
	content: "\e0bf";
}
.icon-heart:before {
	content: "\e0c1";
}
.icon-heart-2:before {
	content: "\e0c2";
}
.icon-star:before {
	content: "\e0c3";
}
.icon-star-2:before {
	content: "\e0c4";
}
.icon-star-3:before {
	content: "\e0c5";
}
.icon-star-4:before {
	content: "\e0c6";
}
.icon-star-5:before {
	content: "\e0c7";
}
.icon-star-6:before {
	content: "\e0c8";
}
.icon-heart-3:before {
	content: "\e0c9";
}
.icon-weather-snow:before {
	content: "\e0ca";
}
.icon-weather-lightning:before {
	content: "\e0cb";
}
.icon-heart-4:before {
	content: "\e0cc";
}
.icon-weather-rain:before {
	content: "\e0cd";
}
.icon-windy:before {
	content: "\e0ce";
}
.icon-paypal:before {
	content: "\e0cf";
}
.icon-paypal-2:before {
	content: "\e0d0";
}
.icon-paypal-3:before {
	content: "\e0d1";
}
.icon-yelp:before {
	content: "\e0d2";
}
.icon-html5:before {
	content: "\e0d3";
}
.icon-css3:before {
	content: "\e0d4";
}
.icon-html5-2:before {
	content: "\e0d5";
}
.icon-stumbleupon:before {
	content: "\e0d6";
}
.icon-stumbleupon-2:before {
	content: "\e0d7";
}
.icon-wordpress:before {
	content: "\e0d8";
}
.icon-joomla:before {
	content: "\e0d9";
}
.icon-wordpress-2:before {
	content: "\e0da";
}
.icon-github-2:before {
	content: "\e0db";
}
.icon-github-3:before {
	content: "\e0dc";
}
.icon-volume-mute:before {
	content: "\e0dd";
}
.icon-volume-mute-2:before {
	content: "\e0de";
}
.icon-volume-increase:before {
	content: "\e0df";
}
.icon-volume-decrease:before {
	content: "\e0e0";
}
.icon-tongue:before {
	content: "\e0e1";
}
.icon-question:before {
	content: "\e0e2";
}
.icon-male:before {
	content: "\e0e3";
}
.icon-medal:before {
	content: "\e0e4";
}
.icon-key:before {
	content: "\e0e5";
}
.icon-contract:before {
	content: "\e0e6";
}
.icon-bubbles:before {
	content: "\e0e7";
}
.icon-file-3:before {
	content: "\e0e8";
}
.icon-file-4:before {
	content: "\e0e9";
}
.icon-pencil-2:before {
	content: "\e0ea";
}
.icon-headphones:before {
	content: "\e0eb";
}
.icon-film:before {
	content: "\e0ec";
}
.icon-film-2:before {
	content: "\e0ed";
}
.icon-mic:before {
	content: "\e0ee";
}
.icon-radio:before {
	content: "\e0ef";
}
.icon-settings:before {
	content: "\e0f0";
}
.icon-pie-2:before {
	content: "\e0f1";
}
.icon-inject:before {
	content: "\e0f2";
}
.icon-zoom-in-2:before {
	content: "\e0f3";
}
.icon-bubble-notification-2:before {
	content: "\e0f4";
}
.icon-link:before {
	content: "\e0f5";
}
.icon-brightness-contrast:before {
	content: "\e0f6";
}
.icon-flag:before {
	content: "\e0f7";
}
.icon-upload:before {
	content: "\e0f8";
}
.icon-skull:before {
	content: "\e0f9";
}
.icon-leaf:before {
	content: "\e0fa";
}
.icon-apple-fruit:before {
	content: "\e0fb";
}
.icon-food:before {
	content: "\e0fc";
}
.icon-cake:before {
	content: "\e0fd";
}
.icon-food-2:before {
	content: "\e0fe";
}
.icon-gift:before {
	content: "\e0ff";
}
.icon-balloon:before {
	content: "\e100";
}
.icon-medal-2:before {
	content: "\e101";
}
.icon-rating:before {
	content: "\e102";
}
.icon-rating-2:before {
	content: "\e103";
}
.icon-rating-3:before {
	content: "\e104";
}
.icon-steps:before {
	content: "\e105";
}
.icon-flower:before {
	content: "\e106";
}
.icon-remove-2:before {
	content: "\e107";
}
.icon-briefcase:before {
	content: "\e108";
}
.icon-briefcase-2:before {
	content: "\e109";
}
.icon-grid-3:before {
	content: "\e0b7";
}
.icon-sun-glasses:before {
	content: "\e10a";
}
.icon-tree:before {
	content: "\e10b";
}
.icon-tree-2:before {
	content: "\e10c";
}
.icon-exit:before {
	content: "\e10d";
}
.icon-evil:before {
	content: "\e10e";
}
.icon-people:before {
	content: "\e10f";
}
.icon-cool:before {
	content: "\e110";
}
.icon-thumbs-up:before {
	content: "\e111";
}
.icon-bed:before {
	content: "\e112";
}
.icon-bed-2:before {
	content: "\e113";
}
.icon-brightness-low:before {
	content: "\e114";
}
.icon-heart-broken:before {
	content: "\e115";
}
.icon-sun-2:before {
	content: "\e116";
}
.icon-umbrella:before {
	content: "\e117";
}
.icon-warning:before {
	content: "\e118";
}
.icon-move:before {
	content: "\e119";
}
.icon-point-left:before {
	content: "\e0c0";
}
.icon-point-down:before {
	content: "\e11a";
}
.icon-point-right:before {
	content: "\e11b";
}
.icon-question-2:before {
	content: "\e11c";
}
.icon-notification:before {
	content: "\e11d";
}
.icon-radio-checked:before {
	content: "\e11e";
}
.icon-checkbox-partial:before {
	content: "\e11f";
}
.icon-checkbox-unchecked:before {
	content: "\e120";
}
.icon-checkbox-checked:before {
	content: "\e121";
}
.icon-command:before {
	content: "\e122";
}
.icon-pen:before {
	content: "\e123";
}
.icon-quill:before {
	content: "\e124";
}
.icon-quill-2:before {
	content: "\e125";
}
.icon-wand-2:before {
	content: "\e126";
}
.icon-tools:before {
	content: "\e127";
}
.icon-eye-3:before {
	content: "\e128";
}
.icon-moon:before {
	content: "\e129";
}
.icon-contrast:before {
	content: "\e12a";
}
.icon-eye-4:before {
	content: "\e12b";
}
.icon-eye-5:before {
	content: "\e12c";
}
.icon-user-block-2:before {
	content: "\e12d";
}
.icon-bubble-paperclip:before {
	content: "\e12e";
}
.icon-drawer:before {
	content: "\e12f";
}
.icon-drawer-2:before {
	content: "\e130";
}
.icon-watch:before {
	content: "\e131";
}
.icon-archive:before {
	content: "\e132";
}
.icon-cabinet:before {
	content: "\e133";
}
.icon-clock-3:before {
	content: "\e134";
}
.icon-clock-4:before {
	content: "\e135";
}
.icon-connection-2:before {
	content: "\e136";
}
.icon-new:before {
	content: "\e137";
}
.icon-play-3:before {
	content: "\e138";
}
.icon-marker:before {
	content: "\e139";
}
.icon-movie-2:before {
	content: "\e13a";
}
.icon-podcast:before {
	content: "\e13b";
}
.icon-share:before {
	content: "\e13c";
}
.icon-scissors:before {
	content: "\e13d";
}
.icon-scissors-2:before {
	content: "\e13e";
}
.icon-subscript:before {
	content: "\e13f";
}
.icon-rulers:before {
	content: "\e140";
}
.icon-filter-2:before {
	content: "\e141";
}
.icon-loop:before {
	content: "\e142";
}
.icon-loop-2:before {
	content: "\e143";
}
.icon-shuffle:before {
	content: "\e144";
}
.icon-shuffle-2:before {
	content: "\e145";
}
.icon-loop-3:before {
	content: "\e146";
}
.icon-loop-4:before {
	content: "\e147";
}
.icon-plus:before {
	content: "\e148";
}
.icon-enter:before {
	content: "\e149";
}
.icon-angry:before {
	content: "\e14a";
}
.icon-attachment:before {
	content: "\e14b";
}
.icon-download-2:before {
	content: "\e14c";
}
.icon-upload-2:before {
	content: "\e14d";
}
.icon-thumbs-up-2:before {
	content: "\e14e";
}
.icon-glasses:before {
	content: "\e14f";
}
.icon-glasses-2:before {
	content: "\e150";
}
.icon-stats-up:before {
	content: "\e151";
}
.icon-bottle:before {
	content: "\e152";
}
.icon-bars-2:before {
	content: "\e153";
}
.icon-cog:before {
	content: "\e154";
}
.icon-bubble-dots:before {
	content: "\e155";
}
.icon-upload-3:before {
	content: "\e156";
}
.icon-download-3:before {
	content: "\e157";
}
.icon-location-2:before {
	content: "\e158";
}
.icon-location-3:before {
	content: "\e159";
}
.icon-location-4:before {
	content: "\e15a";
}
.icon-envelop-2:before {
	content: "\e15b";
}
.icon-coin:before {
	content: "\e15c";
}
.icon-ticket:before {
	content: "\e15d";
}
/* line 2, app/assets/stylesheets/landing_pages.scss */
#landing_page .landing-page-header {
  width: 100%;
  height: 80px;
  background: white;
}

/* line 7, app/assets/stylesheets/landing_pages.scss */
#landing_page .landing-page-header img.logo {
  height: 40px;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 20px;
}

/* line 16, app/assets/stylesheets/landing_pages.scss */
#landing_page p.info {
  text-align: center;
}

/* line 20, app/assets/stylesheets/landing_pages.scss */
#landing_page .landing-page-block {
  border-radius: 4px;
  background-color: #ffffff;
  border: solid 1px #cacaca;
  padding: 35px;
}

/* line 27, app/assets/stylesheets/landing_pages.scss */
#landing_page .upsell {
  margin: 20px auto;
  text-align: center;
}

/* line 31, app/assets/stylesheets/landing_pages.scss */
#landing_page .upsell p {
  font-size: 12px;
}

/* line 35, app/assets/stylesheets/landing_pages.scss */
#landing_page .upsell a {
  display: inline-block;
  margin-top: 6px;
}

/* line 40, app/assets/stylesheets/landing_pages.scss */
#landing_page .upsell .powered-by {
  width: 140px;
}

/* line 46, app/assets/stylesheets/landing_pages.scss */
#live_landing_page #landing_page .landing-page-block {
  max-width: 600px;
  margin: 50px auto;
}
/* line 4, app/assets/stylesheets/log_in.scss */
#log_in {
  color: white;
  width: 100%;
  min-height: 100%;
  background-image: url(/assets/welcome-bg-a8136faaf2d9ac9b146206cf6e7bb0464296b38a44142b6d5ea2da0ec3446aee.png);
  background-position: center;
  background-size: cover;
  padding: 40px;
}

/* line 13, app/assets/stylesheets/log_in.scss */
#log_in header {
  margin-bottom: 60px;
}

/* line 14, app/assets/stylesheets/log_in.scss */
#log_in header img {
  height: 20px;
}

/* line 19, app/assets/stylesheets/log_in.scss */
#log_in h1 {
  margin-top: 10%;
}

/* line 22, app/assets/stylesheets/log_in.scss */
#log_in .container {
  margin-top: 32px;
}

/* line 25, app/assets/stylesheets/log_in.scss */
#log_in .container #logInForm {
  width: 390px;
  margin-left: auto;
  margin-right: auto;
}

/* line 30, app/assets/stylesheets/log_in.scss */
#log_in .container #logInForm .btn {
  color: white;
  margin-top: 25px;
  border: none;
  width: 390px;
  height: 50px;
  border-radius: 4px;
  background-color: #19cb7f;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

/* line 44, app/assets/stylesheets/log_in.scss */
#log_in a {
  font-weight: normal;
  font-size: 14px;
  color: white;
}
/* line 1, app/assets/stylesheets/modal.scss */
#global-modal.fullscreen {
  padding: 0 !important;
}

/* line 4, app/assets/stylesheets/modal.scss */
#global-modal.fullscreen #inner-global-modal {
  background: #eff0f3;
}

/* line 8, app/assets/stylesheets/modal.scss */
#global-modal.fullscreen #inner-global-modal.nps {
  background: #fff;
}

/* line 12, app/assets/stylesheets/modal.scss */
#global-modal.fullscreen .modal-dialog {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/* line 17, app/assets/stylesheets/modal.scss */
#global-modal.fullscreen .modal-dialog .modal-content {
  width: 100%;
  height: 100%;
}

/* line 21, app/assets/stylesheets/modal.scss */
#global-modal.fullscreen .modal-dialog .modal-content .close.btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: #eff0f4;
}

/* line 35, app/assets/stylesheets/modal.scss */
#mini-modal {
  background: rgba(57, 57, 57, 0.35);
}

/* line 38, app/assets/stylesheets/modal.scss */
#mini-modal .modal-dialog {
  margin-top: 270px;
}

/* line 42, app/assets/stylesheets/modal.scss */
#mini-modal #nps_upgrade_modal {
  padding: 20px 0;
}

/* line 45, app/assets/stylesheets/modal.scss */
#mini-modal #nps_upgrade_modal h2.title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #455a79;
}

/* line 52, app/assets/stylesheets/modal.scss */
#mini-modal #nps_upgrade_modal p.message {
  text-align: center;
  margin: 0 auto;
}

/* line 57, app/assets/stylesheets/modal.scss */
#mini-modal #nps_upgrade_modal .button-group {
  margin: 23px auto;
  text-align: center;
}

/* line 61, app/assets/stylesheets/modal.scss */
#mini-modal #nps_upgrade_modal .button-group .plans.btn {
  background: #19cb7f;
  color: white;
}

/* line 66, app/assets/stylesheets/modal.scss */
#mini-modal #nps_upgrade_modal .button-group a.not-ready {
  font-size: 12px;
  color: #868686;
  margin-top: 11px;
  display: inline-block;
}

/* line 76, app/assets/stylesheets/modal.scss */
#secondary-modal.fullscreen {
  padding: 0 !important;
}

/* line 79, app/assets/stylesheets/modal.scss */
#secondary-modal.fullscreen #inner-secondary-modal {
  background: #eff0f3;
}

/* line 83, app/assets/stylesheets/modal.scss */
#secondary-modal.fullscreen #inner-secondary-modal.nps {
  background: #fff;
}

/* line 87, app/assets/stylesheets/modal.scss */
#secondary-modal.fullscreen .modal-dialog {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/* line 92, app/assets/stylesheets/modal.scss */
#secondary-modal.fullscreen .modal-dialog .modal-content {
  width: 100%;
  height: 100%;
}

/* line 96, app/assets/stylesheets/modal.scss */
#secondary-modal.fullscreen .modal-dialog .modal-content .close.btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: #eff0f4;
}

/* line 110, app/assets/stylesheets/modal.scss */
#widget-install {
  padding: 24px;
}

/* line 113, app/assets/stylesheets/modal.scss */
#widget-install .close.button {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* line 119, app/assets/stylesheets/modal.scss */
#widget-install h1 {
  font-size: 18px;
  font-weight: bold;
}

/* line 124, app/assets/stylesheets/modal.scss */
#widget-install .done.btn {
  background: #19cb7f;
  color: #ffffff;
}

/* line 129, app/assets/stylesheets/modal.scss */
#widget-install #tooltip {
  margin-bottom: 12px;
}
/* line 4, app/assets/stylesheets/navigation.scss */
#navigation {
  color: white;
  background-color: #354254;
  height: 61px;
}

/* line 9, app/assets/stylesheets/navigation.scss */
#navigation a {
  color: white;
}

/* line 13, app/assets/stylesheets/navigation.scss */
#navigation .navbar-default {
  background-color: #354254;
  border: none;
}

/* line 17, app/assets/stylesheets/navigation.scss */
#navigation .navbar-default .container {
  height: 61px;
}

/* line 20, app/assets/stylesheets/navigation.scss */
#navigation .navbar-default .container .navbar-header {
  margin-top: 15px;
  padding-right: 0;
}

/* line 24, app/assets/stylesheets/navigation.scss */
#navigation .navbar-default .container .navbar-header .btn {
  margin-left: 25px;
  background-color: #f5a623;
  border: none;
}

/* line 31, app/assets/stylesheets/navigation.scss */
#navigation .navbar-default .container .navbar-button {
  background-color: transparent;
  width: 122px;
  height: 61px;
  text-align: center;
  line-height: 28px;
}

/* line 40, app/assets/stylesheets/navigation.scss */
#navigation .navbar-default li.active {
  background-color: #2d3139;
}

/* line 45, app/assets/stylesheets/navigation.scss */
#navigation ul.navbar-right {
  margin-right: 55px;
}

/* line 48, app/assets/stylesheets/navigation.scss */
#navigation ul.navbar-right li.snippet-warning {
  height: 24px;
  margin-top: 16px;
}

/* line 52, app/assets/stylesheets/navigation.scss */
#navigation ul.navbar-right li.snippet-warning a.install-widget-snippet {
  background: #e36060;
  margin-right: 47px;
  height: 24px;
  cursor: pointer;
  text-align: center;
  display: inline;
  padding: 8px;
  font-size: 10px;
  border-radius: 3px;
}

/* line 65, app/assets/stylesheets/navigation.scss */
#navigation ul.navbar-right li.snippet-success {
  height: 24px;
  margin-top: 16px;
}

/* line 69, app/assets/stylesheets/navigation.scss */
#navigation ul.navbar-right li.snippet-success a.install-widget-snippet {
  background: #00c671;
  margin-right: 47px;
  height: 24px;
  cursor: pointer;
  text-align: center;
  display: inline;
  padding: 8px;
  font-size: 10px;
  border-radius: 3px;
}

/* line 84, app/assets/stylesheets/navigation.scss */
.aggregates-container {
  width: 100%;
  height: 200px;
  padding: 56px;
  background-image: url(/assets/survey-dash-bg-66300476db13bdd4f2e8f5b9896d087028576d0f9cb3f1963e40fc73f012f4ab.jpg);
  background-size: cover;
}

/* line 91, app/assets/stylesheets/navigation.scss */
.aggregates-container .aggregate-container {
  width: 226.9px;
  height: 80px;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(53, 53, 53, 0.21);
  border: solid 1px #bfbfbf;
  margin-right: 31px;
  float: left;
}

/* line 100, app/assets/stylesheets/navigation.scss */
.aggregates-container .aggregate-container img {
  margin: 21px;
  height: 38px;
  vertical-align: middle;
}

/* line 106, app/assets/stylesheets/navigation.scss */
.aggregates-container .aggregate-container .aggregate-content {
  margin-left: 82.5px;
  padding-top: 10px;
  height: 100%;
  background-color: white;
  color: black;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* line 115, app/assets/stylesheets/navigation.scss */
.aggregates-container .aggregate-container .aggregate-content .aggregate-count {
  font-size: 24px;
}

/* line 122, app/assets/stylesheets/navigation.scss */
.aggregates-container .surveys {
  background-color: #3c3c3c;
}

/* line 125, app/assets/stylesheets/navigation.scss */
.aggregates-container .surveys .aggregate-count {
  color: #3c3c3c;
}

/* line 130, app/assets/stylesheets/navigation.scss */
.aggregates-container .responses {
  background-color: #50b1e3;
}

/* line 133, app/assets/stylesheets/navigation.scss */
.aggregates-container .responses .aggregate-count {
  color: #50b1e3;
}

/* line 138, app/assets/stylesheets/navigation.scss */
.aggregates-container .comments {
  background-color: #a362cf;
}

/* line 141, app/assets/stylesheets/navigation.scss */
.aggregates-container .comments .aggregate-count {
  color: #a362cf;
}

/* line 146, app/assets/stylesheets/navigation.scss */
.aggregates-container .btn.btn-default {
  width: 199px;
  height: 44px;
  margin: 18px 0 0 66.1px;
  border-radius: 4px;
  background-color: #19cb7f;
  box-shadow: 0 2px 2px 0 rgba(98, 98, 98, 0.5);
  color: white;
  font-size: 16px;
  border: none;
  line-height: 28px;
}

/* line 159, app/assets/stylesheets/navigation.scss */
.aggregates-container .btn-default:active:hover {
  background-color: #19cb7f;
  color: white;
}
/* line 4, app/assets/stylesheets/new_password.scss */
#new_password {
  color: white;
  width: 100%;
  min-height: 100%;
  background-image: url(/assets/welcome-bg-a8136faaf2d9ac9b146206cf6e7bb0464296b38a44142b6d5ea2da0ec3446aee.png);
  background-position: center;
  background-size: cover;
  padding: 40px;
}

/* line 13, app/assets/stylesheets/new_password.scss */
#new_password h1 {
  margin-top: 10%;
}

/* line 16, app/assets/stylesheets/new_password.scss */
#new_password .container {
  margin-top: 32px;
}

/* line 19, app/assets/stylesheets/new_password.scss */
#new_password .container #newPasswordForm {
  width: 390px;
  margin-left: auto;
  margin-right: auto;
}

/* line 24, app/assets/stylesheets/new_password.scss */
#new_password .container #newPasswordForm .btn {
  color: white;
  margin-top: 25px;
  border: none;
  width: 390px;
  height: 50px;
  border-radius: 4px;
  background-color: #19cb7f;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

/* line 38, app/assets/stylesheets/new_password.scss */
#new_password a {
  font-weight: normal;
  font-size: 14px;
  color: white;
}
.onoffswitch {
    position: relative;
    width: 90px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: inline-block;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 20px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 30px;
    padding: 0;
    line-height: 30px;
    font-size: 14px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "ON";
    padding-left: 10px;
    background-color: #00C671;
    color: #FFFFFF;
}

.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 10px;
    background-color: #EEEEEE;
    color: #999999;
    text-align: right;
}

.onoffswitch-switch {
    display: block;
    width: 18px;
    height: 18px;
    margin: 6px;
    background: #FFFFFF;
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 56px;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

.onoff-container p.name {
    display: inline-block;
    position: relative;
    bottom: 15px;
    margin-left: 10px;
}

.onoff-container.landing-page {
    display: inline-block;
    position: relative;
    top: 10px;
}

.mini-onoffswitch {
    position: relative;
    width: 36px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: inline-block;
}

.mini-onoffswitch-checkbox {
    display: none;
}

.mini-onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 20px;
}

.mini-onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.mini-onoffswitch-inner:before,
.mini-onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 21px;
    padding: 0;
    line-height: 30px;
    font-size: 14px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.mini-onoffswitch-inner:before {
    content: "";
    padding-left: 10px;
    background-color: #00C671;
    color: #FFFFFF;
}

.mini-onoffswitch-inner:after {
    content: "";
    padding-right: 10px;
    background-color: #EEEEEE;
    color: #999999;
    text-align: right;
}

.mini-onoffswitch-switch {
    display: block;
    width: 15px;
    height: 15px;
    margin: 6px;
    background: #FFFFFF;
    position: absolute;
    bottom: 4px;
    right: 9px;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

.mini-onoffswitch-checkbox:checked+.mini-onoffswitch-label .mini-onoffswitch-inner {
    margin-left: 0;
}

.mini-onoffswitch-checkbox:checked+.mini-onoffswitch-label .mini-onoffswitch-switch {
    right: 0px;
}

.mini-onoff-container p.name {
    margin: 0 3px;
    font-size: 10px;
    color: #727272;
}

.mini-onoff-container.landing-page {
    display: inline-block;
    position: relative;
    top: 10px;
}
/* line 4, app/assets/stylesheets/registration.scss */
#registration {
  color: white;
  width: 100%;
  min-height: 100%;
  background-image: url(/assets/welcome-bg-a8136faaf2d9ac9b146206cf6e7bb0464296b38a44142b6d5ea2da0ec3446aee.png);
  background-position: center;
  background-size: cover;
  padding: 40px;
}

/* line 14, app/assets/stylesheets/registration.scss */
#registration header a {
  color: white;
}

/* line 18, app/assets/stylesheets/registration.scss */
#registration h1 {
  margin-top: 10%;
}

/* line 21, app/assets/stylesheets/registration.scss */
#registration .container {
  margin-top: 32px;
}

/* line 24, app/assets/stylesheets/registration.scss */
#registration .container #signUpForm {
  width: 390px;
  margin-left: auto;
  margin-right: auto;
}

/* line 29, app/assets/stylesheets/registration.scss */
#registration .container #signUpForm .btn {
  color: white;
  margin-top: 25px;
  border: none;
  width: 390px;
  height: 50px;
  border-radius: 4px;
  background-color: #19cb7f;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

/* line 44, app/assets/stylesheets/registration.scss */
p.back-out {
  text-align: center;
  margin-top: 8px;
}
/* line 1, app/assets/stylesheets/responses.scss */
.message-container {
  width: 600px;
  height: 122px;
  border-radius: 4px;
  background-color: #ffffff;
  border: solid 1px #cacaca;
  padding-top: 40px;
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* line 13, app/assets/stylesheets/responses.scss */
#response_create_success a.cta {
  display: block;
  margin: 0 auto;
  font-size: 14px;
  text-align: center;
}
/* line 1, app/assets/stylesheets/select-box.scss */
.select-box-wrapper {
  margin: 0 auto;
  text-align: center;
}

/* line 6, app/assets/stylesheets/select-box.scss */
.select-box-container {
  text-align: center;
}

/* line 9, app/assets/stylesheets/select-box.scss */
.select-box-container .select-box {
  cursor: pointer;
}

/* line 13, app/assets/stylesheets/select-box.scss */
.select-box-container .select-box-option-name {
  display: inline-block;
  color: #3c3c3c;
  font-size: 20px;
  font-weight: bold;
}

/* line 20, app/assets/stylesheets/select-box.scss */
.select-box-container .select-box-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #5e5e5e;
  position: relative;
  left: 4px;
  bottom: 4px;
}

/* line 32, app/assets/stylesheets/select-box.scss */
.select-box-container .no-scroll {
  position: absolute;
  overflow: hidden;
  width: 126px;
  height: 135px;
  border: 1px solid #c6c6c6;
  border-radius: 2px;
  box-shadow: 0 8px 10px -4px #c9c9c9;
}

/* line 44, app/assets/stylesheets/select-box.scss */
.select-box-container .select-box-option-list {
  position: absolute;
  font-size: 16px;
  width: 126px;
  height: 135px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 100%;
  margin-right: -140px;
  padding-right: 140px;
  cursor: pointer;
  background: #fff;
}

/* line 58, app/assets/stylesheets/select-box.scss */
.select-box-container .select-box-option {
  padding: 5px 0;
  border-bottom: 1px solid #c9c9c9;
  height: 29px;
  width: 126px;
}

/* line 65, app/assets/stylesheets/select-box.scss */
.select-box-container .select-box-option:hover {
  background: #c9c9c9;
}

/* line 69, app/assets/stylesheets/select-box.scss */
.select-box-container .select-box-option:last-child {
  border-bottom: none;
}
/* line 3, app/assets/stylesheets/shared.scss */
body {
  font-family: Lato, serif !important;
  font-weight: bold;
  background-color: #eff0f3 !important;
}

/* line 9, app/assets/stylesheets/shared.scss */
html, body {
  height: 100%;
  width: 100%;
}

/* line 14, app/assets/stylesheets/shared.scss */
.font-weight-normal {
  font-weight: normal;
}

/* line 18, app/assets/stylesheets/shared.scss */
.font-weight-bold {
  font-weight: bold;
}

/* line 22, app/assets/stylesheets/shared.scss */
.logo-image {
  height: 20px;
}

/* line 26, app/assets/stylesheets/shared.scss */
.font-size-12 {
  font-size: 12px;
  color: #676767;
}

/* line 31, app/assets/stylesheets/shared.scss */
.alert {
  margin-top: 15px;
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
/* line 2, app/assets/stylesheets/signup.scss */
#signUp .header {
  height: 80px;
  background-color: #354254;
  border: solid 1px #979797;
  text-align: center;
}

/* line 8, app/assets/stylesheets/signup.scss */
#signUp .header a .logo-image {
  height: 32px;
  width: 173px;
  margin-top: 20px;
}

/* line 16, app/assets/stylesheets/signup.scss */
#signUp .page-title h1 {
  margin-top: 52px;
}

/* line 23, app/assets/stylesheets/signup.scss */
#signUpForm {
  padding: 20px 37px 40px 37px;
  width: 578.4px;
  border-radius: 8px;
  background-color: #ffffff;
  border: solid 1px #d5d5d5;
  margin-left: auto;
  margin-right: auto;
  margin-top: 33px;
}

/* line 33, app/assets/stylesheets/signup.scss */
#signUpForm .step-title {
  color: #858585;
}

/* line 37, app/assets/stylesheets/signup.scss */
#signUpForm hr {
  color: #cdcdcd;
}

/* line 41, app/assets/stylesheets/signup.scss */
#signUpForm .btn {
  color: white;
  margin-top: 25px;
  border: none;
  width: 100%;
  height: 50px;
  border-radius: 4px;
  background-color: #19cb7f;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

/* line 53, app/assets/stylesheets/signup.scss */
#signUpForm label {
  font-size: 18px;
}

/* line 57, app/assets/stylesheets/signup.scss */
#signUpForm input.form-control {
  height: 51px;
  border-radius: 4px;
  background-color: #ffffff;
  border: solid 1px #b0b0b0;
}

/* line 65, app/assets/stylesheets/signup.scss */
#signUpForm .secure-payment {
  margin-left: -37px;
  margin-right: -37px;
  padding-left: 37px;
  padding-top: 17px;
  height: 54px;
  background-color: #4c97ef;
  color: white;
}

/* line 74, app/assets/stylesheets/signup.scss */
#signUpForm .secure-payment span {
  margin-left: 15px;
}

/* line 82, app/assets/stylesheets/signup.scss */
#update_card_popup #signUpForm {
  border: none;
}

/* line 87, app/assets/stylesheets/signup.scss */
#coupon-group {
  margin-top: 6px;
}

/* line 90, app/assets/stylesheets/signup.scss */
#coupon-group button#apply-coupon.btn-secondary {
  background-color: #4c97ef;
}

/* line 96, app/assets/stylesheets/signup.scss */
.subscription-form-header .step-title {
  margin-top: 18px;
}

/* line 100, app/assets/stylesheets/signup.scss */
.subscription-form-header .price {
  font-size: 36px;
  font-weight: 500;
}
/* line 5, app/assets/stylesheets/subscriptions.scss */
p.backout {
  margin: 0 auto;
  text-align: center;
  margin-top: 8px;
}
/* line 1, app/assets/stylesheets/surveys.scss */
#surveys_index {
  padding-top: 34px;
  color: #3c3c3c;
}

/* line 4, app/assets/stylesheets/surveys.scss */
#surveys_index .survey-container {
  width: 100%;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px #d9d9d9;
  padding: 23px 32px 26px 32px;
  margin-bottom: 18px;
}

/* line 12, app/assets/stylesheets/surveys.scss */
#surveys_index .survey-container .nps {
  font-size: 18px;
  font-weight: bold;
}

/* line 16, app/assets/stylesheets/surveys.scss */
#surveys_index .survey-container .responses-count {
  color: #50b1e3;
  font-size: 18px;
  font-weight: bold;
}

/* line 21, app/assets/stylesheets/surveys.scss */
#surveys_index .survey-container .comments-count {
  color: #a362cf;
  font-size: 18px;
  font-weight: bold;
}

/* line 26, app/assets/stylesheets/surveys.scss */
#surveys_index .survey-container small {
  font-size: 12px;
  line-height: 0.8;
  color: #929292;
  font-weight: normal;
}

/* line 32, app/assets/stylesheets/surveys.scss */
#surveys_index .survey-container h3 {
  margin-top: 0;
}

/* line 35, app/assets/stylesheets/surveys.scss */
#surveys_index .survey-container .paused {
  font-size: 12px;
  color: #aaa;
}

/* line 39, app/assets/stylesheets/surveys.scss */
#surveys_index .survey-container small.embed-type {
  color: #3c3c3c;
  margin-right: 8px;
}

/* line 44, app/assets/stylesheets/surveys.scss */
#surveys_index .activity-container {
  width: 100%;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px #d9d9d9;
  margin-bottom: 18px;
}

/* line 51, app/assets/stylesheets/surveys.scss */
#surveys_index .activity-container .activity-header {
  background-color: #50b1e3;
  color: white;
  font-size: 12px;
  font-weight: normal;
  padding: 8px 17px;
}

/* line 58, app/assets/stylesheets/surveys.scss */
#surveys_index .activity-container .activity-header.with-comment {
  background-color: #a362cf;
}

/* line 61, app/assets/stylesheets/surveys.scss */
#surveys_index .activity-container .activity-content {
  padding: 14px 14px;
}

/* line 64, app/assets/stylesheets/surveys.scss */
#surveys_index .activity-container hr {
  margin: 14px -10px;
}

/* line 67, app/assets/stylesheets/surveys.scss */
#surveys_index .activity-container p {
  font-weight: normal;
}

/* line 71, app/assets/stylesheets/surveys.scss */
#surveys_index .activity-container.nps .choice {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  border: 3px solid black;
  text-align: center;
  line-height: 1.5em;
  font-size: 16px;
}

/* line 79, app/assets/stylesheets/surveys.scss */
#surveys_index .activity-container.nps .choice.promoter {
  border-color: #72da52;
}

/* line 82, app/assets/stylesheets/surveys.scss */
#surveys_index .activity-container.nps .choice.passive {
  border-color: #dfdfdf;
}

/* line 85, app/assets/stylesheets/surveys.scss */
#surveys_index .activity-container.nps .choice.detractor {
  border-color: #dd604d;
}

/* line 91, app/assets/stylesheets/surveys.scss */
#surveys_index .survey-container.blank {
  padding: 41px 0 49px 0;
}

/* line 94, app/assets/stylesheets/surveys.scss */
#surveys_index .activity-container.blank {
  padding: 27px 0 48px 0;
}

/* line 97, app/assets/stylesheets/surveys.scss */
#surveys_index h2 {
  color: #455a79;
  font-size: 20px;
  margin-bottom: 22px;
  display: inline-block;
}

/* line 103, app/assets/stylesheets/surveys.scss */
#surveys_index h3 {
  font-size: 20px;
  white-space: -moz-pre-wrap !important;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: pre-wrap;
  /* css-3 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
  white-space: -webkit-pre-wrap;
  /* Newer versions of Chrome/Safari*/
  white-space: normal;
}

/* line 119, app/assets/stylesheets/surveys.scss */
#surveys_index .btn {
  width: 199px;
  height: 44px;
  border-radius: 4px;
  background-color: #19cb7f;
  box-shadow: 0 2px 2px 0 rgba(98, 98, 98, 0.5);
  color: white;
  font-size: 16px;
  border: none;
  line-height: 28px;
  margin-top: 17px;
}

/* line 131, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container {
  background: #fff;
  height: 90px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  margin-bottom: 50px;
}

/* line 138, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .overall-nps {
  display: inline-block;
  width: 100px;
  text-align: center;
}

/* line 142, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .overall-nps .score {
  font-size: 30px;
  padding: 0 30px 0 30px;
  position: relative;
  top: -17px;
}

/* line 148, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .overall-nps .label {
  color: #676767;
  font-size: 12px;
  position: relative;
  bottom: 20px;
  left: 1px;
}

/* line 156, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .vr {
  display: inline-block;
  width: 1px;
  min-height: 90px;
  background: #e3e3e3;
}

/* line 162, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .bars {
  display: inline-block;
  position: relative;
  bottom: 14px;
  left: 8px;
}

/* line 167, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .bars .bar-container {
  width: 240px;
  padding: 4px 0;
}

/* line 170, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .bars .bar-container:first-child {
  padding-bottom: 0;
}

/* line 173, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .bars .bar-container:last-child {
  padding-top: 0;
}

/* line 176, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .bars .bar-container .bar {
  display: inline-block;
  height: 15px;
  max-width: 185px;
}

/* line 180, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .bars .bar-container .bar.promoters {
  background: #72da52;
}

/* line 183, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .bars .bar-container .bar.passives {
  background: #dfdfdf;
}

/* line 186, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .bars .bar-container .bar.detractors {
  background: #dd604d;
}

/* line 190, app/assets/stylesheets/surveys.scss */
#surveys_index .nps-summary-container .bars .bar-container .percent {
  display: inline-block;
  margin-left: 5px;
}

/* line 197, app/assets/stylesheets/surveys.scss */
#surveys_index .filter-links {
  display: inline-block;
  margin-left: 27px;
}

/* line 200, app/assets/stylesheets/surveys.scss */
#surveys_index .filter-links .filter-link {
  display: inline-block;
  margin-right: 8px;
}

/* line 203, app/assets/stylesheets/surveys.scss */
#surveys_index .filter-links .filter-link a.link {
  display: inline-block;
  text-decoration: none;
  color: #adadad;
  background: #e0e0e0;
  font-size: 10px;
  padding: 6px 9px;
}

/* line 210, app/assets/stylesheets/surveys.scss */
#surveys_index .filter-links .filter-link a.link.active {
  color: #ffffff;
  background: #354254;
}

/* line 220, app/assets/stylesheets/surveys.scss */
#surveys_edit .container {
  padding: 0;
}

/* line 223, app/assets/stylesheets/surveys.scss */
#surveys_edit h3 {
  font-size: 20px;
  font-weight: bold;
  color: #455a79;
}

/* line 229, app/assets/stylesheets/surveys.scss */
#surveys_edit .create-success-block h3 {
  color: #455a79;
  font-size: 20px;
  font-weight: bold;
}

/* line 234, app/assets/stylesheets/surveys.scss */
#surveys_edit .create-success-block h3.two-ways {
  font-weight: 700;
  font-size: 18px;
  color: #222;
  margin-bottom: 20px;
}

/* line 241, app/assets/stylesheets/surveys.scss */
#surveys_edit .choice-list {
  list-style: none;
  padding-left: 0;
}

/* line 244, app/assets/stylesheets/surveys.scss */
#surveys_edit .choice-list p.integration {
  display: inline-block;
  padding-left: 7px;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #3c3c3c;
  font-weight: bold;
}

/* line 252, app/assets/stylesheets/surveys.scss */
#surveys_edit .choice-list span.small {
  padding-left: 7px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ababab;
  font-size: 12px;
  font-weight: 200;
}

/* line 263, app/assets/stylesheets/surveys.scss */
#survey_header .survey-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0 !important;
}

/* line 269, app/assets/stylesheets/surveys.scss */
#survey_header .pull-right {
  min-width: 278px;
  text-align: right;
  margin: 0 0 0 5px !important;
}

/* line 273, app/assets/stylesheets/surveys.scss */
#survey_header .pull-right .btn {
  margin: 5px !important;
}

/* line 277, app/assets/stylesheets/surveys.scss */
#survey_header h4 {
  margin: 0 !important;
  font-weight: 600;
  color: #455a79;
}

/* line 281, app/assets/stylesheets/surveys.scss */
#survey_header h4 .paused {
  font-size: 12px;
  color: #aaa;
}

/* line 289, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm {
  padding: 0;
}

/* line 291, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row {
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px #d9d9d9;
  margin: 12px 0;
}

/* line 297, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .nav {
  padding: 12px 35px;
  border-bottom: 1px solid #e6e6e6;
  cursor: pointer;
}

/* line 301, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .nav h3.title {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #455a79;
}

/* line 308, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .nav.landing-page .pull-right {
  padding-top: 25px;
}

/* line 311, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .nav.landing-page .arrows {
  margin-left: 30px;
}

/* line 313, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .nav.landing-page .arrows .arrow {
  bottom: -15px;
}

/* line 317, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .nav.landing-page p.name,
#surveys_form #newSurveyForm > .row .nav.landing-page strong.switch-label {
  font-size: 16px;
  font-weight: bold;
  color: #455a79;
}

/* line 323, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .nav.landing-page strong.switch-label {
  display: inline-block;
  padding: 7px 10px;
}

/* line 328, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .nav.landing-page .onoffswitch-inner:before, #surveys_form #newSurveyForm > .row .nav.landing-page .onoffswitch-inner:after {
  content: " ";
}

/* line 335, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .section {
  padding: 22px 35px;
}

/* line 339, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .section.landing-page .custom-landing-page .remove-column {
  display: none;
}

/* line 344, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .section .image-upload {
  position: relative;
}

/* line 346, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .section .image-upload label.upload {
  cursor: pointer;
}

/* line 349, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .section .image-upload .upload-button {
  padding: 24px 48px;
  border: 1px dashed #aeaeae;
  border-radius: 4px;
  margin-bottom: 25px;
}

/* line 355, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .section .image-upload input#company-logo {
  display: none;
}

/* line 358, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .section .image-upload img#logo-preview {
  height: 75px;
  margin-bottom: 25px;
}

/* line 362, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .section .image-upload .cancel.button {
  position: absolute;
  top: 0;
  right: 0;
}

/* line 370, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .arrows .arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  float: right;
  position: relative;
  bottom: 38px;
}

/* line 379, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .arrows .up.arrow {
  border-bottom: 8px solid #3f5272;
}

/* line 382, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .arrows .down.arrow {
  border-top: 8px solid #3f5272;
}

/* line 386, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm > .row .arrows:after {
  clear: both;
}

/* line 390, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm:first-child .row {
  margin-top: 0;
}

/* line 395, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .response-limits .limit-options .form-group {
  position: relative;
  margin-bottom: 6px;
}

/* line 398, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .response-limits .limit-options .form-group label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 22px;
  font-weight: normal;
}

/* line 409, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .choice-fields .arrow-column,
#surveys_form #newSurveyForm .choice-fields .redirect-column {
  display: none;
}

/* line 417, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .nested-fields .row:hover a.remove_fields {
  display: inline-block;
}

/* line 421, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .nested-fields .row a.remove_fields {
  display: none;
  margin-left: 10px;
}

/* line 426, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .nested-fields i.fa-arrow-right,
#surveys_form #newSurveyForm .nested-fields a.remove_fields {
  margin-top: 32px;
}

/* line 430, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .nested-fields .form-group {
  width: auto;
}

/* line 434, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .form-group {
  width: 50%;
}

/* line 437, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .survey_landing_page_comment_enabled {
  display: inline-block;
}

/* line 440, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .form-group.survey_landing_page_comment_enabled label {
  margin-left: 20px;
  margin-top: 8px;
}

/* line 444, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm hr {
  margin: 30px 0;
}

/* line 447, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm a.grey-button {
  display: inline-block;
  margin: 20px 0 30px 0;
}

/* line 452, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm #email .instructions {
  margin-top: 18px;
}

/* line 456, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .upsell {
  font-size: 12px;
  color: #a2a2a2;
}

/* line 460, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm #preview_landing_page {
  margin: 12px 0;
}

/* line 464, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .landing-page.section .onoff-container {
  margin-top: 25px;
}

/* line 468, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm p.info {
  margin-bottom: 18px;
}

/* line 475, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .trigger-list .trigger a.remove_fields,
#surveys_form #newSurveyForm .trigger.section .trigger-blacklist .trigger a.remove_fields {
  display: none;
  margin-left: 8px;
}

/* line 480, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .trigger-list .trigger:hover a.remove_fields,
#surveys_form #newSurveyForm .trigger.section .trigger-blacklist .trigger:hover a.remove_fields {
  display: inline-block;
}

/* line 486, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .blacklist-section {
  display: none;
}

/* line 493, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .basics.section .col-md-6:first-child .form-group,
#surveys_form #newSurveyForm .thank-you.section .col-md-6:first-child .form-group {
  width: 90%;
}

/* line 497, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .basics.section .col-md-6:last-child,
#surveys_form #newSurveyForm .thank-you.section .col-md-6:last-child {
  border-left: 1px solid #eee;
}

/* line 501, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm #widget-preview-2 {
  margin: 20px 0;
}

/* line 506, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .basics.section .widget-config .theme-picker,
#surveys_form #newSurveyForm .basics.section .widget-config .position-picker {
  display: inline-block;
  margin-right: 32px;
}

/* line 511, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .basics.section .widget-config .theme-picker .radio-group,
#surveys_form #newSurveyForm .basics.section .widget-config .position-picker .radio-group {
  display: inline-block;
  margin-right: 20px;
  position: relative;
  min-width: 40px;
}

/* line 517, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .basics.section .widget-config .theme-picker .radio-group label,
#surveys_form #newSurveyForm .basics.section .widget-config .position-picker .radio-group label {
  font-weight: normal;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 21px;
}

/* line 526, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .basics.section .widget-config .form-group {
  display: inline-block;
  width: inherit;
  margin-right: 42px;
  margin-top: 44px;
}

/* line 531, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .basics.section .widget-config .form-group .form-control {
  width: 95px;
}

/* line 535, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .basics.section .widget-config .swatch-container {
  position: relative;
  top: -18px;
  width: 90px;
  height: 4px;
  border-radius: 3px;
  margin-left: 3px;
  cursor: text;
  display: inline-block;
}

/* line 545, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .basics.section .widget-config .swatch-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* line 552, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .basics.section .widget-config #widget-preview-1 {
  margin-top: 40px;
}

/* line 557, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section {
  font-weight: normal;
}

/* line 559, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .styled-select {
  display: inline-block;
  position: relative;
  margin-right: 6px;
}

/* line 563, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .styled-select select {
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  padding: 8px;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.22);
  height: 40px;
  width: 144px;
}

/* line 572, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .styled-select select option {
  padding: 12px;
}

/* line 576, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .styled-select::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 14px;
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #5b5b5b;
}

/* line 591, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .trigger-list .trigger,
#surveys_form #newSurveyForm .trigger.section .trigger-blacklist .trigger {
  margin: 12px 0;
}

/* line 593, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .trigger-list .trigger input[type="text"],
#surveys_form #newSurveyForm .trigger.section .trigger-blacklist .trigger input[type="text"] {
  height: 40px;
  background: transparent;
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.22);
  padding: 0 6px;
  width: 50%;
}

/* line 605, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .input-group label {
  font-weight: normal;
}

/* line 609, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .appearance {
  margin-top: 15px;
}

/* line 611, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .appearance .form-group {
  margin-bottom: 5px;
}

/* line 614, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .appearance label {
  font-weight: normal;
}

/* line 617, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .appearance input.appearance-delay {
  width: 42px;
  background: transparent;
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.22);
  padding: 0 6px;
}

/* line 626, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .form-group {
  margin: 0;
  position: relative;
}

/* line 629, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .form-group label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 21px;
}

/* line 636, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .radio-group {
  display: inline-block;
  margin-right: 65px;
  position: relative;
}

/* line 640, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .radio-group label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 21px;
  white-space: nowrap;
}

/* line 648, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .trigger.section .link-container {
  margin-bottom: 24px;
}

/* line 653, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .settings.section .option-list {
  padding: 0;
  list-style: none;
}

/* line 656, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .settings.section .option-list .form-group {
  position: relative;
  margin-bottom: 5px;
}

/* line 660, app/assets/stylesheets/surveys.scss */
#surveys_form #newSurveyForm .settings.section .option-list label {
  font-weight: normal;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 21px;
}

/* line 670, app/assets/stylesheets/surveys.scss */
#surveys_form .btn {
  display: block;
  width: 199px;
  height: 44px;
  border-radius: 4px;
  background-color: #19cb7f;
  box-shadow: 0 2px 2px 0 rgba(98, 98, 98, 0.5);
  color: white;
  font-size: 16px;
  border: none;
  line-height: 28px;
  margin: 17px auto;
}

/* line 683, app/assets/stylesheets/surveys.scss */
#surveys_form .edit-buttons {
  margin: 0 auto;
  text-align: center;
  position: relative;
  top: -16px;
}

/* line 689, app/assets/stylesheets/surveys.scss */
#surveys_form .email-sent-successfully {
  color: #19cb7f;
  display: inline-block;
}

/* line 693, app/assets/stylesheets/surveys.scss */
#surveys_form .email-sent-unsuccessfully {
  color: #ff4e64;
  display: inline-block;
}

/* line 697, app/assets/stylesheets/surveys.scss */
#surveys_form .or-separator {
  vertical-align: middle;
  text-align: center;
  margin-top: 130px;
}

/* line 703, app/assets/stylesheets/surveys.scss */
#surveys_form #follow-up textarea {
  height: 120px;
}

/* line 709, app/assets/stylesheets/surveys.scss */
#surveys_form_title {
  font-size: 20px;
  font-weight: bold;
}

/* line 714, app/assets/stylesheets/surveys.scss */
#service-selector {
  width: 264px;
  margin-bottom: 24px;
  padding: 12px;
  background: white;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.22);
}

/* line 721, app/assets/stylesheets/surveys.scss */
#service-selector option {
  padding: 12px;
}

/* line 726, app/assets/stylesheets/surveys.scss */
.create-success-block {
  background-color: #ffffff;
}

/* line 728, app/assets/stylesheets/surveys.scss */
.create-success-block .choice-list {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}

/* line 732, app/assets/stylesheets/surveys.scss */
.create-success-block .choice-list p.integration {
  display: inline-block;
  padding-left: 7px;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #3c3c3c;
  font-weight: bold;
  margin-bottom: 1px;
  margin-top: 8px;
}

/* line 742, app/assets/stylesheets/surveys.scss */
.create-success-block .choice-list span.small {
  padding-left: 7px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ababab;
  font-size: 14px;
  font-weight: 200;
}

/* line 749, app/assets/stylesheets/surveys.scss */
.create-success-block .choice-list input[type="radio"] {
  display: none;
}

/* line 752, app/assets/stylesheets/surveys.scss */
.create-success-block .choice-list input[type="radio"] + label span.radio {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

/* line 759, app/assets/stylesheets/surveys.scss */
.create-success-block .choice-list input[type="radio"]:checked + label span.radio {
  border: 6px solid #4a90e2;
}

/* line 763, app/assets/stylesheets/surveys.scss */
.create-success-block .links-preview.sub-block {
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-size: 13px;
  color: #222;
}

/* line 767, app/assets/stylesheets/surveys.scss */
.create-success-block .links-preview.sub-block a {
  color: #1251ba;
  text-decoration: underline;
}

/* line 775, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block {
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px #d9d9d9;
  padding-top: 36px;
  padding-bottom: 84px;
}

/* line 782, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block h3 {
  color: #455a79;
  font-size: 20px;
  font-weight: bold;
}

/* line 787, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .nps {
  font-size: 60px;
  font-weight: bold;
  color: #2e3a4b;
}

/* line 792, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .aggregates-container {
  background-image: none;
  height: auto;
}

/* line 795, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .aggregates-container .aggregate-container {
  display: inline-block;
  float: none;
  margin: 0 15px 15px;
}

/* line 802, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .responses-container h4 {
  margin-top: 0;
}

/* line 805, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .responses-container .choice-percent-content {
  margin-bottom: 10px;
}

/* line 808, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .responses-container .choice-percent-charts {
  border-left: solid 1px #dbdbdb;
  border-bottom: solid 1px #dbdbdb;
}

/* line 811, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .responses-container .choice-percent-charts .choice-percent-chart {
  height: 15px;
}

/* line 814, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .responses-container .choice-percent-charts .choice-percent-chart:not(:last-child) {
  margin-bottom: 15px;
}

/* line 819, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container {
  padding: 0 44px;
}

/* line 821, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container .response.limit {
  text-align: center;
  margin: 0 auto;
  background: #f96b6b;
  color: white;
  margin-top: 12px;
  padding-top: 12px;
  padding-bottom: 4px;
}

/* line 829, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container .response.limit a {
  text-decoration: underline;
  font-weight: bold;
  color: white;
}

/* line 835, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container .warning-banner {
  padding: 6px 22px;
  background: #fa6a69;
  color: #fff;
  margin-top: 17px;
  border-radius: 3px;
}

/* line 841, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container .warning-banner p.warning-message {
  margin-top: 12px;
}

/* line 843, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container .warning-banner p.warning-message a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

/* line 850, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container #survey-table_filter {
  margin: -36px 0 10px;
}

/* line 852, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container #survey-table_filter input {
  padding: 5px;
  width: 300px;
}

/* line 857, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container table#survey-table {
  margin-top: 19px;
  border: solid 1px #cbcbcb;
  border-radius: 2px;
}

/* line 861, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container table#survey-table thead {
  background-color: #f2f2f2;
  font-weight: normal;
  font-size: 12px;
  color: #929292;
}

/* line 867, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container table#survey-table td.comment {
  max-width: 200px;
}

/* line 870, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .export-container table#survey-table th:not(:first-child),
#surveys_show .results-block .export-container table#survey-table td:not(:first-child) {
  border-left: 1px solid #ddd;
}

/* line 876, app/assets/stylesheets/surveys.scss */
#surveys_show .results-block .square {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

/* line 883, app/assets/stylesheets/surveys.scss */
#surveys_show .fixed-table-container {
  border: 0;
}

/* line 889, app/assets/stylesheets/surveys.scss */
.landing-page-block .btn {
  width: 199px;
  height: 44px;
  border-radius: 4px;
  background-color: #19cb7f;
  box-shadow: 0 2px 2px 0 rgba(98, 98, 98, 0.5);
  color: white;
  font-size: 16px;
  border: none;
  line-height: 28px;
  margin-top: 17px;
}

/* line 904, app/assets/stylesheets/surveys.scss */
#survey_header h4 {
  font-size: 20px;
  margin: 28px 0;
  color: #455a79;
}

/* line 909, app/assets/stylesheets/surveys.scss */
#survey_header .pull-right {
  margin-top: 22px;
}

/* line 911, app/assets/stylesheets/surveys.scss */
#survey_header .pull-right .btn-default {
  width: 129px;
  height: 35px;
  border-radius: 4px;
  border: solid 1px #cdcdcd;
  color: #949494;
  margin-left: 22px;
  background: transparent;
}

/* line 920, app/assets/stylesheets/surveys.scss */
#survey_header .pull-right .btn-default.active {
  background-color: rgba(255, 255, 255, 0.49);
  border: solid 1px #50b3e3;
  color: #50b3e3;
}

/* line 928, app/assets/stylesheets/surveys.scss */
.popup {
  padding: 35px;
}

/* line 930, app/assets/stylesheets/surveys.scss */
.popup .actions {
  margin-top: 35px;
  height: 30px;
}

/* line 937, app/assets/stylesheets/surveys.scss */
.create-success-block .sub-block {
  height: 250px;
  overflow: auto;
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 1px #cdcdcd;
  padding: 25px 30px 25px 30px;
}

/* line 946, app/assets/stylesheets/surveys.scss */
.create-success-block .survey-links a {
  text-decoration: underline;
}

/* line 952, app/assets/stylesheets/surveys.scss */
.grey-button {
  border-radius: 2px;
  background-color: #e4e4e4;
  color: #5a5a5a;
  padding: 8px 17px 10px 20px;
  margin-right: 17px;
  border: none;
}

/* line 961, app/assets/stylesheets/surveys.scss */
.grey-button.highlight {
  background-color: #4a90e2;
  color: white;
}

/* line 966, app/assets/stylesheets/surveys.scss */
.grey-button.delete {
  background-color: #ff4e64;
  color: white;
}

/* line 971, app/assets/stylesheets/surveys.scss */
.live-links {
  height: 300px;
}

/* line 973, app/assets/stylesheets/surveys.scss */
.live-links pre {
  height: 250px;
  padding: 20px;
  border: solid 1px #d9d9d9 !important;
}

/* line 980, app/assets/stylesheets/surveys.scss */
p {
  font-weight: normal;
}

/* line 984, app/assets/stylesheets/surveys.scss */
h3 {
  margin-top: 0;
}

/* line 989, app/assets/stylesheets/surveys.scss */
#survey_view .container {
  width: 800px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 48px auto;
  padding: 20px 40px 30px 40px;
}

/* line 997, app/assets/stylesheets/surveys.scss */
#survey_view h1.question {
  margin-bottom: 23px;
}

/* line 1000, app/assets/stylesheets/surveys.scss */
#survey_view ol.choices {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 1005, app/assets/stylesheets/surveys.scss */
#survey_view ol.choices li.choice .button {
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 12px 0;
  padding: 12px 18px;
  text-align: left;
}

/* line 1014, app/assets/stylesheets/surveys.scss */
#survey_view ol.choices li.choice .button.active {
  background: #19cb7f;
  color: #fff;
}

/* line 1017, app/assets/stylesheets/surveys.scss */
#survey_view ol.choices li.choice .button.active a {
  color: #fff;
  text-decoration: none;
}

/* line 1022, app/assets/stylesheets/surveys.scss */
#survey_view ol.choices li.choice a {
  display: block;
  font-size: 15px;
}

/* line 1028, app/assets/stylesheets/surveys.scss */
#survey_view .upsell {
  margin: 0 auto;
  text-align: center;
}

/* line 1031, app/assets/stylesheets/surveys.scss */
#survey_view .upsell img.powered-by {
  width: 140px;
  height: 36px;
}

/* line 1035, app/assets/stylesheets/surveys.scss */
#survey_view .upsell p {
  font-size: 12px;
  margin-top: 6px;
}

/* line 1043, app/assets/stylesheets/surveys.scss */
#surveys_share .container {
  background: #fff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px #d9d9d9;
  width: 1140px;
  padding: 0;
}

/* line 1049, app/assets/stylesheets/surveys.scss */
#surveys_share .container h3.title {
  font-size: 20px;
  font-weight: 600;
  color: #455a79;
  text-align: center;
  margin: 48px auto 32px auto;
}

/* line 1057, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown {
  position: relative;
  margin: 0 auto;
  width: 264px;
}

/* line 1061, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown .select {
  width: 264px;
  height: 40px;
  background: #fff;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.22);
  border: solid 1px #cfcfcf;
  border-radius: 3px;
  position: relative;
  margin: 32px 0;
}

/* line 1070, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown .select .default {
  display: inline-block;
  padding: 8px 12px;
  font-color: #3c3c3c;
  font-weight: normal;
}

/* line 1076, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown .select .service {
  display: inline-block;
  font-weight: normal;
}

/* line 1079, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown .select .service .name {
  padding: 8px 12px;
  display: inline-block;
}

/* line 1083, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown .select .service .icon {
  width: 16px;
  height: 16px;
  margin-left: 12px;
}

/* line 1089, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown .select .arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #111;
  display: inline-block;
  position: absolute;
  right: 11px;
  top: 16px;
}

/* line 1101, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown .option-list {
  width: 264px;
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  top: 42px;
  max-height: 336px;
  overflow-y: auto;
  z-index: 10000;
}

/* line 1112, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown .option-list .option {
  cursor: pointer;
  padding: 12px;
  font-weight: normal;
}

/* line 1116, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown .option-list .option:hover {
  background: #cfcfcf;
}

/* line 1119, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown .option-list .option img.icon {
  width: 16px;
  height: 16px;
}

/* line 1123, app/assets/stylesheets/surveys.scss */
#surveys_share .dropdown .option-list .option .name {
  display: inline-block;
  margin-left: 12px;
}

/* line 1130, app/assets/stylesheets/surveys.scss */
#surveys_share .share.btn {
  display: block;
  margin: 0 auto;
  background: #e2e2e2;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 32px;
  box-shadow: none;
}

/* line 1139, app/assets/stylesheets/surveys.scss */
#surveys_share .share.btn.active {
  background: #00c671;
  box-shadow: none;
}

/* line 1144, app/assets/stylesheets/surveys.scss */
#surveys_share .status-container {
  text-align: center;
}

/* line 1147, app/assets/stylesheets/surveys.scss */
#surveys_share #share-widget-preview {
  margin: 0 auto;
  width: 25%;
  position: relative;
}

/* line 1152, app/assets/stylesheets/surveys.scss */
#surveys_share #restart-button {
  margin: 12px auto;
  display: block;
}

/* line 1159, app/assets/stylesheets/surveys.scss */
#surveys_embed .header {
  text-align: center;
  margin-bottom: 33px;
  margin-top: 54px;
  border: none;
}

/* line 1164, app/assets/stylesheets/surveys.scss */
#surveys_embed .header img.logo {
  width: 36px;
  height: 36px;
}

/* line 1168, app/assets/stylesheets/surveys.scss */
#surveys_embed .header h2.title {
  font-size: 20px;
  font-weight: bold;
  color: #455a79;
}

/* line 1174, app/assets/stylesheets/surveys.scss */
#surveys_embed .content {
  border: 1px solid #cdcdcd;
  border-radius: 8px;
  max-height: 700px;
  overflow: auto;
  margin: 0 auto;
}

/* line 1180, app/assets/stylesheets/surveys.scss */
#surveys_embed .content .nav {
  border-bottom: 1px solid #cdcdcd;
  text-align: center;
}

/* line 1184, app/assets/stylesheets/surveys.scss */
#surveys_embed .content .tab {
  display: inline-block;
  cursor: pointer;
  margin: 0 12px;
  padding: 16px;
}

/* line 1189, app/assets/stylesheets/surveys.scss */
#surveys_embed .content .tab.active {
  border-bottom: 5px solid #19cb7f;
}

/* line 1191, app/assets/stylesheets/surveys.scss */
#surveys_embed .content .tab.active .label {
  color: #555;
}

/* line 1195, app/assets/stylesheets/surveys.scss */
#surveys_embed .content .tab .label {
  color: #bbb;
  font-size: 18px;
}

/* line 1200, app/assets/stylesheets/surveys.scss */
#surveys_embed .content .snippet {
  padding: 32px 64px 52px 64px;
  max-height: 400px;
}

/* line 1203, app/assets/stylesheets/surveys.scss */
#surveys_embed .content .snippet .instructions {
  color: #4f4f4f;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 14px;
}

/* line 1209, app/assets/stylesheets/surveys.scss */
#surveys_embed .content .snippet .code {
  border: 1px solid #cbcbcb;
  border-radius: 4px;
  padding: 24px;
}

/* line 1213, app/assets/stylesheets/surveys.scss */
#surveys_embed .content .snippet .code pre.prettyprint {
  background: white;
  border: none;
  margin: 0;
  padding: 0;
  color: #707070;
  max-height: 200px;
  overflow: auto;
}

/* line 1225, app/assets/stylesheets/surveys.scss */
#surveys_embed .back.button {
  display: block;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 32px;
  right: 32px;
  border: none;
  background: #e6e6e6;
  font-size: 26px;
  border: 1px solid #c9c9c9;
  border-radius: 22px;
  color: rgba(118, 138, 168, 0.78);
}

/* line 1241, app/assets/stylesheets/surveys.scss */
.modal-container {
  background: white;
  height: 100%;
}

/* line 1246, app/assets/stylesheets/surveys.scss */
#tooltip {
  background: #19cb7f;
  color: white;
  margin-top: 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

/* line 1256, app/assets/stylesheets/surveys.scss */
.nps.nav-wrapper {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
}

/* line 1261, app/assets/stylesheets/surveys.scss */
.nps.nav-wrapper .nps.container .survey-type-menu {
  width: 100%;
  height: 57px;
  background: #fff;
}

/* line 1265, app/assets/stylesheets/surveys.scss */
.nps.nav-wrapper .nps.container .survey-type-menu a.survey-type {
  color: rgba(69, 90, 121, 0.49);
  margin-right: 34px;
  position: relative;
  top: 18px;
  font-size: 16px;
  padding-bottom: 15px;
}

/* line 1272, app/assets/stylesheets/surveys.scss */
.nps.nav-wrapper .nps.container .survey-type-menu a.survey-type.active {
  color: #455a79;
  border-bottom: 5px solid #4a90e2;
}

/* line 1276, app/assets/stylesheets/surveys.scss */
.nps.nav-wrapper .nps.container .survey-type-menu a.survey-type:hover {
  text-decoration: none;
}

/* line 1286, app/assets/stylesheets/surveys.scss */
#survey_type_modal h1.title,
#survey_type_modal h2.name,
#embed_type_modal h1.title,
#embed_type_modal h2.name {
  font-weight: bold;
  color: #455a79;
}

/* line 1291, app/assets/stylesheets/surveys.scss */
#survey_type_modal h1.title,
#embed_type_modal h1.title {
  font-size: 28px;
  text-align: center;
  margin-top: 150px;
}

/* line 1296, app/assets/stylesheets/surveys.scss */
#survey_type_modal h2.name,
#embed_type_modal h2.name {
  font-size: 16px;
  margin: 0;
}

/* line 1300, app/assets/stylesheets/surveys.scss */
#survey_type_modal ol.options,
#embed_type_modal ol.options {
  list-style: none;
  margin: 40px auto;
  text-align: center;
  padding-left: 0;
}

/* line 1305, app/assets/stylesheets/surveys.scss */
#survey_type_modal ol.options a:hover,
#embed_type_modal ol.options a:hover {
  text-decoration: none;
}

/* line 1308, app/assets/stylesheets/surveys.scss */
#survey_type_modal ol.options li,
#embed_type_modal ol.options li {
  display: inline-block;
  position: relative;
}

/* line 1312, app/assets/stylesheets/surveys.scss */
#survey_type_modal ol.options li.option .content,
#embed_type_modal ol.options li.option .content {
  width: 173px;
  height: 149px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #f9f9f9;
}

/* line 1318, app/assets/stylesheets/surveys.scss */
#survey_type_modal ol.options li.option .content:hover,
#embed_type_modal ol.options li.option .content:hover {
  border: 1px solid #00ba55;
}

/* line 1322, app/assets/stylesheets/surveys.scss */
#survey_type_modal ol.options li.option .nps-upsell,
#embed_type_modal ol.options li.option .nps-upsell {
  top: -14px;
  left: 11px;
}

/* line 1326, app/assets/stylesheets/surveys.scss */
#survey_type_modal ol.options li.option p.description,
#embed_type_modal ol.options li.option p.description {
  width: 173px;
  font-size: 12px;
  color: #3e3e3e;
  margin-top: 14px;
}

/* line 1332, app/assets/stylesheets/surveys.scss */
#survey_type_modal ol.options li.option .badge,
#embed_type_modal ol.options li.option .badge {
  position: relative;
  top: 10px;
}

/* line 1336, app/assets/stylesheets/surveys.scss */
#survey_type_modal ol.options li.option .icon,
#embed_type_modal ol.options li.option .icon {
  width: 116px;
  height: 68px;
  margin: 27px 28px 18px 29px;
}

/* line 1342, app/assets/stylesheets/surveys.scss */
#survey_type_modal ol.options li.spacer,
#embed_type_modal ol.options li.spacer {
  width: 40px;
  height: 1px;
}

/* line 1350, app/assets/stylesheets/surveys.scss */
.nps-upsell {
  font-size: 12px;
  margin: 0 auto;
  text-align: center;
  background: #f5a623;
  color: #fff;
  width: 150px;
  border-radius: 16px;
  position: absolute;
  top: 48px;
  left: 40.5%;
  padding: 6px 12px;
}

/* line 1364, app/assets/stylesheets/surveys.scss */
#widget-preview-1,
#widget-preview-2 {
  position: relative;
}

@media (max-width: 600px) {
  /* line 1371, app/assets/stylesheets/surveys.scss */
  #surveys_embed .content .snippet {
    padding: 15px !important;
  }
  /* line 1374, app/assets/stylesheets/surveys.scss */
  #surveys_embed .content .code {
    padding: 5px !important;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *



 */
/*!
 * Bootstrap v3.1.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/* line 8, app/assets/stylesheets/bootstrap.css */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* line 13, app/assets/stylesheets/bootstrap.css */
body {
  margin: 0;
}

/* line 16, app/assets/stylesheets/bootstrap.css */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/* line 30, app/assets/stylesheets/bootstrap.css */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 37, app/assets/stylesheets/bootstrap.css */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 41, app/assets/stylesheets/bootstrap.css */
[hidden],
template {
  display: none;
}

/* line 45, app/assets/stylesheets/bootstrap.css */
a {
  background: transparent;
}

/* line 48, app/assets/stylesheets/bootstrap.css */
a:active,
a:hover {
  outline: 0;
}

/* line 52, app/assets/stylesheets/bootstrap.css */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 55, app/assets/stylesheets/bootstrap.css */
b,
strong {
  font-weight: bold;
}

/* line 59, app/assets/stylesheets/bootstrap.css */
dfn {
  font-style: italic;
}

/* line 62, app/assets/stylesheets/bootstrap.css */
h1 {
  margin: .67em 0;
  font-size: 2em;
}

/* line 66, app/assets/stylesheets/bootstrap.css */
mark {
  color: #000;
  background: #ff0;
}

/* line 70, app/assets/stylesheets/bootstrap.css */
small {
  font-size: 80%;
}

/* line 73, app/assets/stylesheets/bootstrap.css */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

/* line 80, app/assets/stylesheets/bootstrap.css */
sup {
  top: -.5em;
}

/* line 83, app/assets/stylesheets/bootstrap.css */
sub {
  bottom: -.25em;
}

/* line 86, app/assets/stylesheets/bootstrap.css */
img {
  border: 0;
}

/* line 89, app/assets/stylesheets/bootstrap.css */
svg:not(:root) {
  overflow: hidden;
}

/* line 92, app/assets/stylesheets/bootstrap.css */
figure {
  margin: 1em 40px;
}

/* line 95, app/assets/stylesheets/bootstrap.css */
hr {
  height: 0;
  box-sizing: content-box;
}

/* line 100, app/assets/stylesheets/bootstrap.css */
pre {
  overflow: auto;
}

/* line 103, app/assets/stylesheets/bootstrap.css */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 110, app/assets/stylesheets/bootstrap.css */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

/* line 119, app/assets/stylesheets/bootstrap.css */
button {
  overflow: visible;
}

/* line 122, app/assets/stylesheets/bootstrap.css */
button,
select {
  text-transform: none;
}

/* line 126, app/assets/stylesheets/bootstrap.css */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 133, app/assets/stylesheets/bootstrap.css */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 137, app/assets/stylesheets/bootstrap.css */
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 142, app/assets/stylesheets/bootstrap.css */
input {
  line-height: normal;
}

/* line 145, app/assets/stylesheets/bootstrap.css */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 150, app/assets/stylesheets/bootstrap.css */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 154, app/assets/stylesheets/bootstrap.css */
input[type="search"] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

/* line 160, app/assets/stylesheets/bootstrap.css */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 164, app/assets/stylesheets/bootstrap.css */
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}

/* line 169, app/assets/stylesheets/bootstrap.css */
legend {
  padding: 0;
  border: 0;
}

/* line 173, app/assets/stylesheets/bootstrap.css */
textarea {
  overflow: auto;
}

/* line 176, app/assets/stylesheets/bootstrap.css */
optgroup {
  font-weight: bold;
}

/* line 179, app/assets/stylesheets/bootstrap.css */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* line 183, app/assets/stylesheets/bootstrap.css */
td,
th {
  padding: 0;
}

@media print {
  /* line 188, app/assets/stylesheets/bootstrap.css */
  * {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  /* line 194, app/assets/stylesheets/bootstrap.css */
  a,
a:visited {
    text-decoration: underline;
  }
  /* line 198, app/assets/stylesheets/bootstrap.css */
  a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 201, app/assets/stylesheets/bootstrap.css */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 204, app/assets/stylesheets/bootstrap.css */
  a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }
  /* line 208, app/assets/stylesheets/bootstrap.css */
  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 214, app/assets/stylesheets/bootstrap.css */
  thead {
    display: table-header-group;
  }
  /* line 217, app/assets/stylesheets/bootstrap.css */
  tr,
img {
    page-break-inside: avoid;
  }
  /* line 221, app/assets/stylesheets/bootstrap.css */
  img {
    max-width: 100% !important;
  }
  /* line 224, app/assets/stylesheets/bootstrap.css */
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 230, app/assets/stylesheets/bootstrap.css */
  h2,
h3 {
    page-break-after: avoid;
  }
  /* line 234, app/assets/stylesheets/bootstrap.css */
  select {
    background: #fff !important;
  }
  /* line 237, app/assets/stylesheets/bootstrap.css */
  .navbar {
    display: none;
  }
  /* line 240, app/assets/stylesheets/bootstrap.css */
  .table td,
.table th {
    background-color: #fff !important;
  }
  /* line 244, app/assets/stylesheets/bootstrap.css */
  .btn > .caret,
.dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  /* line 248, app/assets/stylesheets/bootstrap.css */
  .label {
    border: 1px solid #000;
  }
  /* line 251, app/assets/stylesheets/bootstrap.css */
  .table {
    border-collapse: collapse !important;
  }
  /* line 254, app/assets/stylesheets/bootstrap.css */
  .table-bordered th,
.table-bordered td {
    border: 1px solid #ddd !important;
  }
}

/* line 259, app/assets/stylesheets/bootstrap.css */
* {
  box-sizing: border-box;
}

/* line 264, app/assets/stylesheets/bootstrap.css */
*:before,
*:after {
  box-sizing: border-box;
}

/* line 270, app/assets/stylesheets/bootstrap.css */
html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 275, app/assets/stylesheets/bootstrap.css */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333;
  background-color: #fff;
}

/* line 282, app/assets/stylesheets/bootstrap.css */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 290, app/assets/stylesheets/bootstrap.css */
a {
  color: #428bca;
  text-decoration: none;
}

/* line 294, app/assets/stylesheets/bootstrap.css */
a:hover,
a:focus {
  color: #2a6496;
  text-decoration: underline;
}

/* line 299, app/assets/stylesheets/bootstrap.css */
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 304, app/assets/stylesheets/bootstrap.css */
figure {
  margin: 0;
}

/* line 307, app/assets/stylesheets/bootstrap.css */
img {
  vertical-align: middle;
}

/* line 310, app/assets/stylesheets/bootstrap.css */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 315, app/assets/stylesheets/bootstrap.css */
.img-rounded {
  border-radius: 6px;
}

/* line 318, app/assets/stylesheets/bootstrap.css */
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .2s ease-in-out;
}

/* line 330, app/assets/stylesheets/bootstrap.css */
.img-circle {
  border-radius: 50%;
}

/* line 333, app/assets/stylesheets/bootstrap.css */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

/* line 339, app/assets/stylesheets/bootstrap.css */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 349, app/assets/stylesheets/bootstrap.css */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

/* line 366, app/assets/stylesheets/bootstrap.css */
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: #999;
}

/* line 394, app/assets/stylesheets/bootstrap.css */
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* line 403, app/assets/stylesheets/bootstrap.css */
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}

/* line 417, app/assets/stylesheets/bootstrap.css */
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 426, app/assets/stylesheets/bootstrap.css */
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}

/* line 440, app/assets/stylesheets/bootstrap.css */
h1,
.h1 {
  font-size: 36px;
}

/* line 444, app/assets/stylesheets/bootstrap.css */
h2,
.h2 {
  font-size: 30px;
}

/* line 448, app/assets/stylesheets/bootstrap.css */
h3,
.h3 {
  font-size: 24px;
}

/* line 452, app/assets/stylesheets/bootstrap.css */
h4,
.h4 {
  font-size: 18px;
}

/* line 456, app/assets/stylesheets/bootstrap.css */
h5,
.h5 {
  font-size: 14px;
}

/* line 460, app/assets/stylesheets/bootstrap.css */
h6,
.h6 {
  font-size: 12px;
}

/* line 464, app/assets/stylesheets/bootstrap.css */
p {
  margin: 0 0 10px;
}

/* line 467, app/assets/stylesheets/bootstrap.css */
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}

@media (min-width: 768px) {
  /* line 474, app/assets/stylesheets/bootstrap.css */
  .lead {
    font-size: 21px;
  }
}

/* line 478, app/assets/stylesheets/bootstrap.css */
small,
.small {
  font-size: 85%;
}

/* line 482, app/assets/stylesheets/bootstrap.css */
cite {
  font-style: normal;
}

/* line 485, app/assets/stylesheets/bootstrap.css */
.text-left {
  text-align: left;
}

/* line 488, app/assets/stylesheets/bootstrap.css */
.text-right {
  text-align: right;
}

/* line 491, app/assets/stylesheets/bootstrap.css */
.text-center {
  text-align: center;
}

/* line 494, app/assets/stylesheets/bootstrap.css */
.text-justify {
  text-align: justify;
}

/* line 497, app/assets/stylesheets/bootstrap.css */
.text-muted {
  color: #999;
}

/* line 500, app/assets/stylesheets/bootstrap.css */
.text-primary {
  color: #428bca;
}

/* line 503, app/assets/stylesheets/bootstrap.css */
a.text-primary:hover {
  color: #3071a9;
}

/* line 506, app/assets/stylesheets/bootstrap.css */
.text-success {
  color: #3c763d;
}

/* line 509, app/assets/stylesheets/bootstrap.css */
a.text-success:hover {
  color: #2b542c;
}

/* line 512, app/assets/stylesheets/bootstrap.css */
.text-info {
  color: #31708f;
}

/* line 515, app/assets/stylesheets/bootstrap.css */
a.text-info:hover {
  color: #245269;
}

/* line 518, app/assets/stylesheets/bootstrap.css */
.text-warning {
  color: #8a6d3b;
}

/* line 521, app/assets/stylesheets/bootstrap.css */
a.text-warning:hover {
  color: #66512c;
}

/* line 524, app/assets/stylesheets/bootstrap.css */
.text-danger {
  color: #a94442;
}

/* line 527, app/assets/stylesheets/bootstrap.css */
a.text-danger:hover {
  color: #843534;
}

/* line 530, app/assets/stylesheets/bootstrap.css */
.bg-primary {
  color: #fff;
  background-color: #428bca;
}

/* line 534, app/assets/stylesheets/bootstrap.css */
a.bg-primary:hover {
  background-color: #3071a9;
}

/* line 537, app/assets/stylesheets/bootstrap.css */
.bg-success {
  background-color: #dff0d8;
}

/* line 540, app/assets/stylesheets/bootstrap.css */
a.bg-success:hover {
  background-color: #c1e2b3;
}

/* line 543, app/assets/stylesheets/bootstrap.css */
.bg-info {
  background-color: #d9edf7;
}

/* line 546, app/assets/stylesheets/bootstrap.css */
a.bg-info:hover {
  background-color: #afd9ee;
}

/* line 549, app/assets/stylesheets/bootstrap.css */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 552, app/assets/stylesheets/bootstrap.css */
a.bg-warning:hover {
  background-color: #f7ecb5;
}

/* line 555, app/assets/stylesheets/bootstrap.css */
.bg-danger {
  background-color: #f2dede;
}

/* line 558, app/assets/stylesheets/bootstrap.css */
a.bg-danger:hover {
  background-color: #e4b9b9;
}

/* line 561, app/assets/stylesheets/bootstrap.css */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}

/* line 566, app/assets/stylesheets/bootstrap.css */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}

/* line 571, app/assets/stylesheets/bootstrap.css */
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}

/* line 577, app/assets/stylesheets/bootstrap.css */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 581, app/assets/stylesheets/bootstrap.css */
.list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 585, app/assets/stylesheets/bootstrap.css */
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

/* line 590, app/assets/stylesheets/bootstrap.css */
.list-inline > li:first-child {
  padding-left: 0;
}

/* line 593, app/assets/stylesheets/bootstrap.css */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 597, app/assets/stylesheets/bootstrap.css */
dt,
dd {
  line-height: 1.428571429;
}

/* line 601, app/assets/stylesheets/bootstrap.css */
dt {
  font-weight: bold;
}

/* line 604, app/assets/stylesheets/bootstrap.css */
dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  /* line 608, app/assets/stylesheets/bootstrap.css */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 617, app/assets/stylesheets/bootstrap.css */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 621, app/assets/stylesheets/bootstrap.css */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999;
}

/* line 626, app/assets/stylesheets/bootstrap.css */
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 630, app/assets/stylesheets/bootstrap.css */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

/* line 636, app/assets/stylesheets/bootstrap.css */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

/* line 641, app/assets/stylesheets/bootstrap.css */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #999;
}

/* line 649, app/assets/stylesheets/bootstrap.css */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 654, app/assets/stylesheets/bootstrap.css */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}

/* line 662, app/assets/stylesheets/bootstrap.css */
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}

/* line 670, app/assets/stylesheets/bootstrap.css */
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 678, app/assets/stylesheets/bootstrap.css */
blockquote:before,
blockquote:after {
  content: "";
}

/* line 682, app/assets/stylesheets/bootstrap.css */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

/* line 687, app/assets/stylesheets/bootstrap.css */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 693, app/assets/stylesheets/bootstrap.css */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  white-space: nowrap;
  background-color: #f9f2f4;
  border-radius: 4px;
}

/* line 701, app/assets/stylesheets/bootstrap.css */
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 709, app/assets/stylesheets/bootstrap.css */
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 722, app/assets/stylesheets/bootstrap.css */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 730, app/assets/stylesheets/bootstrap.css */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 734, app/assets/stylesheets/bootstrap.css */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  /* line 741, app/assets/stylesheets/bootstrap.css */
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  /* line 746, app/assets/stylesheets/bootstrap.css */
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  /* line 751, app/assets/stylesheets/bootstrap.css */
  .container {
    width: 1170px;
  }
}

/* line 755, app/assets/stylesheets/bootstrap.css */
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* line 761, app/assets/stylesheets/bootstrap.css */
.row {
  margin-right: -15px;
  margin-left: -15px;
}

/* line 765, app/assets/stylesheets/bootstrap.css */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 771, app/assets/stylesheets/bootstrap.css */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

/* line 774, app/assets/stylesheets/bootstrap.css */
.col-xs-12 {
  width: 100%;
}

/* line 777, app/assets/stylesheets/bootstrap.css */
.col-xs-11 {
  width: 91.66666666666666%;
}

/* line 780, app/assets/stylesheets/bootstrap.css */
.col-xs-10 {
  width: 83.33333333333334%;
}

/* line 783, app/assets/stylesheets/bootstrap.css */
.col-xs-9 {
  width: 75%;
}

/* line 786, app/assets/stylesheets/bootstrap.css */
.col-xs-8 {
  width: 66.66666666666666%;
}

/* line 789, app/assets/stylesheets/bootstrap.css */
.col-xs-7 {
  width: 58.333333333333336%;
}

/* line 792, app/assets/stylesheets/bootstrap.css */
.col-xs-6 {
  width: 50%;
}

/* line 795, app/assets/stylesheets/bootstrap.css */
.col-xs-5 {
  width: 41.66666666666667%;
}

/* line 798, app/assets/stylesheets/bootstrap.css */
.col-xs-4 {
  width: 33.33333333333333%;
}

/* line 801, app/assets/stylesheets/bootstrap.css */
.col-xs-3 {
  width: 25%;
}

/* line 804, app/assets/stylesheets/bootstrap.css */
.col-xs-2 {
  width: 16.666666666666664%;
}

/* line 807, app/assets/stylesheets/bootstrap.css */
.col-xs-1 {
  width: 8.333333333333332%;
}

/* line 810, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-12 {
  right: 100%;
}

/* line 813, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-11 {
  right: 91.66666666666666%;
}

/* line 816, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-10 {
  right: 83.33333333333334%;
}

/* line 819, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-9 {
  right: 75%;
}

/* line 822, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-8 {
  right: 66.66666666666666%;
}

/* line 825, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-7 {
  right: 58.333333333333336%;
}

/* line 828, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-6 {
  right: 50%;
}

/* line 831, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-5 {
  right: 41.66666666666667%;
}

/* line 834, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-4 {
  right: 33.33333333333333%;
}

/* line 837, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-3 {
  right: 25%;
}

/* line 840, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-2 {
  right: 16.666666666666664%;
}

/* line 843, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-1 {
  right: 8.333333333333332%;
}

/* line 846, app/assets/stylesheets/bootstrap.css */
.col-xs-pull-0 {
  right: 0;
}

/* line 849, app/assets/stylesheets/bootstrap.css */
.col-xs-push-12 {
  left: 100%;
}

/* line 852, app/assets/stylesheets/bootstrap.css */
.col-xs-push-11 {
  left: 91.66666666666666%;
}

/* line 855, app/assets/stylesheets/bootstrap.css */
.col-xs-push-10 {
  left: 83.33333333333334%;
}

/* line 858, app/assets/stylesheets/bootstrap.css */
.col-xs-push-9 {
  left: 75%;
}

/* line 861, app/assets/stylesheets/bootstrap.css */
.col-xs-push-8 {
  left: 66.66666666666666%;
}

/* line 864, app/assets/stylesheets/bootstrap.css */
.col-xs-push-7 {
  left: 58.333333333333336%;
}

/* line 867, app/assets/stylesheets/bootstrap.css */
.col-xs-push-6 {
  left: 50%;
}

/* line 870, app/assets/stylesheets/bootstrap.css */
.col-xs-push-5 {
  left: 41.66666666666667%;
}

/* line 873, app/assets/stylesheets/bootstrap.css */
.col-xs-push-4 {
  left: 33.33333333333333%;
}

/* line 876, app/assets/stylesheets/bootstrap.css */
.col-xs-push-3 {
  left: 25%;
}

/* line 879, app/assets/stylesheets/bootstrap.css */
.col-xs-push-2 {
  left: 16.666666666666664%;
}

/* line 882, app/assets/stylesheets/bootstrap.css */
.col-xs-push-1 {
  left: 8.333333333333332%;
}

/* line 885, app/assets/stylesheets/bootstrap.css */
.col-xs-push-0 {
  left: 0;
}

/* line 888, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-12 {
  margin-left: 100%;
}

/* line 891, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-11 {
  margin-left: 91.66666666666666%;
}

/* line 894, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-10 {
  margin-left: 83.33333333333334%;
}

/* line 897, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 900, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-8 {
  margin-left: 66.66666666666666%;
}

/* line 903, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-7 {
  margin-left: 58.333333333333336%;
}

/* line 906, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 909, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-5 {
  margin-left: 41.66666666666667%;
}

/* line 912, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-4 {
  margin-left: 33.33333333333333%;
}

/* line 915, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 918, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-2 {
  margin-left: 16.666666666666664%;
}

/* line 921, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-1 {
  margin-left: 8.333333333333332%;
}

/* line 924, app/assets/stylesheets/bootstrap.css */
.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  /* line 928, app/assets/stylesheets/bootstrap.css */
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  /* line 931, app/assets/stylesheets/bootstrap.css */
  .col-sm-12 {
    width: 100%;
  }
  /* line 934, app/assets/stylesheets/bootstrap.css */
  .col-sm-11 {
    width: 91.66666666666666%;
  }
  /* line 937, app/assets/stylesheets/bootstrap.css */
  .col-sm-10 {
    width: 83.33333333333334%;
  }
  /* line 940, app/assets/stylesheets/bootstrap.css */
  .col-sm-9 {
    width: 75%;
  }
  /* line 943, app/assets/stylesheets/bootstrap.css */
  .col-sm-8 {
    width: 66.66666666666666%;
  }
  /* line 946, app/assets/stylesheets/bootstrap.css */
  .col-sm-7 {
    width: 58.333333333333336%;
  }
  /* line 949, app/assets/stylesheets/bootstrap.css */
  .col-sm-6 {
    width: 50%;
  }
  /* line 952, app/assets/stylesheets/bootstrap.css */
  .col-sm-5 {
    width: 41.66666666666667%;
  }
  /* line 955, app/assets/stylesheets/bootstrap.css */
  .col-sm-4 {
    width: 33.33333333333333%;
  }
  /* line 958, app/assets/stylesheets/bootstrap.css */
  .col-sm-3 {
    width: 25%;
  }
  /* line 961, app/assets/stylesheets/bootstrap.css */
  .col-sm-2 {
    width: 16.666666666666664%;
  }
  /* line 964, app/assets/stylesheets/bootstrap.css */
  .col-sm-1 {
    width: 8.333333333333332%;
  }
  /* line 967, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-12 {
    right: 100%;
  }
  /* line 970, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-11 {
    right: 91.66666666666666%;
  }
  /* line 973, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-10 {
    right: 83.33333333333334%;
  }
  /* line 976, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-9 {
    right: 75%;
  }
  /* line 979, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-8 {
    right: 66.66666666666666%;
  }
  /* line 982, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-7 {
    right: 58.333333333333336%;
  }
  /* line 985, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-6 {
    right: 50%;
  }
  /* line 988, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-5 {
    right: 41.66666666666667%;
  }
  /* line 991, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-4 {
    right: 33.33333333333333%;
  }
  /* line 994, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-3 {
    right: 25%;
  }
  /* line 997, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-2 {
    right: 16.666666666666664%;
  }
  /* line 1000, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-1 {
    right: 8.333333333333332%;
  }
  /* line 1003, app/assets/stylesheets/bootstrap.css */
  .col-sm-pull-0 {
    right: 0;
  }
  /* line 1006, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-12 {
    left: 100%;
  }
  /* line 1009, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-11 {
    left: 91.66666666666666%;
  }
  /* line 1012, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-10 {
    left: 83.33333333333334%;
  }
  /* line 1015, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-9 {
    left: 75%;
  }
  /* line 1018, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-8 {
    left: 66.66666666666666%;
  }
  /* line 1021, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-7 {
    left: 58.333333333333336%;
  }
  /* line 1024, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-6 {
    left: 50%;
  }
  /* line 1027, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-5 {
    left: 41.66666666666667%;
  }
  /* line 1030, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-4 {
    left: 33.33333333333333%;
  }
  /* line 1033, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-3 {
    left: 25%;
  }
  /* line 1036, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-2 {
    left: 16.666666666666664%;
  }
  /* line 1039, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-1 {
    left: 8.333333333333332%;
  }
  /* line 1042, app/assets/stylesheets/bootstrap.css */
  .col-sm-push-0 {
    left: 0;
  }
  /* line 1045, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  /* line 1048, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-11 {
    margin-left: 91.66666666666666%;
  }
  /* line 1051, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-10 {
    margin-left: 83.33333333333334%;
  }
  /* line 1054, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 1057, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-8 {
    margin-left: 66.66666666666666%;
  }
  /* line 1060, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-7 {
    margin-left: 58.333333333333336%;
  }
  /* line 1063, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 1066, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-5 {
    margin-left: 41.66666666666667%;
  }
  /* line 1069, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-4 {
    margin-left: 33.33333333333333%;
  }
  /* line 1072, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 1075, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-2 {
    margin-left: 16.666666666666664%;
  }
  /* line 1078, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-1 {
    margin-left: 8.333333333333332%;
  }
  /* line 1081, app/assets/stylesheets/bootstrap.css */
  .col-sm-offset-0 {
    margin-left: 0;
  }
}

@media (min-width: 992px) {
  /* line 1086, app/assets/stylesheets/bootstrap.css */
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  /* line 1089, app/assets/stylesheets/bootstrap.css */
  .col-md-12 {
    width: 100%;
  }
  /* line 1092, app/assets/stylesheets/bootstrap.css */
  .col-md-11 {
    width: 91.66666666666666%;
  }
  /* line 1095, app/assets/stylesheets/bootstrap.css */
  .col-md-10 {
    width: 83.33333333333334%;
  }
  /* line 1098, app/assets/stylesheets/bootstrap.css */
  .col-md-9 {
    width: 75%;
  }
  /* line 1101, app/assets/stylesheets/bootstrap.css */
  .col-md-8 {
    width: 66.66666666666666%;
  }
  /* line 1104, app/assets/stylesheets/bootstrap.css */
  .col-md-7 {
    width: 58.333333333333336%;
  }
  /* line 1107, app/assets/stylesheets/bootstrap.css */
  .col-md-6 {
    width: 50%;
  }
  /* line 1110, app/assets/stylesheets/bootstrap.css */
  .col-md-5 {
    width: 41.66666666666667%;
  }
  /* line 1113, app/assets/stylesheets/bootstrap.css */
  .col-md-4 {
    width: 33.33333333333333%;
  }
  /* line 1116, app/assets/stylesheets/bootstrap.css */
  .col-md-3 {
    width: 25%;
  }
  /* line 1119, app/assets/stylesheets/bootstrap.css */
  .col-md-2 {
    width: 16.666666666666664%;
  }
  /* line 1122, app/assets/stylesheets/bootstrap.css */
  .col-md-1 {
    width: 8.333333333333332%;
  }
  /* line 1125, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-12 {
    right: 100%;
  }
  /* line 1128, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-11 {
    right: 91.66666666666666%;
  }
  /* line 1131, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-10 {
    right: 83.33333333333334%;
  }
  /* line 1134, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-9 {
    right: 75%;
  }
  /* line 1137, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-8 {
    right: 66.66666666666666%;
  }
  /* line 1140, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-7 {
    right: 58.333333333333336%;
  }
  /* line 1143, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-6 {
    right: 50%;
  }
  /* line 1146, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-5 {
    right: 41.66666666666667%;
  }
  /* line 1149, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-4 {
    right: 33.33333333333333%;
  }
  /* line 1152, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-3 {
    right: 25%;
  }
  /* line 1155, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-2 {
    right: 16.666666666666664%;
  }
  /* line 1158, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-1 {
    right: 8.333333333333332%;
  }
  /* line 1161, app/assets/stylesheets/bootstrap.css */
  .col-md-pull-0 {
    right: 0;
  }
  /* line 1164, app/assets/stylesheets/bootstrap.css */
  .col-md-push-12 {
    left: 100%;
  }
  /* line 1167, app/assets/stylesheets/bootstrap.css */
  .col-md-push-11 {
    left: 91.66666666666666%;
  }
  /* line 1170, app/assets/stylesheets/bootstrap.css */
  .col-md-push-10 {
    left: 83.33333333333334%;
  }
  /* line 1173, app/assets/stylesheets/bootstrap.css */
  .col-md-push-9 {
    left: 75%;
  }
  /* line 1176, app/assets/stylesheets/bootstrap.css */
  .col-md-push-8 {
    left: 66.66666666666666%;
  }
  /* line 1179, app/assets/stylesheets/bootstrap.css */
  .col-md-push-7 {
    left: 58.333333333333336%;
  }
  /* line 1182, app/assets/stylesheets/bootstrap.css */
  .col-md-push-6 {
    left: 50%;
  }
  /* line 1185, app/assets/stylesheets/bootstrap.css */
  .col-md-push-5 {
    left: 41.66666666666667%;
  }
  /* line 1188, app/assets/stylesheets/bootstrap.css */
  .col-md-push-4 {
    left: 33.33333333333333%;
  }
  /* line 1191, app/assets/stylesheets/bootstrap.css */
  .col-md-push-3 {
    left: 25%;
  }
  /* line 1194, app/assets/stylesheets/bootstrap.css */
  .col-md-push-2 {
    left: 16.666666666666664%;
  }
  /* line 1197, app/assets/stylesheets/bootstrap.css */
  .col-md-push-1 {
    left: 8.333333333333332%;
  }
  /* line 1200, app/assets/stylesheets/bootstrap.css */
  .col-md-push-0 {
    left: 0;
  }
  /* line 1203, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-12 {
    margin-left: 100%;
  }
  /* line 1206, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-11 {
    margin-left: 91.66666666666666%;
  }
  /* line 1209, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-10 {
    margin-left: 83.33333333333334%;
  }
  /* line 1212, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 1215, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-8 {
    margin-left: 66.66666666666666%;
  }
  /* line 1218, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-7 {
    margin-left: 58.333333333333336%;
  }
  /* line 1221, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 1224, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-5 {
    margin-left: 41.66666666666667%;
  }
  /* line 1227, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-4 {
    margin-left: 33.33333333333333%;
  }
  /* line 1230, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 1233, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-2 {
    margin-left: 16.666666666666664%;
  }
  /* line 1236, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-1 {
    margin-left: 8.333333333333332%;
  }
  /* line 1239, app/assets/stylesheets/bootstrap.css */
  .col-md-offset-0 {
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
  /* line 1244, app/assets/stylesheets/bootstrap.css */
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  /* line 1247, app/assets/stylesheets/bootstrap.css */
  .col-lg-12 {
    width: 100%;
  }
  /* line 1250, app/assets/stylesheets/bootstrap.css */
  .col-lg-11 {
    width: 91.66666666666666%;
  }
  /* line 1253, app/assets/stylesheets/bootstrap.css */
  .col-lg-10 {
    width: 83.33333333333334%;
  }
  /* line 1256, app/assets/stylesheets/bootstrap.css */
  .col-lg-9 {
    width: 75%;
  }
  /* line 1259, app/assets/stylesheets/bootstrap.css */
  .col-lg-8 {
    width: 66.66666666666666%;
  }
  /* line 1262, app/assets/stylesheets/bootstrap.css */
  .col-lg-7 {
    width: 58.333333333333336%;
  }
  /* line 1265, app/assets/stylesheets/bootstrap.css */
  .col-lg-6 {
    width: 50%;
  }
  /* line 1268, app/assets/stylesheets/bootstrap.css */
  .col-lg-5 {
    width: 41.66666666666667%;
  }
  /* line 1271, app/assets/stylesheets/bootstrap.css */
  .col-lg-4 {
    width: 33.33333333333333%;
  }
  /* line 1274, app/assets/stylesheets/bootstrap.css */
  .col-lg-3 {
    width: 25%;
  }
  /* line 1277, app/assets/stylesheets/bootstrap.css */
  .col-lg-2 {
    width: 16.666666666666664%;
  }
  /* line 1280, app/assets/stylesheets/bootstrap.css */
  .col-lg-1 {
    width: 8.333333333333332%;
  }
  /* line 1283, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-12 {
    right: 100%;
  }
  /* line 1286, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-11 {
    right: 91.66666666666666%;
  }
  /* line 1289, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-10 {
    right: 83.33333333333334%;
  }
  /* line 1292, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-9 {
    right: 75%;
  }
  /* line 1295, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-8 {
    right: 66.66666666666666%;
  }
  /* line 1298, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-7 {
    right: 58.333333333333336%;
  }
  /* line 1301, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-6 {
    right: 50%;
  }
  /* line 1304, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-5 {
    right: 41.66666666666667%;
  }
  /* line 1307, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-4 {
    right: 33.33333333333333%;
  }
  /* line 1310, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-3 {
    right: 25%;
  }
  /* line 1313, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-2 {
    right: 16.666666666666664%;
  }
  /* line 1316, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-1 {
    right: 8.333333333333332%;
  }
  /* line 1319, app/assets/stylesheets/bootstrap.css */
  .col-lg-pull-0 {
    right: 0;
  }
  /* line 1322, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-12 {
    left: 100%;
  }
  /* line 1325, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-11 {
    left: 91.66666666666666%;
  }
  /* line 1328, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-10 {
    left: 83.33333333333334%;
  }
  /* line 1331, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-9 {
    left: 75%;
  }
  /* line 1334, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-8 {
    left: 66.66666666666666%;
  }
  /* line 1337, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-7 {
    left: 58.333333333333336%;
  }
  /* line 1340, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-6 {
    left: 50%;
  }
  /* line 1343, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-5 {
    left: 41.66666666666667%;
  }
  /* line 1346, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-4 {
    left: 33.33333333333333%;
  }
  /* line 1349, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-3 {
    left: 25%;
  }
  /* line 1352, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-2 {
    left: 16.666666666666664%;
  }
  /* line 1355, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-1 {
    left: 8.333333333333332%;
  }
  /* line 1358, app/assets/stylesheets/bootstrap.css */
  .col-lg-push-0 {
    left: 0;
  }
  /* line 1361, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  /* line 1364, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-11 {
    margin-left: 91.66666666666666%;
  }
  /* line 1367, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-10 {
    margin-left: 83.33333333333334%;
  }
  /* line 1370, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 1373, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-8 {
    margin-left: 66.66666666666666%;
  }
  /* line 1376, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-7 {
    margin-left: 58.333333333333336%;
  }
  /* line 1379, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 1382, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-5 {
    margin-left: 41.66666666666667%;
  }
  /* line 1385, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-4 {
    margin-left: 33.33333333333333%;
  }
  /* line 1388, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 1391, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-2 {
    margin-left: 16.666666666666664%;
  }
  /* line 1394, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-1 {
    margin-left: 8.333333333333332%;
  }
  /* line 1397, app/assets/stylesheets/bootstrap.css */
  .col-lg-offset-0 {
    margin-left: 0;
  }
}

/* line 1401, app/assets/stylesheets/bootstrap.css */
table {
  max-width: 100%;
  background-color: transparent;
}

/* line 1405, app/assets/stylesheets/bootstrap.css */
th {
  text-align: left;
}

/* line 1408, app/assets/stylesheets/bootstrap.css */
.table {
  width: 100%;
  margin-bottom: 20px;
}

/* line 1412, app/assets/stylesheets/bootstrap.css */
.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 #ddd;
}

/* line 1423, app/assets/stylesheets/bootstrap.css */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

/* line 1427, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 1435, app/assets/stylesheets/bootstrap.css */
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

/* line 1438, app/assets/stylesheets/bootstrap.css */
.table .table {
  background-color: #fff;
}

/* line 1441, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 1449, app/assets/stylesheets/bootstrap.css */
.table-bordered {
  border: 1px solid #ddd;
}

/* line 1452, app/assets/stylesheets/bootstrap.css */
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

/* line 1460, app/assets/stylesheets/bootstrap.css */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 1464, app/assets/stylesheets/bootstrap.css */
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

/* line 1468, app/assets/stylesheets/bootstrap.css */
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}

/* line 1472, app/assets/stylesheets/bootstrap.css */
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}

/* line 1477, app/assets/stylesheets/bootstrap.css */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}

/* line 1483, app/assets/stylesheets/bootstrap.css */
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

/* line 1497, app/assets/stylesheets/bootstrap.css */
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

/* line 1503, app/assets/stylesheets/bootstrap.css */
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 1517, app/assets/stylesheets/bootstrap.css */
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

/* line 1523, app/assets/stylesheets/bootstrap.css */
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

/* line 1537, app/assets/stylesheets/bootstrap.css */
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

/* line 1543, app/assets/stylesheets/bootstrap.css */
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 1557, app/assets/stylesheets/bootstrap.css */
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

/* line 1563, app/assets/stylesheets/bootstrap.css */
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

/* line 1577, app/assets/stylesheets/bootstrap.css */
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

@media (max-width: 767px) {
  /* line 1584, app/assets/stylesheets/bootstrap.css */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  /* line 1593, app/assets/stylesheets/bootstrap.css */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 1596, app/assets/stylesheets/bootstrap.css */
  .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;
  }
  /* line 1604, app/assets/stylesheets/bootstrap.css */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 1607, app/assets/stylesheets/bootstrap.css */
  .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;
  }
  /* line 1615, app/assets/stylesheets/bootstrap.css */
  .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;
  }
  /* line 1623, app/assets/stylesheets/bootstrap.css */
  .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;
  }
}

/* line 1630, app/assets/stylesheets/bootstrap.css */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 1636, app/assets/stylesheets/bootstrap.css */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* line 1647, app/assets/stylesheets/bootstrap.css */
label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* line 1652, app/assets/stylesheets/bootstrap.css */
input[type="search"] {
  box-sizing: border-box;
}

/* line 1657, app/assets/stylesheets/bootstrap.css */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;
}

/* line 1664, app/assets/stylesheets/bootstrap.css */
input[type="file"] {
  display: block;
}

/* line 1667, app/assets/stylesheets/bootstrap.css */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 1671, app/assets/stylesheets/bootstrap.css */
select[multiple],
select[size] {
  height: auto;
}

/* line 1675, app/assets/stylesheets/bootstrap.css */
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;
}

/* line 1682, app/assets/stylesheets/bootstrap.css */
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
}

/* line 1689, app/assets/stylesheets/bootstrap.css */
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* line 1706, app/assets/stylesheets/bootstrap.css */
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 1712, app/assets/stylesheets/bootstrap.css */
.form-control:-moz-placeholder {
  color: #999;
}

/* line 1715, app/assets/stylesheets/bootstrap.css */
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* line 1719, app/assets/stylesheets/bootstrap.css */
.form-control:-ms-input-placeholder {
  color: #999;
}

/* line 1722, app/assets/stylesheets/bootstrap.css */
.form-control::-webkit-input-placeholder {
  color: #999;
}

/* line 1725, app/assets/stylesheets/bootstrap.css */
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}

/* line 1732, app/assets/stylesheets/bootstrap.css */
textarea.form-control {
  height: auto;
}

/* line 1735, app/assets/stylesheets/bootstrap.css */
input[type="date"] {
  line-height: 34px;
}

/* line 1738, app/assets/stylesheets/bootstrap.css */
.form-group {
  margin-bottom: 15px;
}

/* line 1741, app/assets/stylesheets/bootstrap.css */
.radio,
.checkbox {
  display: block;
  min-height: 20px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 1749, app/assets/stylesheets/bootstrap.css */
.radio label,
.checkbox label {
  display: inline;
  font-weight: normal;
  cursor: pointer;
}

/* line 1755, app/assets/stylesheets/bootstrap.css */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}

/* line 1762, app/assets/stylesheets/bootstrap.css */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 1766, app/assets/stylesheets/bootstrap.css */
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}

/* line 1775, app/assets/stylesheets/bootstrap.css */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 1780, app/assets/stylesheets/bootstrap.css */
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;
}

/* line 1794, app/assets/stylesheets/bootstrap.css */
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 1801, app/assets/stylesheets/bootstrap.css */
select.input-sm {
  height: 30px;
  line-height: 30px;
}

/* line 1805, app/assets/stylesheets/bootstrap.css */
textarea.input-sm,
select.input-sm[multiple] {
  height: auto;
}

/* line 1809, app/assets/stylesheets/bootstrap.css */
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

/* line 1816, app/assets/stylesheets/bootstrap.css */
select.input-lg {
  height: 46px;
  line-height: 46px;
}

/* line 1820, app/assets/stylesheets/bootstrap.css */
textarea.input-lg,
select.input-lg[multiple] {
  height: auto;
}

/* line 1824, app/assets/stylesheets/bootstrap.css */
.has-feedback {
  position: relative;
}

/* line 1827, app/assets/stylesheets/bootstrap.css */
.has-feedback .form-control {
  padding-right: 42.5px;
}

/* line 1830, app/assets/stylesheets/bootstrap.css */
.has-feedback .form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}

/* line 1840, app/assets/stylesheets/bootstrap.css */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d;
}

/* line 1848, app/assets/stylesheets/bootstrap.css */
.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 1853, app/assets/stylesheets/bootstrap.css */
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

/* line 1858, app/assets/stylesheets/bootstrap.css */
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

/* line 1863, app/assets/stylesheets/bootstrap.css */
.has-success .form-control-feedback {
  color: #3c763d;
}

/* line 1866, app/assets/stylesheets/bootstrap.css */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b;
}

/* line 1874, app/assets/stylesheets/bootstrap.css */
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 1879, app/assets/stylesheets/bootstrap.css */
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

/* line 1884, app/assets/stylesheets/bootstrap.css */
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

/* line 1889, app/assets/stylesheets/bootstrap.css */
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

/* line 1892, app/assets/stylesheets/bootstrap.css */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #a94442;
}

/* line 1900, app/assets/stylesheets/bootstrap.css */
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 1905, app/assets/stylesheets/bootstrap.css */
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

/* line 1910, app/assets/stylesheets/bootstrap.css */
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

/* line 1915, app/assets/stylesheets/bootstrap.css */
.has-error .form-control-feedback {
  color: #a94442;
}

/* line 1918, app/assets/stylesheets/bootstrap.css */
.form-control-static {
  margin-bottom: 0;
}

/* line 1921, app/assets/stylesheets/bootstrap.css */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  /* line 1928, app/assets/stylesheets/bootstrap.css */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 1933, app/assets/stylesheets/bootstrap.css */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 1938, app/assets/stylesheets/bootstrap.css */
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 1942, app/assets/stylesheets/bootstrap.css */
  .form-inline .radio,
.form-inline .checkbox {
    display: inline-block;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 1950, app/assets/stylesheets/bootstrap.css */
  .form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
  /* line 1955, app/assets/stylesheets/bootstrap.css */
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 1959, app/assets/stylesheets/bootstrap.css */
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

/* line 1968, app/assets/stylesheets/bootstrap.css */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}

/* line 1972, app/assets/stylesheets/bootstrap.css */
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

/* line 1976, app/assets/stylesheets/bootstrap.css */
.form-horizontal .form-control-static {
  padding-top: 7px;
}

@media (min-width: 768px) {
  /* line 1980, app/assets/stylesheets/bootstrap.css */
  .form-horizontal .control-label {
    text-align: right;
  }
}

/* line 1984, app/assets/stylesheets/bootstrap.css */
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 15px;
}

/* line 1988, app/assets/stylesheets/bootstrap.css */
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 2008, app/assets/stylesheets/bootstrap.css */
.btn:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 2013, app/assets/stylesheets/bootstrap.css */
.btn:hover,
.btn:focus {
  color: #333;
  text-decoration: none;
}

/* line 2018, app/assets/stylesheets/bootstrap.css */
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 2025, app/assets/stylesheets/bootstrap.css */
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  box-shadow: none;
  opacity: .65;
}

/* line 2035, app/assets/stylesheets/bootstrap.css */
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

/* line 2040, app/assets/stylesheets/bootstrap.css */
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #333;
  background-color: #ebebeb;
  border-color: #adadad;
}

/* line 2049, app/assets/stylesheets/bootstrap.css */
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  background-image: none;
}

/* line 2054, app/assets/stylesheets/bootstrap.css */
.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.active[disabled],
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}

/* line 2072, app/assets/stylesheets/bootstrap.css */
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

/* line 2076, app/assets/stylesheets/bootstrap.css */
.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}

/* line 2081, app/assets/stylesheets/bootstrap.css */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #3276b1;
  border-color: #285e8e;
}

/* line 2090, app/assets/stylesheets/bootstrap.css */
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}

/* line 2095, app/assets/stylesheets/bootstrap.css */
.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.active[disabled],
fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}

/* line 2113, app/assets/stylesheets/bootstrap.css */
.btn-primary .badge {
  color: #428bca;
  background-color: #fff;
}

/* line 2117, app/assets/stylesheets/bootstrap.css */
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 2122, app/assets/stylesheets/bootstrap.css */
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #47a447;
  border-color: #398439;
}

/* line 2131, app/assets/stylesheets/bootstrap.css */
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  background-image: none;
}

/* line 2136, app/assets/stylesheets/bootstrap.css */
.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.active[disabled],
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 2154, app/assets/stylesheets/bootstrap.css */
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

/* line 2158, app/assets/stylesheets/bootstrap.css */
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 2163, app/assets/stylesheets/bootstrap.css */
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #39b3d7;
  border-color: #269abc;
}

/* line 2172, app/assets/stylesheets/bootstrap.css */
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-image: none;
}

/* line 2177, app/assets/stylesheets/bootstrap.css */
.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.active[disabled],
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 2195, app/assets/stylesheets/bootstrap.css */
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

/* line 2199, app/assets/stylesheets/bootstrap.css */
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 2204, app/assets/stylesheets/bootstrap.css */
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ed9c28;
  border-color: #d58512;
}

/* line 2213, app/assets/stylesheets/bootstrap.css */
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  background-image: none;
}

/* line 2218, app/assets/stylesheets/bootstrap.css */
.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.active[disabled],
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 2236, app/assets/stylesheets/bootstrap.css */
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

/* line 2240, app/assets/stylesheets/bootstrap.css */
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 2245, app/assets/stylesheets/bootstrap.css */
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #d2322d;
  border-color: #ac2925;
}

/* line 2254, app/assets/stylesheets/bootstrap.css */
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  background-image: none;
}

/* line 2259, app/assets/stylesheets/bootstrap.css */
.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.active[disabled],
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 2277, app/assets/stylesheets/bootstrap.css */
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

/* line 2281, app/assets/stylesheets/bootstrap.css */
.btn-link {
  font-weight: normal;
  color: #428bca;
  cursor: pointer;
  border-radius: 0;
}

/* line 2287, app/assets/stylesheets/bootstrap.css */
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}

/* line 2295, app/assets/stylesheets/bootstrap.css */
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}

/* line 2301, app/assets/stylesheets/bootstrap.css */
.btn-link:hover,
.btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}

/* line 2307, app/assets/stylesheets/bootstrap.css */
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #999;
  text-decoration: none;
}

/* line 2314, app/assets/stylesheets/bootstrap.css */
.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

/* line 2320, app/assets/stylesheets/bootstrap.css */
.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 2326, app/assets/stylesheets/bootstrap.css */
.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 2332, app/assets/stylesheets/bootstrap.css */
.btn-block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

/* line 2338, app/assets/stylesheets/bootstrap.css */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 2341, app/assets/stylesheets/bootstrap.css */
input.btn-block[type="submit"],
input.btn-block[type="reset"],
input.btn-block[type="button"] {
  width: 100%;
}

/* line 2346, app/assets/stylesheets/bootstrap.css */
.fade {
  opacity: 0;
  transition: opacity .15s linear;
}

/* line 2351, app/assets/stylesheets/bootstrap.css */
.fade.in {
  opacity: 1;
}

/* line 2354, app/assets/stylesheets/bootstrap.css */
.collapse {
  display: none;
}

/* line 2357, app/assets/stylesheets/bootstrap.css */
.collapse.in {
  display: block;
}

/* line 2360, app/assets/stylesheets/bootstrap.css */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height .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");
}

/* line 2373, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 2385, app/assets/stylesheets/bootstrap.css */
.glyphicon-asterisk:before {
  content: "\2a";
}

/* line 2388, app/assets/stylesheets/bootstrap.css */
.glyphicon-plus:before {
  content: "\2b";
}

/* line 2391, app/assets/stylesheets/bootstrap.css */
.glyphicon-euro:before {
  content: "\20ac";
}

/* line 2394, app/assets/stylesheets/bootstrap.css */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 2397, app/assets/stylesheets/bootstrap.css */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 2400, app/assets/stylesheets/bootstrap.css */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 2403, app/assets/stylesheets/bootstrap.css */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 2406, app/assets/stylesheets/bootstrap.css */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 2409, app/assets/stylesheets/bootstrap.css */
.glyphicon-music:before {
  content: "\e002";
}

/* line 2412, app/assets/stylesheets/bootstrap.css */
.glyphicon-search:before {
  content: "\e003";
}

/* line 2415, app/assets/stylesheets/bootstrap.css */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 2418, app/assets/stylesheets/bootstrap.css */
.glyphicon-star:before {
  content: "\e006";
}

/* line 2421, app/assets/stylesheets/bootstrap.css */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 2424, app/assets/stylesheets/bootstrap.css */
.glyphicon-user:before {
  content: "\e008";
}

/* line 2427, app/assets/stylesheets/bootstrap.css */
.glyphicon-film:before {
  content: "\e009";
}

/* line 2430, app/assets/stylesheets/bootstrap.css */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 2433, app/assets/stylesheets/bootstrap.css */
.glyphicon-th:before {
  content: "\e011";
}

/* line 2436, app/assets/stylesheets/bootstrap.css */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 2439, app/assets/stylesheets/bootstrap.css */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 2442, app/assets/stylesheets/bootstrap.css */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 2445, app/assets/stylesheets/bootstrap.css */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 2448, app/assets/stylesheets/bootstrap.css */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 2451, app/assets/stylesheets/bootstrap.css */
.glyphicon-off:before {
  content: "\e017";
}

/* line 2454, app/assets/stylesheets/bootstrap.css */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 2457, app/assets/stylesheets/bootstrap.css */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 2460, app/assets/stylesheets/bootstrap.css */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 2463, app/assets/stylesheets/bootstrap.css */
.glyphicon-home:before {
  content: "\e021";
}

/* line 2466, app/assets/stylesheets/bootstrap.css */
.glyphicon-file:before {
  content: "\e022";
}

/* line 2469, app/assets/stylesheets/bootstrap.css */
.glyphicon-time:before {
  content: "\e023";
}

/* line 2472, app/assets/stylesheets/bootstrap.css */
.glyphicon-road:before {
  content: "\e024";
}

/* line 2475, app/assets/stylesheets/bootstrap.css */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 2478, app/assets/stylesheets/bootstrap.css */
.glyphicon-download:before {
  content: "\e026";
}

/* line 2481, app/assets/stylesheets/bootstrap.css */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 2484, app/assets/stylesheets/bootstrap.css */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 2487, app/assets/stylesheets/bootstrap.css */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 2490, app/assets/stylesheets/bootstrap.css */
.glyphicon-repeat:before {
  content: "\e030";
}

/* line 2493, app/assets/stylesheets/bootstrap.css */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 2496, app/assets/stylesheets/bootstrap.css */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 2499, app/assets/stylesheets/bootstrap.css */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 2502, app/assets/stylesheets/bootstrap.css */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 2505, app/assets/stylesheets/bootstrap.css */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 2508, app/assets/stylesheets/bootstrap.css */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 2511, app/assets/stylesheets/bootstrap.css */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 2514, app/assets/stylesheets/bootstrap.css */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 2517, app/assets/stylesheets/bootstrap.css */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 2520, app/assets/stylesheets/bootstrap.css */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 2523, app/assets/stylesheets/bootstrap.css */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 2526, app/assets/stylesheets/bootstrap.css */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 2529, app/assets/stylesheets/bootstrap.css */
.glyphicon-book:before {
  content: "\e043";
}

/* line 2532, app/assets/stylesheets/bootstrap.css */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 2535, app/assets/stylesheets/bootstrap.css */
.glyphicon-print:before {
  content: "\e045";
}

/* line 2538, app/assets/stylesheets/bootstrap.css */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 2541, app/assets/stylesheets/bootstrap.css */
.glyphicon-font:before {
  content: "\e047";
}

/* line 2544, app/assets/stylesheets/bootstrap.css */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 2547, app/assets/stylesheets/bootstrap.css */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 2550, app/assets/stylesheets/bootstrap.css */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 2553, app/assets/stylesheets/bootstrap.css */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 2556, app/assets/stylesheets/bootstrap.css */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 2559, app/assets/stylesheets/bootstrap.css */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 2562, app/assets/stylesheets/bootstrap.css */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 2565, app/assets/stylesheets/bootstrap.css */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 2568, app/assets/stylesheets/bootstrap.css */
.glyphicon-list:before {
  content: "\e056";
}

/* line 2571, app/assets/stylesheets/bootstrap.css */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 2574, app/assets/stylesheets/bootstrap.css */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 2577, app/assets/stylesheets/bootstrap.css */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 2580, app/assets/stylesheets/bootstrap.css */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 2583, app/assets/stylesheets/bootstrap.css */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 2586, app/assets/stylesheets/bootstrap.css */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 2589, app/assets/stylesheets/bootstrap.css */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 2592, app/assets/stylesheets/bootstrap.css */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 2595, app/assets/stylesheets/bootstrap.css */
.glyphicon-share:before {
  content: "\e066";
}

/* line 2598, app/assets/stylesheets/bootstrap.css */
.glyphicon-check:before {
  content: "\e067";
}

/* line 2601, app/assets/stylesheets/bootstrap.css */
.glyphicon-move:before {
  content: "\e068";
}

/* line 2604, app/assets/stylesheets/bootstrap.css */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 2607, app/assets/stylesheets/bootstrap.css */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 2610, app/assets/stylesheets/bootstrap.css */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 2613, app/assets/stylesheets/bootstrap.css */
.glyphicon-play:before {
  content: "\e072";
}

/* line 2616, app/assets/stylesheets/bootstrap.css */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 2619, app/assets/stylesheets/bootstrap.css */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 2622, app/assets/stylesheets/bootstrap.css */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 2625, app/assets/stylesheets/bootstrap.css */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 2628, app/assets/stylesheets/bootstrap.css */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 2631, app/assets/stylesheets/bootstrap.css */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 2634, app/assets/stylesheets/bootstrap.css */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 2637, app/assets/stylesheets/bootstrap.css */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 2640, app/assets/stylesheets/bootstrap.css */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 2643, app/assets/stylesheets/bootstrap.css */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 2646, app/assets/stylesheets/bootstrap.css */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 2649, app/assets/stylesheets/bootstrap.css */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 2652, app/assets/stylesheets/bootstrap.css */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 2655, app/assets/stylesheets/bootstrap.css */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 2658, app/assets/stylesheets/bootstrap.css */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 2661, app/assets/stylesheets/bootstrap.css */
.glyphicon-remove-circle:before {
  content: "\e088";
}

/* line 2664, app/assets/stylesheets/bootstrap.css */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 2667, app/assets/stylesheets/bootstrap.css */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 2670, app/assets/stylesheets/bootstrap.css */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 2673, app/assets/stylesheets/bootstrap.css */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 2676, app/assets/stylesheets/bootstrap.css */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 2679, app/assets/stylesheets/bootstrap.css */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 2682, app/assets/stylesheets/bootstrap.css */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 2685, app/assets/stylesheets/bootstrap.css */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 2688, app/assets/stylesheets/bootstrap.css */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 2691, app/assets/stylesheets/bootstrap.css */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 2694, app/assets/stylesheets/bootstrap.css */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 2697, app/assets/stylesheets/bootstrap.css */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 2700, app/assets/stylesheets/bootstrap.css */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 2703, app/assets/stylesheets/bootstrap.css */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 2706, app/assets/stylesheets/bootstrap.css */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 2709, app/assets/stylesheets/bootstrap.css */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 2712, app/assets/stylesheets/bootstrap.css */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 2715, app/assets/stylesheets/bootstrap.css */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 2718, app/assets/stylesheets/bootstrap.css */
.glyphicon-random:before {
  content: "\e110";
}

/* line 2721, app/assets/stylesheets/bootstrap.css */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 2724, app/assets/stylesheets/bootstrap.css */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 2727, app/assets/stylesheets/bootstrap.css */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 2730, app/assets/stylesheets/bootstrap.css */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 2733, app/assets/stylesheets/bootstrap.css */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 2736, app/assets/stylesheets/bootstrap.css */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 2739, app/assets/stylesheets/bootstrap.css */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 2742, app/assets/stylesheets/bootstrap.css */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 2745, app/assets/stylesheets/bootstrap.css */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 2748, app/assets/stylesheets/bootstrap.css */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 2751, app/assets/stylesheets/bootstrap.css */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 2754, app/assets/stylesheets/bootstrap.css */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 2757, app/assets/stylesheets/bootstrap.css */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 2760, app/assets/stylesheets/bootstrap.css */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 2763, app/assets/stylesheets/bootstrap.css */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 2766, app/assets/stylesheets/bootstrap.css */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 2769, app/assets/stylesheets/bootstrap.css */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 2772, app/assets/stylesheets/bootstrap.css */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 2775, app/assets/stylesheets/bootstrap.css */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 2778, app/assets/stylesheets/bootstrap.css */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 2781, app/assets/stylesheets/bootstrap.css */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 2784, app/assets/stylesheets/bootstrap.css */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 2787, app/assets/stylesheets/bootstrap.css */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 2790, app/assets/stylesheets/bootstrap.css */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 2793, app/assets/stylesheets/bootstrap.css */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 2796, app/assets/stylesheets/bootstrap.css */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 2799, app/assets/stylesheets/bootstrap.css */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 2802, app/assets/stylesheets/bootstrap.css */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 2805, app/assets/stylesheets/bootstrap.css */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 2808, app/assets/stylesheets/bootstrap.css */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 2811, app/assets/stylesheets/bootstrap.css */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 2814, app/assets/stylesheets/bootstrap.css */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 2817, app/assets/stylesheets/bootstrap.css */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 2820, app/assets/stylesheets/bootstrap.css */
.glyphicon-link:before {
  content: "\e144";
}

/* line 2823, app/assets/stylesheets/bootstrap.css */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 2826, app/assets/stylesheets/bootstrap.css */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 2829, app/assets/stylesheets/bootstrap.css */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 2832, app/assets/stylesheets/bootstrap.css */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 2835, app/assets/stylesheets/bootstrap.css */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 2838, app/assets/stylesheets/bootstrap.css */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 2841, app/assets/stylesheets/bootstrap.css */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 2844, app/assets/stylesheets/bootstrap.css */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 2847, app/assets/stylesheets/bootstrap.css */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 2850, app/assets/stylesheets/bootstrap.css */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 2853, app/assets/stylesheets/bootstrap.css */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 2856, app/assets/stylesheets/bootstrap.css */
.glyphicon-unchecked:before {
  content: "\e157";
}

/* line 2859, app/assets/stylesheets/bootstrap.css */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 2862, app/assets/stylesheets/bootstrap.css */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 2865, app/assets/stylesheets/bootstrap.css */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 2868, app/assets/stylesheets/bootstrap.css */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 2871, app/assets/stylesheets/bootstrap.css */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 2874, app/assets/stylesheets/bootstrap.css */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 2877, app/assets/stylesheets/bootstrap.css */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 2880, app/assets/stylesheets/bootstrap.css */
.glyphicon-record:before {
  content: "\e165";
}

/* line 2883, app/assets/stylesheets/bootstrap.css */
.glyphicon-save:before {
  content: "\e166";
}

/* line 2886, app/assets/stylesheets/bootstrap.css */
.glyphicon-open:before {
  content: "\e167";
}

/* line 2889, app/assets/stylesheets/bootstrap.css */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 2892, app/assets/stylesheets/bootstrap.css */
.glyphicon-import:before {
  content: "\e169";
}

/* line 2895, app/assets/stylesheets/bootstrap.css */
.glyphicon-export:before {
  content: "\e170";
}

/* line 2898, app/assets/stylesheets/bootstrap.css */
.glyphicon-send:before {
  content: "\e171";
}

/* line 2901, app/assets/stylesheets/bootstrap.css */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 2904, app/assets/stylesheets/bootstrap.css */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 2907, app/assets/stylesheets/bootstrap.css */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 2910, app/assets/stylesheets/bootstrap.css */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 2913, app/assets/stylesheets/bootstrap.css */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 2916, app/assets/stylesheets/bootstrap.css */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 2919, app/assets/stylesheets/bootstrap.css */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 2922, app/assets/stylesheets/bootstrap.css */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 2925, app/assets/stylesheets/bootstrap.css */
.glyphicon-header:before {
  content: "\e180";
}

/* line 2928, app/assets/stylesheets/bootstrap.css */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 2931, app/assets/stylesheets/bootstrap.css */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 2934, app/assets/stylesheets/bootstrap.css */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 2937, app/assets/stylesheets/bootstrap.css */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 2940, app/assets/stylesheets/bootstrap.css */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 2943, app/assets/stylesheets/bootstrap.css */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 2946, app/assets/stylesheets/bootstrap.css */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 2949, app/assets/stylesheets/bootstrap.css */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 2952, app/assets/stylesheets/bootstrap.css */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 2955, app/assets/stylesheets/bootstrap.css */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 2958, app/assets/stylesheets/bootstrap.css */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 2961, app/assets/stylesheets/bootstrap.css */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 2964, app/assets/stylesheets/bootstrap.css */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 2967, app/assets/stylesheets/bootstrap.css */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 2970, app/assets/stylesheets/bootstrap.css */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 2973, app/assets/stylesheets/bootstrap.css */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 2976, app/assets/stylesheets/bootstrap.css */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 2979, app/assets/stylesheets/bootstrap.css */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 2982, app/assets/stylesheets/bootstrap.css */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 2985, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 2995, app/assets/stylesheets/bootstrap.css */
.dropdown {
  position: relative;
}

/* line 2998, app/assets/stylesheets/bootstrap.css */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 3001, app/assets/stylesheets/bootstrap.css */
.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;
  font-size: 14px;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

/* line 3021, app/assets/stylesheets/bootstrap.css */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

/* line 3025, app/assets/stylesheets/bootstrap.css */
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 3031, app/assets/stylesheets/bootstrap.css */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333;
  white-space: nowrap;
}

/* line 3040, app/assets/stylesheets/bootstrap.css */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 3046, app/assets/stylesheets/bootstrap.css */
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #428bca;
  outline: 0;
}

/* line 3054, app/assets/stylesheets/bootstrap.css */
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999;
}

/* line 3059, app/assets/stylesheets/bootstrap.css */
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

/* line 3067, app/assets/stylesheets/bootstrap.css */
.open > .dropdown-menu {
  display: block;
}

/* line 3070, app/assets/stylesheets/bootstrap.css */
.open > a {
  outline: 0;
}

/* line 3073, app/assets/stylesheets/bootstrap.css */
.dropdown-menu-right {
  right: 0;
  left: auto;
}

/* line 3077, app/assets/stylesheets/bootstrap.css */
.dropdown-menu-left {
  right: auto;
  left: 0;
}

/* line 3081, app/assets/stylesheets/bootstrap.css */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #999;
}

/* line 3088, app/assets/stylesheets/bootstrap.css */
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

/* line 3096, app/assets/stylesheets/bootstrap.css */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 3100, app/assets/stylesheets/bootstrap.css */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px solid;
}

/* line 3106, app/assets/stylesheets/bootstrap.css */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

@media (min-width: 768px) {
  /* line 3113, app/assets/stylesheets/bootstrap.css */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 3117, app/assets/stylesheets/bootstrap.css */
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}

/* line 3122, app/assets/stylesheets/bootstrap.css */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* line 3128, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}

/* line 3133, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 3143, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: none;
}

/* line 3147, app/assets/stylesheets/bootstrap.css */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 3153, app/assets/stylesheets/bootstrap.css */
.btn-toolbar {
  margin-left: -5px;
}

/* line 3156, app/assets/stylesheets/bootstrap.css */
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}

/* line 3160, app/assets/stylesheets/bootstrap.css */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 3165, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 3168, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn:first-child {
  margin-left: 0;
}

/* line 3171, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 3175, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3180, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn-group {
  float: left;
}

/* line 3183, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 3186, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 3191, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn-group:last-child > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3195, app/assets/stylesheets/bootstrap.css */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 3199, app/assets/stylesheets/bootstrap.css */
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 3205, app/assets/stylesheets/bootstrap.css */
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 3211, app/assets/stylesheets/bootstrap.css */
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

/* line 3217, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

/* line 3221, app/assets/stylesheets/bootstrap.css */
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

/* line 3225, app/assets/stylesheets/bootstrap.css */
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 3229, app/assets/stylesheets/bootstrap.css */
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}

/* line 3233, app/assets/stylesheets/bootstrap.css */
.btn .caret {
  margin-left: 0;
}

/* line 3236, app/assets/stylesheets/bootstrap.css */
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 3240, app/assets/stylesheets/bootstrap.css */
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}

/* line 3243, app/assets/stylesheets/bootstrap.css */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

/* line 3251, app/assets/stylesheets/bootstrap.css */
.btn-group-vertical > .btn-group > .btn {
  float: none;
}

/* line 3254, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 3261, app/assets/stylesheets/bootstrap.css */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 3264, app/assets/stylesheets/bootstrap.css */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3269, app/assets/stylesheets/bootstrap.css */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}

/* line 3274, app/assets/stylesheets/bootstrap.css */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 3277, app/assets/stylesheets/bootstrap.css */
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3282, app/assets/stylesheets/bootstrap.css */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 3286, app/assets/stylesheets/bootstrap.css */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

/* line 3292, app/assets/stylesheets/bootstrap.css */
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}

/* line 3298, app/assets/stylesheets/bootstrap.css */
.btn-group-justified > .btn-group .btn {
  width: 100%;
}

/* line 3301, app/assets/stylesheets/bootstrap.css */
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  display: none;
}

/* line 3305, app/assets/stylesheets/bootstrap.css */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

/* line 3310, app/assets/stylesheets/bootstrap.css */
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

/* line 3315, app/assets/stylesheets/bootstrap.css */
.input-group .form-control {
  float: left;
  width: 100%;
  margin-bottom: 0;
}

/* line 3320, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 3329, app/assets/stylesheets/bootstrap.css */
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;
}

/* line 3335, app/assets/stylesheets/bootstrap.css */
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select.input-group-lg[multiple] > .form-control,
select.input-group-lg[multiple] > .input-group-addon,
select.input-group-lg[multiple] > .input-group-btn > .btn {
  height: auto;
}

/* line 3343, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 3352, app/assets/stylesheets/bootstrap.css */
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;
}

/* line 3358, app/assets/stylesheets/bootstrap.css */
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select.input-group-sm[multiple] > .form-control,
select.input-group-sm[multiple] > .input-group-addon,
select.input-group-sm[multiple] > .input-group-btn > .btn {
  height: auto;
}

/* line 3366, app/assets/stylesheets/bootstrap.css */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}

/* line 3371, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 3376, app/assets/stylesheets/bootstrap.css */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 3382, app/assets/stylesheets/bootstrap.css */
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 3393, app/assets/stylesheets/bootstrap.css */
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

/* line 3398, app/assets/stylesheets/bootstrap.css */
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

/* line 3403, app/assets/stylesheets/bootstrap.css */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 3407, app/assets/stylesheets/bootstrap.css */
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 3417, app/assets/stylesheets/bootstrap.css */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 3420, app/assets/stylesheets/bootstrap.css */
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3430, app/assets/stylesheets/bootstrap.css */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 3433, app/assets/stylesheets/bootstrap.css */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* line 3438, app/assets/stylesheets/bootstrap.css */
.input-group-btn > .btn {
  position: relative;
}

/* line 3441, app/assets/stylesheets/bootstrap.css */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

/* line 3444, app/assets/stylesheets/bootstrap.css */
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}

/* line 3449, app/assets/stylesheets/bootstrap.css */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

/* line 3453, app/assets/stylesheets/bootstrap.css */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}

/* line 3457, app/assets/stylesheets/bootstrap.css */
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 3462, app/assets/stylesheets/bootstrap.css */
.nav > li {
  position: relative;
  display: block;
}

/* line 3466, app/assets/stylesheets/bootstrap.css */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/* line 3471, app/assets/stylesheets/bootstrap.css */
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

/* line 3476, app/assets/stylesheets/bootstrap.css */
.nav > li.disabled > a {
  color: #999;
}

/* line 3479, app/assets/stylesheets/bootstrap.css */
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #999;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

/* line 3486, app/assets/stylesheets/bootstrap.css */
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #428bca;
}

/* line 3492, app/assets/stylesheets/bootstrap.css */
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 3498, app/assets/stylesheets/bootstrap.css */
.nav > li > a > img {
  max-width: none;
}

/* line 3501, app/assets/stylesheets/bootstrap.css */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* line 3504, app/assets/stylesheets/bootstrap.css */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

/* line 3508, app/assets/stylesheets/bootstrap.css */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 3514, app/assets/stylesheets/bootstrap.css */
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}

/* line 3517, app/assets/stylesheets/bootstrap.css */
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

/* line 3526, app/assets/stylesheets/bootstrap.css */
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

/* line 3530, app/assets/stylesheets/bootstrap.css */
.nav-tabs.nav-justified > li {
  float: none;
}

/* line 3533, app/assets/stylesheets/bootstrap.css */
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

/* line 3537, app/assets/stylesheets/bootstrap.css */
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  /* line 3542, app/assets/stylesheets/bootstrap.css */
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 3546, app/assets/stylesheets/bootstrap.css */
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 3550, app/assets/stylesheets/bootstrap.css */
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 3554, app/assets/stylesheets/bootstrap.css */
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  /* line 3560, app/assets/stylesheets/bootstrap.css */
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 3564, app/assets/stylesheets/bootstrap.css */
  .nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 3570, app/assets/stylesheets/bootstrap.css */
.nav-pills > li {
  float: left;
}

/* line 3573, app/assets/stylesheets/bootstrap.css */
.nav-pills > li > a {
  border-radius: 4px;
}

/* line 3576, app/assets/stylesheets/bootstrap.css */
.nav-pills > li + li {
  margin-left: 2px;
}

/* line 3579, app/assets/stylesheets/bootstrap.css */
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #428bca;
}

/* line 3585, app/assets/stylesheets/bootstrap.css */
.nav-stacked > li {
  float: none;
}

/* line 3588, app/assets/stylesheets/bootstrap.css */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 3592, app/assets/stylesheets/bootstrap.css */
.nav-justified {
  width: 100%;
}

/* line 3595, app/assets/stylesheets/bootstrap.css */
.nav-justified > li {
  float: none;
}

/* line 3598, app/assets/stylesheets/bootstrap.css */
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

/* line 3602, app/assets/stylesheets/bootstrap.css */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  /* line 3607, app/assets/stylesheets/bootstrap.css */
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 3611, app/assets/stylesheets/bootstrap.css */
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 3615, app/assets/stylesheets/bootstrap.css */
.nav-tabs-justified {
  border-bottom: 0;
}

/* line 3618, app/assets/stylesheets/bootstrap.css */
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 3622, app/assets/stylesheets/bootstrap.css */
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  /* line 3628, app/assets/stylesheets/bootstrap.css */
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 3632, app/assets/stylesheets/bootstrap.css */
  .nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 3638, app/assets/stylesheets/bootstrap.css */
.tab-content > .tab-pane {
  display: none;
}

/* line 3641, app/assets/stylesheets/bootstrap.css */
.tab-content > .active {
  display: block;
}

/* line 3644, app/assets/stylesheets/bootstrap.css */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 3649, app/assets/stylesheets/bootstrap.css */
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

@media (min-width: 768px) {
  /* line 3656, app/assets/stylesheets/bootstrap.css */
  .navbar {
    border-radius: 4px;
  }
}

@media (min-width: 768px) {
  /* line 3661, app/assets/stylesheets/bootstrap.css */
  .navbar-header {
    float: left;
  }
}

/* line 3665, app/assets/stylesheets/bootstrap.css */
.navbar-collapse {
  max-height: 340px;
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* line 3674, app/assets/stylesheets/bootstrap.css */
.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  /* line 3678, app/assets/stylesheets/bootstrap.css */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 3683, app/assets/stylesheets/bootstrap.css */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 3689, app/assets/stylesheets/bootstrap.css */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 3692, app/assets/stylesheets/bootstrap.css */
  .navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

/* line 3699, app/assets/stylesheets/bootstrap.css */
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  /* line 3707, app/assets/stylesheets/bootstrap.css */
  .container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 3715, app/assets/stylesheets/bootstrap.css */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  /* line 3720, app/assets/stylesheets/bootstrap.css */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 3724, app/assets/stylesheets/bootstrap.css */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width: 768px) {
  /* line 3732, app/assets/stylesheets/bootstrap.css */
  .navbar-fixed-top,
.navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 3737, app/assets/stylesheets/bootstrap.css */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 3741, app/assets/stylesheets/bootstrap.css */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 3746, app/assets/stylesheets/bootstrap.css */
.navbar-brand {
  float: left;
  height: 20px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

/* line 3753, app/assets/stylesheets/bootstrap.css */
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

@media (min-width: 768px) {
  /* line 3758, app/assets/stylesheets/bootstrap.css */
  .navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 3763, app/assets/stylesheets/bootstrap.css */
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 3775, app/assets/stylesheets/bootstrap.css */
.navbar-toggle:focus {
  outline: none;
}

/* line 3778, app/assets/stylesheets/bootstrap.css */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

/* line 3784, app/assets/stylesheets/bootstrap.css */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  /* line 3788, app/assets/stylesheets/bootstrap.css */
  .navbar-toggle {
    display: none;
  }
}

/* line 3792, app/assets/stylesheets/bootstrap.css */
.navbar-nav {
  margin: 7.5px -15px;
}

/* line 3795, app/assets/stylesheets/bootstrap.css */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  /* line 3801, app/assets/stylesheets/bootstrap.css */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 3810, app/assets/stylesheets/bootstrap.css */
  .navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 3814, app/assets/stylesheets/bootstrap.css */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 3817, app/assets/stylesheets/bootstrap.css */
  .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  /* line 3823, app/assets/stylesheets/bootstrap.css */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 3827, app/assets/stylesheets/bootstrap.css */
  .navbar-nav > li {
    float: left;
  }
  /* line 3830, app/assets/stylesheets/bootstrap.css */
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  /* line 3834, app/assets/stylesheets/bootstrap.css */
  .navbar-nav.navbar-right:last-child {
    margin-right: -15px;
  }
}

@media (min-width: 768px) {
  /* line 3839, app/assets/stylesheets/bootstrap.css */
  .navbar-left {
    float: left !important;
  }
  /* line 3842, app/assets/stylesheets/bootstrap.css */
  .navbar-right {
    float: right !important;
  }
}

/* line 3846, app/assets/stylesheets/bootstrap.css */
.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  /* line 3858, app/assets/stylesheets/bootstrap.css */
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 3863, app/assets/stylesheets/bootstrap.css */
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 3868, app/assets/stylesheets/bootstrap.css */
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 3872, app/assets/stylesheets/bootstrap.css */
  .navbar-form .radio,
.navbar-form .checkbox {
    display: inline-block;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 3880, app/assets/stylesheets/bootstrap.css */
  .navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
  /* line 3885, app/assets/stylesheets/bootstrap.css */
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 767px) {
  /* line 3890, app/assets/stylesheets/bootstrap.css */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
}

@media (min-width: 768px) {
  /* line 3895, app/assets/stylesheets/bootstrap.css */
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    box-shadow: none;
  }
  /* line 3905, app/assets/stylesheets/bootstrap.css */
  .navbar-form.navbar-right:last-child {
    margin-right: -15px;
  }
}

/* line 3909, app/assets/stylesheets/bootstrap.css */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 3914, app/assets/stylesheets/bootstrap.css */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3918, app/assets/stylesheets/bootstrap.css */
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 3922, app/assets/stylesheets/bootstrap.css */
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 3926, app/assets/stylesheets/bootstrap.css */
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}

/* line 3930, app/assets/stylesheets/bootstrap.css */
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  /* line 3935, app/assets/stylesheets/bootstrap.css */
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
  /* line 3940, app/assets/stylesheets/bootstrap.css */
  .navbar-text.navbar-right:last-child {
    margin-right: 0;
  }
}

/* line 3944, app/assets/stylesheets/bootstrap.css */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

/* line 3948, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-brand {
  color: #777;
}

/* line 3951, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

/* line 3956, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-text {
  color: #777;
}

/* line 3959, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-nav > li > a {
  color: #777;
}

/* line 3962, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

/* line 3967, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

/* line 3973, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

/* line 3979, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-toggle {
  border-color: #ddd;
}

/* line 3982, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

/* line 3986, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

/* line 3989, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

/* line 3993, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

@media (max-width: 767px) {
  /* line 4000, app/assets/stylesheets/bootstrap.css */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 4003, app/assets/stylesheets/bootstrap.css */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  /* line 4008, app/assets/stylesheets/bootstrap.css */
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  /* line 4014, app/assets/stylesheets/bootstrap.css */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

/* line 4021, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-link {
  color: #777;
}

/* line 4024, app/assets/stylesheets/bootstrap.css */
.navbar-default .navbar-link:hover {
  color: #333;
}

/* line 4027, app/assets/stylesheets/bootstrap.css */
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}

/* line 4031, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-brand {
  color: #999;
}

/* line 4034, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

/* line 4039, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-text {
  color: #999;
}

/* line 4042, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-nav > li > a {
  color: #999;
}

/* line 4045, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

/* line 4050, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}

/* line 4056, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

/* line 4062, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-toggle {
  border-color: #333;
}

/* line 4065, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

/* line 4069, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

/* line 4072, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

/* line 4076, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}

@media (max-width: 767px) {
  /* line 4083, app/assets/stylesheets/bootstrap.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  /* line 4086, app/assets/stylesheets/bootstrap.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  /* line 4089, app/assets/stylesheets/bootstrap.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #999;
  }
  /* line 4092, app/assets/stylesheets/bootstrap.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  /* line 4097, app/assets/stylesheets/bootstrap.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  /* line 4103, app/assets/stylesheets/bootstrap.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}

/* line 4110, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-link {
  color: #999;
}

/* line 4113, app/assets/stylesheets/bootstrap.css */
.navbar-inverse .navbar-link:hover {
  color: #fff;
}

/* line 4116, app/assets/stylesheets/bootstrap.css */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* line 4123, app/assets/stylesheets/bootstrap.css */
.breadcrumb > li {
  display: inline-block;
}

/* line 4126, app/assets/stylesheets/bootstrap.css */
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

/* line 4131, app/assets/stylesheets/bootstrap.css */
.breadcrumb > .active {
  color: #999;
}

/* line 4134, app/assets/stylesheets/bootstrap.css */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

/* line 4140, app/assets/stylesheets/bootstrap.css */
.pagination > li {
  display: inline;
}

/* line 4143, app/assets/stylesheets/bootstrap.css */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #428bca;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 4155, app/assets/stylesheets/bootstrap.css */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 4161, app/assets/stylesheets/bootstrap.css */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 4166, app/assets/stylesheets/bootstrap.css */
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #2a6496;
  background-color: #eee;
  border-color: #ddd;
}

/* line 4174, app/assets/stylesheets/bootstrap.css */
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #428bca;
  border-color: #428bca;
}

/* line 4186, app/assets/stylesheets/bootstrap.css */
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

/* line 4197, app/assets/stylesheets/bootstrap.css */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}

/* line 4202, app/assets/stylesheets/bootstrap.css */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* line 4207, app/assets/stylesheets/bootstrap.css */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 4212, app/assets/stylesheets/bootstrap.css */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}

/* line 4217, app/assets/stylesheets/bootstrap.css */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 4222, app/assets/stylesheets/bootstrap.css */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 4227, app/assets/stylesheets/bootstrap.css */
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

/* line 4233, app/assets/stylesheets/bootstrap.css */
.pager li {
  display: inline;
}

/* line 4236, app/assets/stylesheets/bootstrap.css */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

/* line 4244, app/assets/stylesheets/bootstrap.css */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

/* line 4249, app/assets/stylesheets/bootstrap.css */
.pager .next > a,
.pager .next > span {
  float: right;
}

/* line 4253, app/assets/stylesheets/bootstrap.css */
.pager .previous > a,
.pager .previous > span {
  float: left;
}

/* line 4257, app/assets/stylesheets/bootstrap.css */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999;
  cursor: not-allowed;
  background-color: #fff;
}

/* line 4265, app/assets/stylesheets/bootstrap.css */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* line 4277, app/assets/stylesheets/bootstrap.css */
.label[href]:hover,
.label[href]:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 4283, app/assets/stylesheets/bootstrap.css */
.label:empty {
  display: none;
}

/* line 4286, app/assets/stylesheets/bootstrap.css */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 4290, app/assets/stylesheets/bootstrap.css */
.label-default {
  background-color: #999;
}

/* line 4293, app/assets/stylesheets/bootstrap.css */
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #808080;
}

/* line 4297, app/assets/stylesheets/bootstrap.css */
.label-primary {
  background-color: #428bca;
}

/* line 4300, app/assets/stylesheets/bootstrap.css */
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #3071a9;
}

/* line 4304, app/assets/stylesheets/bootstrap.css */
.label-success {
  background-color: #5cb85c;
}

/* line 4307, app/assets/stylesheets/bootstrap.css */
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}

/* line 4311, app/assets/stylesheets/bootstrap.css */
.label-info {
  background-color: #5bc0de;
}

/* line 4314, app/assets/stylesheets/bootstrap.css */
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 4318, app/assets/stylesheets/bootstrap.css */
.label-warning {
  background-color: #f0ad4e;
}

/* line 4321, app/assets/stylesheets/bootstrap.css */
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 4325, app/assets/stylesheets/bootstrap.css */
.label-danger {
  background-color: #d9534f;
}

/* line 4328, app/assets/stylesheets/bootstrap.css */
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 4332, app/assets/stylesheets/bootstrap.css */
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #999;
  border-radius: 10px;
}

/* line 4346, app/assets/stylesheets/bootstrap.css */
.badge:empty {
  display: none;
}

/* line 4349, app/assets/stylesheets/bootstrap.css */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 4353, app/assets/stylesheets/bootstrap.css */
.btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}

/* line 4357, app/assets/stylesheets/bootstrap.css */
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 4363, app/assets/stylesheets/bootstrap.css */
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #428bca;
  background-color: #fff;
}

/* line 4368, app/assets/stylesheets/bootstrap.css */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 4371, app/assets/stylesheets/bootstrap.css */
.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}

/* line 4377, app/assets/stylesheets/bootstrap.css */
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

/* line 4381, app/assets/stylesheets/bootstrap.css */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

/* line 4386, app/assets/stylesheets/bootstrap.css */
.container .jumbotron {
  border-radius: 6px;
}

/* line 4389, app/assets/stylesheets/bootstrap.css */
.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  /* line 4393, app/assets/stylesheets/bootstrap.css */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 4397, app/assets/stylesheets/bootstrap.css */
  .container .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  /* line 4401, app/assets/stylesheets/bootstrap.css */
  .jumbotron h1,
.jumbotron .h1 {
    font-size: 63px;
  }
}

/* line 4406, app/assets/stylesheets/bootstrap.css */
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .2s ease-in-out;
}

/* line 4417, app/assets/stylesheets/bootstrap.css */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

/* line 4425, app/assets/stylesheets/bootstrap.css */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #428bca;
}

/* line 4430, app/assets/stylesheets/bootstrap.css */
.thumbnail .caption {
  padding: 9px;
  color: #333;
}

/* line 4434, app/assets/stylesheets/bootstrap.css */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 4440, app/assets/stylesheets/bootstrap.css */
.alert h4 {
  margin-top: 0;
  color: inherit;
}

/* line 4444, app/assets/stylesheets/bootstrap.css */
.alert .alert-link {
  font-weight: bold;
}

/* line 4447, app/assets/stylesheets/bootstrap.css */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}

/* line 4451, app/assets/stylesheets/bootstrap.css */
.alert > p + p {
  margin-top: 5px;
}

/* line 4454, app/assets/stylesheets/bootstrap.css */
.alert-dismissable {
  padding-right: 35px;
}

/* line 4457, app/assets/stylesheets/bootstrap.css */
.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 4463, app/assets/stylesheets/bootstrap.css */
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 4468, app/assets/stylesheets/bootstrap.css */
.alert-success hr {
  border-top-color: #c9e2b3;
}

/* line 4471, app/assets/stylesheets/bootstrap.css */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 4474, app/assets/stylesheets/bootstrap.css */
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 4479, app/assets/stylesheets/bootstrap.css */
.alert-info hr {
  border-top-color: #a6e1ec;
}

/* line 4482, app/assets/stylesheets/bootstrap.css */
.alert-info .alert-link {
  color: #245269;
}

/* line 4485, app/assets/stylesheets/bootstrap.css */
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 4490, app/assets/stylesheets/bootstrap.css */
.alert-warning hr {
  border-top-color: #f7e1b5;
}

/* line 4493, app/assets/stylesheets/bootstrap.css */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 4496, app/assets/stylesheets/bootstrap.css */
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 4501, app/assets/stylesheets/bootstrap.css */
.alert-danger hr {
  border-top-color: #e4b9c0;
}

/* line 4504, app/assets/stylesheets/bootstrap.css */
.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;
  }
}

/* line 4523, app/assets/stylesheets/bootstrap.css */
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 4532, app/assets/stylesheets/bootstrap.css */
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #428bca;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width .6s ease;
}

/* line 4546, app/assets/stylesheets/bootstrap.css */
.progress-striped .progress-bar {
  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;
}

/* line 4551, app/assets/stylesheets/bootstrap.css */
.progress.active .progress-bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 4555, app/assets/stylesheets/bootstrap.css */
.progress-bar-success {
  background-color: #5cb85c;
}

/* line 4558, app/assets/stylesheets/bootstrap.css */
.progress-striped .progress-bar-success {
  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);
}

/* line 4562, app/assets/stylesheets/bootstrap.css */
.progress-bar-info {
  background-color: #5bc0de;
}

/* line 4565, app/assets/stylesheets/bootstrap.css */
.progress-striped .progress-bar-info {
  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);
}

/* line 4569, app/assets/stylesheets/bootstrap.css */
.progress-bar-warning {
  background-color: #f0ad4e;
}

/* line 4572, app/assets/stylesheets/bootstrap.css */
.progress-striped .progress-bar-warning {
  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);
}

/* line 4576, app/assets/stylesheets/bootstrap.css */
.progress-bar-danger {
  background-color: #d9534f;
}

/* line 4579, app/assets/stylesheets/bootstrap.css */
.progress-striped .progress-bar-danger {
  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);
}

/* line 4583, app/assets/stylesheets/bootstrap.css */
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

/* line 4588, app/assets/stylesheets/bootstrap.css */
.media,
.media .media {
  margin-top: 15px;
}

/* line 4592, app/assets/stylesheets/bootstrap.css */
.media:first-child {
  margin-top: 0;
}

/* line 4595, app/assets/stylesheets/bootstrap.css */
.media-object {
  display: block;
}

/* line 4598, app/assets/stylesheets/bootstrap.css */
.media-heading {
  margin: 0 0 5px;
}

/* line 4601, app/assets/stylesheets/bootstrap.css */
.media > .pull-left {
  margin-right: 10px;
}

/* line 4604, app/assets/stylesheets/bootstrap.css */
.media > .pull-right {
  margin-left: 10px;
}

/* line 4607, app/assets/stylesheets/bootstrap.css */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 4611, app/assets/stylesheets/bootstrap.css */
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

/* line 4615, app/assets/stylesheets/bootstrap.css */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 4623, app/assets/stylesheets/bootstrap.css */
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 4627, app/assets/stylesheets/bootstrap.css */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 4632, app/assets/stylesheets/bootstrap.css */
.list-group-item > .badge {
  float: right;
}

/* line 4635, app/assets/stylesheets/bootstrap.css */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}

/* line 4638, app/assets/stylesheets/bootstrap.css */
a.list-group-item {
  color: #555;
}

/* line 4641, app/assets/stylesheets/bootstrap.css */
a.list-group-item .list-group-item-heading {
  color: #333;
}

/* line 4644, app/assets/stylesheets/bootstrap.css */
a.list-group-item:hover,
a.list-group-item:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 4649, app/assets/stylesheets/bootstrap.css */
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #428bca;
  border-color: #428bca;
}

/* line 4657, app/assets/stylesheets/bootstrap.css */
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;
}

/* line 4662, app/assets/stylesheets/bootstrap.css */
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;
}

/* line 4667, app/assets/stylesheets/bootstrap.css */
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

/* line 4671, app/assets/stylesheets/bootstrap.css */
a.list-group-item-success {
  color: #3c763d;
}

/* line 4674, app/assets/stylesheets/bootstrap.css */
a.list-group-item-success .list-group-item-heading {
  color: inherit;
}

/* line 4677, app/assets/stylesheets/bootstrap.css */
a.list-group-item-success:hover,
a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

/* line 4682, app/assets/stylesheets/bootstrap.css */
a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

/* line 4689, app/assets/stylesheets/bootstrap.css */
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

/* line 4693, app/assets/stylesheets/bootstrap.css */
a.list-group-item-info {
  color: #31708f;
}

/* line 4696, app/assets/stylesheets/bootstrap.css */
a.list-group-item-info .list-group-item-heading {
  color: inherit;
}

/* line 4699, app/assets/stylesheets/bootstrap.css */
a.list-group-item-info:hover,
a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

/* line 4704, app/assets/stylesheets/bootstrap.css */
a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

/* line 4711, app/assets/stylesheets/bootstrap.css */
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 4715, app/assets/stylesheets/bootstrap.css */
a.list-group-item-warning {
  color: #8a6d3b;
}

/* line 4718, app/assets/stylesheets/bootstrap.css */
a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

/* line 4721, app/assets/stylesheets/bootstrap.css */
a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

/* line 4726, app/assets/stylesheets/bootstrap.css */
a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

/* line 4733, app/assets/stylesheets/bootstrap.css */
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

/* line 4737, app/assets/stylesheets/bootstrap.css */
a.list-group-item-danger {
  color: #a94442;
}

/* line 4740, app/assets/stylesheets/bootstrap.css */
a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

/* line 4743, app/assets/stylesheets/bootstrap.css */
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

/* line 4748, app/assets/stylesheets/bootstrap.css */
a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

/* line 4755, app/assets/stylesheets/bootstrap.css */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 4759, app/assets/stylesheets/bootstrap.css */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 4763, app/assets/stylesheets/bootstrap.css */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 4771, app/assets/stylesheets/bootstrap.css */
.panel-body {
  padding: 15px;
}

/* line 4774, app/assets/stylesheets/bootstrap.css */
.panel > .list-group {
  margin-bottom: 0;
}

/* line 4777, app/assets/stylesheets/bootstrap.css */
.panel > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

/* line 4781, app/assets/stylesheets/bootstrap.css */
.panel > .list-group .list-group-item:first-child {
  border-top: 0;
}

/* line 4784, app/assets/stylesheets/bootstrap.css */
.panel > .list-group .list-group-item:last-child {
  border-bottom: 0;
}

/* line 4787, app/assets/stylesheets/bootstrap.css */
.panel > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 4791, app/assets/stylesheets/bootstrap.css */
.panel > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 4795, app/assets/stylesheets/bootstrap.css */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 4798, app/assets/stylesheets/bootstrap.css */
.panel > .table,
.panel > .table-responsive > .table {
  margin-bottom: 0;
}

/* line 4802, app/assets/stylesheets/bootstrap.css */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

/* line 4812, app/assets/stylesheets/bootstrap.css */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

/* line 4822, app/assets/stylesheets/bootstrap.css */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

/* line 4832, app/assets/stylesheets/bootstrap.css */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

/* line 4842, app/assets/stylesheets/bootstrap.css */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
  border-top: 1px solid #ddd;
}

/* line 4846, app/assets/stylesheets/bootstrap.css */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

/* line 4850, app/assets/stylesheets/bootstrap.css */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

/* line 4854, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 4868, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 4882, app/assets/stylesheets/bootstrap.css */
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,
.panel > .table-bordered > tfoot > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:first-child > th,
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tfoot > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:first-child > td {
  border-top: 0;
}

/* line 4896, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 4910, app/assets/stylesheets/bootstrap.css */
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

/* line 4914, app/assets/stylesheets/bootstrap.css */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 4920, app/assets/stylesheets/bootstrap.css */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 4923, app/assets/stylesheets/bootstrap.css */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

/* line 4929, app/assets/stylesheets/bootstrap.css */
.panel-title > a {
  color: inherit;
}

/* line 4932, app/assets/stylesheets/bootstrap.css */
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 4939, app/assets/stylesheets/bootstrap.css */
.panel-group {
  margin-bottom: 20px;
}

/* line 4942, app/assets/stylesheets/bootstrap.css */
.panel-group .panel {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 4px;
}

/* line 4947, app/assets/stylesheets/bootstrap.css */
.panel-group .panel + .panel {
  margin-top: 5px;
}

/* line 4950, app/assets/stylesheets/bootstrap.css */
.panel-group .panel-heading {
  border-bottom: 0;
}

/* line 4953, app/assets/stylesheets/bootstrap.css */
.panel-group .panel-heading + .panel-collapse .panel-body {
  border-top: 1px solid #ddd;
}

/* line 4956, app/assets/stylesheets/bootstrap.css */
.panel-group .panel-footer {
  border-top: 0;
}

/* line 4959, app/assets/stylesheets/bootstrap.css */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

/* line 4962, app/assets/stylesheets/bootstrap.css */
.panel-default {
  border-color: #ddd;
}

/* line 4965, app/assets/stylesheets/bootstrap.css */
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

/* line 4970, app/assets/stylesheets/bootstrap.css */
.panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ddd;
}

/* line 4973, app/assets/stylesheets/bootstrap.css */
.panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ddd;
}

/* line 4976, app/assets/stylesheets/bootstrap.css */
.panel-primary {
  border-color: #428bca;
}

/* line 4979, app/assets/stylesheets/bootstrap.css */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #428bca;
  border-color: #428bca;
}

/* line 4984, app/assets/stylesheets/bootstrap.css */
.panel-primary > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #428bca;
}

/* line 4987, app/assets/stylesheets/bootstrap.css */
.panel-primary > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #428bca;
}

/* line 4990, app/assets/stylesheets/bootstrap.css */
.panel-success {
  border-color: #d6e9c6;
}

/* line 4993, app/assets/stylesheets/bootstrap.css */
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 4998, app/assets/stylesheets/bootstrap.css */
.panel-success > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #d6e9c6;
}

/* line 5001, app/assets/stylesheets/bootstrap.css */
.panel-success > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 5004, app/assets/stylesheets/bootstrap.css */
.panel-info {
  border-color: #bce8f1;
}

/* line 5007, app/assets/stylesheets/bootstrap.css */
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 5012, app/assets/stylesheets/bootstrap.css */
.panel-info > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #bce8f1;
}

/* line 5015, app/assets/stylesheets/bootstrap.css */
.panel-info > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 5018, app/assets/stylesheets/bootstrap.css */
.panel-warning {
  border-color: #faebcc;
}

/* line 5021, app/assets/stylesheets/bootstrap.css */
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 5026, app/assets/stylesheets/bootstrap.css */
.panel-warning > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #faebcc;
}

/* line 5029, app/assets/stylesheets/bootstrap.css */
.panel-warning > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #faebcc;
}

/* line 5032, app/assets/stylesheets/bootstrap.css */
.panel-danger {
  border-color: #ebccd1;
}

/* line 5035, app/assets/stylesheets/bootstrap.css */
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 5040, app/assets/stylesheets/bootstrap.css */
.panel-danger > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ebccd1;
}

/* line 5043, app/assets/stylesheets/bootstrap.css */
.panel-danger > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 5046, app/assets/stylesheets/bootstrap.css */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 5056, app/assets/stylesheets/bootstrap.css */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 5060, app/assets/stylesheets/bootstrap.css */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 5064, app/assets/stylesheets/bootstrap.css */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 5068, app/assets/stylesheets/bootstrap.css */
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}

/* line 5078, app/assets/stylesheets/bootstrap.css */
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}

/* line 5086, app/assets/stylesheets/bootstrap.css */
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

/* line 5093, app/assets/stylesheets/bootstrap.css */
.modal-open {
  overflow: hidden;
}

/* line 5096, app/assets/stylesheets/bootstrap.css */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

/* line 5109, app/assets/stylesheets/bootstrap.css */
.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translate(0, -25%);
}

/* line 5118, app/assets/stylesheets/bootstrap.css */
.modal.in .modal-dialog {
  transform: translate(0, 0);
}

/* line 5123, app/assets/stylesheets/bootstrap.css */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 5128, app/assets/stylesheets/bootstrap.css */
.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: none;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

/* line 5139, app/assets/stylesheets/bootstrap.css */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 5148, app/assets/stylesheets/bootstrap.css */
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 5152, app/assets/stylesheets/bootstrap.css */
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}

/* line 5156, app/assets/stylesheets/bootstrap.css */
.modal-header {
  min-height: 16.428571429px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

/* line 5161, app/assets/stylesheets/bootstrap.css */
.modal-header .close {
  margin-top: -2px;
}

/* line 5164, app/assets/stylesheets/bootstrap.css */
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

/* line 5168, app/assets/stylesheets/bootstrap.css */
.modal-body {
  position: relative;
  padding: 20px;
}

/* line 5172, app/assets/stylesheets/bootstrap.css */
.modal-footer {
  padding: 19px 20px 20px;
  margin-top: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

/* line 5178, app/assets/stylesheets/bootstrap.css */
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

/* line 5182, app/assets/stylesheets/bootstrap.css */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* line 5185, app/assets/stylesheets/bootstrap.css */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media (min-width: 768px) {
  /* line 5189, app/assets/stylesheets/bootstrap.css */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 5193, app/assets/stylesheets/bootstrap.css */
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  /* line 5197, app/assets/stylesheets/bootstrap.css */
  .modal-sm {
    width: 300px;
  }
  /* line 5200, app/assets/stylesheets/bootstrap.css */
  .modal-lg {
    width: 900px;
  }
}

/* line 5204, app/assets/stylesheets/bootstrap.css */
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  font-size: 12px;
  line-height: 1.4;
  visibility: visible;
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 5214, app/assets/stylesheets/bootstrap.css */
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}

/* line 5218, app/assets/stylesheets/bootstrap.css */
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

/* line 5222, app/assets/stylesheets/bootstrap.css */
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

/* line 5226, app/assets/stylesheets/bootstrap.css */
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

/* line 5230, app/assets/stylesheets/bootstrap.css */
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

/* line 5234, app/assets/stylesheets/bootstrap.css */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}

/* line 5243, app/assets/stylesheets/bootstrap.css */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 5250, app/assets/stylesheets/bootstrap.css */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 5257, app/assets/stylesheets/bootstrap.css */
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 5263, app/assets/stylesheets/bootstrap.css */
.tooltip.top-right .tooltip-arrow {
  right: 5px;
  bottom: 0;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 5269, app/assets/stylesheets/bootstrap.css */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

/* line 5276, app/assets/stylesheets/bootstrap.css */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

/* line 5283, app/assets/stylesheets/bootstrap.css */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 5290, app/assets/stylesheets/bootstrap.css */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 5296, app/assets/stylesheets/bootstrap.css */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 5302, app/assets/stylesheets/bootstrap.css */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* line 5320, app/assets/stylesheets/bootstrap.css */
.popover.top {
  margin-top: -10px;
}

/* line 5323, app/assets/stylesheets/bootstrap.css */
.popover.right {
  margin-left: 10px;
}

/* line 5326, app/assets/stylesheets/bootstrap.css */
.popover.bottom {
  margin-top: 10px;
}

/* line 5329, app/assets/stylesheets/bootstrap.css */
.popover.left {
  margin-left: -10px;
}

/* line 5332, app/assets/stylesheets/bootstrap.css */
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 5342, app/assets/stylesheets/bootstrap.css */
.popover-content {
  padding: 9px 14px;
}

/* line 5345, app/assets/stylesheets/bootstrap.css */
.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 5354, app/assets/stylesheets/bootstrap.css */
.popover .arrow {
  border-width: 11px;
}

/* line 5357, app/assets/stylesheets/bootstrap.css */
.popover .arrow:after {
  content: "";
  border-width: 10px;
}

/* line 5361, app/assets/stylesheets/bootstrap.css */
.popover.top .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

/* line 5369, app/assets/stylesheets/bootstrap.css */
.popover.top .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

/* line 5376, app/assets/stylesheets/bootstrap.css */
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}

/* line 5384, app/assets/stylesheets/bootstrap.css */
.popover.right .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}

/* line 5391, app/assets/stylesheets/bootstrap.css */
.popover.bottom .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* line 5399, app/assets/stylesheets/bootstrap.css */
.popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

/* line 5406, app/assets/stylesheets/bootstrap.css */
.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 5414, app/assets/stylesheets/bootstrap.css */
.popover.left .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

/* line 5421, app/assets/stylesheets/bootstrap.css */
.carousel {
  position: relative;
}

/* line 5424, app/assets/stylesheets/bootstrap.css */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 5429, app/assets/stylesheets/bootstrap.css */
.carousel-inner > .item {
  position: relative;
  display: none;
  transition: .6s ease-in-out left;
}

/* line 5435, app/assets/stylesheets/bootstrap.css */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

/* line 5442, app/assets/stylesheets/bootstrap.css */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

/* line 5447, app/assets/stylesheets/bootstrap.css */
.carousel-inner > .active {
  left: 0;
}

/* line 5450, app/assets/stylesheets/bootstrap.css */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 5456, app/assets/stylesheets/bootstrap.css */
.carousel-inner > .next {
  left: 100%;
}

/* line 5459, app/assets/stylesheets/bootstrap.css */
.carousel-inner > .prev {
  left: -100%;
}

/* line 5462, app/assets/stylesheets/bootstrap.css */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

/* line 5466, app/assets/stylesheets/bootstrap.css */
.carousel-inner > .active.left {
  left: -100%;
}

/* line 5469, app/assets/stylesheets/bootstrap.css */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 5472, app/assets/stylesheets/bootstrap.css */
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  filter: alpha(opacity=50);
  opacity: .5;
}

/* line 5485, app/assets/stylesheets/bootstrap.css */
.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}

/* line 5491, app/assets/stylesheets/bootstrap.css */
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}

/* line 5499, app/assets/stylesheets/bootstrap.css */
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: none;
  opacity: .9;
}

/* line 5507, app/assets/stylesheets/bootstrap.css */
.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;
}

/* line 5516, app/assets/stylesheets/bootstrap.css */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
}

/* line 5520, app/assets/stylesheets/bootstrap.css */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
}

/* line 5524, app/assets/stylesheets/bootstrap.css */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  font-family: serif;
}

/* line 5532, app/assets/stylesheets/bootstrap.css */
.carousel-control .icon-prev:before {
  content: '\2039';
}

/* line 5535, app/assets/stylesheets/bootstrap.css */
.carousel-control .icon-next:before {
  content: '\203a';
}

/* line 5538, app/assets/stylesheets/bootstrap.css */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

/* line 5549, app/assets/stylesheets/bootstrap.css */
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}

/* line 5561, app/assets/stylesheets/bootstrap.css */
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

/* line 5567, app/assets/stylesheets/bootstrap.css */
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* line 5579, app/assets/stylesheets/bootstrap.css */
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  /* line 5583, app/assets/stylesheets/bootstrap.css */
  .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;
  }
  /* line 5593, app/assets/stylesheets/bootstrap.css */
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  /* line 5598, app/assets/stylesheets/bootstrap.css */
  .carousel-indicators {
    bottom: 20px;
  }
}

/* line 5602, app/assets/stylesheets/bootstrap.css */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

/* line 5633, app/assets/stylesheets/bootstrap.css */
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both;
}

/* line 5649, app/assets/stylesheets/bootstrap.css */
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* line 5654, app/assets/stylesheets/bootstrap.css */
.pull-right {
  float: right !important;
}

/* line 5657, app/assets/stylesheets/bootstrap.css */
.pull-left {
  float: left !important;
}

/* line 5660, app/assets/stylesheets/bootstrap.css */
.hide {
  display: none !important;
}

/* line 5663, app/assets/stylesheets/bootstrap.css */
.show {
  display: block !important;
}

/* line 5666, app/assets/stylesheets/bootstrap.css */
.invisible {
  visibility: hidden;
}

/* line 5669, app/assets/stylesheets/bootstrap.css */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 5676, app/assets/stylesheets/bootstrap.css */
.hidden {
  display: none !important;
  visibility: hidden !important;
}

/* line 5680, app/assets/stylesheets/bootstrap.css */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

/* line 5686, app/assets/stylesheets/bootstrap.css */
.visible-xs,
tr.visible-xs,
th.visible-xs,
td.visible-xs {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 5693, app/assets/stylesheets/bootstrap.css */
  .visible-xs {
    display: block !important;
  }
  /* line 5696, app/assets/stylesheets/bootstrap.css */
  table.visible-xs {
    display: table;
  }
  /* line 5699, app/assets/stylesheets/bootstrap.css */
  tr.visible-xs {
    display: table-row !important;
  }
  /* line 5702, app/assets/stylesheets/bootstrap.css */
  th.visible-xs,
td.visible-xs {
    display: table-cell !important;
  }
}

/* line 5707, app/assets/stylesheets/bootstrap.css */
.visible-sm,
tr.visible-sm,
th.visible-sm,
td.visible-sm {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 5714, app/assets/stylesheets/bootstrap.css */
  .visible-sm {
    display: block !important;
  }
  /* line 5717, app/assets/stylesheets/bootstrap.css */
  table.visible-sm {
    display: table;
  }
  /* line 5720, app/assets/stylesheets/bootstrap.css */
  tr.visible-sm {
    display: table-row !important;
  }
  /* line 5723, app/assets/stylesheets/bootstrap.css */
  th.visible-sm,
td.visible-sm {
    display: table-cell !important;
  }
}

/* line 5728, app/assets/stylesheets/bootstrap.css */
.visible-md,
tr.visible-md,
th.visible-md,
td.visible-md {
  display: none !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 5735, app/assets/stylesheets/bootstrap.css */
  .visible-md {
    display: block !important;
  }
  /* line 5738, app/assets/stylesheets/bootstrap.css */
  table.visible-md {
    display: table;
  }
  /* line 5741, app/assets/stylesheets/bootstrap.css */
  tr.visible-md {
    display: table-row !important;
  }
  /* line 5744, app/assets/stylesheets/bootstrap.css */
  th.visible-md,
td.visible-md {
    display: table-cell !important;
  }
}

/* line 5749, app/assets/stylesheets/bootstrap.css */
.visible-lg,
tr.visible-lg,
th.visible-lg,
td.visible-lg {
  display: none !important;
}

@media (min-width: 1200px) {
  /* line 5756, app/assets/stylesheets/bootstrap.css */
  .visible-lg {
    display: block !important;
  }
  /* line 5759, app/assets/stylesheets/bootstrap.css */
  table.visible-lg {
    display: table;
  }
  /* line 5762, app/assets/stylesheets/bootstrap.css */
  tr.visible-lg {
    display: table-row !important;
  }
  /* line 5765, app/assets/stylesheets/bootstrap.css */
  th.visible-lg,
td.visible-lg {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  /* line 5771, app/assets/stylesheets/bootstrap.css */
  .hidden-xs,
tr.hidden-xs,
th.hidden-xs,
td.hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 5779, app/assets/stylesheets/bootstrap.css */
  .hidden-sm,
tr.hidden-sm,
th.hidden-sm,
td.hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 5787, app/assets/stylesheets/bootstrap.css */
  .hidden-md,
tr.hidden-md,
th.hidden-md,
td.hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 5795, app/assets/stylesheets/bootstrap.css */
  .hidden-lg,
tr.hidden-lg,
th.hidden-lg,
td.hidden-lg {
    display: none !important;
  }
}

/* line 5802, app/assets/stylesheets/bootstrap.css */
.visible-print,
tr.visible-print,
th.visible-print,
td.visible-print {
  display: none !important;
}

@media print {
  /* line 5809, app/assets/stylesheets/bootstrap.css */
  .visible-print {
    display: block !important;
  }
  /* line 5812, app/assets/stylesheets/bootstrap.css */
  table.visible-print {
    display: table;
  }
  /* line 5815, app/assets/stylesheets/bootstrap.css */
  tr.visible-print {
    display: table-row !important;
  }
  /* line 5818, app/assets/stylesheets/bootstrap.css */
  th.visible-print,
td.visible-print {
    display: table-cell !important;
  }
}

@media print {
  /* line 5824, app/assets/stylesheets/bootstrap.css */
  .hidden-print,
tr.hidden-print,
th.hidden-print,
td.hidden-print {
    display: none !important;
  }
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(/assets/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot);
  src: url(/assets/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot?#iefix) format("embedded-opentype"), url(/assets/fontawesome-webfont-2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe.woff2) format("woff2"), url(/assets/fontawesome-webfont-ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07.woff) format("woff"), url(/assets/fontawesome-webfont-aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8.ttf) format("truetype"), url(/assets/fontawesome-webfont-ad6157926c1622ba4e1d03d478f1541368524bfc46f51e42fe0d945f7ef323e4.svg#fontawesomeregular) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 19, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
/* line 28, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

/* line 33, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-2x {
  font-size: 2em;
}

/* line 36, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-3x {
  font-size: 3em;
}

/* line 39, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-4x {
  font-size: 4em;
}

/* line 42, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-5x {
  font-size: 5em;
}

/* line 45, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

/* line 49, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

/* line 54, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ul > li {
  position: relative;
}

/* line 57, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

/* line 64, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-li.fa-lg {
  left: -1.85714286em;
}

/* line 67, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}

/* line 72, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pull-left {
  float: left;
}

/* line 75, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pull-right {
  float: right;
}

/* line 78, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.fa-pull-left {
  margin-right: .3em;
}

/* line 81, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
/* line 85, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.pull-right {
  float: right;
}

/* line 88, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.pull-left {
  float: left;
}

/* line 91, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.pull-left {
  margin-right: .3em;
}

/* line 94, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.pull-right {
  margin-left: .3em;
}

/* line 97, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

/* line 101, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

/* line 125, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

/* line 131, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

/* line 137, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

/* line 143, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

/* line 149, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

/* line 155, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

/* line 162, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

/* line 170, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 177, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-1x {
  line-height: inherit;
}

/* line 180, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-2x {
  font-size: 2em;
}

/* line 183, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
/* line 188, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-glass:before {
  content: "\f000";
}

/* line 191, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-music:before {
  content: "\f001";
}

/* line 194, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-search:before {
  content: "\f002";
}

/* line 197, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-o:before {
  content: "\f003";
}

/* line 200, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-heart:before {
  content: "\f004";
}

/* line 203, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star:before {
  content: "\f005";
}

/* line 206, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star-o:before {
  content: "\f006";
}

/* line 209, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user:before {
  content: "\f007";
}

/* line 212, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-film:before {
  content: "\f008";
}

/* line 215, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-th-large:before {
  content: "\f009";
}

/* line 218, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-th:before {
  content: "\f00a";
}

/* line 221, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-th-list:before {
  content: "\f00b";
}

/* line 224, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check:before {
  content: "\f00c";
}

/* line 227, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

/* line 232, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-search-plus:before {
  content: "\f00e";
}

/* line 235, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-search-minus:before {
  content: "\f010";
}

/* line 238, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-power-off:before {
  content: "\f011";
}

/* line 241, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-signal:before {
  content: "\f012";
}

/* line 244, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

/* line 248, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trash-o:before {
  content: "\f014";
}

/* line 251, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-home:before {
  content: "\f015";
}

/* line 254, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-o:before {
  content: "\f016";
}

/* line 257, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-clock-o:before {
  content: "\f017";
}

/* line 260, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-road:before {
  content: "\f018";
}

/* line 263, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-download:before {
  content: "\f019";
}

/* line 266, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

/* line 269, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

/* line 272, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-inbox:before {
  content: "\f01c";
}

/* line 275, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-play-circle-o:before {
  content: "\f01d";
}

/* line 278, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

/* line 282, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-refresh:before {
  content: "\f021";
}

/* line 285, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list-alt:before {
  content: "\f022";
}

/* line 288, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lock:before {
  content: "\f023";
}

/* line 291, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flag:before {
  content: "\f024";
}

/* line 294, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-headphones:before {
  content: "\f025";
}

/* line 297, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-off:before {
  content: "\f026";
}

/* line 300, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-down:before {
  content: "\f027";
}

/* line 303, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-up:before {
  content: "\f028";
}

/* line 306, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-qrcode:before {
  content: "\f029";
}

/* line 309, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-barcode:before {
  content: "\f02a";
}

/* line 312, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tag:before {
  content: "\f02b";
}

/* line 315, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tags:before {
  content: "\f02c";
}

/* line 318, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-book:before {
  content: "\f02d";
}

/* line 321, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bookmark:before {
  content: "\f02e";
}

/* line 324, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-print:before {
  content: "\f02f";
}

/* line 327, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-camera:before {
  content: "\f030";
}

/* line 330, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-font:before {
  content: "\f031";
}

/* line 333, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bold:before {
  content: "\f032";
}

/* line 336, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-italic:before {
  content: "\f033";
}

/* line 339, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-text-height:before {
  content: "\f034";
}

/* line 342, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-text-width:before {
  content: "\f035";
}

/* line 345, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-left:before {
  content: "\f036";
}

/* line 348, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-center:before {
  content: "\f037";
}

/* line 351, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-right:before {
  content: "\f038";
}

/* line 354, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-justify:before {
  content: "\f039";
}

/* line 357, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list:before {
  content: "\f03a";
}

/* line 360, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

/* line 364, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-indent:before {
  content: "\f03c";
}

/* line 367, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-video-camera:before {
  content: "\f03d";
}

/* line 370, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

/* line 375, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pencil:before {
  content: "\f040";
}

/* line 378, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-marker:before {
  content: "\f041";
}

/* line 381, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-adjust:before {
  content: "\f042";
}

/* line 384, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tint:before {
  content: "\f043";
}

/* line 387, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

/* line 391, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-square-o:before {
  content: "\f045";
}

/* line 394, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-square-o:before {
  content: "\f046";
}

/* line 397, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows:before {
  content: "\f047";
}

/* line 400, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-step-backward:before {
  content: "\f048";
}

/* line 403, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fast-backward:before {
  content: "\f049";
}

/* line 406, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-backward:before {
  content: "\f04a";
}

/* line 409, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-play:before {
  content: "\f04b";
}

/* line 412, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pause:before {
  content: "\f04c";
}

/* line 415, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stop:before {
  content: "\f04d";
}

/* line 418, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-forward:before {
  content: "\f04e";
}

/* line 421, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fast-forward:before {
  content: "\f050";
}

/* line 424, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-step-forward:before {
  content: "\f051";
}

/* line 427, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eject:before {
  content: "\f052";
}

/* line 430, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-left:before {
  content: "\f053";
}

/* line 433, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-right:before {
  content: "\f054";
}

/* line 436, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus-circle:before {
  content: "\f055";
}

/* line 439, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus-circle:before {
  content: "\f056";
}

/* line 442, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-circle:before {
  content: "\f057";
}

/* line 445, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-circle:before {
  content: "\f058";
}

/* line 448, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-question-circle:before {
  content: "\f059";
}

/* line 451, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-info-circle:before {
  content: "\f05a";
}

/* line 454, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-crosshairs:before {
  content: "\f05b";
}

/* line 457, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-circle-o:before {
  content: "\f05c";
}

/* line 460, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-circle-o:before {
  content: "\f05d";
}

/* line 463, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ban:before {
  content: "\f05e";
}

/* line 466, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-left:before {
  content: "\f060";
}

/* line 469, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-right:before {
  content: "\f061";
}

/* line 472, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-up:before {
  content: "\f062";
}

/* line 475, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-down:before {
  content: "\f063";
}

/* line 478, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

/* line 482, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-expand:before {
  content: "\f065";
}

/* line 485, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-compress:before {
  content: "\f066";
}

/* line 488, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus:before {
  content: "\f067";
}

/* line 491, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus:before {
  content: "\f068";
}

/* line 494, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-asterisk:before {
  content: "\f069";
}

/* line 497, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-exclamation-circle:before {
  content: "\f06a";
}

/* line 500, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gift:before {
  content: "\f06b";
}

/* line 503, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-leaf:before {
  content: "\f06c";
}

/* line 506, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fire:before {
  content: "\f06d";
}

/* line 509, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eye:before {
  content: "\f06e";
}

/* line 512, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eye-slash:before {
  content: "\f070";
}

/* line 515, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

/* line 519, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plane:before {
  content: "\f072";
}

/* line 522, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar:before {
  content: "\f073";
}

/* line 525, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-random:before {
  content: "\f074";
}

/* line 528, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comment:before {
  content: "\f075";
}

/* line 531, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-magnet:before {
  content: "\f076";
}

/* line 534, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-up:before {
  content: "\f077";
}

/* line 537, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-down:before {
  content: "\f078";
}

/* line 540, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-retweet:before {
  content: "\f079";
}

/* line 543, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shopping-cart:before {
  content: "\f07a";
}

/* line 546, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder:before {
  content: "\f07b";
}

/* line 549, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder-open:before {
  content: "\f07c";
}

/* line 552, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows-v:before {
  content: "\f07d";
}

/* line 555, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows-h:before {
  content: "\f07e";
}

/* line 558, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

/* line 562, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-twitter-square:before {
  content: "\f081";
}

/* line 565, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-facebook-square:before {
  content: "\f082";
}

/* line 568, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-camera-retro:before {
  content: "\f083";
}

/* line 571, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-key:before {
  content: "\f084";
}

/* line 574, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

/* line 578, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comments:before {
  content: "\f086";
}

/* line 581, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-o-up:before {
  content: "\f087";
}

/* line 584, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-o-down:before {
  content: "\f088";
}

/* line 587, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star-half:before {
  content: "\f089";
}

/* line 590, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-heart-o:before {
  content: "\f08a";
}

/* line 593, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sign-out:before {
  content: "\f08b";
}

/* line 596, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linkedin-square:before {
  content: "\f08c";
}

/* line 599, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumb-tack:before {
  content: "\f08d";
}

/* line 602, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-external-link:before {
  content: "\f08e";
}

/* line 605, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sign-in:before {
  content: "\f090";
}

/* line 608, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trophy:before {
  content: "\f091";
}

/* line 611, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-github-square:before {
  content: "\f092";
}

/* line 614, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-upload:before {
  content: "\f093";
}

/* line 617, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lemon-o:before {
  content: "\f094";
}

/* line 620, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-phone:before {
  content: "\f095";
}

/* line 623, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-square-o:before {
  content: "\f096";
}

/* line 626, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bookmark-o:before {
  content: "\f097";
}

/* line 629, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-phone-square:before {
  content: "\f098";
}

/* line 632, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-twitter:before {
  content: "\f099";
}

/* line 635, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

/* line 639, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-github:before {
  content: "\f09b";
}

/* line 642, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unlock:before {
  content: "\f09c";
}

/* line 645, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-credit-card:before {
  content: "\f09d";
}

/* line 648, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

/* line 652, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hdd-o:before {
  content: "\f0a0";
}

/* line 655, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bullhorn:before {
  content: "\f0a1";
}

/* line 658, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell:before {
  content: "\f0f3";
}

/* line 661, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-certificate:before {
  content: "\f0a3";
}

/* line 664, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-right:before {
  content: "\f0a4";
}

/* line 667, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-left:before {
  content: "\f0a5";
}

/* line 670, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-up:before {
  content: "\f0a6";
}

/* line 673, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-down:before {
  content: "\f0a7";
}

/* line 676, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-left:before {
  content: "\f0a8";
}

/* line 679, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-right:before {
  content: "\f0a9";
}

/* line 682, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-up:before {
  content: "\f0aa";
}

/* line 685, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-down:before {
  content: "\f0ab";
}

/* line 688, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-globe:before {
  content: "\f0ac";
}

/* line 691, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wrench:before {
  content: "\f0ad";
}

/* line 694, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tasks:before {
  content: "\f0ae";
}

/* line 697, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-filter:before {
  content: "\f0b0";
}

/* line 700, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-briefcase:before {
  content: "\f0b1";
}

/* line 703, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows-alt:before {
  content: "\f0b2";
}

/* line 706, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

/* line 710, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

/* line 714, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cloud:before {
  content: "\f0c2";
}

/* line 717, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flask:before {
  content: "\f0c3";
}

/* line 720, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

/* line 724, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

/* line 728, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paperclip:before {
  content: "\f0c6";
}

/* line 731, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

/* line 735, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-square:before {
  content: "\f0c8";
}

/* line 738, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

/* line 743, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list-ul:before {
  content: "\f0ca";
}

/* line 746, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list-ol:before {
  content: "\f0cb";
}

/* line 749, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-strikethrough:before {
  content: "\f0cc";
}

/* line 752, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-underline:before {
  content: "\f0cd";
}

/* line 755, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-table:before {
  content: "\f0ce";
}

/* line 758, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-magic:before {
  content: "\f0d0";
}

/* line 761, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-truck:before {
  content: "\f0d1";
}

/* line 764, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pinterest:before {
  content: "\f0d2";
}

/* line 767, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pinterest-square:before {
  content: "\f0d3";
}

/* line 770, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-plus-square:before {
  content: "\f0d4";
}

/* line 773, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-plus:before {
  content: "\f0d5";
}

/* line 776, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-money:before {
  content: "\f0d6";
}

/* line 779, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-down:before {
  content: "\f0d7";
}

/* line 782, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-up:before {
  content: "\f0d8";
}

/* line 785, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-left:before {
  content: "\f0d9";
}

/* line 788, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-right:before {
  content: "\f0da";
}

/* line 791, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-columns:before {
  content: "\f0db";
}

/* line 794, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

/* line 798, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

/* line 802, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

/* line 806, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope:before {
  content: "\f0e0";
}

/* line 809, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linkedin:before {
  content: "\f0e1";
}

/* line 812, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

/* line 816, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

/* line 820, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

/* line 824, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comment-o:before {
  content: "\f0e5";
}

/* line 827, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comments-o:before {
  content: "\f0e6";
}

/* line 830, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

/* line 834, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sitemap:before {
  content: "\f0e8";
}

/* line 837, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-umbrella:before {
  content: "\f0e9";
}

/* line 840, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

/* line 844, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lightbulb-o:before {
  content: "\f0eb";
}

/* line 847, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-exchange:before {
  content: "\f0ec";
}

/* line 850, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cloud-download:before {
  content: "\f0ed";
}

/* line 853, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cloud-upload:before {
  content: "\f0ee";
}

/* line 856, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-md:before {
  content: "\f0f0";
}

/* line 859, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stethoscope:before {
  content: "\f0f1";
}

/* line 862, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-suitcase:before {
  content: "\f0f2";
}

/* line 865, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell-o:before {
  content: "\f0a2";
}

/* line 868, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-coffee:before {
  content: "\f0f4";
}

/* line 871, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cutlery:before {
  content: "\f0f5";
}

/* line 874, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-text-o:before {
  content: "\f0f6";
}

/* line 877, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-building-o:before {
  content: "\f0f7";
}

/* line 880, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hospital-o:before {
  content: "\f0f8";
}

/* line 883, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ambulance:before {
  content: "\f0f9";
}

/* line 886, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-medkit:before {
  content: "\f0fa";
}

/* line 889, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fighter-jet:before {
  content: "\f0fb";
}

/* line 892, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-beer:before {
  content: "\f0fc";
}

/* line 895, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-h-square:before {
  content: "\f0fd";
}

/* line 898, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus-square:before {
  content: "\f0fe";
}

/* line 901, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-left:before {
  content: "\f100";
}

/* line 904, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-right:before {
  content: "\f101";
}

/* line 907, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-up:before {
  content: "\f102";
}

/* line 910, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-down:before {
  content: "\f103";
}

/* line 913, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-left:before {
  content: "\f104";
}

/* line 916, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-right:before {
  content: "\f105";
}

/* line 919, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-up:before {
  content: "\f106";
}

/* line 922, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-down:before {
  content: "\f107";
}

/* line 925, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-desktop:before {
  content: "\f108";
}

/* line 928, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-laptop:before {
  content: "\f109";
}

/* line 931, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tablet:before {
  content: "\f10a";
}

/* line 934, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

/* line 938, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle-o:before {
  content: "\f10c";
}

/* line 941, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-quote-left:before {
  content: "\f10d";
}

/* line 944, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-quote-right:before {
  content: "\f10e";
}

/* line 947, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spinner:before {
  content: "\f110";
}

/* line 950, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle:before {
  content: "\f111";
}

/* line 953, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

/* line 957, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-github-alt:before {
  content: "\f113";
}

/* line 960, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder-o:before {
  content: "\f114";
}

/* line 963, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder-open-o:before {
  content: "\f115";
}

/* line 966, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-smile-o:before {
  content: "\f118";
}

/* line 969, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-frown-o:before {
  content: "\f119";
}

/* line 972, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-meh-o:before {
  content: "\f11a";
}

/* line 975, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gamepad:before {
  content: "\f11b";
}

/* line 978, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-keyboard-o:before {
  content: "\f11c";
}

/* line 981, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flag-o:before {
  content: "\f11d";
}

/* line 984, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flag-checkered:before {
  content: "\f11e";
}

/* line 987, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-terminal:before {
  content: "\f120";
}

/* line 990, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-code:before {
  content: "\f121";
}

/* line 993, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

/* line 997, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

/* line 1002, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-location-arrow:before {
  content: "\f124";
}

/* line 1005, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-crop:before {
  content: "\f125";
}

/* line 1008, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-code-fork:before {
  content: "\f126";
}

/* line 1011, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

/* line 1015, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-question:before {
  content: "\f128";
}

/* line 1018, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-info:before {
  content: "\f129";
}

/* line 1021, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-exclamation:before {
  content: "\f12a";
}

/* line 1024, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-superscript:before {
  content: "\f12b";
}

/* line 1027, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-subscript:before {
  content: "\f12c";
}

/* line 1030, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eraser:before {
  content: "\f12d";
}

/* line 1033, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-puzzle-piece:before {
  content: "\f12e";
}

/* line 1036, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-microphone:before {
  content: "\f130";
}

/* line 1039, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-microphone-slash:before {
  content: "\f131";
}

/* line 1042, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shield:before {
  content: "\f132";
}

/* line 1045, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-o:before {
  content: "\f133";
}

/* line 1048, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fire-extinguisher:before {
  content: "\f134";
}

/* line 1051, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rocket:before {
  content: "\f135";
}

/* line 1054, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-maxcdn:before {
  content: "\f136";
}

/* line 1057, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-left:before {
  content: "\f137";
}

/* line 1060, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-right:before {
  content: "\f138";
}

/* line 1063, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-up:before {
  content: "\f139";
}

/* line 1066, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-down:before {
  content: "\f13a";
}

/* line 1069, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-html5:before {
  content: "\f13b";
}

/* line 1072, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-css3:before {
  content: "\f13c";
}

/* line 1075, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-anchor:before {
  content: "\f13d";
}

/* line 1078, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unlock-alt:before {
  content: "\f13e";
}

/* line 1081, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bullseye:before {
  content: "\f140";
}

/* line 1084, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ellipsis-h:before {
  content: "\f141";
}

/* line 1087, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ellipsis-v:before {
  content: "\f142";
}

/* line 1090, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rss-square:before {
  content: "\f143";
}

/* line 1093, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-play-circle:before {
  content: "\f144";
}

/* line 1096, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ticket:before {
  content: "\f145";
}

/* line 1099, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus-square:before {
  content: "\f146";
}

/* line 1102, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus-square-o:before {
  content: "\f147";
}

/* line 1105, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-level-up:before {
  content: "\f148";
}

/* line 1108, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-level-down:before {
  content: "\f149";
}

/* line 1111, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-square:before {
  content: "\f14a";
}

/* line 1114, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pencil-square:before {
  content: "\f14b";
}

/* line 1117, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-external-link-square:before {
  content: "\f14c";
}

/* line 1120, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-square:before {
  content: "\f14d";
}

/* line 1123, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-compass:before {
  content: "\f14e";
}

/* line 1126, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

/* line 1130, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

/* line 1134, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

/* line 1138, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

/* line 1142, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gbp:before {
  content: "\f154";
}

/* line 1145, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

/* line 1149, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

/* line 1153, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

/* line 1159, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

/* line 1164, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

/* line 1168, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

/* line 1172, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file:before {
  content: "\f15b";
}

/* line 1175, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-text:before {
  content: "\f15c";
}

/* line 1178, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-alpha-asc:before {
  content: "\f15d";
}

/* line 1181, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-alpha-desc:before {
  content: "\f15e";
}

/* line 1184, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-amount-asc:before {
  content: "\f160";
}

/* line 1187, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-amount-desc:before {
  content: "\f161";
}

/* line 1190, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-numeric-asc:before {
  content: "\f162";
}

/* line 1193, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-numeric-desc:before {
  content: "\f163";
}

/* line 1196, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-up:before {
  content: "\f164";
}

/* line 1199, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-down:before {
  content: "\f165";
}

/* line 1202, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-youtube-square:before {
  content: "\f166";
}

/* line 1205, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-youtube:before {
  content: "\f167";
}

/* line 1208, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-xing:before {
  content: "\f168";
}

/* line 1211, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-xing-square:before {
  content: "\f169";
}

/* line 1214, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-youtube-play:before {
  content: "\f16a";
}

/* line 1217, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dropbox:before {
  content: "\f16b";
}

/* line 1220, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-overflow:before {
  content: "\f16c";
}

/* line 1223, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-instagram:before {
  content: "\f16d";
}

/* line 1226, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flickr:before {
  content: "\f16e";
}

/* line 1229, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-adn:before {
  content: "\f170";
}

/* line 1232, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bitbucket:before {
  content: "\f171";
}

/* line 1235, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bitbucket-square:before {
  content: "\f172";
}

/* line 1238, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tumblr:before {
  content: "\f173";
}

/* line 1241, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tumblr-square:before {
  content: "\f174";
}

/* line 1244, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-down:before {
  content: "\f175";
}

/* line 1247, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-up:before {
  content: "\f176";
}

/* line 1250, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-left:before {
  content: "\f177";
}

/* line 1253, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-right:before {
  content: "\f178";
}

/* line 1256, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-apple:before {
  content: "\f179";
}

/* line 1259, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-windows:before {
  content: "\f17a";
}

/* line 1262, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-android:before {
  content: "\f17b";
}

/* line 1265, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linux:before {
  content: "\f17c";
}

/* line 1268, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dribbble:before {
  content: "\f17d";
}

/* line 1271, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-skype:before {
  content: "\f17e";
}

/* line 1274, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-foursquare:before {
  content: "\f180";
}

/* line 1277, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trello:before {
  content: "\f181";
}

/* line 1280, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-female:before {
  content: "\f182";
}

/* line 1283, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-male:before {
  content: "\f183";
}

/* line 1286, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

/* line 1290, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sun-o:before {
  content: "\f185";
}

/* line 1293, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-moon-o:before {
  content: "\f186";
}

/* line 1296, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-archive:before {
  content: "\f187";
}

/* line 1299, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bug:before {
  content: "\f188";
}

/* line 1302, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vk:before {
  content: "\f189";
}

/* line 1305, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-weibo:before {
  content: "\f18a";
}

/* line 1308, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-renren:before {
  content: "\f18b";
}

/* line 1311, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pagelines:before {
  content: "\f18c";
}

/* line 1314, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-exchange:before {
  content: "\f18d";
}

/* line 1317, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

/* line 1320, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-left:before {
  content: "\f190";
}

/* line 1323, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

/* line 1327, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dot-circle-o:before {
  content: "\f192";
}

/* line 1330, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wheelchair:before {
  content: "\f193";
}

/* line 1333, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vimeo-square:before {
  content: "\f194";
}

/* line 1336, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

/* line 1340, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus-square-o:before {
  content: "\f196";
}

/* line 1343, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-space-shuttle:before {
  content: "\f197";
}

/* line 1346, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-slack:before {
  content: "\f198";
}

/* line 1349, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-square:before {
  content: "\f199";
}

/* line 1352, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wordpress:before {
  content: "\f19a";
}

/* line 1355, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-openid:before {
  content: "\f19b";
}

/* line 1358, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

/* line 1363, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

/* line 1367, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yahoo:before {
  content: "\f19e";
}

/* line 1370, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google:before {
  content: "\f1a0";
}

/* line 1373, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-reddit:before {
  content: "\f1a1";
}

/* line 1376, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-reddit-square:before {
  content: "\f1a2";
}

/* line 1379, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

/* line 1382, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stumbleupon:before {
  content: "\f1a4";
}

/* line 1385, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-delicious:before {
  content: "\f1a5";
}

/* line 1388, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-digg:before {
  content: "\f1a6";
}

/* line 1391, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pied-piper-pp:before {
  content: "\f1a7";
}

/* line 1394, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pied-piper-alt:before {
  content: "\f1a8";
}

/* line 1397, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-drupal:before {
  content: "\f1a9";
}

/* line 1400, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-joomla:before {
  content: "\f1aa";
}

/* line 1403, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-language:before {
  content: "\f1ab";
}

/* line 1406, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fax:before {
  content: "\f1ac";
}

/* line 1409, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-building:before {
  content: "\f1ad";
}

/* line 1412, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-child:before {
  content: "\f1ae";
}

/* line 1415, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paw:before {
  content: "\f1b0";
}

/* line 1418, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spoon:before {
  content: "\f1b1";
}

/* line 1421, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cube:before {
  content: "\f1b2";
}

/* line 1424, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cubes:before {
  content: "\f1b3";
}

/* line 1427, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-behance:before {
  content: "\f1b4";
}

/* line 1430, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-behance-square:before {
  content: "\f1b5";
}

/* line 1433, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-steam:before {
  content: "\f1b6";
}

/* line 1436, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-steam-square:before {
  content: "\f1b7";
}

/* line 1439, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-recycle:before {
  content: "\f1b8";
}

/* line 1442, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

/* line 1446, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

/* line 1450, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tree:before {
  content: "\f1bb";
}

/* line 1453, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spotify:before {
  content: "\f1bc";
}

/* line 1456, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-deviantart:before {
  content: "\f1bd";
}

/* line 1459, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-soundcloud:before {
  content: "\f1be";
}

/* line 1462, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-database:before {
  content: "\f1c0";
}

/* line 1465, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-pdf-o:before {
  content: "\f1c1";
}

/* line 1468, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-word-o:before {
  content: "\f1c2";
}

/* line 1471, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-excel-o:before {
  content: "\f1c3";
}

/* line 1474, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

/* line 1477, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

/* line 1482, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

/* line 1486, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

/* line 1490, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

/* line 1494, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-code-o:before {
  content: "\f1c9";
}

/* line 1497, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vine:before {
  content: "\f1ca";
}

/* line 1500, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-codepen:before {
  content: "\f1cb";
}

/* line 1503, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-jsfiddle:before {
  content: "\f1cc";
}

/* line 1506, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

/* line 1513, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle-o-notch:before {
  content: "\f1ce";
}

/* line 1516, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

/* line 1521, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

/* line 1525, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-git-square:before {
  content: "\f1d2";
}

/* line 1528, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-git:before {
  content: "\f1d3";
}

/* line 1531, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

/* line 1536, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tencent-weibo:before {
  content: "\f1d5";
}

/* line 1539, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-qq:before {
  content: "\f1d6";
}

/* line 1542, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

/* line 1546, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

/* line 1550, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

/* line 1554, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-history:before {
  content: "\f1da";
}

/* line 1557, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle-thin:before {
  content: "\f1db";
}

/* line 1560, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-header:before {
  content: "\f1dc";
}

/* line 1563, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paragraph:before {
  content: "\f1dd";
}

/* line 1566, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sliders:before {
  content: "\f1de";
}

/* line 1569, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-alt:before {
  content: "\f1e0";
}

/* line 1572, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-alt-square:before {
  content: "\f1e1";
}

/* line 1575, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bomb:before {
  content: "\f1e2";
}

/* line 1578, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

/* line 1582, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tty:before {
  content: "\f1e4";
}

/* line 1585, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-binoculars:before {
  content: "\f1e5";
}

/* line 1588, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plug:before {
  content: "\f1e6";
}

/* line 1591, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-slideshare:before {
  content: "\f1e7";
}

/* line 1594, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-twitch:before {
  content: "\f1e8";
}

/* line 1597, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yelp:before {
  content: "\f1e9";
}

/* line 1600, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-newspaper-o:before {
  content: "\f1ea";
}

/* line 1603, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wifi:before {
  content: "\f1eb";
}

/* line 1606, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calculator:before {
  content: "\f1ec";
}

/* line 1609, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paypal:before {
  content: "\f1ed";
}

/* line 1612, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-wallet:before {
  content: "\f1ee";
}

/* line 1615, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-visa:before {
  content: "\f1f0";
}

/* line 1618, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-mastercard:before {
  content: "\f1f1";
}

/* line 1621, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-discover:before {
  content: "\f1f2";
}

/* line 1624, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-amex:before {
  content: "\f1f3";
}

/* line 1627, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-paypal:before {
  content: "\f1f4";
}

/* line 1630, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-stripe:before {
  content: "\f1f5";
}

/* line 1633, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell-slash:before {
  content: "\f1f6";
}

/* line 1636, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell-slash-o:before {
  content: "\f1f7";
}

/* line 1639, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trash:before {
  content: "\f1f8";
}

/* line 1642, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-copyright:before {
  content: "\f1f9";
}

/* line 1645, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-at:before {
  content: "\f1fa";
}

/* line 1648, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eyedropper:before {
  content: "\f1fb";
}

/* line 1651, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paint-brush:before {
  content: "\f1fc";
}

/* line 1654, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-birthday-cake:before {
  content: "\f1fd";
}

/* line 1657, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-area-chart:before {
  content: "\f1fe";
}

/* line 1660, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pie-chart:before {
  content: "\f200";
}

/* line 1663, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-line-chart:before {
  content: "\f201";
}

/* line 1666, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lastfm:before {
  content: "\f202";
}

/* line 1669, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lastfm-square:before {
  content: "\f203";
}

/* line 1672, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-off:before {
  content: "\f204";
}

/* line 1675, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-on:before {
  content: "\f205";
}

/* line 1678, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bicycle:before {
  content: "\f206";
}

/* line 1681, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bus:before {
  content: "\f207";
}

/* line 1684, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ioxhost:before {
  content: "\f208";
}

/* line 1687, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angellist:before {
  content: "\f209";
}

/* line 1690, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc:before {
  content: "\f20a";
}

/* line 1693, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

/* line 1698, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-meanpath:before {
  content: "\f20c";
}

/* line 1701, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-buysellads:before {
  content: "\f20d";
}

/* line 1704, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-connectdevelop:before {
  content: "\f20e";
}

/* line 1707, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dashcube:before {
  content: "\f210";
}

/* line 1710, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-forumbee:before {
  content: "\f211";
}

/* line 1713, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-leanpub:before {
  content: "\f212";
}

/* line 1716, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sellsy:before {
  content: "\f213";
}

/* line 1719, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shirtsinbulk:before {
  content: "\f214";
}

/* line 1722, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-simplybuilt:before {
  content: "\f215";
}

/* line 1725, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-skyatlas:before {
  content: "\f216";
}

/* line 1728, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cart-plus:before {
  content: "\f217";
}

/* line 1731, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cart-arrow-down:before {
  content: "\f218";
}

/* line 1734, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-diamond:before {
  content: "\f219";
}

/* line 1737, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ship:before {
  content: "\f21a";
}

/* line 1740, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-secret:before {
  content: "\f21b";
}

/* line 1743, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-motorcycle:before {
  content: "\f21c";
}

/* line 1746, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-street-view:before {
  content: "\f21d";
}

/* line 1749, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-heartbeat:before {
  content: "\f21e";
}

/* line 1752, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-venus:before {
  content: "\f221";
}

/* line 1755, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars:before {
  content: "\f222";
}

/* line 1758, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mercury:before {
  content: "\f223";
}

/* line 1761, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

/* line 1765, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-transgender-alt:before {
  content: "\f225";
}

/* line 1768, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-venus-double:before {
  content: "\f226";
}

/* line 1771, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-double:before {
  content: "\f227";
}

/* line 1774, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-venus-mars:before {
  content: "\f228";
}

/* line 1777, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-stroke:before {
  content: "\f229";
}

/* line 1780, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-stroke-v:before {
  content: "\f22a";
}

/* line 1783, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-stroke-h:before {
  content: "\f22b";
}

/* line 1786, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-neuter:before {
  content: "\f22c";
}

/* line 1789, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-genderless:before {
  content: "\f22d";
}

/* line 1792, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-facebook-official:before {
  content: "\f230";
}

/* line 1795, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pinterest-p:before {
  content: "\f231";
}

/* line 1798, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-whatsapp:before {
  content: "\f232";
}

/* line 1801, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-server:before {
  content: "\f233";
}

/* line 1804, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-plus:before {
  content: "\f234";
}

/* line 1807, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-times:before {
  content: "\f235";
}

/* line 1810, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

/* line 1814, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-viacoin:before {
  content: "\f237";
}

/* line 1817, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-train:before {
  content: "\f238";
}

/* line 1820, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-subway:before {
  content: "\f239";
}

/* line 1823, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-medium:before {
  content: "\f23a";
}

/* line 1826, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

/* line 1830, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-optin-monster:before {
  content: "\f23c";
}

/* line 1833, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-opencart:before {
  content: "\f23d";
}

/* line 1836, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-expeditedssl:before {
  content: "\f23e";
}

/* line 1839, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

/* line 1844, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

/* line 1848, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

/* line 1852, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

/* line 1856, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

/* line 1860, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mouse-pointer:before {
  content: "\f245";
}

/* line 1863, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-i-cursor:before {
  content: "\f246";
}

/* line 1866, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-object-group:before {
  content: "\f247";
}

/* line 1869, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-object-ungroup:before {
  content: "\f248";
}

/* line 1872, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sticky-note:before {
  content: "\f249";
}

/* line 1875, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sticky-note-o:before {
  content: "\f24a";
}

/* line 1878, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-jcb:before {
  content: "\f24b";
}

/* line 1881, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-diners-club:before {
  content: "\f24c";
}

/* line 1884, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-clone:before {
  content: "\f24d";
}

/* line 1887, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-balance-scale:before {
  content: "\f24e";
}

/* line 1890, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-o:before {
  content: "\f250";
}

/* line 1893, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

/* line 1897, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

/* line 1901, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

/* line 1905, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass:before {
  content: "\f254";
}

/* line 1908, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

/* line 1912, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

/* line 1916, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-scissors-o:before {
  content: "\f257";
}

/* line 1919, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-lizard-o:before {
  content: "\f258";
}

/* line 1922, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-spock-o:before {
  content: "\f259";
}

/* line 1925, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-pointer-o:before {
  content: "\f25a";
}

/* line 1928, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-peace-o:before {
  content: "\f25b";
}

/* line 1931, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trademark:before {
  content: "\f25c";
}

/* line 1934, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-registered:before {
  content: "\f25d";
}

/* line 1937, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-creative-commons:before {
  content: "\f25e";
}

/* line 1940, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gg:before {
  content: "\f260";
}

/* line 1943, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gg-circle:before {
  content: "\f261";
}

/* line 1946, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tripadvisor:before {
  content: "\f262";
}

/* line 1949, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-odnoklassniki:before {
  content: "\f263";
}

/* line 1952, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-odnoklassniki-square:before {
  content: "\f264";
}

/* line 1955, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-get-pocket:before {
  content: "\f265";
}

/* line 1958, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wikipedia-w:before {
  content: "\f266";
}

/* line 1961, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-safari:before {
  content: "\f267";
}

/* line 1964, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chrome:before {
  content: "\f268";
}

/* line 1967, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-firefox:before {
  content: "\f269";
}

/* line 1970, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-opera:before {
  content: "\f26a";
}

/* line 1973, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-internet-explorer:before {
  content: "\f26b";
}

/* line 1976, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

/* line 1980, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-contao:before {
  content: "\f26d";
}

/* line 1983, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-500px:before {
  content: "\f26e";
}

/* line 1986, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-amazon:before {
  content: "\f270";
}

/* line 1989, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-plus-o:before {
  content: "\f271";
}

/* line 1992, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-minus-o:before {
  content: "\f272";
}

/* line 1995, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-times-o:before {
  content: "\f273";
}

/* line 1998, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-check-o:before {
  content: "\f274";
}

/* line 2001, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-industry:before {
  content: "\f275";
}

/* line 2004, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-pin:before {
  content: "\f276";
}

/* line 2007, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-signs:before {
  content: "\f277";
}

/* line 2010, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-o:before {
  content: "\f278";
}

/* line 2013, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map:before {
  content: "\f279";
}

/* line 2016, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-commenting:before {
  content: "\f27a";
}

/* line 2019, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-commenting-o:before {
  content: "\f27b";
}

/* line 2022, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-houzz:before {
  content: "\f27c";
}

/* line 2025, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vimeo:before {
  content: "\f27d";
}

/* line 2028, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-black-tie:before {
  content: "\f27e";
}

/* line 2031, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fonticons:before {
  content: "\f280";
}

/* line 2034, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-reddit-alien:before {
  content: "\f281";
}

/* line 2037, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-edge:before {
  content: "\f282";
}

/* line 2040, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-credit-card-alt:before {
  content: "\f283";
}

/* line 2043, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-codiepie:before {
  content: "\f284";
}

/* line 2046, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-modx:before {
  content: "\f285";
}

/* line 2049, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fort-awesome:before {
  content: "\f286";
}

/* line 2052, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-usb:before {
  content: "\f287";
}

/* line 2055, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-product-hunt:before {
  content: "\f288";
}

/* line 2058, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mixcloud:before {
  content: "\f289";
}

/* line 2061, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-scribd:before {
  content: "\f28a";
}

/* line 2064, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pause-circle:before {
  content: "\f28b";
}

/* line 2067, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pause-circle-o:before {
  content: "\f28c";
}

/* line 2070, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stop-circle:before {
  content: "\f28d";
}

/* line 2073, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stop-circle-o:before {
  content: "\f28e";
}

/* line 2076, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shopping-bag:before {
  content: "\f290";
}

/* line 2079, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shopping-basket:before {
  content: "\f291";
}

/* line 2082, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hashtag:before {
  content: "\f292";
}

/* line 2085, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bluetooth:before {
  content: "\f293";
}

/* line 2088, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bluetooth-b:before {
  content: "\f294";
}

/* line 2091, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-percent:before {
  content: "\f295";
}

/* line 2094, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gitlab:before {
  content: "\f296";
}

/* line 2097, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wpbeginner:before {
  content: "\f297";
}

/* line 2100, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wpforms:before {
  content: "\f298";
}

/* line 2103, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envira:before {
  content: "\f299";
}

/* line 2106, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-universal-access:before {
  content: "\f29a";
}

/* line 2109, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wheelchair-alt:before {
  content: "\f29b";
}

/* line 2112, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-question-circle-o:before {
  content: "\f29c";
}

/* line 2115, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-blind:before {
  content: "\f29d";
}

/* line 2118, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-audio-description:before {
  content: "\f29e";
}

/* line 2121, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-control-phone:before {
  content: "\f2a0";
}

/* line 2124, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-braille:before {
  content: "\f2a1";
}

/* line 2127, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

/* line 2130, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

/* line 2134, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

/* line 2139, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-glide:before {
  content: "\f2a5";
}

/* line 2142, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-glide-g:before {
  content: "\f2a6";
}

/* line 2145, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

/* line 2149, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-low-vision:before {
  content: "\f2a8";
}

/* line 2152, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-viadeo:before {
  content: "\f2a9";
}

/* line 2155, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-viadeo-square:before {
  content: "\f2aa";
}

/* line 2158, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snapchat:before {
  content: "\f2ab";
}

/* line 2161, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snapchat-ghost:before {
  content: "\f2ac";
}

/* line 2164, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snapchat-square:before {
  content: "\f2ad";
}

/* line 2167, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pied-piper:before {
  content: "\f2ae";
}

/* line 2170, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-first-order:before {
  content: "\f2b0";
}

/* line 2173, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yoast:before {
  content: "\f2b1";
}

/* line 2176, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-themeisle:before {
  content: "\f2b2";
}

/* line 2179, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

/* line 2183, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

/* line 2187, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-handshake-o:before {
  content: "\f2b5";
}

/* line 2190, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-open:before {
  content: "\f2b6";
}

/* line 2193, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-open-o:before {
  content: "\f2b7";
}

/* line 2196, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linode:before {
  content: "\f2b8";
}

/* line 2199, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-address-book:before {
  content: "\f2b9";
}

/* line 2202, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-address-book-o:before {
  content: "\f2ba";
}

/* line 2205, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

/* line 2209, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

/* line 2213, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-circle:before {
  content: "\f2bd";
}

/* line 2216, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-circle-o:before {
  content: "\f2be";
}

/* line 2219, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-o:before {
  content: "\f2c0";
}

/* line 2222, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-id-badge:before {
  content: "\f2c1";
}

/* line 2225, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

/* line 2229, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

/* line 2233, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-quora:before {
  content: "\f2c4";
}

/* line 2236, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-free-code-camp:before {
  content: "\f2c5";
}

/* line 2239, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-telegram:before {
  content: "\f2c6";
}

/* line 2242, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

/* line 2247, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

/* line 2251, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

/* line 2255, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

/* line 2259, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

/* line 2263, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shower:before {
  content: "\f2cc";
}

/* line 2266, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

/* line 2271, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-podcast:before {
  content: "\f2ce";
}

/* line 2274, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-window-maximize:before {
  content: "\f2d0";
}

/* line 2277, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-window-minimize:before {
  content: "\f2d1";
}

/* line 2280, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-window-restore:before {
  content: "\f2d2";
}

/* line 2283, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

/* line 2287, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

/* line 2291, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bandcamp:before {
  content: "\f2d5";
}

/* line 2294, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-grav:before {
  content: "\f2d6";
}

/* line 2297, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-etsy:before {
  content: "\f2d7";
}

/* line 2300, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-imdb:before {
  content: "\f2d8";
}

/* line 2303, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ravelry:before {
  content: "\f2d9";
}

/* line 2306, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eercast:before {
  content: "\f2da";
}

/* line 2309, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-microchip:before {
  content: "\f2db";
}

/* line 2312, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snowflake-o:before {
  content: "\f2dc";
}

/* line 2315, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-superpowers:before {
  content: "\f2dd";
}

/* line 2318, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wpexplorer:before {
  content: "\f2de";
}

/* line 2321, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-meetup:before {
  content: "\f2e0";
}

/* line 2324, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 2334, ../../.rvm/gems/ruby-3.1.2/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 23, app/assets/stylesheets/application.scss */
html {
  height: 100%;
}

/* line 27, app/assets/stylesheets/application.scss */
body {
  height: 100%;
}

/* line 31, app/assets/stylesheets/application.scss */
.page-container {
  min-height: 100%;
  position: relative;
}

/* line 34, app/assets/stylesheets/application.scss */
.page-container .content-container {
  padding-bottom: 40px;
}

/* line 39, app/assets/stylesheets/application.scss */
footer {
  color: #666;
  bottom: 10px;
  font-size: 14px;
  font-weight: normal;
  left: 0;
  right: 0;
  text-align: center;
}

/* line 47, app/assets/stylesheets/application.scss */
footer a {
  color: rgba(74, 144, 226, 0.7);
}

/* line 52, app/assets/stylesheets/application.scss */
.response.limit.banner,
.account-canceled.banner {
  background: #429df6;
}

/* line 55, app/assets/stylesheets/application.scss */
.response.limit.banner p.message,
.account-canceled.banner p.message {
  color: white;
  text-align: center;
  margin: 0;
  padding: 13px;
}

/* line 61, app/assets/stylesheets/application.scss */
.response.limit.banner a.link,
.account-canceled.banner a.link {
  color: white;
}

/* line 63, app/assets/stylesheets/application.scss */
.response.limit.banner a.link:hover,
.account-canceled.banner a.link:hover {
  color: white;
}

/* line 66, app/assets/stylesheets/application.scss */
.response.limit.banner a.link .plans.btn,
.account-canceled.banner a.link .plans.btn {
  background: rgba(0, 0, 0, 0.43);
  color: white;
  margin-left: 18px;
}

/* line 70, app/assets/stylesheets/application.scss */
.response.limit.banner a.link .plans.btn:hover,
.account-canceled.banner a.link .plans.btn:hover {
  color: white;
}

/* line 77, app/assets/stylesheets/application.scss */
.account-canceled.banner {
  background: #fffde4;
}

/* line 79, app/assets/stylesheets/application.scss */
.account-canceled.banner p.message {
  color: #666050;
}

/* line 85, app/assets/stylesheets/application.scss */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* line 92, app/assets/stylesheets/application.scss */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 98, app/assets/stylesheets/application.scss */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

/* line 110, app/assets/stylesheets/application.scss */
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

/* line 122, app/assets/stylesheets/application.scss */
input:checked + .slider {
  background-color: #2196F3;
}

/* line 126, app/assets/stylesheets/application.scss */
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

/* line 130, app/assets/stylesheets/application.scss */
input:checked + .slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */
/* line 137, app/assets/stylesheets/application.scss */
.slider.round {
  border-radius: 34px;
}

/* line 141, app/assets/stylesheets/application.scss */
.slider.round:before {
  border-radius: 50%;
}
