@charset "UTF-8";
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: -webkit-calc(100% + 2px);
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
      /*rtl:begin:ignore*/
  /*
      */
  left: 0;
  /*
      /*rtl:end:ignore*/
  /*
      */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  /*
      */
  right: 0;
  /*
      /*rtl:end:ignore*/
  /*
      */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
      align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 * 
 * @author Łukasz Pawełczak (http://github.com/pawelczak)
 * @version 1.3.5
 * Copyright  License: 
 */
.easy-autocomplete {
  position: relative;
}

.easy-autocomplete input {
  border-color: #ccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  color: #555;
  float: none;
  padding: 6px 12px;
}

.easy-autocomplete input:hover, .easy-autocomplete input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.easy-autocomplete a {
  display: block;
}

.easy-autocomplete.eac-blue-light input:hover, .easy-autocomplete.eac-blue-light input:focus {
  border-color: #66afe9;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}

.easy-autocomplete.eac-blue-light ul {
  border-color: #66afe9;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}

.easy-autocomplete.eac-blue-light ul li, .easy-autocomplete.eac-blue-light ul .eac-category {
  border-color: #66afe9;
}

.easy-autocomplete.eac-blue-light ul li.selected, .easy-autocomplete.eac-blue-light ul .eac-category.selected {
  background-color: #ecf5fc;
}

.easy-autocomplete.eac-green-light input:hover, .easy-autocomplete.eac-green-light input:focus {
  border-color: #41DB00;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6);
}

.easy-autocomplete.eac-green-light ul {
  border-color: #41DB00;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6);
}

.easy-autocomplete.eac-green-light ul li, .easy-autocomplete.eac-green-light ul .eac-category {
  border-color: #41DB00;
}

.easy-autocomplete.eac-green-light ul li.selected, .easy-autocomplete.eac-green-light ul .eac-category.selected {
  background-color: #9eff75;
}

.easy-autocomplete.eac-red-light input:hover, .easy-autocomplete.eac-red-light input:focus {
  border-color: #ff5b5b;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6);
}

.easy-autocomplete.eac-red-light ul {
  border-color: #ff5b5b;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6);
}

.easy-autocomplete.eac-red-light ul li, .easy-autocomplete.eac-red-light ul .eac-category {
  border-color: #ff5b5b;
}

.easy-autocomplete.eac-red-light ul li.selected, .easy-autocomplete.eac-red-light ul .eac-category.selected {
  background-color: #ff8e8e;
}

.easy-autocomplete.eac-yellow-light input:hover, .easy-autocomplete.eac-yellow-light input:focus {
  border-color: #ffdb00;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6);
}

.easy-autocomplete.eac-yellow-light ul {
  border-color: #ffdb00;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6);
}

.easy-autocomplete.eac-yellow-light ul li, .easy-autocomplete.eac-yellow-light ul .eac-category {
  border-color: #ffdb00;
}

.easy-autocomplete.eac-yellow-light ul li.selected, .easy-autocomplete.eac-yellow-light ul .eac-category.selected {
  background-color: #ffe233;
}

.easy-autocomplete.eac-dark-light input:hover, .easy-autocomplete.eac-dark-light input:focus {
  border-color: #333;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6);
}

.easy-autocomplete.eac-dark-light ul {
  border-color: #333;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6);
}

.easy-autocomplete.eac-dark-light ul li, .easy-autocomplete.eac-dark-light ul .eac-category {
  border-color: #333;
}

.easy-autocomplete.eac-dark-light ul li.selected, .easy-autocomplete.eac-dark-light ul .eac-category.selected {
  background-color: #4d4d4d;
  color: #fff;
}

.easy-autocomplete.eac-dark {
  color: #fff;
}

.easy-autocomplete.eac-dark input {
  background-color: #404040;
  border-radius: 4px;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  color: #f6f6f6;
}

.easy-autocomplete.eac-dark input:hover, .easy-autocomplete.eac-dark input:focus {
  border-color: #333;
  -webkit-box-shadow: 0;
          box-shadow: 0;
}

.easy-autocomplete.eac-dark ul {
  border-color: #333;
}

.easy-autocomplete.eac-dark ul li, .easy-autocomplete.eac-dark ul .eac-category {
  background-color: #404040;
  border-color: #333;
}

.easy-autocomplete.eac-dark ul li.selected, .easy-autocomplete.eac-dark ul .eac-category.selected {
  background-color: #737373;
  color: #f6f6f6;
}

.easy-autocomplete.eac-dark-glass {
  color: #fff;
}

.easy-autocomplete.eac-dark-glass input {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  color: #f6f6f6;
}

.easy-autocomplete.eac-dark-glass input:hover, .easy-autocomplete.eac-dark-glass input:focus {
  border-color: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0;
          box-shadow: 0;
}

.easy-autocomplete.eac-dark-glass ul {
  border-color: rgba(0, 0, 0, 0.8);
}

.easy-autocomplete.eac-dark-glass ul li, .easy-autocomplete.eac-dark-glass ul .eac-category {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.8);
}

.easy-autocomplete.eac-dark-glass ul li.selected, .easy-autocomplete.eac-dark-glass ul .eac-category.selected {
  background-color: rgba(64, 64, 64, 0.8);
  color: #f6f6f6;
}

.easy-autocomplete.eac-dark-glass ul li:last-child, .easy-autocomplete.eac-dark-glass ul .eac-category:last-child {
  border-radius: 0 0 4px 4px;
}

.easy-autocomplete.eac-blue {
  color: #fff;
}

.easy-autocomplete.eac-blue input {
  background-color: #6d9ed1;
  border-radius: 4px;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  color: #f6f6f6;
}

.easy-autocomplete.eac-blue input::-webkit-input-placeholder {
  color: #f6f6f6;
}

.easy-autocomplete.eac-blue input:-moz-placeholder {
  color: #f6f6f6;
}

.easy-autocomplete.eac-blue input::-moz-placeholder {
  color: #f6f6f6;
}

.easy-autocomplete.eac-blue input:-ms-input-placeholder {
  color: #f6f6f6;
}

.easy-autocomplete.eac-blue input:hover, .easy-autocomplete.eac-blue input:focus {
  border-color: #5A91CB;
  -webkit-box-shadow: 0;
          box-shadow: 0;
}

.easy-autocomplete.eac-blue ul {
  border-color: #5A91CB;
}

.easy-autocomplete.eac-blue ul li, .easy-autocomplete.eac-blue ul .eac-category {
  background-color: #6d9ed1;
  border-color: #5A91CB;
}

.easy-autocomplete.eac-blue ul li.selected, .easy-autocomplete.eac-blue ul .eac-category.selected {
  background-color: #94b8dd;
  color: #f6f6f6;
}

.easy-autocomplete.eac-yellow {
  color: #333;
}

.easy-autocomplete.eac-yellow input {
  background-color: #ffdb7e;
  border-color: #333;
  border-radius: 4px;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  color: #333;
}

.easy-autocomplete.eac-yellow input:hover, .easy-autocomplete.eac-yellow input:focus {
  border-color: #333;
  -webkit-box-shadow: 0;
          box-shadow: 0;
}

.easy-autocomplete.eac-yellow ul {
  border-color: #333;
}

.easy-autocomplete.eac-yellow ul li, .easy-autocomplete.eac-yellow ul .eac-category {
  background-color: #ffdb7e;
  border-color: #333;
}

.easy-autocomplete.eac-yellow ul li.selected, .easy-autocomplete.eac-yellow ul .eac-category.selected {
  background-color: #ffe9b1;
  color: #333;
}

.easy-autocomplete.eac-purple {
  color: #333;
}

.easy-autocomplete.eac-purple input {
  background-color: #d6d1e7;
  border-color: #b8afd5;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  color: #333;
}

.easy-autocomplete.eac-purple input:hover, .easy-autocomplete.eac-purple input:focus {
  border-color: #333;
  -webkit-box-shadow: 0;
          box-shadow: 0;
}

.easy-autocomplete.eac-purple ul {
  border-color: #333;
}

.easy-autocomplete.eac-purple ul li, .easy-autocomplete.eac-purple ul .eac-category {
  background-color: #d6d1e7;
  border-color: #333;
}

.easy-autocomplete.eac-purple ul li.selected, .easy-autocomplete.eac-purple ul .eac-category.selected {
  background-color: #ebe8f3;
  color: #333;
}

.easy-autocomplete.eac-bootstrap input {
  border-color: #ccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  color: #555;
  padding: 6px 12px;
}

.easy-autocomplete-container {
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.easy-autocomplete-container ul {
  background: none repeat scroll 0 0 #ffffff;
  border-top: 1px dotted #ccc;
  display: none;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: relative;
  top: -1px;
}

.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
  background: inherit;
  border-color: #ccc;
  -webkit-border-image: none;
          border-image: none;
  border-style: solid;
  border-width: 0 1px;
  display: block;
  font-size: 14px;
  font-weight: normal;
  padding: 4px 12px;
}

.easy-autocomplete-container ul li:last-child {
  border-radius: 0 0 2px 2px;
  border-width: 0 1px 1px;
}

.easy-autocomplete-container ul li.selected {
  background: none repeat scroll 0 0 #ebebeb;
  cursor: pointer;
}

.easy-autocomplete-container ul li.selected div {
  font-weight: normal;
}

.easy-autocomplete-container ul li div {
  display: block;
  font-weight: normal;
  word-break: break-all;
}

.easy-autocomplete-container ul li b {
  font-weight: bold;
}

.easy-autocomplete-container ul .eac-category {
  font-color: #aaa;
  font-style: italic;
}

.eac-description .eac-item span {
  color: #aaa;
  font-style: italic;
  font-size: 0.9em;
}

.eac-icon-left .eac-item img {
  margin-right: 4px;
  max-height: 30px;
}

.eac-icon-right .eac-item {
  margin-top: 8px;
  min-height: 24px;
  position: relative;
}

.eac-icon-right .eac-item img {
  margin-left: 4px;
  max-height: 30px;
  position: absolute;
  right: -4px;
  top: -8px;
}

/*# sourceMappingURL=easy-autocomplete.min.css.map */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?sdhjf7583");
  src: url("../fonts/icomoon.eot?sdhjf7583#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?sdhjf7583") format("truetype"), url("../fonts/icomoon.woff?sdhjf7583") format("woff"), url("../fonts/icomoon.svg?sdhjf7583#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^='icon-'],
[class*=' icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: initial;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^='icon-']:before,
[class*=' icon-']:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: initial;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-treemail:before {
  content: "\e925";
}

.icon-person:before {
  content: "\e923";
}

.icon-species-2:before {
  content: "\e924";
}

.icon-distance:before {
  content: "\e907";
}

.icon-species:before {
  content: "\e908";
}

.icon-Tree-Silhouette:before {
  content: "\e909";
}

.icon-trees:before {
  content: "\e90a";
}

.icon-arrow-right:before {
  content: "\e911";
}

.icon-arrow-left:before {
  content: "\e912";
}

.icon-close:before {
  content: "\e900";
}

.icon-chevron-up:before {
  content: "\e902";
}

.icon-arrow-down:before {
  content: "\e903";
}

.icon-chevron-down:before {
  content: "\e904";
}

.icon-facebook:before {
  content: "\ea90";
}

.icon-twitter:before {
  content: "\ea96";
}

.icon-trash:before {
  content: "\e922";
}

.icon-info:before {
  content: "\e91f";
}

.icon-hamburger:before {
  content: "\e91a";
}

.icon-right:before {
  content: "\e918";
}

.icon-left:before {
  content: "\e919";
}

.icon-instagram:before {
  content: "\e914";
}

.icon-marker:before {
  content: "\e913";
}

.icon-exclamation:before {
  content: "\e921";
}

.icon-mail:before {
  content: "\e920";
}

.icon-current-location:before {
  content: "\e91e";
  color: #0971b9;
}

.icon-write:before {
  content: "\e91d";
}

.icon-image:before {
  content: "\e91c";
}

.icon-link:before {
  content: "\e91b";
}

.icon-clock-o:before {
  content: "\e901";
}

.icon-calendar-o:before {
  content: "\e917";
}

.icon-heart-line:before {
  content: "\e915";
}

.icon-heart:before {
  content: "\e916";
}

.icon-heart2:before {
  content: "\e910";
}

.icon-globe:before {
  content: "\e90f";
}

.icon-caret-right:before {
  content: "\e90e";
}

.icon-caret-left:before {
  content: "\e90d";
}

.icon-compress:before {
  content: "\e90c";
}

.icon-expand:before {
  content: "\e905";
}

.icon-flag-o:before {
  content: "\e90b";
}

.icon-search:before {
  content: "\e906";
}

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

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

@font-face {
  font-family: "Pangolin";
  src: url("../fonts/Pangolin-Regular.ttf") format("truetype"), url("../fonts/pangolin.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

.row:before, .row:after {
  content: '';
  display: table;
}

.row:after {
  clear: both;
}

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

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.desktop-only {
  display: none;
}

.no-mobile {
  display: none;
}

.mid-desktop-only {
  display: none !important;
}

@media only screen and (min-width: 768px) {
  .no-mobile {
    display: block;
  }
  .mobile-only {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  .desktop-only {
    display: block;
  }
  .no-desktop {
    display: none !important;
  }
}

@media only screen and (min-width: 1280px) {
  .no-mid-desktop {
    display: none !important;
  }
  .mid-desktop-only {
    display: block !important;
  }
}

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

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Bold.eot");
  src: url("../fonts/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans-Bold.ttf") format("truetype"), url("../fonts/OpenSans-Bold.svg#") format("svg");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Pangolin';
  src: url("../fonts/Pangolin-Regular.ttf") format("truetype"), url("../fonts/pangolin.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

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

[class^='icon-'],
[class*=' icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: initial;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^='icon-']:before,
[class*=' icon-']:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: initial;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-treemail:before {
  content: "\e925";
}

.icon-person:before {
  content: "\e923";
}

.icon-species-2:before {
  content: "\e924";
}

.icon-distance:before {
  content: "\e907";
}

.icon-species:before {
  content: "\e908";
}

.icon-Tree-Silhouette:before {
  content: "\e909";
}

.icon-trees:before {
  content: "\e90a";
}

.icon-arrow-right:before {
  content: "\e911";
}

.icon-arrow-left:before {
  content: "\e912";
}

.icon-close:before {
  content: "\e900";
}

.icon-chevron-up:before {
  content: "\e902";
}

.icon-arrow-down:before {
  content: "\e903";
}

.icon-chevron-down:before {
  content: "\e904";
}

.icon-facebook:before {
  content: "\ea90";
}

.icon-twitter:before {
  content: "\ea96";
}

.icon-trash:before {
  content: "\e922";
}

.icon-info:before {
  content: "\e91f";
}

.icon-hamburger:before {
  content: "\e91a";
}

.icon-right:before {
  content: "\e918";
}

.icon-left:before {
  content: "\e919";
}

.icon-instagram:before {
  content: "\e914";
}

.icon-marker:before {
  content: "\e913";
}

.icon-exclamation:before {
  content: "\e921";
}

.icon-mail:before {
  content: "\e920";
}

.icon-current-location:before {
  content: "\e91e";
  color: #0971b9;
}

.icon-write:before {
  content: "\e91d";
}

.icon-image:before {
  content: "\e91c";
}

.icon-link:before {
  content: "\e91b";
}

.icon-clock-o:before {
  content: "\e901";
}

.icon-calendar-o:before {
  content: "\e917";
}

.icon-heart-line:before {
  content: "\e915";
}

.icon-heart:before {
  content: "\e916";
}

.icon-heart2:before {
  content: "\e910";
}

.icon-globe:before {
  content: "\e90f";
}

.icon-caret-right:before {
  content: "\e90e";
}

.icon-caret-left:before {
  content: "\e90d";
}

.icon-compress:before {
  content: "\e90c";
}

.icon-expand:before {
  content: "\e905";
}

.icon-flag-o:before {
  content: "\e90b";
}

.icon-search:before {
  content: "\e906";
}

[class^="col-"], [class*=" col-"] {
  float: left;
  padding: 0;
  width: 100%;
}

.row {
  margin: 0 -10px;
}

@media only screen and (min-width: 768px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .offset-sm-12 {
    margin-left: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .col-md-1 {
    width: 8.3333333333%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .offset-md-12 {
    margin-left: 100%;
  }
}

@media only screen and (min-width: 1280px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .offset-lg-12 {
    margin-left: 100%;
  }
}

.flatpickr-calendar {
  font-family: 'Open Sans';
}

.flatpickr-day.selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #206742;
  border-color: #206742;
  text-align: center;
}

.flatpickr-day.selected:hover {
  background-color: #206742;
  border-color: #206742;
}

.flatpickr-day.today {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.flatpickr-current-month {
  font-size: 17px;
  font-family: 'Open Sans';
}

.plot-tree-form__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.plot-tree-form__image img {
  max-width: 80px;
  width: 100%;
  margin-top: 25px;
}

.plot-tree-form__form-content {
  width: 100%;
  max-width: 575px;
  margin-top: 80px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 15px;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
}

.plot-tree-form__form-content * {
  font-family: "Open Sans";
}

.plot-tree-form__form-content #keyword {
  position: relative;
  resize: none;
  padding: 10px 12px 8px;
  background-color: white;
  caret-color: black;
  cursor: text;
  color: black;
}

.plot-tree-form__form-content #keyword[contenteditable=true]:empty::before {
  content: attr(placeholder);
  pointer-events: none;
  display: block;
  color: #8e8e8e;
  font-weight: normal;
}

.plot-tree-form__form-content #keyword span {
  border: 2px solid #206742;
  color: #206742;
  font-size: 15px;
  padding: 2px 8px;
  border-radius: 5px;
  margin-right: 5px;
  margin-top: 0;
}

.plot-tree-form__form-content #keywords-list {
  background-color: white;
  position: absolute;
  top: 20px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 5px;
  padding-top: 2px;
  cursor: text;
}

.plot-tree-form__form-content #keywords-list li {
  border: 2px solid #206742;
  color: #206742;
  font-size: 15px;
  padding: 2px 8px;
  border-radius: 5px;
  margin-right: 5px;
  margin-top: 0;
}

.plot-tree-form__form-content #keywords-list li:last-child {
  margin-right: 0;
}

.plot-tree-form__form-content #keywords-list > * {
  margin: 5px 0;
}

#plotTreeForm {
  margin: 5px 25px 25px;
  color: white;
  /* Create a custom checkbox */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}

#plotTreeForm textarea,
#plotTreeForm input,
#plotTreeForm select {
  width: 100%;
  padding: 10px 12px 8px;
  margin-top: 10px;
  outline: none;
  border: none;
  border-radius: 0;
  font-family: "Open Sans";
  font-size: 17px;
  line-height: 25px;
}

#plotTreeForm input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#plotTreeForm .checkmark {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 25px;
  width: 25px;
  background-color: #eee;
  cursor: pointer;
}

#plotTreeForm .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

#plotTreeForm input:checked ~ .checkmark:after {
  display: block;
}

