@charset "UTF-8";
@import url(../stylesheets/font-awesome/css/font-awesome.css);
@import url(../stylesheets/angularstrap/angular-motion.min.css);
@import url(../stylesheets/angularstrap/bootstrap-additions.min.css);
@import url(../stylesheets/leaflet/leaflet.css);
@import url(../stylesheets/photoswipe/default-skin/default-skin.css);
@import url(../stylesheets/photoswipe/photoswipe.css);
@import url(../stylesheets/amenities/amenities.css);
@font-face {
  font-family: 'Avenir';
  font-weight: 200;
  src: url(../fonts/Avenir/AvenirLTStd-Light.otf) format("opentype"), url(../fonts/Avenir/AvenirLTStd-Light.eot) format("eot"), url(../fonts/Avenir/AvenirLTStd-Light.woff) format("woff"), url(../fonts/Avenir/AvenirLTStd-Light.ttf) format("truetype"); }

@font-face {
  font-family: 'Avenir';
  font-weight: 300;
  src: url(../fonts/Avenir/AvenirLTStd-Roman.otf) format("opentype"), url(../fonts/Avenir/AvenirLTStd-Roman.eot) format("eot"), url(../fonts/Avenir/AvenirLTStd-Roman.woff) format("woff"), url(../fonts/Avenir/AvenirLTStd-Roman.ttf) format("truetype"); }

@font-face {
  font-family: 'Avenir';
  font-weight: 500;
  src: url(../fonts/Avenir/AvenirLTStd-Heavy.otf) format("opentype"), url(../fonts/Avenir/AvenirLTStd-Heavy.eot) format("eot"), url(../fonts/Avenir/AvenirLTStd-Heavy.woff) format("woff"), url(../fonts/Avenir/AvenirLTStd-Heavy.ttf) format("truetype"); }

@font-face {
  font-family: 'Avenir';
  font-weight: 700;
  src: url(../fonts/Avenir/AvenirLTStd-Black.otf) format("opentype"), url(../fonts/Avenir/AvenirLTStd-Black.eot) format("eot"), url(../fonts/Avenir/AvenirLTStd-Black.woff) format("woff"), url(../fonts/Avenir/AvenirLTStd-Black.ttf) format("truetype"); }

@font-face {
  font-family: 'Circular';
  font-weight: 200;
  src: url(../fonts/Circular/CircularStd-Book.otf) format("opentype"), url(../fonts/Circular/Circular-Book.eot) format("eot"), url(../fonts/Circular/Circular-Book.woff) format("woff"), url(../fonts/Circular/Circular-Book.ttf) format("truetype"); }

@font-face {
  font-family: 'Circular';
  font-weight: 300;
  src: url(../fonts/Circular/CircularStd-Medium.otf) format("opentype"), url(../fonts/Circular/Circular-Medium.eot) format("eot"), url(../fonts/Circular/Circular-Medium.woff) format("woff"), url(../fonts/Circular/Circular-Medium.ttf) format("truetype"); }

@font-face {
  font-family: 'Circular';
  font-weight: 500;
  src: url(../fonts/Circular/CircularStd-Bold.otf) format("opentype"), url(../fonts/Circular/Circular-Bold.eot) format("eot"), url(../fonts/Circular/Circular-Bold.woff) format("woff"), url(../fonts/Circular/Circular-Bold.ttf) format("truetype"); }

@font-face {
  font-family: 'Circular';
  font-weight: 700;
  src: url(../fonts/Circular/CircularStd-Black.otf) format("opentype"), url(../fonts/Circular/Circular-Black.woff) format("woff"), url(../fonts/Circular/Circular-Black.ttf) format("truetype"); }

::selection {
  background: #ffe254;
  /* WebKit/Blink Browsers */ }

::-moz-selection {
  background: #ffe254;
  /* Gecko Browsers */ }

/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important; }

@keyframes slideDown {
  0% {
    transform: translateY(-100%); }
  50% {
    transform: translateY(8%); }
  65% {
    transform: translateY(-4%); }
  80% {
    transform: translateY(4%); }
  95% {
    transform: translateY(-2%); }
  100% {
    transform: translateY(0%); } }

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%); }
  50% {
    -webkit-transform: translateY(8%); }
  65% {
    -webkit-transform: translateY(-4%); }
  80% {
    -webkit-transform: translateY(4%); }
  95% {
    -webkit-transform: translateY(-2%); }
  100% {
    -webkit-transform: translateY(0%); } }

/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important; }

@keyframes slideUp {
  0% {
    transform: translateY(100%); }
  50% {
    transform: translateY(-8%); }
  65% {
    transform: translateY(4%); }
  80% {
    transform: translateY(-4%); }
  95% {
    transform: translateY(2%); }
  100% {
    transform: translateY(0%); } }

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%); }
  50% {
    -webkit-transform: translateY(-8%); }
  65% {
    -webkit-transform: translateY(4%); }
  80% {
    -webkit-transform: translateY(-4%); }
  95% {
    -webkit-transform: translateY(2%); }
  100% {
    -webkit-transform: translateY(0%); } }

/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important; }

@keyframes slideLeft {
  0% {
    transform: translateX(150%); }
  50% {
    transform: translateX(-8%); }
  65% {
    transform: translateX(4%); }
  80% {
    transform: translateX(-4%); }
  95% {
    transform: translateX(2%); }
  100% {
    transform: translateX(0%); } }

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%); }
  50% {
    -webkit-transform: translateX(-8%); }
  65% {
    -webkit-transform: translateX(4%); }
  80% {
    -webkit-transform: translateX(-4%); }
  95% {
    -webkit-transform: translateX(2%); }
  100% {
    -webkit-transform: translateX(0%); } }

/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important; }

@keyframes slideRight {
  0% {
    transform: translateX(-150%); }
  50% {
    transform: translateX(8%); }
  65% {
    transform: translateX(-4%); }
  80% {
    transform: translateX(4%); }
  95% {
    transform: translateX(-2%); }
  100% {
    transform: translateX(0%); } }

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%); }
  50% {
    -webkit-transform: translateX(8%); }
  65% {
    -webkit-transform: translateX(-4%); }
  80% {
    -webkit-transform: translateX(4%); }
  95% {
    -webkit-transform: translateX(-2%); }
  100% {
    -webkit-transform: translateX(0%); } }

/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important; }

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5); }
  30% {
    transform: translateY(-8%) scaleX(0.5); }
  40% {
    transform: translateY(2%) scaleX(0.5); }
  50% {
    transform: translateY(0%) scaleX(1.1); }
  60% {
    transform: translateY(0%) scaleX(0.9); }
  70% {
    transform: translateY(0%) scaleX(1.05); }
  80% {
    transform: translateY(0%) scaleX(0.95); }
  90% {
    transform: translateY(0%) scaleX(1.02); }
  100% {
    transform: translateY(0%) scaleX(1); } }

@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5); }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5); }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5); }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1); }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9); }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05); }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95); }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02); }
  100% {
    -webkit-transform: translateY(0%) scaleX(1); } }

/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important; }

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5); }
  60% {
    transform: translateY(-7%) scaleY(1.12); }
  75% {
    transform: translateY(3%); }
  100% {
    transform: translateY(0%) scale(1) scaleY(1); } }

@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5); }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12); }
  75% {
    -webkit-transform: translateY(3%); }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1); } }

/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important; }

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0; }
  60% {
    transform: scale(1.1); }
  80% {
    transform: scale(0.9);
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 1; } }

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0; }
  60% {
    -webkit-transform: scale(1.1); }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    opacity: 1; } }

/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important; }

@keyframes expandOpen {
  0% {
    transform: scale(1.8); }
  50% {
    transform: scale(0.95); }
  80% {
    transform: scale(1.05); }
  90% {
    transform: scale(0.98); }
  100% {
    transform: scale(1); } }

@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8); }
  50% {
    -webkit-transform: scale(0.95); }
  80% {
    -webkit-transform: scale(1.05); }
  90% {
    -webkit-transform: scale(0.98); }
  100% {
    -webkit-transform: scale(1); } }

/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important; }

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2; }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1; }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1; }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1; }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1; }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1; }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1; } }

@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2; }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1; }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1; }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1; }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1; } }

/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important; }

@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6); }
  20% {
    transform: rotate(-2deg) scaleY(1.05); }
  35% {
    transform: rotate(2deg) scaleY(1); }
  50% {
    transform: rotate(-2deg); }
  65% {
    transform: rotate(1deg); }
  80% {
    transform: rotate(-1deg); }
  100% {
    transform: rotate(0deg); } }

@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6); }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05); }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1); }
  50% {
    -webkit-transform: rotate(-2deg); }
  65% {
    -webkit-transform: rotate(1deg); }
  80% {
    -webkit-transform: rotate(-1deg); }
  100% {
    -webkit-transform: rotate(0deg); } }

/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%; }

@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6); }
  60% {
    transform: translateY(-100%) scaleY(1.1); }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05); }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1); }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1); }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1); } }

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6); }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1); }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05); }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1); }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1); }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1); } }

/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite; }

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7; }
  50% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(0.9);
    opacity: 0.7; } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7; }
  50% {
    -webkit-transform: scale(1);
    opacity: 1; }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7; } }

/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite; }

@keyframes floating {
  0% {
    transform: translateY(0%); }
  50% {
    transform: translateY(8%); }
  100% {
    transform: translateY(0%); } }

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%); }
  50% {
    -webkit-transform: translateY(8%); }
  100% {
    -webkit-transform: translateY(0%); } }

/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite; }

@keyframes tossing {
  0% {
    transform: rotate(-4deg); }
  50% {
    transform: rotate(4deg); }
  100% {
    transform: rotate(-4deg); } }

@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg); }
  50% {
    -webkit-transform: rotate(4deg); }
  100% {
    -webkit-transform: rotate(-4deg); } }

/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%; }

@keyframes pullUp {
  0% {
    transform: scaleY(0.1); }
  40% {
    transform: scaleY(1.02); }
  60% {
    transform: scaleY(0.98); }
  80% {
    transform: scaleY(1.01); }
  100% {
    transform: scaleY(0.98); }
  80% {
    transform: scaleY(1.01); }
  100% {
    transform: scaleY(1); } }

@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1); }
  40% {
    -webkit-transform: scaleY(1.02); }
  60% {
    -webkit-transform: scaleY(0.98); }
  80% {
    -webkit-transform: scaleY(1.01); }
  100% {
    -webkit-transform: scaleY(0.98); }
  80% {
    -webkit-transform: scaleY(1.01); }
  100% {
    -webkit-transform: scaleY(1); } }

/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%; }

@keyframes pullDown {
  0% {
    transform: scaleY(0.1); }
  40% {
    transform: scaleY(1.02); }
  60% {
    transform: scaleY(0.98); }
  80% {
    transform: scaleY(1.01); }
  100% {
    transform: scaleY(0.98); }
  80% {
    transform: scaleY(1.01); }
  100% {
    transform: scaleY(1); } }

@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1); }
  40% {
    -webkit-transform: scaleY(1.02); }
  60% {
    -webkit-transform: scaleY(0.98); }
  80% {
    -webkit-transform: scaleY(1.01); }
  100% {
    -webkit-transform: scaleY(0.98); }
  80% {
    -webkit-transform: scaleY(1.01); }
  100% {
    -webkit-transform: scaleY(1); } }

/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%; }

@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3); }
  40% {
    transform: scaleX(1.02); }
  60% {
    transform: scaleX(0.98); }
  80% {
    transform: scaleX(1.01); }
  100% {
    transform: scaleX(0.98); }
  80% {
    transform: scaleX(1.01); }
  100% {
    transform: scaleX(1); } }

@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3); }
  40% {
    -webkit-transform: scaleX(1.02); }
  60% {
    -webkit-transform: scaleX(0.98); }
  80% {
    -webkit-transform: scaleX(1.01); }
  100% {
    -webkit-transform: scaleX(0.98); }
  80% {
    -webkit-transform: scaleX(1.01); }
  100% {
    -webkit-transform: scaleX(1); } }

/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%; }

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3); }
  40% {
    transform: scaleX(1.02); }
  60% {
    transform: scaleX(0.98); }
  80% {
    transform: scaleX(1.01); }
  100% {
    transform: scaleX(0.98); }
  80% {
    transform: scaleX(1.01); }
  100% {
    transform: scaleX(1); } }

@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3); }
  40% {
    -webkit-transform: scaleX(1.02); }
  60% {
    -webkit-transform: scaleX(0.98); }
  80% {
    -webkit-transform: scaleX(1.01); }
  100% {
    -webkit-transform: scaleX(0.98); }
  80% {
    -webkit-transform: scaleX(1.01); }
  100% {
    -webkit-transform: scaleX(1); } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 34%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: black;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 20px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
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 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  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; } }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("bootstrap/glyphicons-halflings-regular.eot");
  src: url("bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("bootstrap/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"; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  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;
  width: 100% \9;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  width: 100% \9;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

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,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777777; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px; }
  h1 small,
  h1 .small, .h1 small,
  .h1 .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

h1, .h1 {
  font-size: 36px; }

h2, .h2 {
  font-size: 30px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 18px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 21px; } }

small,
.small {
  font-size: 85%; }

cite {
  font-style: normal; }

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #777777; }

.text-primary {
  color: #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; }

.bg-primary {
  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 #eeeeee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none; }

.list-inline {
  margin-left: -5px; }
  .list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.42857; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table; }

.dl-horizontal dd:after {
  clear: both; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee; }
  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0; }
  blockquote footer,
  blockquote small,
  blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777777; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: '\2014 \00A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before,
  blockquote.pull-right small:before,
  blockquote.pull-right .small:before {
    content: ''; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after,
  blockquote.pull-right small:after,
  blockquote.pull-right .small:after {
    content: '\00A0 \2014'; }

blockquote:before,
blockquote:after {
  content: ""; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  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, 0.25); }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    box-shadow: none; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  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 {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 1024px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  margin-left: 16.66667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  margin-left: 41.66667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  margin-left: 66.66667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@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-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1024px) {
  .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-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@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-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

table {
  background-color: transparent; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857;
    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 > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .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 > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .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;
  float: none;
  display: table-column; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch; }
    .table-responsive > .table {
      margin-bottom: 0; }
      .table-responsive > .table > thead > tr > th,
      .table-responsive > .table > thead > tr > td,
      .table-responsive > .table > tbody > tr > th,
      .table-responsive > .table > tbody > tr > td,
      .table-responsive > .table > tfoot > tr > th,
      .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 > thead > tr > td:first-child,
      .table-responsive > .table-bordered > tbody > tr > th:first-child,
      .table-responsive > .table-bordered > tbody > tr > td:first-child,
      .table-responsive > .table-bordered > tfoot > tr > th: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 > thead > tr > td:last-child,
      .table-responsive > .table-bordered > tbody > tr > th:last-child,
      .table-responsive > .table-bordered > tbody > tr > td:last-child,
      .table-responsive > .table-bordered > tfoot > tr > th: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 > tbody > tr:last-child > td,
      .table-responsive > .table-bordered > tfoot > tr:last-child > th,
      .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0; } }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857;
  color: #363636; }

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #363636;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  .form-control::-moz-placeholder {
    color: #777777;
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: #777777; }
  .form-control::-webkit-input-placeholder {
    color: #777777; }
  .form-control[disabled], .form-control[readonly],
  fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eeeeee;
    opacity: 1; }

textarea.form-control {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  line-height: 34px;
  line-height: 1.42857 \0; }
  input[type="date"].input-sm, .form-horizontal .form-group-sm input[type="date"].form-control, .input-group-sm > input[type="date"].form-control,
  .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="date"].btn,
  input[type="time"].input-sm,
  .form-horizontal .form-group-sm input[type="time"].form-control,
  .input-group-sm > input[type="time"].form-control,
  .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="time"].btn,
  input[type="datetime-local"].input-sm,
  .form-horizontal .form-group-sm input[type="datetime-local"].form-control,
  .input-group-sm > input[type="datetime-local"].form-control,
  .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  input[type="month"].input-sm,
  .form-horizontal .form-group-sm input[type="month"].form-control,
  .input-group-sm > input[type="month"].form-control,
  .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="month"].btn {
    line-height: 30px; }
  input[type="date"].input-lg, .form-horizontal .form-group-lg input[type="date"].form-control, .input-group-lg > input[type="date"].form-control,
  .input-group-lg > input[type="date"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="date"].btn,
  input[type="time"].input-lg,
  .form-horizontal .form-group-lg input[type="time"].form-control,
  .input-group-lg > input[type="time"].form-control,
  .input-group-lg > input[type="time"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="time"].btn,
  input[type="datetime-local"].input-lg,
  .form-horizontal .form-group-lg input[type="datetime-local"].form-control,
  .input-group-lg > input[type="datetime-local"].form-control,
  .input-group-lg > input[type="datetime-local"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
  input[type="month"].input-lg,
  .form-horizontal .form-group-lg input[type="month"].form-control,
  .input-group-lg > input[type="month"].form-control,
  .input-group-lg > input[type="month"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="month"].btn {
    line-height: 46px; }

.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label,
  .checkbox label {
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0; }
  .form-control-static.input-lg, .form-horizontal .form-group-lg .form-control-static.form-control, .input-group-lg > .form-control-static.form-control,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .form-horizontal .form-group-sm .form-control-static.form-control, .input-group-sm > .form-control-static.form-control,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-left: 0;
    padding-right: 0; }

.input-sm, .form-horizontal .form-group-sm .form-control, .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-sm, .form-horizontal .form-group-sm select.form-control, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px; }

textarea.input-sm, .form-horizontal .form-group-sm textarea.form-control, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.form-horizontal .form-group-sm select[multiple].form-control,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto; }

.input-lg, .form-horizontal .form-group-lg .form-control, .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-lg, .form-horizontal .form-group-lg select.form-control, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px; }

textarea.input-lg, .form-horizontal .form-group-lg textarea.form-control, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.form-horizontal .form-group-lg select[multiple].form-control,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control {
    padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center; }

.input-lg + .form-control-feedback, .form-horizontal .form-group-lg .form-control + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback, .form-horizontal .form-group-sm .form-control + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d; }

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }

.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b; }

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }

.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #a94442; }

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 768px) {
  .form-inline .form-group, .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control, .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .input-group, .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon, .navbar-form .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn, .navbar-form .input-group .input-group-btn,
    .form-inline .input-group .form-control, .navbar-form .input-group .form-control {
      width: auto; }
  .form-inline .input-group > .form-control, .navbar-form .input-group > .form-control {
    width: 100%; }
  .form-inline .control-label, .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio, .navbar-form .radio,
  .form-inline .checkbox, .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label, .navbar-form .radio label,
    .form-inline .checkbox label, .navbar-form .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"], .navbar-form .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"], .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback, .navbar-form .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px; }

.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table; }
  .form-horizontal .form-group:after {
    clear: both; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.3px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px; } }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus, .btn:active:focus, .btn.active:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus {
    color: #333;
    text-decoration: none; }
  .btn:active, .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled, .btn[disabled],
  fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active,
  fieldset[disabled] .btn-default,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default: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 > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #3071a9;
    border-color: #285e8e; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active,
  fieldset[disabled] .btn-primary,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary: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 > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active,
  fieldset[disabled] .btn-success,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success: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 > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active,
  fieldset[disabled] .btn-info,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info: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 > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active,
  fieldset[disabled] .btn-warning,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning: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 > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active,
  fieldset[disabled] .btn-danger,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger:active,
  fieldset[disabled] .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #2a6496;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
  .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  .dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857;
    color: #333333;
    white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #428bca; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777; }

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857;
  color: #777777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: ""; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    float: left; }
    .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
    .btn-group-vertical > .btn:hover,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .btn:active,
    .btn-group-vertical > .btn.active {
      z-index: 2; }
    .btn-group > .btn:focus,
    .btn-group-vertical > .btn:focus {
      outline: 0; }

.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:before, .btn-toolbar:after {
    content: " ";
    display: table; }
  .btn-toolbar:after {
    clear: both; }
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child {
  margin-left: 0; }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }

.btn-group-vertical > .btn-group:after {
  clear: both; }

.btn-group-vertical > .btn-group > .btn {
  float: none; }

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified > .btn,
  .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
  .btn-group-justified > .btn-group .btn {
    width: 100%; }
  .btn-group-justified > .btn-group .dropdown-menu {
    left: auto; }

[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0); }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0; }
  .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }

.input-group-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: #363636;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px; }
  .input-group-addon.input-sm, .form-horizontal .form-group-sm .input-group-addon.form-control,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px; }
  .input-group-addon.input-lg, .form-horizontal .form-group-lg .input-group-addon.form-control,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn {
    position: relative; }
    .input-group-btn > .btn + .btn {
      margin-left: -1px; }
    .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
      z-index: 2; }
  .input-group-btn:first-child > .btn,
  .input-group-btn:first-child > .btn-group {
    margin-right: -1px; }
  .input-group-btn:last-child > .btn,
  .input-group-btn:last-child > .btn-group {
    margin-left: -1px; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }
  .nav:before, .nav:after {
    content: " ";
    display: table; }
  .nav:after {
    clear: both; }
  .nav > li {
    position: relative;
    display: block; }
    .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 15px; }
      .nav > li > a:hover, .nav > li > a:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    .nav > li.disabled > a {
      color: #777777; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #777777;
        text-decoration: none;
        background-color: transparent;
        cursor: not-allowed; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #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.42857;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #eeeeee #eeeeee #ddd; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #363636;
      background-color: #fff;
      border: 1px solid #ddd;
      border-bottom-color: transparent;
      cursor: default; }

.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, .nav-tabs.nav-justified {
  width: 100%; }
  .nav-justified > li, .nav-tabs.nav-justified > li {
    float: none; }
    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
      text-align: center;
      margin-bottom: 5px; }
  .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }
  @media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%; }
      .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0; } }

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px; }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd; }
  @media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ddd;
      border-radius: 4px 4px 0 0; }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }
  .navbar:before, .navbar:after {
    content: " ";
    display: table; }
  .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    .navbar {
      border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table; }

.navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  .navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table; }
  .navbar-collapse:after {
    clear: both; }
  .navbar-collapse.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-left: 0;
        padding-right: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }
  @media (max-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
      max-height: 200px; } }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .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;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }
  @media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px; }
  .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;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  .navbar-toggle:focus {
    outline: 0; }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px; }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  @media (min-width: 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 {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px; }
  @media (max-width: 767px) {
    .navbar-form .form-group {
      margin-bottom: 5px; } }
  @media (min-width: 768px) {
    .navbar-form {
      width: auto;
      border: 0;
      margin-left: 0;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      -webkit-box-shadow: none;
      box-shadow: none; }
      .navbar-form.navbar-right:last-child {
        margin-right: -15px; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
    margin-top: 10px;
    margin-bottom: 10px; }
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
    margin-top: 14px;
    margin-bottom: 14px; }

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    .navbar-text {
      float: left;
      margin-left: 15px;
      margin-right: 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 {
    background-color: #e7e7e7;
    color: #555; }
  @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-default .btn-link {
    color: #777; }
    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
      color: #333; }
    .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:hover,
    fieldset[disabled] .navbar-default .btn-link:focus {
      color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #090909; }
  .navbar-inverse .navbar-brand {
    color: #777777; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: #777777; }
  .navbar-inverse .navbar-nav > li > a {
    color: #777777; }
    .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: #090909; }
  .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }
  .navbar-inverse .navbar-toggle {
    border-color: #333; }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
      background-color: #333; }
    .navbar-inverse .navbar-toggle .icon-bar {
      background-color: #fff; }
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #101010; }
  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #090909;
    color: #fff; }
  @media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: #777777; }
      .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: #090909; }
    .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: #777777; }
    .navbar-inverse .navbar-link:hover {
      color: #fff; }
  .navbar-inverse .btn-link {
    color: #777777; }
    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
      color: #fff; }
    .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
      color: #444; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }
  .breadcrumb > li {
    display: inline-block; }
    .breadcrumb > li + li:before {
      content: "/ ";
      padding: 0 5px;
      color: #ccc; }
  .breadcrumb > .active {
    color: #777777; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px; }
  .pagination > li {
    display: inline; }
    .pagination > li > a,
    .pagination > li > span {
      position: relative;
      float: left;
      padding: 6px 12px;
      line-height: 1.42857;
      text-decoration: none;
      color: #428bca;
      background-color: #fff;
      border: 1px solid #ddd;
      margin-left: -1px; }
    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
      margin-left: 0;
      border-bottom-left-radius: 4px;
      border-top-left-radius: 4px; }
    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
      border-bottom-right-radius: 4px;
      border-top-right-radius: 4px; }
  .pagination > li > a:hover, .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    color: #2a6496;
    background-color: #eeeeee;
    border-color: #ddd; }
  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    background-color: #428bca;
    border-color: #428bca;
    cursor: default; }
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #777777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center; }
  .pager:before, .pager:after {
    content: " ";
    display: table; }
  .pager:after {
    clear: both; }
  .pager li {
    display: inline; }
    .pager li > a,
    .pager li > span {
      display: inline-block;
      padding: 5px 14px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 15px; }
    .pager li > a:hover,
    .pager li > a:focus {
      text-decoration: none;
      background-color: #eeeeee; }
  .pager .next > a,
  .pager .next > span {
    float: right; }
  .pager .previous > a,
  .pager .previous > span {
    float: left; }
  .pager .disabled > a,
  .pager .disabled > a:hover,
  .pager .disabled > a:focus,
  .pager .disabled > span {
    color: #777777;
    background-color: #fff;
    cursor: not-allowed; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  .label:empty {
    display: none; }
  .btn .label {
    position: relative;
    top: -1px; }

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-default {
  background-color: #777777; }
  .label-default[href]:hover, .label-default[href]:focus {
    background-color: #5e5e5e; }

.label-primary {
  background-color: #428bca; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #3071a9; }

.label-success {
  background-color: #5cb85c; }
  .label-success[href]:hover, .label-success[href]:focus {
    background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }
  .label-info[href]:hover, .label-info[href]:focus {
    background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }
  .label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }
  .label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #c9302c; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px; }
  .badge:empty {
    display: none; }
  .btn .badge {
    position: relative;
    top: -1px; }
  .btn-xs .badge, .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px; }
  a.list-group-item.active > .badge,
  .nav-pills > .active > a > .badge {
    color: #428bca;
    background-color: #fff; }
  .nav-pills > li > a > .badge {
    margin-left: 3px; }

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee; }
  .jumbotron h1,
  .jumbotron .h1 {
    color: inherit; }
  .jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200; }
  .jumbotron > hr {
    border-top-color: #d5d5d5; }
  .container .jumbotron {
    border-radius: 6px; }
  .jumbotron .container {
    max-width: 100%; }
  @media screen and (min-width: 768px) {
    .jumbotron {
      padding-top: 48px;
      padding-bottom: 48px; }
      .container .jumbotron {
        padding-left: 60px;
        padding-right: 60px; }
      .jumbotron h1,
      .jumbotron .h1 {
        font-size: 63px; } }

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .thumbnail > img,
  .thumbnail a > img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto; }
  .thumbnail .caption {
    padding: 9px;
    color: #333333; }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #428bca; }

.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,
.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissable .close,
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c9e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6e1ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7e1b5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9c0; }
  .alert-danger .alert-link {
    color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #428bca;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease; }

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar[aria-valuenow="1"], .progress-bar[aria-valuenow="2"] {
  min-width: 30px; }

.progress-bar[aria-valuenow="0"] {
  color: #777777;
  min-width: 30px;
  background-color: transparent;
  background-image: none;
  box-shadow: none; }

.progress-bar-success {
  background-color: #5cb85c; }
  .progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
  background-color: #5bc0de; }
  .progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
  background-color: #f0ad4e; }
  .progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
  background-color: #d9534f; }
  .progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.media,
.media-body {
  overflow: hidden;
  zoom: 1; }

.media,
.media .media {
  margin-top: 15px; }

.media:first-child {
  margin-top: 0; }

.media-object {
  display: block; }

.media-heading {
  margin: 0 0 5px; }

.media > .pull-left {
  margin-right: 10px; }

.media > .pull-right {
  margin-left: 10px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  margin-bottom: 20px;
  padding-left: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  .list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }
  .list-group-item > .badge {
    float: right; }
  .list-group-item > .badge + .badge {
    margin-right: 5px; }

a.list-group-item {
  color: #555; }
  a.list-group-item .list-group-item-heading {
    color: #333; }
  a.list-group-item:hover, a.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5; }

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777; }
  .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
    color: inherit; }
  .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
    color: #777777; }

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #428bca;
  border-color: #428bca; }
  .list-group-item.active .list-group-item-heading,
  .list-group-item.active .list-group-item-heading > small,
  .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
  .list-group-item.active:hover .list-group-item-heading > small,
  .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
  .list-group-item.active:focus .list-group-item-heading > small,
  .list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit; }
  .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
    color: #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;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }
  .panel-body:before, .panel-body:after {
    content: " ";
    display: table; }
  .panel-body:after {
    clear: both; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit; }
  .panel-title > a {
    color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .list-group {
  margin-bottom: 0; }
  .panel > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0; }
  .panel > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
  .panel > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  .panel > .table-responsive:first-child > .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 th:first-child,
  .panel > .table-responsive:first-child > .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 th:first-child {
    border-top-left-radius: 3px; }
  .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  .panel > .table-responsive:first-child > .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 th:last-child,
  .panel > .table-responsive:first-child > .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 th:last-child {
    border-top-right-radius: 3px; }

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
  .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  .panel > .table-responsive:last-child > .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 th:first-child,
  .panel > .table-responsive:last-child > .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 th:first-child {
    border-bottom-left-radius: 3px; }
  .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  .panel > .table-responsive:last-child > .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 th:last-child,
  .panel > .table-responsive:last-child > .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 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-bordered > thead > tr > td:first-child,
  .panel > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-bordered > tfoot > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th: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-bordered > thead > tr > td:last-child,
  .panel > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-bordered > tfoot > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .panel > .table-bordered > thead > tr:first-child > td,
  .panel > .table-bordered > thead > tr:first-child > th,
  .panel > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-bordered > tbody > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
  .panel > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-bordered > tfoot > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

.panel-group {
  margin-bottom: 20px; }
  .panel-group .panel {
    margin-bottom: 0;
    border-radius: 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: #333333;
    background-color: #f5f5f5;
    border-color: #ddd; }
    .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ddd; }
    .panel-default > .panel-heading .badge {
      color: #f5f5f5;
      background-color: #333333; }
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

.panel-primary {
  border-color: #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-heading .badge {
      color: #428bca;
      background-color: #fff; }
  .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-heading .badge {
      color: #dff0d8;
      background-color: #3c763d; }
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }
  .panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1; }
    .panel-info > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #bce8f1; }
    .panel-info > .panel-heading .badge {
      color: #d9edf7;
      background-color: #31708f; }
  .panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }
  .panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc; }
    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #faebcc; }
    .panel-warning > .panel-heading .badge {
      color: #fcf8e3;
      background-color: #8a6d3b; }
  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }
  .panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1; }
    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ebccd1; }
    .panel-danger > .panel-heading .badge {
      color: #f2dede;
      background-color: #a94442; }
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0; }
  .embed-responsive.embed-responsive-16by9 {
    padding-bottom: 56.25%; }
  .embed-responsive.embed-responsive-4by3 {
    padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
  .well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
  padding: 24px;
  border-radius: 6px; }

.well-sm {
  padding: 9px;
  border-radius: 3px; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .modal.fade .modal-dialog {
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0); }
  .modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857px; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table; }
  .modal-footer:after {
    clear: both; }
  .modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0; }
  .modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 1024px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0); }
  .tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .tooltip.top {
    margin-top: -3px;
    padding: 5px 0; }
  .tooltip.right {
    margin-left: 3px;
    padding: 0 5px; }
  .tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0; }
  .tooltip.left {
    margin-left: -3px;
    padding: 0 5px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #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 {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  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: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal; }
  .popover.top {
    margin-top: -10px; }
  .popover.right {
    margin-left: 10px; }
  .popover.bottom {
    margin-top: 10px; }
  .popover.left {
    margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }
  .popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25); }
  .popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff; }

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }
  .popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25); }
  .popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      width: 100% \9;
      max-width: 100%;
      height: auto;
      line-height: 1; }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  .carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-family: serif; }
  .carousel-control .icon-prev:before {
    content: '\2039'; }
  .carousel-control .icon-next:before {
    content: '\203a'; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: transparent; }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px; }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important;
  visibility: hidden !important; }

.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

@-ms-viewport {
  width: device-width; }

.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 1023px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 1023px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 1023px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 1023px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 1024px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 1024px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 1024px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 1024px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 1024px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

* {
  margin: 0; }

body {
  font-family: 'Avenir', sans-serif !important;
  font-size: 16px;
  height: 100%;
  font-weight: 300; }

html {
  height: 100%; }

