/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.6.1
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2016 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/

/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.chosen-container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}
.chosen-container a {
  cursor: pointer;
}
.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}
.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
  background: -webkit-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -moz-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -o-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}
.chosen-container-single .chosen-default {
  color: #999;
}
.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('/images/chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('/images/chosen-sprite.png') no-repeat 0px 2px;
}
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: white url('/images/chosen-sprite.png') no-repeat 100% -20px;
  background: url('/images/chosen-sprite.png') no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text;
}
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('/images/chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
  box-shadow: 0 1px 0 #fff inset;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
.chosen-disabled .chosen-single {
  cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}
.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}
.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}
.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}
.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}
.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}
.chosen-rtl .chosen-choices li {
  float: right;
}
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}
.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}
.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
  left: 9999px;
}
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}
.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: white url('/images/chosen-sprite.png') no-repeat -30px -20px;
  background: url('/images/chosen-sprite.png') no-repeat -30px -20px;
  direction: rtl;
}
.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url('/images/chosen-sprite@2x.png') !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
/* @end */

/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('/fonts/fontawesome-webfont.eot?v=4.4.0');src:url('/fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'),url('/fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'),url('/fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'),url('/fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'),url('/fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\F000"}.fa-music:before{content:"\F001"}.fa-search:before{content:"\F002"}.fa-envelope-o:before{content:"\F003"}.fa-heart:before{content:"\F004"}.fa-star:before{content:"\F005"}.fa-star-o:before{content:"\F006"}.fa-user:before{content:"\F007"}.fa-film:before{content:"\F008"}.fa-th-large:before{content:"\F009"}.fa-th:before{content:"\F00A"}.fa-th-list:before{content:"\F00B"}.fa-check:before{content:"\F00C"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\F00D"}.fa-search-plus:before{content:"\F00E"}.fa-search-minus:before{content:"\F010"}.fa-power-off:before{content:"\F011"}.fa-signal:before{content:"\F012"}.fa-gear:before,.fa-cog:before{content:"\F013"}.fa-trash-o:before{content:"\F014"}.fa-home:before{content:"\F015"}.fa-file-o:before{content:"\F016"}.fa-clock-o:before{content:"\F017"}.fa-road:before{content:"\F018"}.fa-download:before{content:"\F019"}.fa-arrow-circle-o-down:before{content:"\F01A"}.fa-arrow-circle-o-up:before{content:"\F01B"}.fa-inbox:before{content:"\F01C"}.fa-play-circle-o:before{content:"\F01D"}.fa-rotate-right:before,.fa-repeat:before{content:"\F01E"}.fa-refresh:before{content:"\F021"}.fa-list-alt:before{content:"\F022"}.fa-lock:before{content:"\F023"}.fa-flag:before{content:"\F024"}.fa-headphones:before{content:"\F025"}.fa-volume-off:before{content:"\F026"}.fa-volume-down:before{content:"\F027"}.fa-volume-up:before{content:"\F028"}.fa-qrcode:before{content:"\F029"}.fa-barcode:before{content:"\F02A"}.fa-tag:before{content:"\F02B"}.fa-tags:before{content:"\F02C"}.fa-book:before{content:"\F02D"}.fa-bookmark:before{content:"\F02E"}.fa-print:before{content:"\F02F"}.fa-camera:before{content:"\F030"}.fa-font:before{content:"\F031"}.fa-bold:before{content:"\F032"}.fa-italic:before{content:"\F033"}.fa-text-height:before{content:"\F034"}.fa-text-width:before{content:"\F035"}.fa-align-left:before{content:"\F036"}.fa-align-center:before{content:"\F037"}.fa-align-right:before{content:"\F038"}.fa-align-justify:before{content:"\F039"}.fa-list:before{content:"\F03A"}.fa-dedent:before,.fa-outdent:before{content:"\F03B"}.fa-indent:before{content:"\F03C"}.fa-video-camera:before{content:"\F03D"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\F03E"}.fa-pencil:before{content:"\F040"}.fa-map-marker:before{content:"\F041"}.fa-adjust:before{content:"\F042"}.fa-tint:before{content:"\F043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\F044"}.fa-share-square-o:before{content:"\F045"}.fa-check-square-o:before{content:"\F046"}.fa-arrows:before{content:"\F047"}.fa-step-backward:before{content:"\F048"}.fa-fast-backward:before{content:"\F049"}.fa-backward:before{content:"\F04A"}.fa-play:before{content:"\F04B"}.fa-pause:before{content:"\F04C"}.fa-stop:before{content:"\F04D"}.fa-forward:before{content:"\F04E"}.fa-fast-forward:before{content:"\F050"}.fa-step-forward:before{content:"\F051"}.fa-eject:before{content:"\F052"}.fa-chevron-left:before{content:"\F053"}.fa-chevron-right:before{content:"\F054"}.fa-plus-circle:before{content:"\F055"}.fa-minus-circle:before{content:"\F056"}.fa-times-circle:before{content:"\F057"}.fa-check-circle:before{content:"\F058"}.fa-question-circle:before{content:"\F059"}.fa-info-circle:before{content:"\F05A"}.fa-crosshairs:before{content:"\F05B"}.fa-times-circle-o:before{content:"\F05C"}.fa-check-circle-o:before{content:"\F05D"}.fa-ban:before{content:"\F05E"}.fa-arrow-left:before{content:"\F060"}.fa-arrow-right:before{content:"\F061"}.fa-arrow-up:before{content:"\F062"}.fa-arrow-down:before{content:"\F063"}.fa-mail-forward:before,.fa-share:before{content:"\F064"}.fa-expand:before{content:"\F065"}.fa-compress:before{content:"\F066"}.fa-plus:before{content:"\F067"}.fa-minus:before{content:"\F068"}.fa-asterisk:before{content:"\F069"}.fa-exclamation-circle:before{content:"\F06A"}.fa-gift:before{content:"\F06B"}.fa-leaf:before{content:"\F06C"}.fa-fire:before{content:"\F06D"}.fa-eye:before{content:"\F06E"}.fa-eye-slash:before{content:"\F070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\F071"}.fa-plane:before{content:"\F072"}.fa-calendar:before{content:"\F073"}.fa-random:before{content:"\F074"}.fa-comment:before{content:"\F075"}.fa-magnet:before{content:"\F076"}.fa-chevron-up:before{content:"\F077"}.fa-chevron-down:before{content:"\F078"}.fa-retweet:before{content:"\F079"}.fa-shopping-cart:before{content:"\F07A"}.fa-folder:before{content:"\F07B"}.fa-folder-open:before{content:"\F07C"}.fa-arrows-v:before{content:"\F07D"}.fa-arrows-h:before{content:"\F07E"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\F080"}.fa-twitter-square:before{content:"\F081"}.fa-facebook-square:before{content:"\F082"}.fa-camera-retro:before{content:"\F083"}.fa-key:before{content:"\F084"}.fa-gears:before,.fa-cogs:before{content:"\F085"}.fa-comments:before{content:"\F086"}.fa-thumbs-o-up:before{content:"\F087"}.fa-thumbs-o-down:before{content:"\F088"}.fa-star-half:before{content:"\F089"}.fa-heart-o:before{content:"\F08A"}.fa-sign-out:before{content:"\F08B"}.fa-linkedin-square:before{content:"\F08C"}.fa-thumb-tack:before{content:"\F08D"}.fa-external-link:before{content:"\F08E"}.fa-sign-in:before{content:"\F090"}.fa-trophy:before{content:"\F091"}.fa-github-square:before{content:"\F092"}.fa-upload:before{content:"\F093"}.fa-lemon-o:before{content:"\F094"}.fa-phone:before{content:"\F095"}.fa-square-o:before{content:"\F096"}.fa-bookmark-o:before{content:"\F097"}.fa-phone-square:before{content:"\F098"}.fa-twitter:before{content:"\F099"}.fa-facebook-f:before,.fa-facebook:before{content:"\F09A"}.fa-github:before{content:"\F09B"}.fa-unlock:before{content:"\F09C"}.fa-credit-card:before{content:"\F09D"}.fa-feed:before,.fa-rss:before{content:"\F09E"}.fa-hdd-o:before{content:"\F0A0"}.fa-bullhorn:before{content:"\F0A1"}.fa-bell:before{content:"\F0F3"}.fa-certificate:before{content:"\F0A3"}.fa-hand-o-right:before{content:"\F0A4"}.fa-hand-o-left:before{content:"\F0A5"}.fa-hand-o-up:before{content:"\F0A6"}.fa-hand-o-down:before{content:"\F0A7"}.fa-arrow-circle-left:before{content:"\F0A8"}.fa-arrow-circle-right:before{content:"\F0A9"}.fa-arrow-circle-up:before{content:"\F0AA"}.fa-arrow-circle-down:before{content:"\F0AB"}.fa-globe:before{content:"\F0AC"}.fa-wrench:before{content:"\F0AD"}.fa-tasks:before{content:"\F0AE"}.fa-filter:before{content:"\F0B0"}.fa-briefcase:before{content:"\F0B1"}.fa-arrows-alt:before{content:"\F0B2"}.fa-group:before,.fa-users:before{content:"\F0C0"}.fa-chain:before,.fa-link:before{content:"\F0C1"}.fa-cloud:before{content:"\F0C2"}.fa-flask:before{content:"\F0C3"}.fa-cut:before,.fa-scissors:before{content:"\F0C4"}.fa-copy:before,.fa-files-o:before{content:"\F0C5"}.fa-paperclip:before{content:"\F0C6"}.fa-save:before,.fa-floppy-o:before{content:"\F0C7"}.fa-square:before{content:"\F0C8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\F0C9"}.fa-list-ul:before{content:"\F0CA"}.fa-list-ol:before{content:"\F0CB"}.fa-strikethrough:before{content:"\F0CC"}.fa-underline:before{content:"\F0CD"}.fa-table:before{content:"\F0CE"}.fa-magic:before{content:"\F0D0"}.fa-truck:before{content:"\F0D1"}.fa-pinterest:before{content:"\F0D2"}.fa-pinterest-square:before{content:"\F0D3"}.fa-google-plus-square:before{content:"\F0D4"}.fa-google-plus:before{content:"\F0D5"}.fa-money:before{content:"\F0D6"}.fa-caret-down:before{content:"\F0D7"}.fa-caret-up:before{content:"\F0D8"}.fa-caret-left:before{content:"\F0D9"}.fa-caret-right:before{content:"\F0DA"}.fa-columns:before{content:"\F0DB"}.fa-unsorted:before,.fa-sort:before{content:"\F0DC"}.fa-sort-down:before,.fa-sort-desc:before{content:"\F0DD"}.fa-sort-up:before,.fa-sort-asc:before{content:"\F0DE"}.fa-envelope:before{content:"\F0E0"}.fa-linkedin:before{content:"\F0E1"}.fa-rotate-left:before,.fa-undo:before{content:"\F0E2"}.fa-legal:before,.fa-gavel:before{content:"\F0E3"}.fa-dashboard:before,.fa-tachometer:before{content:"\F0E4"}.fa-comment-o:before{content:"\F0E5"}.fa-comments-o:before{content:"\F0E6"}.fa-flash:before,.fa-bolt:before{content:"\F0E7"}.fa-sitemap:before{content:"\F0E8"}.fa-umbrella:before{content:"\F0E9"}.fa-paste:before,.fa-clipboard:before{content:"\F0EA"}.fa-lightbulb-o:before{content:"\F0EB"}.fa-exchange:before{content:"\F0EC"}.fa-cloud-download:before{content:"\F0ED"}.fa-cloud-upload:before{content:"\F0EE"}.fa-user-md:before{content:"\F0F0"}.fa-stethoscope:before{content:"\F0F1"}.fa-suitcase:before{content:"\F0F2"}.fa-bell-o:before{content:"\F0A2"}.fa-coffee:before{content:"\F0F4"}.fa-cutlery:before{content:"\F0F5"}.fa-file-text-o:before{content:"\F0F6"}.fa-building-o:before{content:"\F0F7"}.fa-hospital-o:before{content:"\F0F8"}.fa-ambulance:before{content:"\F0F9"}.fa-medkit:before{content:"\F0FA"}.fa-fighter-jet:before{content:"\F0FB"}.fa-beer:before{content:"\F0FC"}.fa-h-square:before{content:"\F0FD"}.fa-plus-square:before{content:"\F0FE"}.fa-angle-double-left:before{content:"\F100"}.fa-angle-double-right:before{content:"\F101"}.fa-angle-double-up:before{content:"\F102"}.fa-angle-double-down:before{content:"\F103"}.fa-angle-left:before{content:"\F104"}.fa-angle-right:before{content:"\F105"}.fa-angle-up:before{content:"\F106"}.fa-angle-down:before{content:"\F107"}.fa-desktop:before{content:"\F108"}.fa-laptop:before{content:"\F109"}.fa-tablet:before{content:"\F10A"}.fa-mobile-phone:before,.fa-mobile:before{content:"\F10B"}.fa-circle-o:before{content:"\F10C"}.fa-quote-left:before{content:"\F10D"}.fa-quote-right:before{content:"\F10E"}.fa-spinner:before{content:"\F110"}.fa-circle:before{content:"\F111"}.fa-mail-reply:before,.fa-reply:before{content:"\F112"}.fa-github-alt:before{content:"\F113"}.fa-folder-o:before{content:"\F114"}.fa-folder-open-o:before{content:"\F115"}.fa-smile-o:before{content:"\F118"}.fa-frown-o:before{content:"\F119"}.fa-meh-o:before{content:"\F11A"}.fa-gamepad:before{content:"\F11B"}.fa-keyboard-o:before{content:"\F11C"}.fa-flag-o:before{content:"\F11D"}.fa-flag-checkered:before{content:"\F11E"}.fa-terminal:before{content:"\F120"}.fa-code:before{content:"\F121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\F122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\F123"}.fa-location-arrow:before{content:"\F124"}.fa-crop:before{content:"\F125"}.fa-code-fork:before{content:"\F126"}.fa-unlink:before,.fa-chain-broken:before{content:"\F127"}.fa-question:before{content:"\F128"}.fa-info:before{content:"\F129"}.fa-exclamation:before{content:"\F12A"}.fa-superscript:before{content:"\F12B"}.fa-subscript:before{content:"\F12C"}.fa-eraser:before{content:"\F12D"}.fa-puzzle-piece:before{content:"\F12E"}.fa-microphone:before{content:"\F130"}.fa-microphone-slash:before{content:"\F131"}.fa-shield:before{content:"\F132"}.fa-calendar-o:before{content:"\F133"}.fa-fire-extinguisher:before{content:"\F134"}.fa-rocket:before{content:"\F135"}.fa-maxcdn:before{content:"\F136"}.fa-chevron-circle-left:before{content:"\F137"}.fa-chevron-circle-right:before{content:"\F138"}.fa-chevron-circle-up:before{content:"\F139"}.fa-chevron-circle-down:before{content:"\F13A"}.fa-html5:before{content:"\F13B"}.fa-css3:before{content:"\F13C"}.fa-anchor:before{content:"\F13D"}.fa-unlock-alt:before{content:"\F13E"}.fa-bullseye:before{content:"\F140"}.fa-ellipsis-h:before{content:"\F141"}.fa-ellipsis-v:before{content:"\F142"}.fa-rss-square:before{content:"\F143"}.fa-play-circle:before{content:"\F144"}.fa-ticket:before{content:"\F145"}.fa-minus-square:before{content:"\F146"}.fa-minus-square-o:before{content:"\F147"}.fa-level-up:before{content:"\F148"}.fa-level-down:before{content:"\F149"}.fa-check-square:before{content:"\F14A"}.fa-pencil-square:before{content:"\F14B"}.fa-external-link-square:before{content:"\F14C"}.fa-share-square:before{content:"\F14D"}.fa-compass:before{content:"\F14E"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\F150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\F151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\F152"}.fa-euro:before,.fa-eur:before{content:"\F153"}.fa-gbp:before{content:"\F154"}.fa-dollar:before,.fa-usd:before{content:"\F155"}.fa-rupee:before,.fa-inr:before{content:"\F156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\F157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\F158"}.fa-won:before,.fa-krw:before{content:"\F159"}.fa-bitcoin:before,.fa-btc:before{content:"\F15A"}.fa-file:before{content:"\F15B"}.fa-file-text:before{content:"\F15C"}.fa-sort-alpha-asc:before{content:"\F15D"}.fa-sort-alpha-desc:before{content:"\F15E"}.fa-sort-amount-asc:before{content:"\F160"}.fa-sort-amount-desc:before{content:"\F161"}.fa-sort-numeric-asc:before{content:"\F162"}.fa-sort-numeric-desc:before{content:"\F163"}.fa-thumbs-up:before{content:"\F164"}.fa-thumbs-down:before{content:"\F165"}.fa-youtube-square:before{content:"\F166"}.fa-youtube:before{content:"\F167"}.fa-xing:before{content:"\F168"}.fa-xing-square:before{content:"\F169"}.fa-youtube-play:before{content:"\F16A"}.fa-dropbox:before{content:"\F16B"}.fa-stack-overflow:before{content:"\F16C"}.fa-instagram:before{content:"\F16D"}.fa-flickr:before{content:"\F16E"}.fa-adn:before{content:"\F170"}.fa-bitbucket:before{content:"\F171"}.fa-bitbucket-square:before{content:"\F172"}.fa-tumblr:before{content:"\F173"}.fa-tumblr-square:before{content:"\F174"}.fa-long-arrow-down:before{content:"\F175"}.fa-long-arrow-up:before{content:"\F176"}.fa-long-arrow-left:before{content:"\F177"}.fa-long-arrow-right:before{content:"\F178"}.fa-apple:before{content:"\F179"}.fa-windows:before{content:"\F17A"}.fa-android:before{content:"\F17B"}.fa-linux:before{content:"\F17C"}.fa-dribbble:before{content:"\F17D"}.fa-skype:before{content:"\F17E"}.fa-foursquare:before{content:"\F180"}.fa-trello:before{content:"\F181"}.fa-female:before{content:"\F182"}.fa-male:before{content:"\F183"}.fa-gittip:before,.fa-gratipay:before{content:"\F184"}.fa-sun-o:before{content:"\F185"}.fa-moon-o:before{content:"\F186"}.fa-archive:before{content:"\F187"}.fa-bug:before{content:"\F188"}.fa-vk:before{content:"\F189"}.fa-weibo:before{content:"\F18A"}.fa-renren:before{content:"\F18B"}.fa-pagelines:before{content:"\F18C"}.fa-stack-exchange:before{content:"\F18D"}.fa-arrow-circle-o-right:before{content:"\F18E"}.fa-arrow-circle-o-left:before{content:"\F190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\F191"}.fa-dot-circle-o:before{content:"\F192"}.fa-wheelchair:before{content:"\F193"}.fa-vimeo-square:before{content:"\F194"}.fa-turkish-lira:before,.fa-try:before{content:"\F195"}.fa-plus-square-o:before{content:"\F196"}.fa-space-shuttle:before{content:"\F197"}.fa-slack:before{content:"\F198"}.fa-envelope-square:before{content:"\F199"}.fa-wordpress:before{content:"\F19A"}.fa-openid:before{content:"\F19B"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\F19C"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\F19D"}.fa-yahoo:before{content:"\F19E"}.fa-google:before{content:"\F1A0"}.fa-reddit:before{content:"\F1A1"}.fa-reddit-square:before{content:"\F1A2"}.fa-stumbleupon-circle:before{content:"\F1A3"}.fa-stumbleupon:before{content:"\F1A4"}.fa-delicious:before{content:"\F1A5"}.fa-digg:before{content:"\F1A6"}.fa-pied-piper:before{content:"\F1A7"}.fa-pied-piper-alt:before{content:"\F1A8"}.fa-drupal:before{content:"\F1A9"}.fa-joomla:before{content:"\F1AA"}.fa-language:before{content:"\F1AB"}.fa-fax:before{content:"\F1AC"}.fa-building:before{content:"\F1AD"}.fa-child:before{content:"\F1AE"}.fa-paw:before{content:"\F1B0"}.fa-spoon:before{content:"\F1B1"}.fa-cube:before{content:"\F1B2"}.fa-cubes:before{content:"\F1B3"}.fa-behance:before{content:"\F1B4"}.fa-behance-square:before{content:"\F1B5"}.fa-steam:before{content:"\F1B6"}.fa-steam-square:before{content:"\F1B7"}.fa-recycle:before{content:"\F1B8"}.fa-automobile:before,.fa-car:before{content:"\F1B9"}.fa-cab:before,.fa-taxi:before{content:"\F1BA"}.fa-tree:before{content:"\F1BB"}.fa-spotify:before{content:"\F1BC"}.fa-deviantart:before{content:"\F1BD"}.fa-soundcloud:before{content:"\F1BE"}.fa-database:before{content:"\F1C0"}.fa-file-pdf-o:before{content:"\F1C1"}.fa-file-word-o:before{content:"\F1C2"}.fa-file-excel-o:before{content:"\F1C3"}.fa-file-powerpoint-o:before{content:"\F1C4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\F1C5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\F1C6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\F1C7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\F1C8"}.fa-file-code-o:before{content:"\F1C9"}.fa-vine:before{content:"\F1CA"}.fa-codepen:before{content:"\F1CB"}.fa-jsfiddle:before{content:"\F1CC"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\F1CD"}.fa-circle-o-notch:before{content:"\F1CE"}.fa-ra:before,.fa-rebel:before{content:"\F1D0"}.fa-ge:before,.fa-empire:before{content:"\F1D1"}.fa-git-square:before{content:"\F1D2"}.fa-git:before{content:"\F1D3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\F1D4"}.fa-tencent-weibo:before{content:"\F1D5"}.fa-qq:before{content:"\F1D6"}.fa-wechat:before,.fa-weixin:before{content:"\F1D7"}.fa-send:before,.fa-paper-plane:before{content:"\F1D8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\F1D9"}.fa-history:before{content:"\F1DA"}.fa-circle-thin:before{content:"\F1DB"}.fa-header:before{content:"\F1DC"}.fa-paragraph:before{content:"\F1DD"}.fa-sliders:before{content:"\F1DE"}.fa-share-alt:before{content:"\F1E0"}.fa-share-alt-square:before{content:"\F1E1"}.fa-bomb:before{content:"\F1E2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\F1E3"}.fa-tty:before{content:"\F1E4"}.fa-binoculars:before{content:"\F1E5"}.fa-plug:before{content:"\F1E6"}.fa-slideshare:before{content:"\F1E7"}.fa-twitch:before{content:"\F1E8"}.fa-yelp:before{content:"\F1E9"}.fa-newspaper-o:before{content:"\F1EA"}.fa-wifi:before{content:"\F1EB"}.fa-calculator:before{content:"\F1EC"}.fa-paypal:before{content:"\F1ED"}.fa-google-wallet:before{content:"\F1EE"}.fa-cc-visa:before{content:"\F1F0"}.fa-cc-mastercard:before{content:"\F1F1"}.fa-cc-discover:before{content:"\F1F2"}.fa-cc-amex:before{content:"\F1F3"}.fa-cc-paypal:before{content:"\F1F4"}.fa-cc-stripe:before{content:"\F1F5"}.fa-bell-slash:before{content:"\F1F6"}.fa-bell-slash-o:before{content:"\F1F7"}.fa-trash:before{content:"\F1F8"}.fa-copyright:before{content:"\F1F9"}.fa-at:before{content:"\F1FA"}.fa-eyedropper:before{content:"\F1FB"}.fa-paint-brush:before{content:"\F1FC"}.fa-birthday-cake:before{content:"\F1FD"}.fa-area-chart:before{content:"\F1FE"}.fa-pie-chart:before{content:"\F200"}.fa-line-chart:before{content:"\F201"}.fa-lastfm:before{content:"\F202"}.fa-lastfm-square:before{content:"\F203"}.fa-toggle-off:before{content:"\F204"}.fa-toggle-on:before{content:"\F205"}.fa-bicycle:before{content:"\F206"}.fa-bus:before{content:"\F207"}.fa-ioxhost:before{content:"\F208"}.fa-angellist:before{content:"\F209"}.fa-cc:before{content:"\F20A"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\F20B"}.fa-meanpath:before{content:"\F20C"}.fa-buysellads:before{content:"\F20D"}.fa-connectdevelop:before{content:"\F20E"}.fa-dashcube:before{content:"\F210"}.fa-forumbee:before{content:"\F211"}.fa-leanpub:before{content:"\F212"}.fa-sellsy:before{content:"\F213"}.fa-shirtsinbulk:before{content:"\F214"}.fa-simplybuilt:before{content:"\F215"}.fa-skyatlas:before{content:"\F216"}.fa-cart-plus:before{content:"\F217"}.fa-cart-arrow-down:before{content:"\F218"}.fa-diamond:before{content:"\F219"}.fa-ship:before{content:"\F21A"}.fa-user-secret:before{content:"\F21B"}.fa-motorcycle:before{content:"\F21C"}.fa-street-view:before{content:"\F21D"}.fa-heartbeat:before{content:"\F21E"}.fa-venus:before{content:"\F221"}.fa-mars:before{content:"\F222"}.fa-mercury:before{content:"\F223"}.fa-intersex:before,.fa-transgender:before{content:"\F224"}.fa-transgender-alt:before{content:"\F225"}.fa-venus-double:before{content:"\F226"}.fa-mars-double:before{content:"\F227"}.fa-venus-mars:before{content:"\F228"}.fa-mars-stroke:before{content:"\F229"}.fa-mars-stroke-v:before{content:"\F22A"}.fa-mars-stroke-h:before{content:"\F22B"}.fa-neuter:before{content:"\F22C"}.fa-genderless:before{content:"\F22D"}.fa-facebook-official:before{content:"\F230"}.fa-pinterest-p:before{content:"\F231"}.fa-whatsapp:before{content:"\F232"}.fa-server:before{content:"\F233"}.fa-user-plus:before{content:"\F234"}.fa-user-times:before{content:"\F235"}.fa-hotel:before,.fa-bed:before{content:"\F236"}.fa-viacoin:before{content:"\F237"}.fa-train:before{content:"\F238"}.fa-subway:before{content:"\F239"}.fa-medium:before{content:"\F23A"}.fa-yc:before,.fa-y-combinator:before{content:"\F23B"}.fa-optin-monster:before{content:"\F23C"}.fa-opencart:before{content:"\F23D"}.fa-expeditedssl:before{content:"\F23E"}.fa-battery-4:before,.fa-battery-full:before{content:"\F240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\F241"}.fa-battery-2:before,.fa-battery-half:before{content:"\F242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\F243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\F244"}.fa-mouse-pointer:before{content:"\F245"}.fa-i-cursor:before{content:"\F246"}.fa-object-group:before{content:"\F247"}.fa-object-ungroup:before{content:"\F248"}.fa-sticky-note:before{content:"\F249"}.fa-sticky-note-o:before{content:"\F24A"}.fa-cc-jcb:before{content:"\F24B"}.fa-cc-diners-club:before{content:"\F24C"}.fa-clone:before{content:"\F24D"}.fa-balance-scale:before{content:"\F24E"}.fa-hourglass-o:before{content:"\F250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\F251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\F252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\F253"}.fa-hourglass:before{content:"\F254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\F255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\F256"}.fa-hand-scissors-o:before{content:"\F257"}.fa-hand-lizard-o:before{content:"\F258"}.fa-hand-spock-o:before{content:"\F259"}.fa-hand-pointer-o:before{content:"\F25A"}.fa-hand-peace-o:before{content:"\F25B"}.fa-trademark:before{content:"\F25C"}.fa-registered:before{content:"\F25D"}.fa-creative-commons:before{content:"\F25E"}.fa-gg:before{content:"\F260"}.fa-gg-circle:before{content:"\F261"}.fa-tripadvisor:before{content:"\F262"}.fa-odnoklassniki:before{content:"\F263"}.fa-odnoklassniki-square:before{content:"\F264"}.fa-get-pocket:before{content:"\F265"}.fa-wikipedia-w:before{content:"\F266"}.fa-safari:before{content:"\F267"}.fa-chrome:before{content:"\F268"}.fa-firefox:before{content:"\F269"}.fa-opera:before{content:"\F26A"}.fa-internet-explorer:before{content:"\F26B"}.fa-tv:before,.fa-television:before{content:"\F26C"}.fa-contao:before{content:"\F26D"}.fa-500px:before{content:"\F26E"}.fa-amazon:before{content:"\F270"}.fa-calendar-plus-o:before{content:"\F271"}.fa-calendar-minus-o:before{content:"\F272"}.fa-calendar-times-o:before{content:"\F273"}.fa-calendar-check-o:before{content:"\F274"}.fa-industry:before{content:"\F275"}.fa-map-pin:before{content:"\F276"}.fa-map-signs:before{content:"\F277"}.fa-map-o:before{content:"\F278"}.fa-map:before{content:"\F279"}.fa-commenting:before{content:"\F27A"}.fa-commenting-o:before{content:"\F27B"}.fa-houzz:before{content:"\F27C"}.fa-vimeo:before{content:"\F27D"}.fa-black-tie:before{content:"\F27E"}.fa-fonticons:before{content:"\F280"}

/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=87f7e9f7ee3062cd9149)
 * Config saved to config.json and https://gist.github.com/87f7e9f7ee3062cd9149
 */
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
.dropup,
.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: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -webkit-background-clip: padding-box;
          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.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}