#plotTreeForm .checkmark:after {
  left: 8px;
  top: 0px;
  width: 10px;
  height: 20px;
  border: solid green;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#plotTreeForm input[type="file"] {
  display: none;
}

#plotTreeForm .plot-tree-form__header {
  margin-bottom: 40px;
  margin-top: 6px;
  text-align: center;
  color: #fff;
  font-family: Pangolin;
  font-size: 1.75em;
}

#plotTreeForm .plot-tree-form__header .plot-tree-form__scientific-name {
  display: none !important;
}

#plotTreeForm .plot-tree-form__image-header {
  font-size: 18px;
  font-weight: bold;
}

#plotTreeForm .plot-tree-form__image-sub-header {
  font-size: 16px;
  font-weight: bold;
}

#plotTreeForm .plot-tree-form__checkbox {
  position: relative;
  margin-bottom: 20px;
  margin-top: -10px;
}

#plotTreeForm .plot-tree-form__checkbox label {
  margin-left: 35px;
  font-style: italic;
  line-height: 150%;
  font-size: 18px;
  display: inline-block;
  cursor: pointer;
}

#plotTreeForm .plot-tree-form__common-name {
  display: none;
}

#plotTreeForm .plot-tree-form__common-name.show-common-name {
  display: block;
}

#plotTreeForm .plot-tree-form__form-group {
  width: 100%;
  margin-bottom: 27px;
  position: relative;
}

