/*!
 * https://github.com/arqex/react-datetime
 */

.rdt {
  position: relative;
}
.rdtPicker {
  display: none;
  position: absolute;
  min-width: 250px;
  padding: 4px;
  margin-top: 1px;
  z-index: 99999 !important;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  border: 1px solid #f9f9f9;
}
.rdtOpen .rdtPicker {
  display: block;
}
.rdtStatic .rdtPicker {
  box-shadow: none;
  position: static;
}

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

.rdtPicker table {
  width: 100%;
  margin: 0;
}
.rdtPicker td,
.rdtPicker th {
  text-align: center;
  height: 28px;
}
.rdtPicker td {
  cursor: pointer;
}
.rdtPicker td.rdtDay:hover,
.rdtPicker td.rdtHour:hover,
.rdtPicker td.rdtMinute:hover,
.rdtPicker td.rdtSecond:hover,
.rdtPicker .rdtTimeToggle:hover {
  background: #eeeeee;
  cursor: pointer;
}
.rdtPicker td.rdtOld,
.rdtPicker td.rdtNew {
  color: #999999;
}
.rdtPicker td.rdtToday {
  position: relative;
}
.rdtPicker td.rdtToday:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #428bca;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.rdtPicker td.rdtActive,
.rdtPicker td.rdtActive:hover {
  background-color: #428bca;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.rdtPicker td.rdtActive.rdtToday:before {
  border-bottom-color: #fff;
}
.rdtPicker td.rdtDisabled,
.rdtPicker td.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker td span.rdtOld {
  color: #999999;
}
.rdtPicker td span.rdtDisabled,
.rdtPicker td span.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker th {
  border-bottom: 1px solid #f9f9f9;
}
.rdtPicker .dow {
  width: 14.2857%;
  border-bottom: none;
  cursor: default;
}
.rdtPicker th.rdtSwitch {
  width: 100px;
}
.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
  font-size: 21px;
  vertical-align: top;
}

.rdtPrev span,
.rdtNext span {
  display: block;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */    /* Konqueror */      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;
}

.rdtPicker th.rdtDisabled,
.rdtPicker th.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker thead tr:first-of-type th {
  cursor: pointer;
}
.rdtPicker thead tr:first-of-type th:hover {
  background: #eeeeee;
}

.rdtPicker tfoot {
  border-top: 1px solid #f9f9f9;
}

.rdtPicker button {
  border: none;
  background: none;
  cursor: pointer;
}
.rdtPicker button:hover {
  background-color: #eee;
}

.rdtPicker thead button {
  width: 100%;
  height: 100%;
}

td.rdtMonth,
td.rdtYear {
  height: 50px;
  width: 25%;
  cursor: pointer;
}
td.rdtMonth:hover,
td.rdtYear:hover {
  background: #eee;
}

.rdtCounters {
  display: inline-block;
}

.rdtCounters > div {
  float: left;
}

.rdtCounter {
  height: 100px;
}

.rdtCounter {
  width: 40px;
}

.rdtCounterSeparator {
  line-height: 100px;
}

.rdtCounter .rdtBtn {
  height: 40%;
  line-height: 40px;
  cursor: pointer;
  display: block;

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */    /* Konqueror */      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;
}
.rdtCounter .rdtBtn:hover {
  background: #eee;
}
.rdtCounter .rdtCount {
  height: 20%;
  font-size: 1.2em;
}

.rdtMilli {
  vertical-align: middle;
  padding-left: 8px;
  width: 48px;
}

.rdtMilli input {
  width: 100%;
  font-size: 1.2em;
  margin-top: 37px;
}

.rdtTime td {
  cursor: default;
}

/* DATEPICKER */