hr {
  margin-top: 0 !important;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #CDCDCD; }

/* visited link */
a:link {
  color: #515151; }

/* visited link */
a:visited {
  color: #515151; }

/* mouse over link */
a:hover {
  color: #515151; }

/* selected link */
a:active {
  color: #515151; }

a.no-underline {
  text-decoration: none !important; }

a.no-cursor {
  cursor: default !important; }

.underline {
  text-decoration: underline !important; }

.yellow-underline {
  padding-bottom: 5px;
  border-bottom: 5px solid #eec970; }

.blue-underline {
  padding-bottom: 5px;
  border-bottom: 5px solid #2F94C8; }

.light-blue-underline {
  padding-bottom: 5px;
  border-bottom: 5px solid #56c4db; }

.circular {
  font-family: 'Circular' !important; }

.background-purple {
  background-color: #f1a3c9; }

.background-red {
  background-color: #f1988d; }

.background-gray {
  background-color: #505050; }

.background-orange {
  background-color: #ffaa88; }

.font-white {
  color: white; }

.font-black {
  color: black; }

.wrapper {
  min-height: 100%;
  position: relative; }

.header {
  position: fixed;
  top: 0;
  z-index: 997;
  width: 100%;
  font-size: 15px;
  text-align: center;
  color: #969696; }
  .header a {
    color: #333333; }
  .header .links {
    padding-top: 15px; }
  .header .mobile-gap {
    display: none; }
    @media (max-width: 480px) {
      .header .mobile-gap {
        display: inline; } }
  .header .btn-default {
    background-color: #EDEDED;
    font-weight: 300; }
  @media (max-width: 768px) {
    .header .hideIfMobile {
      float: none !important;
      display: none; } }
  @media (max-width: 480px) {
    .header .pull-right {
      float: none !important; } }

.footer {
  width: 100%;
  border-top: 1px rgba(0, 0, 0, 0.1) solid;
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  background-color: #f7f7f7; }
  .footer .title-footer {
    font-family: "Circular";
    font-weight: 500;
    font-size: 1.2em; }
  .footer .form-footer {
    margin-bottom: 10px; }
  .footer input {
    border-radius: 0; }
  .footer .btn-default {
    border-radius: 0;
    background-color: #2d2d2d;
    color: white;
    font-weight: 300; }
  .footer .titles {
    font-size: 25px; }
  .footer .android {
    margin-top: 10px; }
    @media (max-width: 1024px) {
      .footer .android {
        margin-bottom: 20px;
        margin-top: 0px; } }
  @media (max-width: 1024px) {
    .footer .apple {
      margin-bottom: 20px; } }
  .footer .under {
    margin-top: 9px !important;
    margin-bottom: 9px;
    border-top: 2px solid #CDCDCD;
    width: 30%; }
  .footer .last-left {
    text-align: center;
    font-size: 14px; }
    .footer .last-left .legal-link {
      margin: 0 20px 0 0;
      color: #515151; }
    .footer .last-left .address-info {
      display: inline;
      margin: 0 20px 0 0;
      color: #515151; }
    .footer .last-left .phone-info {
      color: #515151; }
  .footer .bottom-row {
    margin-top: 4px; }

.view {
  height: 100%;
  padding-top: 70px;
  padding-bottom: 307px; }
  @media (max-width: 1023px) {
    .view {
      padding-bottom: 504px; } }
  @media (max-width: 768px) {
    .view {
      padding-bottom: 504px; } }
  @media (max-width: 480px) {
    .view {
      padding-bottom: 548px; } }
  .view.no-header {
    padding-top: 0; }
  .view.no-footer {
    padding-bottom: 0; }

.close-words {
  margin-top: 3px !important;
  font-size: 18px !important; }

.content {
  margin-top: 100px; }

.no-padding {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.no-margin {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.fill {
  min-height: 100%;
  height: 100%; }

@media (max-width: 479px) {
  .hide-mobile {
    display: none; } }

@media (min-width: 480px) and (max-width: 767px) {
  .hide-tablet {
    display: none; } }

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-desktop {
    display: none; } }

@media (min-width: 1024px) {
  .hide-widescreen {
    display: none; } }

.mobile-only {
  display: none; }
  @media (min-width: 0) and (max-width: 480px) {
    .mobile-only {
      display: initial; } }

.tablet-only {
  display: none; }
  @media (min-width: 480px) and (max-width: 768px) {
    .tablet-only {
      display: initial; } }

.desktop-only {
  display: none; }
  @media (min-width: 768px) and (max-width: 1024px) {
    .desktop-only {
      display: initial; } }

.widescreen-only {
  display: none; }
  @media (min-width: 1024px) {
    .widescreen-only {
      display: initial; } }

.uppercase-text {
  text-transform: uppercase; }
  .uppercase-text ::-webkit-input-placeholder {
    text-transform: none;
    /* WebKit browsers */ }
  .uppercase-text :-moz-placeholder {
    text-transform: none;
    /* Mozilla Firefox 4 to 18 */ }
  .uppercase-text :-moz-placeholder {
    text-transform: none;
    /* Mozilla Firefox 19+ */ }
  .uppercase-text :-ms-input-placeholder {
    text-transform: none;
    /* Internet Explorer 10+ */ }

.underline-text {
  text-decoration: underline !important; }

.text-size-1 {
  font-size: 120%; }

.text-size-2 {
  font-size: 140%; }

.text-size-3 {
  font-size: 160%; }

.text-size-4 {
  font-size: 180%; }

.text-size-5 {
  font-size: 200%; }

.text-size-6 {
  font-size: 220%; }

.pointer {
  cursor: pointer; }

.no-padding-height {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.no-margin-height {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.alert-navigation {
  border: 1px solid transparent;
  background-color: #2F94C8;
  text-align: center;
  color: white; }
  .alert-navigation a {
    display: block;
    padding: 15px;
    color: white; }

img.img-full-width {
  width: 100%; }

.tour .tour-container {
  padding: 20px 0 30px;
  background: #E3F0F7;
  color: #333; }
  .tour .tour-container input {
    border-radius: 0px;
    margin-right: 10px;
    border: 0px; }
  .tour .tour-container button {
    border-radius: 0px;
    font-weight: 300;
    background-color: #2F94C8;
    border-color: #2F94C8;
    color: white;
    font-size: 15px;
    letter-spacing: 1px; }
  .tour .tour-container .title {
    font-weight: 400;
    font-size: 20px; }
  .tour .tour-container .subtitle {
    margin-bottom: 10px; }

.tour .btn-tour {
  background-color: #2F94C8;
  color: white !important;
  border: 1px solid #2F94C8;
  border-radius: 1px;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 16px;
  padding: 17px 25px 15px 20px; }
  .tour .btn-tour:hover, .tour .btn-tour:focus, .tour .btn-tour.focus, .tour .btn-tour:active, .tour .btn-tour.active {
    background-color: #25759f;
    border: 1px solid #25759f; }

.signup-now {
  border-bottom: 1px rgba(121, 121, 121, 0.1) solid;
  padding-top: 30px;
  background-color: #555;
  color: white; }
  .signup-now h1 {
    font-family: 'Circular';
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 40px; }
    @media (max-width: 480px) {
      .signup-now h1 {
        font-size: 30px; } }
  .signup-now h3 {
    font-family: 'Circular'; }
  .signup-now .msg {
    color: #C3C3C3; }
  .signup-now section.press button {
    color: #fff;
    background-color: #FFC10E;
    border: none;
    border-radius: 2px;
    box-shadow: 0 5px #C79F26; }
  .signup-now section.press button:hover,
  .signup-now section.press button.hover {
    background-color: #FFC10E; }
  .signup-now section.press button:active,
  .signup-now section.press button.active {
    background-color: #FFC10E;
    box-shadow: 0 3px #C79F26;
    transform: translateY(5px); }
  .signup-now button {
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 15px;
    font-size: 20px;
    line-height: 1.8;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    width: 350px; }
    @media (max-width: 480px) {
      .signup-now button {
        font-size: 18px;
        width: 280px; } }
  .signup-now button:focus {
    outline: none; }

.alert-success {
  text-align: center;
  background-color: #A6EAC5;
  border: 0;
  border-radius: 0; }

.newyear {
  background-color: #2fc8c1; }

.loading {
  margin-left: 8px; }

.btn-plain {
  background-color: white;
  color: gray !important;
  padding: 12px 28px;
  border-radius: 0; }
  .btn-plain:hover, .btn-plain:focus, .btn-plain.focus, .btn-plain:active, .btn-plain.active {
    background-color: #e6e6e6;
    color: gray; }
  @media (max-width: 480px) {
    .btn-plain {
      padding-left: 12px;
      padding-right: 12px; } }

.btn-blue {
  background-color: #2F94C8;
  color: white !important;
  padding: 12px 28px;
  border-radius: 0;
  border: 1px solid #2F94C8; }
  .btn-blue:hover, .btn-blue:focus, .btn-blue.focus, .btn-blue:active, .btn-blue.active {
    background-color: #25759f;
    color: white; }
  @media (max-width: 480px) {
    .btn-blue {
      padding-left: 12px;
      padding-right: 12px; } }

.btn-yellow {
  background-color: #eec970;
  color: white !important;
  padding: 12px 28px;
  border-radius: 0;
  border: 1px solid #eec970; }
  .btn-yellow:hover, .btn-yellow:focus, .btn-yellow.focus, .btn-yellow:active, .btn-yellow.active {
    background-color: #e9b842;
    color: white; }
  @media (max-width: 480px) {
    .btn-yellow {
      padding-left: 12px;
      padding-right: 12px; } }

.btn-red {
  background-color: #ec6f5f;
  color: white !important;
  padding: 12px 28px;
  border-radius: 0;
  border: 1px solid #ec6f5f; }
  .btn-red:hover, .btn-red:focus, .btn-red.focus, .btn-red:active, .btn-red.active {
    background-color: #e74631;
    color: white; }
  @media (max-width: 480px) {
    .btn-red {
      padding-left: 12px;
      padding-right: 12px; } }

.btn-green {
  background-color: #5FEC6F;
  color: white !important;
  padding: 12px 28px;
  border-radius: 0;
  border: 1px solid #5FEC6F; }
  .btn-green:hover, .btn-green:focus, .btn-green.focus, .btn-green:active, .btn-green.active {
    background-color: #31e746;
    color: white; }
  @media (max-width: 480px) {
    .btn-green {
      padding-left: 12px;
      padding-right: 12px; } }

.btn-white {
  background-color: white;
  color: black !important;
  padding: 12px 28px;
  border-radius: 0;
  border: 1px solid black; }
  .btn-white:hover, .btn-white:focus, .btn-white.focus, .btn-white:active, .btn-white.active {
    background-color: #e6e6e6;
    color: white; }
  @media (max-width: 480px) {
    .btn-white {
      padding-left: 12px;
      padding-right: 12px; } }

.btn-light-white {
  background-color: white;
  color: #333 !important;
  padding: 12px 28px;
  border-radius: 0;
  border: 2px solid #aaa; }
  .btn-light-white .badge {
    padding: 5px 7px 3px 7px;
    background-color: #2F94C8;
    color: white; }
  .btn-light-white:hover, .btn-light-white:focus, .btn-light-white.focus, .btn-light-white:active, .btn-light-white.active {
    background-color: #e6e6e6;
    color: white; }
  @media (max-width: 480px) {
    .btn-light-white {
      padding-left: 12px;
      padding-right: 12px; } }

.btn-unselected {
  background-color: transparent;
  color: #5B5B5B !important;
  padding: 12px 28px;
  border-radius: 2px;
  border: 2px solid #5B5B5B;
  margin: 5px 0; }
  .btn-unselected:hover, .btn-unselected:focus, .btn-unselected.focus, .btn-unselected:active, .btn-unselected.active {
    background-color: #e6e6e6;
    border: 1px solid #5B5B5B;
    color: gray; }
  .btn-unselected.btn-sm, .btn-group-sm > .btn-unselected.btn {
    padding: 6px 14px;
    border: 1px solid #5B5B5B; }
  @media (max-width: 480px) {
    .btn-unselected {
      padding-left: 12px;
      padding-right: 12px; }
      .btn-unselected.btn-sm, .btn-group-sm > .btn-unselected.btn {
        padding-left: 6px;
        padding-right: 6px; } }

.btn-selected {
  background-color: transparent;
  color: #333333 !important;
  padding: 12px 28px;
  border-radius: 2px;
  border: 2px solid #333333;
  margin: 5px 0; }
  .btn-selected:hover, .btn-selected:focus, .btn-selected.focus, .btn-selected:active, .btn-selected.active {
    background-color: #e6e6e6;
    border: 1px solid #2F94C8;
    color: #2F94C8; }
  .btn-selected.btn-sm, .btn-group-sm > .btn-selected.btn {
    padding: 6px 14px;
    border: 1px solid #333333; }
  @media (max-width: 480px) {
    .btn-selected {
      padding-left: 12px;
      padding-right: 12px; }
      .btn-selected.btn-sm, .btn-group-sm > .btn-selected.btn {
        padding-left: 6px;
        padding-right: 6px; } }

.form-input {
  height: 44px;
  border-radius: 2px;
  font-size: 16px; }

.admin-home-container .dropdown .dropdown-toggle {
  border-radius: 2px; }

.admin-home-container .dropdown .dropdown-menu {
  width: 100%;
  border-radius: 2px; }
  .admin-home-container .dropdown .dropdown-menu li {
    padding: 2px; }

.admin-home-container .badge {
  padding: 4px 6px 2px;
  border-radius: 2px;
  font-weight: normal; }

.admin-home-container .list-group-item-sessions {
  background-color: #d8f7f8;
  color: #3c763d; }

.admin-product-container .btn {
  border-radius: 0px;
  font-weight: 300;
  letter-spacing: 0.5px;
  padding: 6px 25px; }

.admin-product-container .scrollable-list-container {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; }

.admin-product-container .scrollable-list {
  white-space: nowrap; }

.admin-product-container .scrollable-item {
  background: white;
  border: 1px solid gainsboro;
  border-radius: 2px;
  padding: 10px !important;
  margin: 5px; }

.shareholder-home .lead-needs td {
  font-size: 14px; }

.orders {
  background-color: #526E82; }
  .orders .title {
    font-size: 20px;
    padding: 10px;
    padding-left: 20px;
    color: white;
    font-weight: 500;
    letter-spacing: 1px; }
  .orders .down-icon {
    padding: 10px;
    color: white; }
  .orders .food {
    font-size: 22px; }
  .orders .info {
    font-size: 15px;
    color: #969696; }
  .orders .ordered-item {
    background-color: white;
    padding: 20px;
    font-size: 20px;
    border-bottom: 3px solid #EFEFEF;
    cursor: pointer; }
    .orders .ordered-item i {
      margin-top: 10px;
      color: #b8c8d3; }
  .orders .ordered-item-completed {
    background-color: #c4c4c4; }
    .orders .ordered-item-completed .food {
      color: #969696; }
    .orders .ordered-item-completed i {
      color: gray; }

.profile hr {
  border-top: 6px solid #2F94C8;
  margin-right: 70%; }

.profile .grey {
  color: grey; }

.profile .profile-image {
  width: 100%;
  margin: 0 0 10px 0; }
  @media (max-width: 768px) {
    .profile .profile-image {
      padding: 0 25%; } }

.profile .profile-details {
  background-color: #E3F0F7;
  padding: 20px; }
  .profile .profile-details .big-numbers {
    font-weight: 500; }
  .profile .profile-details .name {
    font-weight: 500;
    font-size: 40px; }
  .profile .profile-details .name-edit {
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 5px; }
    @media (max-width: 1024px) {
      .profile .profile-details .name-edit input {
        font-size: 22px;
        width: 180px; } }
    @media (max-width: 768px) {
      .profile .profile-details .name-edit input {
        font-size: 20px;
        width: 150px; } }
    @media (max-width: 480px) {
      .profile .profile-details .name-edit input {
        font-size: 18px;
        width: 120px; } }
  .profile .profile-details .btn-left {
    border-radius: 1px;
    font-weight: 300;
    font-size: 0.9em; }
  .profile .profile-details .company {
    font-size: 20px;
    margin-bottom: 5px; }
  .profile .profile-details .company-edit {
    font-size: 18px;
    margin-bottom: 5px; }
  .profile .profile-details .joined {
    margin: 0 0 10px 0; }
  .profile .profile-details .verify-text {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px; }

.profile input {
  border-radius: 0; }

.profile .guest-hours {
  color: #3c763d;
  cursor: pointer; }

.profile .guest-details {
  color: #888;
  font-size: 12px; }

.profile .guest-details-name {
  font-size: 16px; }

.profile .visit-box {
  position: relative;
  border: 1px solid black;
  height: 200px;
  padding-bottom: 20px;
  margin-bottom: 10px; }
  .profile .visit-box .description {
    font-size: 20px; }
  .profile .visit-box .hours {
    background-color: #2F94C8;
    color: white;
    position: absolute;
    width: 100%;
    bottom: 0; }
    .profile .visit-box .hours .guest-hours {
      background-color: #eec970; }

.history .title {
  font-size: 25px;
  color: #333;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px; }

.history .dates {
  padding: 10px; }
  .history .dates .current {
    font-weight: 500;
    font-size: 1.2em; }

.history .pagination {
  margin: 0;
  padding: 10px;
  font-size: 16px; }

.history .down-icon {
  padding: 10px;
  color: white; }

.history .line-item td {
  background-color: white;
  padding: 15px 15px 15px 15px;
  font-size: 15px; }

.history .btn-default {
  font-weight: 300;
  border-radius: 1px; }

.history .titles {
  background-color: #E3F0F7; }
  .history .titles th {
    padding: 15px 15px 15px 15px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase; }

.splash-a {
  background-color: #FCFCFC;
  background-attachment: fixed; }
  .splash-a .circular {
    font-family: 'Circular'; }
  .splash-a .underlined {
    border-bottom: 4px solid #2F94C8;
    padding-bottom: 5px; }
    .splash-a .underlined:hover, .splash-a .underlined:focus, .splash-a .underlined.focus, .splash-a .underlined:active, .splash-a .underlined.active {
      text-decoration: none; }
  .splash-a h1 {
    font-family: 'Circular'; }
  .splash-a h2 {
    font-weight: 400; }
  .splash-a h3 {
    font-family: 'Circular';
    font-weight: 500;
    font-size: 33px; }
    @media (max-width: 480px) {
      .splash-a h3 {
        font-size: 30px; } }
  .splash-a h4 {
    font-size: 21px;
    font-weight: 300;
    margin-top: 18px; }
    @media (max-width: 480px) {
      .splash-a h4 {
        font-size: 20px; } }
  .splash-a .btn-blue {
    font-weight: 300;
    border-radius: 2px; }
  .splash-a .btn-tour {
    font-weight: 300;
    color: #777 !important;
    border: 1px solid #777;
    border-radius: 2px; }
  .splash-a section.press button {
    color: #fff;
    background-color: #FFC10E;
    border: none;
    border-radius: 2px;
    box-shadow: 0 5px #C79F26;
    font-family: 'Circular'; }
  .splash-a section.press button:hover,
  .splash-a section.press button.hover {
    background-color: #FFC10E; }
  .splash-a section.press button:active,
  .splash-a section.press button.active {
    background-color: #FFC10E;
    box-shadow: 0 3px #C79F26;
    transform: translateY(5px); }
  .splash-a button {
    display: inline-block;
    padding: 12px;
    font-size: 20px;
    line-height: 1.8;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    width: 260px; }
    @media (max-width: 480px) {
      .splash-a button {
        font-size: 18px;
        width: 235px; } }
  .splash-a button:focus {
    outline: none; }
  .splash-a .section {
    padding-top: 50px;
    padding-bottom: 50px; }
  .splash-a .spotlight {
    background-image: url("../images/splash/spotlight.jpg");
    background-size: cover;
    background-position-y: 10%;
    height: 640px; }
    @media (max-width: 768px) {
      .splash-a .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .splash-a .spotlight {
        height: 480px; } }
    @media (max-width: 768px) {
      .splash-a .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .splash-a .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .splash-a .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      padding: 7%; }
      @media (max-width: 480px) {
        .splash-a .spotlight .head {
          padding: 0% 5%; } }
      .splash-a .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
      .splash-a .spotlight .head h1 {
        font-size: 49px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .splash-a .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0px; } }
      .splash-a .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .splash-a .spotlight .head h2 {
            font-size: 18px; } }
  .splash-a .section-steps {
    padding-bottom: 80px; }
    .splash-a .section-steps p {
      font-weight: 500;
      font-size: 20px; }
    .splash-a .section-steps h3 {
      font-family: 'Circular';
      font-weight: 500;
      letter-spacing: 0px;
      font-size: 22px; }
      @media (max-width: 480px) {
        .splash-a .section-steps h3 {
          font-size: 30px; } }
    .splash-a .section-steps i {
      padding-top: 55px; }
    .splash-a .section-steps .step-line {
      padding-top: 82px;
      vertical-align: top; }
      .splash-a .section-steps .step-line hr {
        border-style: dashed;
        border-color: gray; }
  .splash-a .section-confused {
    background-color: #E3F0F7;
    padding-top: 30px;
    padding-bottom: 30px; }
    @media (max-width: 1024px) {
      .splash-a .section-confused {
        padding: 30px; } }
    .splash-a .section-confused .answer {
      padding-top: 40px; }
      @media (max-width: 1024px) {
        .splash-a .section-confused .answer {
          padding-top: 0px; } }
    .splash-a .section-confused .girl-box {
      padding: 30px; }
      @media (max-width: 1024px) {
        .splash-a .section-confused .girl-box img {
          max-height: 150px; } }
  .splash-a .section-spaces {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .splash-a .section-spaces .padding {
      padding: 20px; }
      .splash-a .section-spaces .padding h3 {
        margin-bottom: 10px;
        font-weight: 300; }
    @media (min-width: 992px) {
      .splash-a .section-spaces .container-slick {
        width: 100%; } }
    @media (min-width: 1200px) {
      .splash-a .section-spaces .container-slick {
        width: 1170px; } }
    .splash-a .section-spaces .space {
      padding-left: 0;
      padding-right: 0; }
      .splash-a .section-spaces .space .info {
        background-color: white;
        position: relative; }
      .splash-a .section-spaces .space .workspace-image {
        width: 100%; }
      .splash-a .section-spaces .space .workspace-container {
        padding: 16px 0px 5px 0px; }
        @media (max-width: 1024px) {
          .splash-a .section-spaces .space .workspace-container {
            padding-bottom: 0;
            padding-right: 20px; } }
        .splash-a .section-spaces .space .workspace-container .workspace-title {
          margin-bottom: 5px; }
          .splash-a .section-spaces .space .workspace-container .workspace-title h3 {
            font-size: 20px;
            font-weight: 400;
            margin: 0;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            letter-spacing: 0px;
            text-overflow: ellipsis; }
        .splash-a .section-spaces .space .workspace-container .workspace-nh {
          font-size: 13px;
          color: grey; }
  .splash-a .section-laptop .wrap {
    padding-top: 150px;
    padding-left: 20px; }
    .splash-a .section-laptop .wrap .mobile-icon {
      padding-top: 20px; }
      @media (max-width: 1024px) {
        .splash-a .section-laptop .wrap .mobile-icon {
          padding: 0px; } }
    @media (max-width: 1024px) {
      .splash-a .section-laptop .wrap {
        padding: 0px; } }
  .splash-a .section-laptop .macbook {
    padding: 30px; }
  .splash-a .section-uses {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .splash-a .section-uses img {
      padding: 20px; }
      @media (max-width: 768px) {
        .splash-a .section-uses img {
          padding: 8px;
          margin-top: 20px; } }
  .splash-a .section-pricing {
    padding-bottom: 80px; }
    .splash-a .section-pricing .satisfaction {
      font-size: 20px;
      font-weight: 500; }
    @media (max-width: 768px) {
      .splash-a .section-pricing .tier {
        padding: 0 50px; } }
    @media (max-width: 480px) {
      .splash-a .section-pricing .tier {
        padding: 0 5px; } }
    .splash-a .section-pricing .tier .pricing-box {
      box-shadow: #d8d8d8 1px 1px 1px;
      background-color: white;
      border: 1px solid #ececec;
      padding: 10px; }
      .splash-a .section-pricing .tier .pricing-box .mo {
        color: #333;
        font-size: 16px; }
      .splash-a .section-pricing .tier .pricing-box li {
        padding-top: 5px; }
      .splash-a .section-pricing .tier .pricing-box .dollar {
        font-size: 48px;
        font-weight: 300; }
      .splash-a .section-pricing .tier .pricing-box .blurb {
        color: #8C8C8C;
        font-size: 16px;
        margin-bottom: 30px;
        font-weight: 300; }
      .splash-a .section-pricing .tier .pricing-box .name {
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 10px; }
    .splash-a .section-pricing .tier .btn-next {
      font-weight: 300;
      border: 0;
      border-radius: 0;
      padding: 20px 70px;
      color: white;
      font-size: 18px;
      background-color: #2F94C8; }
    .splash-a .section-pricing .tier.create .dollar {
      color: #e85959; }
    .splash-a .section-pricing .tier.create .btn-next {
      background-color: #e85959; }
    .splash-a .section-pricing .tier.explore .dollar {
      color: #2fc8b3; }
    .splash-a .section-pricing .tier.explore .btn-next {
      background-color: #2fc8b3; }
    .splash-a .section-pricing .tier.inspire .dollar {
      color: #4cb5ea; }
    .splash-a .section-pricing .tier.inspire .btn-next {
      background-color: #4cb5ea; }
  .splash-a .break-section {
    color: white;
    height: 330px;
    text-align: center;
    background-image: url("../images/splash/roughdraft1.jpg");
    background-size: cover;
    background-position-y: 59%; }
    @media (max-width: 768px) {
      .splash-a .break-section {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .splash-a .break-section {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .splash-a .break-section .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
      @media (max-width: 480px) {
        .splash-a .break-section .head {
          padding: 0% 5%; } }
      .splash-a .break-section .head .short-top {
        margin-top: 10px; }
      .splash-a .break-section .head h1 {
        font-size: 40px; }
      .splash-a .break-section .head h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .splash-a .break-section .head h2 {
            font-size: 18px; } }
  .splash-a .section-photos {
    color: white;
    background-color: #555; }
    .splash-a .section-photos .no-margin {
      margin: 0px; }
    .splash-a .section-photos p {
      color: #C3C3C3; }
    .splash-a .section-photos .no-padding {
      padding: 0px; }
    .splash-a .section-photos .btn-mini {
      font-weight: 300;
      font-size: 16px;
      background-color: transparent;
      color: white;
      border: 2px #C3C3C3 solid;
      border-radius: 2px; }
    .splash-a .section-photos .big-content {
      padding-top: 50px;
      padding-left: 50px; }
      @media (max-width: 768px) {
        .splash-a .section-photos .big-content {
          padding-left: 30px; } }
      @media (max-width: 480px) {
        .splash-a .section-photos .big-content {
          padding: 20px; } }
  .splash-a .section-review {
    background-color: #F5F5F5;
    padding-bottom: 30px; }
    .splash-a .section-review .names {
      font-size: 20px;
      margin-bottom: 0px;
      margin-top: 5px; }
    .splash-a .section-review .handle {
      color: grey; }
    .splash-a .section-review .tweet {
      background-color: white;
      padding: 20px;
      border-radius: 2px;
      margin-top: 4px; }
      .splash-a .section-review .tweet img {
        max-height: 80px; }
    .splash-a .section-review .quote {
      font-size: 18px; }
    .splash-a .section-review .quotes {
      font-size: 22px; }
    .splash-a .section-review a:hover {
      text-decoration: none;
      cursor: pointer; }
    .splash-a .section-review a:active {
      text-decoration: none;
      cursor: pointer; }
    .splash-a .section-review a:visited {
      text-decoration: none;
      cursor: pointer; }
    .splash-a .section-review .fa {
      color: #eec970; }
    .splash-a .section-review .croissanter {
      font-family: "Circular";
      font-size: 35px;
      line-height: 1.1;
      font-weight: 400; }
      @media (max-width: 480px) {
        .splash-a .section-review .croissanter {
          font-size: 22px; } }
    .splash-a .section-review .croissanter:hover {
      text-decoration: underline; }
    .splash-a .section-review .title {
      line-height: 1em; }
    .splash-a .section-review .boxes {
      background-color: white;
      padding: 40px; }
    .splash-a .section-review .yelp {
      text-align: center; }
    .splash-a .section-review .yelp-reviews {
      max-width: 600px;
      margin: auto; }
      .splash-a .section-review .yelp-reviews .panel {
        padding: 20px;
        border: 0px;
        border: 1px solid transparent;
        border-radius: 2px;
        -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
        .splash-a .section-review .yelp-reviews .panel .star-box {
          padding-top: 4px; }
        .splash-a .section-review .yelp-reviews .panel .yelp-logo {
          padding-bottom: 2px;
          vertical-align: bottom; }
  .splash-a .section-press {
    padding-bottom: 20px;
    padding-top: 0px;
    background-color: #F5F5F5; }
    .splash-a .section-press .block {
      background-color: white;
      height: 130px; }
    @media (min-width: 1025px) {
      .splash-a .section-press .press-forbes {
        margin-top: 3px;
        max-width: 130px; } }
    @media (min-width: 1025px) {
      .splash-a .section-press .press-techcrunch {
        margin-top: 5px;
        margin-left: 5px; } }
    @media (min-width: 1025px) {
      .splash-a .section-press .press-digitalnyc {
        margin-left: 18px; } }
    @media (min-width: 1025px) {
      .splash-a .section-press .press-entrepreneur {
        max-width: 180px;
        margin-top: 8px;
        margin-left: 25px; } }
    @media (max-width: 768px) {
      .splash-a .section-press .mobile-padding {
        padding-top: 5%; } }
  .splash-a .section-questions {
    background-image: url("../images/splash/both.jpg");
    background-size: cover;
    background-position-y: 59%; }
    @media (max-width: 768px) {
      .splash-a .section-questions {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .splash-a .section-questions {
        background-position-y: 35%;
        background-position-x: 35%; } }
    @media (max-width: 480px) {
      .splash-a .section-questions {
        padding-bottom: 100px; } }
  .splash-a .create .dollar {
    color: #e85959; }
  .splash-a .create .btn-next {
    background-color: #e85959; }
  .splash-a .explore .dollar {
    color: #2fc8b3; }
  .splash-a .explore .btn-next {
    background-color: #2fc8b3; }
  .splash-a .inspire .dollar {
    color: #4cb5ea; }
  .splash-a .inspire .btn-next {
    background-color: #4cb5ea; }
  .splash-a .yelp-banner {
    width: 126px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("../images/splash/yelp.png");
    background-size: 100%; }

.splash-b {
  background-color: #FCFCFC;
  background-attachment: fixed; }
  .splash-b .circular {
    font-family: 'Circular'; }
  .splash-b .underlined {
    border-bottom: 4px solid #2F94C8;
    padding-bottom: 5px; }
    .splash-b .underlined:hover, .splash-b .underlined:focus, .splash-b .underlined.focus, .splash-b .underlined:active, .splash-b .underlined.active {
      text-decoration: none; }
  .splash-b h1 {
    font-family: 'Circular'; }
  .splash-b h2 {
    font-weight: 400; }
  .splash-b h3 {
    font-family: 'Circular';
    font-weight: 500;
    font-size: 33px; }
    @media (max-width: 480px) {
      .splash-b h3 {
        font-size: 30px; } }
  .splash-b h4 {
    font-size: 21px;
    font-weight: 300;
    margin-top: 18px; }
    @media (max-width: 480px) {
      .splash-b h4 {
        font-size: 20px; } }
  .splash-b .btn-blue {
    font-weight: 300;
    border-radius: 2px; }
  .splash-b .btn-tour {
    font-weight: 300;
    color: #777 !important;
    border: 1px solid #777;
    border-radius: 2px; }
  .splash-b section.press button {
    color: #fff;
    background-color: #FFC10E;
    border: none;
    border-radius: 2px;
    box-shadow: 0 5px #C79F26;
    font-family: 'Circular'; }
  .splash-b section.press button:hover,
  .splash-b section.press button.hover {
    background-color: #FFC10E; }
  .splash-b section.press button:active,
  .splash-b section.press button.active {
    background-color: #FFC10E;
    box-shadow: 0 3px #C79F26;
    transform: translateY(5px); }
  .splash-b button {
    display: inline-block;
    padding: 12px;
    font-size: 20px;
    line-height: 1.8;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    width: 260px; }
    @media (max-width: 480px) {
      .splash-b button {
        font-size: 18px;
        width: 235px; } }
  .splash-b button:focus {
    outline: none; }
  .splash-b .section {
    padding-top: 50px;
    padding-bottom: 50px; }
  .splash-b .spotlight {
    background-image: url("../images/splash/spotlight.jpg");
    background-size: cover;
    background-position-y: 10%;
    height: 640px; }
    @media (max-width: 768px) {
      .splash-b .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .splash-b .spotlight {
        height: 480px; } }
    @media (max-width: 768px) {
      .splash-b .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .splash-b .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .splash-b .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      padding: 7%; }
      @media (max-width: 480px) {
        .splash-b .spotlight .head {
          padding: 0% 5%; } }
      .splash-b .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
      .splash-b .spotlight .head h1 {
        font-size: 49px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .splash-b .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0px; } }
      .splash-b .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .splash-b .spotlight .head h2 {
            font-size: 18px; } }
  .splash-b .section-steps {
    padding-bottom: 80px; }
    .splash-b .section-steps p {
      font-weight: 500;
      font-size: 20px; }
    .splash-b .section-steps h3 {
      font-family: 'Circular';
      font-weight: 500;
      letter-spacing: 0px;
      font-size: 22px; }
      @media (max-width: 480px) {
        .splash-b .section-steps h3 {
          font-size: 30px; } }
    .splash-b .section-steps i {
      padding-top: 55px; }
    .splash-b .section-steps .step-line {
      padding-top: 82px;
      vertical-align: top; }
      .splash-b .section-steps .step-line hr {
        border-style: dashed;
        border-color: gray; }
  .splash-b .section-confused {
    background-color: #E3F0F7;
    padding-top: 30px;
    padding-bottom: 30px; }
    @media (max-width: 1024px) {
      .splash-b .section-confused {
        padding: 30px; } }
    .splash-b .section-confused .answer {
      padding-top: 40px; }
      @media (max-width: 1024px) {
        .splash-b .section-confused .answer {
          padding-top: 0px; } }
    .splash-b .section-confused .girl-box {
      padding: 30px; }
      @media (max-width: 1024px) {
        .splash-b .section-confused .girl-box img {
          max-height: 150px; } }
  .splash-b .section-spaces {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .splash-b .section-spaces .padding {
      padding: 20px; }
      .splash-b .section-spaces .padding h3 {
        margin-bottom: 10px;
        font-weight: 300; }
    @media (min-width: 992px) {
      .splash-b .section-spaces .container-slick {
        width: 100%; } }
    @media (min-width: 1200px) {
      .splash-b .section-spaces .container-slick {
        width: 1170px; } }
    .splash-b .section-spaces .space {
      padding-left: 0;
      padding-right: 0; }
      .splash-b .section-spaces .space .info {
        background-color: white;
        position: relative; }
      .splash-b .section-spaces .space .workspace-image {
        width: 100%; }
      .splash-b .section-spaces .space .workspace-container {
        padding: 16px 0px 5px 0px; }
        @media (max-width: 1024px) {
          .splash-b .section-spaces .space .workspace-container {
            padding-bottom: 0;
            padding-right: 20px; } }
        .splash-b .section-spaces .space .workspace-container .workspace-title {
          margin-bottom: 5px; }
          .splash-b .section-spaces .space .workspace-container .workspace-title h3 {
            font-size: 20px;
            font-weight: 400;
            margin: 0;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            letter-spacing: 0px;
            text-overflow: ellipsis; }
        .splash-b .section-spaces .space .workspace-container .workspace-nh {
          font-size: 13px;
          color: grey; }
  .splash-b .section-laptop .wrap {
    padding-top: 150px;
    padding-left: 20px; }
    .splash-b .section-laptop .wrap .mobile-icon {
      padding-top: 20px; }
      @media (max-width: 1024px) {
        .splash-b .section-laptop .wrap .mobile-icon {
          padding: 0px; } }
    @media (max-width: 1024px) {
      .splash-b .section-laptop .wrap {
        padding: 0px; } }
  .splash-b .section-laptop .macbook {
    padding: 30px; }
  .splash-b .section-uses {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .splash-b .section-uses img {
      padding: 20px; }
      @media (max-width: 768px) {
        .splash-b .section-uses img {
          padding: 8px;
          margin-top: 20px; } }
  .splash-b .section-pricing {
    padding-bottom: 80px; }
    .splash-b .section-pricing .satisfaction {
      font-size: 20px;
      font-weight: 500; }
    @media (max-width: 768px) {
      .splash-b .section-pricing .tier {
        padding: 0 50px; } }
    @media (max-width: 480px) {
      .splash-b .section-pricing .tier {
        padding: 0 5px; } }
    .splash-b .section-pricing .tier .pricing-box {
      box-shadow: #d8d8d8 1px 1px 1px;
      background-color: white;
      border: 1px solid #ececec;
      padding: 10px; }
      .splash-b .section-pricing .tier .pricing-box .mo {
        color: #333;
        font-size: 16px; }
      .splash-b .section-pricing .tier .pricing-box li {
        padding-top: 5px; }
      .splash-b .section-pricing .tier .pricing-box .dollar {
        font-size: 48px;
        font-weight: 300; }
      .splash-b .section-pricing .tier .pricing-box .blurb {
        color: #8C8C8C;
        font-size: 16px;
        margin-bottom: 30px;
        font-weight: 300; }
      .splash-b .section-pricing .tier .pricing-box .name {
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 10px; }
    .splash-b .section-pricing .tier .btn-next {
      font-weight: 300;
      border: 0;
      border-radius: 0;
      padding: 20px 70px;
      color: white;
      font-size: 18px;
      background-color: #2F94C8; }
    .splash-b .section-pricing .tier.create .dollar {
      color: #e85959; }
    .splash-b .section-pricing .tier.create .btn-next {
      background-color: #e85959; }
    .splash-b .section-pricing .tier.explore .dollar {
      color: #2fc8b3; }
    .splash-b .section-pricing .tier.explore .btn-next {
      background-color: #2fc8b3; }
    .splash-b .section-pricing .tier.inspire .dollar {
      color: #4cb5ea; }
    .splash-b .section-pricing .tier.inspire .btn-next {
      background-color: #4cb5ea; }
  .splash-b .break-section {
    color: white;
    height: 330px;
    text-align: center;
    background-image: url("../images/splash/roughdraft1.jpg");
    background-size: cover;
    background-position-y: 59%; }
    @media (max-width: 768px) {
      .splash-b .break-section {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .splash-b .break-section {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .splash-b .break-section .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
      @media (max-width: 480px) {
        .splash-b .break-section .head {
          padding: 0% 5%; } }
      .splash-b .break-section .head .short-top {
        margin-top: 10px; }
      .splash-b .break-section .head h1 {
        font-size: 40px; }
      .splash-b .break-section .head h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .splash-b .break-section .head h2 {
            font-size: 18px; } }
  .splash-b .section-photos {
    color: white;
    background-color: #555; }
    .splash-b .section-photos .no-margin {
      margin: 0px; }
    .splash-b .section-photos p {
      color: #C3C3C3; }
    .splash-b .section-photos .no-padding {
      padding: 0px; }
    .splash-b .section-photos .btn-mini {
      font-weight: 300;
      font-size: 16px;
      background-color: transparent;
      color: white;
      border: 2px #C3C3C3 solid;
      border-radius: 2px; }
    .splash-b .section-photos .big-content {
      padding-top: 50px;
      padding-left: 50px; }
      @media (max-width: 768px) {
        .splash-b .section-photos .big-content {
          padding-left: 30px; } }
      @media (max-width: 480px) {
        .splash-b .section-photos .big-content {
          padding: 20px; } }
  .splash-b .section-review {
    background-color: #F5F5F5;
    padding-bottom: 30px; }
    .splash-b .section-review .names {
      font-size: 20px;
      margin-bottom: 0px;
      margin-top: 5px; }
    .splash-b .section-review .handle {
      color: grey; }
    .splash-b .section-review .tweet {
      background-color: white;
      padding: 20px;
      border-radius: 2px;
      margin-top: 4px; }
      .splash-b .section-review .tweet img {
        max-height: 80px; }
    .splash-b .section-review .quote {
      font-size: 18px; }
    .splash-b .section-review .quotes {
      font-size: 22px; }
    .splash-b .section-review a:hover {
      text-decoration: none;
      cursor: pointer; }
    .splash-b .section-review a:active {
      text-decoration: none;
      cursor: pointer; }
    .splash-b .section-review a:visited {
      text-decoration: none;
      cursor: pointer; }
    .splash-b .section-review .fa {
      color: #eec970; }
    .splash-b .section-review .croissanter {
      font-family: "Circular";
      font-size: 35px;
      line-height: 1.1;
      font-weight: 400; }
      @media (max-width: 480px) {
        .splash-b .section-review .croissanter {
          font-size: 22px; } }
    .splash-b .section-review .croissanter:hover {
      text-decoration: underline; }
    .splash-b .section-review .title {
      line-height: 1em; }
    .splash-b .section-review .boxes {
      background-color: white;
      padding: 40px; }
    .splash-b .section-review .yelp {
      text-align: center; }
    .splash-b .section-review .yelp-reviews {
      max-width: 600px;
      margin: auto; }
      .splash-b .section-review .yelp-reviews .panel {
        padding: 20px;
        border: 0px;
        border: 1px solid transparent;
        border-radius: 2px;
        -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
        .splash-b .section-review .yelp-reviews .panel .star-box {
          padding-top: 4px; }
        .splash-b .section-review .yelp-reviews .panel .yelp-logo {
          padding-bottom: 2px;
          vertical-align: bottom; }
  .splash-b .section-press {
    padding-bottom: 20px;
    padding-top: 0px;
    background-color: #F5F5F5; }
    .splash-b .section-press .block {
      background-color: white;
      height: 130px; }
    @media (min-width: 1025px) {
      .splash-b .section-press .press-forbes {
        margin-top: 3px;
        max-width: 130px; } }
    @media (min-width: 1025px) {
      .splash-b .section-press .press-techcrunch {
        margin-top: 5px;
        margin-left: 5px; } }
    @media (min-width: 1025px) {
      .splash-b .section-press .press-digitalnyc {
        margin-left: 18px; } }
    @media (min-width: 1025px) {
      .splash-b .section-press .press-entrepreneur {
        max-width: 180px;
        margin-top: 8px;
        margin-left: 25px; } }
    @media (max-width: 768px) {
      .splash-b .section-press .mobile-padding {
        padding-top: 5%; } }
  .splash-b .section-questions {
    background-image: url("../images/splash/both.jpg");
    background-size: cover;
    background-position-y: 59%; }
    @media (max-width: 768px) {
      .splash-b .section-questions {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .splash-b .section-questions {
        background-position-y: 35%;
        background-position-x: 35%; } }
    @media (max-width: 480px) {
      .splash-b .section-questions {
        padding-bottom: 100px; } }
  .splash-b .create .dollar {
    color: #e85959; }
  .splash-b .create .btn-next {
    background-color: #e85959; }
  .splash-b .explore .dollar {
    color: #2fc8b3; }
  .splash-b .explore .btn-next {
    background-color: #2fc8b3; }
  .splash-b .inspire .dollar {
    color: #4cb5ea; }
  .splash-b .inspire .btn-next {
    background-color: #4cb5ea; }
  .splash-b .yelp-banner {
    width: 126px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("../images/splash/yelp.png");
    background-size: 100%; }

.contact .top {
  background-image: url("../images/ngin.jpg");
  background-size: cover;
  height: 300px;
  background-position-y: 32%; }
  @media (max-width: 768px) {
    .contact .top {
      height: 300px;
      background-position-x: 43%; } }
  .contact .top h1 {
    text-align: center;
    line-height: 300px;
    margin: 0px;
    font-size: 50px;
    color: white; }
    @media (max-width: 768px) {
      .contact .top h1 {
        line-height: 300px; } }

.contact .input-lg, .contact .form-horizontal .form-group-lg .form-control, .form-horizontal .form-group-lg .contact .form-control, .contact .input-group-lg > .form-control, .contact
.input-group-lg > .input-group-addon, .contact
.input-group-lg > .input-group-btn > .btn {
  border-radius: 0px; }

.contact .btn-submit {
  border-radius: 0px;
  background-color: #2F94C8;
  font-weight: 300; }

.discover {
  background-color: whitesmoke; }
  .discover .more-spaces .images-container {
    background-image: url("../images/discover/wov.png");
    z-index: -999999; }
  .discover .more-spaces .contents {
    background-color: white; }
  .discover .alert {
    background-color: #BBE6F3;
    border: 0;
    color: #333;
    border-radius: 2px;
    padding: 20px;
    text-align: left; }
    .discover .alert p {
      font-size: 13px;
      padding-top: 10px; }
    .discover .alert .close {
      padding-right: 20px; }
    .discover .alert img {
      max-height: 70px; }
    .discover .alert .btn-default {
      padding: 10px 25px;
      border-radius: 1px;
      margin-top: 10px;
      background-color: white;
      border: 0px;
      font-weight: 300;
      letter-spacing: 0.3px; }
    .discover .alert .titles {
      font-weight: 500; }
    .discover .alert .books {
      font-weight: 500;
      color: #333;
      font-size: 21px; }
  .discover a {
    color: #515151;
    text-decoration: none; }
  .discover .selected {
    border: 1px #bbb solid !important;
    background-color: #E3F0F7 !important;
    color: black !important; }
    .discover .selected .neighborhood {
      color: black !important; }
  .discover .venue-container {
    color: #515151;
    text-decoration: none;
    cursor: pointer; }
  .discover .venue {
    background-color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
    border: 1px #DADADA solid; }
    .discover .venue:hover {
      box-shadow: 1px 1px 1px #888888; }
    .discover .venue .images {
      position: relative;
      overflow: hidden; }
      .discover .venue .images .img-responsive {
        display: inline-block;
        width: 100%; }
    .discover .venue img {
      -webkit-transition: all 0.5s ease;
      /* Safari and Chrome */
      -moz-transition: all 0.5s ease;
      /* Firefox */
      -ms-transition: all 0.5s ease;
      /* IE 9 */
      -o-transition: all 0.5s ease;
      /* Opera */
      transition: all 0.5s ease; }
      .discover .venue img.grey {
        -webkit-filter: grayscale(1) !important;
        -moz-filter: grayscale(1) !important;
        -ms-filter: grayscale(1) !important;
        filter: grayscale(1) !important; }
    .discover .venue .availability {
      position: absolute;
      text-align: center;
      bottom: 5px;
      width: 100%; }
      .discover .venue .availability > span {
        background-color: #2F94C8; }
    .discover .venue .badge {
      font-weight: 200;
      padding: 5px 15px;
      font-size: 12px;
      border-radius: 1px; }
    .discover .venue .contents {
      padding: 15px; }
      .discover .venue .contents .neighborhood {
        font-size: 13px;
        color: gray; }
        .discover .venue .contents .neighborhood .distance {
          text-transform: lowercase; }
      .discover .venue .contents .title {
        font-size: 20px;
        font-weight: 400;
        color: black; }
      .discover .venue .contents .closing {
        color: red;
        font-weight: 500;
        text-transform: none;
        font-size: 16px; }
  .discover .city-dropdown .dropdown-menu {
    width: 100%;
    border-radius: 2px; }
    .discover .city-dropdown .dropdown-menu li {
      padding: 5px; }
  .discover .amenity-label {
    margin: 4px 0 10px;
    font-weight: 300;
    font-size: 14px; }
  .discover .btn-toggle {
    border-radius: 2px;
    padding: 10px; }
  .discover .heart {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 50px;
    width: 50px; }
  .discover .heart-on {
    background-image: url("../images/heart-red.png");
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: center; }
  .discover .heart-off {
    background-image: url("../images/heart-white.png");
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: center; }

.subway-circle-1,
.subway-circle-2,
.subway-circle-3,
.subway-circle-4,
.subway-circle-5,
.subway-circle-6,
.subway-circle-7,
.subway-circle-N,
.subway-circle-Q,
.subway-circle-R,
.subway-circle-B,
.subway-circle-F,
.subway-circle-D,
.subway-circle-M,
.subway-circle-S,
.subway-circle-L,
.subway-circle-J,
.subway-circle-Z,
.subway-circle-G,
.subway-circle-A,
.subway-circle-C,
.subway-circle-E {
  display: -webkit-inline-flex;
  display: inline-flex;
  border-radius: 50%; }

.subway-circle-1,
.subway-circle-2,
.subway-circle-3 {
  background-color: #ee352e; }

.subway-circle-4,
.subway-circle-5,
.subway-circle-6 {
  background-color: #00933c; }

.subway-circle-7 {
  background-color: #b933ad; }

.subway-circle-N,
.subway-circle-Q,
.subway-circle-R {
  background-color: #fccc0a; }
  .subway-circle-N .subway-text,
  .subway-circle-Q .subway-text,
  .subway-circle-R .subway-text {
    color: black; }

.subway-circle-B,
.subway-circle-F,
.subway-circle-D,
.subway-circle-M {
  background-color: #ff6319; }

.subway-circle-S {
  background-color: #808183; }

.subway-circle-L {
  background-color: #a7a9ac; }

.subway-circle-J,
.subway-circle-Z {
  background-color: #996633; }

.subway-circle-G {
  background-color: #6cbe45; }

.subway-circle-A,
.subway-circle-C,
.subway-circle-E {
  background-color: #2850ad; }

.subway-icon {
  width: 1.95em;
  height: 1.95em; }

.subway-text {
  margin: auto;
  display: inline-block;
  font-weight: 500;
  font-family: Helvetica, sans-serif;
  color: white;
  font-size: 1.3em; }
  @supports (-webkit-appearance: none) {
    .subway-text {
      position: relative;
      top: 0.06em; } }

.about a {
  text-decoration: none;
  font-family: 'Circular' !important;
  font-weight: 300;
  color: #333; }

.about .top {
  background-image: url("../images/about/bg.jpg");
  background-size: cover;
  height: 300px;
  background-position-y: 50%; }
  @media (max-width: 768px) {
    .about .top {
      height: 300px;
      background-position-x: 43%; } }
  .about .top h1 {
    text-align: center;
    line-height: 300px;
    margin: 0px;
    font-size: 50px;
    color: white; }
    @media (max-width: 768px) {
      .about .top h1 {
        line-height: 300px; } }

.about .title {
  border-bottom: 4px solid #eec970;
  padding-bottom: 10px;
  display: inline-block;
  font-family: 'Circular'; }

.about hr {
  border-bottom: 3px solid #5D5E61;
  width: 50px;
  border-top: 0px;
  display: inline-block; }

.about .mission {
  padding-top: 10px;
  font-size: 20px; }
  @media (max-width: 1024px) {
    .about .mission {
      font-size: 25px;
      margin-left: 30px;
      margin-right: 30px; } }
  @media (max-width: 768px) {
    .about .mission {
      font-size: 20px;
      margin: 0px; } }
  @media (max-width: 480px) {
    .about .mission {
      font-size: 20px;
      margin: 0px;
      font-weight: 500; } }

.about .meeting {
  margin: 0px; }
  .about .meeting .col-md-6 {
    padding: 0px;
    margin: 0px; }

.about .theteam {
  padding: 30px;
  margin-top: 20px; }
  .about .theteam .intro {
    font-size: 30px;
    text-align: center;
    margin-left: 108px;
    margin-right: 108px;
    padding-top: 20px; }
    @media (max-width: 1024px) {
      .about .theteam .intro {
        font-size: 25px;
        margin-left: 20px;
        margin-right: 20px; } }
    @media (max-width: 480px) {
      .about .theteam .intro {
        font-size: 20px;
        margin: 0px; } }

.about .columns {
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px; }
  @media (max-width: 480px) {
    .about .columns {
      -moz-column-count: 1;
      -moz-column-gap: 0px;
      -webkit-column-count: 1;
      -webkit-column-gap: 0px; } }

.about .padding {
  padding: 10px 100px; }
  @media (max-width: 1024px) {
    .about .padding {
      padding: 10px; } }

.about .profile {
  text-align: center; }
  @media (max-width: 480px) {
    .about .profile {
      padding-bottom: 10px; } }
  .about .profile .name {
    font-size: 25px; }

.login {
  background-image: url("../images/patterns/geometry3.png"); }
  .login input {
    border-radius: 0; }
  .login .not-member {
    font-weight: 400; }
  .login .btn-primary {
    border-radius: 0;
    font-weight: 300;
    background-color: #2F94C8; }
  .login .panel-body {
    background-color: white;
    padding: 40px; }

.modal .input-lg, .modal .form-horizontal .form-group-lg .form-control, .form-horizontal .form-group-lg .modal .form-control, .modal .input-group-lg > .form-control, .modal
.input-group-lg > .input-group-addon, .modal
.input-group-lg > .input-group-btn > .btn {
  border-radius: 0px; }

.modal .btn {
  border-radius: 0px;
  font-weight: 300;
  letter-spacing: 0.5px;
  padding: 6px 25px; }

.modal .btn-primary {
  background-color: #2F94C8; }
  .modal .btn-primary:hover, .modal .btn-primary:focus, .modal .btn-primary.focus, .modal .btn-primary:active, .modal .btn-primary.active {
    background-color: #25759f;
    color: white; }

.modal .primary-link-button {
  color: white; }
  .modal .primary-link-button:hover, .modal .primary-link-button:focus, .modal .primary-link-button.focus, .modal .primary-link-button:active, .modal .primary-link-button.active {
    color: white; }

.faq .bold-link {
  text-decoration: none;
  font-family: 'Circular' !important;
  font-weight: 300;
  color: #333; }

.faq .topics h4 {
  padding-top: 10px; }

.faq h2 {
  font-family: 'Circular';
  border-bottom: 4px solid #eec970;
  padding-bottom: 10px;
  display: inline-block; }

.faq .question {
  font-family: 'Circular'; }

.faq .top {
  background-image: url("../images/faq2.jpg");
  background-size: cover;
  height: 300px; }
  @media (max-width: 768px) {
    .faq .top {
      height: 300px;
      background-position-x: 43%; } }
  .faq .top h1 {
    text-align: center;
    line-height: 300px;
    margin: 0px;
    font-size: 50px;
    color: white; }
    @media (max-width: 768px) {
      .faq .top h1 {
        line-height: 300px; } }

.thankyou {
  background-image: url("../images/patterns/geometry2.png"); }
  .thankyou .main {
    background-color: white;
    border: 2px solid lightgrey;
    padding: 30px; }
    .thankyou .main .thank-you {
      max-height: 100px; }
    .thankyou .main .ready {
      line-height: 1.5em; }
    .thankyou .main .btn {
      font-weight: 300;
      color: #333;
      font-size: 15px; }
    .thankyou .main h4 {
      font-weight: 300; }

.thanks {
  background-image: url("../images/patterns/geometry2.png"); }
  .thanks .btn-text {
    background-color: #2F94C8;
    border-color: #2F94C8; }
  .thanks .bottom section.press button {
    color: #fff;
    background-color: #FFC10E;
    border: none;
    border-radius: 2px;
    box-shadow: 0 5px #C79F26;
    font-family: 'Circular'; }
  .thanks .bottom section.press button:hover,
  .thanks .bottom section.press button.hover {
    background-color: #FFC10E; }
  .thanks .bottom section.press button:active,
  .thanks .bottom section.press button.active {
    background-color: #FFC10E;
    box-shadow: 0 3px #C79F26;
    transform: translateY(5px); }
  .thanks .bottom button {
    display: inline-block;
    padding: 12px;
    font-size: 20px;
    line-height: 1.8;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    width: 360px; }
    @media (max-width: 480px) {
      .thanks .bottom button {
        font-size: 18px;
        width: 235px; } }
  .thanks .bottom button:focus {
    outline: none; }
  .thanks .input-phone {
    border-radius: 0px;
    height: 50px; }
  .thanks .circular {
    font-family: 'Circular'; }
  .thanks .suggested {
    background-color: #F5F5F5;
    padding-top: 20px; }
  .thanks .ty {
    font-size: 50px; }
  .thanks .space {
    padding-left: 0;
    padding-right: 0; }
    .thanks .space .info {
      position: relative; }
    .thanks .space .workspace-image {
      width: 100%; }
    .thanks .space .workspace-container {
      padding: 16px 0px 5px 0px; }
      @media (max-width: 1024px) {
        .thanks .space .workspace-container {
          padding-bottom: 0;
          padding-right: 20px; } }
      .thanks .space .workspace-container .workspace-title {
        margin-bottom: 5px; }
        .thanks .space .workspace-container .workspace-title h3 {
          font-size: 20px;
          font-weight: 400;
          margin: 0;
          width: 100%;
          white-space: nowrap;
          overflow: hidden;
          letter-spacing: 0px;
          text-overflow: ellipsis; }
      .thanks .space .workspace-container .workspace-nh {
        font-size: 13px;
        color: grey; }
  .thanks .main .thank-you {
    max-height: 100px; }
  .thanks .main .ready {
    line-height: 1.5em; }
  .thanks .main .btn {
    font-weight: 300;
    color: #333;
    font-size: 15px; }
  .thanks .main h4 {
    font-weight: 300; }

.pagenotfound h1 {
  font-size: 80px; }
  @media (max-width: 480px) {
    .pagenotfound h1 {
      font-size: 50px; } }

@media (max-width: 480px) {
  .pagenotfound h2 {
    font-size: 20px; } }

.pagenotfound img {
  height: 300px; }
  @media (max-width: 480px) {
    .pagenotfound img {
      height: 200px; } }

.pricing {
  background-color: #f5f5f5; }
  .pricing .btn-contact {
    border-radius: 0;
    background-color: white;
    color: #2F94C8;
    font-weight: 300; }
  .pricing .circular {
    font-family: 'Circular'; }
  .pricing .panel {
    box-shadow: #d8d8d8 1px 2px 2px;
    border: 1px solid #ececec;
    padding: 20px; }
  .pricing .guarantee p {
    color: grey;
    font-size: 20px; }
  .pricing .top {
    background-image: url("../images/pricing/2.jpg");
    background-size: cover;
    height: 300px;
    background-position-y: 59%; }
    @media (max-width: 768px) {
      .pricing .top {
        height: 300px;
        background-position-x: 43%; } }
    .pricing .top h1 {
      text-align: center;
      line-height: 300px;
      margin: 0;
      font-size: 50px;
      color: white; }
      @media (max-width: 768px) {
        .pricing .top h1 {
          line-height: 300px; } }
  .pricing .btn-next {
    font-weight: 300;
    border: 0;
    border-radius: 0;
    padding: 18px 60px;
    color: white;
    font-size: 16px;
    background-color: #2F94C8; }
  .pricing .popular {
    background-color: #2F94C8;
    text-align: center;
    font-weight: 200;
    font-size: 16px;
    color: white;
    padding: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px; }
    .pricing .popular.empty {
      background-color: #f5f5f5; }
  .pricing .section-guarantee {
    background-color: white; }
  .pricing .pricing-box {
    box-shadow: #d8d8d8 1px 2px 2px;
    background-color: white;
    border: 1px solid #ececec; }
    .pricing .pricing-box .pricing-padding {
      padding: 10px; }
    .pricing .pricing-box .mo {
      color: #333;
      font-size: 16px; }
    .pricing .pricing-box li {
      padding-top: 5px; }
    .pricing .pricing-box .dollar {
      font-size: 48px;
      font-weight: 300;
      color: #2F94C8; }
    .pricing .pricing-box .blurb {
      color: #8C8C8C;
      font-size: 16px;
      margin-bottom: 30px; }
    .pricing .pricing-box p {
      font-weight: 300; }
    .pricing .pricing-box .name {
      font-size: 30px;
      font-weight: 400;
      margin-bottom: 10px; }
  .pricing .trusted-by img {
    padding: 20px; }
    @media (max-width: 768px) {
      .pricing .trusted-by img {
        max-width: 300px; } }
  @media (min-width: 1025px) {
    .pricing .trusted-by .trust-oscar {
      margin-top: 5px; } }
  @media (min-width: 1025px) {
    .pricing .trusted-by .trust-bloomberg {
      margin-top: 8px; } }
  @media (min-width: 1025px) {
    .pricing .trusted-by .trust-google {
      margin-top: 10px; } }
  .pricing .create .dollar {
    color: #e85959; }
  .pricing .create .btn-next {
    background-color: #e85959; }
  .pricing .explore .dollar {
    color: #2fc8b3; }
  .pricing .explore .btn-next {
    background-color: #2fc8b3; }
  .pricing .inspire .dollar {
    color: #4cb5ea; }
  .pricing .inspire .btn-next {
    background-color: #4cb5ea; }

.membership .section-five-alt {
  background-color: #f5f5f5;
  padding-top: 30px; }
  .membership .section-five-alt .btn-next {
    font-weight: 300;
    border: 0;
    border-radius: 0;
    padding: 15px 50px;
    color: white;
    font-size: 16px;
    background-color: #2F94C8; }
  .membership .section-five-alt .pricing-box {
    box-shadow: #d8d8d8 1px 2px 2px;
    background-color: white;
    text-align: center;
    margin: 22px; }
    .membership .section-five-alt .pricing-box .pricing-padding {
      padding: 10px; }
    .membership .section-five-alt .pricing-box .sign {
      font-size: 25px;
      margin-right: 5px; }
    .membership .section-five-alt .pricing-box .mo {
      margin-left: 5px;
      font-size: 15px;
      font-weight: 500; }
    .membership .section-five-alt .pricing-box li {
      padding-top: 5px; }
    .membership .section-five-alt .pricing-box .fa-ul {
      margin-left: 0px; }
    .membership .section-five-alt .pricing-box .dollar {
      font-size: 50px;
      font-weight: 300; }
    .membership .section-five-alt .pricing-box .blurb {
      color: #8C8C8C;
      font-size: 16px;
      margin-bottom: 30px; }
    .membership .section-five-alt .pricing-box p {
      font-weight: 300; }
    .membership .section-five-alt .pricing-box .name {
      font-size: 22px;
      font-weight: 300;
      margin-bottom: 10px; }

.membership .section-one hr {
  border-top: 6px solid #96dcd9;
  width: 100px; }

.membership .section-one .blue {
  color: #2F94C8; }

.membership .section-one p {
  text-align: justify;
  color: #4A4A4A;
  font-size: 20px; }

.membership .section-one .splitter-squiggly {
  margin: 10px 0; }

.membership .section-one .paragraph {
  column-count: 2;
  column-gap: 40px; }

.membership .section-one h1 {
  padding-bottom: 5px; }

.membership .section-one .texters h4 {
  margin-top: 0px; }

.membership .section-two img {
  height: 35px; }

.membership .section-two h3 {
  font-family: 'Circular';
  padding-bottom: 5px;
  font-size: 20px; }

.membership .section-two p {
  color: #4A4A4A; }

.membership .section-three {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: #f5f5f5; }
  .membership .section-three h2 {
    padding-top: 50px;
    padding-bottom: 50px;
    line-height: 1.3em; }

.membership .section-four li {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'Circular'; }

.membership .section-five {
  background-color: #f5f5f5;
  padding-top: 30px; }

.membership .mini-faq h4 {
  margin-bottom: 15px; }

.membership .btn-contact {
  border-radius: 0;
  background-color: white;
  color: #2F94C8;
  font-weight: 300; }

.membership .circular {
  font-family: 'Circular'; }

.membership .panel {
  box-shadow: #d8d8d8 1px 2px 2px;
  border: 1px solid #ececec;
  padding: 20px; }

.membership .guarantee p {
  color: grey;
  font-size: 20px; }

.membership .top {
  background-image: url("../images/membership/spaces.jpg");
  background-size: cover;
  height: 500px;
  background-position-y: 59%; }
  @media (max-width: 768px) {
    .membership .top {
      height: 500px;
      background-position-x: 43%; } }
  .membership .top h1 {
    text-align: center;
    line-height: 500px;
    margin: 0;
    font-size: 60px;
    color: white; }
    @media (max-width: 768px) {
      .membership .top h1 {
        line-height: 300px; } }

.membership .btn-next {
  font-weight: 300;
  border: 0;
  border-radius: 0;
  padding: 18px 60px;
  color: white;
  font-size: 16px;
  background-color: #2F94C8; }

.membership .popular {
  background-color: #2F94C8;
  text-align: center;
  font-weight: 200;
  font-size: 16px;
  color: white;
  padding: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px; }
  .membership .popular.empty {
    background-color: #f5f5f5; }

.membership .section-guarantee {
  background-color: white; }

.membership .pricing-box {
  box-shadow: #d8d8d8 1px 2px 2px;
  background-color: white;
  border: 1px solid #ececec; }
  .membership .pricing-box .pricing-padding {
    padding: 10px; }
  .membership .pricing-box .mo {
    font-size: 16px; }
  .membership .pricing-box li {
    padding-top: 5px; }
  .membership .pricing-box .dollar {
    font-size: 48px;
    font-weight: 300;
    color: #2F94C8; }
  .membership .pricing-box .blurb {
    color: #8C8C8C;
    font-size: 16px;
    margin-bottom: 30px; }
  .membership .pricing-box p {
    font-weight: 300; }
  .membership .pricing-box .name {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px; }

.membership .trusted-by img {
  padding: 20px; }
  @media (max-width: 768px) {
    .membership .trusted-by img {
      max-width: 300px; } }

@media (min-width: 1025px) {
  .membership .trusted-by .trust-oscar {
    margin-top: 5px; } }

@media (min-width: 1025px) {
  .membership .trusted-by .trust-bloomberg {
    margin-top: 8px; } }

@media (min-width: 1025px) {
  .membership .trusted-by .trust-google {
    margin-top: 10px; } }

.membership .create .dollar {
  color: #e85959; }

.membership .create .btn-next {
  background-color: #e85959; }

.membership .explore .dollar {
  color: #2fc8b3; }

.membership .explore .btn-next {
  background-color: #2fc8b3; }

.membership .inspire .dollar {
  color: #4cb5ea; }

.membership .inspire .btn-next {
  background-color: #4cb5ea; }

.membership .explainers p {
  margin-top: 18px; }

.event .top {
  background-image: url("../images/event/default.jpg");
  background-size: cover;
  background-position-y: 50%;
  position: relative;
  height: 400px; }
  @media (max-width: 768px) {
    .event .top {
      height: 300px; } }
  .event .top .overlay {
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%; }
  .event .top .top-content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 40%; }
    .event .top .top-content h1 {
      margin: 0;
      text-align: center;
      font-size: 50px;
      color: white; }
      @media (max-width: 768px) {
        .event .top .top-content h1 {
          font-size: 30px; } }

.event .section-title {
  height: 9px;
  border-bottom: 1px solid #333;
  font-size: 14px; }
  .event .section-title .section-text {
    background-color: white;
    padding: 0 10px 0 0; }
  .event .section-title .section-line {
    margin-top: 15px; }

.event .rsvp-button {
  border-radius: 0px;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 0.9em;
  border: 0px;
  color: white;
  background-color: #2F94C8; }

.event .nav-next {
  font-size: 25px;
  color: grey; }

.event .all-events {
  font-size: 25px;
  color: grey;
  border: 2px solid #D4D4D4;
  display: inline-block;
  padding: 10px 15px; }

.event .description {
  white-space: pre-line; }

.feed .perks .underline-title {
  font-family: Circular;
  font-weight: 700;
  font-size: 36px;
  margin-top: 30px;
  margin-left: 20px;
  margin-bottom: 10px;
  letter-spacing: 0px;
  border-bottom: 4px solid #eec970;
  padding-bottom: 5px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden; }

.feed .perks .perks-intro {
  font-size: 16px;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px; }
  .feed .perks .perks-intro a {
    font-size: 16px;
    font-weight: 300; }

.feed .perks .perk-container {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #515151;
  text-decoration: none; }

.feed .perks .perk {
  background-color: #FFFFFF;
  padding: 15px;
  border: 1px #DADADA solid;
  box-shadow: 0px 2px 2px #888888; }

.feed .perks .perk-image {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px; }

.feed .perks h3 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px; }

.feed .perks .description {
  font-size: 12px;
  color: #999; }

.feed .perks a {
  font-size: 16px;
  font-weight: 500;
  color: #333; }
  .feed .perks a:hover {
    color: #333; }

.feed .post .post-detail {
  padding: 0 10px; }
  .feed .post .post-detail .post-name {
    margin-top: 15px;
    font-size: 18px; }

.feed .post .liked {
  color: red; }

.feed .post .post-message {
  white-space: pre-line; }

.feed .post .post-settings {
  position: relative;
  display: inline-block; }

.feed .more-pics {
  position: relative;
  display: block; }
  .feed .more-pics .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    text-align: center;
    padding: 25%; }
    @media (min-width: 768px) and (max-width: 1024px) {
      .feed .more-pics .overlay {
        font-size: 20px;
        padding: 15%; } }
    @media (max-width: 768px) {
      .feed .more-pics .overlay {
        font-size: 18px;
        padding: 12%; } }

.feed .comment .comment-detail {
  padding: 0 10px; }
  .feed .comment .comment-detail .comment-name {
    font-size: 17px; }

.feed .comment .comment-date {
  font-size: 14px; }

.feed .comment .comment-message {
  margin-top: 5px; }

.feed .comment .comment-settings {
  position: relative;
  display: none; }

.feed .comment:hover .comment-settings {
  display: inline-block; }

.feed .community-container {
  overflow: hidden; }

.feed .post-column {
  margin-bottom: -99999px;
  padding-bottom: 99999px; }
  @media (min-width: 768px) {
    .feed .post-column {
      padding-right: 5%; } }

.feed .feature-column {
  background-color: #E3F0F7;
  margin-bottom: -99999px;
  padding-bottom: 99999px;
  padding-left: 20px;
  padding-right: 20px; }

.feed .section-title {
  height: 9px;
  border-bottom: 1px solid black;
  font-size: 14px; }
  .feed .section-title .section-text {
    background-color: #E3F0F7;
    padding: 0 10px 0 0; }
  .feed .section-title .section-line {
    margin-top: 15px; }

.feed .featured-workspace .info {
  background-color: white;
  position: relative; }

.feed .featured-workspace .workspace-image {
  width: 100%; }

.feed .featured-workspace .workspace-container {
  padding: 16px 0px 5px 0px; }
  @media (max-width: 1024px) {
    .feed .featured-workspace .workspace-container {
      padding-bottom: 0;
      padding-right: 20px; } }
  .feed .featured-workspace .workspace-container .workspace-title {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 400;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .feed .featured-workspace .workspace-container .workspace-nh {
    font-size: 13px;
    color: grey; }

.feed .date-circle {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  padding: 10px;
  background: #fff;
  text-align: center; }
  .feed .date-circle .date-month {
    font-size: 14px; }
  .feed .date-circle .date-day {
    font-size: 20px; }

.feed .event-info {
  padding: 10px; }

@media (min-width: 768px) {
  .rating .modal-dialog {
    width: 550px; } }

.rating .modal-content {
  border-radius: 3px; }
  .rating .modal-content h2 {
    font-family: 'Circular';
    font-weight: 300;
    margin-top: 0px; }
  .rating .modal-content .btn {
    padding: 10px 35px; }

.rating .modal-body {
  padding-bottom: 0px; }

.rating .modal-footer {
  border-top: none;
  text-align: center;
  margin-bottom: 15px; }

.rating .modal-header {
  border-bottom: none; }

.support h3 {
  font-family: 'Circular';
  border-bottom: 4px solid #eec970;
  padding-bottom: 10px;
  display: inline-block; }

.support .top {
  background-image: url("../images/about/farms.jpg");
  background-size: cover;
  height: 300px;
  background-position-y: 39%; }
  @media (max-width: 768px) {
    .support .top {
      height: 300px;
      background-position-x: 43%; } }
  .support .top h1 {
    text-align: center;
    line-height: 300px;
    margin: 0px;
    font-size: 50px;
    color: white;
    font-family: 'Circular'; }
    @media (max-width: 768px) {
      .support .top h1 {
        line-height: 300px; } }

.support .email .input-lg, .support .email .form-horizontal .form-group-lg .form-control, .form-horizontal .form-group-lg .support .email .form-control, .support .email .input-group-lg > .form-control, .support .email
.input-group-lg > .input-group-addon, .support .email
.input-group-lg > .input-group-btn > .btn {
  border-radius: 0px; }

.support .popular h3 {
  font-weight: 300; }

.support .boxes {
  padding: 30px;
  border: 2px solid grey;
  text-align: center;
  cursor: pointer; }
  .support .boxes i {
    color: #eec970; }
  .support .boxes:hover {
    padding: 28px;
    border: 4px solid #eec970; }

.support .btn-submit {
  border-radius: 0px;
  background-color: #2F94C8;
  border: 0px;
  font-weight: 300; }

.calendar .months {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px; }

.calendar .inner-row .minihr {
  border-top: 3px solid #CDCDCD;
  width: 50%; }

.calendar .inner-row .day {
  font-size: 45px;
  font-weight: 500;
  margin-top: 10px; }

.calendar .inner-row .event-details {
  margin-left: 20px; }
  @media (max-width: 768px) {
    .calendar .inner-row .event-details {
      margin-left: 0px; } }
  @media (max-width: 1024px) {
    .calendar .inner-row .event-details .event-name {
      font-size: 28px; } }
  .calendar .inner-row .event-details .event-location {
    font-weight: 300;
    color: grey; }
    @media (max-width: 1024px) {
      .calendar .inner-row .event-details .event-location {
        font-size: 16px; } }

.calendar .inner-row .event-description-container {
  position: relative; }
  .calendar .inner-row .event-description-container .event-description {
    height: 134px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical; }
    @media (max-width: 1024px) {
      .calendar .inner-row .event-description-container .event-description {
        height: 67px;
        -webkit-line-clamp: 3; } }
  .calendar .inner-row .event-description-container .event-readmore {
    position: absolute;
    bottom: 0;
    right: -15px; }

.calendar .past-events {
  font-size: 25px;
  color: grey; }

.calendar .city-dropdown .dropdown-toggle {
  border-radius: 2px;
  padding: 10px; }

.calendar .city-dropdown .dropdown-menu {
  width: 100%;
  border-radius: 2px; }
  .calendar .city-dropdown .dropdown-menu li {
    padding: 5px; }

.place {
  background-color: #f4f4f4; }
  .place .top-fold-container {
    cursor: pointer; }
  .place .top-fold {
    background-size: cover;
    height: 400px;
    background-position-y: 39%; }
    .place .top-fold .overlay {
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.2);
      padding-top: 120px;
      position: relative; }
      @media (max-width: 768px) {
        .place .top-fold .overlay {
          padding-top: 75px; } }
    @media (max-width: 768px) {
      .place .top-fold {
        height: 300px; } }
  .place .name {
    color: white;
    margin: 0;
    font-size: 60px; }
    @media (max-width: 768px) {
      .place .name {
        font-size: 50px; } }
  .place .neighborhood {
    color: white;
    margin: 0;
    font-weight: 100;
    font-size: 30px; }
  .place .status {
    padding: 8px 9px 6px;
    border-radius: 0;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 14px;
    color: white;
    background-color: #2F94C8; }
  .place .splitter-squiggly {
    margin: 25px 0; }
  .place .description {
    font-size: 22px; }
  .place .descriptionHtml {
    font-size: 22px;
    white-space: pre-line; }
    .place .descriptionHtml a {
      text-decoration: none;
      font-weight: 500;
      color: #333;
      font-family: 'Circular' !important; }
  .place .section-map {
    padding: 0 !important; }
    .place .section-map .map-mini {
      padding: 10px; }
  .place .available-seats {
    font-size: 30px; }
  .place .available-seats-dot {
    font-size: 18px;
    color: green; }
    .place .available-seats-dot.disabled {
      color: gray; }
  .place .section-grab .main-buttons {
    padding: 0 20px; }
  .place .section-grab .checkin {
    transition: background-color 0.5s ease;
    background-color: #eec970;
    font-weight: 400;
    padding: 15px;
    border-radius: 1px;
    color: #333;
    border: 2px solid #eec970;
    margin-bottom: 12px; }
    .place .section-grab .checkin.confirmed {
      background-color: #2F94C8;
      color: white;
      border-color: #2F94C8; }
  .place .section-grab .holdseat {
    transition: background-color 0.5s ease;
    background-color: white;
    font-weight: 400;
    padding: 15px;
    border: 2px solid gray;
    border-radius: 1px;
    color: #333; }
    .place .section-grab .holdseat.confirmed {
      background-color: #2F94C8;
      color: white; }
  .place .section-mini {
    background-color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border: 1px solid #d8d8d8; }
    .place .section-mini h3 {
      margin-top: 10px; }
    .place .section-mini .title-section {
      padding-left: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #d8d8d8; }
    .place .section-mini .btn-directions {
      transition: background-color 0.5s ease;
      background-color: white;
      font-weight: 300;
      padding: 15px;
      border-radius: 1px;
      color: grey;
      border: 2px solid grey;
      margin-bottom: 12px; }
    .place .section-mini .neighbor {
      padding: 10px 20px;
      margin-top: 20px; }
      .place .section-mini .neighbor h3 {
        margin: 0px;
        margin-bottom: 5px; }
      .place .section-mini .neighbor .title {
        color: grey;
        margin-bottom: 10px; }
    .place .section-mini .chunky {
      padding-top: 10px; }
      .place .section-mini .chunky .line-item {
        padding: 10px 20px; }
  .place .nearby-spaces {
    padding: 15px;
    background-color: #F6F7F9; }
    .place .nearby-spaces .message {
      font-weight: 400;
      font-size: 0.9em;
      color: #2F94C8;
      margin-bottom: 10px; }
  .place .alt-title {
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 400;
    padding-bottom: 10px; }
  .place .fact-list {
    margin-left: 1.4em; }
    @media (max-width: 480px) {
      .place .fact-list {
        font-size: 14px;
        margin-left: 1.14285714em; } }
    .place .fact-list .funfact {
      padding-bottom: 8px; }
      .place .fact-list .funfact i {
        font-size: 12px; }
      @media (max-width: 480px) {
        .place .fact-list .funfact {
          padding-bottom: 5px; } }
  .place .hr-top {
    border: 1px dashed #E5E5E5; }
  .place .schedules i {
    cursor: pointer; }
  @media (max-width: 768px) {
    .place .schedules {
      padding-top: 15px; } }
  .place .schedules .schedule-container .schedule-text.today {
    font-weight: 400; }
  .place .schedules .closed-pointer {
    cursor: pointer; }
  @media (max-width: 768px) {
    .place .metros {
      padding-top: 15px; } }
  .place .metros .metro-container {
    margin: 0 0 20px 0; }
    .place .metros .metro-container .metro-icon {
      vertical-align: middle; }
    .place .metros .metro-container .metro-description {
      display: inline-block;
      margin: 0 0 0 5px; }
  .place .heart {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100px;
    width: 100px; }
    @media (max-width: 768px) {
      .place .heart {
        height: 50px;
        width: 50px; } }
  .place .heart-on {
    background-image: url("../images/heart-red.png");
    background-size: 44px;
    background-repeat: no-repeat;
    background-position: center; }
    @media (max-width: 768px) {
      .place .heart-on {
        background-size: 22px; } }
  .place .heart-off {
    background-image: url("../images/heart-white.png");
    background-size: 44px;
    background-repeat: no-repeat;
    background-position: center; }
    @media (max-width: 768px) {
      .place .heart-off {
        background-size: 22px; } }

.offer {
  background-color: #fbfbfb; }
  .offer .return-link {
    text-decoration: underline; }
  .offer .btn-buy-now:disabled {
    background-color: #2F94C8;
    border: 1px solid #2F94C8; }
  .offer .padding-card-info {
    padding-top: 5px; }
  .offer .creditcard {
    border-radius: 0px; }
  .offer .top-card {
    background-color: #2F94C8;
    padding: 10px; }
  .offer .cards {
    background-color: white;
    padding: 20px;
    border: 1px solid #cecece; }
  .offer .main-section hr {
    margin-top: 20px !important;
    margin-bottom: 30px !important;
    border-top: 4px solid #CDCDCD;
    width: 42px; }
  .offer .fyi {
    background-color: #E3F0F7;
    padding: 20px; }
  .offer .details-box {
    background-color: white;
    border: 1px solid #cecece; }
    .offer .details-box .titles {
      padding: 10px; }

.perks {
  background-color: #f5f5f5; }
  .perks .top {
    background-image: url("../images/perks/bg.jpg");
    background-size: cover;
    height: 300px;
    background-position-y: 32%; }
    @media (max-width: 768px) {
      .perks .top {
        height: 300px;
        background-position-x: 43%; } }
    .perks .top h1 {
      text-align: center;
      line-height: 300px;
      margin: 0px;
      font-size: 50px;
      color: white; }
      @media (max-width: 768px) {
        .perks .top h1 {
          line-height: 300px; } }
  .perks .box {
    border: 2px solid #efefef;
    text-align: center;
    display: block;
    height: 180px;
    padding: 30px;
    background-color: #f9f9f9; }
    .perks .box h4 {
      padding-top: 10px;
      color: grey;
      font-size: 15px; }
  .perks .input-lg, .perks .form-horizontal .form-group-lg .form-control, .form-horizontal .form-group-lg .perks .form-control, .perks .input-group-lg > .form-control, .perks
  .input-group-lg > .input-group-addon, .perks
  .input-group-lg > .input-group-btn > .btn {
    border-radius: 0px; }
  .perks .btn-submit {
    border-radius: 0px;
    background-color: #2F94C8;
    font-weight: 300; }

.daypass .quotes-section {
  text-align: center; }
  .daypass .quotes-section h3 {
    font-weight: 300;
    font-size: 30px; }

.daypass .chart-section {
  padding-bottom: 30px; }
  .daypass .chart-section .table {
    color: #656565; }
    .daypass .chart-section .table .row-label {
      text-align: left;
      font-size: 15px; }
    .daypass .chart-section .table .croissant {
      background-color: white;
      border-left: 2px solid #4e4e4e;
      border-right: 2px solid #4e4e4e; }
    .daypass .chart-section .table .croissant-top {
      background: linear-gradient(to bottom, #323232 0%, #3F3F3F 40%, #1C1C1C 150%), linear-gradient(to top, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.25) 200%);
      background-blend-mode: multiply;
      border-top: 2px solid #4e4e4e;
      border-left: 2px solid #4e4e4e;
      border-right: 2px solid #4e4e4e;
      color: white; }
    .daypass .chart-section .table .end {
      border-bottom: 2px solid #4e4e4e; }
    .daypass .chart-section .table h4 {
      margin-bottom: 4px; }
    .daypass .chart-section .table small {
      color: grey;
      font-size: 80%; }
    .daypass .chart-section .table .blue {
      color: #2F94C8; }
    .daypass .chart-section .table p {
      margin: 0px; }
  .daypass .chart-section td {
    line-height: 1.2em;
    padding: 20px;
    background-color: #f9f9f9;
    border-color: #efefef; }
  .daypass .chart-section th {
    line-height: 3;
    font-weight: 300;
    background-color: #d8d8d8;
    border-top: 2px solid #d8d8d8;
    border-left: 2px solid #d8d8d8;
    border-right: 2px solid #d8d8d8; }
  .daypass .chart-section small {
    font-size: 0.6em; }

.daypass .main-section .btn-locations {
  font-weight: 300;
  border: 0;
  border-radius: 0;
  padding: 14px 40px;
  color: white;
  font-size: 16px;
  background-color: #2F94C8;
  box-shadow: #d8d8d8 1px 2px 2px; }

.daypass .main-section .blocks {
  padding: 30px; }
  @media (max-width: 768px) {
    .daypass .main-section .blocks {
      padding: 0px; } }

.daypass .items img {
  padding: 2px 10px; }

.daypass .items p {
  padding-top: 10px; }

.daypass .spotlight-section {
  background-image: linear-gradient(to top, #2F94C8 0%, #2F94C8 1%, #2a5298 100%);
  color: white;
  text-align: center; }
  .daypass .spotlight-section .btn-next {
    font-weight: 300;
    border: 0;
    border-radius: 0;
    padding: 18px 60px;
    color: #2F94C8;
    font-size: 16px;
    background-color: white;
    box-shadow: #d8d8d8 1px 2px 2px; }
  .daypass .spotlight-section .price {
    font-weight: 200;
    font-size: 80px; }
    .daypass .spotlight-section .price sup {
      font-size: 50%; }
  .daypass .spotlight-section h1 {
    font-size: 50px; }
    @media (max-width: 480px) {
      .daypass .spotlight-section h1 {
        font-size: 40px; } }

.daypass .last-section {
  background-image: linear-gradient(to top, #2F94C8 0%, #2F94C8 1%, #2a5298 100%);
  padding: 80px 30px;
  color: white; }
  .daypass .last-section .btn-next2 {
    font-weight: 300;
    border: 0;
    border-radius: 0;
    padding: 18px 60px;
    color: #2F94C8;
    font-size: 16px;
    background-color: white;
    box-shadow: #d8d8d8 1px 2px 2px; }
  .daypass .last-section h2 {
    margin-top: 10px; }

.daypass .meeting {
  margin: 0px; }
  .daypass .meeting .pictures {
    padding: 0px;
    margin: 0px; }

.privateoffice .last {
  background-color: #2F94C8; }
  .privateoffice .last a {
    color: white !important; }

.privateoffice h2 {
  font-size: 25px;
  line-height: 1.5em; }

.privateoffice p {
  line-height: 1.5em;
  font-size: 18px; }

.privateoffice .top {
  background-image: url("../images/privateoffice/yard.jpg");
  background-size: cover;
  height: 300px;
  background-position-y: 32%; }
  @media (max-width: 768px) {
    .privateoffice .top {
      height: 300px;
      background-position-x: 43%; } }
  .privateoffice .top h1 {
    text-align: center;
    line-height: 300px;
    margin: 0px;
    font-size: 35px;
    color: white; }
    @media (max-width: 768px) {
      .privateoffice .top h1 {
        line-height: 300px; } }

.dedicateddesk .top {
  background-image: url("../images/dedicated-desk/yard.jpg");
  background-size: cover;
  height: 300px;
  background-position-y: 50%; }
  @media (max-width: 768px) {
    .dedicateddesk .top {
      height: 300px;
      background-position-x: 43%; } }
  .dedicateddesk .top h1 {
    text-align: center;
    line-height: 300px;
    margin: 0px;
    font-size: 30px;
    color: white; }
    @media (max-width: 768px) {
      .dedicateddesk .top h1 {
        line-height: 300px; } }

.dedicateddesk .last {
  background-color: #2F94C8; }
  .dedicateddesk .last a {
    color: white !important; }

.dedicateddesk ol li {
  font-size: 20px; }

.dedicateddesk .section-quote {
  background-image: url("../images/dedicated-desk/space530-coworking-space.jpg");
  background-size: cover;
  color: white;
  padding: 60px;
  text-align: center; }
  .dedicateddesk .section-quote p {
    color: white; }

.dedicateddesk .no-margin {
  margin: 0px; }

.dedicateddesk p {
  line-height: 1.5em;
  font-size: 18px;
  color: #333; }

.dedicateddesk h2 {
  font-size: 25px;
  line-height: 1.5em; }

.seat-container .active-visit .side-bar {
  border: 0;
  background-color: #f8f8f8;
  margin-bottom: 20px; }

.seat-container .active-visit .times-section {
  background-color: #f8f8f8;
  padding-top: 10px;
  text-align: center;
  color: #999;
  position: relative;
  margin-bottom: 22px; }
  .seat-container .active-visit .times-section .big-number {
    font-weight: 700;
    color: #5BC9E1;
    margin-bottom: 0px; }
  .seat-container .active-visit .times-section .slash {
    position: absolute;
    top: 20px;
    left: 47%;
    font-weight: 500;
    font-size: 60px;
    color: #ccc; }

.seat-container .active-visit .check-out {
  font-size: 20px;
  margin-bottom: 15px; }

.seat-container .pamphlet-container {
  background-color: #fff; }
  .seat-container .pamphlet-container .pamphlet {
    padding: 0px 20px; }
    .seat-container .pamphlet-container .pamphlet h4 {
      margin: 0px 0px 30px 0px; }
    .seat-container .pamphlet-container .pamphlet .row-section {
      margin: 0px 0px 40px 0px; }

.seat-container .top-fold {
  background-size: cover;
  background-position-y: 50%;
  background-position-x: 50%;
  width: 100%; }
  .seat-container .top-fold .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: relative;
    display: table; }
    .seat-container .top-fold .overlay .info-container {
      display: table-cell;
      vertical-align: middle;
      height: 160px;
      padding: 15px; }

.seat-container .name-circle {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 11px 0;
  background: #eec970;
  text-align: center;
  margin-right: 20px; }
  .seat-container .name-circle.inactive {
    background: #ccc; }
  .seat-container .name-circle .name {
    font-size: 20px;
    color: #fff; }

.seat-container .add-guest-circle {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 7px;
  background: #ccc;
  text-align: center;
  margin-right: 20px; }
  .seat-container .add-guest-circle .name {
    font-size: 26px;
    color: #fff; }

.seat-container .hold-expire {
  margin-top: 10px; }
  .seat-container .hold-expire small {
    color: gray;
    font-size: 12px;
    font-style: italic; }
    .seat-container .hold-expire small a {
      font-style: normal;
      color: gray; }

.seat-container .hold-control-button {
  width: 100%;
  border: 0;
  background-color: #eee;
  padding: 10px 0px;
  margin-bottom: 20px; }

.seat-container .check-in-hold {
  font-size: 20px; }

.seat-container .map-container {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 375px;
  padding: 0px 30px; }
  .seat-container .map-container .map-address-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center; }
  .seat-container .map-container .map-address-container {
    margin: 0px 0px 15px 0px;
    padding: 0;
    flex: 0 1 auto;
    align-self: flex-end;
    background-color: white;
    height: 38px;
    border-radius: 4px; }
    .seat-container .map-container .map-address-container .map-address {
      margin-top: 0px;
      margin-right: 5px;
      margin-left: 5px;
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      padding: 8px;
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px; }
    .seat-container .map-container .map-address-container .map-address-arrow {
      background-color: #56c4db;
      display: inline-block;
      padding: 8px;
      width: 40px;
      text-align: center;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px; }
      .seat-container .map-container .map-address-container .map-address-arrow i {
        color: white;
        font-size: 15px; }

.gift-container {
  background-color: #fafbfb; }
  .gift-container .highlight {
    color: #2F94C8;
    font-weight: 500; }
  .gift-container input {
    border-radius: 0; }
  .gift-container label {
    font-weight: 400; }
  .gift-container .btn-blue:disabled {
    background-color: #2F94C8; }

.invite-container {
  background-color: #fafbfb; }
  .invite-container .highlight {
    color: #2F94C8;
    font-weight: 500; }
  .invite-container input {
    border-radius: 0; }
  .invite-container label {
    font-weight: 400; }
  .invite-container .btn-blue:disabled {
    background-color: #2F94C8; }

.vip-container {
  background-color: #fafbfb; }
  .vip-container .highlight {
    color: #2F94C8;
    font-weight: 500; }
  .vip-container input {
    border-radius: 0; }
  .vip-container label {
    font-weight: 400; }
  .vip-container .btn-blue:disabled {
    background-color: #2F94C8; }

.labor-day-container {
  background-color: #F5F5F5; }
  .labor-day-container .circular {
    font-family: 'Circular'; }
  .labor-day-container .sample-location {
    background-color: white;
    padding-top: 30px;
    padding-bottom: 30px; }
  .labor-day-container .form-box {
    background-color: white;
    padding: 35px; }
  .labor-day-container .btn-blue {
    background-color: #59bf95;
    font-size: 20px;
    border: 0px; }
    .labor-day-container .btn-blue:disabled {
      background-color: #59bf95; }
  .labor-day-container .first-section {
    background-color: white; }
    .labor-day-container .first-section h3 {
      padding-top: 20px; }
      .labor-day-container .first-section h3 i {
        color: #eec970; }
  .labor-day-container .space {
    padding-left: 0;
    padding-right: 0; }
    .labor-day-container .space .info {
      position: relative; }
    .labor-day-container .space .workspace-image {
      width: 100%; }
    .labor-day-container .space .workspace-container {
      padding: 16px 0 5px 0; }
      @media (max-width: 1024px) {
        .labor-day-container .space .workspace-container {
          padding-bottom: 0;
          padding-right: 20px; } }
      .labor-day-container .space .workspace-container .workspace-title {
        margin-bottom: 5px; }
        .labor-day-container .space .workspace-container .workspace-title h3 {
          font-size: 20px;
          font-weight: 400;
          margin: 0;
          width: 100%;
          white-space: nowrap;
          overflow: hidden;
          letter-spacing: 0;
          text-overflow: ellipsis; }
      .labor-day-container .space .workspace-container .workspace-nh {
        font-size: 13px;
        color: grey; }
  .labor-day-container .spotlight {
    height: 540px;
    background-image: url("../images/splash/spotlight.jpg");
    background-size: cover;
    background-position-y: 40%; }
    @media (max-width: 768px) {
      .labor-day-container .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .labor-day-container .spotlight {
        height: 480px; } }
    @media (max-width: 768px) {
      .labor-day-container .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .labor-day-container .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .labor-day-container .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      padding: 7%; }
      @media (max-width: 480px) {
        .labor-day-container .spotlight .head {
          padding: 0 5%; } }
      .labor-day-container .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
      .labor-day-container .spotlight .head h1 {
        font-size: 49px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .labor-day-container .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0px; } }
      .labor-day-container .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .labor-day-container .spotlight .head h2 {
            font-size: 18px; } }
  .labor-day-container .highlight {
    color: #2F94C8;
    font-weight: 500; }
  .labor-day-container input {
    border-radius: 0; }
  .labor-day-container label {
    font-weight: 400; }

.labor-day-header .alert-navigation {
  background-color: #59bf95; }

.labor-day-header .navbar {
  border: none;
  border-radius: 0;
  background-color: #FFFFFF;
  box-shadow: 0px 1px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  margin-bottom: 0; }
  .labor-day-header .navbar .navbar-link {
    margin-right: 15px; }
    @media (max-width: 1024px) {
      .labor-day-header .navbar .navbar-link {
        margin-right: 0; } }
  .labor-day-header .navbar .login-link {
    border: 1px solid #777;
    border-radius: 2px;
    padding: 14px 20px 12px 20px;
    margin-left: 10px; }
    @media (max-width: 768px) {
      .labor-day-header .navbar .login-link {
        margin-bottom: 5px; } }
  .labor-day-header .navbar .signup-link {
    background-color: #2F94C8;
    border: 0px;
    border-radius: 2px;
    color: white !important;
    padding: 15px 20px 12px 20px;
    margin-left: 10px;
    margin-top: 0px; }
    .labor-day-header .navbar .signup-link:hover, .labor-day-header .navbar .signup-link:focus, .labor-day-header .navbar .signup-link.focus, .labor-day-header .navbar .signup-link:active, .labor-day-header .navbar .signup-link.active {
      background-color: #2F94C8 !important; }
  .labor-day-header .navbar .brand img {
    margin: 8px 0; }
  @media (max-width: 768px) {
    .labor-day-header .navbar {
      padding-left: 10px;
      padding-right: 10px; } }
  .labor-day-header .navbar .navbar-toggle {
    margin: 8px 15px; }

.fifty-percentage-container {
  background-color: #FCFCFC;
  background-attachment: fixed; }
  .fifty-percentage-container input {
    border-radius: 0; }
  .fifty-percentage-container small {
    color: grey;
    font-size: 12px;
    font-style: italic; }
  .fifty-percentage-container .btn-block {
    background-color: #33b756;
    font-size: 20px;
    border: 0px; }
  .fifty-percentage-container label {
    font-weight: 400; }
  .fifty-percentage-container .cat-box {
    margin-top: 14px; }
    .fifty-percentage-container .cat-box .cat-image {
      max-width: 100px; }
  .fifty-percentage-container .alert-success {
    margin: 0; }
  .fifty-percentage-container .city-name {
    text-decoration: underline; }
  .fifty-percentage-container .city-link {
    cursor: pointer; }
  .fifty-percentage-container .badge {
    display: inline;
    background-color: #48c396;
    border-radius: 0px;
    text-transform: uppercase;
    font-weight: 300; }
  .fifty-percentage-container .circular {
    font-family: 'Circular'; }
  .fifty-percentage-container .circular {
    font-family: 'Circular'; }
  .fifty-percentage-container h1 {
    font-family: 'Circular'; }
  .fifty-percentage-container h2 {
    font-weight: 400; }
  .fifty-percentage-container h3 {
    font-family: 'Circular';
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 40px; }
    @media (max-width: 480px) {
      .fifty-percentage-container h3 {
        font-size: 30px; } }
  .fifty-percentage-container h4 {
    font-size: 25px;
    font-weight: 300;
    margin-top: 18px; }
    @media (max-width: 480px) {
      .fifty-percentage-container h4 {
        font-size: 20px; } }
  .fifty-percentage-container .btn-blue {
    font-weight: 300;
    border-radius: 2px; }
  .fifty-percentage-container .btn-tour {
    font-weight: 300;
    color: #777 !important;
    border: 1px solid #777;
    border-radius: 2px; }
  .fifty-percentage-container section.press button {
    color: #fff;
    background-color: #FFC10E;
    border: none;
    border-radius: 2px;
    box-shadow: 0 5px #C79F26;
    font-family: 'Circular'; }
  .fifty-percentage-container section.press button:hover,
  .fifty-percentage-container section.press button.hover {
    background-color: #FFC10E; }
  .fifty-percentage-container section.press button:active,
  .fifty-percentage-container section.press button.active {
    background-color: #FFC10E;
    box-shadow: 0 3px #C79F26;
    transform: translateY(5px); }
  .fifty-percentage-container button {
    height: 60px; }
  .fifty-percentage-container .alert {
    background-color: #46BBC9;
    color: white;
    text-align: left; }
    .fifty-percentage-container .alert p {
      padding-top: 10px; }
    .fifty-percentage-container .alert h4 {
      font-weight: 500; }
  @media (max-width: 480px) {
    .fifty-percentage-container .extra-left-margin {
      margin-left: 10px; } }
  .fifty-percentage-container .capture input {
    border-radius: 0px;
    font-size: 21px;
    width: 300px;
    height: 60px; }
    @media (max-width: 480px) {
      .fifty-percentage-container .capture input {
        width: 260px;
        margin-bottom: 10px; } }
  .fifty-percentage-container .capture .btn-default {
    border-radius: 0px;
    font-weight: 300;
    font-size: 21px;
    background-color: #48c396;
    border-color: #48c396;
    color: white;
    padding-left: 30px;
    padding-right: 30px; }
  .fifty-percentage-container button:focus {
    outline: none; }
  .fifty-percentage-container .section {
    padding-top: 50px;
    padding-bottom: 50px; }
  .fifty-percentage-container .spotlight {
    background-image: url("../../images/promotions/fifty-percentage/farm.jpg");
    background-size: cover;
    background-position-y: 40%;
    height: 640px; }
    @media (max-width: 768px) {
      .fifty-percentage-container .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .fifty-percentage-container .spotlight {
        height: 575px; } }
    @media (max-width: 768px) {
      .fifty-percentage-container .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .fifty-percentage-container .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .fifty-percentage-container .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
      @media (max-width: 480px) {
        .fifty-percentage-container .spotlight .head {
          padding: 0% 5%; } }
      .fifty-percentage-container .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
      .fifty-percentage-container .spotlight .head h1 {
        font-size: 110px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .fifty-percentage-container .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0px; } }
      .fifty-percentage-container .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .fifty-percentage-container .spotlight .head h2 {
            font-size: 18px; } }
  .fifty-percentage-container .section-steps {
    padding-bottom: 80px; }
    .fifty-percentage-container .section-steps p {
      font-weight: 500;
      font-size: 20px; }
    .fifty-percentage-container .section-steps i {
      padding-top: 55px; }
    .fifty-percentage-container .section-steps .step-line {
      padding-top: 82px;
      vertical-align: top; }
      .fifty-percentage-container .section-steps .step-line hr {
        border-style: dashed;
        border-color: gray; }
  .fifty-percentage-container .section-spaces {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .fifty-percentage-container .section-spaces .padding {
      padding: 20px; }
      .fifty-percentage-container .section-spaces .padding h3 {
        margin-bottom: 10px;
        font-weight: 300; }
    @media (min-width: 992px) {
      .fifty-percentage-container .section-spaces .container-slick {
        width: 100%; } }
    @media (min-width: 1200px) {
      .fifty-percentage-container .section-spaces .container-slick {
        width: 1170px; } }
    .fifty-percentage-container .section-spaces .space {
      padding-left: 0;
      padding-right: 0; }
      .fifty-percentage-container .section-spaces .space .info {
        background-color: white;
        position: relative; }
      .fifty-percentage-container .section-spaces .space .workspace-image {
        width: 100%; }
      .fifty-percentage-container .section-spaces .space .workspace-container {
        padding: 16px 0px 5px 0px; }
        @media (max-width: 1024px) {
          .fifty-percentage-container .section-spaces .space .workspace-container {
            padding-bottom: 0;
            padding-right: 20px; } }
        .fifty-percentage-container .section-spaces .space .workspace-container .workspace-title {
          margin-bottom: 5px; }
          .fifty-percentage-container .section-spaces .space .workspace-container .workspace-title h3 {
            font-size: 20px;
            font-weight: 400;
            margin: 0;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            letter-spacing: 0px;
            text-overflow: ellipsis; }
        .fifty-percentage-container .section-spaces .space .workspace-container .workspace-nh {
          font-size: 13px;
          color: grey; }
  .fifty-percentage-container .section-laptop .wrap {
    padding-top: 150px;
    padding-left: 20px; }
    .fifty-percentage-container .section-laptop .wrap .mobile-icon {
      padding-top: 20px; }
      @media (max-width: 1024px) {
        .fifty-percentage-container .section-laptop .wrap .mobile-icon {
          padding: 0px; } }
    @media (max-width: 1024px) {
      .fifty-percentage-container .section-laptop .wrap {
        padding: 0px; } }
  .fifty-percentage-container .section-laptop .macbook {
    padding: 30px; }
  .fifty-percentage-container .section-uses {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .fifty-percentage-container .section-uses img {
      padding: 20px; }
      @media (max-width: 768px) {
        .fifty-percentage-container .section-uses img {
          padding: 8px;
          margin-top: 20px; } }
  .fifty-percentage-container .section-pricing {
    padding-bottom: 80px; }
    .fifty-percentage-container .section-pricing .strike {
      text-decoration: line-through; }
    .fifty-percentage-container .section-pricing .satisfaction {
      font-size: 20px;
      font-weight: 500; }
    @media (max-width: 768px) {
      .fifty-percentage-container .section-pricing .tier {
        padding: 0 50px; } }
    @media (max-width: 480px) {
      .fifty-percentage-container .section-pricing .tier {
        padding: 0 5px; } }
    .fifty-percentage-container .section-pricing .tier .pricing-box {
      background-color: white;
      border: 2px solid #ececec;
      padding: 10px; }
      .fifty-percentage-container .section-pricing .tier .pricing-box .mo {
        color: #333;
        font-size: 16px; }
      .fifty-percentage-container .section-pricing .tier .pricing-box li {
        padding-top: 5px; }
      .fifty-percentage-container .section-pricing .tier .pricing-box .dollar {
        font-size: 48px;
        font-weight: 300; }
      .fifty-percentage-container .section-pricing .tier .pricing-box .blurb {
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
        font-weight: 300; }
      .fifty-percentage-container .section-pricing .tier .pricing-box .name {
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 10px; }
    .fifty-percentage-container .section-pricing .tier .btn-next {
      font-weight: 300;
      border: 0;
      border-radius: 0;
      padding: 20px 70px;
      color: white;
      font-size: 18px;
      background-color: #2F94C8; }
      @media (max-width: 480px) {
        .fifty-percentage-container .section-pricing .tier .btn-next {
          padding: 20px 60px; } }
    .fifty-percentage-container .section-pricing .tier.create .dollar {
      color: #e85959; }
    .fifty-percentage-container .section-pricing .tier.create .btn-next {
      background-color: #e85959; }
    .fifty-percentage-container .section-pricing .tier.explore .dollar {
      color: #2fc8b3; }
    .fifty-percentage-container .section-pricing .tier.explore .btn-next {
      background-color: #2fc8b3; }
    .fifty-percentage-container .section-pricing .tier.inspire .dollar {
      color: #4cb5ea; }
    .fifty-percentage-container .section-pricing .tier.inspire .btn-next {
      background-color: #4cb5ea; }
  .fifty-percentage-container .break-section {
    background-image: url("../../images/promotions/fifty-percentage/break-rough-draft.jpg");
    background-size: cover;
    background-position-y: 59%; }
    @media (max-width: 768px) {
      .fifty-percentage-container .break-section {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .fifty-percentage-container .break-section {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .fifty-percentage-container .break-section .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
      @media (max-width: 480px) {
        .fifty-percentage-container .break-section .head {
          padding: 0% 5%; } }
      .fifty-percentage-container .break-section .head .short-top {
        margin-top: 10px; }
      .fifty-percentage-container .break-section .head h1 {
        font-size: 40px; }
      .fifty-percentage-container .break-section .head h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .fifty-percentage-container .break-section .head h2 {
            font-size: 18px; } }
  .fifty-percentage-container .section-photos {
    color: white;
    background-color: #555; }
    .fifty-percentage-container .section-photos .no-margin {
      margin: 0px; }
    .fifty-percentage-container .section-photos p {
      color: #C3C3C3; }
    .fifty-percentage-container .section-photos .no-padding {
      padding: 0px; }
    .fifty-percentage-container .section-photos .btn-mini {
      font-weight: 300;
      font-size: 16px;
      background-color: transparent;
      color: white;
      border: 2px #C3C3C3 solid;
      border-radius: 2px; }
    .fifty-percentage-container .section-photos .big-content {
      padding-top: 50px;
      padding-left: 50px; }
      @media (max-width: 768px) {
        .fifty-percentage-container .section-photos .big-content {
          padding-left: 30px; } }
      @media (max-width: 480px) {
        .fifty-percentage-container .section-photos .big-content {
          padding: 20px; } }
  .fifty-percentage-container .features-section h3 {
    font-size: 20px;
    letter-spacing: 0px; }
  .fifty-percentage-container .section-review {
    background-color: #F5F5F5;
    padding-bottom: 30px; }
    .fifty-percentage-container .section-review a:hover {
      text-decoration: none;
      cursor: pointer; }
    .fifty-percentage-container .section-review a:active {
      text-decoration: none;
      cursor: pointer; }
    .fifty-percentage-container .section-review a:visited {
      text-decoration: none;
      cursor: pointer; }
    .fifty-percentage-container .section-review .fa {
      color: #eec970; }
    .fifty-percentage-container .section-review .croissanter {
      font-family: "Circular";
      font-size: 35px;
      line-height: 1.1;
      font-weight: 400; }
      @media (max-width: 480px) {
        .fifty-percentage-container .section-review .croissanter {
          font-size: 22px; } }
    .fifty-percentage-container .section-review .croissanter:hover {
      text-decoration: underline; }
    .fifty-percentage-container .section-review .title {
      line-height: 1em; }
    .fifty-percentage-container .section-review .boxes {
      background-color: white;
      padding: 30px; }
    .fifty-percentage-container .section-review .yelp {
      text-align: center; }
    .fifty-percentage-container .section-review .yelp-reviews {
      max-width: 600px;
      margin: auto; }
      .fifty-percentage-container .section-review .yelp-reviews .panel {
        padding: 20px;
        border: 0px; }
        .fifty-percentage-container .section-review .yelp-reviews .panel .star-box {
          padding-top: 4px; }
        .fifty-percentage-container .section-review .yelp-reviews .panel .yelp-logo {
          padding-bottom: 2px;
          vertical-align: bottom; }
  .fifty-percentage-container .section-press {
    padding-bottom: 20px;
    padding-top: 0px;
    background-color: #F5F5F5; }
    @media (min-width: 1025px) {
      .fifty-percentage-container .section-press .press-forbes {
        margin-top: 3px;
        max-width: 130px; } }
    @media (min-width: 1025px) {
      .fifty-percentage-container .section-press .press-techcrunch {
        margin-top: 5px;
        margin-left: 5px; } }
    @media (min-width: 1025px) {
      .fifty-percentage-container .section-press .press-digitalnyc {
        margin-left: 18px; } }
    @media (min-width: 1025px) {
      .fifty-percentage-container .section-press .press-entrepreneur {
        max-width: 180px;
        margin-top: 8px;
        margin-left: 25px; } }
    @media (max-width: 768px) {
      .fifty-percentage-container .section-press .mobile-padding {
        padding-top: 5%; } }
  @media (max-width: 480px) {
    .fifty-percentage-container .section-questions {
      padding-bottom: 100px; } }
  .fifty-percentage-container .create .dollar {
    color: #e85959; }
  .fifty-percentage-container .create .btn-next {
    background-color: #e85959; }
  .fifty-percentage-container .explore .dollar {
    color: #2fc8b3; }
  .fifty-percentage-container .explore .btn-next {
    background-color: #2fc8b3; }
  .fifty-percentage-container .inspire .dollar {
    color: #4cb5ea; }
  .fifty-percentage-container .inspire .btn-next {
    background-color: #4cb5ea; }
  .fifty-percentage-container .yelp-banner {
    width: 126px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("../../images/splash/yelp.png");
    background-size: 100%; }

.holiday-container {
  background-color: #FCFCFC;
  background-attachment: fixed; }
  .holiday-container .section-five-alt {
    background-color: #f7f7f7;
    padding-top: 30px; }
    .holiday-container .section-five-alt .btn-next {
      font-weight: 300;
      border: 0;
      border-radius: 0;
      padding: 15px 50px;
      color: white;
      font-size: 16px;
      background-color: #2F94C8; }
    .holiday-container .section-five-alt .pricing-box {
      box-shadow: #d8d8d8 1px 2px 2px;
      background-color: white;
      text-align: center;
      margin: 22px; }
      .holiday-container .section-five-alt .pricing-box .pricing-padding {
        padding: 10px; }
      .holiday-container .section-five-alt .pricing-box .sign {
        font-size: 25px;
        margin-right: 5px; }
      .holiday-container .section-five-alt .pricing-box .mo {
        margin-left: 5px;
        font-size: 15px;
        font-weight: 500; }
      .holiday-container .section-five-alt .pricing-box li {
        padding-top: 5px; }
      .holiday-container .section-five-alt .pricing-box .fa-ul {
        margin-left: 0px; }
      .holiday-container .section-five-alt .pricing-box .dollar {
        font-size: 50px;
        font-weight: 300; }
      .holiday-container .section-five-alt .pricing-box .blurb {
        color: #8C8C8C;
        font-size: 16px;
        margin-bottom: 30px; }
      .holiday-container .section-five-alt .pricing-box p {
        font-weight: 300; }
      .holiday-container .section-five-alt .pricing-box .name {
        font-size: 22px;
        font-weight: 300;
        margin-bottom: 10px; }
  .holiday-container input {
    border-radius: 0; }
  .holiday-container .btn-block {
    background-color: #33b756;
    font-size: 20px;
    border: 0px; }
  .holiday-container label {
    font-weight: 400; }
  .holiday-container .cat-box {
    margin-top: 14px; }
    .holiday-container .cat-box .cat-image {
      max-width: 100px; }
  .holiday-container .alert-success {
    margin: 0; }
  .holiday-container .city-name {
    text-decoration: underline; }
  .holiday-container .city-link {
    cursor: pointer; }
  .holiday-container .badge {
    display: inline;
    background-color: #48c396;
    border-radius: 0px;
    text-transform: uppercase;
    font-weight: 300; }
  .holiday-container .circular {
    font-family: 'Circular'; }
  .holiday-container .circular {
    font-family: 'Circular'; }
  .holiday-container h1 {
    font-family: 'Circular'; }
  .holiday-container h2 {
    font-weight: 400; }
  .holiday-container h3 {
    font-family: 'Circular';
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 40px; }
    @media (max-width: 480px) {
      .holiday-container h3 {
        font-size: 30px; } }
  .holiday-container h4 {
    font-size: 25px;
    font-weight: 300;
    margin-top: 18px; }
    @media (max-width: 480px) {
      .holiday-container h4 {
        font-size: 20px; } }
  .holiday-container .btn-blue {
    font-weight: 300;
    border-radius: 2px; }
  .holiday-container .btn-tour {
    font-weight: 300;
    color: #777 !important;
    border: 1px solid #777;
    border-radius: 2px; }
  .holiday-container section.press button {
    color: #fff;
    background-color: #FFC10E;
    border: none;
    border-radius: 2px;
    box-shadow: 0 5px #C79F26;
    font-family: 'Circular'; }
  .holiday-container section.press button:hover,
  .holiday-container section.press button.hover {
    background-color: #FFC10E; }
  .holiday-container section.press button:active,
  .holiday-container section.press button.active {
    background-color: #FFC10E;
    box-shadow: 0 3px #C79F26;
    transform: translateY(5px); }
  .holiday-container button {
    height: 60px; }
  .holiday-container .alert {
    background-color: #2F94C8;
    color: white;
    text-align: center; }
    .holiday-container .alert h3 {
      font-weight: 300;
      font-size: 28px; }
    .holiday-container .alert p {
      margin: 0; }
  @media (max-width: 480px) {
    .holiday-container .extra-left-margin {
      margin-left: 10px; } }
  .holiday-container .capture input {
    border-radius: 0px;
    font-size: 21px;
    width: 300px;
    height: 60px; }
    @media (max-width: 480px) {
      .holiday-container .capture input {
        width: 260px;
        margin-bottom: 10px; } }
  .holiday-container .capture .btn-default {
    border-radius: 0px;
    font-weight: 300;
    font-size: 21px;
    background-color: #f57846;
    border-color: #f57846;
    color: white;
    padding-left: 30px;
    padding-right: 30px; }
  .holiday-container button:focus {
    outline: none; }
  .holiday-container .section {
    padding-top: 50px;
    padding-bottom: 50px; }
  .holiday-container .spotlight {
    background-image: url("../../images/promotions/fifty-percentage/large.jpg");
    background-size: cover;
    background-position-y: 40%;
    height: 640px; }
    @media (max-width: 768px) {
      .holiday-container .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .holiday-container .spotlight {
        height: 575px; } }
    @media (max-width: 768px) {
      .holiday-container .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .holiday-container .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .holiday-container .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      padding: 7%; }
      @media (max-width: 480px) {
        .holiday-container .spotlight .head {
          padding: 0% 5%; } }
      .holiday-container .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
      .holiday-container .spotlight .head h1 {
        font-size: 45px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .holiday-container .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0px; } }
      .holiday-container .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .holiday-container .spotlight .head h2 {
            font-size: 18px; } }
  .holiday-container .section-steps {
    padding-bottom: 80px; }
    .holiday-container .section-steps .grey {
      color: grey; }
    .holiday-container .section-steps p {
      font-weight: 500;
      font-size: 20px; }
    .holiday-container .section-steps i {
      padding-top: 55px; }
    .holiday-container .section-steps .step-line {
      padding-top: 82px;
      vertical-align: top; }
      .holiday-container .section-steps .step-line hr {
        border-style: dashed;
        border-color: gray; }
  .holiday-container .section-spaces {
    background-color: #ececec;
    padding-bottom: 60px; }
    .holiday-container .section-spaces .padding {
      padding: 20px; }
      .holiday-container .section-spaces .padding h3 {
        margin-bottom: 10px;
        font-weight: 300; }
    @media (min-width: 992px) {
      .holiday-container .section-spaces .container-slick {
        width: 100%; } }
    @media (min-width: 1200px) {
      .holiday-container .section-spaces .container-slick {
        width: 1170px; } }
    .holiday-container .section-spaces .space {
      padding-left: 0;
      padding-right: 0; }
      .holiday-container .section-spaces .space .info {
        background-color: white;
        position: relative; }
      .holiday-container .section-spaces .space .workspace-image {
        width: 100%; }
      .holiday-container .section-spaces .space .workspace-container {
        padding: 16px 0px 5px 0px; }
        @media (max-width: 1024px) {
          .holiday-container .section-spaces .space .workspace-container {
            padding-bottom: 0;
            padding-right: 20px; } }
        .holiday-container .section-spaces .space .workspace-container .workspace-title {
          margin-bottom: 5px; }
          .holiday-container .section-spaces .space .workspace-container .workspace-title h3 {
            font-size: 20px;
            font-weight: 400;
            margin: 0;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            letter-spacing: 0px;
            text-overflow: ellipsis; }
        .holiday-container .section-spaces .space .workspace-container .workspace-nh {
          font-size: 13px;
          color: grey; }
  .holiday-container .section-laptop .wrap {
    padding-top: 150px;
    padding-left: 20px; }
    .holiday-container .section-laptop .wrap .mobile-icon {
      padding-top: 20px; }
      @media (max-width: 1024px) {
        .holiday-container .section-laptop .wrap .mobile-icon {
          padding: 0px; } }
    @media (max-width: 1024px) {
      .holiday-container .section-laptop .wrap {
        padding: 0px; } }
  .holiday-container .section-laptop .macbook {
    padding: 30px; }
  .holiday-container .section-uses {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .holiday-container .section-uses img {
      padding: 20px; }
      @media (max-width: 768px) {
        .holiday-container .section-uses img {
          padding: 8px;
          margin-top: 20px; } }
  .holiday-container .section-pricing {
    padding-bottom: 80px; }
    .holiday-container .section-pricing .strike {
      text-decoration: line-through; }
    .holiday-container .section-pricing .satisfaction {
      font-size: 20px;
      font-weight: 500; }
    @media (max-width: 768px) {
      .holiday-container .section-pricing .tier {
        padding: 0 50px; } }
    @media (max-width: 480px) {
      .holiday-container .section-pricing .tier {
        padding: 0 5px; } }
    .holiday-container .section-pricing .tier .pricing-box {
      background-color: white;
      border: 2px solid #ececec;
      padding: 10px; }
      .holiday-container .section-pricing .tier .pricing-box .mo {
        color: #333;
        font-size: 16px; }
      .holiday-container .section-pricing .tier .pricing-box li {
        padding-top: 5px; }
      .holiday-container .section-pricing .tier .pricing-box .dollar {
        font-size: 48px;
        font-weight: 300; }
      .holiday-container .section-pricing .tier .pricing-box .blurb {
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
        font-weight: 300; }
      .holiday-container .section-pricing .tier .pricing-box .name {
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 10px; }
    .holiday-container .section-pricing .tier .btn-next {
      font-weight: 300;
      border: 0;
      border-radius: 0;
      padding: 20px 70px;
      color: white;
      font-size: 18px;
      background-color: #2F94C8; }
      @media (max-width: 480px) {
        .holiday-container .section-pricing .tier .btn-next {
          padding: 20px 60px; } }
    .holiday-container .section-pricing .tier.create .dollar {
      color: #e85959; }
    .holiday-container .section-pricing .tier.create .btn-next {
      background-color: #e85959; }
    .holiday-container .section-pricing .tier.explore .dollar {
      color: #2fc8b3; }
    .holiday-container .section-pricing .tier.explore .btn-next {
      background-color: #2fc8b3; }
    .holiday-container .section-pricing .tier.inspire .dollar {
      color: #4cb5ea; }
    .holiday-container .section-pricing .tier.inspire .btn-next {
      background-color: #4cb5ea; }
  .holiday-container .break-section {
    background-image: url("../../images/promotions/fifty-percentage/break-rough-draft.jpg");
    background-size: cover;
    background-position-y: 59%; }
    @media (max-width: 768px) {
      .holiday-container .break-section {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .holiday-container .break-section {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .holiday-container .break-section .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
      @media (max-width: 480px) {
        .holiday-container .break-section .head {
          padding: 0% 5%; } }
      .holiday-container .break-section .head .short-top {
        margin-top: 10px; }
      .holiday-container .break-section .head h1 {
        font-size: 40px; }
      .holiday-container .break-section .head h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .holiday-container .break-section .head h2 {
            font-size: 18px; } }
  .holiday-container .section-photos {
    color: white;
    background-color: #555; }
    .holiday-container .section-photos .no-margin {
      margin: 0px; }
    .holiday-container .section-photos p {
      color: #C3C3C3; }
    .holiday-container .section-photos .no-padding {
      padding: 0px; }
    .holiday-container .section-photos .btn-mini {
      font-weight: 300;
      font-size: 16px;
      background-color: transparent;
      color: white;
      border: 2px #C3C3C3 solid;
      border-radius: 2px; }
    .holiday-container .section-photos .big-content {
      padding-top: 50px;
      padding-left: 50px; }
      @media (max-width: 768px) {
        .holiday-container .section-photos .big-content {
          padding-left: 30px; } }
      @media (max-width: 480px) {
        .holiday-container .section-photos .big-content {
          padding: 20px; } }
  .holiday-container .features-section h3 {
    font-size: 20px;
    letter-spacing: 0px; }
  .holiday-container .section-review {
    background-color: #F5F5F5;
    padding-bottom: 30px; }
    .holiday-container .section-review a:hover {
      text-decoration: none;
      cursor: pointer; }
    .holiday-container .section-review a:active {
      text-decoration: none;
      cursor: pointer; }
    .holiday-container .section-review a:visited {
      text-decoration: none;
      cursor: pointer; }
    .holiday-container .section-review .fa {
      color: #eec970; }
    .holiday-container .section-review .croissanter {
      font-family: "Circular";
      font-size: 35px;
      line-height: 1.1;
      font-weight: 400; }
      @media (max-width: 480px) {
        .holiday-container .section-review .croissanter {
          font-size: 22px; } }
    .holiday-container .section-review .croissanter:hover {
      text-decoration: underline; }
    .holiday-container .section-review .title {
      line-height: 1em; }
    .holiday-container .section-review .boxes {
      background-color: white;
      padding: 30px; }
    .holiday-container .section-review .yelp {
      text-align: center; }
    .holiday-container .section-review .yelp-reviews {
      max-width: 600px;
      margin: auto; }
      .holiday-container .section-review .yelp-reviews .panel {
        padding: 20px;
        border: 0px; }
        .holiday-container .section-review .yelp-reviews .panel .star-box {
          padding-top: 4px; }
        .holiday-container .section-review .yelp-reviews .panel .yelp-logo {
          padding-bottom: 2px;
          vertical-align: bottom; }
  .holiday-container .section-press {
    padding-bottom: 20px;
    padding-top: 0px;
    background-color: #F5F5F5; }
    @media (min-width: 1025px) {
      .holiday-container .section-press .press-forbes {
        margin-top: 3px;
        max-width: 130px; } }
    @media (min-width: 1025px) {
      .holiday-container .section-press .press-techcrunch {
        margin-top: 5px;
        margin-left: 5px; } }
    @media (min-width: 1025px) {
      .holiday-container .section-press .press-digitalnyc {
        margin-left: 18px; } }
    @media (min-width: 1025px) {
      .holiday-container .section-press .press-entrepreneur {
        max-width: 180px;
        margin-top: 8px;
        margin-left: 25px; } }
    @media (max-width: 768px) {
      .holiday-container .section-press .mobile-padding {
        padding-top: 5%; } }
  @media (max-width: 480px) {
    .holiday-container .section-questions {
      padding-bottom: 100px; } }
  .holiday-container .create .dollar {
    color: #e85959; }
  .holiday-container .create .btn-next {
    background-color: #e85959; }
  .holiday-container .explore .dollar {
    color: #2fc8b3; }
  .holiday-container .explore .btn-next {
    background-color: #2fc8b3; }
  .holiday-container .inspire .dollar {
    color: #4cb5ea; }
  .holiday-container .inspire .btn-next {
    background-color: #4cb5ea; }
  .holiday-container .yelp-banner {
    width: 126px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("../../images/splash/yelp.png");
    background-size: 100%; }

.black-friday-container {
  background-color: #FCFCFC;
  background-attachment: fixed; }
  .black-friday-container input {
    border-radius: 0; }
  .black-friday-container .btn-block {
    background-color: #33b756;
    font-size: 20px;
    border: 0px; }
  .black-friday-container label {
    font-weight: 400; }
  .black-friday-container .cat-box {
    margin-top: 14px; }
    .black-friday-container .cat-box .cat-image {
      max-width: 100px; }
  .black-friday-container .alert-success {
    margin: 0; }
  .black-friday-container .city-name {
    text-decoration: underline; }
  .black-friday-container .city-link {
    cursor: pointer; }
  .black-friday-container .badge {
    display: inline;
    background-color: #48c396;
    border-radius: 0px;
    text-transform: uppercase;
    font-weight: 300; }
  .black-friday-container .circular {
    font-family: 'Circular'; }
  .black-friday-container .circular {
    font-family: 'Circular'; }
  .black-friday-container h1 {
    font-family: 'Circular'; }
  .black-friday-container h2 {
    font-weight: 400; }
  .black-friday-container h3 {
    font-family: 'Circular';
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 40px; }
    @media (max-width: 480px) {
      .black-friday-container h3 {
        font-size: 30px; } }
  .black-friday-container h4 {
    font-size: 25px;
    font-weight: 300;
    margin-top: 18px; }
    @media (max-width: 480px) {
      .black-friday-container h4 {
        font-size: 20px; } }
  .black-friday-container .btn-blue {
    font-weight: 300;
    border-radius: 2px; }
  .black-friday-container .btn-tour {
    font-weight: 300;
    color: #777 !important;
    border: 1px solid #777;
    border-radius: 2px; }
  .black-friday-container section.press button {
    color: #fff;
    background-color: #FFC10E;
    border: none;
    border-radius: 2px;
    box-shadow: 0 5px #C79F26;
    font-family: 'Circular'; }
  .black-friday-container section.press button:hover,
  .black-friday-container section.press button.hover {
    background-color: #FFC10E; }
  .black-friday-container section.press button:active,
  .black-friday-container section.press button.active {
    background-color: #FFC10E;
    box-shadow: 0 3px #C79F26;
    transform: translateY(5px); }
  .black-friday-container button {
    height: 60px; }
  .black-friday-container .alert {
    background-color: black;
    color: white;
    text-align: left; }
    .black-friday-container .alert h4 {
      font-weight: 500; }
  @media (max-width: 480px) {
    .black-friday-container .extra-left-margin {
      margin-left: 10px; } }
  .black-friday-container .capture input {
    border-radius: 0px;
    font-size: 21px;
    width: 300px;
    height: 60px; }
    @media (max-width: 480px) {
      .black-friday-container .capture input {
        width: 260px;
        margin-bottom: 10px; } }
  .black-friday-container .capture .btn-default {
    border-radius: 0px;
    font-weight: 300;
    font-size: 21px;
    background-color: #48c396;
    border-color: #48c396;
    color: white;
    padding-left: 30px;
    padding-right: 30px; }
  .black-friday-container button:focus {
    outline: none; }
  .black-friday-container .section {
    padding-top: 50px;
    padding-bottom: 50px; }
  .black-friday-container .spotlight {
    background-image: url("../../images/promotions/black-friday/spotlight.jpg");
    background-size: cover;
    background-position-y: 40%;
    height: 640px; }
    @media (max-width: 768px) {
      .black-friday-container .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .black-friday-container .spotlight {
        height: 575px; } }
    @media (max-width: 768px) {
      .black-friday-container .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .black-friday-container .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .black-friday-container .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      padding: 7%; }
      @media (max-width: 480px) {
        .black-friday-container .spotlight .head {
          padding: 0% 5%; } }
      .black-friday-container .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
      .black-friday-container .spotlight .head h1 {
        font-size: 49px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .black-friday-container .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0px; } }
      .black-friday-container .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .black-friday-container .spotlight .head h2 {
            font-size: 18px; } }
  .black-friday-container .section-steps {
    padding-bottom: 80px; }
    .black-friday-container .section-steps p {
      font-weight: 500;
      font-size: 20px; }
    .black-friday-container .section-steps i {
      padding-top: 55px; }
    .black-friday-container .section-steps .step-line {
      padding-top: 82px;
      vertical-align: top; }
      .black-friday-container .section-steps .step-line hr {
        border-style: dashed;
        border-color: gray; }
  .black-friday-container .section-spaces {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .black-friday-container .section-spaces .padding {
      padding: 20px; }
      .black-friday-container .section-spaces .padding h3 {
        margin-bottom: 10px;
        font-weight: 300; }
    @media (min-width: 992px) {
      .black-friday-container .section-spaces .container-slick {
        width: 100%; } }
    @media (min-width: 1200px) {
      .black-friday-container .section-spaces .container-slick {
        width: 1170px; } }
    .black-friday-container .section-spaces .space {
      padding-left: 0;
      padding-right: 0; }
      .black-friday-container .section-spaces .space .info {
        background-color: white;
        position: relative; }
      .black-friday-container .section-spaces .space .workspace-image {
        width: 100%; }
      .black-friday-container .section-spaces .space .workspace-container {
        padding: 16px 0px 5px 0px; }
        @media (max-width: 1024px) {
          .black-friday-container .section-spaces .space .workspace-container {
            padding-bottom: 0;
            padding-right: 20px; } }
        .black-friday-container .section-spaces .space .workspace-container .workspace-title {
          margin-bottom: 5px; }
          .black-friday-container .section-spaces .space .workspace-container .workspace-title h3 {
            font-size: 20px;
            font-weight: 400;
            margin: 0;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            letter-spacing: 0px;
            text-overflow: ellipsis; }
        .black-friday-container .section-spaces .space .workspace-container .workspace-nh {
          font-size: 13px;
          color: grey; }
  .black-friday-container .section-laptop .wrap {
    padding-top: 150px;
    padding-left: 20px; }
    .black-friday-container .section-laptop .wrap .mobile-icon {
      padding-top: 20px; }
      @media (max-width: 1024px) {
        .black-friday-container .section-laptop .wrap .mobile-icon {
          padding: 0px; } }
    @media (max-width: 1024px) {
      .black-friday-container .section-laptop .wrap {
        padding: 0px; } }
  .black-friday-container .section-laptop .macbook {
    padding: 30px; }
  .black-friday-container .section-uses {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .black-friday-container .section-uses img {
      padding: 20px; }
      @media (max-width: 768px) {
        .black-friday-container .section-uses img {
          padding: 8px;
          margin-top: 20px; } }
  .black-friday-container .section-pricing {
    padding-bottom: 80px; }
    .black-friday-container .section-pricing .strike {
      text-decoration: line-through; }
    .black-friday-container .section-pricing .satisfaction {
      font-size: 20px;
      font-weight: 500; }
    @media (max-width: 768px) {
      .black-friday-container .section-pricing .tier {
        padding: 0 50px; } }
    @media (max-width: 480px) {
      .black-friday-container .section-pricing .tier {
        padding: 0 5px; } }
    .black-friday-container .section-pricing .tier .pricing-box {
      background-color: white;
      border: 2px solid #ececec;
      padding: 10px; }
      .black-friday-container .section-pricing .tier .pricing-box .mo {
        color: #333;
        font-size: 16px; }
      .black-friday-container .section-pricing .tier .pricing-box li {
        padding-top: 5px; }
      .black-friday-container .section-pricing .tier .pricing-box .dollar {
        font-size: 48px;
        font-weight: 300; }
      .black-friday-container .section-pricing .tier .pricing-box .blurb {
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
        font-weight: 300; }
      .black-friday-container .section-pricing .tier .pricing-box .name {
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 10px; }
    .black-friday-container .section-pricing .tier .btn-next {
      font-weight: 300;
      border: 0;
      border-radius: 0;
      padding: 20px 70px;
      color: white;
      font-size: 18px;
      background-color: #2F94C8; }
      @media (max-width: 480px) {
        .black-friday-container .section-pricing .tier .btn-next {
          padding: 20px 60px; } }
    .black-friday-container .section-pricing .tier.create .dollar {
      color: #e85959; }
    .black-friday-container .section-pricing .tier.create .btn-next {
      background-color: #e85959; }
    .black-friday-container .section-pricing .tier.explore .dollar {
      color: #2fc8b3; }
    .black-friday-container .section-pricing .tier.explore .btn-next {
      background-color: #2fc8b3; }
    .black-friday-container .section-pricing .tier.inspire .dollar {
      color: #4cb5ea; }
    .black-friday-container .section-pricing .tier.inspire .btn-next {
      background-color: #4cb5ea; }
  .black-friday-container .break-section {
    background-image: url("../../images/promotions/black-friday/break-rough-draft.jpg");
    background-size: cover;
    background-position-y: 59%; }
    @media (max-width: 768px) {
      .black-friday-container .break-section {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .black-friday-container .break-section {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .black-friday-container .break-section .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
      @media (max-width: 480px) {
        .black-friday-container .break-section .head {
          padding: 0% 5%; } }
      .black-friday-container .break-section .head .short-top {
        margin-top: 10px; }
      .black-friday-container .break-section .head h1 {
        font-size: 40px; }
      .black-friday-container .break-section .head h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .black-friday-container .break-section .head h2 {
            font-size: 18px; } }
  .black-friday-container .section-photos {
    color: white;
    background-color: #555; }
    .black-friday-container .section-photos .no-margin {
      margin: 0px; }
    .black-friday-container .section-photos p {
      color: #C3C3C3; }
    .black-friday-container .section-photos .no-padding {
      padding: 0px; }
    .black-friday-container .section-photos .btn-mini {
      font-weight: 300;
      font-size: 16px;
      background-color: transparent;
      color: white;
      border: 2px #C3C3C3 solid;
      border-radius: 2px; }
    .black-friday-container .section-photos .big-content {
      padding-top: 50px;
      padding-left: 50px; }
      @media (max-width: 768px) {
        .black-friday-container .section-photos .big-content {
          padding-left: 30px; } }
      @media (max-width: 480px) {
        .black-friday-container .section-photos .big-content {
          padding: 20px; } }
  .black-friday-container .features-section h3 {
    font-size: 20px;
    letter-spacing: 0px; }
  .black-friday-container .section-review {
    background-color: #F5F5F5;
    padding-bottom: 30px; }
    .black-friday-container .section-review a:hover {
      text-decoration: none;
      cursor: pointer; }
    .black-friday-container .section-review a:active {
      text-decoration: none;
      cursor: pointer; }
    .black-friday-container .section-review a:visited {
      text-decoration: none;
      cursor: pointer; }
    .black-friday-container .section-review .fa {
      color: #eec970; }
    .black-friday-container .section-review .croissanter {
      font-family: "Circular";
      font-size: 35px;
      line-height: 1.1;
      font-weight: 400; }
      @media (max-width: 480px) {
        .black-friday-container .section-review .croissanter {
          font-size: 22px; } }
    .black-friday-container .section-review .croissanter:hover {
      text-decoration: underline; }
    .black-friday-container .section-review .title {
      line-height: 1em; }
    .black-friday-container .section-review .boxes {
      background-color: white;
      padding: 30px; }
    .black-friday-container .section-review .yelp {
      text-align: center; }
    .black-friday-container .section-review .yelp-reviews {
      max-width: 600px;
      margin: auto; }
      .black-friday-container .section-review .yelp-reviews .panel {
        padding: 20px;
        border: 0px; }
        .black-friday-container .section-review .yelp-reviews .panel .star-box {
          padding-top: 4px; }
        .black-friday-container .section-review .yelp-reviews .panel .yelp-logo {
          padding-bottom: 2px;
          vertical-align: bottom; }
  .black-friday-container .section-press {
    padding-bottom: 20px;
    padding-top: 0px;
    background-color: #F5F5F5; }
    @media (min-width: 1025px) {
      .black-friday-container .section-press .press-forbes {
        margin-top: 3px;
        max-width: 130px; } }
    @media (min-width: 1025px) {
      .black-friday-container .section-press .press-techcrunch {
        margin-top: 5px;
        margin-left: 5px; } }
    @media (min-width: 1025px) {
      .black-friday-container .section-press .press-digitalnyc {
        margin-left: 18px; } }
    @media (min-width: 1025px) {
      .black-friday-container .section-press .press-entrepreneur {
        max-width: 180px;
        margin-top: 8px;
        margin-left: 25px; } }
    @media (max-width: 768px) {
      .black-friday-container .section-press .mobile-padding {
        padding-top: 5%; } }
  @media (max-width: 480px) {
    .black-friday-container .section-questions {
      padding-bottom: 100px; } }
  .black-friday-container .create .dollar {
    color: #e85959; }
  .black-friday-container .create .btn-next {
    background-color: #e85959; }
  .black-friday-container .explore .dollar {
    color: #2fc8b3; }
  .black-friday-container .explore .btn-next {
    background-color: #2fc8b3; }
  .black-friday-container .inspire .dollar {
    color: #4cb5ea; }
  .black-friday-container .inspire .btn-next {
    background-color: #4cb5ea; }
  .black-friday-container .yelp-banner {
    width: 126px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("../../images/splash/yelp.png");
    background-size: 100%; }

.cyber-monday-container {
  background-color: #FCFCFC;
  background-attachment: fixed; }
  .cyber-monday-container input {
    border-radius: 0; }
  .cyber-monday-container .btn-block {
    background-color: #33b756;
    font-size: 20px;
    border: 0px; }
  .cyber-monday-container label {
    font-weight: 400; }
  .cyber-monday-container .cat-box {
    margin-top: 14px; }
    .cyber-monday-container .cat-box .cat-image {
      max-width: 100px; }
  .cyber-monday-container .alert-success {
    margin: 0; }
  .cyber-monday-container .city-name {
    text-decoration: underline; }
  .cyber-monday-container .city-link {
    cursor: pointer; }
  .cyber-monday-container .badge {
    display: inline;
    background-color: #48c396;
    border-radius: 0px;
    text-transform: uppercase;
    font-weight: 300; }
  .cyber-monday-container .circular {
    font-family: 'Circular'; }
  .cyber-monday-container .circular {
    font-family: 'Circular'; }
  .cyber-monday-container h1 {
    font-family: 'Circular'; }
  .cyber-monday-container h2 {
    font-weight: 400; }
  .cyber-monday-container h3 {
    font-family: 'Circular';
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 40px; }
    @media (max-width: 480px) {
      .cyber-monday-container h3 {
        font-size: 30px; } }
  .cyber-monday-container h4 {
    font-size: 25px;
    font-weight: 300;
    margin-top: 18px; }
    @media (max-width: 480px) {
      .cyber-monday-container h4 {
        font-size: 20px; } }
  .cyber-monday-container .btn-blue {
    font-weight: 300;
    border-radius: 2px; }
  .cyber-monday-container .btn-tour {
    font-weight: 300;
    color: #777 !important;
    border: 1px solid #777;
    border-radius: 2px; }
  .cyber-monday-container section.press button {
    color: #fff;
    background-color: #FFC10E;
    border: none;
    border-radius: 2px;
    box-shadow: 0 5px #C79F26;
    font-family: 'Circular'; }
  .cyber-monday-container section.press button:hover,
  .cyber-monday-container section.press button.hover {
    background-color: #FFC10E; }
  .cyber-monday-container section.press button:active,
  .cyber-monday-container section.press button.active {
    background-color: #FFC10E;
    box-shadow: 0 3px #C79F26;
    transform: translateY(5px); }
  .cyber-monday-container button {
    height: 60px; }
  .cyber-monday-container .alert {
    background-color: black;
    color: white;
    text-align: left; }
    .cyber-monday-container .alert h4 {
      font-weight: 500; }
  @media (max-width: 480px) {
    .cyber-monday-container .extra-left-margin {
      margin-left: 10px; } }
  .cyber-monday-container .capture input {
    border-radius: 0px;
    font-size: 21px;
    width: 300px;
    height: 60px; }
    @media (max-width: 480px) {
      .cyber-monday-container .capture input {
        width: 260px;
        margin-bottom: 10px; } }
  .cyber-monday-container .capture .btn-default {
    border-radius: 0px;
    font-weight: 300;
    font-size: 21px;
    background-color: #48c396;
    border-color: #48c396;
    color: white;
    padding-left: 30px;
    padding-right: 30px; }
  .cyber-monday-container button:focus {
    outline: none; }
  .cyber-monday-container .section {
    padding-top: 50px;
    padding-bottom: 50px; }
  .cyber-monday-container .spotlight {
    background-image: url("../../images/promotions/cyber-monday/spotlight.jpg");
    background-size: cover;
    background-position-y: 40%;
    height: 640px; }
    @media (max-width: 768px) {
      .cyber-monday-container .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .cyber-monday-container .spotlight {
        height: 575px; } }
    @media (max-width: 768px) {
      .cyber-monday-container .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .cyber-monday-container .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .cyber-monday-container .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      padding: 7%; }
      @media (max-width: 480px) {
        .cyber-monday-container .spotlight .head {
          padding: 0% 5%; } }
      .cyber-monday-container .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
      .cyber-monday-container .spotlight .head h1 {
        font-size: 49px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .cyber-monday-container .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0px; } }
      .cyber-monday-container .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .cyber-monday-container .spotlight .head h2 {
            font-size: 18px; } }
  .cyber-monday-container .section-steps {
    padding-bottom: 80px; }
    .cyber-monday-container .section-steps p {
      font-weight: 500;
      font-size: 20px; }
    .cyber-monday-container .section-steps i {
      padding-top: 55px; }
    .cyber-monday-container .section-steps .step-line {
      padding-top: 82px;
      vertical-align: top; }
      .cyber-monday-container .section-steps .step-line hr {
        border-style: dashed;
        border-color: gray; }
  .cyber-monday-container .section-spaces {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .cyber-monday-container .section-spaces .padding {
      padding: 20px; }
      .cyber-monday-container .section-spaces .padding h3 {
        margin-bottom: 10px;
        font-weight: 300; }
    @media (min-width: 992px) {
      .cyber-monday-container .section-spaces .container-slick {
        width: 100%; } }
    @media (min-width: 1200px) {
      .cyber-monday-container .section-spaces .container-slick {
        width: 1170px; } }
    .cyber-monday-container .section-spaces .space {
      padding-left: 0;
      padding-right: 0; }
      .cyber-monday-container .section-spaces .space .info {
        background-color: white;
        position: relative; }
      .cyber-monday-container .section-spaces .space .workspace-image {
        width: 100%; }
      .cyber-monday-container .section-spaces .space .workspace-container {
        padding: 16px 0px 5px 0px; }
        @media (max-width: 1024px) {
          .cyber-monday-container .section-spaces .space .workspace-container {
            padding-bottom: 0;
            padding-right: 20px; } }
        .cyber-monday-container .section-spaces .space .workspace-container .workspace-title {
          margin-bottom: 5px; }
          .cyber-monday-container .section-spaces .space .workspace-container .workspace-title h3 {
            font-size: 20px;
            font-weight: 400;
            margin: 0;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            letter-spacing: 0px;
            text-overflow: ellipsis; }
        .cyber-monday-container .section-spaces .space .workspace-container .workspace-nh {
          font-size: 13px;
          color: grey; }
  .cyber-monday-container .section-laptop .wrap {
    padding-top: 150px;
    padding-left: 20px; }
    .cyber-monday-container .section-laptop .wrap .mobile-icon {
      padding-top: 20px; }
      @media (max-width: 1024px) {
        .cyber-monday-container .section-laptop .wrap .mobile-icon {
          padding: 0px; } }
    @media (max-width: 1024px) {
      .cyber-monday-container .section-laptop .wrap {
        padding: 0px; } }
  .cyber-monday-container .section-laptop .macbook {
    padding: 30px; }
  .cyber-monday-container .section-uses {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .cyber-monday-container .section-uses img {
      padding: 20px; }
      @media (max-width: 768px) {
        .cyber-monday-container .section-uses img {
          padding: 8px;
          margin-top: 20px; } }
  .cyber-monday-container .section-pricing {
    padding-bottom: 80px; }
    .cyber-monday-container .section-pricing .strike {
      text-decoration: line-through; }
    .cyber-monday-container .section-pricing .satisfaction {
      font-size: 20px;
      font-weight: 500; }
    @media (max-width: 768px) {
      .cyber-monday-container .section-pricing .tier {
        padding: 0 50px; } }
    @media (max-width: 480px) {
      .cyber-monday-container .section-pricing .tier {
        padding: 0 5px; } }
    .cyber-monday-container .section-pricing .tier .pricing-box {
      background-color: white;
      border: 2px solid #ececec;
      padding: 10px; }
      .cyber-monday-container .section-pricing .tier .pricing-box .mo {
        color: #333;
        font-size: 16px; }
      .cyber-monday-container .section-pricing .tier .pricing-box li {
        padding-top: 5px; }
      .cyber-monday-container .section-pricing .tier .pricing-box .dollar {
        font-size: 48px;
        font-weight: 300; }
      .cyber-monday-container .section-pricing .tier .pricing-box .blurb {
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
        font-weight: 300; }
      .cyber-monday-container .section-pricing .tier .pricing-box .name {
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 10px; }
    .cyber-monday-container .section-pricing .tier .btn-next {
      font-weight: 300;
      border: 0;
      border-radius: 0;
      padding: 20px 70px;
      color: white;
      font-size: 18px;
      background-color: #2F94C8; }
      @media (max-width: 480px) {
        .cyber-monday-container .section-pricing .tier .btn-next {
          padding: 20px 60px; } }
    .cyber-monday-container .section-pricing .tier.create .dollar {
      color: #e85959; }
    .cyber-monday-container .section-pricing .tier.create .btn-next {
      background-color: #e85959; }
    .cyber-monday-container .section-pricing .tier.explore .dollar {
      color: #2fc8b3; }
    .cyber-monday-container .section-pricing .tier.explore .btn-next {
      background-color: #2fc8b3; }
    .cyber-monday-container .section-pricing .tier.inspire .dollar {
      color: #4cb5ea; }
    .cyber-monday-container .section-pricing .tier.inspire .btn-next {
      background-color: #4cb5ea; }
  .cyber-monday-container .break-section {
    background-image: url("../../images/promotions/cyber-monday/break-rough-draft.jpg");
    background-size: cover;
    background-position-y: 59%; }
    @media (max-width: 768px) {
      .cyber-monday-container .break-section {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .cyber-monday-container .break-section {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .cyber-monday-container .break-section .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
      @media (max-width: 480px) {
        .cyber-monday-container .break-section .head {
          padding: 0% 5%; } }
      .cyber-monday-container .break-section .head .short-top {
        margin-top: 10px; }
      .cyber-monday-container .break-section .head h1 {
        font-size: 40px; }
      .cyber-monday-container .break-section .head h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .cyber-monday-container .break-section .head h2 {
            font-size: 18px; } }
  .cyber-monday-container .section-photos {
    color: white;
    background-color: #555; }
    .cyber-monday-container .section-photos .no-margin {
      margin: 0px; }
    .cyber-monday-container .section-photos p {
      color: #C3C3C3; }
    .cyber-monday-container .section-photos .no-padding {
      padding: 0px; }
    .cyber-monday-container .section-photos .btn-mini {
      font-weight: 300;
      font-size: 16px;
      background-color: transparent;
      color: white;
      border: 2px #C3C3C3 solid;
      border-radius: 2px; }
    .cyber-monday-container .section-photos .big-content {
      padding-top: 50px;
      padding-left: 50px; }
      @media (max-width: 768px) {
        .cyber-monday-container .section-photos .big-content {
          padding-left: 30px; } }
      @media (max-width: 480px) {
        .cyber-monday-container .section-photos .big-content {
          padding: 20px; } }
  .cyber-monday-container .features-section h3 {
    font-size: 20px;
    letter-spacing: 0px; }
  .cyber-monday-container .section-review {
    background-color: #F5F5F5;
    padding-bottom: 30px; }
    .cyber-monday-container .section-review a:hover {
      text-decoration: none;
      cursor: pointer; }
    .cyber-monday-container .section-review a:active {
      text-decoration: none;
      cursor: pointer; }
    .cyber-monday-container .section-review a:visited {
      text-decoration: none;
      cursor: pointer; }
    .cyber-monday-container .section-review .fa {
      color: #eec970; }
    .cyber-monday-container .section-review .croissanter {
      font-family: "Circular";
      font-size: 35px;
      line-height: 1.1;
      font-weight: 400; }
      @media (max-width: 480px) {
        .cyber-monday-container .section-review .croissanter {
          font-size: 22px; } }
    .cyber-monday-container .section-review .croissanter:hover {
      text-decoration: underline; }
    .cyber-monday-container .section-review .title {
      line-height: 1em; }
    .cyber-monday-container .section-review .boxes {
      background-color: white;
      padding: 30px; }
    .cyber-monday-container .section-review .yelp {
      text-align: center; }
    .cyber-monday-container .section-review .yelp-reviews {
      max-width: 600px;
      margin: auto; }
      .cyber-monday-container .section-review .yelp-reviews .panel {
        padding: 20px;
        border: 0px; }
        .cyber-monday-container .section-review .yelp-reviews .panel .star-box {
          padding-top: 4px; }
        .cyber-monday-container .section-review .yelp-reviews .panel .yelp-logo {
          padding-bottom: 2px;
          vertical-align: bottom; }
  .cyber-monday-container .section-press {
    padding-bottom: 20px;
    padding-top: 0px;
    background-color: #F5F5F5; }
    @media (min-width: 1025px) {
      .cyber-monday-container .section-press .press-forbes {
        margin-top: 3px;
        max-width: 130px; } }
    @media (min-width: 1025px) {
      .cyber-monday-container .section-press .press-techcrunch {
        margin-top: 5px;
        margin-left: 5px; } }
    @media (min-width: 1025px) {
      .cyber-monday-container .section-press .press-digitalnyc {
        margin-left: 18px; } }
    @media (min-width: 1025px) {
      .cyber-monday-container .section-press .press-entrepreneur {
        max-width: 180px;
        margin-top: 8px;
        margin-left: 25px; } }
    @media (max-width: 768px) {
      .cyber-monday-container .section-press .mobile-padding {
        padding-top: 5%; } }
  @media (max-width: 480px) {
    .cyber-monday-container .section-questions {
      padding-bottom: 100px; } }
  .cyber-monday-container .create .dollar {
    color: #e85959; }
  .cyber-monday-container .create .btn-next {
    background-color: #e85959; }
  .cyber-monday-container .explore .dollar {
    color: #2fc8b3; }
  .cyber-monday-container .explore .btn-next {
    background-color: #2fc8b3; }
  .cyber-monday-container .inspire .dollar {
    color: #4cb5ea; }
  .cyber-monday-container .inspire .btn-next {
    background-color: #4cb5ea; }
  .cyber-monday-container .yelp-banner {
    width: 126px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("../../images/splash/yelp.png");
    background-size: 100%; }

.seven-for-seven-container {
  background-color: #FCFCFC;
  background-attachment: fixed; }
  .seven-for-seven-container .cat-box {
    margin-top: 14px; }
    .seven-for-seven-container .cat-box .cat-image {
      max-width: 100px; }
  .seven-for-seven-container .alert-success {
    margin: 0; }
  .seven-for-seven-container .city-name {
    text-decoration: underline; }
  .seven-for-seven-container .city-link {
    cursor: pointer; }
  .seven-for-seven-container .badge {
    display: inline;
    background-color: #48c396;
    border-radius: 0px;
    text-transform: uppercase;
    font-weight: 300; }
  .seven-for-seven-container .circular {
    font-family: 'Circular'; }
  .seven-for-seven-container .circular {
    font-family: 'Circular'; }
  .seven-for-seven-container h1 {
    font-family: 'Circular'; }
  .seven-for-seven-container h2 {
    font-weight: 400; }
  .seven-for-seven-container h3 {
    font-family: 'Circular';
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 40px; }
    @media (max-width: 480px) {
      .seven-for-seven-container h3 {
        font-size: 30px; } }
  .seven-for-seven-container h4 {
    font-size: 25px;
    font-weight: 300;
    margin-top: 18px; }
    @media (max-width: 480px) {
      .seven-for-seven-container h4 {
        font-size: 20px; } }
  .seven-for-seven-container .btn-blue {
    font-weight: 300;
    border-radius: 2px; }
  .seven-for-seven-container .btn-tour {
    font-weight: 300;
    color: #777 !important;
    border: 1px solid #777;
    border-radius: 2px; }
  .seven-for-seven-container section.press button {
    color: #fff;
    background-color: #FFC10E;
    border: none;
    border-radius: 2px;
    box-shadow: 0 5px #C79F26;
    font-family: 'Circular'; }
  .seven-for-seven-container section.press button:hover,
  .seven-for-seven-container section.press button.hover {
    background-color: #FFC10E; }
  .seven-for-seven-container section.press button:active,
  .seven-for-seven-container section.press button.active {
    background-color: #FFC10E;
    box-shadow: 0 3px #C79F26;
    transform: translateY(5px); }
  .seven-for-seven-container button {
    height: 60px; }
  .seven-for-seven-container .alert {
    background-color: #e8aa5d;
    color: white;
    text-align: left; }
    .seven-for-seven-container .alert h4 {
      font-weight: 500; }
  @media (max-width: 480px) {
    .seven-for-seven-container .extra-left-margin {
      margin-left: 10px; } }
  .seven-for-seven-container .capture input {
    border-radius: 0px;
    font-size: 21px;
    width: 300px;
    height: 60px; }
    @media (max-width: 480px) {
      .seven-for-seven-container .capture input {
        width: 260px;
        margin-bottom: 10px; } }
  .seven-for-seven-container .capture .btn-default {
    border-radius: 0px;
    font-weight: 300;
    font-size: 21px;
    background-color: #48c396;
    border-color: #48c396;
    color: white;
    padding-left: 30px;
    padding-right: 30px; }
  .seven-for-seven-container button:focus {
    outline: none; }
  .seven-for-seven-container .section {
    padding-top: 50px;
    padding-bottom: 50px; }
  .seven-for-seven-container .spotlight {
    background-image: url("../../images/promotions/seven-for-seven/spotlight.jpg");
    background-size: cover;
    background-position-y: 40%;
    height: 640px; }
    @media (max-width: 768px) {
      .seven-for-seven-container .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .seven-for-seven-container .spotlight {
        height: 480px; } }
    @media (max-width: 768px) {
      .seven-for-seven-container .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .seven-for-seven-container .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .seven-for-seven-container .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      padding: 7%; }
      @media (max-width: 480px) {
        .seven-for-seven-container .spotlight .head {
          padding: 0% 5%; } }
      .seven-for-seven-container .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
      .seven-for-seven-container .spotlight .head h1 {
        font-size: 49px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .seven-for-seven-container .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0px; } }
      .seven-for-seven-container .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .seven-for-seven-container .spotlight .head h2 {
            font-size: 18px; } }
  .seven-for-seven-container .section-steps {
    padding-bottom: 80px; }
    .seven-for-seven-container .section-steps p {
      font-weight: 500;
      font-size: 20px; }
    .seven-for-seven-container .section-steps i {
      padding-top: 55px; }
    .seven-for-seven-container .section-steps .step-line {
      padding-top: 82px;
      vertical-align: top; }
      .seven-for-seven-container .section-steps .step-line hr {
        border-style: dashed;
        border-color: gray; }
  .seven-for-seven-container .section-spaces {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .seven-for-seven-container .section-spaces .padding {
      padding: 20px; }
      .seven-for-seven-container .section-spaces .padding h3 {
        margin-bottom: 10px;
        font-weight: 300; }
    @media (min-width: 992px) {
      .seven-for-seven-container .section-spaces .container-slick {
        width: 100%; } }
    @media (min-width: 1200px) {
      .seven-for-seven-container .section-spaces .container-slick {
        width: 1170px; } }
    .seven-for-seven-container .section-spaces .space {
      padding-left: 0;
      padding-right: 0; }
      .seven-for-seven-container .section-spaces .space .info {
        background-color: white;
        position: relative; }
      .seven-for-seven-container .section-spaces .space .workspace-image {
        width: 100%; }
      .seven-for-seven-container .section-spaces .space .workspace-container {
        padding: 16px 0px 5px 0px; }
        @media (max-width: 1024px) {
          .seven-for-seven-container .section-spaces .space .workspace-container {
            padding-bottom: 0;
            padding-right: 20px; } }
        .seven-for-seven-container .section-spaces .space .workspace-container .workspace-title {
          margin-bottom: 5px; }
          .seven-for-seven-container .section-spaces .space .workspace-container .workspace-title h3 {
            font-size: 20px;
            font-weight: 400;
            margin: 0;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            letter-spacing: 0px;
            text-overflow: ellipsis; }
        .seven-for-seven-container .section-spaces .space .workspace-container .workspace-nh {
          font-size: 13px;
          color: grey; }
  .seven-for-seven-container .section-laptop .wrap {
    padding-top: 150px;
    padding-left: 20px; }
    .seven-for-seven-container .section-laptop .wrap .mobile-icon {
      padding-top: 20px; }
      @media (max-width: 1024px) {
        .seven-for-seven-container .section-laptop .wrap .mobile-icon {
          padding: 0px; } }
    @media (max-width: 1024px) {
      .seven-for-seven-container .section-laptop .wrap {
        padding: 0px; } }
  .seven-for-seven-container .section-laptop .macbook {
    padding: 30px; }
  .seven-for-seven-container .section-uses {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .seven-for-seven-container .section-uses img {
      padding: 20px; }
      @media (max-width: 768px) {
        .seven-for-seven-container .section-uses img {
          padding: 8px;
          margin-top: 20px; } }
  .seven-for-seven-container .section-pricing {
    padding-bottom: 80px; }
    .seven-for-seven-container .section-pricing .strike {
      text-decoration: line-through; }
    .seven-for-seven-container .section-pricing .satisfaction {
      font-size: 20px;
      font-weight: 500; }
    @media (max-width: 768px) {
      .seven-for-seven-container .section-pricing .tier {
        padding: 0 50px; } }
    @media (max-width: 480px) {
      .seven-for-seven-container .section-pricing .tier {
        padding: 0 5px; } }
    .seven-for-seven-container .section-pricing .tier .pricing-box {
      background-color: white;
      border: 2px solid #ececec;
      padding: 10px; }
      .seven-for-seven-container .section-pricing .tier .pricing-box .mo {
        color: #333;
        font-size: 16px; }
      .seven-for-seven-container .section-pricing .tier .pricing-box li {
        padding-top: 5px; }
      .seven-for-seven-container .section-pricing .tier .pricing-box .dollar {
        font-size: 48px;
        font-weight: 300; }
      .seven-for-seven-container .section-pricing .tier .pricing-box .blurb {
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
        font-weight: 300; }
      .seven-for-seven-container .section-pricing .tier .pricing-box .name {
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 10px; }
    .seven-for-seven-container .section-pricing .tier .btn-next {
      font-weight: 300;
      border: 0;
      border-radius: 0;
      padding: 20px 70px;
      color: white;
      font-size: 18px;
      background-color: #2F94C8; }
      @media (max-width: 480px) {
        .seven-for-seven-container .section-pricing .tier .btn-next {
          padding: 20px 60px; } }
    .seven-for-seven-container .section-pricing .tier.create .dollar {
      color: #e85959; }
    .seven-for-seven-container .section-pricing .tier.create .btn-next {
      background-color: #e85959; }
    .seven-for-seven-container .section-pricing .tier.explore .dollar {
      color: #2fc8b3; }
    .seven-for-seven-container .section-pricing .tier.explore .btn-next {
      background-color: #2fc8b3; }
    .seven-for-seven-container .section-pricing .tier.inspire .dollar {
      color: #4cb5ea; }
    .seven-for-seven-container .section-pricing .tier.inspire .btn-next {
      background-color: #4cb5ea; }
  .seven-for-seven-container .break-section {
    height: 340px;
    text-align: center;
    background-image: url("../../images/promotions/seven-for-seven/break-rough-draft.jpg");
    background-size: cover;
    background-position-y: 59%; }
    @media (max-width: 768px) {
      .seven-for-seven-container .break-section {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .seven-for-seven-container .break-section {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .seven-for-seven-container .break-section .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
      @media (max-width: 480px) {
        .seven-for-seven-container .break-section .head {
          padding: 0% 5%; } }
      .seven-for-seven-container .break-section .head .short-top {
        margin-top: 10px; }
      .seven-for-seven-container .break-section .head h1 {
        font-size: 40px; }
      .seven-for-seven-container .break-section .head h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .seven-for-seven-container .break-section .head h2 {
            font-size: 18px; } }
  .seven-for-seven-container .section-photos {
    color: white;
    background-color: #555; }
    .seven-for-seven-container .section-photos .no-margin {
      margin: 0px; }
    .seven-for-seven-container .section-photos p {
      color: #C3C3C3; }
    .seven-for-seven-container .section-photos .no-padding {
      padding: 0px; }
    .seven-for-seven-container .section-photos .btn-mini {
      font-weight: 300;
      font-size: 16px;
      background-color: transparent;
      color: white;
      border: 2px #C3C3C3 solid;
      border-radius: 2px; }
    .seven-for-seven-container .section-photos .big-content {
      padding-top: 50px;
      padding-left: 50px; }
      @media (max-width: 768px) {
        .seven-for-seven-container .section-photos .big-content {
          padding-left: 30px; } }
      @media (max-width: 480px) {
        .seven-for-seven-container .section-photos .big-content {
          padding: 20px; } }
  .seven-for-seven-container .features-section h3 {
    font-size: 20px;
    letter-spacing: 0px; }
  .seven-for-seven-container .section-review {
    background-color: #F5F5F5;
    padding-bottom: 30px; }
    .seven-for-seven-container .section-review a:hover {
      text-decoration: none;
      cursor: pointer; }
    .seven-for-seven-container .section-review a:active {
      text-decoration: none;
      cursor: pointer; }
    .seven-for-seven-container .section-review a:visited {
      text-decoration: none;
      cursor: pointer; }
    .seven-for-seven-container .section-review .fa {
      color: #eec970; }
    .seven-for-seven-container .section-review .croissanter {
      font-family: "Circular";
      font-size: 35px;
      line-height: 1.1;
      font-weight: 400; }
      @media (max-width: 480px) {
        .seven-for-seven-container .section-review .croissanter {
          font-size: 22px; } }
    .seven-for-seven-container .section-review .croissanter:hover {
      text-decoration: underline; }
    .seven-for-seven-container .section-review .title {
      line-height: 1em; }
    .seven-for-seven-container .section-review .boxes {
      background-color: white;
      padding: 30px; }
    .seven-for-seven-container .section-review .yelp {
      text-align: center; }
    .seven-for-seven-container .section-review .yelp-reviews {
      max-width: 600px;
      margin: auto; }
      .seven-for-seven-container .section-review .yelp-reviews .panel {
        padding: 20px;
        border: 0px; }
        .seven-for-seven-container .section-review .yelp-reviews .panel .star-box {
          padding-top: 4px; }
        .seven-for-seven-container .section-review .yelp-reviews .panel .yelp-logo {
          padding-bottom: 2px;
          vertical-align: bottom; }
  .seven-for-seven-container .section-press {
    padding-bottom: 20px;
    padding-top: 0px;
    background-color: #F5F5F5; }
    @media (min-width: 1025px) {
      .seven-for-seven-container .section-press .press-forbes {
        margin-top: 3px;
        max-width: 130px; } }
    @media (min-width: 1025px) {
      .seven-for-seven-container .section-press .press-techcrunch {
        margin-top: 5px;
        margin-left: 5px; } }
    @media (min-width: 1025px) {
      .seven-for-seven-container .section-press .press-digitalnyc {
        margin-left: 18px; } }
    @media (min-width: 1025px) {
      .seven-for-seven-container .section-press .press-entrepreneur {
        max-width: 180px;
        margin-top: 8px;
        margin-left: 25px; } }
    @media (max-width: 768px) {
      .seven-for-seven-container .section-press .mobile-padding {
        padding-top: 5%; } }
  @media (max-width: 480px) {
    .seven-for-seven-container .section-questions {
      padding-bottom: 100px; } }
  .seven-for-seven-container .create .dollar {
    color: #e85959; }
  .seven-for-seven-container .create .btn-next {
    background-color: #e85959; }
  .seven-for-seven-container .explore .dollar {
    color: #2fc8b3; }
  .seven-for-seven-container .explore .btn-next {
    background-color: #2fc8b3; }
  .seven-for-seven-container .inspire .dollar {
    color: #4cb5ea; }
  .seven-for-seven-container .inspire .btn-next {
    background-color: #4cb5ea; }
  .seven-for-seven-container .yelp-banner {
    width: 126px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("../../images/splash/yelp.png");
    background-size: 100%; }

.seven-for-free-container {
  background-color: #fafbfb; }
  .seven-for-free-container .btn {
    font-size: 20px;
    background-color: #2fc86c;
    border: 0px; }
  .seven-for-free-container .highlight {
    color: #2F94C8;
    font-weight: 500;
    font-size: 20px; }
  .seven-for-free-container input {
    border-radius: 0; }
  .seven-for-free-container label {
    font-weight: 400; }
  .seven-for-free-container .btn-blue:disabled {
    background-color: #2F94C8; }

.beta-container {
  background-image: url("../images/promotions/beta/greyzz.png"); }
  .beta-container .badge {
    border-radius: 0px; }
  .beta-container .coloring {
    color: #2fc6c8; }
  .beta-container h1 {
    margin-top: 5px; }
  .beta-container .highlight {
    color: #2fc6c8;
    font-weight: 500;
    font-size: 20px; }
  .beta-container input {
    border-radius: 0; }
  .beta-container label {
    font-weight: 400; }
  .beta-container .btn-blue:disabled {
    background-color: #2F94C8; }

.mini-container {
  background-image: url("../images/promotions/mini/greyzz.png"); }
  .mini-container .badge {
    background-color: #efc25e; }
  .mini-container .email-form {
    border-radius: 0;
    width: 350px; }
    @media (max-width: 768px) {
      .mini-container .email-form {
        width: 100%; } }
  .mini-container .section-a {
    background-color: #f4f3f1; }
  .mini-container .section-b {
    background-color: white; }
    .mini-container .section-b .desc {
      color: #828282; }
  .mini-container .section-c {
    background-color: #f4f3f1; }
    .mini-container .section-c .orange-bg {
      background-color: #efc25e;
      color: white;
      height: 250px; }
    .mini-container .section-c .whites {
      background-color: white;
      height: 250px; }
    .mini-container .section-c .boxes {
      border-radius: 4px; }
      @media (max-width: 768px) {
        .mini-container .section-c .boxes {
          padding: 10%; } }
      .mini-container .section-c .boxes li {
        padding-top: 10px;
        color: #828282; }
      .mini-container .section-c .boxes i {
        padding-top: 10px;
        color: #efc25e; }
      .mini-container .section-c .boxes h1 {
        font-size: 50px;
        padding-top: 20px; }
    .mini-container .section-c .boxes-2 {
      padding-left: 5%;
      padding-top: 10%; }
    .mini-container .section-c .boxes-1 {
      padding: 15%;
      padding-top: 25%; }
  .mini-container .blurbs {
    font-size: 20px;
    color: #828282; }
  .mini-container .access {
    border-radius: 2px;
    background-color: #efc25e;
    border-color: #efc25e;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px; }
  .mini-container .spotlight {
    height: 580px;
    text-align: center;
    background-image: url("../images/promotions/mini/3.jpg");
    background-size: cover;
    background-position-y: 10%; }
    @media (max-width: 768px) {
      .mini-container .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .mini-container .spotlight {
        height: 480px; } }
    @media (max-width: 768px) {
      .mini-container .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .mini-container .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .mini-container .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      padding: 7%; }
      @media (max-width: 480px) {
        .mini-container .spotlight .head {
          padding: 0 5%; } }
      .mini-container .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        color: #eaeaea; }
      .mini-container .spotlight .head h1 {
        font-size: 65px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .mini-container .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0; } }
      .mini-container .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .mini-container .spotlight .head h2 {
            font-size: 18px; } }
  .mini-container .badge {
    border-radius: 0; }
  .mini-container .coloring {
    color: #2fc6c8; }
  .mini-container h1 {
    margin-top: 5px; }
  .mini-container .highlight {
    color: #2fc6c8;
    font-weight: 500;
    font-size: 20px; }
  .mini-container label {
    font-weight: 400; }
  .mini-container .btn-blue:disabled {
    background-color: #2F94C8; }

.region-promotion-container {
  background-color: #F5F5F5; }
  .region-promotion-container .circular {
    font-family: 'Circular'; }
  .region-promotion-container .sample-location {
    background-color: white;
    padding-top: 30px;
    padding-bottom: 30px; }
  .region-promotion-container .form-box {
    background-color: white;
    padding: 35px; }
  .region-promotion-container .btn-blue {
    background-color: #59bf95;
    font-size: 20px;
    border: 0px; }
    .region-promotion-container .btn-blue:disabled {
      background-color: #59bf95; }
  .region-promotion-container .first-section {
    background-color: white; }
    .region-promotion-container .first-section h3 {
      padding-top: 20px; }
      .region-promotion-container .first-section h3 i {
        color: #eec970; }
  .region-promotion-container .space {
    padding-left: 0;
    padding-right: 0; }
    .region-promotion-container .space .info {
      position: relative; }
    .region-promotion-container .space .workspace-image {
      width: 100%; }
    .region-promotion-container .space .workspace-container {
      padding: 16px 0 5px 0; }
      @media (max-width: 1024px) {
        .region-promotion-container .space .workspace-container {
          padding-bottom: 0;
          padding-right: 20px; } }
      .region-promotion-container .space .workspace-container .workspace-title {
        margin-bottom: 5px; }
        .region-promotion-container .space .workspace-container .workspace-title h3 {
          font-size: 20px;
          font-weight: 400;
          margin: 0;
          width: 100%;
          white-space: nowrap;
          overflow: hidden;
          letter-spacing: 0;
          text-overflow: ellipsis; }
      .region-promotion-container .space .workspace-container .workspace-nh {
        font-size: 13px;
        color: grey; }
  .region-promotion-container .spotlight {
    height: 540px;
    background-image: url("../images/splash/spotlight.jpg");
    background-size: cover;
    background-position-y: 40%; }
    @media (max-width: 768px) {
      .region-promotion-container .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .region-promotion-container .spotlight {
        height: 480px; } }
    @media (max-width: 768px) {
      .region-promotion-container .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .region-promotion-container .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .region-promotion-container .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      padding: 7%; }
      @media (max-width: 480px) {
        .region-promotion-container .spotlight .head {
          padding: 0 5%; } }
      .region-promotion-container .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
      .region-promotion-container .spotlight .head h1 {
        font-size: 49px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .region-promotion-container .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0px; } }
      .region-promotion-container .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .region-promotion-container .spotlight .head h2 {
            font-size: 18px; } }
  .region-promotion-container .highlight {
    color: #2F94C8;
    font-weight: 500; }
  .region-promotion-container input {
    border-radius: 0; }
  .region-promotion-container label {
    font-weight: 400; }

.region-promotion-header .alert-navigation {
  background-color: #59bf95; }

.region-promotion-header .navbar {
  border: none;
  border-radius: 0;
  background-color: #FFFFFF;
  box-shadow: 0px 1px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  margin-bottom: 0; }
  .region-promotion-header .navbar .navbar-link {
    margin-right: 15px; }
    @media (max-width: 1024px) {
      .region-promotion-header .navbar .navbar-link {
        margin-right: 0; } }
  .region-promotion-header .navbar .login-link {
    border: 1px solid #777;
    border-radius: 2px;
    padding: 14px 20px 12px 20px;
    margin-left: 10px; }
    @media (max-width: 768px) {
      .region-promotion-header .navbar .login-link {
        margin-bottom: 5px; } }
  .region-promotion-header .navbar .signup-link {
    background-color: #2F94C8;
    border: 0px;
    border-radius: 2px;
    color: white !important;
    padding: 15px 20px 12px 20px;
    margin-left: 10px;
    margin-top: 0px; }
    .region-promotion-header .navbar .signup-link:hover, .region-promotion-header .navbar .signup-link:focus, .region-promotion-header .navbar .signup-link.focus, .region-promotion-header .navbar .signup-link:active, .region-promotion-header .navbar .signup-link.active {
      background-color: #2F94C8 !important; }
  .region-promotion-header .navbar .brand img {
    margin: 8px 0; }
  @media (max-width: 768px) {
    .region-promotion-header .navbar {
      padding-left: 10px;
      padding-right: 10px; } }
  .region-promotion-header .navbar .navbar-toggle {
    margin: 8px 15px; }

.partnership-promotion-container .ivy-container {
  background-color: #FCFCFC;
  background-attachment: fixed; }
  .partnership-promotion-container .ivy-container input {
    border-radius: 0; }
  .partnership-promotion-container .ivy-container .btn-block {
    background-color: #33b756;
    font-size: 20px;
    border: 0px; }
  .partnership-promotion-container .ivy-container label {
    font-weight: 400; }
  .partnership-promotion-container .ivy-container .cat-box {
    margin-top: 14px; }
    .partnership-promotion-container .ivy-container .cat-box .cat-image {
      max-width: 100px; }
  .partnership-promotion-container .ivy-container .alert-success {
    margin: 0; }
  .partnership-promotion-container .ivy-container .city-name {
    text-decoration: underline; }
  .partnership-promotion-container .ivy-container .city-link {
    cursor: pointer; }
  .partnership-promotion-container .ivy-container .badge {
    display: inline;
    background-color: #48c396;
    border-radius: 0px;
    text-transform: uppercase;
    font-weight: 300; }
  .partnership-promotion-container .ivy-container .circular {
    font-family: 'Circular'; }
  .partnership-promotion-container .ivy-container .circular {
    font-family: 'Circular'; }
  .partnership-promotion-container .ivy-container h1 {
    font-family: 'Circular'; }
  .partnership-promotion-container .ivy-container h2 {
    font-weight: 400; }
  .partnership-promotion-container .ivy-container h3 {
    font-family: 'Circular';
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 40px; }
    @media (max-width: 480px) {
      .partnership-promotion-container .ivy-container h3 {
        font-size: 30px; } }
  .partnership-promotion-container .ivy-container h4 {
    font-size: 25px;
    font-weight: 300;
    margin-top: 18px; }
    @media (max-width: 480px) {
      .partnership-promotion-container .ivy-container h4 {
        font-size: 20px; } }
  .partnership-promotion-container .ivy-container .btn-blue {
    font-weight: 300;
    border-radius: 2px; }
  .partnership-promotion-container .ivy-container .btn-tour {
    font-weight: 300;
    color: #777 !important;
    border: 1px solid #777;
    border-radius: 2px; }
  .partnership-promotion-container .ivy-container section.press button {
    color: #fff;
    background-color: #FFC10E;
    border: none;
    border-radius: 2px;
    box-shadow: 0 5px #C79F26;
    font-family: 'Circular'; }
  .partnership-promotion-container .ivy-container section.press button:hover,
  .partnership-promotion-container .ivy-container section.press button.hover {
    background-color: #FFC10E; }
  .partnership-promotion-container .ivy-container section.press button:active,
  .partnership-promotion-container .ivy-container section.press button.active {
    background-color: #FFC10E;
    box-shadow: 0 3px #C79F26;
    transform: translateY(5px); }
  .partnership-promotion-container .ivy-container button {
    height: 60px; }
  .partnership-promotion-container .ivy-container .alert {
    background-color: black;
    color: white;
    text-align: left; }
    .partnership-promotion-container .ivy-container .alert h4 {
      font-weight: 500; }
  @media (max-width: 480px) {
    .partnership-promotion-container .ivy-container .extra-left-margin {
      margin-left: 10px; } }
  .partnership-promotion-container .ivy-container .capture input {
    border-radius: 0px;
    font-size: 21px;
    width: 300px;
    height: 60px; }
    @media (max-width: 480px) {
      .partnership-promotion-container .ivy-container .capture input {
        width: 260px;
        margin-bottom: 10px; } }
  .partnership-promotion-container .ivy-container .capture .btn-default {
    border-radius: 0px;
    font-weight: 300;
    font-size: 21px;
    background-color: #48c396;
    border-color: #48c396;
    color: white;
    padding-left: 30px;
    padding-right: 30px; }
  .partnership-promotion-container .ivy-container button:focus {
    outline: none; }
  .partnership-promotion-container .ivy-container .section {
    padding-top: 50px;
    padding-bottom: 50px; }
  .partnership-promotion-container .ivy-container .spotlight {
    background-image: url("../../images/promotions/fifty-percentage/spotlight.jpg");
    background-size: cover;
    background-position-y: 40%;
    height: 640px; }
    @media (max-width: 768px) {
      .partnership-promotion-container .ivy-container .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .partnership-promotion-container .ivy-container .spotlight {
        height: 575px; } }
    @media (max-width: 768px) {
      .partnership-promotion-container .ivy-container .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .partnership-promotion-container .ivy-container .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .partnership-promotion-container .ivy-container .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      padding: 7%; }
      @media (max-width: 480px) {
        .partnership-promotion-container .ivy-container .spotlight .head {
          padding: 0% 5%; } }
      .partnership-promotion-container .ivy-container .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
      .partnership-promotion-container .ivy-container .spotlight .head h1 {
        font-size: 49px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .partnership-promotion-container .ivy-container .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0px; } }
      .partnership-promotion-container .ivy-container .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .partnership-promotion-container .ivy-container .spotlight .head h2 {
            font-size: 18px; } }
  .partnership-promotion-container .ivy-container .section-steps {
    padding-bottom: 80px; }
    .partnership-promotion-container .ivy-container .section-steps p {
      font-weight: 500;
      font-size: 20px; }
    .partnership-promotion-container .ivy-container .section-steps i {
      padding-top: 55px; }
    .partnership-promotion-container .ivy-container .section-steps .step-line {
      padding-top: 82px;
      vertical-align: top; }
      .partnership-promotion-container .ivy-container .section-steps .step-line hr {
        border-style: dashed;
        border-color: gray; }
  .partnership-promotion-container .ivy-container .section-spaces {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .partnership-promotion-container .ivy-container .section-spaces .padding {
      padding: 20px; }
      .partnership-promotion-container .ivy-container .section-spaces .padding h3 {
        margin-bottom: 10px;
        font-weight: 300; }
    @media (min-width: 992px) {
      .partnership-promotion-container .ivy-container .section-spaces .container-slick {
        width: 100%; } }
    @media (min-width: 1200px) {
      .partnership-promotion-container .ivy-container .section-spaces .container-slick {
        width: 1170px; } }
    .partnership-promotion-container .ivy-container .section-spaces .space {
      padding-left: 0;
      padding-right: 0; }
      .partnership-promotion-container .ivy-container .section-spaces .space .info {
        background-color: white;
        position: relative; }
      .partnership-promotion-container .ivy-container .section-spaces .space .workspace-image {
        width: 100%; }
      .partnership-promotion-container .ivy-container .section-spaces .space .workspace-container {
        padding: 16px 0px 5px 0px; }
        @media (max-width: 1024px) {
          .partnership-promotion-container .ivy-container .section-spaces .space .workspace-container {
            padding-bottom: 0;
            padding-right: 20px; } }
        .partnership-promotion-container .ivy-container .section-spaces .space .workspace-container .workspace-title {
          margin-bottom: 5px; }
          .partnership-promotion-container .ivy-container .section-spaces .space .workspace-container .workspace-title h3 {
            font-size: 20px;
            font-weight: 400;
            margin: 0;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            letter-spacing: 0px;
            text-overflow: ellipsis; }
        .partnership-promotion-container .ivy-container .section-spaces .space .workspace-container .workspace-nh {
          font-size: 13px;
          color: grey; }
  .partnership-promotion-container .ivy-container .section-laptop .wrap {
    padding-top: 150px;
    padding-left: 20px; }
    .partnership-promotion-container .ivy-container .section-laptop .wrap .mobile-icon {
      padding-top: 20px; }
      @media (max-width: 1024px) {
        .partnership-promotion-container .ivy-container .section-laptop .wrap .mobile-icon {
          padding: 0px; } }
    @media (max-width: 1024px) {
      .partnership-promotion-container .ivy-container .section-laptop .wrap {
        padding: 0px; } }
  .partnership-promotion-container .ivy-container .section-laptop .macbook {
    padding: 30px; }
  .partnership-promotion-container .ivy-container .section-uses {
    background-color: #F5F5F5;
    padding-bottom: 60px; }
    .partnership-promotion-container .ivy-container .section-uses img {
      padding: 20px; }
      @media (max-width: 768px) {
        .partnership-promotion-container .ivy-container .section-uses img {
          padding: 8px;
          margin-top: 20px; } }
  .partnership-promotion-container .ivy-container .section-pricing {
    padding-bottom: 80px; }
    .partnership-promotion-container .ivy-container .section-pricing .strike {
      text-decoration: line-through; }
    .partnership-promotion-container .ivy-container .section-pricing .satisfaction {
      font-size: 20px;
      font-weight: 500; }
    @media (max-width: 768px) {
      .partnership-promotion-container .ivy-container .section-pricing .tier {
        padding: 0 50px; } }
    @media (max-width: 480px) {
      .partnership-promotion-container .ivy-container .section-pricing .tier {
        padding: 0 5px; } }
    .partnership-promotion-container .ivy-container .section-pricing .tier .pricing-box {
      background-color: white;
      border: 2px solid #ececec;
      padding: 10px; }
      .partnership-promotion-container .ivy-container .section-pricing .tier .pricing-box .mo {
        color: #333;
        font-size: 16px; }
      .partnership-promotion-container .ivy-container .section-pricing .tier .pricing-box li {
        padding-top: 5px; }
      .partnership-promotion-container .ivy-container .section-pricing .tier .pricing-box .dollar {
        font-size: 48px;
        font-weight: 300; }
      .partnership-promotion-container .ivy-container .section-pricing .tier .pricing-box .blurb {
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
        font-weight: 300; }
      .partnership-promotion-container .ivy-container .section-pricing .tier .pricing-box .name {
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 10px; }
    .partnership-promotion-container .ivy-container .section-pricing .tier .btn-next {
      font-weight: 300;
      border: 0;
      border-radius: 0;
      padding: 20px 70px;
      color: white;
      font-size: 18px;
      background-color: #2F94C8; }
      @media (max-width: 480px) {
        .partnership-promotion-container .ivy-container .section-pricing .tier .btn-next {
          padding: 20px 60px; } }
    .partnership-promotion-container .ivy-container .section-pricing .tier.create .dollar {
      color: #e85959; }
    .partnership-promotion-container .ivy-container .section-pricing .tier.create .btn-next {
      background-color: #e85959; }
    .partnership-promotion-container .ivy-container .section-pricing .tier.explore .dollar {
      color: #2fc8b3; }
    .partnership-promotion-container .ivy-container .section-pricing .tier.explore .btn-next {
      background-color: #2fc8b3; }
    .partnership-promotion-container .ivy-container .section-pricing .tier.inspire .dollar {
      color: #4cb5ea; }
    .partnership-promotion-container .ivy-container .section-pricing .tier.inspire .btn-next {
      background-color: #4cb5ea; }
  .partnership-promotion-container .ivy-container .break-section {
    background-image: url("../../images/promotions/fifty-percentage/break-rough-draft.jpg");
    background-size: cover;
    background-position-y: 59%; }
    @media (max-width: 768px) {
      .partnership-promotion-container .ivy-container .break-section {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .partnership-promotion-container .ivy-container .break-section {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .partnership-promotion-container .ivy-container .break-section .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
      @media (max-width: 480px) {
        .partnership-promotion-container .ivy-container .break-section .head {
          padding: 0% 5%; } }
      .partnership-promotion-container .ivy-container .break-section .head .short-top {
        margin-top: 10px; }
      .partnership-promotion-container .ivy-container .break-section .head h1 {
        font-size: 40px; }
      .partnership-promotion-container .ivy-container .break-section .head h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .partnership-promotion-container .ivy-container .break-section .head h2 {
            font-size: 18px; } }
  .partnership-promotion-container .ivy-container .section-photos {
    color: white;
    background-color: #555; }
    .partnership-promotion-container .ivy-container .section-photos .no-margin {
      margin: 0px; }
    .partnership-promotion-container .ivy-container .section-photos p {
      color: #C3C3C3; }
    .partnership-promotion-container .ivy-container .section-photos .no-padding {
      padding: 0px; }
    .partnership-promotion-container .ivy-container .section-photos .btn-mini {
      font-weight: 300;
      font-size: 16px;
      background-color: transparent;
      color: white;
      border: 2px #C3C3C3 solid;
      border-radius: 2px; }
    .partnership-promotion-container .ivy-container .section-photos .big-content {
      padding-top: 50px;
      padding-left: 50px; }
      @media (max-width: 768px) {
        .partnership-promotion-container .ivy-container .section-photos .big-content {
          padding-left: 30px; } }
      @media (max-width: 480px) {
        .partnership-promotion-container .ivy-container .section-photos .big-content {
          padding: 20px; } }
  .partnership-promotion-container .ivy-container .features-section h3 {
    font-size: 20px;
    letter-spacing: 0px; }
  .partnership-promotion-container .ivy-container .section-review {
    background-color: #F5F5F5;
    padding-bottom: 30px; }
    .partnership-promotion-container .ivy-container .section-review a:hover {
      text-decoration: none;
      cursor: pointer; }
    .partnership-promotion-container .ivy-container .section-review a:active {
      text-decoration: none;
      cursor: pointer; }
    .partnership-promotion-container .ivy-container .section-review a:visited {
      text-decoration: none;
      cursor: pointer; }
    .partnership-promotion-container .ivy-container .section-review .fa {
      color: #eec970; }
    .partnership-promotion-container .ivy-container .section-review .croissanter {
      font-family: "Circular";
      font-size: 35px;
      line-height: 1.1;
      font-weight: 400; }
      @media (max-width: 480px) {
        .partnership-promotion-container .ivy-container .section-review .croissanter {
          font-size: 22px; } }
    .partnership-promotion-container .ivy-container .section-review .croissanter:hover {
      text-decoration: underline; }
    .partnership-promotion-container .ivy-container .section-review .title {
      line-height: 1em; }
    .partnership-promotion-container .ivy-container .section-review .boxes {
      background-color: white;
      padding: 30px; }
    .partnership-promotion-container .ivy-container .section-review .yelp {
      text-align: center; }
    .partnership-promotion-container .ivy-container .section-review .yelp-reviews {
      max-width: 600px;
      margin: auto; }
      .partnership-promotion-container .ivy-container .section-review .yelp-reviews .panel {
        padding: 20px;
        border: 0px; }
        .partnership-promotion-container .ivy-container .section-review .yelp-reviews .panel .star-box {
          padding-top: 4px; }
        .partnership-promotion-container .ivy-container .section-review .yelp-reviews .panel .yelp-logo {
          padding-bottom: 2px;
          vertical-align: bottom; }
  .partnership-promotion-container .ivy-container .section-press {
    padding-bottom: 20px;
    padding-top: 0px;
    background-color: #F5F5F5; }
    @media (min-width: 1025px) {
      .partnership-promotion-container .ivy-container .section-press .press-forbes {
        margin-top: 3px;
        max-width: 130px; } }
    @media (min-width: 1025px) {
      .partnership-promotion-container .ivy-container .section-press .press-techcrunch {
        margin-top: 5px;
        margin-left: 5px; } }
    @media (min-width: 1025px) {
      .partnership-promotion-container .ivy-container .section-press .press-digitalnyc {
        margin-left: 18px; } }
    @media (min-width: 1025px) {
      .partnership-promotion-container .ivy-container .section-press .press-entrepreneur {
        max-width: 180px;
        margin-top: 8px;
        margin-left: 25px; } }
    @media (max-width: 768px) {
      .partnership-promotion-container .ivy-container .section-press .mobile-padding {
        padding-top: 5%; } }
  @media (max-width: 480px) {
    .partnership-promotion-container .ivy-container .section-questions {
      padding-bottom: 100px; } }
  .partnership-promotion-container .ivy-container .create .dollar {
    color: #e85959; }
  .partnership-promotion-container .ivy-container .create .btn-next {
    background-color: #e85959; }
  .partnership-promotion-container .ivy-container .explore .dollar {
    color: #2fc8b3; }
  .partnership-promotion-container .ivy-container .explore .btn-next {
    background-color: #2fc8b3; }
  .partnership-promotion-container .ivy-container .inspire .dollar {
    color: #4cb5ea; }
  .partnership-promotion-container .ivy-container .inspire .btn-next {
    background-color: #4cb5ea; }
  .partnership-promotion-container .ivy-container .faq-section {
    background-color: #F5F5F5; }
  .partnership-promotion-container .ivy-container .yelp-banner {
    width: 126px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("../../images/splash/yelp.png");
    background-size: 100%; }

.partnership-promotion-container .thepaulnyc-container {
  background-image: url("../../../images/promotions/mini/greyzz.png"); }
  .partnership-promotion-container .thepaulnyc-container .badge {
    background-color: #143b4f; }
  .partnership-promotion-container .thepaulnyc-container .email-form {
    border-radius: 0;
    width: 350px; }
    @media (max-width: 768px) {
      .partnership-promotion-container .thepaulnyc-container .email-form {
        width: 100%; } }
  .partnership-promotion-container .thepaulnyc-container .alert-success {
    margin: 0; }
  .partnership-promotion-container .thepaulnyc-container .alert {
    background-color: #143b4f;
    color: white;
    text-align: left; }
    .partnership-promotion-container .thepaulnyc-container .alert h4 {
      font-weight: 500; }
  .partnership-promotion-container .thepaulnyc-container h4 {
    font-size: 25px;
    font-weight: 300;
    margin-top: 18px; }
    @media (max-width: 480px) {
      .partnership-promotion-container .thepaulnyc-container h4 {
        font-size: 20px; } }
  .partnership-promotion-container .thepaulnyc-container .section-a {
    background-color: #f4f3f1; }
    .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces {
      background-color: #F5F5F5;
      padding-bottom: 60px; }
      .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .padding {
        padding: 20px; }
        .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .padding h3 {
          margin-bottom: 10px;
          font-weight: 300; }
      @media (min-width: 992px) {
        .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .container-slick {
          width: 100%; } }
      @media (min-width: 1200px) {
        .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .container-slick {
          width: 1170px; } }
      .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .space {
        padding-left: 0;
        padding-right: 0; }
        .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .space .info {
          background-color: white;
          position: relative; }
        .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .space .workspace-image {
          width: 100%; }
        .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .space .workspace-container {
          padding: 16px 0px 5px 0px; }
          @media (max-width: 1024px) {
            .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .space .workspace-container {
              padding-bottom: 0;
              padding-right: 20px; } }
          .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .space .workspace-container .workspace-title {
            margin-bottom: 5px; }
            .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .space .workspace-container .workspace-title h3 {
              font-size: 20px;
              font-weight: 400;
              margin: 0;
              width: 100%;
              white-space: nowrap;
              overflow: hidden;
              letter-spacing: 0px;
              text-overflow: ellipsis; }
          .partnership-promotion-container .thepaulnyc-container .section-a .section-spaces .space .workspace-container .workspace-nh {
            font-size: 13px;
            color: grey; }
  .partnership-promotion-container .thepaulnyc-container .section-b {
    background-color: white; }
    .partnership-promotion-container .thepaulnyc-container .section-b .desc {
      color: #828282; }
  .partnership-promotion-container .thepaulnyc-container .section-c .orange-bg {
    background-color: #143b4f;
    color: white;
    height: 250px; }
  .partnership-promotion-container .thepaulnyc-container .section-c .whites {
    background-color: white;
    height: 250px; }
  .partnership-promotion-container .thepaulnyc-container .section-c .boxes {
    border-radius: 4px; }
    @media (max-width: 768px) {
      .partnership-promotion-container .thepaulnyc-container .section-c .boxes {
        padding: 10%; } }
    .partnership-promotion-container .thepaulnyc-container .section-c .boxes li {
      padding-top: 10px;
      color: #828282; }
    .partnership-promotion-container .thepaulnyc-container .section-c .boxes i {
      padding-top: 10px;
      color: #143b4f; }
    .partnership-promotion-container .thepaulnyc-container .section-c .boxes h1 {
      font-size: 50px;
      padding-top: 20px; }
  .partnership-promotion-container .thepaulnyc-container .section-c .boxes-2 {
    padding-left: 5%;
    padding-top: 10%; }
  .partnership-promotion-container .thepaulnyc-container .section-c .boxes-1 {
    padding: 15%;
    padding-top: 25%; }
  .partnership-promotion-container .thepaulnyc-container .blurbs {
    font-size: 20px;
    color: #828282; }
  .partnership-promotion-container .thepaulnyc-container .access {
    border-radius: 2px;
    background-color: #143b4f;
    border-color: #143b4f;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px; }
  .partnership-promotion-container .thepaulnyc-container .spotlight {
    height: 580px;
    text-align: center;
    background-image: url("../../../images/promotions/mini/3.jpg");
    background-size: cover;
    background-position-y: 10%; }
    @media (max-width: 768px) {
      .partnership-promotion-container .thepaulnyc-container .spotlight {
        height: 600px; } }
    @media (max-width: 480px) {
      .partnership-promotion-container .thepaulnyc-container .spotlight {
        height: 480px; } }
    @media (max-width: 768px) {
      .partnership-promotion-container .thepaulnyc-container .spotlight {
        background-position-y: 35%; } }
    @media (max-width: 480px) {
      .partnership-promotion-container .thepaulnyc-container .spotlight {
        background-position-y: 35%;
        background-position-x: 35%; } }
    .partnership-promotion-container .thepaulnyc-container .spotlight .head {
      color: white;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      padding: 7%; }
      @media (max-width: 480px) {
        .partnership-promotion-container .thepaulnyc-container .spotlight .head {
          padding: 0 5%; } }
      .partnership-promotion-container .thepaulnyc-container .spotlight .head .short-top {
        margin-top: 10px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        color: #eaeaea; }
      .partnership-promotion-container .thepaulnyc-container .spotlight .head h1 {
        font-size: 65px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        margin-top: 35px; }
        @media (max-width: 480px) {
          .partnership-promotion-container .thepaulnyc-container .spotlight .head h1 {
            font-size: 38px;
            padding-top: 111px;
            margin-top: 0; } }
      .partnership-promotion-container .thepaulnyc-container .spotlight .head h2 {
        font-weight: 300;
        font-size: 21px;
        line-height: 1.5em; }
        @media (max-width: 480px) {
          .partnership-promotion-container .thepaulnyc-container .spotlight .head h2 {
            font-size: 18px; } }
  .partnership-promotion-container .thepaulnyc-container .badge {
    border-radius: 0; }
  .partnership-promotion-container .thepaulnyc-container .coloring {
    color: #2fc6c8; }
  .partnership-promotion-container .thepaulnyc-container h1 {
    margin-top: 5px; }
  .partnership-promotion-container .thepaulnyc-container .highlight {
    color: #2fc6c8;
    font-weight: 500;
    font-size: 20px; }
  .partnership-promotion-container .thepaulnyc-container label {
    font-weight: 400; }
  .partnership-promotion-container .thepaulnyc-container .btn-blue:disabled {
    background-color: #2F94C8; }

.signup-merchant-container input {
  border-radius: 2px !important;
  font-size: 15px; }

.signup-merchant-container h1 {
  color: #2fc8c1; }

.signup-merchant-container h4 {
  font-weight: 300;
  color: grey;
  font-size: 15px; }

.signup-merchant-container .checkbox {
  font-size: 15px;
  font-weight: 200 !important;
  color: grey; }

.signup-merchant-container p {
  color: grey; }

.signup-merchant-container .btn-yellow {
  background-color: #5BC9E1;
  border: 0px;
  font-weight: 300; }

.join-detail-container .have-account {
  color: #999;
  font-size: 14px; }

.join-detail-container h4 {
  font-weight: 300; }

.join-detail-container h1 {
  color: #2fc8c1; }

.join-detail-container .numbered-steps {
  padding: 30px 0; }
  .join-detail-container .numbered-steps .number-table {
    width: 100%;
    margin-bottom: 8px;
    text-align: center; }
    .join-detail-container .numbered-steps .number-table .number {
      display: inline-block;
      width: 60px;
      height: 60px;
      margin-left: auto;
      margin-right: auto;
      border-radius: 9999px;
      background-color: #ededed;
      font-size: 20px;
      font-weight: 300;
      line-height: 60px;
      letter-spacing: 0.015em;
      color: #868485;
      text-align: center;
      padding-top: 2px;
      margin-bottom: 6px; }
    .join-detail-container .numbered-steps .number-table .active-number {
      background-color: #eec970;
      color: #fff; }
    .join-detail-container .numbered-steps .number-table .step {
      font-size: 20px;
      font-weight: 300;
      padding-left: 10px;
      color: #868485; }
    .join-detail-container .numbered-steps .number-table .active-step {
      color: #333 !important; }
    .join-detail-container .numbered-steps .number-table .number-line {
      margin-top: 15%;
      border-style: dashed;
      border-color: gray; }

.join-detail-container label {
  font-weight: 300; }

.join-detail-container input {
  border-radius: 0; }

.join-detail-container .btn-next {
  font-weight: 300;
  border-radius: 0;
  padding: 10px 50px;
  background-color: #2F94C8;
  border-color: #2F94C8; }

.join-detail-container .hello {
  font-size: 50px; }

.join-membership-container .numbered-steps {
  padding: 30px 0; }
  .join-membership-container .numbered-steps .number-table {
    width: 100%;
    margin-bottom: 8px;
    text-align: center; }
    .join-membership-container .numbered-steps .number-table .number {
      display: inline-block;
      width: 60px;
      height: 60px;
      margin-left: auto;
      margin-right: auto;
      border-radius: 9999px;
      background-color: #ededed;
      font-size: 20px;
      font-weight: 300;
      line-height: 60px;
      letter-spacing: 0.015em;
      color: #868485;
      text-align: center;
      padding-top: 2px;
      margin-bottom: 6px; }
    .join-membership-container .numbered-steps .number-table .active-number {
      background-color: #eec970;
      color: #fff; }
    .join-membership-container .numbered-steps .number-table .step {
      font-size: 20px;
      font-weight: 300;
      padding-left: 10px;
      color: #868485; }
    .join-membership-container .numbered-steps .number-table .active-step {
      color: #333 !important; }
    .join-membership-container .numbered-steps .number-table .number-line {
      margin-top: 15%;
      border-style: dashed;
      border-color: gray; }

@media (max-width: 768px) {
  .join-membership-container .tier {
    padding: 0 50px; } }

@media (max-width: 480px) {
  .join-membership-container .tier {
    padding: 0 5px; } }

.join-membership-container .tier .pricing-box {
  box-shadow: #d8d8d8 1px 2px 2px;
  background-color: white;
  border: 1px solid #ececec;
  padding: 10px; }
  .join-membership-container .tier .pricing-box .mo {
    color: #333;
    font-size: 16px; }
  .join-membership-container .tier .pricing-box li {
    padding-top: 5px; }
  .join-membership-container .tier .pricing-box .dollar {
    font-size: 48px;
    font-weight: 300; }
  .join-membership-container .tier .pricing-box .blurb {
    color: #8C8C8C;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 300; }
  .join-membership-container .tier .pricing-box .name {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px; }

.join-membership-container .tier .btn-next {
  font-weight: 300;
  border: 0;
  border-radius: 0;
  padding: 20px 70px;
  color: white;
  font-size: 18px;
  background-color: #2F94C8; }

.join-membership-container .tier.create .dollar {
  color: #e85959; }

.join-membership-container .tier.create .btn-next {
  background-color: #e85959; }

.join-membership-container .tier.explore .dollar {
  color: #2fc8b3; }

.join-membership-container .tier.explore .btn-next {
  background-color: #2fc8b3; }

.join-membership-container .tier.inspire .dollar {
  color: #4cb5ea; }

.join-membership-container .tier.inspire .btn-next {
  background-color: #4cb5ea; }

.join-membership-container .try7 {
  color: #8C8C8C;
  font-style: italic;
  font-size: 14px; }

.join-payment-container .main-container {
  margin-left: 40px;
  margin-right: 40px; }
  @media (max-width: 480px) {
    .join-payment-container .main-container {
      margin-left: 0px;
      margin-right: 0px; } }

.join-payment-container .btn-promo {
  background-color: #2F94C8;
  color: white;
  font-weight: 300;
  border-color: #2F94C8; }

.join-payment-container h4 {
  font-weight: 300; }

.join-payment-container .totals {
  background-color: #fbfbfb;
  padding: 20px;
  border: 1px solid #e0e0e0; }

.join-payment-container .review {
  padding: 50px 20px; }

.join-payment-container .icons {
  padding: 10px; }

.join-payment-container li {
  padding-top: 10px; }

.join-payment-container .signup-section {
  background-color: #edf5f9;
  padding: 20px;
  border-top: none; }

.join-payment-container .badge {
  font-weight: 300;
  background-color: #2F94C8; }

.join-payment-container .tab-content {
  border: 1px solid #dddddd;
  border-top: none;
  padding: 20px 31px; }

.join-payment-container h1 {
  color: #2fc8c1; }

.join-payment-container .quote-laurie {
  color: #2F94C8; }

.join-payment-container .spaces {
  padding-left: 42px; }

.join-payment-container strong {
  font-weight: 500; }

.join-payment-container .form-control {
  background-color: #fafdff;
  background-image: none;
  border: 1px solid #dcdcdc; }

.join-payment-container .outlinebox {
  border: 1px solid #e0e0e0;
  padding: 20px; }

.join-payment-container .radio {
  padding: 15px;
  border: 1px solid #e0e0e0;
  background-color: #fafdff;
  margin-top: 10px; }

.join-payment-container .product-selection > label {
  display: inherit;
  cursor: pointer; }

.join-payment-container .numbered-steps {
  padding: 30px 0; }
  .join-payment-container .numbered-steps .number-table {
    width: 100%;
    margin-bottom: 8px;
    text-align: center; }
    .join-payment-container .numbered-steps .number-table .number {
      display: inline-block;
      width: 60px;
      height: 60px;
      margin-left: auto;
      margin-right: auto;
      border-radius: 9999px;
      background-color: #ededed;
      font-size: 20px;
      font-weight: 300;
      line-height: 60px;
      letter-spacing: 0.015em;
      color: #868485;
      text-align: center;
      padding-top: 2px;
      margin-bottom: 6px; }
    .join-payment-container .numbered-steps .number-table .active-number {
      background-color: #eec970;
      color: #fff; }
    .join-payment-container .numbered-steps .number-table .step {
      font-size: 20px;
      font-weight: 300;
      padding-left: 10px;
      color: #868485; }
    .join-payment-container .numbered-steps .number-table .active-step {
      color: #333 !important; }
    .join-payment-container .numbered-steps .number-table .number-line {
      margin-top: 15%;
      border-style: dashed;
      border-color: gray; }

.join-payment-container .cards {
  padding-top: 13px; }

.join-payment-container .agree {
  font-size: 13px;
  color: gray; }

.join-payment-container .membership-type {
  font-size: 18px; }

.join-payment-container .details {
  color: gray;
  padding-top: 5px;
  font-weight: 200;
  font-size: 14px; }

.join-payment-container .box {
  border: 1px solid #eaeaea;
  margin-right: 20px;
  background-color: #fbfbfb; }
  @media (max-width: 480px) {
    .join-payment-container .box {
      margin-left: 0px; } }
  .join-payment-container .box .summary {
    padding: 20px; }

.join-payment-container .btn-primary {
  background-color: #2F94C8;
  border-color: #2F94C8;
  height: 65px; }

.join-payment-container .btn-next {
  font-weight: 300;
  border-radius: 0px;
  padding: 10px 50px;
  background-color: #2F94C8;
  border-color: #2F94C8; }

.join-payment-container .section {
  background-color: #F1F8FC;
  padding: 20px; }

.join-payment-container .input-lg, .join-payment-container .form-horizontal .form-group-lg .form-control, .form-horizontal .form-group-lg .join-payment-container .form-control, .join-payment-container .input-group-lg > .form-control, .join-payment-container
.input-group-lg > .input-group-addon, .join-payment-container
.input-group-lg > .input-group-btn > .btn {
  border-radius: 0px; }

.join-payment-container label {
  font-weight: 300; }

.join-payment-container .btn-block {
  border-radius: 1px;
  font-weight: 300; }

.join-payment-container .why-credit-card-container {
  margin-left: 15px;
  margin-top: 10px;
  display: inline-block; }

.join-payment-container .why-credit-card {
  font-size: 14px;
  color: #999999; }

.join-payment-container input[type='radio'] {
  display: none; }

.join-payment-container input[type='radio'] + label {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #333;
  border-radius: 50%;
  padding: 0px;
  margin-right: 12px;
  position: relative; }
  .join-payment-container input[type='radio'] + label i {
    color: white;
    position: absolute;
    left: 3px;
    top: 2px;
    font-size: 14px; }

.join-payment-container input[type='radio']:checked + label i {
  color: #333; }

.visit-bar-placeholder {
  height: 60px; }

.visit-bar {
  background: #eec970;
  color: black;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 1000;
  padding: 10px; }
  @media (max-width: 480px) {
    .visit-bar {
      font-size: 12px;
      padding: 10px; } }
  .visit-bar a {
    color: black; }
  .visit-bar .visit-bar-container {
    padding: 10px 0; }
    .visit-bar .visit-bar-container .checkout {
      transition: background-color 0.5s ease;
      color: black; }
      .visit-bar .visit-bar-container .checkout.confirmed {
        background: #2F94C8;
        color: white; }
  @media (max-width: 768px) {
    .visit-bar .visit-bar-text {
      text-align: center; } }

.hold-bar-placeholder {
  height: 60px; }

.hold-bar {
  background: #2F94C8;
  color: white;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 1000;
  padding: 10px; }
  @media (max-width: 480px) {
    .hold-bar {
      font-size: 12px;
      padding: 10px; } }
  .hold-bar a {
    color: white; }
  .hold-bar .hold-bar-container {
    padding: 10px 0; }
  @media (max-width: 768px) {
    .hold-bar .hold-bar-text {
      text-align: center; } }

.header .navbar {
  border: none;
  border-radius: 0;
  background-color: #FFFFFF;
  box-shadow: 0px 1px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  margin-bottom: 0; }
  .header .navbar .navbar-link {
    margin-right: 15px; }
    @media (max-width: 1024px) {
      .header .navbar .navbar-link {
        margin-right: 0; } }
  .header .navbar .login-link {
    border: 1px solid #777;
    border-radius: 2px;
    padding: 14px 20px 12px 20px;
    margin-left: 10px; }
    @media (max-width: 768px) {
      .header .navbar .login-link {
        margin-bottom: 5px; } }
  .header .navbar .signup-link {
    background-color: #2F94C8;
    border: 0px;
    border-radius: 2px;
    color: white !important;
    padding: 15px 20px 12px 20px;
    margin-left: 10px;
    margin-top: 0px; }
    .header .navbar .signup-link:hover, .header .navbar .signup-link:focus, .header .navbar .signup-link.focus, .header .navbar .signup-link:active, .header .navbar .signup-link.active {
      background-color: #2F94C8 !important; }
  .header .navbar .checked-in-link {
    font-weight: 700;
    color: #eec970 !important; }
    .header .navbar .checked-in-link:hover, .header .navbar .checked-in-link:focus, .header .navbar .checked-in-link.focus, .header .navbar .checked-in-link:active, .header .navbar .checked-in-link.active {
      color: #eec970 !important; }
  .header .navbar .holding-seat-link {
    font-weight: 700;
    color: #2F94C8; }
    .header .navbar .holding-seat-link:hover, .header .navbar .holding-seat-link:focus, .header .navbar .holding-seat-link.focus, .header .navbar .holding-seat-link:active, .header .navbar .holding-seat-link.active {
      color: #2F94C8 !important; }
  .header .navbar .brand img {
    margin: 8px 0; }
  @media (max-width: 768px) {
    .header .navbar {
      padding-left: 10px;
      padding-right: 10px; } }
  .header .navbar .navbar-toggle {
    margin: 8px 15px; }

.company-manager hr {
  border-top: 6px solid #2F94C8;
  margin-right: 70%; }

.company-manager input, .company-manager select {
  border-radius: 0;
  padding: 10px;
  height: 41px; }

.company-manager .details {
  background-color: #F8E9C5;
  padding: 20px; }
  .company-manager .details .name {
    font-weight: 500;
    font-size: 40px; }
  .company-manager .details .big-numbers {
    font-weight: 500; }

.company-manager .membership-card {
  padding: 20px;
  background: #F8E9C5; }
  .company-manager .membership-card .membership-label {
    font-weight: 500; }

.company-manager .btn-blue {
  padding: 10px 5px; }

.company-manager .btn-left {
  border-radius: 1px;
  font-weight: 300;
  font-size: 0.9em; }

.company-settings .wallet-outer {
  border: 1px dotted black;
  margin: 10px;
  padding: 20px;
  color: grey; }
  .company-settings .wallet-outer .wallet-details .brand {
    padding-top: 10px; }
  .company-settings .wallet-outer .btn {
    font-weight: 300; }
  .company-settings .wallet-outer .remove-card {
    text-decoration: underline;
    font-size: 12px; }
  .company-settings .wallet-outer .selected {
    font-weight: 400;
    color: #333; }

.company-settings .wallet-new {
  margin: 20px;
  padding: 20px; }
  .company-settings .wallet-new input {
    border-radius: 1px; }

.company-settings .btn-default {
  border-radius: 1px;
  background-color: #2F94C8;
  color: white;
  border: 1px solid #2F94C8; }

.company-settings .btn-not {
  border-radius: 1px;
  border: 1px solid #2F94C8;
  background-color: white;
  color: #2F94C8; }

.merchant-home .welcome {
  font-size: 30px; }

.merchant-home .place-card .position {
  border: 1px solid #a8a8a8; }
  @media (max-width: 400px) {
    .merchant-home .place-card .position {
      margin: 10px 0px;
      padding: 10px 0px;
      border: 0px solid #a8a8a8; } }

.merchant-home .place-card .img-container {
  max-height: 400px;
  overflow: hidden;
  text-align: center; }

.merchant-home .place-card .info {
  padding: 10px; }

.merchant-home .place-card .circle {
  width: 90px;
  height: 90px;
  border-radius: 90px;
  font-size: 40px;
  color: red;
  line-height: 90px;
  text-align: center;
  background: #2dd3e5;
  position: absolute;
  bottom: -6%;
  left: 50%; }

.merchant-home .place-card img.scale {
  display: block;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease;
  /* Safari and Chrome */
  -moz-transition: all 0.5s ease;
  /* Firefox */
  -ms-transition: all 0.5s ease;
  /* IE 9 */
  -o-transition: all 0.5s ease;
  /* Opera */
  transition: all 0.5s ease; }

.merchant-home .place-card .crop-height:hover img {
  -webkit-transform: scale(1.05);
  /* Safari and Chrome */
  -moz-transform: scale(1.05);
  /* Firefox */
  -ms-transform: scale(1.05);
  /* IE 9 */
  -o-transform: scale(1.05);
  /* Opera */
  transform: scale(1.05); }

.merchant-home .place-card .stats {
  font-size: 20px; }

.merchant-home .place-card .seat-numbers {
  font-size: 30px;
  vertical-align: center; }

.merchant-home .place-card .name {
  font-size: 30px; }

.merchant-home .place-card .color {
  background-color: grey; }

.merchant-home .place-card p {
  margin: 0; }

.merchant-place .btn-lg, .merchant-place .btn-group-lg > .btn {
  font-weight: 300;
  border-radius: 0px; }

.merchant-place .number {
  color: #333;
  font-size: 20px; }

.merchant-place .guest-hours {
  color: #3c763d;
  cursor: pointer; }

.merchant-place .guest-details {
  color: #888;
  font-size: 12px; }

.merchant-place .guest-details-name {
  font-size: 16px; }

.merchant-place .customer {
  border: 1px solid #D5D5D5;
  border-top-width: 7px;
  border-top-style: solid;
  font-size: 25px;
  color: #969696;
  background-color: white;
  margin-top: 25px; }
  .merchant-place .customer .top {
    padding: 10px; }
  .merchant-place .customer hr {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    border: 0;
    border-top: 1px solid #969696 !important; }
  .merchant-place .customer .card {
    font-size: 15px; }
  .merchant-place .customer .name {
    font-weight: 400;
    color: #526E82;
    letter-spacing: 1px;
    font-size: 30px; }
  .merchant-place .customer .city {
    font-size: 16px; }
  .merchant-place .customer .stats {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
    color: #969696;
    padding: 10px; }
  .merchant-place .customer .guests {
    font-size: 16px;
    margin-top: 10px;
    padding: 10px;
    line-height: 2em; }
    .merchant-place .customer .guests h4 {
      color: #2C2C2C; }
  .merchant-place .customer .number {
    font-size: 20px; }

.merchant-event .description {
  white-space: pre-line; }

.active-visit .checkout {
  transition: background-color 0.5s ease;
  background-color: #eec970;
  font-weight: 300;
  padding: 15px !important;
  border-radius: 1px;
  color: black;
  border-color: #fff; }
  .active-visit .checkout.confirmed {
    background-color: #2F94C8;
    color: white; }

.active-visit .checkout-loading {
  height: 20px;
  width: 20px;
  margin-top: -3px;
  margin-left: 20px; }

.active-visit .old-guest {
  color: #999; }

.active-visit table th {
  font-weight: 300; }

.active-visit table .titles {
  color: #2F94C8;
  font-weight: 400; }

.active-visit table .line-item {
  padding: 8px; }

.active-visit .btn-add {
  padding: 5px !important;
  border: 0; }

.active-visit input {
  border-radius: 0; }

.active-visit .add-guest {
  text-align: left; }

.active-visit .stats h2 {
  font-weight: 300; }

.active-hold .checkin {
  transition: background-color 0.5s ease;
  background-color: #eec970;
  font-weight: 300;
  padding: 15px !important;
  border-radius: 1px;
  color: black;
  border-color: #fff;
  margin-bottom: 12px; }
  .active-hold .checkin.confirmed {
    background-color: #2F94C8;
    color: white; }

.active-hold .cancelhold {
  transition: background-color 0.5s ease;
  background-color: #fff;
  font-weight: 300;
  padding: 15px !important;
  border-radius: 1px;
  color: #444;
  border-color: #ddd; }
  .active-hold .cancelhold.confirmed {
    background-color: #2F94C8;
    color: white; }

.active-hold .holdanother.confirmed {
  background-color: #2F94C8;
  color: white; }

.active-hold .checkin-loading {
  height: 20px;
  width: 20px;
  margin-top: -3px;
  margin-left: 20px; }

.active-hold .old-guest {
  color: #999; }

.active-hold table th {
  font-weight: 300; }

.active-hold table .titles {
  color: #2F94C8;
  font-weight: 400; }

.active-hold table .line-item {
  padding: 8px; }

.active-hold .btn-add {
  padding: 5px !important;
  border: 0; }

.active-hold input {
  border-radius: 0; }

.active-hold .add-guest {
  text-align: left; }

.active-hold .stats h2 {
  font-weight: 300; }

.ask-leave {
  padding: 20px;
  border: 0;
  background-image: url("../../images/patterns/geometry3.png"); }
  .ask-leave .close {
    font-size: 2em; }
  .ask-leave h1 {
    font-family: 'Circular';
    font-weight: 300;
    font-size: 40px;
    color: #333; }
  .ask-leave .fa {
    color: #2F94C8; }
  .ask-leave a {
    text-decoration: underline; }
  .ask-leave .title {
    font-weight: 400;
    font-size: 22px; }
  .ask-leave .tour-inner {
    background-color: white;
    margin: 25px; }
  .ask-leave .input-thing {
    border-radius: 0px; }
  .ask-leave .cancel-container {
    background-image: url("../../images/patterns/geometry3.png"); }
  .ask-leave .btn-tour-modal {
    background-color: #2F94C8;
    color: white !important;
    border: 1px solid #2F94C8;
    border-radius: 1px;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 20px;
    padding: 15px 25px !important; }
    .ask-leave .btn-tour-modal:hover, .ask-leave .btn-tour-modal:focus, .ask-leave .btn-tour-modal.focus, .ask-leave .btn-tour-modal:active, .ask-leave .btn-tour-modal.active {
      background-color: #25759f;
      border: 1px solid #25759f; }
  .ask-leave .btn-leaving {
    color: white;
    font-size: 16px;
    border-color: white;
    padding: 11px 25px !important;
    margin-top: 15px; }

.create-post .image-preview {
  position: relative;
  display: inline-block;
  padding: 5px; }
  .create-post .image-preview .image-preview-remove {
    display: none;
    position: absolute;
    top: 5px;
    right: 5px; }
  .create-post .image-preview:hover .image-preview-remove {
    display: inline-block; }

.update-post .image-preview {
  position: relative;
  display: inline-block;
  padding: 5px; }
  .update-post .image-preview .image-preview-remove {
    display: none;
    position: absolute;
    top: 5px;
    right: 5px; }
  .update-post .image-preview:hover .image-preview-remove {
    display: inline-block; }

.update-rating a.star.selected {
  color: #2F94C8; }

.update-rating a.star:hover {
  color: #2F94C8; }

.update-rating .form-control {
  border-radius: 1px; }

.update-rating .bullet {
  font-size: 0.7em; }

.update-rating .list-group-item {
  border-radius: 1px; }

.update-hold-modal-container .name-circle {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 10px 0;
  background: #eec970;
  text-align: center;
  margin-right: 12px; }
  .update-hold-modal-container .name-circle.inactive {
    background: gray; }
  .update-hold-modal-container .name-circle .name {
    font-size: 14px;
    color: #fff; }

.update-hold-modal-container .add-guest-circle {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 12px;
  background: gray;
  text-align: center; }
  .update-hold-modal-container .add-guest-circle .name {
    font-size: 14px;
    color: #fff; }

.update-company-image .image-uploading {
  width: 100%;
  height: 300px;
  position: relative; }
  .update-company-image .image-uploading img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%); }

.update-user-image .image-uploading {
  width: 100%;
  height: 300px;
  position: relative; }
  .update-user-image .image-uploading img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%); }

.book-a-tour {
  padding: 20px;
  border: 0; }
  .book-a-tour input {
    margin-top: 10px;
    border-radius: 0px;
    padding: 20px !important; }
  .book-a-tour select {
    margin-top: 10px;
    border-radius: 0px;
    padding: 20px !important; }
  .book-a-tour .rocket {
    max-width: 200px; }
  .book-a-tour .tour-time select {
    margin-top: 10px; }
  .book-a-tour .close {
    font-size: 2em; }
  .book-a-tour h1 {
    font-family: 'Circular';
    font-weight: 300;
    font-size: 40px; }
  .book-a-tour .fa {
    color: #2F94C8; }
  .book-a-tour a {
    text-decoration: underline; }
  .book-a-tour .title {
    font-weight: 400;
    font-size: 22px; }
  .book-a-tour .tour-inner {
    background-color: white;
    margin: 25px; }
  .book-a-tour .input-thing {
    border-radius: 0px; }
  .book-a-tour .btn-tour-modal {
    background-color: #2F94C8;
    color: white !important;
    border: 1px solid #2F94C8;
    border-radius: 1px;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 20px;
    padding: 15px 25px !important; }
    .book-a-tour .btn-tour-modal:hover, .book-a-tour .btn-tour-modal:focus, .book-a-tour .btn-tour-modal.focus, .book-a-tour .btn-tour-modal:active, .book-a-tour .btn-tour-modal.active {
      background-color: #25759f;
      border: 1px solid #25759f; }
  .book-a-tour .btn-leaving {
    color: white;
    font-size: 16px;
    border-color: white;
    padding: 11px 25px !important;
    margin-top: 15px; }

.tour-party-background {
  background-image: url("../../images/patterns/geometry3.png"); }

.tour-grey-background {
  background-color: #f4f3f2; }

.no-card-signup {
  padding: 20px;
  border: 0; }
  .no-card-signup input {
    margin-top: 10px;
    border-radius: 0px;
    padding: 20px !important; }
  .no-card-signup .labels {
    margin-bottom: 0px !important;
    text-transform: uppercase;
    color: #ababab;
    font-weight: 300;
    font-size: 12px; }
  .no-card-signup .btn-sf {
    text-decoration: none;
    padding: 10px 25px;
    background-color: #2f94c8;
    color: white;
    border: 2px solid white; }
  .no-card-signup .btn-nyc {
    text-decoration: none;
    padding: 10px 25px;
    background-color: #d65555;
    color: white;
    border: 2px solid white; }
  .no-card-signup .btn-leaving {
    background-color: #1ab19d;
    border-color: #1ab19d;
    color: white;
    font-size: 16px;
    padding: 11px 25px !important;
    margin-top: 15px; }
    .no-card-signup .btn-leaving:hover, .no-card-signup .btn-leaving:focus, .no-card-signup .btn-leaving.focus, .no-card-signup .btn-leaving:active, .no-card-signup .btn-leaving.active {
      background-color: #1ab19d;
      border-color: #1ab19d; }
  .no-card-signup .started {
    font-size: 30px;
    color: #3ec8b6;
    font-weight: 500; }
  .no-card-signup .city-box {
    padding: 20px;
    margin-bottom: 20px;
    margin: 20px;
    cursor: pointer; }
    .no-card-signup .city-box h2 {
      font-size: 25px; }
    .no-card-signup .city-box .city-select h2 {
      font-size: 20px; }
  .no-card-signup .city-sf {
    background-color: #2f94c8;
    border: 0px;
    color: white; }
  .no-card-signup .city-nyc {
    background-color: #d65555;
    border: 0px;
    color: white; }
  .no-card-signup .new-region-input {
    margin-top: 17px; }
  .no-card-signup select {
    margin-top: 10px;
    border-radius: 0px;
    padding: 20px !important; }
  .no-card-signup .rocket {
    max-width: 200px; }
  .no-card-signup .close {
    font-size: 2em; }
  .no-card-signup h1 {
    font-family: 'Circular';
    font-weight: 300;
    font-size: 40px; }
  .no-card-signup .fa {
    color: #2F94C8; }
  .no-card-signup a {
    text-decoration: underline; }
  .no-card-signup .title {
    font-weight: 400;
    font-size: 22px; }
  .no-card-signup .input-thing {
    border-radius: 0px; }
  .no-card-signup .request-city-box {
    margin-bottom: 15px; }

.nocard-grey-background {
  background-color: #f4f3f2; }

.payment-method {
  padding: 20px;
  border: 0; }
  .payment-method input {
    margin-top: 10px;
    border-radius: 0px;
    padding: 20px !important; }
  .payment-method .form-group {
    margin-bottom: 0; }
  .payment-method .labels {
    margin-bottom: 0px !important;
    text-transform: uppercase;
    color: #ababab;
    font-weight: 300;
    font-size: 12px; }
  .payment-method .btn-leaving {
    background-color: #1ab19d;
    border-color: #1ab19d;
    color: white;
    font-size: 16px;
    padding: 11px 25px !important;
    margin-top: 15px; }
    .payment-method .btn-leaving:hover, .payment-method .btn-leaving:focus, .payment-method .btn-leaving.focus, .payment-method .btn-leaving:active, .payment-method .btn-leaving.active {
      background-color: #1ab19d;
      border-color: #1ab19d; }
  .payment-method .skip-link {
    font-style: italic;
    font-size: 14px; }
  .payment-method .started {
    font-size: 30px;
    color: #3ec8b6;
    font-weight: 500; }
  .payment-method select {
    margin-top: 10px;
    border-radius: 0px;
    padding: 20px !important; }
  .payment-method .close {
    font-size: 2em; }
  .payment-method .ccNumber {
    margin-top: 5px; }
  .payment-method .cvc {
    margin-bottom: 10px; }
  .payment-method h1 {
    font-family: 'Circular';
    font-weight: 300;
    font-size: 40px; }
  .payment-method .fa {
    color: #666; }
  .payment-method a {
    text-decoration: underline; }
  .payment-method .title {
    font-weight: 400;
    font-size: 22px; }
  .payment-method .input-thing {
    border-radius: 0px; }

.payment-method-grey-background {
  background-color: #f4f3f2; }

.customer-modal {
  width: 80%; }
  @media (max-width: 768px) {
    .customer-modal {
      width: auto; } }
  .customer-modal .modal-content {
    border-radius: 0; }

.customer-home-modal-container {
  font-size: 80%; }
  .customer-home-modal-container span.label {
    padding: 4px 6px 2px;
    border-radius: 2px;
    font-weight: normal;
    font-size: 100%; }

.place-modal {
  width: 80%; }
  @media (max-width: 768px) {
    .place-modal {
      width: auto; } }
  .place-modal .modal-content {
    border-radius: 0; }

.place-home-modal-container {
  font-size: 80%; }
  .place-home-modal-container span.label {
    padding: 4px 6px 2px;
    border-radius: 2px;
    font-weight: normal;
    font-size: 100%; }

.company-modal {
  width: 80%; }
  @media (max-width: 768px) {
    .company-modal {
      width: auto; } }
  .company-modal .modal-content {
    border-radius: 0; }

.company-home-modal-container {
  font-size: 80%; }
  .company-home-modal-container span.label {
    padding: 4px 6px 2px;
    border-radius: 2px;
    font-weight: normal;
    font-size: 100%; }

.activation-confirmation-container {
  padding: 20px; }
  .activation-confirmation-container .btn-lg, .activation-confirmation-container .btn-group-lg > .btn {
    height: 50px; }
  .activation-confirmation-container .message {
    color: #2F94C8; }
  .activation-confirmation-container .black {
    color: black; }
  .activation-confirmation-container p {
    color: grey; }
  .activation-confirmation-container h2 {
    border-bottom: 4px solid #eec970;
    padding-bottom: 10px;
    display: inline-block; }
  .activation-confirmation-container .nothanks {
    text-decoration: underline; }
  .activation-confirmation-container input {
    border-radius: 2px; }

.join-container .btn-primary {
  font-size: 14px;
  height: 45px; }

.join-container .grey {
  color: grey; }

.join-container h4 {
  text-transform: uppercase; }

.join-container .top-padding {
  padding-top: 14px; }

.join-container input {
  height: 38px;
  border-radius: 2px; }

.join-container select {
  height: 38px;
  border-radius: 2px !important; }

.join-container .form-control {
  height: 38px;
  border-radius: 2px !important; }

.settings-home-container .badge {
  border-radius: 0px;
  font-weight: 500;
  background-color: #5BC9E1; }

@media (max-width: 768px) {
  .settings-home-container .settings-wrapper {
    height: auto; } }

.settings-home-container .settings-sidebar {
  background-color: #F3F3F3;
  padding-left: 30px !important; }
  @media (max-width: 768px) {
    .settings-home-container .settings-sidebar li {
      text-align: center;
      width: 20%; } }
  .settings-home-container .settings-sidebar td {
    padding: 10px 5px !important;
    font-size: 0.9em; }
  .settings-home-container .settings-sidebar .nav-settings a {
    border-radius: 1px;
    color: #B3B3B3; }
    .settings-home-container .settings-sidebar .nav-settings a, .settings-home-container .settings-sidebar .nav-settings a:hover, .settings-home-container .settings-sidebar .nav-settings a:focus {
      background-color: #F3F3F3 !important; }
  .settings-home-container .settings-sidebar .nav-settings li, .settings-home-container .settings-sidebar .nav-settings li:hover, .settings-home-container .settings-sidebar .nav-settings li:focus {
    background-color: #F3F3F3 !important; }
  .settings-home-container .settings-sidebar .nav-settings li .badge {
    padding-top: 5px; }
  .settings-home-container .settings-sidebar .nav-settings li.active > a {
    padding: 8px 15px 10px 15px;
    background-color: #F3F3F3;
    color: #333;
    font-family: 'Circular';
    font-weight: 500; }
    .settings-home-container .settings-sidebar .nav-settings li.active > a .badge {
      color: white;
      background-color: #5BC9E1;
      padding-top: 3px; }

.settings-home-container .settings-content {
  overflow-y: scroll;
  overflow-x: hidden; }
  @media (max-width: 768px) {
    .settings-home-container .settings-content {
      overflow-y: auto; } }
  .settings-home-container .settings-content th {
    font-weight: 300;
    font-size: 0.8em;
    color: grey;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 5px !important; }
  .settings-home-container .settings-content .input-lg, .settings-home-container .settings-content .form-horizontal .form-group-lg .form-control, .form-horizontal .form-group-lg .settings-home-container .settings-content .form-control, .settings-home-container .settings-content .input-group-lg > .form-control, .settings-home-container .settings-content
  .input-group-lg > .input-group-addon, .settings-home-container .settings-content
  .input-group-lg > .input-group-btn > .btn {
    border-radius: 1px; }
  .settings-home-container .settings-content .btn-primary {
    background-color: #2F94C8;
    border-color: #2F94C8;
    border-radius: 1px; }
  .settings-home-container .settings-content h3 {
    font-weight: 400; }
  .settings-home-container .settings-content .btn-default {
    border-radius: 1px;
    background-color: #2F94C8;
    color: white;
    border: 1px solid #2F94C8; }
  .settings-home-container .settings-content a {
    text-decoration: none; }
  .settings-home-container .settings-content .selected {
    font-weight: 400;
    color: #333; }
  .settings-home-container .settings-content .btn {
    font-weight: 300; }

.settings-account-container p {
  color: grey;
  line-height: 1.7em;
  font-size: 11pt; }

.settings-account-container h2 {
  font-family: 'Circular';
  border-bottom: 4px solid #eec970;
  padding-bottom: 10px;
  display: inline-block; }

.settings-account-container .account-details .details {
  font-size: 20px;
  font-weight: 400; }
  .settings-account-container .account-details .details small {
    text-transform: none;
    font-size: 0.7em;
    font-weight: 300; }
  .settings-account-container .account-details .details a {
    color: #2F94C8; }

.settings-account-container .account-details .change a {
  color: #2F94C8; }

.settings-account-container .account-details .fields {
  color: grey; }

.settings-account-container .account-details .btn-lg, .settings-account-container .account-details .btn-group-lg > .btn {
  font-size: 15px; }

.settings-account-container .wallet-outer {
  border: 1px dotted black;
  margin: 10px;
  padding: 20px;
  color: grey; }
  .settings-account-container .wallet-outer .wallet-details .brand {
    padding-top: 10px; }
  .settings-account-container .wallet-outer .btn {
    font-weight: 300; }
  .settings-account-container .wallet-outer .remove-card {
    text-decoration: underline;
    font-size: 12px; }
  .settings-account-container .wallet-outer .selected {
    font-weight: 400;
    color: #333; }

.settings-account-container .wallet-new {
  margin: 20px;
  padding: 20px; }
  .settings-account-container .wallet-new input {
    border-radius: 1px; }

.settings-account-container .btn-not {
  border-radius: 1px;
  border: 1px solid #2F94C8;
  background-color: white;
  color: #2F94C8; }

.settings-account-container .btn {
  font-weight: 300; }

.settings-account-container th {
  font-weight: 300;
  font-size: 0.8em;
  color: grey;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 5px !important; }

.settings-membership-container .panel {
  background-color: #E3F0F7;
  border-radius: 1px;
  border: 0px; }

.settings-membership-container .unpause {
  color: #2F94C8; }

.settings-membership-container .badge {
  border-radius: 2px;
  background-color: #5BC9E1;
  font-weight: 500;
  text-transform: uppercase; }

.settings-membership-container .cmn-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden; }

.settings-membership-container .cmn-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  user-select: none; }

.settings-membership-container input.cmn-toggle-round-flat + label {
  padding: 2px;
  width: 80px;
  height: 40px;
  background-color: #dddddd;
  border-radius: 60px;
  transition: background 0.4s; }

.settings-membership-container input.cmn-toggle-round-flat + label:before,
.settings-membership-container input.cmn-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: ""; }

.settings-membership-container input.cmn-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: #fff;
  border-radius: 60px;
  transition: background 0.4s; }

.settings-membership-container input.cmn-toggle-round-flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 36px;
  background-color: #dddddd;
  border-radius: 40px;
  transition: margin 0.4s, background 0.4s; }

.settings-membership-container input.cmn-toggle-round-flat:checked + label {
  background-color: #5BC9E1; }

.settings-membership-container input.cmn-toggle-round-flat:checked + label:after {
  margin-left: 36px;
  background-color: #5BC9E1; }

.settings-membership-container h1 {
  font-family: 'Circular'; }

.settings-membership-container .btn-primary {
  padding: 10px 40px;
  font-size: 15px;
  margin-right: 20px;
  background-color: #5BC9E1 !important;
  border-color: #5BC9E1 !important; }

.settings-membership-container .btn-white {
  color: gray !important;
  background-color: white !important;
  border: solid 2px gray !important; }

.settings-membership-container p {
  color: grey;
  line-height: 1.6em;
  font-size: 11pt; }

.settings-membership-container .black {
  color: black; }

.settings-membership-container .membership-card {
  background-color: #E3F0F7;
  border: 0px #2F94C8 solid;
  border-radius: 1px;
  padding: 20px;
  text-align: center; }
  .settings-membership-container .membership-card .badge {
    background-color: #2F94C8;
    border-radius: 1px;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 14px; }
  .settings-membership-container .membership-card h3 {
    margin-top: 5px; }
  .settings-membership-container .membership-card .lightblue {
    color: #989898; }
  .settings-membership-container .membership-card .labels {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px; }
  .settings-membership-container .membership-card h4 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 15px; }
  .settings-membership-container .membership-card .numbering {
    background-color: white;
    border-radius: 10px;
    color: grey;
    padding: 6px;
    width: 34px;
    font-size: 10px; }
  .settings-membership-container .membership-card hr {
    border-top: 2px solid #666; }

.settings-membership-container .memberships-product .membership-type {
  border: 2px solid #E4E4E4;
  background-image: url("../../images/patterns/geometry3.png");
  border-radius: 2px;
  padding: 30px; }
  .settings-membership-container .memberships-product .membership-type .membership-title {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: grey;
    font-size: 13px;
    text-align: right;
    padding-top: 2px; }
  .settings-membership-container .memberships-product .membership-type .badge {
    border-radius: 0;
    padding: 5px 10px; }
    .settings-membership-container .memberships-product .membership-type .badge.paused {
      background: #eec970; }
    .settings-membership-container .memberships-product .membership-type .badge.cancelled {
      background: #ec6f5f; }

.settings-membership-container .memberships-product small {
  font-size: 14px;
  color: gray; }

.settings-referral-container p {
  color: grey;
  line-height: 1.7em;
  font-size: 11pt; }

.settings-referral-container .ref-code {
  font-weight: 500;
  color: #2F94C8; }

.settings-referral-container .copy-button {
  background-color: #5BC9E1;
  border: 2px solid #5BC9E1;
  color: white; }

.settings-referral-container .share-links {
  margin-top: 15px; }

.settings-referral-container .anothers {
  padding: 5px;
  display: inline-block;
  font-size: 12px;
  margin: 5px; }

.settings-verify-container p {
  color: grey;
  line-height: 1.7em;
  font-size: 11pt; }

.settings-verify-container .panel {
  background-color: #E3F0F7;
  border-radius: 0px !important;
  border: 0px; }

.settings-verify-container h2 {
  border-bottom: 4px solid #eec970;
  padding-bottom: 10px;
  display: inline-block; }

.settings-verify-container h3 {
  font-family: 'Circular'; }

.settings-verify-container .grey {
  color: grey; }

.settings-verify-container .section-title {
  font-size: 22px; }

.settings-verify-container .yes-text {
  padding: 30px; }

.settings-verify-container .verifybox {
  width: 400px; }

.settings-verify-container .btn-defaults {
  background-color: white;
  font-family: 'Circular';
  color: black;
  border: 1px solid black;
  border-radius: 1px; }

.settings-verify-container input {
  border-radius: 1px;
  border-color: #666; }

.settings-verify-container .green {
  color: #4FC55F; }

.settings-offers-container hr {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  border-top: 4px solid #CDCDCD;
  width: 42px; }

.settings-offers-container .one-offer {
  width: 100%;
  padding: 20px;
  border: 1px solid #dcdcdc;
  display: inline-block;
  margin-bottom: 10px; }

.settings-offers-container a {
  color: #2F94C8;
  font-weight: 500; }

.settings-offers-container .the-price {
  color: #2F94C8;
  font-size: 30px;
  font-weight: 500; }

.settings-offers-container h4 {
  font-weight: 300;
  color: grey; }

.settings-offers-container .btn-blue {
  padding: 10px 20px;
  margin-top: 10px; }

.settings-order-container h2 {
  border-bottom: 4px solid #eec970;
  padding-bottom: 10px;
  display: inline-block;
  font-family: 'Circular'; }

.settings-order-container p {
  color: grey;
  line-height: 1.7em;
  font-size: 11pt; }

.settings-order-container th {
  font-family: 'Circular'; }

.settings-perks-container p {
  color: grey;
  line-height: 1.7em;
  font-size: 11pt; }

.settings-perks-container .underline-title {
  font-family: Circular;
  font-weight: 500;
  font-size: 30px;
  margin-top: 22px;
  margin-left: 20px;
  margin-bottom: 0px;
  letter-spacing: 0px;
  border-bottom: 4px solid #eec970;
  padding-bottom: 10px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden; }

.settings-perks-container .perks-intro {
  font-size: 16px;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px; }
  .settings-perks-container .perks-intro a {
    font-size: 16px;
    font-weight: 300; }

.settings-perks-container .perk-container {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #515151;
  text-decoration: none; }

.settings-perks-container .perk {
  background-color: #FFFFFF;
  padding: 15px;
  border: 1px #DADADA solid;
  box-shadow: 0px 2px 2px #888888; }

.settings-perks-container .perk-image {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px; }

.settings-perks-container h3 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px; }

.settings-perks-container .description {
  font-size: 12px;
  color: #999; }

.settings-perks-container a {
  font-size: 16px;
  font-weight: 500;
  color: #333; }
  .settings-perks-container a:hover {
    color: #333; }

.cancel-membership-container p {
  color: grey;
  line-height: 1.7em;
  font-size: 11pt; }

.cancel-membership-container .no-thanks {
  color: #2F94C8;
  display: inline; }

.cancel-membership-container .btn-red {
  font-weight: 300;
  font-size: 16px; }

.cancel-membership-container h2 {
  font-family: 'Circular'; }

.cancel-membership-container .btn-reason {
  border-radius: 0px;
  border: 1px solid #333;
  background-color: white;
  margin-top: 10px; }
  .cancel-membership-container .btn-reason h4 {
    font-weight: 300; }

.cancel-membership-container .panel {
  border-radius: 0px;
  font-size: 15px;
  border: 0px; }

.cancel-membership-container .rollover-message {
  background-color: #fcf6e7;
  margin: 0;
  padding: 25px 15px; }
  .cancel-membership-container .rollover-message a {
    font-weight: 700; }

.cancel-membership-container .titles {
  font-size: 18px;
  font-family: 'Circular';
  font-weight: 500; }

.cancel-membership-container .panel-body {
  background-color: #E3F0F7;
  border-radius: 0px; }

.cancel-membership-container .alert {
  background-color: #BBE6F3;
  border: 0;
  color: #333;
  border-radius: 2px;
  padding: 20px;
  text-align: left; }

.cancel-membership-container button {
  border: 0px; }

.cancel-membership-container h4, .cancel-membership-container label {
  color: #333; }

.cancel-membership-container .badge {
  border-radius: 0px;
  margin-bottom: 5px;
  font-weight: 300;
  background-color: #2F94C8;
  font-family: 'Circular'; }

.pause-membership-container p {
  color: grey;
  line-height: 1.7em;
  font-size: 11pt; }

.pause-membership-container .blue-font {
  color: #5BC9E1 !important; }

.pause-membership-container .no-thanks {
  color: #2F94C8; }

.pause-membership-container .btn-yellow {
  background-color: #5BC9E1;
  border: 0px; }

.pause-membership-container li {
  color: grey !important;
  font-size: 11pt !important; }

.pause-membership-container .pause-to {
  margin-top: 10px; }

.pause-membership-container .memberships-product .membership-type {
  border: 2px solid #E4E4E4;
  background-image: url("../../../images/patterns/geometry3.png");
  border-radius: 2px;
  padding: 30px; }
  .pause-membership-container .memberships-product .membership-type .membership-title {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: grey;
    font-size: 13px;
    text-align: right;
    padding-top: 2px; }

.pause-membership-container .memberships-product small {
  font-size: 14px;
  color: gray; }

.adjust-membership-container .bullet {
  line-height: 1.8em;
  color: #5b5b5b !important; }

.adjust-membership-container .promo-container p {
  color: #333; }

.adjust-membership-container .badge {
  background-color: #2fc8c1;
  font-weight: 500;
  border-radius: 0px;
  margin-left: 10px; }

.adjust-membership-container .or {
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px; }

.adjust-membership-container p {
  color: grey;
  line-height: 1.6em; }

.adjust-membership-container .top-margin {
  margin-top: 20px; }

.adjust-membership-container .main-container {
  margin-left: 40px;
  margin-right: 40px; }
  @media (max-width: 480px) {
    .adjust-membership-container .main-container {
      margin-left: 0px;
      margin-right: 0px; } }

.adjust-membership-container .btn-promo {
  background-color: #2F94C8;
  color: white;
  font-weight: 300;
  border-color: #2F94C8; }

.adjust-membership-container h4 {
  font-weight: 300; }

.adjust-membership-container .totals {
  background-color: #fbfbfb;
  padding: 20px;
  border: 1px solid #e0e0e0; }

.adjust-membership-container .review {
  padding: 50px 20px; }

.adjust-membership-container .icons {
  padding: 10px; }

.adjust-membership-container li {
  padding-top: 10px; }

.adjust-membership-container .signup-section {
  background-color: #edf5f9;
  padding: 20px;
  border-top: none; }

.adjust-membership-container .tab-content {
  border: 1px solid #dddddd;
  border-top: none;
  padding: 20px 31px; }

.adjust-membership-container .spaces {
  padding-left: 42px; }

.adjust-membership-container strong {
  font-weight: 500; }

.adjust-membership-container .form-control {
  background-color: #fafdff;
  background-image: none;
  border: 1px solid #dcdcdc; }

.adjust-membership-container .outlinebox {
  border: 1px solid #e0e0e0;
  padding: 20px; }

.adjust-membership-container .radio {
  padding: 15px;
  border: 1px solid #e0e0e0;
  background-color: #fafdff;
  margin-top: 10px; }

.adjust-membership-container .product-selection > label {
  display: inherit;
  cursor: pointer; }

.adjust-membership-container .agree {
  font-size: 13px;
  color: gray; }

.adjust-membership-container .membership-type {
  font-size: 18px; }

.adjust-membership-container .details {
  color: gray;
  padding-top: 5px;
  font-weight: 200;
  font-size: 14px; }

.adjust-membership-container .box {
  border: 1px solid #eaeaea;
  margin-right: 20px;
  background-color: #fbfbfb; }
  @media (max-width: 480px) {
    .adjust-membership-container .box {
      margin-left: 0px; } }
  .adjust-membership-container .box .summary {
    padding: 20px; }

.adjust-membership-container .btn-primary {
  background-color: #2F94C8;
  border-color: #2F94C8;
  height: 65px; }

.adjust-membership-container .btn-next {
  font-weight: 300;
  border-radius: 0px;
  padding: 10px 50px;
  background-color: #2F94C8;
  border-color: #2F94C8; }

.adjust-membership-container .section {
  background-color: #F1F8FC;
  padding: 20px; }

.adjust-membership-container .input-lg, .adjust-membership-container .form-horizontal .form-group-lg .form-control, .form-horizontal .form-group-lg .adjust-membership-container .form-control, .adjust-membership-container .input-group-lg > .form-control, .adjust-membership-container
.input-group-lg > .input-group-addon, .adjust-membership-container
.input-group-lg > .input-group-btn > .btn {
  border-radius: 0px; }

.adjust-membership-container label {
  font-weight: 300; }

.adjust-membership-container .btn-block {
  border-radius: 1px;
  font-weight: 300; }

.adjust-membership-container .why-credit-card-container {
  margin-left: 15px;
  margin-top: 10px;
  display: inline-block; }

.adjust-membership-container .why-credit-card {
  font-size: 14px;
  color: #999999; }

.adjust-membership-container input[type='radio'] {
  display: none; }

.adjust-membership-container input[type='radio'] + label {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #333;
  border-radius: 50%;
  padding: 0px;
  margin-right: 12px;
  position: relative; }
  .adjust-membership-container input[type='radio'] + label i {
    color: white;
    position: absolute;
    left: 3px;
    top: 2px;
    font-size: 14px; }

.adjust-membership-container input[type='radio']:checked + label i {
  color: #333; }

.adjust-membership-container .buy-membership sup {
  font-size: 60% !important; }

.adjust-membership-container .buy-membership .extra-info {
  font-size: 11px;
  color: #a7a7a7 !important;
  margin-top: 10px; }

.adjust-membership-container .buy-membership .promo {
  color: gray; }

@media (max-width: 768px) {
  .adjust-membership-container .buy-membership .tier {
    padding: 0 50px; } }

@media (max-width: 480px) {
  .adjust-membership-container .buy-membership .tier {
    padding: 0 5px; } }

.adjust-membership-container .buy-membership .tier .pricing-box {
  box-shadow: #d8d8d8 1px 2px 2px;
  background-color: white;
  border: 1px solid #ececec;
  padding: 10px; }
  .adjust-membership-container .buy-membership .tier .pricing-box .mo {
    color: #333;
    font-size: 16px; }
  .adjust-membership-container .buy-membership .tier .pricing-box li {
    padding-top: 5px; }
  .adjust-membership-container .buy-membership .tier .pricing-box .dollar {
    font-size: 48px;
    font-weight: 300; }
  .adjust-membership-container .buy-membership .tier .pricing-box .blurb {
    color: #8C8C8C;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 300; }
  .adjust-membership-container .buy-membership .tier .pricing-box .name {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px; }

.adjust-membership-container .buy-membership .tier .btn-next {
  font-weight: 300;
  border: 0;
  border-radius: 0;
  padding: 4% 8%;
  color: white;
  font-size: 18px;
  background-color: #2F94C8; }

.adjust-membership-container .buy-membership .tier.create .dollar {
  color: #e85959; }

.adjust-membership-container .buy-membership .tier.create .btn-next {
  background-color: #e85959; }

.adjust-membership-container .buy-membership .tier.explore .dollar {
  color: #2fc8b3; }

.adjust-membership-container .buy-membership .tier.explore .btn-next {
  background-color: #2fc8b3; }

.adjust-membership-container .buy-membership .tier.inspire .dollar {
  color: #4cb5ea; }

.adjust-membership-container .buy-membership .tier.inspire .btn-next {
  background-color: #4cb5ea; }

.adjust-membership-container .buy-membership .tier.a-la-carte .name {
  padding: 10px 0;
  border-bottom: 5px solid #eec970; }

.adjust-membership-container .buy-membership .tier.a-la-carte .blurb {
  margin-bottom: 20px;
  margin-top: 10px; }

.adjust-membership-container .buy-membership .tier.a-la-carte .dollar {
  color: #eec970;
  line-height: 30px; }

.adjust-membership-container .buy-membership .tier.a-la-carte .btn-next {
  background-color: #eec970; }

.reactivate-membership-container .bullet {
  line-height: 1.8em;
  color: #5b5b5b !important; }

.reactivate-membership-container .badge {
  background-color: #2fc8c1;
  font-weight: 500;
  border-radius: 0px;
  margin-left: 10px; }

.reactivate-membership-container .or {
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px; }

.reactivate-membership-container p {
  color: grey;
  line-height: 1.6em; }

.reactivate-membership-container .top-margin {
  margin-top: 20px; }

.reactivate-membership-container .main-container {
  margin-left: 40px;
  margin-right: 40px; }
  @media (max-width: 480px) {
    .reactivate-membership-container .main-container {
      margin-left: 0px;
      margin-right: 0px; } }

.reactivate-membership-container .btn-promo {
  background-color: #2F94C8;
  color: white;
  font-weight: 300;
  border-color: #2F94C8; }

.reactivate-membership-container h4 {
  font-weight: 300; }

.reactivate-membership-container .totals {
  background-color: #fbfbfb;
  padding: 20px;
  border: 1px solid #e0e0e0; }

.reactivate-membership-container .review {
  padding: 50px 20px; }

.reactivate-membership-container .icons {
  padding: 10px; }

.reactivate-membership-container li {
  padding-top: 10px; }

.reactivate-membership-container .signup-section {
  background-color: #edf5f9;
  padding: 20px;
  border-top: none; }

.reactivate-membership-container .tab-content {
  border: 1px solid #dddddd;
  border-top: none;
  padding: 20px 31px; }

.reactivate-membership-container .spaces {
  padding-left: 42px; }

.reactivate-membership-container strong {
  font-weight: 500; }

.reactivate-membership-container .form-control {
  background-color: #fafdff;
  background-image: none;
  border: 1px solid #dcdcdc; }

.reactivate-membership-container .outlinebox {
  border: 1px solid #e0e0e0;
  padding: 20px; }

.reactivate-membership-container .radio {
  padding: 15px;
  border: 1px solid #e0e0e0;
  background-color: #fafdff;
  margin-top: 10px; }

.reactivate-membership-container .product-selection > label {
  display: inherit;
  cursor: pointer; }

.reactivate-membership-container .agree {
  font-size: 13px;
  color: gray; }

.reactivate-membership-container .membership-type {
  font-size: 18px; }

.reactivate-membership-container .details {
  color: gray;
  padding-top: 5px;
  font-weight: 200;
  font-size: 14px; }

.reactivate-membership-container .box {
  border: 1px solid #eaeaea;
  margin-right: 20px;
  background-color: #fbfbfb; }
  @media (max-width: 480px) {
    .reactivate-membership-container .box {
      margin-left: 0px; } }
  .reactivate-membership-container .box .summary {
    padding: 20px; }

.reactivate-membership-container .btn-primary {
  background-color: #2F94C8;
  border-color: #2F94C8;
  height: 65px; }

.reactivate-membership-container .btn-next {
  font-weight: 300;
  border-radius: 0px;
  padding: 10px 50px;
  background-color: #2F94C8;
  border-color: #2F94C8; }

.reactivate-membership-container .section {
  background-color: #F1F8FC;
  padding: 20px; }

.reactivate-membership-container .input-lg, .reactivate-membership-container .form-horizontal .form-group-lg .form-control, .form-horizontal .form-group-lg .reactivate-membership-container .form-control, .reactivate-membership-container .input-group-lg > .form-control, .reactivate-membership-container
.input-group-lg > .input-group-addon, .reactivate-membership-container
.input-group-lg > .input-group-btn > .btn {
  border-radius: 0px; }

.reactivate-membership-container label {
  font-weight: 300; }

.reactivate-membership-container .btn-block {
  border-radius: 1px;
  font-weight: 300; }

.reactivate-membership-container .why-credit-card-container {
  margin-left: 15px;
  margin-top: 10px;
  display: inline-block; }

.reactivate-membership-container .why-credit-card {
  font-size: 14px;
  color: #999999; }

.reactivate-membership-container input[type='radio'] {
  display: none; }

.reactivate-membership-container input[type='radio'] + label {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #333;
  border-radius: 50%;
  padding: 0px;
  margin-right: 12px;
  position: relative; }
  .reactivate-membership-container input[type='radio'] + label i {
    color: white;
    position: absolute;
    left: 3px;
    top: 2px;
    font-size: 14px; }

.reactivate-membership-container input[type='radio']:checked + label i {
  color: #333; }

.reactivate-membership-container .buy-membership sup {
  font-size: 60% !important; }

.reactivate-membership-container .buy-membership .extra-info {
  font-size: 11px;
  color: #c8c8c8 !important;
  margin-top: 10px; }

.reactivate-membership-container .buy-membership .promo {
  color: gray; }

@media (max-width: 768px) {
  .reactivate-membership-container .buy-membership .tier {
    padding: 0 50px; } }

@media (max-width: 480px) {
  .reactivate-membership-container .buy-membership .tier {
    padding: 0 5px; } }

.reactivate-membership-container .buy-membership .tier .pricing-box {
  box-shadow: #d8d8d8 1px 2px 2px;
  background-color: white;
  border: 1px solid #ececec;
  padding: 10px; }
  .reactivate-membership-container .buy-membership .tier .pricing-box .mo {
    color: #333;
    font-size: 16px; }
  .reactivate-membership-container .buy-membership .tier .pricing-box li {
    padding-top: 5px; }
  .reactivate-membership-container .buy-membership .tier .pricing-box .dollar {
    font-size: 48px;
    font-weight: 300; }
  .reactivate-membership-container .buy-membership .tier .pricing-box .blurb {
    color: #8C8C8C;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 300; }
  .reactivate-membership-container .buy-membership .tier .pricing-box .name {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px; }

.reactivate-membership-container .buy-membership .tier .btn-next {
  font-weight: 300;
  border: 0;
  border-radius: 0;
  padding: 4% 8%;
  color: white;
  font-size: 18px;
  background-color: #2F94C8; }

.reactivate-membership-container .buy-membership .tier.create .dollar {
  color: #e85959; }

.reactivate-membership-container .buy-membership .tier.create .btn-next {
  background-color: #e85959; }

.reactivate-membership-container .buy-membership .tier.explore .dollar {
  color: #2fc8b3; }

.reactivate-membership-container .buy-membership .tier.explore .btn-next {
  background-color: #2fc8b3; }

.reactivate-membership-container .buy-membership .tier.inspire .dollar {
  color: #4cb5ea; }

.reactivate-membership-container .buy-membership .tier.inspire .btn-next {
  background-color: #4cb5ea; }

.reactivate-membership-container .buy-membership .tier.a-la-carte .name {
  padding: 10px 0;
  border-bottom: 5px solid #eec970; }

.reactivate-membership-container .buy-membership .tier.a-la-carte .blurb {
  margin-bottom: 20px;
  margin-top: 10px; }

.reactivate-membership-container .buy-membership .tier.a-la-carte .dollar {
  color: #eec970;
  line-height: 30px; }

.reactivate-membership-container .buy-membership .tier.a-la-carte .btn-next {
  background-color: #eec970; }