#plotTreeForm .plot-tree-form__form-group label {
  margin-bottom: 12px;
  padding: 0;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
  display: block;
}

#plotTreeForm .plot-tree-form__form-group label.plot-tree-form__date-planted-label {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  #plotTreeForm .plot-tree-form__form-group label.plot-tree-form__date-planted-label {
    width: 210px;
    top: 20px;
  }
}

#plotTreeForm .plot-tree-form__form-group .required-field {
  margin-left: 5px;
  color: red;
  font-size: 16px;
}

#plotTreeForm .plot-tree-form__form-group select {
  cursor: pointer;
}

#plotTreeForm .plot-tree-form__form-group .plot-tree-form__date-planted-text {
  padding-left: 64px;
  cursor: pointer;
  background-image: url("/html/assets/PTM/images/calendar.png");
  background-repeat: no-repeat;
  background-position: 16px;
}

@media (min-width: 1024px) {
  #plotTreeForm .plot-tree-form__form-group.plot-tree-form__date-planted {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#plotTreeForm .plot-tree-form__optional-header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

@media (min-width: 1024px) {
  #plotTreeForm .plot-tree-form__optional-header {
    width: auto;
  }
}

#plotTreeForm .plot-tree-form__optional-header span {
  font-size: 18px;
  font-weight: bold;
  line-height: 150%;
}