.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.42857143;
  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 dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}

.clearfix:before,
.clearfix:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.clearfix:after,
.modal-footer: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;
}
.affix {
  position: fixed;
}

@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/*!
 * Datepicker for Bootstrap v1.5.0 (https://github.com/eternicode/bootstrap-datepicker)
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */
.datepicker {
  padding: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  direction: ltr;
}
.datepicker-inline {
  width: 220px;
}
.datepicker.datepicker-rtl {
  direction: rtl;
}
.datepicker.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999999;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999999;
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}
.datepicker > div {
  display: none;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td.highlighted {
  background: #d9edf7;
  border-radius: 0;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: -moz-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -ms-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
  background-image: -webkit-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069 \9;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: #f3d17a;
  background-image: -moz-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -ms-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3c17a), to(#f3e97a));
  background-image: -webkit-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -o-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  background-color: #f3e97a;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active {
  background-color: #efe24b \9;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: #9e9e9e;
  background-image: -moz-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -ms-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b3b3b3), to(#808080));
  background-image: -webkit-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -o-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: linear-gradient(to bottom, #b3b3b3, #808080);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: #808080 #808080 #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: #808080;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active {
  background-color: #666666 \9;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(to bottom, #0088cc, #0044cc);
  background-image: -ms-linear-gradient(to bottom, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(to bottom, #0088cc, #0044cc);
  background-image: -o-linear-gradient(to bottom, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.datepicker table tr td span:hover {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(to bottom, #0088cc, #0044cc);
  background-image: -ms-linear-gradient(to bottom, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(to bottom, #0088cc, #0044cc);
  background-image: -o-linear-gradient(to bottom, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}
.datepicker .datepicker-switch {
  width: 145px;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.input-append.date .add-on,
.input-prepend.date .add-on {
  cursor: pointer;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i {
  margin-top: 3px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 20px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}
.datepicker.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  color: #333333;
  font-size: 13px;
  line-height: 20px;
}
.datepicker.dropdown-menu th,
.datepicker.datepicker-inline th,
.datepicker.dropdown-menu td,
.datepicker.datepicker-inline td {
  padding: 4px 5px;
}
/*!
 * Timepicker Component for Twitter Bootstrap
 *
 * Copyright 2013 Joris de Wit
 *
 * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
.bootstrap-timepicker {
  position: relative;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
  left: auto;
  right: 0;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
  left: auto;
  right: 12px;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
  left: auto;
  right: 13px;
}
.bootstrap-timepicker .input-group-addon {
  cursor: pointer;
}
.bootstrap-timepicker .input-group-addon i {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.bootstrap-timepicker-widget.dropdown-menu {
  padding: 4px;
}
.bootstrap-timepicker-widget.dropdown-menu.open {
  display: inline-block;
}
.bootstrap-timepicker-widget.dropdown-menu:before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
}
.bootstrap-timepicker-widget.dropdown-menu:after {
  border-bottom: 6px solid #FFFFFF;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
}
.bootstrap-timepicker-widget.timepicker-orient-left:before {
  left: 6px;
}
.bootstrap-timepicker-widget.timepicker-orient-left:after {
  left: 7px;
}
.bootstrap-timepicker-widget.timepicker-orient-right:before {
  right: 6px;
}
.bootstrap-timepicker-widget.timepicker-orient-right:after {
  right: 7px;
}
.bootstrap-timepicker-widget.timepicker-orient-top:before {
  top: -7px;
}
.bootstrap-timepicker-widget.timepicker-orient-top:after {
  top: -6px;
}
.bootstrap-timepicker-widget.timepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.bootstrap-timepicker-widget.timepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}
.bootstrap-timepicker-widget a.btn,
.bootstrap-timepicker-widget input {
  border-radius: 4px;
}
.bootstrap-timepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-timepicker-widget table td {
  text-align: center;
  height: 30px;
  margin: 0;
  padding: 2px;
}
.bootstrap-timepicker-widget table td:not(.separator) {
  min-width: 30px;
}
.bootstrap-timepicker-widget table td span {
  width: 100%;
}
.bootstrap-timepicker-widget table td a {
  border: 1px transparent solid;
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 8px 0;
  outline: 0;
  color: #333;
}
.bootstrap-timepicker-widget table td a:hover {
  text-decoration: none;
  background-color: #eee;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-color: #ddd;
}
.bootstrap-timepicker-widget table td a i {
  margin-top: 2px;
  font-size: 18px;
}
.bootstrap-timepicker-widget table td input {
  width: 25px;
  margin: 0;
  text-align: center;
}
.bootstrap-timepicker-widget .modal-content {
  padding: 4px;
}
@media (min-width: 767px) {
  .bootstrap-timepicker-widget.modal {
    width: 200px;
    margin-left: -100px;
  }
}
@media (max-width: 767px) {
  .bootstrap-timepicker {
    width: 100%;
  }
  .bootstrap-timepicker .dropdown-menu {
    width: 100%;
  }
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
strong {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  text-decoration: none;
  vertical-align: baseline;
}
:focus,
:active {
  outline: 0;
}
ol,
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
a {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:hover {
  opacity: 1;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(255,255,255,0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.no-call-out {
  -webkit-touch-callout: none;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
input[type=text],
input[type=email],
input[type=password] {
  -webkit-appearance: none;
  border-radius: 0;
}
input[type="checkbox"] {
  width: auto;
  display: none;
}
input[type="checkbox"] + label {
  margin-right: 20px;
  display: block;
  margin-bottom: 20px;
  text-align: left;
  font-weight: normal;
  width: auto;
  padding: 0;
  font-weight: normal;
  position: relative;
  padding-left: 40px !important;
  line-height: 26px;
}
input[type="checkbox"] + label:before {
  content: '';
  font-family: 'FontAwesome';
  line-height: 24px;
  text-align: center;
  display: inline-block;
  height: 24px;
  width: 24px;
  border: 1px solid #a9aaad;
  vertical-align: middle;
  margin-right: 10px;
  cursor: pointer;
  position: absolute;
  left: 0;
}
input[type="checkbox"]:checked + label:before {
  content: '\F00C';
}
input[type="checkbox"].checkbox--inline + label {
  display: inline-block;
}
dl {
  font-size: 0;
}
dt,
dd {
  font-size: 16px;
  line-height: 1.6;
  vertical-align: top;
}
dt {
  font-weight: 500;
}
dt:after {
  content: ":";
  display: inline-block;
}
dd {
  color: #54565b;
  margin-bottom: 0.7em;
}
dt:empty:after,
dd:empty:after {
  content: "\A0";
}
.button--comms {
  min-width: 320px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .button--comms {
    min-width: 0;
    display: block;
    width: 100%;
  }
}
div.compat-results {
  border-bottom: 2px solid #eee;
}
div.compat-results div.loading {
  margin-top: 24px;
  margin-bottom: 24px;
}
div.compat-results p.result {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  color: #54565b;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.6;
}
div.compat-results i {
  margin-right: 10px;
  margin-left: -15px;
}
div.compat-results i.good {
  color: #1a1;
}
div.compat-results i.bad {
  color: #f44;
}
div.compat-results i.warn {
  color: #ffa500;
}
.crash-portal-info-box {
  padding-right: 30px;
  width: 100%;
}
.crash-portal-info-box--half {
  width: 50%;
}
.crash-portal-info-box--third {
  width: 33.33332%;
  min-width: 300px;
}
.crash-portal-info-box:last-child {
  padding-right: 0;
}
.crash-portal-info-box:first-child {
  padding-right: 30px;
}
.crash-portal-info-box h2 {
  line-height: 1.2em !important;
}
.crash-portal-info-box strong {
  padding-bottom: 5px;
  display: block;
}
.crash-dof-container {
  min-width: 250px;
  width: 250px;
  min-height: 250px;
  height: 250px;
  background-image: url("/images/car-top-down.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70px auto;
}
.crash-dof-container .crash-dof {
  width: 100%;
  height: 100%;
  border: 7px solid #777;
  border-radius: 500px;
  background-image: url("/images/angle-of-impact-arrow.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 17px auto;
}
.crash-portal-map {
  height: 100%;
  width: 100%;
}
.crash-portal-graph-container {
  width: 100%;
}
.crash-portal-graph {
  margin-bottom: 45px;
}
.crash-portal-graph:last-child {
  margin-bottom: 0;
}
.loader {
  font-size: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  z-index: 999998;
  text-indent: -9999em;
  border: 1.1em solid rgba(226,35,26,0.2);
  border-top: 1.1em solid #e2231a;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: loader 2s infinite ease-in-out;
          animation: loader 2s infinite ease-in-out;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.map {
  width: 100%;
  height: 756px;
  max-height: 50vh;
}
.map-data {
  width: 225px;
  max-width: 100%;
  font-size: 0;
  font-family: Roboto, Arial;
  color: #54565b;
  line-height: 1.5;
  margin-top: 20px;
  margin-right: -20px;
}
.map-data > * {
  font-size: 14px;
}
.map-data dt {
  font-weight: 500;
}
.map-data dd {
  text-align: right;
}
.map-data dt,
.map-data dd {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}
.map-data--standalone {
  width: auto;
  background: #fff;
  border: 1px solid #e0e0e2;
  border-left-width: 0;
  margin: 0;
  padding: 5px 10px;
  position: absolute;
}
.map-data--standalone:before {
  position: absolute;
  top: 50%;
  right: 100%;
  z-index: -1;
  -webkit-transform: translateY(-50%) translateX(15px) rotate(-45deg);
          transform: translateY(-50%) translateX(15px) rotate(-45deg);
  background: #fff;
  border: 1px solid #e0e0e2;
  content: '';
  display: inline-block;
  height: 20px;
  width: 20px;
}
.map-data--standalone:after {
  position: absolute;
  top: 0;
  right: 100%;
  z-index: -2;
  border-left: 1px solid #e0e0e2;
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
}
.map-data--standalone .map-data__inner {
  font-size: 0;
  margin-bottom: -3px;
}
.map-data--standalone .map-data__inner > * {
  font-size: 13px;
  margin-bottom: 3px;
}
.map-data--standalone dt {
  display: none;
}
.map-data--standalone dd {
  width: 100%;
  text-align: left;
  display: block;
}
.member-details {
  font-size: 0;
}
.member-details dl {
  width: 50%;
  display: inline-block;
  vertical-align: text-top;
  margin-bottom: 20px;
}
.vehicle-details {
  border-top: 1px solid #e0e0e2;
  padding-top: 20px;
}
.member-header {
  display: inline-block;
  margin-bottom: 20px;
}
.member-header h2 {
  font-size: 24px;
}
.member-header h4 {
  font-size: 18px;
}
.member-header h2,
.member-header h4 {
  line-height: 1.5 !important;
  color: #54565b;
}
@media screen and (max-width: 600px) {
  .member-header h2,
  .member-header h4 {
    text-align: center;
  }
}
.stripe-button-el {
  background: #e2231a !important;
  border: 1px solid #b51c15 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.stripe-button-el span {
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding: 0 30px !important;
}
.stripe-button-el:hover {
  background: #cb1f17 !important;
}
.table-container,
.container {
  padding: 0 35px 30px;
}
.table-container.no-margin,
.container.no-margin {
  padding: 0;
}
.table-container h3.form-heading,
.container h3.form-heading {
  max-width: 505px;
  padding-top: 0;
  margin-top: 0;
}
.table-container .wrapper,
.container .wrapper {
  border: 1px solid #e0e0e2;
  padding: 30px 35px 0;
}
table {
  width: 100%;
  color: #555559;
  border-collapse: collapse;
  border: 1px solid #e0e0e2;
}
table thead,
table tfoot {
  background: #eee;
}
table tfoot {
  display: none;
}
table tr {
  border: 1px solid #e0e0e2;
}
table tr:nth-of-type(even) {
  background: #f9f9fa;
}
table tr.row--success {
  background: #dff0d8;
}
table td {
  padding: 10px;
  line-height: 24px;
}
table td a {
  padding-right: 10px;
}
table tbody th {
  border-right: 1px solid #e0e0e2;
  background: #eee;
}
.listing-container {
  position: relative;
  margin-top: 40px;
  clear: both;
  font-size: 0.9375em;
}
.listing-container table td {
  white-space: nowrap;
  vertical-align: middle;
}
.listing-container table tbody td.wrap-cell {
  white-space: normal;
}
.listing-container thead a {
  color: #555559;
  -webkit-font-smoothing: antialiased;
}
.listing-container thead a:after {
  content: '\F0DC';
  font-family: 'FontAwesome';
  padding-left: 10px;
  font-size: 0.9em;
}
.listing-container .current-sort {
  font-weight: 600;
}
.listing-container .current-sort--asc:after {
  content: '\F0DE';
}
.listing-container .current-sort--desc:after {
  content: '\F0DD';
}
.listing-container__inner {
  overflow-y: auto;
}
.listing__action {
  padding-right: 20px;
}
.listing__action:last-child {
  padding-right: 0;
}
.listing__action--stack {
  display: block;
  padding-right: 0;
}
.listing__action--stack:last-child {
  margin-bottom: 0;
}
.listing-pagination {
  line-height: 1.5;
  margin-top: 20px;
  text-align: center;
}
.listing-pagination > * {
  display: inline-block;
}
.listing-pagination__list {
  text-align: center;
}
.listing-pagination__list-item {
  display: inline-block;
  margin-left: 10px;
}
.listing-pagination__list-item--current a {
  cursor: default;
  color: #54565b;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}
div.table-no-rows {
  text-align: center;
  color: #54565b;
  background: #f9f9fa;
  border: 1px solid #e0e0e2;
  padding: 30px 20px;
  clear: both;
}
div.table-no-rows p {
  margin: 30px !important;
}
.theft__cols,
.theft-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  *zoom: 1;
}
.theft__cols:before,
.theft-footer:before,
.theft__cols:after,
.theft-footer:after {
  content: '';
  display: table;
}
.theft__cols:after,
.theft-footer:after {
  clear: both;
}
div.content div.main-content .theft__headers {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
div.content div.main-content .theft__headers h2 {
  margin-bottom: 0;
}
div.content div.main-content .theft__headers p {
  margin-top: 0;
  margin-bottom: 25px;
}
.theft__actions {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.trip-viewer__data {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.theft-footer__actions {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
  padding-top: 30px;
}
@media screen and (max-width: 1050px) {
  .theft-footer {
    display: block;
  }
  .theft-footer__actions {
    text-align: left;
  }
}
@media screen and (max-width: 980px) {
  .theft__cols {
    display: block;
  }
}
.trip-viewer__title {
  margin-top: 30px;
  font-size: 24px;
  color: #54565b;
  display: inline-block;
}
.viewer-grid {
  clear: both;
  font-size: 0;
  margin-right: -40px;
}
.viewer-grid__col {
  padding-right: 40px;
  display: inline-block;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
}
.viewer-grid__col.map-col {
  width: 100%;
  padding: 0;
}
@media screen and (max-width: 999px) {
  .viewer-grid__col.search-col,
  .viewer-grid__col.map-col {
    width: 100%;
  }
}
div.content .search-col p.error {
  text-align: center;
  margin-bottom: 30px;
}
div.content .search-col form div.form-body,
div.content .search-col form div.form-body .wide {
  padding: 0;
}
div.content .search-col form div.form-footer {
  padding-right: 0;
  padding-bottom: 0;
  text-align: right;
}
div.content .search-col form div.form-footer .button {
  margin-right: 0;
}
div.content .search-col form .form-field:first-child label {
  margin-top: 0;
}
.trip-viewer__map {
  height: 500px;
  color: #54565b;
  background: #f9f9fa;
  border: 1px solid #e0e0e2;
  position: relative;
}
.trip-viewer__map p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.trip-viewer__data {
  margin-top: 30px;
  overflow: hidden;
}
.trip-viewer__data h3 {
  font-size: 18px;
  color: #54565b;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0.75em;
}
.trip-viewer__data .trip-title {
  margin-bottom: 40px;
}
table.trip-viewer__data {
  max-width: 540px;
}
table.trip-viewer__data th,
table.trip-viewer__data td {
  width: 50%;
}
table.trip-viewer__data td {
  text-align: center;
}
.trips {
  margin: -45px 0;
}
.trips__trip {
  display: block;
  padding: 20px;
  border-bottom: 1px solid #e0e0e2;
  font-size: 0;
}
.trips__trip p {
  margin-top: 0 !important;
  line-height: 1.6;
}
.trip__icon,
.trip__details {
  display: inline-block;
  font-size: 16px;
  vertical-align: top;
}
.trip__icon {
  width: 60px;
}
.trip__icon span {
  display: inline-block;
  width: 90%;
  max-width: 40px;
  background: url("/images/map/icon.svg");
  *zoom: 1;
}
.trip__icon span:before,
.trip__icon span:after {
  content: '';
  display: table;
}
.trip__icon span:after {
  clear: both;
}
.trip__icon span:before {
  padding-top: 100%;
  float: left;
  content: '';
}
.trip--current .trip__icon span {
  background: url("/images/map/icon-selected.svg");
}
.trip__details {
  width: calc(100% - 60px);
}
.trip__details span {
  display: inline-block;
}
.member-info {
  margin-bottom: 30px;
  margin-top: -20px;
}
.trip-cols {
  font-size: 0;
  margin-right: -60px;
}
.trip-col {
  width: 33.333333333333336%;
  padding-right: 60px;
  display: inline-block;
  margin-bottom: 30px;
  vertical-align: top;
}
@media screen and (max-width: 600px) {
  .trip-col {
    width: 100%;
  }
}
.map-custom-container {
  margin: 10px;
  cursor: pointer;
}
.map-custom {
  direction: ltr;
  overflow: hidden;
  text-align: center;
  position: relative;
  color: #565656;
  font-family: Roboto, Arial, sans-serif;
  -webkit-user-select: none;
  font-size: 11px;
  padding: 8px;
  -webkit-box-shadow: rgba(0,0,0,0.298) 0px 1px 4px -1px;
          box-shadow: rgba(0,0,0,0.298) 0px 1px 4px -1px;
  background-color: #fff;
  background-clip: padding-box;
  display: inline-block;
}
.map-custom:not(.map-custom-current):hover {
  background-color: #ebebeb;
}
.map-custom-left {
  border-radius: 2px 0 0 2px;
  border-left-width: 0px;
}
.map-custom-right {
  border-radius: 0 2px 2px 0;
  border-right-width: 0px;
}
.map-custom-only {
  border-radius: 2px 2px 2px 2px;
}
.map-custom-current {
  font-weight: 500;
  color: #000;
}
.theft__title {
  margin-bottom: 30px;
}
.trip-viewer__search {
  background: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
          box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 0 45px;
  margin-top: 50px;
}
.trip-viewer__search .col.wide {
  padding: 0;
  max-width: 100% !important;
  font-size: 0;
}
.trip-viewer__search .form-body {
  padding-right: 0 !important;
}
.trip-viewer__search .form-field,
.trip-viewer__search .form-footer {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: bottom;
}
.trip-viewer__search .form-field {
  width: 37.5%;
  padding-right: 30px !important;
}
.trip-viewer__search .form-footer {
  width: 25%;
  padding-top: 0 !important;
  padding-right: 0 !important;
  text-align: right;
}
.trip-viewer__search .form-footer button {
  margin-right: 0 !important;
}
@media screen and (max-width: 900px) {
  .trip-viewer__search .form-footer,
  .trip-viewer__search .form-field {
    width: 100%;
    padding-right: 0 !important;
  }
}
.trips__sidebar {
  background: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
          box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-top: 30px !important;
}
.trips__sidebar+.main-content {
  margin-top: 30px !important;
}
.trips__sidebar p {
  color: #54565b;
}
.trips__sidebar .error,
.trips__sidebar .prompt {
  max-width: 350px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 900px) {
  .trips__sidebar,
  .trips__content {
    display: block !important;
    width: 100% !important;
    float: none !important;
  }
  .trips__sidebar {
    margin-bottom: 0px !important;
  }
}
.scroll-disabled,
.scroll-disabled:hover {
  color: #d3d3d3;
  cursor: default;
}
.scroll-next,
.scroll-prev {
  display: block;
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e2;
}
.scroll-next {
  margin-top: 45px;
  margin-bottom: -45px;
}
.scroll-next:before {
  content: '\F078';
  font-family: 'FontAwesome';
}
.scroll-prev {
  margin-top: -45px;
  margin-bottom: 45px;
}
.scroll-prev:before {
  content: '\F077';
  font-family: 'FontAwesome';
}
.trips-container {
  padding-bottom: 0;
  position: relative;
  background: #fff;
  padding-top: 20px;
  min-height: 40px;
}
.trips-bar {
  margin-bottom: 0;
  font-size: 0;
}
.trips-bar__info {
  display: inline-block;
  background: #fff;
  z-index: 4;
  padding: 10px;
  width: 250px;
}
.trips-bar__name,
.trips-bar__image {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.trips-bar__image {
  margin-right: 20px;
}
.trips-bar__bar {
  position: relative;
  width: 100%;
  width: calc(100% - 250px);
  display: inline-block;
  height: 14px;
  background: #e3e3e3;
  border: 1px solid #e6e6e6;
}
.trips-bar__info,
.trips-bar__bar {
  vertical-align: middle;
}
.trips-bar__trip,
.trips-container__hour,
.trips-container__time {
  display: block;
  position: absolute;
}
.trips-bar__trip {
  height: 100%;
  background: #e2231a;
}
.trips-container__hours {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(182,182,182,0.4);
  width: calc(100% - 250px);
  right: 0;
  margin-top: -20px;
}
.trips-container__hour {
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(182,182,182,0.4);
  z-index: 1;
  pointer-events: none;
}
.trips-container__hour:first-of-type {
  left: -1px !important;
}
.trips-container__time {
  padding: 5px;
  background: #fff;
  font-size: 13px;
  color: #54565b;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}
@media screen and (max-width: 840px) {
  .trips-container {
    padding-top: 30px;
    padding-bottom: 10px;
  }
  .trips-bar__info {
    position: relative;
    left: 1px;
  }
  .trips-bar__bar {
    display: block;
    width: 100%;
  }
  .trips-bar__info,
  .trips-bar__bar {
    margin-bottom: 10px;
  }
  .trips-container__hours {
    width: 100%;
    margin-top: -30px;
  }
}
.page-controls,
.group-controls {
  font-size: 0;
  vertical-align: middle;
  margin-right: 30px;
}
.page-controls.field,
.group-controls.field {
  width: auto;
  max-width: none;
}
.page-controls .select-replace,
.group-controls .select-replace {
  vertical-align: middle;
  display: inline-block;
  width: auto;
}
.page-controls .select-replace__value,
.group-controls .select-replace__value {
  border: none !important;
}
.page-controls .select-replace__value:after,
.group-controls .select-replace__value:after {
  opacity: 0.75 !important;
}
.page-controls label,
.group-controls label {
  font-size: 16px;
  padding-right: 20px;
  color: #54565b;
  vertical-align: middle;
}
.page-controls label:after,
.group-controls label:after {
  content: ' - ';
  position: relative;
  left: 20px;
}
.group-controls {
  margin-right: auto;
}
.control-wrapper {
  text-align: center;
  direction: rtl;
  padding: 15px;
  margin-bottom: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 35px;
  margin-right: 35px;
}
.control-wrapper > * {
  direction: ltr;
  margin-bottom: 10px;
}
.control-wrapper .control-wrapper__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.control-wrapper .actions {
  display: inline-block;
  text-align: inherit;
  float: none;
  padding-bottom: 0;
  vertical-align: middle;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.control-wrapper .actions .button {
  margin-bottom: 0;
}
.control-wrapper .loader {
  font-size: 4px;
  position: static;
  display: inline-block;
  left: 0;
  top: 0;
  margin: 0 0 0 20px;
  vertical-align: middle;
  visibility: hidden;
}
.block-center {
  margin-left: auto;
  margin-right: auto;
}
.add-padding {
  padding: 30px 35px;
}
.extra-v-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
.u-center {
  text-align: center;
}
div.content div.main-content.dashboard {
  padding-left: 0;
  padding-right: 0;
}
div.content div.main-content.dashboard .dashboard__header,
div.content div.main-content.dashboard .dashboard__container {
  padding: 30px 45px;
}
@media screen and (max-width: 900px) {
  div.content div.main-content.dashboard .dashboard__header,
  div.content div.main-content.dashboard .dashboard__container {
    padding-left: 5%;
    padding-right: 5%;
  }
}
div.content div.main-content.dashboard .dashboard__header {
  border-bottom: 1px solid #e1e1e1;
  padding-top: 0;
  padding-bottom: 12px;
}
div.content div.main-content.dashboard h2.large {
  color: #3a3d45;
  font-size: 26px;
  display: block;
}
div.content div.main-content.dashboard p.welcome {
  color: #8c8e95;
  font-size: 16px;
}
div.content div.main-content.dashboard h2.large,
div.content div.main-content.dashboard p.welcome {
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
  margin: 0 0 16px 0;
  padding-right: 25px;
}
@media screen and (max-width: 600px) {
  div.content div.main-content.dashboard h2.large,
  div.content div.main-content.dashboard p.welcome {
    display: block;
    text-align: center;
  }
}
div.content div.main-content.dashboard .dashboard__container {
  padding-bottom: 0;
  margin-right: -25px;
  margin-bottom: -25px;
  font-size: 0;
}
div.content div.main-content.dashboard .dashboard__container h3 {
  font-size: 20px;
  color: #969696;
  margin-bottom: 20px;
}
div.content div.main-content.dashboard .dashboard__table {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 25px;
  padding-bottom: 25px;
  font-size: 16px;
  width: 100%;
}
div.content div.main-content.dashboard .dashboard__table table {
  border-top-width: 4px;
}
div.content div.main-content.dashboard .dashboard__table table th,
div.content div.main-content.dashboard .dashboard__table table td {
  padding: 17px 20px;
  background: #fff;
  border-width: 0;
}
div.content div.main-content.dashboard .dashboard__table table th {
  text-align: left;
  color: #7e7e7e;
}
div.content div.main-content.dashboard .dashboard__table table td {
  text-align: right;
}
div.content div.main-content.dashboard .dashboard__table table.blue {
  border-top-color: #199ad6;
}
div.content div.main-content.dashboard .dashboard__table table.red {
  border-top-color: #db3f3f;
}
div.content div.main-content.dashboard .dashboard__table table.green {
  border-top-color: #7cbf55;
}
div.content div.main-content.dashboard .dashboard__table--half {
  width: 50%;
}
@media (max-width: 1024px) {
  div.content div.main-content.dashboard .dashboard__table--half {
    width: 100%;
  }
}
.datepicker table {
  border: none;
}
.datepicker table thead,
.datepicker table tr:nth-of-type(even) {
  background: #fff;
}
.datepicker table tr {
  border: none;
}
.datepicker table td {
  line-height: 20px;
}
.launch-screen {
  text-align: center;
  margin: 0 -1.5% -1.5% 0;
  padding: 110px 0;
  font-size: 0;
}
.launch-screen > * {
  font-size: 16px;
}
.launch-screen__block {
  display: inline-block;
  padding-right: 1.5%;
  margin-bottom: 1.5%;
  width: 33.333333333333336%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.launch-block {
  vertical-align: middle;
  color: #9b9b9c;
}
.launch-block,
.launch-block:hover {
  color: #9b9b9c;
}
.launch-block__inner {
  display: block;
  background: #fff;
  -webkit-transition: margin 0.25s ease-in-out, background 0.25s linear;
  transition: margin 0.25s ease-in-out, background 0.25s linear;
  position: relative;
  *zoom: 1;
}
.launch-block__inner:before,
.launch-block__inner:after {
  content: '';
  display: table;
}
.launch-block__inner:after {
  clear: both;
}
.launch-block__inner:before {
  content: '';
  padding-top: 56.25%;
  float: left;
}
.launch-block__inner:hover {
  margin: -2%;
  background: #424449;
}
.launch-block__content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.launch-block__title {
  font-size: 1.875rem;
  margin-bottom: 0.5em;
  color: #54565b;
}
.launch-block__inner:hover .launch-block__title {
  color: #feca08;
}
@media (max-width: 980px) {
  .launch-screen__block {
    width: 50%;
  }
  .launch-block__inner:hover {
    margin: -1%;
  }
}
@media (max-width: 540px) {
  .launch-screen__block {
    width: 100%;
  }
  .launch-block__inner:hover {
    margin: -0.5%;
  }
}
body {
  background: #444649;
  font-family: roboto, arial, verdana, sans-serif;
  min-width: 320px;
  position: relative;
  left: 0;
}
a {
  color: #e2231a;
}
a:hover {
  color: #cb1f17;
}
strong {
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}
.wrap {
  width: 100%;
  *zoom: 1;
  width: auto;
  max-width: 100%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  margin: 0 20px;
}
.wrap:before,
.wrap:after {
  content: '';
  display: table;
}
.wrap:after {
  clear: both;
}
@media (min-width: 1340px) {
  .wrap {
    *zoom: 1;
    width: auto;
    max-width: 1280px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .wrap:before,
  .wrap:after {
    content: '';
    display: table;
  }
  .wrap:after {
    clear: both;
  }
}
.wrap--wide,
.wrap--trips {
  *zoom: 1;
  width: auto;
  max-width: 90%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.wrap--wide:before,
.wrap--trips:before,
.wrap--wide:after,
.wrap--trips:after {
  content: '';
  display: table;
}
.wrap--wide:after,
.wrap--trips:after {
  clear: both;
}
.wrap--wide.crash-portal {
  display: block !important;
}
@media (min-width: 1150px) {
  .wrap--wide.crash-portal {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.wrap--full {
  max-width: none;
  margin: 0 20px;
}
@media (min-width: 1340px) {
  .wrap--trips {
    *zoom: 1;
    width: auto;
    max-width: 1360px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .wrap--trips:before,
  .wrap--trips:after {
    content: '';
    display: table;
  }
  .wrap--trips:after {
    clear: both;
  }
}
div.content .wrap--row .main-content {
  min-height: 0;
  margin-bottom: 0;
}
div.content .wrap--row .main-content:first-of-type {
  margin-top: 0;
  padding-top: 30px;
}
div.content .wrap--row .main-content .actions {
  padding-bottom: 0;
  margin-bottom: -10px;
}
div.loading {
  padding: 0;
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: url("/images/icons/loading.gif") center center no-repeat;
}
div.loading.with-margin {
  margin-top: 20px;
  margin-bottom: 20px;
}
header.global {
  background: #fff;
  font-size: 0;
}
@media screen and (max-width: 900px) {
  header.global .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 540px) {
  header.global {
    height: 100px;
  }
}
header.global h1.logo {
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 20px;
  font-weight: bold;
  z-index: 1;
  position: relative;
  *zoom: 1;
  vertical-align: middle;
}
header.global h1.logo:before,
header.global h1.logo:after {
  content: '';
  display: table;
}
header.global h1.logo:after {
  clear: both;
}
@media screen and (max-width: 900px) {
  header.global h1.logo {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    display: inline-block;
    width: 100%;
  }
}
@media (min-width: 540px) {
  header.global h1.logo {
    margin-top: 12px;
    font-size: 28px;
    width: 50%;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
header.global h1.logo a {
  margin: 0;
  padding-left: 120px;
  color: #54565b;
  display: inline-block;
  width: 200px;
  background-image: url("/images/logos/tracker.svg");
  background-repeat: no-repeat;
  background-position: center left;
  height: 49px;
}
@media (min-width: 540px) {
  header.global h1.logo a {
    width: auto;
  }
}
header.global h1.logo a span {
  padding-top: 28px;
  padding-left: 4px;
  letter-spacing: 3px;
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  vertical-align: bottom;
  color: #e2231a;
}
footer.global {
  background: #55565a;
}
footer.global p.left {
  text-align: center;
  color: #9b9b9c;
  font-weight: 700;
  font-size: 14px;
}
@media (min-width: 870px) {
  footer.global p.left {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 29.1875%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: left;
  }
  footer.global p.left:before,
  footer.global p.left:after {
    content: '';
    display: table;
  }
  footer.global p.left:after {
    clear: both;
  }
  footer.global p.left:last-child {
    margin-right: 0%;
  }
}
footer.global p.left strong {
  margin-bottom: 10px;
  font-size: 19px;
  color: #fff;
  font-weight: 300;
  display: block;
}
footer.global p.left a {
  margin-top: 30px;
  color: #fff;
  display: block;
  font-weight: 300;
  font-size: 16px;
}
footer.global ul.footer-links {
  padding: 0;
  margin: 40px 0 0 0;
  list-style: none;
}
@media (min-width: 870px) {
  footer.global ul.footer-links {
    margin: 0;
  }
}
footer.global ul.footer-links li {
  padding: 0;
  margin: 0;
  color: #9b9b9c;
  font-weight: 700;
  display: block;
  font-size: 15px;
  border-bottom: 1px solid #666;
  line-height: 50px;
}
@media (min-width: 870px) {
  footer.global ul.footer-links li {
    margin-bottom: 13px;
    border: 0;
    line-height: 18px;
  }
}
footer.global ul.footer-links li a {
  font-weight: 300;
  color: #fff;
  display: block;
}
footer.global ul.footer-links li a:hover {
  color: #ccc;
}
@media (min-width: 870px) {
  footer.global ul.footer-links li a {
    display: inline;
  }
}
footer.global ul.footer-links.col-one {
  text-align: center;
}
@media (min-width: 870px) {
  footer.global ul.footer-links.col-one {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 16.3125%;
    margin-left: 6.4375%;
    margin-right: 3%;
    text-align: left;
  }
  footer.global ul.footer-links.col-one:before,
  footer.global ul.footer-links.col-one:after {
    content: '';
    display: table;
  }
  footer.global ul.footer-links.col-one:after {
    clear: both;
  }
  footer.global ul.footer-links.col-one:last-child {
    margin-right: 0%;
  }
}
footer.global ul.footer-links.col-two {
  text-align: center;
}
@media (min-width: 870px) {
  footer.global ul.footer-links.col-two {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 16.3125%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: left;
  }
  footer.global ul.footer-links.col-two:before,
  footer.global ul.footer-links.col-two:after {
    content: '';
    display: table;
  }
  footer.global ul.footer-links.col-two:after {
    clear: both;
  }
  footer.global ul.footer-links.col-two:last-child {
    margin-right: 0%;
  }
}
footer.global ul.footer-links.col-three {
  text-align: center;
}
@media (min-width: 870px) {
  footer.global ul.footer-links.col-three {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 16.3125%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: left;
  }
  footer.global ul.footer-links.col-three:before,
  footer.global ul.footer-links.col-three:after {
    content: '';
    display: table;
  }
  footer.global ul.footer-links.col-three:after {
    clear: both;
  }
  footer.global ul.footer-links.col-three:last-child {
    margin-right: 0%;
  }
}
footer.global div.legal {
  clear: both;
  padding-bottom: 30px;
  margin-top: 35px;
  color: #fff;
  font-weight: 300;
  font-size: 13px;
  line-height: 20px;
  background: #444649;
}
footer.global div.legal p {
  font-size: 15px;
  color: #a9aaad;
  font-weight: 400;
  line-height: 41.3px;
  text-align: center;
}
footer.global div.legal p.ident {
  text-align: right;
}
footer.global div.legal p.ident a {
  background: url("/images/sidigital.svg") no-repeat;
  display: inline-block;
  width: 109px;
  height: 41.3px;
  vertical-align: middle;
  margin-left: 5px;
  text-indent: -999em;
  overflow: hidden;
  text-align: left;
}
div.page-header {
  background: #e2231a;
  font-size: 0;
  min-height: 15px;
}
div.page-header h1 {
  font-size: 24px;
  color: #fff;
  line-height: 85px;
}
div.page-header .back-link {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  line-height: 85px;
}
@media (min-width: 540px) {
  div.page-header .back-link {
    width: 50%;
  }
}
div.page-header .back-link .no-link,
div.page-header .back-link a {
  padding: 0 15px;
  margin: 0 5px 0 0;
  float: left;
  color: #fff;
  display: block;
  font-size: 16px;
}
div.page-header .back-link a:hover {
  background: #b51c15;
}
div.page-header .back-link h1 {
  float: right;
  margin-left: 20px;
}
.compatibility-check {
  text-align: right;
  vertical-align: middle;
  width: 50%;
  display: inline-block;
  padding-top: 20px;
}
@media screen and (max-width: 900px) {
  .compatibility-check {
    margin-left: 40px;
  }
}
@media screen and (max-width: 620px) {
  .compatibility-check {
    display: none;
  }
}
p.contact-info {
  padding: 0 0 10px 0;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  width: 50%;
  vertical-align: middle;
  opacity: 0.9;
  display: none;
  padding-right: 20px;
}
@media (min-width: 540px) {
  p.contact-info {
    padding-bottom: 0;
    text-align: right;
    display: inline-block;
  }
}
p.contact-info span {
  display: inline;
}
@media (min-width: 540px) {
  p.contact-info span {
    padding-top: 3px;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    display: block;
    opacity: 0.75;
  }
}
div.content {
  background: #eee;
  min-height: 750px;
}
div.content > .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
div.content > .wrap.block {
  display: block;
}
div.content div.sidebar,
div.content div.main-content {
  margin-top: 50px;
  margin-bottom: 80px;
}
div.content div.sidebar nav,
div.content div.main-content {
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
          box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
div.content div.sidebar {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 23.875%;
  margin-left: 0%;
  margin-right: 1.5%;
}
div.content div.sidebar:before,
div.content div.sidebar:after {
  content: '';
  display: table;
}
div.content div.sidebar:after {
  clear: both;
}
div.content div.sidebar:last-child {
  margin-right: 0%;
}
@media screen and (max-width: 900px) {
  div.content div.sidebar {
    display: none;
  }
}
div.content div.sidebar--with-padding {
  padding: 45px 0;
}
div.content div.sidebar--with-padding > p {
  padding: 0 45px;
}
div.content div.sidebar--1-3 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 30.21875%;
  margin-left: 0%;
  margin-right: 1.5%;
}
div.content div.sidebar--1-3:before,
div.content div.sidebar--1-3:after {
  content: '';
  display: table;
}
div.content div.sidebar--1-3:after {
  clear: both;
}
div.content div.sidebar--1-3:last-child {
  margin-right: 0%;
}
div.content div.sidebar .sidebar__heading {
  margin-bottom: 10px;
  margin-top: -5px;
  margin-left: 5px;
  color: #969696;
}
div.content div.sidebar nav {
  background: #fff;
  margin-bottom: 20px;
}
div.content div.sidebar nav:last-child {
  margin-bottom: 0;
}
div.content div.sidebar nav ul {
  padding: 0;
  margin: 0;
  font-size: 15px;
}
div.content div.sidebar nav ul li {
  border-bottom: 1px solid #eee;
}
div.content div.sidebar nav ul li:last-child {
  border: 0;
}
div.content div.sidebar nav ul li a {
  padding: 15px 25px;
  display: block;
  color: #555559;
  font-weight: 400;
}
div.content div.sidebar nav ul li a i {
  padding-top: 4px;
  float: right;
  display: none;
  font-size: 10px;
}
div.content div.sidebar nav ul li a.no-touchevents:hover {
  background: #e2231a;
  color: #fff;
}
div.content div.sidebar nav ul li a.no-touchevents:hover i {
  display: inline;
}
div.content div.sidebar nav ul li.active a {
  background: #f9f9fa;
  color: #555559;
  font-weight: 700;
}
div.content div.sidebar nav ul li.active a i {
  display: inline;
}
div.content div.main-content {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 74.25%;
  margin-left: 0%;
  margin-right: 3%;
  background: #fff;
  min-height: 550px;
  min-height: calc(100vh - 421px);
  padding: 45px;
}
div.content div.main-content:before,
div.content div.main-content:after {
  content: '';
  display: table;
}
div.content div.main-content:after {
  clear: both;
}
div.content div.main-content:last-child {
  margin-right: 0%;
}
@media screen and (max-width: 900px) {
  div.content div.main-content {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
div.content div.main-content--wide {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
}
div.content div.main-content--wide:before,
div.content div.main-content--wide:after {
  content: '';
  display: table;
}
div.content div.main-content--wide:after {
  clear: both;
}
div.content div.main-content--wide:last-child {
  margin-right: 0%;
}
div.content div.main-content--half {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
}
div.content div.main-content--half:before,
div.content div.main-content--half:after {
  content: '';
  display: table;
}
div.content div.main-content--half:after {
  clear: both;
}
div.content div.main-content--half:last-child {
  margin-right: 0%;
}
@media (min-width: 1150px) {
  div.content div.main-content--half {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content div.main-content--half:before,
  div.content div.main-content--half:after {
    content: '';
    display: table;
  }
  div.content div.main-content--half:after {
    clear: both;
  }
  div.content div.main-content--half:last-child {
    margin-right: 0%;
  }
}
div.content div.main-content--flush {
  width: 100%;
  max-width: none;
  padding: 30px;
  margin-top: 20px;
  margin-bottom: 50px;
  min-height: 0;
}
div.content div.main-content--no-min-height {
  min-height: 0;
}
div.content div.main-content--2-3 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 67.8125%;
  margin-left: 0%;
  margin-right: 3%;
}
div.content div.main-content--2-3:before,
div.content div.main-content--2-3:after {
  content: '';
  display: table;
}
div.content div.main-content--2-3:after {
  clear: both;
}
div.content div.main-content--2-3:last-child {
  margin-right: 0%;
}
div.content div.main-content.crash-portal {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 0;
}
div.content div.main-content.crash-portal--margin-bottom {
  margin-bottom: 45px;
}
div.content div.main-content h2 {
  font-size: 24px;
  line-height: 50px;
  color: #54565b;
  display: inline-block;
}
div.content div.main-content h2.large {
  font-size: 45px;
  font-weight: 300;
}
div.content div.main-content h3 {
  font-size: 20px;
  line-height: 36px;
  color: #54565b;
  display: block;
}
div.content div.main-content h3.large {
  font-size: 24px;
  font-weight: 300;
}
@media screen and (max-width: 600px) {
  div.content div.main-content h2,
  div.content div.main-content h3 {
    display: block;
    text-align: center;
  }
}
div.content div.main-content p {
  padding: 0;
  margin: 20px 0 0 0;
  color: #54565b;
  font-size: 16px;
}
div.content div.main-content p.welcome {
  font-size: 22px;
  font-weight: 300;
}
div.content div.main-content div.tabbed-section {
  padding: 0;
  margin: 20px 0 20px 0;
  border: 1px solid #e0e0e2;
  *zoom: 1;
}
div.content div.main-content div.tabbed-section:before,
div.content div.main-content div.tabbed-section:after {
  content: '';
  display: table;
}
div.content div.main-content div.tabbed-section:after {
  clear: both;
}
div.content div.main-content div.tabbed-section p {
  margin: 30px 35px 0 35px;
  color: #54565b;
}
div.content div.main-content div.tabbed-section.button-block {
  padding: 40px;
}
div.content div.main-content div.tabbed-section ul.tabs {
  padding: 0;
  margin: 0;
  margin-right: -1px;
  background: #f9f9fa;
  list-style: none;
  *zoom: 1;
  border-right: 1px solid #e0e0e2;
  clear: both;
  font-size: 0;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
div.content div.main-content div.tabbed-section ul.tabs:before,
div.content div.main-content div.tabbed-section ul.tabs:after {
  content: '';
  display: table;
}
div.content div.main-content div.tabbed-section ul.tabs:after {
  clear: both;
}
div.content div.main-content div.tabbed-section ul.tabs:after {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  border-bottom: 1px solid #e0e0e2;
}
div.content div.main-content div.tabbed-section ul.tabs li {
  font-size: 16px;
  display: inline-block;
  line-height: 59px;
  min-width: 125px;
  border-right: 1px solid #e0e0e2;
  vertical-align: top;
}
div.content div.main-content div.tabbed-section ul.tabs li.half {
  width: 50%;
}
div.content div.main-content div.tabbed-section ul.tabs li.half:last-child {
  border-right: none;
}
div.content div.main-content div.tabbed-section ul.tabs li.third {
  width: 33.33333331%;
}
div.content div.main-content div.tabbed-section ul.tabs li.third:last-child {
  border-right: none;
}
div.content div.main-content div.tabbed-section ul.tabs li a,
div.content div.main-content div.tabbed-section ul.tabs li span {
  display: block;
  text-align: center;
  color: #919199;
  font-size: 16px;
  padding: 0 20px;
}
div.content div.main-content div.tabbed-section ul.tabs li a:hover {
  color: #555559;
}
div.content div.main-content div.tabbed-section ul.tabs li.active {
  border-top: 2px solid #e2231a;
  line-height: 58px;
  border-bottom: none;
  position: relative;
  z-index: 5;
}
div.content div.main-content div.tabbed-section ul.tabs li.active a {
  background: #fff;
  color: #555559;
}
div.content div.main-content div.tabbed-section ul.tabs.top li.active {
  position: static;
}
div.content div.main-content div.tabbed-section ul.tabs.top li.active {
  line-height: 58px;
}
div.content div.main-content div.tabbed-section ul.tabs + ul.tabs {
  border-top: 1px solid #e0e0e2;
  position: relative;
  top: -1px;
}
div.content div.main-content div.tabbed-section ul.tabs + ul.tabs li {
  line-height: 59px;
}
div.content div.main-content div.tabbed-section ul.tabs + ul.tabs li.active {
  line-height: 58px;
}
div.content div.main-content div.tabbed-section div.tabbed-content {
  padding: 30px 35px;
}
@media screen and (max-width: 900px) {
  div.content div.main-content div.tabbed-section div.tabbed-content {
    padding-left: 5%;
    padding-right: 5%;
  }
}
div.content div.main-content div.tabbed-section div.tabbed-content p {
  margin: 20px 0 20px 0;
}
div.content div.main-content div.vehicle-results {
  margin: 30px 0;
}
div.content div.main-content div.vehicle-results > *:empty {
  margin-bottom: -20px;
}
div.content div.main-content div.vehicle-results .ajax-results--error p {
  color: #f44;
}
div.content div.main-content div.vehicle-results .form-heading {
  margin-top: 0;
  padding-top: 0;
}
div.content div.main-content div.vehicle-results p {
  margin-right: 0;
  margin-left: 0;
  line-height: 1.5;
}
div.content p.status-message {
  padding: 0;
  margin: 20px 0;
  font-weight: 700;
}
div.content p.status-message.error {
  color: #f55;
}
div.content p.status-message.success {
  color: #1a1;
}
div.content div.vehicle-lookup-results {
  padding: 0;
  margin: 0;
  max-width: 540px;
  margin-top: 30px;
  *zoom: 1;
}
div.content div.vehicle-lookup-results:before,
div.content div.vehicle-lookup-results:after {
  content: '';
  display: table;
}
div.content div.vehicle-lookup-results:after {
  clear: both;
}
div.content div.vehicle-lookup-results div.photo {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 50%;
  margin-left: 0%;
  margin-right: 0%;
  padding: 30px 30px 0 0;
}
div.content div.vehicle-lookup-results div.photo:before,
div.content div.vehicle-lookup-results div.photo:after {
  content: '';
  display: table;
}
div.content div.vehicle-lookup-results div.photo:after {
  clear: both;
}
div.content div.vehicle-lookup-results div.photo img {
  float: right;
  width: 100%;
  height: auto;
}
div.content div.vehicle-lookup-results div.stats {
  margin-top: 40px;
}
div.content div.vehicle-lookup-results div.stats ul {
  padding: 0;
  display: block;
}
div.content div.vehicle-lookup-results div.stats ul li {
  padding: 0;
  margin: 0 0 10px 0;
  display: block;
  font-size: 16px;
  color: #54565b;
}
div.content div.vehicle-lookup-results div.stats ul li strong {
  font-weight: 700;
}
div.content div.vehicle-lookup-results div.stats ul li:first-child {
  margin-top: 20px;
}
div.content div.vehicle-lookup-results div.stats ul li:last-child {
  margin-bottom: 20px;
}
div.content div.vehicle-search-results {
  padding-top: 0;
}
div.content div.vehicle-search-results div.vehicle-lookup-results {
  padding-top: 10px;
  padding-bottom: 20px;
}
div.content div.vehicle-search-results div.vehicle-lookup-results,
div.content div.vehicle-search-results div.stats {
  margin-top: 0;
}
div.content div.tabbed-section form p.form-notice {
  margin-left: 0;
  line-height: 1.5;
}
div.content div.tabbed-section form p.form-notice strong {
  font-weight: 600;
}
div.content div.form-feedback {
  padding: 0;
  margin: 0;
  display: block;
}
div.content div.form-feedback p.form-alert {
  padding: 10px 15px;
  margin: 20px auto;
  font-weight: 700;
  background: #eee;
  border: 1px solid #ddd;
}
div.content div.form-feedback p.form-alert.error {
  color: #f44;
  background: #ffe0e0;
  border-color: #ffc2c2;
}
div.content div.form-feedback p.form-alert.success {
  color: #181;
  background: #d6ead6;
  border-color: #b1d8b1;
}
div.content form,
div.content div.container {
  padding-bottom: 30px;
  *zoom: 1;
}
div.content form:before,
div.content div.container:before,
div.content form:after,
div.content div.container:after {
  content: '';
  display: table;
}
div.content form:after,
div.content div.container:after {
  clear: both;
}
div.content form div.col,
div.content div.container div.col {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.050000000000004%;
  margin-left: 0%;
  margin-right: 3.9%;
  padding-left: 35px;
  padding-right: 35px;
}
div.content form div.col:before,
div.content div.container div.col:before,
div.content form div.col:after,
div.content div.container div.col:after {
  content: '';
  display: table;
}
div.content form div.col:after,
div.content div.container div.col:after {
  clear: both;
}
div.content form div.col:last-child,
div.content div.container div.col:last-child {
  margin-right: 0%;
}
div.content form div.col.rightcol,
div.content div.container div.col.rightcol {
  padding-right: 35px;
}
div.content form div.col.wide,
div.content div.container div.col.wide {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
}
div.content form div.col.wide:before,
div.content div.container div.col.wide:before,
div.content form div.col.wide:after,
div.content div.container div.col.wide:after {
  content: '';
  display: table;
}
div.content form div.col.wide:after,
div.content div.container div.col.wide:after {
  clear: both;
}
div.content form div.col.wide:last-child,
div.content div.container div.col.wide:last-child {
  margin-right: 0%;
}
div.content form div.col.wide.no-margin,
div.content div.container div.col.wide.no-margin {
  padding-right: 0;
  padding-left: 0;
}
@media (min-width: 1080px) {
  div.content form div.col.wide,
  div.content div.container div.col.wide {
    max-width: 540px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
div.content form h3.form-heading,
div.content div.container h3.form-heading {
  padding: 30px 0 20px 0;
  margin: 20px 0;
  border-bottom: 1px solid #e0e0e2;
  font-size: 24px;
  color: #54565b;
}
div.content form label,
div.content div.container label {
  padding: 0;
  margin: 30px 0 10px 0;
  display: block;
  color: #54565b;
  font-size: 14px;
  font-weight: 400;
  *zoom: 1;
}
div.content form label:before,
div.content div.container label:before,
div.content form label:after,
div.content div.container label:after {
  content: '';
  display: table;
}
div.content form label:after,
div.content div.container label:after {
  clear: both;
}
div.content form div.form-body div.form-field.field-select,
div.content div.container div.form-body div.form-field.field-select {
  *zoom: 1;
  overflow: visible;
  max-height: none;
}
div.content form div.form-body div.form-field.field-select:before,
div.content div.container div.form-body div.form-field.field-select:before,
div.content form div.form-body div.form-field.field-select:after,
div.content div.container div.form-body div.form-field.field-select:after {
  content: '';
  display: table;
}
div.content form div.form-body div.form-field.field-select:after,
div.content div.container div.form-body div.form-field.field-select:after {
  clear: both;
}
div.content form div.form-body div.form-field.field-select.form-field--hidden,
div.content div.container div.form-body div.form-field.field-select.form-field--hidden {
  overflow: hidden;
  max-height: 0;
}
div.content form div.form-field.error .mce-tinymce,
div.content div.container div.form-field.error .mce-tinymce {
  border-color: #f44;
}
div.content form input[type="date"],
div.content div.container input[type="date"],
div.content form input[type="time"],
div.content div.container input[type="time"],
div.content form input[type="tel"],
div.content div.container input[type="tel"] {
  -webkit-appearance: none;
  border-radius: 0;
}
div.content form div.form-body div.form-field .select-replace select + p.select-replace__value,
div.content div.container div.form-body div.form-field .select-replace select + p.select-replace__value,
div.content form input.text,
div.content div.container input.text,
div.content form textarea.text,
div.content div.container textarea.text,
div.content form div.text,
div.content div.container div.text {
  padding: 0 20px;
  margin-top: 15px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #a9aaad;
  font-size: 16px;
  color: #54565b;
  width: 100%;
}
div.content form div.form-body div.form-field .select-replace select + p.select-replace__value[readonly],
div.content div.container div.form-body div.form-field .select-replace select + p.select-replace__value[readonly],
div.content form input.text[readonly],
div.content div.container input.text[readonly],
div.content form textarea.text[readonly],
div.content div.container textarea.text[readonly],
div.content form div.text[readonly],
div.content div.container div.text[readonly],
div.content form div.form-body div.form-field .select-replace select + p.select-replace__value[readonly]:hover,
div.content div.container div.form-body div.form-field .select-replace select + p.select-replace__value[readonly]:hover,
div.content form input.text[readonly]:hover,
div.content div.container input.text[readonly]:hover,
div.content form textarea.text[readonly]:hover,
div.content div.container textarea.text[readonly]:hover,
div.content form div.text[readonly]:hover,
div.content div.container div.text[readonly]:hover,
div.content form div.form-body div.form-field .select-replace select + p.select-replace__value[readonly]:focus,
div.content div.container div.form-body div.form-field .select-replace select + p.select-replace__value[readonly]:focus,
div.content form input.text[readonly]:focus,
div.content div.container input.text[readonly]:focus,
div.content form textarea.text[readonly]:focus,
div.content div.container textarea.text[readonly]:focus,
div.content form div.text[readonly]:focus,
div.content div.container div.text[readonly]:focus {
  background: #f9f9fa;
  border-color: #e0e0e2;
  color: #54565b;
  opacity: 1;
}
div.content form div.form-body div.form-field .select-replace select + p.select-replace__value:focus,
div.content div.container div.form-body div.form-field .select-replace select + p.select-replace__value:focus,
div.content form input.text:focus,
div.content div.container input.text:focus,
div.content form textarea.text:focus,
div.content div.container textarea.text:focus,
div.content form div.text:focus,
div.content div.container div.text:focus,
div.content form div.form-body div.form-field .select-replace select + p.select-replace__value:hover,
div.content div.container div.form-body div.form-field .select-replace select + p.select-replace__value:hover,
div.content form input.text:hover,
div.content div.container input.text:hover,
div.content form textarea.text:hover,
div.content div.container textarea.text:hover,
div.content form div.text:hover,
div.content div.container div.text:hover {
  border-color: #a9aaad;
  color: #54565b;
}
div.content form div.form-body div.form-field .select-replace select + p.select-replace__value.vehicle-reg,
div.content div.container div.form-body div.form-field .select-replace select + p.select-replace__value.vehicle-reg,
div.content form input.text.vehicle-reg,
div.content div.container input.text.vehicle-reg,
div.content form textarea.text.vehicle-reg,
div.content div.container textarea.text.vehicle-reg,
div.content form div.text.vehicle-reg,
div.content div.container div.text.vehicle-reg {
  background: #fee770;
  border-color: #a9aaad;
  text-transform: uppercase;
  text-align: left;
  color: #76787d;
}
div.content form div.form-body div.form-field .select-replace select + p.select-replace__value.vehicle-reg:focus,
div.content div.container div.form-body div.form-field .select-replace select + p.select-replace__value.vehicle-reg:focus,
div.content form input.text.vehicle-reg:focus,
div.content div.container input.text.vehicle-reg:focus,
div.content form textarea.text.vehicle-reg:focus,
div.content div.container textarea.text.vehicle-reg:focus,
div.content form div.text.vehicle-reg:focus,
div.content div.container div.text.vehicle-reg:focus,
div.content form div.form-body div.form-field .select-replace select + p.select-replace__value.vehicle-reg:hover,
div.content div.container div.form-body div.form-field .select-replace select + p.select-replace__value.vehicle-reg:hover,
div.content form input.text.vehicle-reg:hover,
div.content div.container input.text.vehicle-reg:hover,
div.content form textarea.text.vehicle-reg:hover,
div.content div.container textarea.text.vehicle-reg:hover,
div.content form div.text.vehicle-reg:hover,
div.content div.container div.text.vehicle-reg:hover {
  background: #fed931;
  color: #54565b;
}
div.content form div.form-body div.form-field .select-replace--disabled select + p.select-replace__value,
div.content div.container div.form-body div.form-field .select-replace--disabled select + p.select-replace__value {
  border-color: #e0e0e2;
}
div.content form div.form-body div.form-field.error select + p.select-replace__value,
div.content div.container div.form-body div.form-field.error select + p.select-replace__value {
  color: #54565b;
  border-color: #f44;
}
div.content form .reg-icon + input.text.vehicle-reg,
div.content div.container .reg-icon + input.text.vehicle-reg {
  margin: 0;
  float: left;
  width: 85%;
  border-width: 1px 1px 1px 0;
}
div.content form div.form-field .select-replace select:focus + p.select-replace__value,
div.content div.container div.form-field .select-replace select:focus + p.select-replace__value,
div.content form div.form-field .select-replace select:hover + p.select-replace__value,
div.content div.container div.form-field .select-replace select:hover + p.select-replace__value {
  border-color: #a9aaad;
  color: #54565b;
}
div.content form div.form-body div.form-field.field-dateselect,
div.content div.container div.form-body div.form-field.field-dateselect,
div.content form div.form-body div.form-field.field-monthselect,
div.content div.container div.form-body div.form-field.field-monthselect,
div.content form div.form-body div.form-field.field-datetimeselect,
div.content div.container div.form-body div.form-field.field-datetimeselect {
  margin-right: -20px;
  margin-bottom: -20px;
}
div.content form div.form-body div.form-field.field-dateselect .select-replace,
div.content div.container div.form-body div.form-field.field-dateselect .select-replace,
div.content form div.form-body div.form-field.field-monthselect .select-replace,
div.content div.container div.form-body div.form-field.field-monthselect .select-replace,
div.content form div.form-body div.form-field.field-datetimeselect .select-replace,
div.content div.container div.form-body div.form-field.field-datetimeselect .select-replace {
  width: calc((1 / 3) * 100% - 20px);
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
  vertical-align: top;
}
div.content form div.form-body div.form-field.field-dateselect .select-replace .select-replace__value,
div.content div.container div.form-body div.form-field.field-dateselect .select-replace .select-replace__value,
div.content form div.form-body div.form-field.field-monthselect .select-replace .select-replace__value,
div.content div.container div.form-body div.form-field.field-monthselect .select-replace .select-replace__value,
div.content form div.form-body div.form-field.field-datetimeselect .select-replace .select-replace__value,
div.content div.container div.form-body div.form-field.field-datetimeselect .select-replace .select-replace__value {
  margin-top: 0;
}
div.content form div.form-body div.form-field.field-monthselect .select-replace,
div.content div.container div.form-body div.form-field.field-monthselect .select-replace {
  width: calc((1 / 2) * 100% - 20px);
}
@media screen and (max-width: 600px) {
  div.content form div.form-body div.form-field.field-dateselect .select-replace,
  div.content div.container div.form-body div.form-field.field-dateselect .select-replace,
  div.content form div.form-body div.form-field.field-monthselect .select-replace,
  div.content div.container div.form-body div.form-field.field-monthselect .select-replace,
  div.content form div.form-body div.form-field.field-datetimeselect .select-replace,
  div.content div.container div.form-body div.form-field.field-datetimeselect .select-replace {
    width: calc(100% - 20px);
  }
}
div.content form div.form-body fieldset.fieldset-datetime div.form-field,
div.content div.container div.form-body fieldset.fieldset-datetime div.form-field,
div.content form div.form-body fieldset.fieldset-inline div.form-field,
div.content div.container div.form-body fieldset.fieldset-inline div.form-field {
  display: inline-block;
  width: 48%;
  margin-right: 4%;
  vertical-align: top;
}
div.content form div.form-body fieldset.fieldset-datetime div.form-field input,
div.content div.container div.form-body fieldset.fieldset-datetime div.form-field input,
div.content form div.form-body fieldset.fieldset-inline div.form-field input,
div.content div.container div.form-body fieldset.fieldset-inline div.form-field input,
div.content form div.form-body fieldset.fieldset-datetime div.form-field p.select-replace__value,
div.content div.container div.form-body fieldset.fieldset-datetime div.form-field p.select-replace__value,
div.content form div.form-body fieldset.fieldset-inline div.form-field p.select-replace__value,
div.content div.container div.form-body fieldset.fieldset-inline div.form-field p.select-replace__value {
  margin-top: 5px;
}
div.content form div.form-body fieldset.fieldset-datetime div.form-field:last-child,
div.content div.container div.form-body fieldset.fieldset-datetime div.form-field:last-child,
div.content form div.form-body fieldset.fieldset-inline div.form-field:last-child,
div.content div.container div.form-body fieldset.fieldset-inline div.form-field:last-child {
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  div.content form div.form-body fieldset.fieldset-datetime div.form-field,
  div.content div.container div.form-body fieldset.fieldset-datetime div.form-field,
  div.content form div.form-body fieldset.fieldset-inline div.form-field,
  div.content div.container div.form-body fieldset.fieldset-inline div.form-field {
    width: 100%;
  }
  div.content form div.form-body fieldset.fieldset-datetime div.form-field input,
  div.content div.container div.form-body fieldset.fieldset-datetime div.form-field input,
  div.content form div.form-body fieldset.fieldset-inline div.form-field input,
  div.content div.container div.form-body fieldset.fieldset-inline div.form-field input,
  div.content form div.form-body fieldset.fieldset-datetime div.form-field p.select-replace__value,
  div.content div.container div.form-body fieldset.fieldset-datetime div.form-field p.select-replace__value,
  div.content form div.form-body fieldset.fieldset-inline div.form-field p.select-replace__value,
  div.content div.container div.form-body fieldset.fieldset-inline div.form-field p.select-replace__value {
    margin-top: 20px;
  }
}
div.content form div.form-body div.form-field.field-image,
div.content div.container div.form-body div.form-field.field-image {
  max-height: none;
}
div.content form div.form-body div.form-field.field-image .image-selection,
div.content div.container div.form-body div.form-field.field-image .image-selection {
  font-size: 0;
  margin-right: -7px;
}
div.content form div.form-body div.form-field.field-image .image-selection__option,
div.content div.container div.form-body div.form-field.field-image .image-selection__option {
  display: inline-block;
  width: 33.333333333333336%;
  padding: 0 6px 6px 0;
}
div.content form div.form-body div.form-field.field-image .image-selection__option img,
div.content div.container div.form-body div.form-field.field-image .image-selection__option img {
  max-width: 100%;
  height: auto;
  border: 2px solid transparent;
}
div.content form div.form-body div.form-field.field-image .image-selection__option--selected img,
div.content div.container div.form-body div.form-field.field-image .image-selection__option--selected img {
  border-color: #e2231a;
}
@media screen and (max-width: 600px) {
  div.content form div.form-body div.form-field.field-image .image-selection__option,
  div.content div.container div.form-body div.form-field.field-image .image-selection__option {
    width: 50%;
  }
}
div.content form textarea.text,
div.content div.container textarea.text,
div.content form div.text,
div.content div.container div.text {
  height: auto;
  min-height: 130px;
  line-height: 35px;
  padding: 10px 20px;
  resize: none;
}
div.content form span.reg-icon,
div.content div.container span.reg-icon {
  padding: 0;
  margin: 0;
  display: block;
  background: #54565b;
  width: 15%;
  height: 50px;
  color: #fed931;
  text-align: center;
  line-height: 50px;
  float: left;
}
div.content form input.inline-checkbox,
div.content div.container input.inline-checkbox {
  display: inline-block;
  margin-left: 10px;
}
div.content form div.form-body,
div.content div.container div.form-body {
  padding: 0 0 0 0;
  margin: 0;
  display: block;
  clear: both;
  *zoom: 1;
}
div.content form div.form-body:before,
div.content div.container div.form-body:before,
div.content form div.form-body:after,
div.content div.container div.form-body:after {
  content: '';
  display: table;
}
div.content form div.form-body:after,
div.content div.container div.form-body:after {
  clear: both;
}
div.content form div.form-body div.form-field,
div.content div.container div.form-body div.form-field {
  padding: 0;
  margin: 0;
  max-height: 500px;
  -webkit-transition: max-height 0.5s linear;
  transition: max-height 0.5s linear;
  overflow: hidden;
}
div.content form div.form-body div.form-field p,
div.content div.container div.form-body div.form-field p {
  padding: 0 0 10px 0;
  margin: 0;
}
div.content form div.form-body div.form-field.error input.text,
div.content div.container div.form-body div.form-field.error input.text,
div.content form div.form-body div.form-field.error textarea.text,
div.content div.container div.form-body div.form-field.error textarea.text,
div.content form div.form-body div.form-field.error div.text,
div.content div.container div.form-body div.form-field.error div.text {
  border-color: #f44;
}
div.content form div.form-body div.form-field.error p,
div.content div.container div.form-body div.form-field.error p,
div.content form div.form-body div.form-field.error .field-error li,
div.content div.container div.form-body div.form-field.error .field-error li,
div.content form div.form-body div.form-field.error p a,
div.content div.container div.form-body div.form-field.error p a,
div.content form div.form-body div.form-field.error .field-error li a,
div.content div.container div.form-body div.form-field.error .field-error li a {
  color: #f44;
}
div.content form div.form-body div.form-field.error p a,
div.content div.container div.form-body div.form-field.error p a,
div.content form div.form-body div.form-field.error .field-error li a,
div.content div.container div.form-body div.form-field.error .field-error li a {
  text-decoration: underline;
}
div.content form div.form-body .required > legend:after,
div.content div.container div.form-body .required > legend:after,
div.content form div.form-body .required > fieldset > legend:after,
div.content div.container div.form-body .required > fieldset > legend:after,
div.content form div.form-body .required > label > span:after,
div.content div.container div.form-body .required > label > span:after {
  content: '*';
  display: inline-block;
  font-weight: bold;
  padding-left: 5px;
  color: #f00;
}
div.content form div.form-body fieldset.form-field--hidden,
div.content div.container div.form-body fieldset.form-field--hidden,
div.content form div.form-body div.form-field--hidden,
div.content div.container div.form-body div.form-field--hidden {
  max-height: 0;
  overflow: hidden;
}
div.content form div.form-body .fields-inline,
div.content div.container div.form-body .fields-inline {
  float: none;
  width: auto;
  max-width: none;
}
div.content form div.form-body .fields-inline div.form-field,
div.content div.container div.form-body .fields-inline div.form-field {
  width: 50%;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 600px) {
  div.content form div.form-body .fields-inline div.form-field,
  div.content div.container div.form-body .fields-inline div.form-field {
    width: 100%;
    padding-right: 0;
  }
}
div.content form div.form-body .fields-flex,
div.content div.container div.form-body .fields-flex {
  width: auto;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: -20px;
  margin-right: -35px;
}
div.content form div.form-body .fields-flex--wide,
div.content div.container div.form-body .fields-flex--wide {
  max-width: 1200px;
}
div.content form div.form-body .fields-flex div.form-field,
div.content div.container div.form-body .fields-flex div.form-field {
  width: 100%;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
}
div.content form div.form-body .fields-flex div.form-footer,
div.content div.container div.form-body .fields-flex div.form-footer {
  padding-right: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: -20px;
}
@media screen and (max-width: 600px) {
  div.content form div.form-body .fields-flex,
  div.content div.container div.form-body .fields-flex {
    display: block;
    padding-right: 0;
  }
  div.content form div.form-body .fields-flex div.form-footer,
  div.content div.container div.form-body .fields-flex div.form-footer,
  div.content form div.form-body .fields-flex div.form-field,
  div.content div.container div.form-body .fields-flex div.form-field {
    padding-right: 0px;
  }
}
div.content form div.form-footer,
div.content div.container div.form-footer,
div.content form div.field-submit,
div.content div.container div.field-submit,
div.content form div.field-button,
div.content div.container div.field-button {
  padding: 30px 0 10px !important;
  clear: both;
  *zoom: 1;
}
div.content form div.form-footer:before,
div.content div.container div.form-footer:before,
div.content form div.field-submit:before,
div.content div.container div.field-submit:before,
div.content form div.field-button:before,
div.content div.container div.field-button:before,
div.content form div.form-footer:after,
div.content div.container div.form-footer:after,
div.content form div.field-submit:after,
div.content div.container div.field-submit:after,
div.content form div.field-button:after,
div.content div.container div.field-button:after {
  content: '';
  display: table;
}
div.content form div.form-footer:after,
div.content div.container div.form-footer:after,
div.content form div.field-submit:after,
div.content div.container div.field-submit:after,
div.content form div.field-button:after,
div.content div.container div.field-button:after {
  clear: both;
}
div.content form div.form-footer.no-padding,
div.content div.container div.form-footer.no-padding,
div.content form div.field-submit.no-padding,
div.content div.container div.field-submit.no-padding,
div.content form div.field-button.no-padding,
div.content div.container div.field-button.no-padding {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 600px) {
  div.content form div.form-footer,
  div.content div.container div.form-footer,
  div.content form div.field-submit,
  div.content div.container div.field-submit,
  div.content form div.field-button,
  div.content div.container div.field-button {
    text-align: center;
  }
}
div.content h1.login-heading {
  padding: 0;
  margin: 40px 0;
  text-align: center;
  font-size: 24px;
  color: #54565b;
}
div.content div.login-box {
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  margin-bottom: 70px;
  width: 95%;
  display: block;
  background: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
          box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
div.content div.login-box form {
  margin: 20px 40px;
}
div.content div.login-box form input.button {
  width: 150px;
  margin: 40px auto 0 auto;
}
div.content div.login-box .form-body,
div.content div.login-box .col.wide {
  margin: 0;
  padding: 0;
  max-width: none;
}
div.content div.login-box .form-footer {
  padding-right: 0 !important;
  text-align: center;
}
div.content div.login-box .form-footer button {
  display: inline-block;
}
div.content .login-footer {
  clear: both;
  text-align: center;
  margin-bottom: 70px;
}
label.checkbox {
  margin: 15px 0 0 50px;
  line-height: 25px;
  display: block;
  color: #54565b;
}
label.checkbox input[type=checkbox] {
  position: absolute;
  top: 0;
  left: -9999px;
}
label.checkbox span {
  margin-right: 15px;
  float: left;
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #cbccce;
  position: relative;
  color: #54565b;
  text-align: center;
}
label.checkbox span i {
  display: none;
}
label.checkbox:hover {
  cursor: pointer;
}
label.checkbox:hover span {
  border-color: #a9aaad;
}
label.checkbox.active span {
  border-color: #a9aaad;
}
label.checkbox.active span i {
  display: block;
  line-height: 23px;
}
form .form-field label input[type="radio"] {
  margin-left: 5px;
}
form .form-field label input[type="checkbox"] {
  margin-left: 10px;
}
form .form-field fieldset {
  font-size: 0;
  margin: 30px 0 10px;
}
form .form-field fieldset label {
  display: inline-block;
  width: 50%;
  margin: 20px 0 10px;
}
form .form-field fieldset label input {
  margin-right: 10px;
}
form .form-field fieldset legend {
  padding: 0;
  margin: 30px 0 10px 0;
  display: block;
  color: #54565b;
  font-size: 14px;
  font-weight: 400;
}
.actions {
  text-align: right;
  float: right;
  padding-bottom: 10px;
  *zoom: 1;
}
.actions:before,
.actions:after {
  content: '';
  display: table;
}
.actions:after {
  clear: both;
}
.actions > a.button {
  margin-bottom: 10px;
  padding: 9px 14px;
  min-height: 45px;
}
.actions + * {
  clear: both;
}
@media screen and (max-width: 600px) {
  .actions {
    float: none;
    display: block;
  }
}
.feedback {
  padding: 10px 15px;
  margin: 0 0 20px;
  display: block;
  background: #eee;
  border: 1px solid #ddd;
  text-align: center;
}
.feedback .alert {
  padding: 0;
  margin: 0 auto !important;
  font-weight: 700;
}
.feedback .alert + .alert {
  margin: 10px auto 0 !important;
}
.feedback.error {
  background: #ffe0e0;
  border-color: #ffc2c2;
}
.feedback.error .alert {
  color: #f44;
}
.feedback.success {
  background: #d6ead6;
  border-color: #b1d8b1;
}
.feedback.success .alert {
  color: #181;
}
.feedback.info {
  background: #fee770;
  border-color: #fed931;
}
input.button,
button {
  -webkit-appearance: none;
  padding: 0 30px;
  margin: 0 7px 14px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background: #ebebeb;
  border: 1px solid #cbccce;
  font-size: 16px;
  font-weight: 700;
  color: #54565b;
}
input.button:last-of-type,
button:last-of-type {
  margin-bottom: 0;
}
input.button:first-of-type:last-of-type,
button:first-of-type:last-of-type {
  margin-left: 0;
  margin-right: 0;
}
input.button:hover,
button:hover {
  cursor: pointer;
  background: #f3f3f3;
  border-color: #e0e0e2;
}
input.button:hover:active,
button:hover:active {
  background: #ddd;
}
input.button.yellow,
button.yellow {
  background: #e2231a;
  border-color: #b51c15;
  color: #fff;
}
input.button.yellow:hover,
button.yellow:hover {
  background: #cb1f17;
}
input.button.yellow:active,
button.yellow:active {
  background: #b51c15;
}
input.button.left,
button.left {
  float: left;
}
input.button.left + input.button.left,
button.left + button.left {
  margin-left: 30px;
}
input.button.right,
button.right {
  margin-right: 30px;
  float: right;
}
input.button.no-padding,
button.no-padding {
  margin-left: 0;
  margin-right: 0;
}
input.button.margin-at-top,
button.margin-at-top {
  margin-top: 15px;
  border-radius: 0;
}
input.button.centered,
button.centered {
  margin-left: auto;
  margin-right: auto;
  float: none;
}
input.button.square,
button.square {
  border-radius: 0;
}
.gm-style button {
  border-radius: 0;
  font-weight: normal;
  line-height: 1;
}
input.button,
a.button {
  padding: 12px 30px;
  margin: 0;
  display: inline-block;
  min-height: 50px;
  line-height: 1.6;
  border-radius: 25px;
  background: #ebebeb;
  border: 1px solid #cbccce;
  font-size: 16px;
  font-weight: 700;
  color: #54565b;
}
input.button:hover,
a.button:hover {
  cursor: pointer;
  background: #f3f3f3;
  border-color: #e0e0e2;
}
input.button:hover:active,
a.button:hover:active {
  background: #ddd;
}
input.button.yellow,
a.button.yellow {
  background: #e2231a;
  border-color: #b51c15;
  color: #fff;
}
input.button.yellow:hover,
a.button.yellow:hover {
  background: #cb1f17;
}
input.button.yellow:active,
a.button.yellow:active {
  background: #b51c15;
}
input.button.left,
a.button.left {
  margin-left: 30px;
  float: left;
  display: block;
}
input.button.right,
a.button.right {
  margin-right: 30px;
  float: right;
  display: block;
}
input.button.no-padding,
a.button.no-padding {
  margin-left: 0;
  margin-right: 0;
}
input.button.square,
a.button.square {
  border-radius: 0;
}
input.button + input.button,
a.button + input.button,
input.button + a.button,
a.button + a.button {
  margin-left: 20px;
}
@media screen and (max-width: 600px) {
  input.button,
  a.button,
  button {
    display: block;
    text-align: center;
    width: 100%;
  }
  input.button + input.button,
  a.button + input.button,
  button + input.button,
  input.button + a.button,
  a.button + a.button,
  button + a.button {
    margin-left: 0;
  }
}
.modal.modal--delivery div.modal-content {
  padding-top: 30px;
  padding-bottom: 30px;
}
.modal.modal--delivery table {
  width: 100%;
  color: #555559;
  border-collapse: collapse;
  border: 1px solid #e0e0e2;
}
.modal.modal--delivery table thead,
.modal.modal--delivery table tfoot {
  background: #eee;
}
.modal.modal--delivery table tfoot {
  display: none;
}
.modal.modal--delivery table tr {
  border: 1px solid #e0e0e2;
}
.modal.modal--delivery table tr:nth-of-type(even) {
  background: #f9f9fa;
}
.modal.modal--delivery table th,
.modal.modal--delivery table td {
  padding: 10px;
  line-height: 24px;
  width: 50%;
}
.modal.modal--delivery table th a,
.modal.modal--delivery table td a {
  padding-right: 10px;
}
.modal.modal--delivery table th {
  border-right: 1px solid #e0e0e2;
  background: #eee;
  text-align: left;
}
.mce-tinymce {
  margin-top: 10px !important;
}
.mce-tinymce button:hover {
  background: transparent;
}
.menu-icon {
  height: 20px;
  width: 25px;
  font-size: 0;
  vertical-align: middle;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-left: 40px;
  margin-top: 20px;
}
@media screen and (max-width: 540px) {
  .menu-icon {
    margin-top: 0;
  }
}
.menu-icon span {
  position: relative;
  width: 20px;
  display: inline-block;
  top: 7px;
  text-align: right;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.menu-icon span,
.menu-icon span:before,
.menu-icon span:after {
  background: #d7d7d7;
  height: 2px;
}
.menu-icon span:before,
.menu-icon span:after {
  display: inline-block;
  position: absolute;
  content: '';
  width: 25px;
  left: -5px;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
}
.menu-icon span:before {
  top: -8px;
  -webkit-transition: top 0.25s 0.35s, -webkit-transform 0.25s 0s;
  transition: top 0.25s 0.35s, -webkit-transform 0.25s 0s;
  transition: transform 0.25s 0s, top 0.25s 0.35s;
  transition: transform 0.25s 0s, top 0.25s 0.35s, -webkit-transform 0.25s 0s;
}
.menu-icon span:after {
  bottom: -8px;
  -webkit-transition: bottom 0.25s 0.35s, -webkit-transform 0.25s 0s;
  transition: bottom 0.25s 0.35s, -webkit-transform 0.25s 0s;
  transition: transform 0.25s 0s, bottom 0.25s 0.35s;
  transition: transform 0.25s 0s, bottom 0.25s 0.35s, -webkit-transform 0.25s 0s;
}
header.global .menu-icon {
  display: none;
}
.show-nav header.global .menu-icon span {
  background: none;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.show-nav header.global .menu-icon span:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0px;
  -webkit-transition: top 0.25s 0s, -webkit-transform 0.25s 0.35s;
  transition: top 0.25s 0s, -webkit-transform 0.25s 0.35s;
  transition: top 0.25s 0s, transform 0.25s 0.35s;
  transition: top 0.25s 0s, transform 0.25s 0.35s, -webkit-transform 0.25s 0.35s;
}
.show-nav header.global .menu-icon span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 0px;
  -webkit-transition: bottom 0.25s 0s, -webkit-transform 0.25s 0.35s;
  transition: bottom 0.25s 0s, -webkit-transform 0.25s 0.35s;
  transition: bottom 0.25s 0s, transform 0.25s 0.35s;
  transition: bottom 0.25s 0s, transform 0.25s 0.35s, -webkit-transform 0.25s 0.35s;
}
@media screen and (max-width: 900px) {
  header.global .menu-icon {
    display: inline-block;
  }
  div.content div.sidebar.site-navigation {
    display: block;
    position: fixed;
    left: 100%;
    top: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
    width: 270px;
    margin: 0;
    padding: 30px 0;
    border-left: 1px solid #eee;
    background: #fff;
  }
  .show-nav div.content div.sidebar.site-navigation {
    left: calc(100% - 270px);
  }
  div.content div.sidebar.site-navigation .sidebar__heading {
    text-align: center;
  }
  div.content div.sidebar.site-navigation nav {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 0 solid #eee;
    border-width: 1px 0;
  }
  body.show-nav {
    left: -270px;
  }
}
body,
.site-navigation {
  -webkit-transition: left 0.5s 0s ease-in-out;
  transition: left 0.5s 0s ease-in-out;
}
.dropdown-menu {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 0 !important;
}
.dropdown-menu.select-replacement-ul {
  top: -3px;
  left: 29px;
  min-width: 202px;
  border-color: 1px solid #ddddde !important;
  -webkit-box-shadow: 0 0 12px rgba(0,0,0,0.175) !important;
          box-shadow: 0 0 12px rgba(0,0,0,0.175) !important;
  min-height: 60px;
}
.dropdown-menu li span.default {
  padding: 0 15px;
}
.dropdown-menu li a {
  padding: 5px 15px !important;
  color: #54565b !important;
}
.field {
  display: inline-block;
  max-width: 380px;
  width: 50%;
}
.select-replace {
  position: relative;
}
.select-replace select {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 1rem;
  line-height: 1;
  background: #fff;
  border: 0;
  border-radius: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select-replace .select-replace__value {
  vertical-align: text-top;
  display: block;
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
  word-break: break-all;
  text-align: left;
  font-size: inherit;
  padding-top: 8px;
  padding-bottom: 8px;
  max-width: none;
}
.field .select-replace .select-replace__value {
  padding: 0 50px 0 20px;
  margin-top: 0;
  height: 50px;
  line-height: 50px;
  border: 1px solid #a9aaad;
  font-size: 16px;
  color: #54565b;
  width: 100%;
}
.select-replace .select-replace__value:after {
  background-image: url("/images/chevron-down.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
  width: 12px;
  height: 8px;
  pointer-events: none;
  opacity: 0.35;
}
.no-svg .select-replace .select-replace__value:after {
  background-image: url("/images/chevron-down.png");
}
.form-field.error .select-replace .select-replace__value {
  color: #54565b;
  border-color: #f44;
}
.select-replace select:hover + .select-replace__value:after,
.select-replace select:focus + .select-replace__value:after {
  opacity: 1;
}
.select-replace select[disabled] + .select-replace__value:after,
.select-replace select[disabled]:hover + .select-replace__value:after,
.select-replace select[disabled]:focus + .select-replace__value:after {
  opacity: 0.35;
}
.select-replace--disabled {
  background: #f9f9fa;
  border-color: #e0e0e2;
  color: #98999c;
}
.chosen-container {
  font-size: 1rem;
  width: auto !important;
  display: block;
  margin-top: 15px;
}
.chosen-container-multi .chosen-choices,
.chosen-container-single .chosen-single {
  background: #fff;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
  line-height: 48px;
  height: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.chosen-container-multi .chosen-choices div b,
.chosen-container-single .chosen-single div b {
  margin: 13px auto;
  height: 20px;
}
.form-field.error .chosen-container-multi .chosen-choices,
.form-field.error .chosen-container-single .chosen-single {
  color: #54565b;
  border-color: #f44;
}
.chosen-container-active.chosen-with-drop .chosen-single {
  background: #fff;
}
.chosen-container-multi .chosen-choices,
.chosen-container-single .chosen-single,
.chosen-container-active .chosen-single,
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #a9aaad;
}
.chosen-container-multi .chosen-choices {
  padding-left: 8px;
}
.chosen-container-multi .chosen-choices li.search-field {
  padding-left: 10px;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  color: #54565b;
}
.chosen-container-multi .chosen-choices:after {
  position: absolute;
  display: block;
  content: '';
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  pointer-events: none;
  background-image: url("/images/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 12px;
  width: 12px;
  height: 8px;
  margin: 0;
  opacity: 0.35;
}
.chosen-container-multi:hover .chosen-choices:after {
  opacity: 1;
  background-position: 0 0;
}
.chosen-container-single .chosen-single div,
.chosen-container-active .chosen-single div {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  pointer-events: none;
}
.chosen-container-single .chosen-single div b,
.chosen-container-active .chosen-single div b {
  background-image: url("/images/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 12px;
  display: block;
  width: 12px;
  height: 8px;
  margin: 0;
  opacity: 0.35;
}
.chosen-container-single:hover .chosen-single div b,
.chosen-container-active.chosen-with-drop .chosen-single div b {
  opacity: 1;
  background-position: 0 0;
}
.chosen-container .chosen-drop {
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
.chosen-container-multi .chosen-choices li.search-choice {
  font-size: 1rem;
  line-height: 26px;
  padding: 7px 25px 7px 10px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  padding: 0;
  height: auto;
  z-index: 999999;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0;
  *zoom: 1;
}
.modal:before,
.modal:after {
  content: '';
  display: table;
}
.modal:after {
  clear: both;
}
.modal.show {
  visibility: visible;
  opacity: 1;
  display: table !important;
  overflow-y: auto;
  max-height: 100%;
}
.modal p {
  padding: 0;
  margin: 20px 0 0;
  color: #54565b;
  font-size: 16px;
}
.modal p:first-child {
  margin-top: 0;
}
@media (max-width: 500px) {
  .modal {
    max-width: 100%;
    min-width: 100%;
    margin: 0px;
    height: 100% !important;
    width: 100%;
    padding: 28px 20px 28px 20px;
  }
  .modal h4 {
    padding-right: 58px;
  }
  .modal .close_x {
    right: 20px;
  }
}
.modal .close_x {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 26px;
  top: 26px;
  color: #a9aaad;
}
.modal .close_x:hover {
  background-position: bottom center;
  color: #cbccce;
}
.modal div.modal-heading {
  padding: 35px 30px;
  margin: 0;
  border-bottom: 2px solid #eee;
  color: #54565b;
}
.modal div.modal-heading.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 560px) {
  .modal div.modal-heading.flex {
    display: block;
  }
}
.modal div.modal-heading strong {
  display: block;
  margin-bottom: 15px;
  font-size: 24px;
}
.modal div.modal-heading p {
  font-size: 16px;
  line-height: 1.6;
}
.modal .modal-heading__title,
.modal .modal-heading__actions {
  vertical-align: bottom;
}
.modal .modal-heading__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.modal .modal-heading__actions {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 560px) {
  .modal .modal-heading__actions {
    margin-top: 20px;
    text-align: right;
  }
}
.modal div.modal-content {
  padding: 0 30px;
  margin: 0;
}
.modal div.modal-content.with-padding {
  padding-top: 25px;
  padding-bottom: 25px;
}
.modal div.modal-content div.form-container {
  width: 100%;
  padding: 0;
}
.modal div.modal-footer {
  padding: 40px 30px;
  margin: 0;
  clear: both;
  border-top: 2px solid #eee;
}
.modal div.modal-footer button,
.modal div.modal-footer a.button {
  padding: 0 30px;
  margin: 0 0 0 20px;
  display: block;
  float: right;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background: #ebebeb;
  border: 1px solid #cbccce;
  font-size: 16px;
  font-weight: 700;
  color: #54565b;
  text-decoration: none;
}
.modal div.modal-footer button:hover,
.modal div.modal-footer a.button:hover {
  cursor: pointer;
  background: #f3f3f3;
  border-color: #e0e0e2;
}
.modal div.modal-footer button:hover:active,
.modal div.modal-footer a.button:hover:active {
  background: #ddd;
}
.modal div.modal-footer button.yellow,
.modal div.modal-footer a.button.yellow {
  background: #e2231a;
  border-color: #b51c15;
  color: #fff;
}
.modal div.modal-footer button.yellow:hover,
.modal div.modal-footer a.button.yellow:hover {
  background: #cb1f17;
}
.modal div.modal-footer button.yellow:active,
.modal div.modal-footer a.button.yellow:active {
  background: #b51c15;
}
.modal div.modal-footer button.disabled,
.modal div.modal-footer a.button.disabled,
.modal div.modal-footer button.disabled:hover,
.modal div.modal-footer a.button.disabled:hover {
  border-color: #ccc;
  color: #999;
  background: #f0f0f0;
}
.modal div.modal-footer button.left,
.modal div.modal-footer a.button.left {
  float: left;
  margin-left: 0;
}
.modal div.modal-footer button.left + .modal div.modal-footer button.left,
.modal div.modal-footer a.button.left + .modal div.modal-footer a.button.left {
  margin-left: 30px;
}
.modal div.modal-footer button.right,
.modal div.modal-footer a.button.right {
  margin-right: 30px;
}
.modal div.modal-footer button.square,
.modal div.modal-footer a.button.square {
  border-radius: 0;
}
.modal div.modal-heading + div.modal-footer {
  border-top: none;
}
.modal__inner {
  margin: 0 auto;
  max-width: 600px;
  background: #fff;
  position: relative;
  overflow-y: auto;
  max-height: 100vh;
}
.modal__inner.wide {
  max-width: 720px;
}
.modal__inner.extra-wide {
  max-width: 840px;
}
form.modal__form {
  margin: 0 !important;
  padding: 0 !important;
}
form.modal__form .modal-footer {
  margin-top: 25px;
}
#modal_overlay,
.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  background: rgba(0,0,0,0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  visibility: visible;
}
#modal_overlay.force_hide,
.modal-overlay.force_hide {
  opacity: 0 !important;
  visibility: hidden !important;
}
.modal-download-link,
.modal-download-error {
  margin-top: 20px;
}
.modal-download-error {
  color: #f44;
}
.u-margin-top {
  margin-top: 40px !important;
}
.u-no-margin-top {
  margin-top: 0 !important;
}
.u-no-margin-left {
  margin-left: 0 !important;
}
.u-no-margin-right {
  margin-right: 0 !important;
}
.u-pull-up {
  margin-bottom: -50px !important;
}
.u-pull-up-min {
  margin-bottom: -30px !important;
}

