.dp-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
}

.dp {
  position: relative;
  background: #FFF;
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.25);
  line-height: 1.4;
  border-radius: 4px;
  max-height: 400px;
  z-index: 1000;
  padding-top: 6px;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.dp:before {
  content: ' ';
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #3B99FC;
  background: linear-gradient(-90deg, #3B99FC 0%, #8AEFC8 100%);
}

.dp-permanent .dp {
  padding-top: 0;
  border: 1px solid #EEE;
  box-shadow: none;
}

.dp-permanent .dp:before {
  display: none;
}

.dp-cal {
  min-height: 300px;
}

.dp-below {
  position: absolute;
  font-size: 0.8em;
  width: 400px;
  max-width: 100vw;
}

.dp-permanent {
  position: relative;
  font-size: 0.8em;
  width: 400px;
  max-width: 100vw;
}

.dp-permanent .dp{
  z-index: 0;
}

.dp-modal .dp {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 600px;
  width: calc(100% - 4em);
  transform: translate(-50%, -50%);
  animation: slide-up 0.3s forwards;
}

.dp-months {
  padding: 24px;
}

.dp-years {
  box-sizing: border-box;
  max-height: 400px;
  padding: 8px 0;
  overflow: auto !important; /* HACK for Chrome on Android */
}

.dp-cal-month,
.dp-cal-year,
.dp-day,
.dp-month,
.dp-year {
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  position: relative;
  color: #3B404D;
  border-radius: 2px;
  border: 0;
  background: transparent;
}

.dp-cal-header {
  position: relative;
  text-align: center;
  padding-bottom: 16px;
  background: #f5f5f5;
}

.dp-next,
.dp-prev {
  position: absolute;
  width: 30px;
  height: 30px;
  overflow: hidden;
  top: 14px;
  color: #777;
  border-radius: 2px;
  border: 0;
  background: transparent;
}

.dp-next:focus,
.dp-prev:focus,
.dp-next:hover,
.dp-prev:hover {
  outline: none;
  color: inherit;
}

.dp-prev {
  left: 24px;
}

.dp-next {
  right: 24px;
}

.dp-prev:before,
.dp-next:before {
  content: '';
  border: 2px solid;
  width: 10px;
  height: 10px;
  display: inline-block;
  transform: rotate(-45deg);
  transition: border-color 0.2s;
  margin: 9px 0 40px 4px;
}

.dp-prev:before {
  border-right: 0;
  border-bottom: 0;
}

.dp-next:before {
  border-left: 0;
  border-top: 0;
  margin-left: 0;
  margin-right: 4px;
}

.dp-cal-month,
.dp-cal-year {
  display: inline-block;
  font-size: 1.4em;
  padding: 16px 8px 8px;
  outline: none;
}

.dp-cal-footer {
  text-align: center;
  background: #f5f5f5;
}

.dp-day-today:after {
  content: '';
  height: 0;
  width: 0;
  border: 7px solid #227BD7;
  border-bottom-color: transparent;
  border-left-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
}

.dp-close,
.dp-clear,
.dp-today {
  box-sizing: border-box;
  display: inline-block;
  width: 33%;
  padding: 8px;
  text-decoration: none;
  color: inherit;
  border: 0;
  background: transparent;
}

.dp-permanent .dp-close,
.dp-permanent .dp-clear {
  display: none;
}

.dp-close:active,
.dp-clear:active,
.dp-today:active,
.dp-next:active,
.dp-prev:active,
.dp-cal-month:active,
.dp-cal-year:active {
  background: #75BCFC;
  color: white;
}

@media screen and (min-device-width: 1200px) {
  .dp-close:hover,
  .dp-close:focus,
  .dp-clear:hover,
  .dp-clear:focus,
  .dp-today:hover,
  .dp-today:focus,
  .dp-next:hover,
  .dp-next:focus,
  .dp-prev:hover,
  .dp-prev:focus,
  .dp-cal-month:focus,
  .dp-cal-month:hover,
  .dp-cal-year:hover,
  .dp-cal-year:focus {
    background: #75BCFC;
    color: white;
  }
}

.dp-col-header,
.dp-day {
  width: 14.28571429%;
  display: inline-block;
  padding: 8px;
  text-align: center;
}

.dp-col-header {
  color: #AAA;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.8em;
  padding: 8px 0;
}

.dp-month {
  width: 33%;
  display: inline-block;
  padding: 8px;
}

.dp-year {
  display: block;
  padding: 8px 40px;
  width: 100%;
}

.dp-edge-day {
  color: #AAA;
}

.dp-day:hover,
.dp-month:hover,
.dp-year:hover,
.dp-current:focus,
.dp-current,
.dp-day:focus,
.dp-month:focus,
.dp-year:focus {
  outline: none;
  background: #75BCFC;
  color: white;
}

.dp-selected:hover,
.dp-selected:focus,
.dp-selected {
  background: #3B99FC;
  color: #FFF;
}

.dp-day-disabled {
  background: transparent;
  color: #DDD;
}

.dp-day-disabled:focus,
.dp-day-disabled:hover {
  background: #DDD;
}

.dp-focuser {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
}

/* Responsive overrides */
@media (max-width: 480px), (max-height: 480px) {
  .dp-modal .dp {
    font-size: 0.9em;
    width: auto;
    width: 100%;
  }

  .dp-day-of-week,
  .dp-day {
    padding: 8px;
  }
}

@keyframes slide-up {
  0% {
    transform: translate(-50%, 100%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@font-face {
  font-family: 'fps';
  src: url(fonts/icons.eot);
  src: url(fonts/icons.eot?#iefix) format('embedded-opentype'), url(fonts/icons.woff) format('woff'), url(fonts/icons.ttf) format('truetype'), url(fonts/icons.svg#Glyphter) format('svg');
  font-weight: normal;
  font-style: normal;
}
[class*='fps-icon-']:before {
  display: inline-block;
  font-family: 'fps';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  padding-top: 1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fps-icon-car:before {
  content: '\0041';
}
.fps-icon-plane:before {
  content: '\0042';
}
.fps-icon-train:before {
  content: '\0044';
  padding-top: 3px;
}
.fps-icon-sun:before {
  content: '\0047';
}
.fps-icon-rain:before {
  content: '\0049';
}
.fps-icon-temperature:before {
  content: '\004d';
  padding-top: 2px;
}
/*************************************
************** GRID ******************
*************************************/
.l-gpad7 {
  padding-left: 7px;
}
.l-gpad20 {
  padding-left: 20px;
}
.r-gpad7 {
  padding-right: 7px;
}
.r-gpad20 {
  padding-right: 20px;
}
.gtemp {
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpad15 {
  padding: 0 15px;
}
.gcpad15 {
  margin-left: -15px;
  margin-right: -15px;
}
.gpad {
  padding: 0 10px;
}
.gcpad {
  margin-left: -10px;
  margin-right: -10px;
}
.gpad5 {
  padding: 0 5px;
}
.gcpad5 {
  margin-left: -5px;
  margin-right: -5px;
}
.gpad1 {
  padding: 0 2px;
}
.gcpad1 {
  margin-left: -2px;
  margin-right: -2px;
}
.gantypad {
  margin-left: -1px;
}
.gcantypad {
  margin-left: 1px;
}
.g11_12 {
  width: 91.66666667%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g10_12 {
  width: 83.33333333%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g9_12 {
  width: 75%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g8_12 {
  width: 66.66666667%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g7_12 {
  width: 58.33333333%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g6_12 {
  width: 50%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g5_12 {
  width: 41.66666667%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g4_12 {
  width: 33.33333333%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g3_12 {
  width: 25%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g2_12 {
  width: 16.66666667%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g1_12 {
  width: 8.33333333%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpush11_12 {
  margin-right: 91.66666667%;
}
.gpush10_12 {
  margin-right: 83.33333333%;
}
.gpush9_12 {
  margin-right: 75%;
}
.gpush8_12 {
  margin-right: 66.66666667%;
}
.gpush7_12 {
  margin-right: 58.33333333%;
}
.gpush6_12 {
  margin-right: 50%;
}
.gpush5_12 {
  margin-right: 41.66666667%;
}
.gpush4_12 {
  margin-right: 33.33333333%;
}
.gpush3_12 {
  margin-right: 25%;
}
.gpush2_12 {
  margin-right: 16.66666667%;
}
.gpush1_12 {
  margin-right: 8.33333333%;
}
.gpull11_12 {
  margin-left: 92.5%;
}
.gpull10_12 {
  margin-left: 84.16666667%;
}
.gpull9_12 {
  margin-left: 75.83333333%;
}
.gpull8_12 {
  margin-left: 67.5%;
}
.gpull7_12 {
  margin-left: 59.16666667%;
}
.gpull6_12 {
  margin-left: 50.83333333%;
}
.gpull5_12 {
  margin-left: 42.5%;
}
.gpull4_12 {
  margin-left: 34.16666667%;
}
.gpull3_12 {
  margin-left: 25.83333333%;
}
.gpull2_12 {
  margin-left: 17.5%;
}
.gpull1_12 {
  margin-left: 9.16666667%;
}
.g10_11 {
  width: 90.90909091%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g9_11 {
  width: 81.81818182%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g8_11 {
  width: 72.72727273%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g7_11 {
  width: 63.63636364%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g6_11 {
  width: 54.54545455%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g5_11 {
  width: 45.45454545%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g4_11 {
  width: 36.36363636%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g3_11 {
  width: 27.27272727%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g2_11 {
  width: 18.18181818%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g1_11 {
  width: 9.09090909%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpush10_11 {
  margin-right: 90.90909091%;
}
.gpush9_11 {
  margin-right: 81.81818182%;
}
.gpush8_11 {
  margin-right: 72.72727273%;
}
.gpush7_11 {
  margin-right: 63.63636364%;
}
.gpush6_11 {
  margin-right: 54.54545455%;
}
.gpush5_11 {
  margin-right: 45.45454545%;
}
.gpush4_11 {
  margin-right: 36.36363636%;
}
.gpush3_11 {
  margin-right: 27.27272727%;
}
.gpush2_11 {
  margin-right: 18.18181818%;
}
.gpush1_11 {
  margin-right: 9.09090909%;
}
.gpull10_11 {
  margin-left: 91.74242424%;
}
.gpull9_11 {
  margin-left: 82.65151515%;
}
.gpull8_11 {
  margin-left: 73.56060606%;
}
.gpull7_11 {
  margin-left: 64.46969697%;
}
.gpull6_11 {
  margin-left: 55.37878788%;
}
.gpull5_11 {
  margin-left: 46.28787879%;
}
.gpull4_11 {
  margin-left: 37.1969697%;
}
.gpull3_11 {
  margin-left: 28.10606061%;
}
.gpull2_11 {
  margin-left: 19.01515152%;
}
.gpull1_11 {
  margin-left: 9.92424242%;
}
.g9_10 {
  width: 90%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g8_10 {
  width: 80%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g7_10 {
  width: 70%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g6_10 {
  width: 60%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g5_10 {
  width: 50%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g4_10 {
  width: 40%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g3_10 {
  width: 30%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g2_10 {
  width: 20%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g1_10 {
  width: 10%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpush9_10 {
  margin-right: 90%;
}
.gpush8_10 {
  margin-right: 80%;
}
.gpush7_10 {
  margin-right: 70%;
}
.gpush6_10 {
  margin-right: 60%;
}
.gpush5_10 {
  margin-right: 50%;
}
.gpush4_10 {
  margin-right: 40%;
}
.gpush3_10 {
  margin-right: 30%;
}
.gpush2_10 {
  margin-right: 20%;
}
.gpush1_10 {
  margin-right: 10%;
}
.gpull9_10 {
  margin-left: 90.83333333%;
}
.gpull8_10 {
  margin-left: 80.83333333%;
}
.gpull7_10 {
  margin-left: 70.83333333%;
}
.gpull6_10 {
  margin-left: 60.83333333%;
}
.gpull5_10 {
  margin-left: 50.83333333%;
}
.gpull4_10 {
  margin-left: 40.83333333%;
}
.gpull3_10 {
  margin-left: 30.83333333%;
}
.gpull2_10 {
  margin-left: 20.83333333%;
}
.gpull1_10 {
  margin-left: 10.83333333%;
}
.g8_9 {
  width: 88.88888889%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g7_9 {
  width: 77.77777778%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g6_9 {
  width: 66.66666667%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g5_9 {
  width: 55.55555556%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g4_9 {
  width: 44.44444444%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g3_9 {
  width: 33.33333333%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g2_9 {
  width: 22.22222222%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g1_9 {
  width: 11.11111111%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpush8_9 {
  margin-right: 88.88888889%;
}
.gpush7_9 {
  margin-right: 77.77777778%;
}
.gpush6_9 {
  margin-right: 66.66666667%;
}
.gpush5_9 {
  margin-right: 55.55555556%;
}
.gpush4_9 {
  margin-right: 44.44444444%;
}
.gpush3_9 {
  margin-right: 33.33333333%;
}
.gpush2_9 {
  margin-right: 22.22222222%;
}
.gpush1_9 {
  margin-right: 11.11111111%;
}
.gpull8_9 {
  margin-left: 89.72222222%;
}
.gpull7_9 {
  margin-left: 78.61111111%;
}
.gpull6_9 {
  margin-left: 67.5%;
}
.gpull5_9 {
  margin-left: 56.38888889%;
}
.gpull4_9 {
  margin-left: 45.27777778%;
}
.gpull3_9 {
  margin-left: 34.16666667%;
}
.gpull2_9 {
  margin-left: 23.05555556%;
}
.gpull1_9 {
  margin-left: 11.94444444%;
}
.g7_8 {
  width: 87.5%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g6_8 {
  width: 75%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g5_8 {
  width: 62.5%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g4_8 {
  width: 50%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g3_8 {
  width: 37.5%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g2_8 {
  width: 25%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g1_8 {
  width: 12.5%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpush7_8 {
  margin-right: 87.5%;
}
.gpush6_8 {
  margin-right: 75%;
}
.gpush5_8 {
  margin-right: 62.5%;
}
.gpush4_8 {
  margin-right: 50%;
}
.gpush3_8 {
  margin-right: 37.5%;
}
.gpush2_8 {
  margin-right: 25%;
}
.gpush1_8 {
  margin-right: 12.5%;
}
.gpull7_8 {
  margin-left: 88.33333333%;
}
.gpull6_8 {
  margin-left: 75.83333333%;
}
.gpull5_8 {
  margin-left: 63.33333333%;
}
.gpull4_8 {
  margin-left: 50.83333333%;
}
.gpull3_8 {
  margin-left: 38.33333333%;
}
.gpull2_8 {
  margin-left: 25.83333333%;
}
.gpull1_8 {
  margin-left: 13.33333333%;
}
.g6_7 {
  width: 85.71428571%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g5_7 {
  width: 71.42857143%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g4_7 {
  width: 57.14285714%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g3_7 {
  width: 42.85714286%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g2_7 {
  width: 28.57142857%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g1_7 {
  width: 14.28571429%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpush6_7 {
  margin-right: 85.71428571%;
}
.gpush5_7 {
  margin-right: 71.42857143%;
}
.gpush4_7 {
  margin-right: 57.14285714%;
}
.gpush3_7 {
  margin-right: 42.85714286%;
}
.gpush2_7 {
  margin-right: 28.57142857%;
}
.gpush1_7 {
  margin-right: 14.28571429%;
}
.gpull6_7 {
  margin-left: 86.54761905%;
}
.gpull5_7 {
  margin-left: 72.26190476%;
}
.gpull4_7 {
  margin-left: 57.97619048%;
}
.gpull3_7 {
  margin-left: 43.69047619%;
}
.gpull2_7 {
  margin-left: 29.4047619%;
}
.gpull1_7 {
  margin-left: 15.11904762%;
}
.g5_6 {
  width: 83.33333333%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g4_6 {
  width: 66.66666667%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g3_6 {
  width: 50%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g2_6 {
  width: 33.33333333%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g1_6 {
  width: 16.66666667%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpush5_6 {
  margin-right: 83.33333333%;
}
.gpush4_6 {
  margin-right: 66.66666667%;
}
.gpush3_6 {
  margin-right: 50%;
}
.gpush2_6 {
  margin-right: 33.33333333%;
}
.gpush1_6 {
  margin-right: 16.66666667%;
}
.gpull5_6 {
  margin-left: 84.16666667%;
}
.gpull4_6 {
  margin-left: 67.5%;
}
.gpull3_6 {
  margin-left: 50.83333333%;
}
.gpull2_6 {
  margin-left: 34.16666667%;
}
.gpull1_6 {
  margin-left: 17.5%;
}
.g4_5 {
  width: 80%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g3_5 {
  width: 60%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g2_5 {
  width: 40%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g1_5 {
  width: 20%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpush4_5 {
  margin-right: 80%;
}
.gpush3_5 {
  margin-right: 60%;
}
.gpush2_5 {
  margin-right: 40%;
}
.gpush1_5 {
  margin-right: 20%;
}
.gpull4_5 {
  margin-left: 80.83333333%;
}
.gpull3_5 {
  margin-left: 60.83333333%;
}
.gpull2_5 {
  margin-left: 40.83333333%;
}
.gpull1_5 {
  margin-left: 20.83333333%;
}
.g3_4 {
  width: 75%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g2_4 {
  width: 50%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g1_4 {
  width: 25%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpush3_4 {
  margin-right: 75%;
}
.gpush2_4 {
  margin-right: 50%;
}
.gpush1_4 {
  margin-right: 25%;
}
.gpull3_4 {
  margin-left: 75.83333333%;
}
.gpull2_4 {
  margin-left: 50.83333333%;
}
.gpull1_4 {
  margin-left: 25.83333333%;
}
.g2_3 {
  width: 66.66666667%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.g1_3 {
  width: 33.33333333%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpush2_3 {
  margin-right: 66.66666667%;
}
.gpush1_3 {
  margin-right: 33.33333333%;
}
.gpull2_3 {
  margin-left: 67.5%;
}
.gpull1_3 {
  margin-left: 34.16666667%;
}
.g1_2 {
  width: 50%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}
.gpush1_2 {
  margin-right: 50%;
}
.gpull1_2 {
  margin-left: 50.83333333%;
}
.gfull {
  float: left;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.gc:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('/static//fonts/fa/fontawesome-webfont.eot?v=4.6.3');
  src: url('/static//fonts/fa/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('/static//fonts/fa/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('/static//fonts/fa/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('/static//fonts/fa/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('/static//fonts/fa/fontawesome-webfont.svg?v=4.6.3#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;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.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: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.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 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-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 {
  -ms-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;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.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-pp: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-resistance: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";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.lg-map-wrapper {
  position: relative;
  margin: 0 auto;
}
.lg-map-wrapper #lg-map {
  float: left;
  clear: both;
}
.lg-map-wrapper .lg-map-text {
  float: left;
  width: 500px;
  height: 380px;
  overflow: auto;
  margin-bottom: 40px;
  padding: 10px 20px;
}
.lg-map-wrapper .lg-map-text img {
  float: left;
  padding-right: 5px;
  padding-top: 2px;
}
.lg-map-wrapper .lg-map-text ul {
  margin-left: 30px;
}
.tooltip {
  position: fixed;
  display: none;
  padding: 10px 15px;
  background: #f2f2f2;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #262626;
  -moz-border-radius: 4px;
  /* FF1-3.6 */
  -webkit-border-radius: 4px;
  /* Saf3-4, iOS 1-3.2, Android <1.6 */
  border-radius: 4px 4px 4px 4px;
  /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */
  /* useful if you don't want a bg color from leaking outside the border: */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.mouse-position {
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 10px;
}
/**************************************/
/*************** LAYOUT ***************/
/**************************************/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.container {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 610px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 991px) {
  .container {
    max-width: 1302px;
    width: 980px;
    width: calc(100%);
  }
}
@media print {
  .container {
    max-width: 100%;
  }
}
.primary-content {
  padding: 34px 0 0 0;
  width: 100%;
  display: block;
}
@media screen and (min-width: 991px) {
  .primary-content {
    float: right;
    padding: 34px 0 0 15px;
    width: 640px;
    width: calc(100% - 300px);
  }
}
@media print {
  .primary-content {
    padding: 0;
  }
}
.primary-content p {
  margin: 1rem 0;
}
.primary-content p a {
  color: #779ecb;
}
.secondary-content {
  width: 100%;
  padding-top: 0;
  display: block;
}
@media screen and (min-width: 991px) {
  .secondary-content {
    float: left;
    padding-top: 34px;
    width: 300px;
  }
}
@media print {
  .secondary-content {
    display: none;
  }
}
.top-content {
  padding-top: 34px;
}
.container-nonpad {
  max-width: 992px;
  margin: 0 auto;
}
.bookmarks-wrapper .bookmarks-tab {
  line-height: 27px;
  padding: 0px 23px;
  font-size: 14px;
  background-color: #eaeaea;
  border: 1px solid #b9b9b9;
  display: inline-block;
  margin-bottom: -1px;
}
.bookmarks-wrapper .bookmarks-tab i {
  color: #8c8b8d;
}
@media screen and (min-width: 991px) {
  .bookmarks-wrapper .bookmarks-tab {
    font-size: 18px;
    line-height: 33px;
  }
}
@media print {
  .bookmarks-wrapper .bookmarks-tab {
    display: none;
  }
}
.bookmarks-wrapper .bookmarks-tab-active {
  background-color: #fff;
  bottom: 0px;
  position: relative;
  border-bottom: none;
  z-index: 2;
  height: 28px;
}
@media screen and (min-width: 991px) {
  .bookmarks-wrapper .bookmarks-tab-active {
    height: 34px;
  }
}
.bookmarks-wrapper .bookmarks-container {
  border: 1px solid #b9b9b9;
  padding: 45px 25px;
  position: relative;
}
.bookmarks-wrapper .bookmarks-container h5 {
  color: black;
}
@media print {
  .bookmarks-wrapper .bookmarks-container {
    border: none;
    padding: 0;
  }
}
.bookmarks-wrapper .bookmarks-gallery-container {
  padding: 5px;
}
@media print {
  .bookmarks-wrapper .bookmarks-gallery-container {
    padding: 0;
  }
}
.bookmarks-wrapper .bookmarks-gallery-container .listing-gallery {
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 992px) {
  .bookmarks-wrapper .bookmarks-gallery-container .listing-gallery {
    background-size: initial;
  }
}
@media screen and (min-width: 992px) {
  .bookmarks-wrapper .bookmarks-gallery-container {
    padding: 25px;
  }
}
.bookmarks-wrapper .bookmarks-legend {
  font-size: 10px;
  text-align: right;
  margin-top: -30px;
  margin-bottom: 30px;
}
.popup-container {
  width: 900px;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 999999;
  display: none;
  background-color: white;
}
.popup-container .__scroll {
  overflow: hidden;
}
.popup-container .__scroll .form-info-box-body {
  height: 75vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.popup-container .info-box {
  margin: 0;
}
.popup-container-closer {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: #9b203f;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  font-weight: 900;
  color: white;
  cursor: pointer;
}
.form-info-box-title {
  padding: 20px 25px;
  font-size: 22px;
  color: #9b203f;
  background-color: #f4f4f4;
}
.form-info-box-body {
  padding: 25px;
}
.form-info-box-body .__note {
  margin-bottom: 1em;
}
.auth-info-box-body {
  padding: 25px;
}
ul.errors {
  color: #f00;
  padding: 0;
}
/**************************************/
/*************** BASIC ****************/
/**************************************/
html,
body {
  height: 100%;
}
footer {
  margin-top: 40px;
}
.wrapper {
  min-height: 100%;
  margin-top: -1px;
  margin-left: auto;
  margin-right: auto;
}
.wrapper:after {
  content: "";
  display: block;
  width: 100%;
}
body {
  color: black;
  margin: 0;
  /* normalize */
  background: #fff;
  overflow-x: hidden;
}
button,
input,
textarea,
select,
body {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 15px;
}
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="password"],
input[type="number"],
button,
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h7 {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  color: #9b203f;
  font-weight: 400;
}
h1 {
  font-size: 24px;
}
@media (min-width: 992px) {
  h1 {
    font-size: 40px;
  }
}
h2 {
  font-size: 18px;
}
@media (min-width: 992px) {
  h2 {
    font-size: 34px;
  }
}
h3 {
  font-size: 16px;
}
@media (min-width: 992px) {
  h3 {
    font-size: 30px;
  }
}
h4 {
  font-size: 16px;
}
@media (min-width: 992px) {
  h4 {
    font-size: 25px;
  }
}
h5 {
  font-size: 16px;
}
@media (min-width: 992px) {
  h5 {
    font-size: 20px;
  }
}
.h6,
h6 {
  font-size: 17px;
}
.h-ex-lh {
  line-height: 1.375em;
  margin-top: -0.35em;
}
a {
  color: black;
}
img {
  max-width: 100%;
  border: none;
}
ul {
  list-style-type: none;
}
button {
  cursor: pointer;
}
.link-btn,
a {
  text-decoration: none;
}
.no-underline {
  text-decoration: none;
}
.underline-hover:hover {
  text-decoration: underline;
}
.link-btn {
  cursor: pointer;
  border: none;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.btn-green {
  background-color: #5fcf80;
  padding: 15px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
}
.btn-red {
  background-color: #9b203f;
  padding: 15px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
}
.btn-empty-green {
  background-color: #fff;
  padding: 15px 20px;
  color: #5fcf80;
  border: 2px solid #5fcf80;
  font-size: 15px;
  cursor: pointer;
}
.btn-wide {
  padding: 10px 30px;
}
.btn-full {
  width: 100%;
  position: static;
}
.btn-round {
  border-radius: 4px;
}
.icon-link {
  display: inline-block;
  vertical-align: top;
}
.icon-link-hover {
  display: inline-block;
  padding: 2px 3px 4px;
  margin-bottom: -5px;
  border: solid 1px transparent;
}
.icon-link-hover:hover {
  border-color: #4d62a1;
}
ins {
  text-decoration: none;
  font-style: italic;
  color: #000;
}
del {
  color: #9b203f;
}
pre {
  margin: 0;
}
p,
.p {
  line-height: 20px;
  margin: 0;
}
.short-text {
  line-height: 1.5em;
}
.small,
small {
  font-size: 14px;
}
.smaller {
  font-size: 12px;
}
.font-light-grey {
  color: #b9b9b9;
}
.font-grey {
  color: #7f7f7f;
}
.font-dark-grey {
  color: #2c2c2c;
}
.font-red {
  color: #9b203f;
}
.font-white {
  color: #fff;
}
.font-blue {
  color: #779ecb;
}
.font-blue-2 {
  color: #88a9d0;
}
.font-green {
  color: #5fcf80;
}
.font-ultra-bold {
  font-weight: 900;
}
b,
.font-bold {
  font-weight: 700;
}
.font-normal {
  font-weight: 400;
}
.font-light {
  font-weight: 300;
}
.font-serif {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}
.font-small {
  font-size: 14px;
}
.font-big {
  font-size: 21px;
}
.font-bigger {
  font-size: 24px;
}
.text-shrink {
  letter-spacing: -1px;
}
.mt-s05 {
  margin-top: 5px;
}
.mb-s05 {
  margin-bottom: 5px;
}
.ml-s05 {
  margin-left: 5px;
}
.mr-s05 {
  margin-right: 5px;
}
.pt-s05 {
  padding-top: 5px;
}
.pb-s05 {
  padding-bottom: 5px;
}
.pl-s05 {
  padding-left: 5px;
}
.pr-s05 {
  padding-right: 5px;
}
.mt-s0 {
  margin-top: 0;
}
.mb-s0 {
  margin-bottom: 0;
}
.ml-s0 {
  margin-left: 0;
}
.mr-s0 {
  margin-right: 0;
}
.pt-s0 {
  padding-top: 0;
}
.pb-s0 {
  padding-bottom: 0;
}
.pl-s0 {
  padding-left: 0;
}
.pr-s0 {
  padding-right: 0;
}
.mt-s1 {
  margin-top: 10px;
}
.mb-s1 {
  margin-bottom: 10px;
}
.ml-s1 {
  margin-left: 10px;
}
.mr-s1 {
  margin-right: 10px;
}
.pt-s1 {
  padding-top: 10px;
}
.pb-s1 {
  padding-bottom: 10px;
}
.pl-s1 {
  padding-left: 10px;
}
.pr-s1 {
  padding-right: 10px;
}
.mt-s15 {
  margin-top: 15px;
}
.mb-s15 {
  margin-bottom: 15px;
}
.ml-s15 {
  margin-left: 15px;
}
.mr-s15 {
  margin-right: 15px;
}
.pt-s15 {
  padding-top: 15px;
}
.pb-s15 {
  padding-bottom: 15px;
}
.pl-s15 {
  padding-left: 15px;
}
.pr-s15 {
  padding-right: 15px;
}
.mt-s2 {
  margin-top: 20px;
}
.mb-s2 {
  margin-bottom: 20px;
}
.ml-s2 {
  margin-left: 20px;
}
.mr-s2 {
  margin-right: 20px;
}
.pt-s2 {
  padding-top: 20px;
}
.pb-s2 {
  padding-bottom: 20px;
}
.pl-s2 {
  padding-left: 20px;
}
.pr-s2 {
  padding-right: 20px;
}
.mt-s3 {
  margin-top: 30px;
}
.mb-s3 {
  margin-bottom: 30px;
}
.ml-s3 {
  margin-left: 30px;
}
.mr-s3 {
  margin-right: 30px;
}
.pt-s3 {
  padding-top: 30px;
}
.pb-s3 {
  padding-bottom: 30px;
}
.pl-s3 {
  padding-left: 30px;
}
.pr-s3 {
  padding-right: 30px;
}
.mt-s4 {
  margin-top: 40px;
}
.mb-s4 {
  margin-bottom: 40px;
}
.ml-s4 {
  margin-left: 40px;
}
.mr-s4 {
  margin-right: 40px;
}
.pt-s4 {
  padding-top: 40px;
}
.pb-s4 {
  padding-bottom: 40px;
}
.pl-s4 {
  padding-left: 40px;
}
.pr-s4 {
  padding-right: 40px;
}
.mt-s5 {
  margin-top: 50px;
}
.mb-s5 {
  margin-bottom: 50px;
}
.ml-s5 {
  margin-left: 50px;
}
.mr-s5 {
  margin-right: 50px;
}
.pt-s5 {
  padding-top: 50px;
}
.pb-s5 {
  padding-bottom: 50px;
}
.pl-s5 {
  padding-left: 50px;
}
.pr-s5 {
  padding-right: 50px;
}
.mt-s65 {
  margin-top: 65px;
}
.mb-s65 {
  margin-bottom: 65px;
}
.ml-s65 {
  margin-left: 65px;
}
.mr-s65 {
  margin-right: 65px;
}
.pt-s65 {
  padding-top: 65px;
}
.pb-s65 {
  padding-bottom: 65px;
}
.pl-s65 {
  padding-left: 65px;
}
.pr-s65 {
  padding-right: 65px;
}
.mt-s8 {
  margin-top: 80px;
}
.mb-s8 {
  margin-bottom: 80px;
}
.ml-s8 {
  margin-left: 80px;
}
.mr-s8 {
  margin-right: 80px;
}
.pt-s8 {
  padding-top: 80px;
}
.pb-s8 {
  padding-bottom: 80px;
}
.pl-s8 {
  padding-left: 80px;
}
.pr-s8 {
  padding-right: 80px;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.text-upper,
.uppercase {
  text-transform: uppercase;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-justify:after {
  content: "";
  display: inline-block;
  width: 100%;
}
.position-relative,
.center-vertical-container {
  position: relative;
}
.center-vertical {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}
.center-vertical-left {
  left: 0;
}
.center-vertical-right {
  right: 0;
}
.center {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.to-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  width: 100%;
  clear: both;
}
.clear {
  clear: both;
}
.noclear:after {
  clear: none !important;
}
.vam {
  vertical-align: middle;
}
.vab {
  vertical-align: bottom;
}
.vat {
  vertical-align: top;
}
.display-block {
  display: block;
}
.display-inline-block {
  display: inline-block;
}
.centered-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.table-fulsl,
.table {
  display: table;
  height: 100%;
  border-spacing: 0;
}
.table-full {
  width: 100%;
}
.table-row {
  display: table-row;
}
.table-va-middle {
  display: table-cell;
  vertical-align: middle;
}
.overlaid {
  overflow: hidden;
}
.arrow {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 14px solid;
}
.grey-arrow {
  border-top-color: #7f7f7f;
}
.white-arrow {
  border-top-color: #fff;
}
.black {
  color: black;
}
body.dragging,
body.dragging * {
  cursor: move !important;
}
.dragged {
  position: absolute;
  opacity: 0.5;
  z-index: 2000;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  box-sizing: border-box;
  border: 1px solid #7f7f7f;
  border-radius: 5px;
  width: 100%;
  height: 30px;
  margin-bottom: 11px;
  background: url("/static/img/main/select_arrow.png") no-repeat right #fff;
  padding-left: 5px;
}
.main-search-wrapper {
  padding: 40px 0px 40px 0px;
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  .main-search-wrapper {
    background-size: cover;
  }
  .main-search-wrapper .main-search-left,
  .main-search-wrapper .main-search-right {
    float: left;
    width: 50%;
  }
}
.main-search {
  padding: 20px 5px 10px;
  border: 1px solid #7f7f7f;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.7);
}
.main-search input {
  border: none;
  width: 100%;
  padding: 8px;
}
.main-search #keyword {
  box-sizing: border-box;
  height: 31px;
  border: 1px solid #7f7f7f;
}
@media screen and (min-width: 992px) {
  .main-search {
    padding: 40px 0px 40px 60px;
    font-size: 18px;
    border: none;
  }
  .main-search #keyword {
    height: 41px;
    border: 2px solid #7f7f7f;
  }
}
.selected-field {
  border: 1px solid #7f7f7f;
  border-radius: 5px;
  background: white;
  line-height: 28px;
  font-size: 15px;
  margin-bottom: 11px;
  padding-left: 5px;
  position: relative;
}
.selected-field button {
  position: absolute;
  right: 0px;
  top: 4px;
  color: #7f7f7f;
  font-weight: bold;
  border: none;
}
.selected-field button :focus {
  outline: none;
}
.main-search-title {
  color: #9b203f;
  margin-bottom: 30px;
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  .main-search-title {
    font-size: 30px;
  }
}
.main-search-box {
  margin: auto;
  margin-top: 15px;
  padding: 0px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .main-search-box {
    border: 1px solid black;
    padding: 12px 9px;
    width: 70%;
  }
}
.main-search-keyword-icon {
  height: 29px;
  width: 30px;
  background-color: #eaeaea;
  background-image: url("/static/img/main/mag.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 1px;
  top: 1px;
  border: none;
}
@media screen and (min-width: 992px) {
  .main-search-keyword-icon {
    width: 46px;
    height: 37px;
    background-position: center;
    right: 2px;
    top: 2px;
  }
}
.main-search-btn {
  background-color: #5fcf80;
  width: 100%;
  height: 56px;
  color: #fff;
  border: none;
  font-size: 22px;
  margin-top: 16px;
}
.main-search-btn-counter {
  font-size: 15px;
}
.main-search-right {
  display: none;
}
@media screen and (min-width: 992px) {
  .main-search-right {
    display: block;
    padding: 40px 0px 0 40px;
  }
}
.ubernav-wrapper {
  display: none;
}
@media screen and (min-width: 992px) {
  .ubernav-wrapper {
    display: block;
    background-color: #e2e2e2;
    height: 58px;
  }
  .ubernav-wrapper .ubernav-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0px;
    text-align: center;
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .ubernav-wrapper .ubernav-container a {
    margin: 0 17px;
    display: table-cell;
  }
  .ubernav-wrapper .ubernav-container a span {
    display: block;
    padding-top: 38px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.header-top-container {
  position: relative;
}
.header-wrapper {
  background-color: #9b203f;
  border-bottom: none;
}
.header-wrapper .__cta {
  display: none;
}
@media screen and (min-width: 992px) {
  .header-wrapper .__cta {
    display: block;
    text-decoration: none;
    cursor: pointer;
    border: none;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: right;
    color: #000;
    background-color: #fde67a;
    text-align: center;
    border-radius: 5px;
    font-size: 18px;
    line-height: 40px;
    padding: 0px 15px;
    margin-top: 12px;
  }
}
.header-wrapper .__social {
  float: left;
  clear: none;
  font-size: 21px;
  margin-left: 8px;
  display: block;
}
.header-wrapper .__social a {
  display: block;
}
.header-wrapper .__social .fa-twitter {
  color: #1da1f2;
}
.header-wrapper .__social .fa-facebook-official {
  color: #3b5998;
}
@media screen and (min-width: 992px) {
  .header-wrapper .__social {
    float: right;
    clear: right;
    margin-top: 3px;
    font-size: 33px;
  }
  .header-wrapper .__social a {
    display: inline-block;
  }
}
.menu-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  background-color: #9b203f;
  color: #fff;
  line-height: 41px;
  transition: max-height 0.5s ease;
  z-index: 10;
}
.menu-wrapper.show-menu {
  max-height: 1000px;
}
@media screen and (min-width: 991px) {
  .menu-wrapper {
    position: relative;
    background-color: #eaeaea;
    color: #000;
    max-height: 1000px;
  }
}
.menu-wrapper ul {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .menu-wrapper ul li {
    display: inline-block;
  }
}
.menu-wrapper ul li.--secondary {
  display: none;
}
@media screen and (min-width: 992px) {
  .menu-wrapper ul li.--secondary {
    display: inline-block;
  }
}
.menu-wrapper ul li a {
  text-transform: uppercase;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .menu-wrapper ul li a {
    color: #000;
  }
  .menu-wrapper ul li a:hover {
    color: #9b203f;
  }
}
@media screen and (min-width: 991px) {
  .menu-wrapper .main-nav {
    float: left;
  }
}
.menu-wrapper .main-nav .main-nav-list li {
  padding: 0 10px 0 0;
}
@media screen and (min-width: 991px) {
  .menu-wrapper .main-nav .main-nav-list li {
    padding: 0px 36px 0px 0px;
  }
}
@media screen and (min-width: 991px) {
  .menu-wrapper .auth-nav {
    float: right;
  }
}
.menu-wrapper .auth-nav .auth-nav-list {
  list-style-type: none;
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.menu-wrapper .auth-nav .auth-nav-list li {
  padding: 0 10px 0 0;
}
@media screen and (min-width: 991px) {
  .menu-wrapper .auth-nav .auth-nav-list li {
    padding: 0;
  }
  .menu-wrapper .auth-nav .auth-nav-list li a {
    padding: 0 5px;
  }
  .menu-wrapper .auth-nav .auth-nav-list li:before {
    content: " | ";
  }
  .menu-wrapper .auth-nav .auth-nav-list li:first-child:before {
    content: none;
  }
}
.header-hamburger {
  display: inline-block;
  cursor: pointer;
  margin: 10px 0 10px 10px;
  color: #fff;
  font-size: 27px;
}
@media screen and (min-width: 992px) {
  .header-hamburger {
    display: none;
  }
}
.favourite-heart-mobile {
  display: inline-block;
  padding: 13px 0;
}
.favourite-heart-mobile .favourite-counter {
  color: #fff;
  font-size: 10px;
  bottom: 15px;
  position: relative;
}
.favourite-heart-mobile a {
  color: #fff;
}
.favourite-heart-mobile a i {
  font-size: 21px;
}
@media screen and (min-width: 992px) {
  .favourite-heart-mobile {
    display: none;
  }
}
.favourite-heart-desktop {
  display: none;
}
@media screen and (min-width: 992px) {
  .favourite-heart-desktop {
    display: inline-block;
  }
  .favourite-heart-desktop .favourite-counter {
    font-size: 12px;
    position: relative;
    bottom: 15px;
    color: #9b203f;
  }
}
.favorite-alert {
  vertical-align: middle;
  height: 32px;
  color: #9b203f;
  font-size: 30px;
}
.logo-container {
  display: inline-block;
}
.header-logo {
  margin: 5px 0;
  width: 130px;
}
@media screen and (min-width: 992px) {
  .header-logo {
    margin-top: 12px;
    width: 160px;
  }
}
footer {
  margin-top: 30px;
}
.footer-wrapper {
  *zoom: 1;
  background-color: #404040;
  color: #fff;
  font-size: 15px;
  padding: 10px 0 50px 0;
}
.footer-wrapper:before,
.footer-wrapper:after {
  content: " ";
  display: table;
}
.footer-wrapper:after {
  clear: both;
}
.footer-wrapper a {
  color: #fff;
}
.footer-wrapper ul.left-nav {
  float: left;
  margin: 5px 0;
  padding: 0px;
}
.footer-wrapper ul.left-nav li {
  padding: 0px 0px 5px 0px;
}
.footer-wrapper ul.right-nav {
  float: right;
  margin: 5px 0;
}
.footer-wrapper ul.right-nav li {
  padding: 0px 0px 5px 0px;
  text-align: right;
}
@media screen and (min-width: 990px) {
  .footer-wrapper ul.right-nav li:before {
    content: " | ";
  }
  .footer-wrapper ul.right-nav li:first-child:before {
    content: none;
  }
  .footer-wrapper ul.right-nav li {
    display: inline-block;
    padding: 0px;
  }
}
.footer-wrapper div.follow {
  clear: both;
  text-align: center;
  padding: 30px 0 5px;
}
.footer-wrapper div.follow a {
  margin: 0 5px;
  font-size: 27px;
}
.footer-wrapper div.follow span {
  display: none;
}
@media screen and (min-width: 500px) {
  .footer-wrapper div.follow {
    float: right;
  }
  .footer-wrapper div.follow span {
    display: inline-block;
  }
  .footer-wrapper div.follow a {
    margin: 0 0 0 4px;
    font-size: 17px;
  }
}
.footer-wrapper div.copyright {
  clear: both;
  text-align: center;
  padding: 10px 0;
  font-size: 15px;
}
@media screen and (min-width: 500px) {
  .footer-wrapper div.copyright {
    float: right;
  }
}
.footer-wrapper .footer-right-info {
  margin-top: 50px;
  line-height: 35px;
}
.footer-wrapper .footer-right-info span {
  vertical-align: top;
}
.footer-wrapper .footer-right-info span.copyright {
  margin-left: 20px;
}
.footer-wrapper .footer-right-info a.share-button img {
  border-radius: 50%;
}
/**************************************/
/************ ENQUIRE FORM ************/
/**************************************/
/* Also login and join forms */
.info-box {
  border: 1px solid #b9b9b9;
  margin: 30px 0 0;
}
.info-box-form {
  position: relative;
}
.info-box-form .secondary .checkbox label {
  font-size: 14px;
}
@media screen and (min-width: 991px) {
  .info-box-form .primary {
    width: calc(100% - 220px);
    float: left;
    padding-right: 25px;
  }
  .info-box-form .secondary {
    width: 220px;
    float: left;
  }
}
.info-box-form .info-box-form-right-content {
  margin-top: 15px;
  font-size: 12px;
}
.info-box-form div.intro {
  margin: 0 0 25px 0;
  font-size: 15px;
}
.info-box-form div.intro a {
  color: #779ecb;
}
.info-box-form div.intro .__required {
  color: #9b203f;
}
.info-box-form div.strong-button {
  margin: 30px 0;
  text-align: center;
}
.info-box-form div.strong-button button {
  width: 100%;
}
@media screen and (min-width: 991px) {
  .info-box-form div.strong-button button {
    width: 50%;
  }
}
.info-box-form div.captcha-container {
  margin: 10px;
  text-align: center;
}
.info-box-form div.captcha-container div.g-recaptcha {
  display: inline-block;
}
@media screen and (max-width: 440px) {
  .info-box-form div.captcha-container {
    -webkit-transform: scale(0.75);
    -webkit-transform-origin: 0 0;
    transform: scale(0.7);
    transform-origin: 0 0;
  }
}
.info-box-form div.footnote {
  margin: 15px 0;
  font-size: 13px;
}
.info-box-form div.footnote a {
  color: #779ecb;
}
.info-box-form .exit-links {
  margin-top: 15px;
  *zoom: 1;
}
.info-box-form .exit-links:before,
.info-box-form .exit-links:after {
  content: " ";
  display: table;
}
.info-box-form .exit-links:after {
  clear: both;
}
.info-box-form .exit-links a {
  display: block;
  color: #779ecb;
  font-size: 16px;
  width: auto;
  margin: 15px 0;
}
@media screen and (min-width: 991px) {
  .info-box-form .exit-links a {
    float: left;
    margin: 0;
  }
  .info-box-form .exit-links a.secondary {
    float: right;
  }
}
.info-box-form p {
  margin: 0 0 30px 0;
}
@media screen and (max-width: 440px) {
  #rc-imageselect {
    -webkit-transform: scale(0.77);
    -webkit-transform-origin: 0 0;
    transform: scale(0.77);
    transform-origin: 0 0;
  }
}
div.was-collapse-content h2 {
  background: #f4f4f4;
  font-size: 18px;
  padding: 14px 24px;
  margin: 40px 0;
  cursor: pointer;
  color: #9b203f;
}
@media screen and (min-width: 992px) {
  div.was-collapse-content h2 {
    font-size: 24px;
  }
}
.fragment h1,
.fragment h2,
.fragment h3,
.fragment h4,
.fragment h5 {
  font-size: 22px;
  color: #000;
  margin: 14px 0;
}
.fragment p {
  margin: 10px 0;
}
.top-searches ul {
  padding: 0;
}
.top-searches ul li {
  display: block;
  float: left;
  border-right: 1px solid black;
  padding: 0 10px 0 0;
  margin: 0 10px 0 0;
}
.top-searches ul li a {
  color: #779ecb;
}
div.flat-page h1 {
  margin: 14px 0;
}
div.flat-page h2,
div.flat-page h3,
div.flat-page h4,
div.flat-page h5,
div.flat-page h6 {
  margin: 10px 0;
}
div.flat-page p {
  margin: 8px 0;
}
div.flat-page ul {
  list-style: disc;
}
div.flat-page a {
  color: #9b203f;
}
div.flat-page.error {
  margin: 100px 0;
}
div.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 50;
}
body.overlaid div.overlay {
  display: block;
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 0px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 0px;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
div.flash {
  background-color: #5fcf80;
  color: #fff;
  margin: 0;
  padding: 12px;
  font-size: 18px;
}
div.flash.error {
  background-color: #de0303;
}
label.required:after {
  content: '*';
  color: #9b203f;
  margin-left: 3px;
}
.form-element {
  *zoom: 1;
  margin: 0 0 15px 0px;
}
.form-element:before,
.form-element:after {
  content: " ";
  display: table;
}
.form-element:after {
  clear: both;
}
.form-element label,
.form-element div.label {
  display: block;
  margin: 0 0 5px 0;
}
.form-element.horizontal div.input ul {
  margin: 0;
  padding: 0;
}
.form-element.horizontal div.input ul li {
  display: inline-block;
}
.form-element.horizontal div.input ul li label {
  margin: 0px 20px 0 2px;
  float: none;
  display: inline-block;
  width: auto;
}
.form-element.horizontal div.input ul li input {
  margin: 0;
  float: none;
  display: inline-block;
}
.form-element.horizontal div.input select {
  margin-bottom: 0;
}
@media screen and (min-width: 991px) {
  .form-element.horizontal label,
  .form-element.horizontal div.label {
    width: 160px;
    float: left;
    padding-right: 5px;
  }
  .form-element.horizontal div.input {
    width: 350px;
    width: calc(100% - 160px);
    float: left;
  }
  .form-element.horizontal div.checkbox div.input {
    display: block;
    float: left;
    width: 20px;
  }
}
.form-element .input .input__note {
  margin-top: 2px;
}
div.checkbox {
  *zoom: 1;
  margin: 0 0 10px 0;
}
div.checkbox:before,
div.checkbox:after {
  content: " ";
  display: table;
}
div.checkbox:after {
  clear: both;
}
div.checkbox div.input {
  display: block;
  float: left;
  width: 20px;
}
div.checkbox div.label {
  display: block;
  float: left;
  width: 180px;
  width: calc(100% - 20px);
}
input[type="text"],
input[type="password"],
input[type="number"] {
  height: 30px;
  width: 100%;
  border: 1px solid #7f7f7f;
  padding-left: 5px;
}
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #7f7f7f;
}
.fileinput .fileinput__remove-trigger {
  display: inline-block;
  margin-left: 1rem;
}
.popper {
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
  border-radius: 5px;
  color: #fff;
  padding: 10px;
  max-width: 300px;
}
.popper h1,
.popper h2,
.popper h3,
.popper h4,
.popper h5 {
  color: #fff;
}
.popper a {
  text-decoration: none;
  color: #fff;
}
.popper p {
  line-height: 19px;
  margin: 0.5rem 0;
}
.popper .popper__close {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: #9b203f;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  font-weight: 900;
  color: white;
  cursor: pointer;
}
.popper .popper__arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 15px;
}
.popper[x-out-of-boundaries] .popper__arrow {
  display: none;
}
.popper[x-placement^="top"] {
  margin-bottom: 15px;
}
.popper[x-placement^="top"] .popper__arrow {
  border-width: 15px 15px 0 15px;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
  bottom: -15px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.popper[x-placement^="bottom"] {
  margin-top: 15px;
}
.popper[x-placement^="bottom"] .popper__arrow {
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
  top: -15px;
  left: calc(50% - 15px);
  margin-top: 0;
  margin-bottom: 0;
}
.popper[x-placement^="right"] {
  margin-left: 15px;
}
.popper[x-placement^="right"] .popper__arrow {
  border-width: 15px 15px 15px 0;
  border-color: transparent rgba(0, 0, 0, 0.8) transparent transparent;
  left: -15px;
  top: calc(50% - 15px);
  margin-left: 0;
  margin-right: 0;
}
.popper[x-placement^="left"] {
  margin-right: 15px;
}
.popper[x-placement^="left"] .popper__arrow {
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
  right: -15px;
  top: calc(50% - 15px);
  margin-left: 0;
  margin-right: 0;
}
h1.advertise-title {
  margin-top: 25px;
  font-size: 30px;
  color: #000;
}
div.in-page-nav {
  margin-top: 30px;
  text-align: center;
}
div.in-page-nav a {
  margin: 5px;
}
@media screen and (min-width: 991px) {
  div.in-page-nav {
    text-align: right;
  }
}
.advertise-container {
  padding: 34px 0px;
  border-bottom: 2px #7f7f7f solid;
  font-size: 16px;
  line-height: 1.4;
}
.advertise-container h2 {
  margin: 0px 0px 34px 0px;
  color: #779ecb;
  font-size: 20px;
}
.advertise-container h3 {
  margin: 25px 0px;
  color: #9b203f;
  font-size: 17px;
}
.advertise-container .lead {
  font-size: 18px;
}
.advertise-container p {
  margin: 25px 0px;
  font-size: 16px;
}
.advertise-container p a {
  color: #779ecb;
}
.advertise-container p a:hover {
  text-decoration: underline;
}
.advertise-container a.link-btn {
  margin-top: 25px;
}
.advertise-container div.payments {
  text-align: center;
}
.advertise-container div.payments img {
  vertical-align: middle;
  margin: 20px 30px 0px;
  height: 27px;
}
div.plans {
  text-align: center;
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
}
div.plans * {
  box-sizing: border-box;
}
div.plans div.plan-container div.plan {
  margin: 10px 0;
  border: 1px solid #9b203f;
}
div.plans div.plan-container div.plan h3 {
  margin: 0;
  text-align: center;
  color: #000;
  font-size: 23px;
  background: #eaeaea;
  line-height: 50px;
}
div.plans div.plan-container div.plan div.price {
  color: #000;
  font-size: 18px;
  text-align: center;
  border-bottom: 1px solid #000;
}
div.plans div.plan-container div.plan div.price div {
  padding: 5px;
  border-bottom: 1px solid #000;
}
div.plans div.plan-container div.plan div.price div:last-of-type {
  border-bottom: none;
}
div.plans div.plan-container div.plan div.features {
  padding: 10px 0;
}
div.plans div.plan-container div.plan h4 {
  font-size: 20px;
  text-align: center;
  margin: 0;
  color: #9b203f;
}
div.plans div.plan-container div.plan ul {
  margin: 10px auto;
  padding: 0 5px;
  max-width: 350px;
}
div.plans div.plan-container div.plan ul li {
  text-align: center;
  margin: 15px 0;
  color: #000;
}
div.plans div.plan-container div.plan div.buttons {
  border-top: 1px solid #9b203f;
  padding: 5px;
  background: #f4f4f4;
}
div.plans div.plan-container div.plan div.buttons a {
  margin: 10px;
  padding: 8px 20px;
  text-align: center;
  display: block;
  background: #5fcf80;
  color: #fff;
  text-transform: uppercase;
}
div.plans div.plan-container div.plan.featured h3 {
  background: #9b203f;
  color: #fff;
}
div.plans div.plan-container div.plan.featured div.features {
  background: #fde67a;
}
@media screen and (min-width: 991px) {
  div.plans div.plan-container {
    display: inline-block;
    margin-right: -4px;
    padding: 0 5px;
    width: 20%;
    vertical-align: top;
  }
  div.plans div.plan-container div.plan {
    margin: 0;
  }
  div.plans div.plan-container div.plan h3 {
    height: 70px;
    line-height: 70px;
  }
  div.plans div.plan-container div.plan h3 span {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
  }
}
@media screen and (min-width: 991px) {
  div.plans {
    margin: 0 -5px;
  }
}
h1.top-search-title {
  color: #000;
  font-size: 18px;
  margin: 0 0 25px 0;
}
@media screen and (min-width: 992px) {
  h1.top-search-title {
    font-size: 30px;
    margin: 0;
  }
}
.listing-smaller {
  font-size: 14px;
  margin-left: 30px;
}
.listing-smaller img:first-child {
  margin-left: 0px;
  width: 35px;
}
.listing-smaller img {
  margin-left: 12px;
  margin-right: 3px;
  width: 30px;
}
.listing-info {
  font-size: 16px;
}
.listing-info pre {
  line-height: 20px;
  font-family: inherit;
  white-space: pre-wrap;
}
.listing-info pre code {
  line-height: 20px;
  font-family: inherit;
  white-space: pre-wrap;
}
.listing-info-details {
  font-size: 20px;
  margin: 25px 0;
}
@media screen and (min-width: 992px) {
  .listing-info-details {
    font-size: 27px;
    margin: 40px 0;
  }
}
@media screen and (min-width: 992px) {
  .listing-info-features {
    float: left;
    width: 400px;
    width: calc(100% - 315px);
  }
}
.listing-info-features h2 {
  margin: 0 0 25px 0;
}
.listing-info-features div span {
  font-weight: 600;
}
.listing-info-features a {
  color: #779ecb;
}
.listing-list-items-wrapper {
  margin: 0 -7px;
}
.listing-list-item-container {
  cursor: pointer;
  padding: 12px 7px;
}
@media screen and (min-width: 992px) {
  .listing-list-item-container {
    width: 33.33333333%;
    float: left;
  }
}
.listing-list-item {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-size: 12px;
  line-height: 15px;
  position: relative;
  border: 3px solid transparent;
}
.listing-list-item.enhanced {
  border: 3px solid #9b203f;
}
.listing-list-item.featured .listing-list-item-description {
  background-color: #fde67a;
}
.listing-list-item .__banner {
  min-width: 90px;
  max-width: 180px;
  height: 25px;
  position: absolute;
  top: 15px;
  left: -15px;
  text-align: center;
  line-height: 24px;
  font-size: 18px;
  z-index: 1;
  padding: 0 10px;
  background-color: #f4f4f4;
  color: #9b203f;
}
.listing-list-item .__banner:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: -9px;
  left: 0;
  border-left: 15px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 9px solid #9b203f;
}
.listing-list-item .__banner.special {
  background-color: #9b203f;
  color: #fff;
}
.listing-list-item .__banner.special:before {
  border-bottom-color: #9b203f;
}
.listing-list-item .listing-list-item__remove {
  position: absolute;
  top: 0px;
  right: 0px;
}
.listing-list-item-gallery {
  background-size: cover;
  padding-top: 75%;
}
.listing-list-item-description {
  padding: 15px 8px;
  background-color: #f4f4f4;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.listing-list-item-description .detail-left {
  display: block;
  float: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  height: 30px;
}
.listing-list-item-description .detail-right {
  display: block;
  float: right;
  margin-left: 10px;
}
.listing-list-item-description .detail-right .fa {
  font-size: 15px;
  padding-left: 4px;
}
.listing-list-item-description .smaller {
  font-size: 11px;
  margin-bottom: 10px;
}
.listing-list-item-description .smaller img:first-child {
  margin-left: 0px;
}
.listing-list-item-description .smaller img {
  margin-left: 3px;
  height: 16px;
}
.listing-list-item-description .smaller .listing-list-item-rooms {
  float: left;
}
.listing-list-item-description .smaller .listing-list-item-photo-counter {
  float: right;
}
.listing-item-favorite-control {
  margin-left: 5px;
}
.listing-list-item-description .convert {
  font-size: 10px;
  color: #9b203f;
}
.pagination-control {
  text-align: center;
  min-width: 200px;
  margin-top: 25px;
  color: #000;
}
@media screen and (min-width: 991px) {
  .pagination-control {
    margin-top: 10px;
  }
}
.pagination-control div {
  display: inline-block;
}
@media screen and (min-width: 991px) {
  .pagination-control div.page-number {
    display: none;
  }
}
.pagination-control div.page-text {
  display: none;
}
.pagination-control div.page-link {
  line-height: 1.5;
  margin: 0 2px;
  background-color: #9b203f;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.pagination-control div.page-link a {
  color: #fff;
  margin: 0 8px;
}
.pagination-control div.page-link.active {
  background-color: #000;
  color: #fff;
  padding: 0 8px;
}
.pagination-control div.page-list {
  display: none;
}
@media screen and (min-width: 991px) {
  .pagination-control div.page-list {
    display: inline-block;
  }
}
.pagination-control a.create-alert-btn {
  display: block;
  margin: 20px 0;
  padding: 0 10px;
  line-height: 32px;
  font-size: 15px;
  background-color: #5fcf80;
  color: #fff;
}
@media screen and (min-width: 991px) {
  .pagination-control a.create-alert-btn {
    float: right;
    margin: 0;
    line-height: 35px;
    font-size: 16px;
  }
}
.listing-info-description {
  position: relative;
  max-height: 243px;
  overflow: hidden;
}
@media print {
  .listing-info-description {
    max-height: initial;
  }
}
.listing-info-description h1,
.listing-info-description h2,
.listing-info-description h3,
.listing-info-description h4,
.listing-info-description h5 {
  margin: 25px 0;
  font-size: 20px;
}
.listing-info-description p {
  margin: 15px 0;
}
.listing-info-description ul {
  list-style-type: disc;
}
.listing-info-description ul li {
  margin: 5px 0;
}
.listing-info-description .read-more {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 40px 0 0 0;
  width: 100%;
  background: #fff;
  background: -webkit-gradient(linear, left top, left 64%, from(rgba(255, 255, 255, 0)), to(#ffffff));
}
.listing-info-description .read-more a {
  color: #779ecb;
}
/**************************************/
/************** LIGHTBOX **************/
/**************************************/
.lightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 100;
  display: none;
}
.lightbox-header {
  width: 100%;
  background: #eaeaea;
  font-size: 28px;
}
.lightbox-header-left,
.lightbox-header-right {
  line-height: 65px;
}
.lightbox-content {
  height: 100%;
  position: relative;
}
.lightbox-content .lightbox-left-content {
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  padding: 0 10px;
}
.lightbox-content .lightbox-right-content {
  background: black;
  padding: 20px 50px;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 320px;
  right: 0;
  bottom: 0;
}
.lightbox-content .lightbox-photo-counter {
  color: #fff;
}
.lightbox-close {
  height: 20px;
}
.lightbox-main-photo {
  text-align: left;
  position: relative;
  height: 500px;
  margin: auto;
  margin-top: 40px;
  display: inline-block;
}
.lightbox-main-photo-img {
  height: 500px;
}
.lightbox-main-photo-prev {
  position: absolute;
  top: 300px;
  left: 20px;
  height: 75px;
}
.lightbox-main-photo-next {
  position: absolute;
  top: 300px;
  right: 20px;
  height: 75px;
}
.lightbox-photo-album {
  position: absolute;
  bottom: -200px;
  overflow: hidden;
  white-space: nowrap;
  min-width: 125%;
}
.lightbox-photo-album-item {
  height: 125px;
  margin-right: 10px;
  opacity: 0.6;
}
.lightbox-photo-album-item.current {
  opacity: 1;
}
/**************************************/
/************ LEFT BUTTONS ************/
/**************************************/
.left-actions {
  display: none;
}
@media screen and (min-width: 991px) {
  .left-actions {
    display: block;
    margin-top: 30px;
  }
}
.left-actions-btn {
  border: 1px solid #b9b9b9;
  display: block;
  width: 100%;
  background: #fff;
  height: 45px;
  line-height: 40px;
  color: #779ecb;
  text-align: left;
  padding-left: 15px;
  cursor: pointer;
  border-bottom: none;
}
.left-actions-a-btn {
  width: auto;
  line-height: 45px;
  border-bottom: 1px solid #b9b9b9;
}
.left-actions-btn-img {
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 10px;
}
.bookmark-content-hidden {
  display: none;
  overflow: hidden;
}
.map-frame {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
#paymentSection {
  text-align: center;
  margin: 30px 0px;
}
div.dont-forget {
  margin-top: 25px;
  background: #f4f4f4;
  padding-bottom: 10px;
}
@media screen and (min-width: 992px) {
  div.dont-forget {
    margin-top: 0;
    float: right;
    width: 315px;
  }
}
div.dont-forget h5 {
  background: #dddddd;
  color: #000;
  margin: 0;
  padding: 10px 15px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
div.dont-forget a {
  display: block;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 18px;
  margin: 0 15px;
  padding: 10px 0;
  padding-right: 70px;
  color: #779ecb;
}
div.dont-forget a .callout {
  color: #9b203f;
}
div.dont-forget a.currency {
  color: #000;
  background-size: auto 25px;
  background-image: url("/static/img/fps/excel_currencies.png");
}
div.dont-forget a.mortgage {
  color: #779ecb;
  background-size: auto 35px;
  background-image: url("/static/img/fps/fmd_logo.png");
}
div.dont-forget a.banking {
  color: #779ecb;
  background-image: url("/static/img/fps/britline_logo.png");
}
div.dont-forget a.removal {
  color: #779ecb;
  background-size: auto 17px;
  background-image: url("/static/img/fps/any_van.png");
}
div.sponsor-links {
  margin: 30px 0px 40px;
}
div.sponsor-links div.sponsor {
  font-size: 16px;
  margin: 10px 0;
}
div.sponsor-links div.sponsor img {
  margin-right: 3px;
  vertical-align: middle;
  height: 20px;
}
div.sponsor-links div.sponsor a {
  color: #779ecb;
}
@media screen and (min-width: 991px) {
  div.sponsor-links div.sponsor {
    float: left;
    margin: 0 12px 10px 0;
  }
}
div.listing-sell h4 {
  margin-bottom: 30px;
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  div.listing-sell h4 {
    margin-top: 0;
  }
}
div.listing-sell .listing-sell__instruction .__required {
  color: #9b203f;
}
div.listing-sell .info-box {
  margin: 30px 0;
}
div.listing-sell button[type=submit],
div.listing-sell a.link-btn {
  margin-top: 30px;
}
div.listing-sell p {
  margin: 0 0 30px 0;
}
div.listing-sell a {
  color: #9b203f;
}
div.listing-sell a.btn-green {
  color: #fff;
}
div.listing-sell .__rubric {
  margin-bottom: 25px;
}
div.listing-sell .photo-sort {
  margin: 0;
  padding: 0;
}
div.listing-sell .photo-sort .__photo {
  position: relative;
  float: left;
  padding: 10%;
  width: 25%;
}
div.listing-sell .photo-sort .__photo .__image {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding-right: 10px;
}
div.listing-sell .photo-sort .__photo .__remove {
  position: absolute;
  right: 10px;
  top: 0px;
}
div.listing-sell .photo-sort .__photo .__remove img {
  width: initial;
}
div.listing-sell .photo-sort .__photo.dragged {
  position: absolute;
  opacity: 0.7;
  z-index: 2000;
  width: 150px;
}
div.listing-sell .photo-sort .__photo.dragged .__image {
  width: 100px;
}
div.listing-sell .photo-sort .__photo.dragged .__remove {
  display: none;
}
div.listing-sell .photo-sort .placeholder {
  position: relative;
  margin: 0;
  float: left;
  width: 25%;
}
div.listing-sell .photo-sort .placeholder:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  margin-top: -4px;
  left: 0px;
  top: -4px;
  border: 5px solid transparent;
  border-top-color: red;
  border-bottom: none;
}
/*****************************************/
/*************** QUICKVIEW ***************/
/*****************************************/
.popup-quickview {
  padding: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.popup-quickview .popup-quickview-header {
  color: black;
}
.popup-quickview .listing-smaller {
  margin: 10px 0 10px;
}
.popup-quickview .link-btn {
  height: 60px;
  line-height: 60px;
  padding: 0;
  overflow: hidden;
}
.popup-quickview .popup-quickview-content-gallery {
  margin-right: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 373px;
  background-size: contain;
  background-repeat: no-repeat;
}
.popup-quickview .popup-quickview-content-gallery.listing-gallery img {
  max-height: 373px;
  width: 100%;
}
.popup-quickview .popup-quickview-price-container {
  margin-bottom: 20px;
}
.popup-quickview .popup-quickview-price-container .price {
  font-size: 34px;
}
.popup-quickview .popup-quickview-price-container .convert {
  font-size: 13px;
  color: #9b203f;
  white-space: nowrap;
}
.popup-quickview .popup-quickview-price-container .convert .callout {
  vertical-align: middle;
}
.popup-quickview .popup-quickview-price-container .convert .logo {
  width: 68px;
  height: 25px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-image: url("/static/img/fps/excel_currencies.png");
}
.popup-quickview .sponsor-links {
  margin: 20px 0px 20px 10px;
}
.popup-quickview-short-desc {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 17px;
  max-height: 68px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.popup-quickview-favourite {
  display: block;
  width: 100%;
  background: #ffffff;
  line-height: 40px;
  color: #779ecb;
  text-align: left;
  cursor: pointer;
  margin-bottom: 20px;
}
.popup-quickview-partners {
  margin-top: 20px;
  font-size: 14px;
  line-height: 20px;
}
.popup-quickview-partners a {
  color: #749dc9;
}
.popup-quickview-partner-logos {
  margin: 20px 0 10px 0;
}
.popup-quickview-partner-logos img {
  margin-left: 10px;
  height: 40px;
}
.listing-gallery {
  position: relative;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 992px) {
  .listing-gallery.hide-ctl .photo-ctl,
  .listing-gallery.hide-ctl .item-photo-control {
    display: none;
  }
  .listing-gallery.hide-ctl:hover .photo-ctl,
  .listing-gallery.hide-ctl:hover .item-photo-control {
    display: block;
  }
}
.listing-gallery .photo-ctl,
.listing-gallery .item-photo-control {
  background-color: rgba(0, 0, 0, 0.6);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px;
  position: absolute;
  color: #fff;
}
@media print {
  .listing-gallery .photo-ctl,
  .listing-gallery .item-photo-control {
    display: none;
  }
}
.listing-gallery .photo-next,
.listing-gallery .photo-prev {
  font-size: 40px;
  padding: 18px 6px;
  top: 140px;
  top: calc(50% - 24px);
  cursor: pointer;
}
.listing-gallery .photo-next {
  right: 3px;
}
.listing-gallery .photo-prev {
  left: 3px;
}
.listing-gallery .item-photo-next,
.listing-gallery .item-photo-prev {
  top: 70px;
  font-size: 21px;
  padding: 10px 3px;
}
.listing-gallery .photo-mag-glass {
  right: 3px;
  top: 3px;
  font-size: 40px;
  line-height: 1;
  padding: 6px;
  cursor: pointer;
  display: none;
}
@media screen and (min-width: 992px) {
  .listing-gallery:hover .photo-mag-glass {
    display: block;
  }
}
.listing-gallery .photo-counter {
  padding: 0px 10px;
  bottom: 3px;
  left: 3px;
  color: #fff;
  line-height: 34px;
  font-size: 16px;
  vertical-align: middle;
}
.listing-gallery .item-quickview {
  display: none;
}
@media screen and (min-width: 992px) {
  .listing-gallery .item-quickview {
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 7px 0;
  }
}
.listing-gallery img {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}
.print-gallery {
  display: none;
}
@media print {
  .print-gallery {
    display: block;
  }
  .print-gallery .__cnt {
    float: left;
    width: 20%;
    padding: 2px;
  }
}
.favourite-toggle {
  display: inline-block;
  width: 20px;
  height: 18px;
  text-indent: 50px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/static/img/listing/item_not_favorite_icon.png");
}
.favourite-toggle.favourite {
  background-image: url("/static/img/listing/item_favorite_icon.png");
}
.favourite-toggle-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;
  color: #9b203f;
}
.favourite-toggle-fa.fa-pull-left {
  margin-right: 0.3em;
}
.favourite-toggle-fa.fa-pull-right {
  margin-left: 0.3em;
}
.favourite-toggle-fa.pull-left {
  margin-right: 0.3em;
}
.favourite-toggle-fa.pull-right {
  margin-left: 0.3em;
}
.favourite-toggle-fa:before {
  content: "\f08a";
}
.favourite-toggle-fa.favourite:before {
  content: "\f004";
}
/**************************************/
/************ ENERGY BARS ************/
/**************************************/
.energy-info {
  *zoom: 1;
  padding: 30px 0px;
}
.energy-info:before,
.energy-info:after {
  content: " ";
  display: table;
}
.energy-info:after {
  clear: both;
}
.energy-info h5 {
  margin: 30px 0px;
}
.energy-info div.bars-container {
  float: left;
  width: 100%;
  max-width: 540px;
}
.energy-info div.bars-container div.bar-container {
  *zoom: 1;
  height: 31px;
  line-height: 31px;
  padding: 0px 5px;
  margin-bottom: 2px;
}
.energy-info div.bars-container div.bar-container:before,
.energy-info div.bars-container div.bar-container:after {
  content: " ";
  display: table;
}
.energy-info div.bars-container div.bar-container:after {
  clear: both;
}
.energy-info div.bars-container div.bar-container div.dots {
  float: left;
  width: 20%;
  border-top: dotted 1px black;
  margin-top: 14px;
}
.energy-info div.bars-container div.bar-container div.value {
  float: left;
  margin-left: 2px;
}
.energy-info div.bars-container div.bar-container div.bar {
  position: relative;
  float: left;
  padding-left: 5px;
}
.energy-info div.bars-container div.bar-container div.bar.active {
  margin-left: 20px;
}
.energy-info div.bars-container div.bar-container div.bar .band {
  font-weight: 600;
  float: right;
}
.energy-info div.bars-container div.bar-container div.bar .bar-arrow {
  position: absolute;
  top: 0px;
  right: -22px;
  border-top: 15px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 23px solid;
  border-left-color: inherit;
}
.energy-info div.bars-container div.bar-container div.bar.a {
  width: 20%;
  background-color: #009c21;
  border-left-color: #009c21;
}
.energy-info div.bars-container div.bar-container div.bar.b {
  width: 25%;
  background-color: #00cd10;
  border-left-color: #00cd10;
}
.energy-info div.bars-container div.bar-container div.bar.c {
  width: 30%;
  background-color: #b4ff00;
  border-left-color: #b4ff00;
}
.energy-info div.bars-container div.bar-container div.bar.d {
  width: 35%;
  background-color: #ffff01;
  border-left-color: #ffff01;
}
.energy-info div.bars-container div.bar-container div.bar.e {
  width: 40%;
  background-color: #ffcc00;
  border-left-color: #ffcc00;
}
.energy-info div.bars-container div.bar-container div.bar.f {
  width: 45%;
  background-color: #ff9b23;
  border-left-color: #ff9b23;
}
.energy-info div.bars-container div.bar-container div.bar.g {
  width: 50%;
  background-color: #fe0000;
  border-left-color: #fe0000;
}
@media screen and (min-width: 992px) {
  .top-listing-details {
    margin-top: 50px;
  }
}
@media print {
  .top-listing-details {
    margin-top: 10px;
  }
}
.top-listing-details div.contact-button {
  position: absolute;
  left: 0;
  width: 100%;
}
.top-listing-details div.contact-button a {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .top-listing-details div.contact-button {
    position: relative;
    float: right;
    width: 220px;
    text-align: right;
  }
  .top-listing-details div.contact-button a {
    margin-bottom: 0;
  }
}
.top-listing-details h1 {
  color: #000;
  font-size: 20px;
  line-height: 28px;
  padding-top: 60px;
  margin: 0;
}
.top-listing-details h1 a.currency {
  display: incline-block;
}
.top-listing-details h1 a.currency span.callout {
  color: #9b203f;
  font-size: 14px;
  display: incline-block;
  vertical-align: middle;
}
.top-listing-details h1 a.currency span.logo {
  width: 100px;
  height: 25px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-image: url("/static/img/fps/excel_currencies.png");
}
@media screen and (min-width: 992px) {
  .top-listing-details h1 {
    float: left;
    font-size: 28px;
    line-height: 33px;
    padding-top: 0;
    width: 720px;
    width: calc(100% - 220px);
  }
  .top-listing-details h1 a.currency span.callout {
    font-size: 18px;
  }
}
@media print {
  .top-listing-details h1 {
    font-size: 20px;
    line-height: 28px;
    width: 100%;
  }
}
.top-listing-details div.top-secondary {
  margin: 0;
  font-size: 20px;
}
.top-listing-details div.top-secondary .detail,
.top-listing-details div.top-secondary .social {
  margin: 14px 0;
  font-size: 16px;
  text-align: left;
}
.top-listing-details div.top-secondary .social {
  display: flex;
  justify-content: flex-end;
}
.top-listing-details div.top-secondary .social span {
  line-height: 30px;
  vertical-align: top;
  margin-right: 15px;
}
.top-listing-details div.top-secondary .social .stButton {
  margin: 0;
}
.top-listing-details div.top-secondary .social .sharethis-inline-share-buttons .st-btn {
  display: inline-block !important;
}
@media screen and (min-width: 992px) {
  .top-listing-details div.top-secondary {
    margin: 30px 0px 10px;
  }
  .top-listing-details div.top-secondary .detail {
    float: left;
  }
  .top-listing-details div.top-secondary .social {
    float: right;
    width: 600px;
  }
}
/**************************************/
/*************** WIDGET ***************/
/**************************************/
.quickview-widget {
  margin: 40px 0 30px 0;
}
.quickview-widget .qv-header {
  *zoom: 1;
  padding: 0;
  background: none;
}
.quickview-widget .qv-header:before,
.quickview-widget .qv-header:after {
  content: " ";
  display: table;
}
.quickview-widget .qv-header:after {
  clear: both;
}
.quickview-widget .qv-header h5 {
  float: left;
  color: #9b203f;
}
.quickview-widget .qv-header div.controls {
  float: right;
}
.quickview-widget .qv-header div.controls a {
  display: none;
}
@media screen and (min-width: 992px) {
  .quickview-widget .qv-header div.controls a {
    display: inline-block;
    font-size: 16px;
    color: #779ecb;
  }
}
.quickview-widget .qv-header div.controls i {
  font-size: 16px;
  margin-left: 9px;
  color: #b9b9b9;
  cursor: pointer;
}
.quickview-widget .quickview-widget-content {
  margin: 0 -10px;
}
.quickview-widget .quickview-widget-content:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.quickview-widget .quickview-widget-content .listing-list-item-container {
  width: 100%;
}
.quickview-widget .quickview-widget-content .listing-list-item-container .description {
  background: #f4f4f4;
  padding: 10px 6px;
  position: relative;
}
.quickview-widget .quickview-widget-content .listing-list-item-container .description .price {
  color: black;
  font-size: 12px;
}
.quickview-widget .quickview-widget-content .listing-list-item-container .description .name {
  font-size: 12px;
  margin-top: 6px;
  line-height: 15px;
  height: 30px;
  color: #779ecb;
  display: block;
  overflow: hidden;
  white-space: normal;
}
.quickview-widget .quickview-widget-content .listing-list-item-container .description .icons {
  position: absolute;
  top: 10px;
  right: 6px;
}
.quickview-widget .quickview-widget-content .listing-list-item-container .description .icons img {
  display: inline-block;
}
.quickview-widget .quickview-widget-content .listing-list-item-container .description .__title {
  font-size: 16px;
  line-height: 18px;
  height: 36px;
  color: #779ecb;
  display: block;
  overflow: hidden;
  white-space: normal;
}
@media screen and (min-width: 991px) {
  .quickview-widget .quickview-widget-content .listing-list-item-container .description {
    padding: 15px 8px;
  }
  .quickview-widget .quickview-widget-content .listing-list-item-container .description .price {
    font-size: 16px;
  }
  .quickview-widget .quickview-widget-content .listing-list-item-container .description .name {
    font-size: 16px;
    margin-top: 6px;
    line-height: 18px;
    height: 36px;
  }
  .quickview-widget .quickview-widget-content .listing-list-item-container .description .icons {
    top: 15px;
    right: 8px;
  }
}
.quickview-widget .quickview-widget-content .listing-list-item-container {
  width: 96%;
  display: none;
}
.quickview-widget .quickview-widget-content .listing-list-item-container:nth-of-type(1) {
  display: inline-block;
}
@media screen and (min-width: 374px) {
  .quickview-widget .quickview-widget-content .listing-list-item-container {
    width: 250px;
    max-width: 278px;
    width: calc(calc(100vw - 70px) / 2);
  }
  .quickview-widget .quickview-widget-content .listing-list-item-container:nth-of-type(2) {
    display: inline-block;
  }
}
@media screen and (min-width: 991px) {
  .quickview-widget .quickview-widget-content .listing-list-item-container {
    max-width: 305px;
    width: calc(calc(100vw - 402px) / 3);
  }
  .quickview-widget .quickview-widget-content .listing-list-item-container:nth-of-type(3) {
    display: inline-block;
  }
}
.quickview-widget .quickview-widget-content.slick-initialized .listing-list-item-container {
  display: block;
  max-width: initial;
}
.quickview-widget.alt .qv-header {
  background: none;
}
.quickview-widget.alt .qv-header h5 {
  color: #9b203f;
}
.quickview-widget.alt .qv-header div.controls a {
  color: #779ecb;
}
.quickview-widget.alt .qv-header div.controls i {
  color: #b9b9b9;
}
.quickview-widget.hero .qv-header {
  background: none;
}
.quickview-widget.hero .qv-header h5 {
  color: #9b203f;
}
.quickview-widget.hero .qv-header div.controls a {
  color: #779ecb;
}
.quickview-widget.hero .qv-header div.controls i {
  color: #b9b9b9;
}
.quickview-widget.hero .quickview-widget-content {
  margin: 0;
  background: #9b203f;
}
.quickview-widget.hero .quickview-widget-content .listing-list-item-gallery {
  background-color: #fff;
}
.left-seller-info {
  display: none;
}
@media screen and (min-width: 992px) {
  .left-seller-info {
    display: block;
    border: 1px solid #b9b9b9;
  }
}
.seller-info-box .content {
  padding: 13px 16px 20px 16px;
}
.seller-info-box .content h3 {
  text-transform: uppercase;
  color: #9b203f;
  background-image: url("/static/img/listing/agent_icon.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  font-size: 21px;
  line-height: 14px;
  padding: 12px 0 0 37px;
}
.seller-info-box .content h3.private {
  font-size: 21px;
}
.seller-info-box .content div.name {
  margin: 10px 0;
}
.seller-info-box .content img.logo {
  margin: 10px 0;
  max-width: 100%;
}
.seller-info-box div.contact {
  *zoom: 1;
}
.seller-info-box div.contact:before,
.seller-info-box div.contact:after {
  content: " ";
  display: table;
}
.seller-info-box div.contact:after {
  clear: both;
}
.seller-info-box div.contact .btn-reveal {
  display: block;
  float: right;
  padding: 0px 6px;
  height: 32px;
  line-height: 32px;
  font-size: 15px;
  border: 1px solid #5fcf80;
  border-radius: 3px;
  color: #5fcf80;
  cursor: pointer;
}
.seller-info-box .print-phone {
  display: none;
}
@media print {
  .seller-info-box {
    display: none;
  }
  .seller-info-box .print-phone {
    display: block;
  }
}
.listing-info .seller-info-box {
  display: block;
  margin-bottom: 25px;
}
.listing-info .seller-info-box .content {
  padding: 0;
}
@media screen and (min-width: 992px) {
  .listing-info .seller-info-box {
    display: none;
  }
}
@media print {
  .listing-info .seller-info-box {
    display: block;
    margin: 25px 0;
    border: 1px solid #b9b9b9;
  }
}
.user-info-box-btn {
  text-align: center;
  font-size: 23px;
  display: block;
  padding: 10px 30px;
}
.user-info-box-btn-img {
  margin: 0px 0px -3px 4px;
}
.secondary-content .listings-ids {
  display: none;
}
@media screen and (min-width: 991px) {
  .secondary-content .listings-ids {
    display: block;
    border: 1px solid #b9b9b9;
    margin-top: 30px;
    padding-left: 15px;
    line-height: 40px;
    font-size: 15px;
  }
}
.primary-content .listings-ids {
  display: block;
  border: 1px solid #b9b9b9;
  margin-top: 30px;
  padding-left: 15px;
  line-height: 40px;
  font-size: 15px;
}
@media screen and (min-width: 991px) {
  .primary-content .listings-ids {
    display: none;
  }
}
div.sort-by-container {
  font-size: 10px;
  text-align: center;
}
@media screen and (min-width: 500px) {
  div.sort-by-container {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 991px) {
  div.sort-by-container {
    font-size: 15px;
    text-align: right;
    margin: 0 0 20px 0;
  }
}
div.sort-by-container div.text {
  display: none;
}
@media screen and (min-width: 500px) {
  div.sort-by-container div.text {
    display: inline-block;
    margin-right: 8px;
  }
}
div.sort-by-container div.link,
div.sort-by-container div.active {
  display: inline-block;
  border: 1px solid #5fcf80;
  border-radius: 2px;
}
@media screen and (min-width: 991px) {
  div.sort-by-container div.link,
  div.sort-by-container div.active {
    margin: 0 2px;
  }
}
div.sort-by-container div.link a,
div.sort-by-container div.active a,
div.sort-by-container div.link span,
div.sort-by-container div.active span {
  display: block;
  margin: 1px 3px;
}
@media screen and (min-width: 991px) {
  div.sort-by-container div.link a,
  div.sort-by-container div.active a,
  div.sort-by-container div.link span,
  div.sort-by-container div.active span {
    margin: 2px 8px;
  }
}
div.sort-by-container div.link a {
  color: #5fcf80;
}
div.sort-by-container div.active {
  background: #5fcf80;
  color: #fff;
}
.search-container {
  display: none;
  margin: 0;
}
.search-container.mobile-refine-search {
  display: block;
}
.search-container .btn-refine-search {
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 10px;
}
@media screen and (min-width: 992px) {
  .search-container .btn-refine-search {
    padding: 15px 20px;
    text-align: left;
    font-size: 18px;
    line-height: 28px;
  }
}
.search-container .search-container--filters {
  display: none;
}
@media screen and (min-width: 992px) {
  .search-container {
    margin-top: 25px;
    display: block;
  }
  .search-container.mobile-refine-search {
    display: none;
  }
  .search-container .search-container--filters {
    display: block;
  }
}
.search-container .search-info-box {
  color: #9b203f;
  font-size: 18px;
  padding: 20px 18px;
  position: relative;
  margin: 0 0 -1px 0;
}
.search-container .search-info-box a {
  color: #9b203f;
}
.search-container .search-info-box hr {
  margin-bottom: 15px;
}
.search-container .search-info-box .search-info-box-title {
  font-size: 18px;
  color: black;
  text-transform: uppercase;
}
.search-container .search-info-box .search-info-box-title label {
  width: 156px;
  width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-container .search-info-box .search-info-box-title .search-info-box-title-arrow {
  float: right;
  margin-top: 5px;
}
.search-container .search-info-box .search-info-box-filters {
  text-align: left;
  color: black;
  margin: 10px 0px;
  margin-top: 22px;
}
.search-container .search-info-box .search-info-box-filters a {
  color: #779ecb;
  display: block;
  margin: 4px 0;
  font-size: 15px;
}
.search-container .search-info-box .arrow {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 14px solid #7f7f7f;
  border-top: none;
}
.search-container .search-info-box.rolled {
  height: 40px;
  padding: 10px 18px;
  overflow: hidden;
  background-color: #f4f4f4;
}
.search-container .search-info-box.rolled .search-info-box-title {
  cursor: pointer;
}
.search-container .search-info-box.rolled .arrow {
  display: inline-block;
  border-top: 14px solid #7f7f7f;
  border-bottom: none;
}
@media screen and (min-width: 992px) {
  .search-container .search-info-box.rolled {
    height: 60px;
    padding: 20px 18px;
  }
}
.search-info-box-active-filters {
  text-align: left;
  color: black;
  margin: 10px 0px;
}
.search-info-box-active-filters .filter {
  margin: 4px 0;
}
.search-info-box-active-filters .filter .term {
  font-size: 16px;
}
.search-info-box-active-filters .filter .value {
  font-size: 14px;
}
.search-info-box-active-filters a.search-info-box-filter-remove {
  color: #9b203f;
  float: right;
}
.search-info-box-active-filters a.remove-all {
  display: block;
  text-align: right;
  color: #9b203f;
}
.search-terms {
  display: none;
}
@media screen and (min-width: 992px) {
  .search-terms {
    display: block;
    font-size: 18px;
    padding: 20px 18px;
    border: 1px solid #b9b9b9;
  }
  .search-terms__count {
    font-size: 20px;
    text-align: center;
    color: #5fcf80;
  }
}
.mobile-search-terms {
  margin: 0 0 10px 0;
  padding: 20px;
  border: 1px solid #b9b9b9;
}
.mobile-search-terms__count {
  text-align: center;
  color: #5fcf80;
}
.mobile-search-terms h3 {
  color: #5fcf80;
  text-align: center;
}
.mobile-search-terms .search-info-box-active-filters .filter .term {
  font-size: 14px;
}
.mobile-search-terms .search-info-box-active-filters .filter .value {
  font-size: 12px;
}
@media screen and (min-width: 992px) {
  .mobile-search-terms {
    display: none;
  }
}
div.widget {
  margin: 20px 0;
}
div.widget h5 {
  font-size: 18px;
}
div.widget input {
  border: 1px solid #b9b9b9;
  width: 100%;
}
.favorite-list-item-container {
  margin-top: 30px;
}
.favorite-list-item-container .__photo {
  position: relative;
}
.favorite-list-item-container .__photo img {
  max-height: 100%;
}
.favorite-list-item-container .__photo .__remove {
  position: absolute;
  right: 0px;
  top: 0px;
}
@media screen and (min-width: 991px) {
  .favorite-list-item-container .__photo {
    width: 30%;
    float: left;
  }
}
.favorite-list-item-container .__content {
  position: relative;
}
@media screen and (min-width: 991px) {
  .favorite-list-item-container .__content {
    width: 70%;
    float: left;
    padding: 0 0 0 20px;
  }
}
.favorite-list-item-container .__content .__attributes {
  font-size: 10px;
  margin-bottom: 10px;
}
.favorite-list-item-container .__content .__attributes img:first-child {
  margin-left: 0px;
}
.favorite-list-item-container .__content .__attributes img {
  margin-left: 12px;
  margin-right: 3px;
}
.favorite-list-item-container .__content .__price {
  font-size: 18px;
  margin-top: 20px;
}
.favorite-list-item-container .__content .__price .__convert {
  font-size: 16px;
  color: #9b203f;
}
.favorite-list-item-container .__content .__location a {
  font-size: 16px;
  color: #779ecb;
}
.favorite-list-item-container .__content .__description {
  font-size: 14px;
  margin-top: 10px;
}
.favorite-list-item-container .__content .__cta {
  margin: 20px auto;
  background-color: #5fcf80;
  line-height: 52px;
  padding: 0px 5px;
  color: #fff;
  border: none;
  display: block;
  border-radius: 5px;
  text-align: center;
}
@media screen and (min-width: 991px) {
  .favorite-list-item-container .__content .__cta {
    margin: 20px 0;
    display: inline-block;
    padding: 0px 30px;
  }
}
.favorite-list-item-container .__content .__enquired {
  font-size: 13px;
  margin-top: 10px;
}
@media screen and (min-width: 991px) {
  .favorite-list-item-container .__content .__enquired {
    position: absolute;
    top: 0px;
    right: 0px;
  }
}
.alert-list-item-container {
  margin: auto;
  margin-top: 15px;
  margin-bottom: 30px;
  /*height: 80px;*/
}
.alert-list-item-title {
  font-size: 15px;
}
.alert-list-item-status {
  padding-top: 5px;
  position: relative;
}
.alert-list-item-status button {
  background-color: #fff;
  border: 1px solid #b9b9b9;
  line-height: 30px;
  height: 30px;
  display: inline-block;
  cursor: pointer;
  padding: 0px 10px;
}
.alert-list-item-container .alert-list-item-status-btn-on {
  background-color: #fff;
  color: black;
}
.alert-list-item-container .alert-list-item-status-btn-on[disabled] {
  cursor: initial;
}
.alert-list-item-container .alert-list-item-status-btn-off {
  background-color: #9b203f;
  color: #fff;
}
.alert-list-item-container .alert-list-item-status-btn-off[disabled] {
  cursor: initial;
}
.alert-list-item-container.active .alert-list-item-status-btn-off {
  background-color: #fff;
  color: black;
}
.alert-list-item-container.active .alert-list-item-status-btn-on {
  background-color: #5fcf80;
  color: #fff;
}
.alert-list-item-container a.alert-list-item-btn {
  background-color: #5fcf80;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  color: #fff;
  border: none;
  display: inline-block;
  border-radius: 5px;
}
.alert-list-item-container .alert-list-item-remove {
  text-align: right;
}
.alert-list-item-container .alert-list-item-remove button {
  margin-top: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.alert-list-item-description {
  padding: 5px 15px;
}
.advert {
  position: relative;
}
.advert-title,
.advert-body {
  background-color: #f4f4f4;
}
.advert-title {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 25px;
  border-bottom: 10px solid #fff;
  z-index: 1;
}
.advert-body {
  height: 100%;
  padding-top: 35px;
  box-sizing: border-box;
}
.billboard-wrapper {
  text-align: center;
  padding: 5px;
}
.advert-billboard {
  margin: auto;
}
.mpu-wrapper {
  width: 300px;
  margin: 30px auto 0 auto;
}
@media screen and (min-width: 991px) {
  .mpu-wrapper {
    width: auto;
    margin: 30px 0px;
  }
  .mpu-wrapper:first-of-type {
    margin-top: 0;
  }
}
.mpu-wrapper.guide a {
  display: block;
  border: 1px solid #b9b9b9;
  color: #779ecb;
  font-size: 17px;
}
.mpu-wrapper.guide a img {
  display: block;
  width: 31%;
}
.mpu-wrapper.guide a span {
  width: 60%;
  display: block;
  position: absolute;
  left: 31%;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 10px 0 6px;
  background: url('/static/img/main/widget_next_icon.png') no-repeat right;
}
@media screen and (min-width: 1000px) and (max-width: 1195px) {
  div.mpu3-wrapper {
    max-height: 230px;
    overflow-y: hidden;
  }
}
.my-account h1 {
  margin-bottom: 15px;
}
.my-account h2 {
  font-size: 28px;
  margin-bottom: 35px;
}
.my-account h3,
.my-account h4 {
  margin-bottom: 10px;
}
.my-account h3 {
  font-size: 24px;
}
.my-account p {
  margin: 10px 0;
}
.my-account div.actions {
  margin: 15px 0;
}
.my-account div.edit-links {
  margin: 0 0 10px 0;
  text-align: right;
}
.my-account div.edit-links a {
  color: #779ecb;
}
.my-account div.edit-links a:hover {
  text-decoration: underline;
}
.my-account table.table {
  width: 100%;
  border-collapse: collapse;
}
.my-account table.table tr {
  background: #f4f4f4;
}
.my-account table.table tr:nth-child(even) {
  background: #f4f4f4;
}
.my-account table.table tr th {
  background-color: #dddddd;
  border: 1px solid #b9b9b9;
  padding: 7px;
}
.my-account table.table tr td {
  border: 1px solid #b9b9b9;
  padding: 7px;
}
.my-account table.table tr td img {
  max-width: 200px;
}
.my-account table.table tr td .btn {
  display: block;
  text-align: center;
  padding: 6px 18px;
  margin: 4px 0;
}
.my-account table.table tr td .btn:hover {
  color: initial;
}
.my-account table.table a:hover {
  color: #9b203f;
}
.my-account dl {
  *zoom: 1;
  border: 1px solid #b9b9b9;
  border-bottom: none;
}
.my-account dl:before,
.my-account dl:after {
  content: " ";
  display: table;
}
.my-account dl:after {
  clear: both;
}
.my-account dl dt {
  display: block;
  float: left;
  clear: left;
  width: 33.33333333%;
  background: #f4f4f4;
  border-bottom: 1px solid #b9b9b9;
  padding: 7px;
}
.my-account dl dd {
  display: block;
  float: left;
  background-color: #dddddd;
  border-bottom: 1px solid #b9b9b9;
  padding: 7px;
  margin: 0;
  width: 66.66666667%;
}
.my-account .my-profile {
  margin: 25px 0;
}
.my-account .my-profile a {
  color: #779ecb;
}
.my-account .my-profile a:hover {
  text-decoration: underline;
}
form.filter {
  margin: 10px 0 20px 0;
}
form.filter .btn {
  clear: both;
  display: block;
  width: 100%;
}
@media screen and (min-width: 991px) {
  form.filter .primary {
    float: left;
    width: 70%;
    padding-right: 10px;
  }
  form.filter .secondary {
    float: left;
    width: 30%;
  }
  form.filter .btn {
    margin: 0 auto;
    width: 300px;
    max-width: 100%;
  }
}
div.guide-link {
  margin-top: 15px;
}
div.guide-link a {
  color: #779ecb;
}
div.guide-link a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 991px) {
  div.guide-link {
    text-align: center;
  }
}
div.my-listings-list h3 {
  font-size: 26px;
  margin: 10px 0;
}
div.my-listings-list p {
  margin: 10px 0;
}
div.my-listings-list ul {
  margin: 10px 0;
  padding: 0;
  border: 1px solid #b9b9b9;
  border-bottom: none;
}
div.my-listings-list ul li {
  background-color: #f4f4f4;
  border-bottom: 1px solid #b9b9b9;
}
div.my-listings-list ul li a {
  *zoom: 1;
  display: block;
  padding: 10px;
}
div.my-listings-list ul li a:before,
div.my-listings-list ul li a:after {
  content: " ";
  display: table;
}
div.my-listings-list ul li a:after {
  clear: both;
}
div.my-listings-list ul li a:hover {
  color: #9b203f;
}
div.my-listings-list ul li a div.status {
  float: right;
}
div.my-listings-list ul li a div.name {
  font-size: 13px;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
div.my-listings-list ul li.active {
  background-color: #dddddd;
}
div.stats-container {
  *zoom: 1;
}
div.stats-container:before,
div.stats-container:after {
  content: " ";
  display: table;
}
div.stats-container:after {
  clear: both;
}
@media screen and (min-width: 991px) {
  div.stats-container {
    margin: 0 -10px;
  }
}
div.stats-container h4 {
  font-size: 20px;
}
div.stats-container div.stats-box {
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 991px) {
  div.stats-container div.stats-box {
    float: left;
    width: 33.33333333%;
    padding: 0 10px;
  }
}
div.stats-container div.stats-box dl dt {
  width: 66.66666667%;
}
div.stats-container div.stats-box dl dd {
  width: 33.33333333%;
  text-align: right;
}
.agent-teaser {
  border: 1px solid #eaeaea;
  margin: 15px 0;
}
.agent-teaser .__header {
  background: #f4f4f4;
  color: #000;
  padding: 15px;
  font-size: 18px;
}
.agent-teaser .__content {
  *zoom: 1;
  padding: 15px;
}
.agent-teaser .__content:before,
.agent-teaser .__content:after {
  content: " ";
  display: table;
}
.agent-teaser .__content:after {
  clear: both;
}
.agent-teaser .__description * {
  font-size: 15px !important;
  background: none !important;
  color: #000 !important;
}
.agent-teaser .__cta {
  text-decoration: none;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #5fcf80;
  padding: 15px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  margin-top: 15px;
}
.agent-teaser .__logo {
  float: right;
  width: 30%;
}
.agent-detail * {
  box-sizing: border-box;
}
.agent-detail h1 {
  margin: 14px 0;
  color: #9b203f;
}
@media screen and (min-width: 991px) {
  .agent-detail h1 {
    margin: 0;
  }
}
.agent-detail .agent-logo {
  text-align: center;
}
@media screen and (min-width: 991px) {
  .agent-detail .agent-logo {
    float: right;
    max-width: 300px;
  }
}
.agent-detail h2 {
  margin: 25px 0 10px 0;
  font-size: 20px;
  color: #9b203f;
}
.agent-detail a {
  color: #779ecb;
}
.agent-detail a:hover {
  text-decoration: underline;
}
.agent-detail p {
  margin: 10px 0;
}
.agent-detail .__quote_cta {
  margin-top: 15px;
}
.agent-detail .__quote_cta .link-btn {
  background: #fde67a;
  color: #000;
}
.article-teaser {
  border: 1px solid #eaeaea;
  margin: 15px 0;
}
.article-teaser .__header {
  background: #f4f4f4;
  color: #000;
}
.article-teaser .__header h2 {
  font-size: 18px;
  padding: 15px;
}
.article-teaser .__header h2 a {
  color: #000;
}
.article-teaser .__header .__promotion_flash {
  background-color: #5fcf80;
  color: #fff;
  padding: 4px;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 991px) {
  .article-teaser .__header .__promotion_flash {
    padding: 8px 15px;
    margin: 9px;
    font-size: 15px;
    float: right;
  }
}
.article-teaser .__content {
  *zoom: 1;
  padding: 15px;
}
.article-teaser .__content:before,
.article-teaser .__content:after {
  content: " ";
  display: table;
}
.article-teaser .__content:after {
  clear: both;
}
.article-teaser .__content p {
  margin: 0;
}
.article-teaser .__content .__image {
  margin-bottom: 15px;
}
@media screen and (min-width: 991px) {
  .article-teaser .__content .__image {
    float: right;
    width: 30%;
    margin-bottom: 0;
  }
}
.article-teaser .__cta {
  text-decoration: none;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #5fcf80;
  padding: 15px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  margin-top: 15px;
}
.article-detail * {
  box-sizing: border-box;
}
.article-detail .__promotion_flash {
  background-color: #5fcf80;
  color: #fff;
  padding: 7px;
  font-size: 13px;
  text-align: center;
}
@media screen and (min-width: 991px) {
  .article-detail .__promotion_flash {
    padding: 15px 20px;
    font-size: 15px;
    float: right;
  }
}
.article-detail h1 {
  margin: 14px 0;
  color: #9b203f;
}
@media screen and (min-width: 991px) {
  .article-detail h1 {
    margin: 0;
  }
}
.article-detail .__main-image {
  display: block;
  margin: 20px 0;
  text-align: center;
}
.article-detail .__body {
  margin: 20px 0;
}
.article-detail .__body h2,
.article-detail .__body h3,
.article-detail .__body h4,
.article-detail .__body h5,
.article-detail .__body h6 {
  margin: 0;
  color: #9b203f;
}
.article-detail .__body h2 {
  font-size: 25px;
}
.article-detail .__body h3 {
  font-size: 20px;
}
.article-detail .__body h4 {
  font-size: 17px;
}
.article-detail .__body h5 {
  font-size: 15px;
}
.article-detail .__body a {
  color: #779ecb;
}
.article-detail .__body a:hover {
  text-decoration: underline;
}
.article-detail .__body p {
  margin: 0;
}
.article-detail .__body ul {
  margin: 0;
  list-style-type: disc;
}
/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000;
  position: absolute;
  z-index: 10000;
  user-select: none;
}
/**
 * The picker input element.
 */
.picker__input {
  cursor: default;
}
/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #779ecb;
}
/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em;
}
/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: 0.75em;
}
/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.picker__year {
  color: #999;
  font-size: 0.8em;
  font-style: italic;
}
/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: 0.5em;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #779ecb;
}
/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: 0.5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em;
  }
}
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em;
  }
}
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  border-right: 0.75em solid #000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000;
}
.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}
/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: 0.75em;
  margin-bottom: 0.5em;
}
@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: 0.75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
}
/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.28571429%;
  font-size: 0.75em;
  padding-bottom: 0.25em;
  color: #999;
  font-weight: 500;
  /* Increase the spacing a tad */
}
@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: 0.5em;
  }
}
/**
 * The days on the calendar
 */
.picker__day {
  padding: 0.3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}
.picker__day--today {
  position: relative;
}
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: 0.5em solid transparent;
}
.picker__day--disabled:before {
  border-top-color: #aaa;
}
.picker__day--outfocus {
  color: #ddd;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__day--highlighted {
  border-color: #779ecb;
}
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #779ecb;
  color: #fff;
}
.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbb;
}
/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center;
}
.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #fff;
  background: #fff;
  font-size: 0.8em;
  padding: 0.66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}
.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}
.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #779ecb;
  outline: none;
}
.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: 0.45em;
}
.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: 0.66em solid transparent;
}
.picker__button--clear:before {
  top: -0.25em;
  width: 0.66em;
  border-top: 3px solid #e20;
}
.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: 0.35em;
  color: #777;
}
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}
.picker__button--today[disabled]:before {
  border-top-color: #aaa;
}
/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
/**
 * Make the holder and frame fullscreen.
 */
.picker__holder,
.picker__frame {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}
/**
 * The holder should overlay the entire screen.
 */
.picker__holder {
  position: fixed;
  transition: background 0.15s ease-out, transform 0s 0.15s;
  -webkit-backface-visibility: hidden;
}
/**
 * The frame that bounds the box contents of the picker.
 */
.picker__frame {
  position: absolute;
  margin: 0 auto;
  min-width: 256px;
  max-width: 666px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  transition: all 0.15s ease-out;
}
@media (min-height: 33.875em) {
  .picker__frame {
    overflow: visible;
    top: auto;
    bottom: -100%;
    max-height: 80%;
  }
}
@media (min-height: 40.125em) {
  .picker__frame {
    margin-bottom: 7.5%;
  }
}
/**
 * The wrapper sets the stage to vertically align the box contents.
 */
.picker__wrap {
  display: table;
  width: 100%;
  height: 100%;
}
@media (min-height: 33.875em) {
  .picker__wrap {
    display: block;
  }
}
/**
 * The box contains all the picker contents.
 */
.picker__box {
  background: #fff;
  display: table-cell;
  vertical-align: middle;
}
@media (min-height: 26.5em) {
  .picker__box {
    font-size: 1.25em;
  }
}
@media (min-height: 33.875em) {
  .picker__box {
    display: block;
    font-size: 1.33em;
    border: 1px solid #777;
    border-top-color: #898989;
    border-bottom-width: 0;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
  }
}
@media (min-height: 40.125em) {
  .picker__box {
    font-size: 1.5em;
    border-bottom-width: 1px;
    border-radius: 5px;
  }
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  transform: translateY(0);
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
  zoom: 1;
  background: rgba(0, 0, 0, 0.32);
  transition: background 0.15s ease-out;
}
.picker--opened .picker__frame {
  transform: translateY(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
@media (min-height: 33.875em) {
  .picker--opened .picker__frame {
    top: auto;
    bottom: 0;
  }
}
/* ==========================================================================
   $DEFAULT-DATE-PICKER
   ========================================================================== */
.print-show {
  display: none;
}
@media print {
  .print-hide {
    display: none !important;
  }
  .print-show {
    display: initial;
  }
  .billboard-wrapper {
    display: none !important;
  }
}
.dpt-info {
  margin-top: 20px;
}
.dpt-info p {
  line-height: 16px;
  font-size: 12px;
}
@media screen and (min-width: 991px) {
  .dpt-info {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 47px;
  }
  .dpt-info p {
    line-height: 18px;
    font-size: 14px;
  }
}
@media screen and (min-width: 991px) {
  .dpt-info .dpt-info__primary {
    flex: 1;
    margin-left: 10px;
  }
}
.dpt-info .dpt-info__primary .dpt-info__desc {
  *zoom: 1;
}
.dpt-info .dpt-info__primary .dpt-info__desc:before,
.dpt-info .dpt-info__primary .dpt-info__desc:after {
  content: " ";
  display: table;
}
.dpt-info .dpt-info__primary .dpt-info__desc:after {
  clear: both;
}
.dpt-info .dpt-info__primary .dpt-info__desc .dpt-info__desc__copy {
  padding-right: 14px;
}
@media screen and (min-width: 991px) {
  .dpt-info .dpt-info__primary .dpt-info__desc .dpt-info__desc__copy {
    width: 60%;
    float: left;
  }
}
.dpt-info .dpt-info__primary .dpt-info__desc .dpt-info__desc__copy h2 {
  color: #000;
  font-size: 16px;
  margin-bottom: 22px;
}
@media screen and (min-width: 991px) {
  .dpt-info .dpt-info__primary .dpt-info__desc .dpt-info__desc__copy h2 {
    font-size: 30px;
  }
}
.dpt-info .dpt-info__primary .dpt-info__desc .dpt-info__desc__copy p {
  margin: 8px 0;
}
.dpt-info .dpt-info__primary .dpt-info__desc .dpt-info__desc__callout {
  margin-top: 20px;
}
@media screen and (min-width: 991px) {
  .dpt-info .dpt-info__primary .dpt-info__desc .dpt-info__desc__callout {
    width: 40%;
    float: left;
    margin-top: 0;
  }
}
.dpt-info .dpt-info__map {
  max-width: 100%;
}
.dpt-info .dpt-info__loud-info {
  background: #9b203f;
  color: #fff;
  padding: 8px 18px;
  font-size: 10px;
}
.dpt-info .dpt-info__loud-info h3 {
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  margin: 4px 0;
}
.dpt-info .dpt-info__loud-info p {
  font-size: 10px;
  line-height: 12px;
  margin: 4px 0;
}
.dpt-info .dpt-info__box {
  margin-top: 20px;
  border: 1px solid #b9b9b9;
  border-radius: 2px;
}
@media screen and (min-width: 991px) {
  .dpt-info .dpt-info__box {
    display: flex;
  }
}
.dpt-info .dpt-info__box .dpt-info__box__column {
  flex: 1;
  margin: 15px 30px 15px 50px;
  position: relative;
}
.dpt-info .dpt-info__box .dpt-info__box__column h3 {
  font-size: 14px;
  color: #9b203f;
  text-transform: uppercase;
  margin: 0 0 7px  0;
}
.dpt-info .dpt-info__box .dpt-info__box__column p {
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 7px  0;
}
.dpt-info .dpt-info__box .dpt-info__box__column .fps-icon {
  color: #9b203f;
  position: absolute;
  left: -30px;
  font-size: 1.3em;
}
.dpt-info .dpt-info__secondary {
  background-image: url("/static/img/fps/ain.png");
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  margin-top: 20px;
  padding-top: 85%;
}
@media screen and (min-width: 991px) {
  .dpt-info .dpt-info__secondary {
    flex: 1;
    margin-right: 10px;
    margin-top: 0;
    padding-top: 0;
  }
}
.dpt-info .dpt-info__secondary .dpt-info__banner {
  position: absolute;
  width: 69%;
  top: 35px;
  left: -20px;
  z-index: 1;
  line-height: 16px;
  font-size: 10px;
  padding: 12px 10px 12px 38px;
  background-color: #9b203f;
  color: #fff;
}
.dpt-info .dpt-info__secondary .dpt-info__banner:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: -9px;
  left: 0;
  border-left: 20px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 9px solid #bcbdc2;
}
.dpt-info .dpt-info__secondary .dpt-info__banner h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (min-width: 991px) {
  .dpt-info .dpt-info__secondary .dpt-info__banner {
    font-size: 12px;
  }
  .dpt-info .dpt-info__secondary .dpt-info__banner h3 {
    font-size: 16px;
  }
}
.dpt-info .dpt-info__secondary .dpt-info__highlights {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 22px 18px 22px 18px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
}
.dpt-info .dpt-info__secondary .dpt-info__highlights h3 {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (min-width: 991px) {
  .dpt-info .dpt-info__secondary .dpt-info__highlights {
    font-size: 14px;
  }
  .dpt-info .dpt-info__secondary .dpt-info__highlights h3 {
    font-size: 16px;
  }
}
.info-box-form .secondary .checkbox label[for=ask_ccu] {
  color: #a44dbc;
}