#plotTreeForm .plot-tree-form__optional-header .icon {
  font-size: 24px;
  color: #316448;
  background-color: white;
  border-radius: 50%;
  margin-left: 20px;
  padding-top: 1px;
  padding-left: 0.5px;
}

#plotTreeForm .plot-tree-form__optional-header .icon.flip-chevron {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#plotTreeForm .plot-tree-form__optional-content {
  display: none;
}

#plotTreeForm .plot-tree-form__optional-content.is-visible {
  display: block;
}

#plotTreeForm .plot-tree-form__help-block {
  margin-top: 5px;
  display: block;
  font-weight: normal;
  line-height: 1.3;
  font-size: 15px;
  font-style: italic;
}

#plotTreeForm .plot-tree-form__help-block a {
  color: white;
}

#plotTreeForm .plot-tree-form__help-block p {
  margin: 0;
}

#plotTreeForm .plot-tree-form__image-upload {
  margin-top: 25px;
  margin-bottom: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#plotTreeForm .plot-tree-form__image-upload.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#plotTreeForm .plot-tree-form__image-upload .plot-tree-form__upload-text {
  font-size: 18px;
}

#plotTreeForm .plot-tree-form__image-upload label {
  font-weight: normal;
  cursor: pointer;
  vertical-align: center;
  display: block;
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
}

#plotTreeForm .plot-tree-form__image-upload img {
  height: 20px;
  width: 20px;
  cursor: pointer;
}