.icon-rc-datepicker {
  /* use !important to prevent issues with browser extensions that change fonts */
  /* font-family: 'rc-datepicker' !important; */
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-rc-datepicker_clear::before {
  content: '\F00D';
}

.icon-rc-datepicker_prev::before {
  font-weight: 900;
  content: '＜';
}

.icon-rc-datepicker_next::before {
  font-weight: 900;
  content: '＞';
}

.icon-rc-datepicker_calendar::before {
  content: '\F073';
}

.react-datepicker-component {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.react-datepicker-component.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.react-datepicker-component .react-datepicker {
  margin-left: 5px;
  margin-top: 5px;
  display: inherit;
}

.react-datepicker-component .react-datepicker-input {
  position: relative;
  min-width: 150px;
  height: 36px;
  background: linear-gradient(#fff, #f2f4f7);
  border: 1px solid #ced0da;
  border-radius: 4px;
}

.react-datepicker-component .react-datepicker-input.is-small {
  height: 32px;
}

.react-datepicker-component .react-datepicker-input input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 60px;
  font-size: 14px;
  color: #333333;
  font-weight: 600;
}

.react-datepicker-component .react-datepicker-input input:focus {
  outline: none;
}

.react-datepicker-component .react-datepicker-input input::-webkit-input-placeholder {
  color: #bdbdbd;
  font-weight: 600;
}

.react-datepicker-component .react-datepicker-input input:-moz-placeholder {
  color: #bdbdbd;
  font-weight: 600;
}

.react-datepicker-component .react-datepicker-input input::-moz-placeholder {
  color: #bdbdbd;
  font-weight: 600;
}

.react-datepicker-component .react-datepicker-input input:-ms-input-placeholder {
  color: #bdbdbd;
  font-weight: 600;
}

.react-datepicker-component .react-datepicker-input .button-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.react-datepicker-component .react-datepicker-input .button-wrapper .input-button {
  margin: 0 10px;
  background: transparent;
  font-size: 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  color: #b5c0ce;
}

.react-datepicker-component .react-datepicker-input .button-wrapper .input-button:hover {
  background: transparent;
  color: #bdbdbd;
}

.react-datepicker-component .react-datepicker-input .button-wrapper .clear-button {
  cursor: pointer;
  font-size: 13px;
  color: #b5c0ce;
}

.react-datepicker-component .react-datepicker-input .button-wrapper .clear-button:hover {
  color: #db242c;
}

.react-datepicker-component .react-datepicker-input:hover {
  background: linear-gradient(#fff, #dfe3e8);
  border: 1px solid #ced0da;
}

.react-datepicker-component .react-datepicker-input:hover input {
  color: #333333;
}

.react-datepicker-component .react-datepicker-input:hover input::-webkit-input-placeholder {
  color: #bdbdbd;
}

.react-datepicker-component .react-datepicker-input:hover input:-moz-placeholder {
  color: #bdbdbd;
}

.react-datepicker-component .react-datepicker-input:hover input::-moz-placeholder {
  color: #bdbdbd;
}

.react-datepicker-component .react-datepicker-input:hover input:-ms-input-placeholder {
  color: #bdbdbd;
}

.react-datepicker-component .react-datepicker-input:hover .button-wrapper .input-button {
  color: #bdbdbd;
}

.react-datepicker-component .react-datepicker-input.is-open {
  background: linear-gradient(#fff, #dfe3e8);
  border: 1px solid #2da1f8;
}

.react-datepicker-component .react-datepicker-input.is-open input {
  color: #333333;
}

.react-datepicker-component .react-datepicker-input.is-open input::-webkit-input-placeholder {
  color: #333333;
}

.react-datepicker-component .react-datepicker-input.is-open input:-moz-placeholder {
  color: #333333;
}

.react-datepicker-component .react-datepicker-input.is-open input::-moz-placeholder {
  color: #333333;
}

.react-datepicker-component .react-datepicker-input.is-open input:-ms-input-placeholder {
  color: #333333;
}

.react-datepicker-component .react-datepicker-input.is-open .button-wrapper .input-button {
  color: #b5c0ce;
}

.react-datepicker-component .react-datepicker-input.has-value input {
  color: #333333;
}

.react-datepicker {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
}

.react-datepicker.floating {
  position: absolute;
  z-index: 10000;
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
}

.react-datepicker.position-top {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
}

.react-datepicker.position-top .react-datepicker-container::after,
.react-datepicker.position-top .react-datepicker-container::before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.react-datepicker.position-top .react-datepicker-container::after {
  border-top-color: #d9dee3;
  border-width: 5px;
  margin-left: -5px;
}

.react-datepicker.position-top .react-datepicker-container::before {
  border-top-color: #d9dee3;
  border-width: 6px;
  margin-left: -6px;
}

.react-datepicker:not(.position-top) .react-datepicker-container .react-datepicker-top::after,
.react-datepicker:not(.position-top) .react-datepicker-container .react-datepicker-top::before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

/* .react-datepicker:not(.position-top) .react-datepicker-container .react-datepicker-top::after {
  border-bottom-color: #2da1f8;
  border-width: 5px;
  margin-left: -5px;
} */

/* .react-datepicker:not(.position-top) .react-datepicker-container .react-datepicker-top::before {
  border-bottom-color: #d9dee3;
  border-width: 6px;
  margin-left: -6px;
} */

.react-datepicker .react-datepicker-container {
  width: 250px;
  position: relative;
}

.react-datepicker .react-datepicker-container .react-datepicker-top {
  text-align: center;
  /* background: linear-gradient(#2da1f8, #1789dd); */
  background: #18446f;
  color: #fff;
  border-top: 1px solid #18446f;
  border-left: 1px solid #18446f;
  border-right: 1px solid #18446f;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.react-datepicker .react-datepicker-container .react-datepicker-top .week-days {
  height: 35px;
}

.react-datepicker .react-datepicker-container .react-datepicker-top .week-days .week-day {
  cursor: default;
  font-weight: 400;
  font-size: 13px;
}

.react-datepicker .react-datepicker-container .react-datepicker-top .display {
  height: 35px;
}

.react-datepicker .react-datepicker-container .react-datepicker-top .display .react-datepicker-button {
  text-decoration: none;
  padding: 4px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.react-datepicker .react-datepicker-container .react-datepicker-top .display .react-datepicker-button.button-left {
  font-size: 13px;
  padding: 4px 16px;
  border-top-left-radius: 2px;
}

.react-datepicker .react-datepicker-container .react-datepicker-top .display .react-datepicker-button.button-right {
  font-size: 13px;
  padding: 4px 16px;
  border-top-right-radius: 2px;
}

.react-datepicker .react-datepicker-container .react-datepicker-top .display .react-datepicker-button:hover {
  background: rgba(0, 0, 0, 0.075);
  border-radius: 4px;
}

.react-datepicker .react-datepicker-container .react-datepicker-top .display .react-datepicker-button.fixed:hover {
  background: transparent;
  cursor: default;
}

.react-datepicker .react-datepicker-container .react-datepicker-body {
  border-left: 1px solid #d9dee3;
  border-right: 1px solid #d9dee3;
  border-bottom: 1px solid #d9dee3;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.react-datepicker .react-datepicker-container .react-datepicker-body .react-datepicker-row {
  margin-top: 0;
  width: 100%;
  min-height: 30px;
}

.react-datepicker .react-datepicker-container .react-datepicker-body .react-datepicker-row:not(:last-child) {
  border-bottom: 1px solid #d9dee3;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row:last-child
  .react-datepicker-picker:first-child {
  border-bottom-left-radius: 2px;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row:last-child
  .react-datepicker-picker:last-child {
  border-bottom-right-radius: 2px;
}

.react-datepicker .react-datepicker-container .react-datepicker-body .react-datepicker-row .react-datepicker-picker {
  color: #bdbdbd;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row
  .react-datepicker-picker:not(:last-child) {
  border-right: 1px solid #d9dee3;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row
  .react-datepicker-picker.day {
  min-height: 30px !important;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row
  .react-datepicker-picker.month {
  min-height: 65px !important;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row
  .react-datepicker-picker.year {
  min-height: 65px !important;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row
  .react-datepicker-picker:hover {
  color: #333333;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row
  .react-datepicker-picker.selected {
  color: #333333;
  background: #3cd0b04c;
  font-weight: bold;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row
  .react-datepicker-picker.current {
  font-weight: 600;
  color: #333333;
  background: #f9fafb;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row
  .react-datepicker-picker.current:hover {
  color: #333333;
  background: #dfe5f0;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row
  .react-datepicker-picker.selected.current {
  color: #333333;
  background: #3cd0b04c;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row
  .react-datepicker-picker.disabled {
  cursor: default;
  color: #bdbdbd;
  background: #fff;
}

.react-datepicker
  .react-datepicker-container
  .react-datepicker-body
  .react-datepicker-row
  .react-datepicker-picker.disabled:hover {
  color: #bdbdbd;
  background: #fff;
}

@font-face {
  font-family: 'Lato';
  src: url(/c47d267d1b0232d5fe9b.ttf) format('truetype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Lato';
  src: url(/01923cbbba31d9cb7f29.ttf) format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url(/d04e35ca3e0782895d4a.ttf) format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Lato';
  src: url(/bfc37ff1d5543ecd4ec6.ttf) format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url(/0b4ed00316a7940bfc3f.ttf) format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Lato';
  src: url(/9919edff6283018571ad.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url(/4113fd37d3dbdde71570.ttf) format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Lato_700Bold';
  src: url(/5dd5aa0269395f0ea927.ttf) format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url(/8b75b50df5eea75e1c44.ttf) format('truetype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Lato_900Black';
  src: url(/0b51cf32bbc2d8b8d840.ttf) format('truetype');
  font-weight: 900;
  font-style: normal;
}