#plotTreeForm .plot-tree-form__image-upload button {
  width: 45px;
  min-width: 45px;
  height: 45px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #CB333B;
  border-radius: 50%;
  border: 0;
  outline: 0;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  cursor: pointer;
}

#plotTreeForm .plot-tree-form__image-upload button:hover {
  background: #f15053;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}

#plotTreeForm .plot-tree-form__image-upload .custom-form-error {
  top: -webkit-calc(100% + 5px);
  top: calc(100% + 5px);
}

#plotTreeForm .plot-tree-form__upload-clear {
  position: absolute;
  z-index: 10;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}

#plotTreeForm .plot-tree-form__upload-clear:hover {
  -webkit-transform: translateY(-60%) scale(1.2);
          transform: translateY(-60%) scale(1.2);
}

#plotTreeForm .plot-tree-form__upload-clear.show {
  display: block;
}

#plotTreeForm .plot-tree-form__upload-text {
  margin-bottom: 5px;
  display: inline-block;
  font-weight: bold;
  font-size: 17px;
}

#plotTreeForm .plot-tree-form__uploaded-number {
  padding-bottom: 5px;
  display: inline-block;
  font-weight: bold;
  line-height: 1.5em;
}

#plotTreeForm .plot-tree-form__file-wrapper {
  margin-right: 3px;
  margin-bottom: 1px;
  display: block;
  font-weight: normal;
  line-height: 1.5em;
  font-size: 14px;
}

#plotTreeForm .plot-tree-form__file-size {
  margin-left: 5px;
  display: inline-block;
  font-weight: 700;
}

#plotTreeForm .plot-tree-form__file-error {
  margin-bottom: 5px;
  display: block;
}

#plotTreeForm .plot-tree-form__file-error:last-of-type {
  margin-bottom: 0;
}

#plotTreeForm .plot-tree-form__description textarea {
  height: 130px;
}

#plotTreeForm .plot-tree-form__description .custom-form-error {
  top: -webkit-calc(100% - 7px);
  top: calc(100% - 7px);
}

#plotTreeForm .plot-tree-form__captcha-wrapper {
  margin-top: 40px;
  position: relative;
}

#plotTreeForm .plot-tree-form__captcha-wrapper .g-recaptcha div {
  margin: auto;
  text-align: center;
}

#plotTreeForm .plot-tree-form__captcha-wrapper .custom-form-error {
  width: 50%;
  top: 100%;
  left: 25%;
}

#plotTreeForm .plot-tree-form__submit-wrapper {
  width: 157px;
  height: 47px;
  margin: 35px auto 35px auto;
  position: relative;
  text-align: center;
}

#plotTreeForm .plot-tree-form__submit-wrapper input {
  width: 100%;
  height: 100%;
  margin-top: 0;
  z-index: 1;
  background: #e8484b;
  color: #fff;
  border-radius: 30px;
  font-size: 1.125em;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}

#plotTreeForm .plot-tree-form__submit-wrapper input:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  background: #f15053;
}

#plotTreeForm .plot-tree-form__submit-success {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #ce393c;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-size: 1.125em;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}

#plotTreeForm .plot-tree-form__disclaimer-text {
  margin-top: 0px;
  font-weight: bold;
}

#plotTreeForm .plot-tree-form__disclaimer-text p {
  margin: 5px 0px;
  font-size: 15px;
}

#plotTreeForm .plot-tree-form__disclaimer-text .required-warning {
  color: red;
  font-size: 15px;
}

.twitter-typeahead {
  width: 100%;
}

.tt-menu.tt-open {
  width: 100%;
  background-color: white;
  border: 1px solid #acacac;
  font-family: "Open Sans";
}

.tt-suggestion {
  padding: 8px 15px;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  color: black;
  cursor: pointer;
}

.tt-suggestion:hover {
  background-color: #3f94fe;
  color: white;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.custom-form-error {
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 20px;
  top: -webkit-calc(100% + 5px);
  top: calc(100% + 5px);
  z-index: 10;
  border-radius: 4px;
  background-color: white;
  border: 1px solid #898989;
  -webkit-box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  font-weight: 400;
  color: black;
  line-height: 1.3;
  -webkit-animation: fade-in 0.7s ease-out forwards;
          animation: fade-in 0.7s ease-out forwards;
}

.custom-form-error__img-wrapper {
  padding: 4px;
  background-color: #ff9d00;
  margin-right: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
}

.custom-form-error img {
  width: 16px;
  min-width: 16px;
  height: 16px;
  color: white;
}

.custom-form-error:after,
.custom-form-error:before {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 20px;
  border: solid transparent;
  pointer-events: none;
}

.custom-form-error:after {
  margin-left: -8px;
  border-bottom-color: #ffffff;
  border-width: 8px;
}

.custom-form-error:before {
  margin-left: -9px;
  border-bottom-color: #898989;
  border-width: 9px;
}

@media (max-width: 767px) {
  #plotTreeForm select {
    background-color: white;
  }
  #plotTreeForm .custom-form-error {
    width: -webkit-calc(100% - 10px);
    width: calc(100% - 10px);
    left: 5px;
  }
  #plotTreeForm .plot-tree-form__captcha-wrapper .custom-form-error {
    width: 80%;
    left: 10%;
  }
}

@media (max-width: 580px) {
  #plotTreeForm {
    margin: 5px 12px 12px;
  }
  #plotTreeForm textarea,
  #plotTreeForm input,
  #plotTreeForm select {
    padding: 8px 10px 6px;
    font-size: 16px;
  }
  #plotTreeForm .plot-tree-form__form-content {
    max-width: 100%;
  }
  #plotTreeForm .plot-tree-form__disclaimer-text {
    font-size: 14px;
  }
}

.vip-tree-form__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vip-tree-form__image img {
  max-width: 80px;
  width: 100%;
  margin-top: 25px;
}

.vip-tree-form__form-content {
  width: 100%;
  max-width: 575px;
  margin-top: 80px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
}

.vip-tree-form__form-content * {
  font-family: "Open Sans";
}

.vip-tree-form__form-content .success-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
}

.vip-tree-form__form-content .success-info-wrapper.hide {
  display: none;
}

.vip-tree-form__form-content a.redirect-btn,
.vip-tree-form__form-content a.treeMail-link,
.vip-tree-form__form-content small.description-planted,
.vip-tree-form__form-content h3.title-planted {
  color: #fff;
  text-align: center;
}

.vip-tree-form__form-content h3.title-planted {
  margin-top: 0;
  font-family: "Pangolin";
  font-size: 1.6rem;
}

.vip-tree-form__form-content small.description-planted {
  margin-bottom: 30px;
  font-size: 1rem;
}

.vip-tree-form__form-content a.redirect-btn {
  margin: 0 auto;
  margin-bottom: 30px;
  background-color: #E8484B;
  padding: 10px 40px;
  border-radius: 20px;
  text-decoration: none;
}

.vip-tree-form__form-content #keyword {
  position: relative;
  resize: none;
  height: 58px;
}

.vip-tree-form__form-content #keywords-list {
  background-color: white;
  position: absolute;
  top: 18px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5px;
  cursor: text;
}

.vip-tree-form__form-content #keywords-list li {
  border: 2px solid #206742;
  color: #206742;
  padding: 3px 8px;
  border-radius: 5px;
  margin-right: 5px;
  font-size: 15px;
}

.vip-tree-form__form-content #keywords-list li:last-child {
  margin-right: 0;
}

.vip-tree-form__form-content #keywords-list > * {
  margin: 5px 0;
}

#vipTreeForm {
  margin: 5px 25px 25px;
  color: white;
}

#vipTreeForm textarea,
#vipTreeForm input,
#vipTreeForm select {
  width: 100%;
  padding: 10px 12px 8px;
  margin-top: 10px;
  outline: none;
  border: none;
  border-radius: 0;
  font-family: "Open Sans";
  font-size: 17px;
  line-height: 25px;
}

#vipTreeForm input[type="file"] {
  display: none;
}

#vipTreeForm .tree-information-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

#vipTreeForm .tree-information-wrapper .scientific-name__content {
  margin-right: 65px;
}

#vipTreeForm .tree-information-wrapper .scientific-name__content .scientific-name {
  font-weight: 600;
}

#vipTreeForm .tree-information-wrapper .scientific-name__content small {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
}

#vipTreeForm .tree-information-wrapper .size__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#vipTreeForm .tree-information-wrapper .size__content span {
  margin-right: 20px;
}

#vipTreeForm .tree-information-wrapper .size__content span:last-child {
  margin-right: 0px;
}

#vipTreeForm .tree-information-wrapper .sub-param {
  display: block;
}

@media screen and (max-width: 767px) {
  #vipTreeForm .tree-information-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #vipTreeForm .tree-information-wrapper .scientific-name__content {
    margin-bottom: 20px;
    margin-right: 0;
    display: block;
    text-align: center;
  }
  #vipTreeForm .tree-information-wrapper .size__content {
    margin: 0 auto;
  }
}

#vipTreeForm .vip-tree-form__header {
  margin-bottom: 40px;
  margin-top: 6px;
  text-align: center;
  color: #fff;
  font-family: Pangolin;
  font-size: 1.75em;
}

#vipTreeForm .vip-tree-form__form-group {
  width: 100%;
  margin-bottom: 27px;
  position: relative;
}

#vipTreeForm .vip-tree-form__form-group label {
  margin-bottom: 12px;
  padding: 0;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
  display: block;
}

#vipTreeForm .vip-tree-form__form-group .required-field {
  margin-left: 5px;
  color: red;
  font-size: 16px;
}

#vipTreeForm .vip-tree-form__form-group select {
  cursor: pointer;
}

#vipTreeForm .vip-tree-form__help-block {
  margin-top: 5px;
  display: block;
  font-weight: normal;
  line-height: 1.3;
  font-size: 15px;
  font-style: italic;
}

#vipTreeForm .vip-tree-form__help-block a {
  color: white;
}

#vipTreeForm .vip-tree-form__help-block p {
  margin: 0;
}

#vipTreeForm .vip-tree-form__image-upload {
  margin-top: 5px;
  margin-bottom: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#vipTreeForm .vip-tree-form__image-upload.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#vipTreeForm .vip-tree-form__image-upload label {
  font-weight: normal;
  cursor: pointer;
  vertical-align: center;
  display: block;
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
}

#vipTreeForm .vip-tree-form__image-upload img {
  height: 20px;
  width: 20px;
  cursor: pointer;
}

#vipTreeForm .vip-tree-form__image-upload button {
  width: 45px;
  min-width: 45px;
  height: 45px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #206742;
  border-radius: 50%;
  border: 0;
  outline: 0;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  cursor: pointer;
}

#vipTreeForm .vip-tree-form__image-upload button:hover {
  background: #25985c;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}

#vipTreeForm .vip-tree-form__image-upload .custom-form-error {
  top: -webkit-calc(100% + 5px);
  top: calc(100% + 5px);
}

#vipTreeForm .vip-tree-form__name {
  margin-top: 30px;
}

#vipTreeForm .vip-tree-form__upload-clear {
  position: absolute;
  z-index: 10;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}

#vipTreeForm .vip-tree-form__upload-clear:hover {
  -webkit-transform: translateY(-60%) scale(1.2);
          transform: translateY(-60%) scale(1.2);
}

#vipTreeForm .vip-tree-form__upload-clear.show {
  display: block;
}

#vipTreeForm .vip-tree-form__upload-text {
  margin-bottom: 5px;
  display: inline-block;
  font-weight: bold;
  font-size: 17px;
}

#vipTreeForm .vip-tree-form__uploaded-number {
  padding-bottom: 5px;
  display: inline-block;
  font-weight: bold;
  line-height: 1.5em;
}

#vipTreeForm .vip-tree-form__file-wrapper {
  margin-right: 3px;
  margin-bottom: 1px;
  display: block;
  font-weight: normal;
  line-height: 1.5em;
  font-size: 14px;
}

#vipTreeForm .vip-tree-form__file-size {
  margin-left: 5px;
  display: inline-block;
  font-weight: 700;
}

#vipTreeForm .vip-tree-form__file-error {
  margin-bottom: 5px;
  display: block;
}

#vipTreeForm .vip-tree-form__file-error:last-of-type {
  margin-bottom: 0;
}

#vipTreeForm .vip-tree-form__description textarea {
  height: 130px;
}

#vipTreeForm .vip-tree-form__description .custom-form-error {
  top: -webkit-calc(100% - 7px);
  top: calc(100% - 7px);
}

#vipTreeForm .vip-tree-form__captcha-wrapper {
  margin-top: 40px;
  position: relative;
}

#vipTreeForm .vip-tree-form__captcha-wrapper .g-recaptcha div {
  margin: auto;
  text-align: center;
}

#vipTreeForm .vip-tree-form__captcha-wrapper .custom-form-error {
  width: 50%;
  top: 100%;
  left: 25%;
}

#vipTreeForm .vip-tree-form__submit-wrapper {
  width: 157px;
  height: 47px;
  margin: 35px auto 35px auto;
  position: relative;
  text-align: center;
}

#vipTreeForm .vip-tree-form__submit-wrapper input {
  width: 100%;
  height: 100%;
  margin-top: 0;
  z-index: 1;
  background: #e8484b;
  color: #fff;
  border-radius: 30px;
  font-size: 1.125em;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}

#vipTreeForm .vip-tree-form__submit-wrapper input:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  background: #f15053;
}

#vipTreeForm .vip-tree-form__submit-success {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #ce393c;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-size: 1.125em;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}

#vipTreeForm .vip-tree-form__disclaimer-text {
  margin-top: 0px;
  font-weight: bold;
}

#vipTreeForm .vip-tree-form__disclaimer-text p {
  margin: 5px 0px;
  font-size: 15px;
}

#vipTreeForm .vip-tree-form__disclaimer-text .required-warning {
  color: red;
  font-size: 15px;
}

.twitter-typeahead {
  width: 100%;
}

.tt-menu.tt-open {
  width: 100%;
  background-color: white;
  border: 1px solid #acacac;
  font-family: "Open Sans";
}

.tt-suggestion {
  padding: 8px 15px;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  color: black;
  cursor: pointer;
}

.tt-suggestion:hover {
  background-color: #3f94fe;
  color: white;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hide {
  display: none;
}

.custom-form-error {
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 20px;
  top: -webkit-calc(100% + 5px);
  top: calc(100% + 5px);
  z-index: 10;
  border-radius: 4px;
  background-color: white;
  border: 1px solid #898989;
  -webkit-box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  font-weight: 400;
  color: black;
  line-height: 1.3;
  -webkit-animation: fade-in 0.7s ease-out forwards;
          animation: fade-in 0.7s ease-out forwards;
}

.custom-form-error__img-wrapper {
  padding: 4px;
  background-color: #ff9d00;
  margin-right: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
}

.custom-form-error img {
  width: 16px;
  min-width: 16px;
  height: 16px;
  color: white;
}

.custom-form-error:after,
.custom-form-error:before {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 20px;
  border: solid transparent;
  pointer-events: none;
}

.custom-form-error:after {
  margin-left: -8px;
  border-bottom-color: #ffffff;
  border-width: 8px;
}

.custom-form-error:before {
  margin-left: -9px;
  border-bottom-color: #898989;
  border-width: 9px;
}

@media (max-width: 767px) {
  #vipTreeForm select {
    background-color: white;
  }
  #vipTreeForm .custom-form-error {
    width: -webkit-calc(100% - 10px);
    width: calc(100% - 10px);
    left: 5px;
  }
  #vipTreeForm .vip-tree-form__captcha-wrapper .custom-form-error {
    width: 80%;
    left: 10%;
  }
}

@media (max-width: 580px) {
  #vipTreeForm {
    margin: 5px 12px 12px;
  }
  #vipTreeForm textarea,
  #vipTreeForm input,
  #vipTreeForm select {
    padding: 8px 10px 6px;
    font-size: 16px;
  }
  #vipTreeForm .vip-tree-form__form-content {
    max-width: 100%;
  }
  #vipTreeForm .vip-tree-form__disclaimer-text {
    font-size: 14px;
  }
}

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

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  background: transparent !important;
}

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

.contribution-form {
  width: 100%;
  max-width: 650px;
  margin: 4% auto;
  margin-top: 2%;
  padding: 2.5em 3em;
  position: relative;
  z-index: 1000;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 10px;
  font-family: "Open Sans";
  color: #fff;
}

.contribution-form textarea,
.contribution-form input {
  width: 100%;
  padding: 10px 12px 8px;
  margin-top: 10px;
  font-family: "Open Sans";
  font-size: 17px;
  line-height: 25px;
  outline: none;
  border: none;
  border-radius: 0;
}

.contribution-form input[type="file"] {
  display: none;
}

.contribution-form__header {
  margin-bottom: 40px;
  margin-top: 6px;
  font-family: Pangolin;
  font-size: 30px;
  text-align: center;
  color: #fff;
}

.contribution-form .charcount {
  position: absolute;
  right: 15px;
  bottom: 10px;
  font-family: "Open Sans";
  font-size: 0.875em;
  font-weight: 600;
  color: #351d00;
}

.contribution-form .charcount.max {
  color: red;
}

.contribution-form__help-block {
  display: block;
  margin-top: 3px;
  font-weight: normal;
  font-size: 15px;
  font-style: italic;
  line-height: 1.3;
}

.contribution-form__form-group {
  width: 100%;
  margin-bottom: 27px;
  position: relative;
}

.contribution-form__form-group label {
  margin-bottom: 20px;
  padding: 0;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
}

.contribution-form__form-group .required-field {
  margin-left: 5px;
  color: red;
  font-size: 15px;
}

.contribution-form__form-group input {
  height: 40px;
}

.contribution-form__message textarea {
  height: 130px;
}

.contribution-form__message .field-error {
  top: -webkit-calc(100% - 8px);
  top: calc(100% - 8px);
}

.contribution-form__image-upload {
  position: relative;
}

.contribution-form__image-upload input {
  opacity: 0;
}

.contribution-form__image-upload {
  margin-top: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.contribution-form__image-upload.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contribution-form__image-upload label {
  font-weight: normal;
  cursor: pointer;
  vertical-align: center;
  display: block;
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
}

.contribution-form__image-upload img {
  height: 20px;
  width: 20px;
  cursor: pointer;
}

.contribution-form__image-upload button {
  width: 45px;
  min-width: 45px;
  height: 45px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #206742;
  border-radius: 50%;
  border: 0;
  outline: 0;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.contribution-form__image-upload button:hover {
  background: #25985c;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}

.contribution-form__image-upload .field-error {
  top: -webkit-calc(100% + 5px);
  top: calc(100% + 5px);
}

.contribution-form__upload-clear {
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 10;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none !important;
}

.contribution-form__upload-clear:hover {
  -webkit-transform: translateY(-60%) scale(1.2);
          transform: translateY(-60%) scale(1.2);
}

.contribution-form__upload-clear.show {
  display: block !important;
}

.contribution-form__upload-text {
  margin-bottom: 5px;
  display: inline-block;
  font-weight: bold;
  font-size: 17px;
}

.contribution-form__uploaded-number {
  padding-bottom: 5px;
  display: inline-block;
  font-weight: bold;
  line-height: 1.5em;
}

.contribution-form__file-wrapper {
  margin-right: 3px;
  margin-bottom: 1px;
  display: block;
  font-weight: normal;
  line-height: 1.5em;
  font-size: 14px;
}

.contribution-form__file-size {
  margin-left: 5px;
  display: inline-block;
  font-weight: 700;
}

.contribution-form__file-error {
  margin-bottom: 5px;
  display: block;
}

.contribution-form__file-error:last-of-type {
  margin-bottom: 0;
}

.contribution-form__captcha-wrapper {
  margin-top: 20px;
  position: relative;
}

.contribution-form__captcha-wrapper .g-recaptcha div {
  margin: auto;
  text-align: center;
}

.contribution-form__captcha-wrapper .field-error {
  width: 50%;
  top: -webkit-calc(100% - 8px);
  top: calc(100% - 8px);
  left: 25%;
}

.contribution-form__submit-wrapper {
  width: 157px;
  height: 47px;
  margin: 35px auto 50px auto;
  position: relative;
  text-align: center;
}

.contribution-form__submit-wrapper input {
  width: 100%;
  height: 100%;
  margin-top: 0;
  z-index: 1;
  background: #e8484b;
  color: #fff;
  border-radius: 30px;
  border: 0;
  font-size: 14px;
  font-size: 1.125em;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}

.contribution-form__submit-wrapper input:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  background: #f15053;
}

.contribution-form__submit-success {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #ce393c;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-size: 1.125em;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}

.contribution-form__disclaimer-text {
  margin-top: 20px;
  font-weight: bold;
}

.contribution-form__disclaimer-text p {
  margin: 5px 0px;
  font-size: 15px;
}

.contribution-form__disclaimer-text .required-warning {
  margin: 0;
  display: inline-block;
  color: red;
}

.contribution-form__disclaimer-text .required-warning p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 15px;
}

.field-error {
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 20px;
  top: -webkit-calc(100% - 4px);
  top: calc(100% - 4px);
  z-index: 10;
  border-radius: 4px;
  border: 1px solid #898989;
  background-color: white;
  -webkit-box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  font-weight: 400;
  color: black;
  line-height: 1.3;
  -webkit-animation: fade-in 0.7s ease-out forwards;
          animation: fade-in 0.7s ease-out forwards;
}

.field-error__img-wrapper {
  padding: 4px;
  background-color: #ff9d00;
  margin-right: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
}

.field-error img {
  width: 16px;
  min-width: 16px;
  height: 16px;
  color: white;
}

.field-error:after,
.field-error:before {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 20px;
  border: solid transparent;
  pointer-events: none;
}

.field-error:after {
  margin-left: -8px;
  border-bottom-color: #ffffff;
  border-width: 8px;
}

.field-error:before {
  margin-left: -9px;
  border-bottom-color: #898989;
  border-width: 9px;
}

.api-message {
  margin: 20px 30px;
  text-align: center;
  color: white;
}

.api-message.success span {
  display: block;
}

.api-message.fail {
  color: red;
}

@media screen and (max-width: 767px) {
  .contribution-form {
    padding: 2.5em 25px;
  }
  .contribution-form .field-error {
    width: -webkit-calc(100% - 10px);
    width: calc(100% - 10px);
    left: 5px;
  }
  .contribution-form__captcha-wrapper .field-error {
    width: 100%;
    left: 0;
  }
}

@media screen and (max-width: 580px) {
  .contribution-form {
    padding: 25px 15px;
  }
  .contribution-form textarea,
  .contribution-form input {
    margin-top: 5px;
    padding: 8px 10px 6px;
    font-size: 16px;
  }
  .contribution-form__header {
    margin-bottom: 25px;
    font-size: 28px;
  }
  .contribution-form__submit-wrapper input {
    margin-top: 0;
  }
  .contribution-form__disclaimer-text {
    font-size: 14px;
  }
}

/*# sourceMappingURL=main-iframe.css.map */
