.react-toggle {
  touch-action: pan-x;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; }

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

.react-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s; }

.react-toggle-track {
  width: 50px;
  height: 24px;
  padding: 0;
  border-radius: 30px;
  background-color: #4D4D4D;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease; }

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #000000; }

.react-toggle--checked .react-toggle-track {
  background-color: #19AB27; }

.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #128D15; }

.react-toggle-track-check {
  position: absolute;
  width: 14px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  left: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease; }

.react-toggle--checked .react-toggle-track-check {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease; }

.react-toggle-track-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  right: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease; }

.react-toggle--checked .react-toggle-track-x {
  opacity: 0; }

.react-toggle-thumb {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  border: 1px solid #4D4D4D;
  border-radius: 50%;
  background-color: #FAFAFA;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease; }

.react-toggle--checked .react-toggle-thumb {
  left: 27px;
  border-color: #19AB27; }

.react-toggle--focus .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 3px 2px #0099E0;
  -moz-box-shadow: 0px 0px 3px 2px #0099E0;
  box-shadow: 0px 0px 2px 3px #0099E0; }

.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 5px 5px #0099E0;
  -moz-box-shadow: 0px 0px 5px 5px #0099E0;
  box-shadow: 0px 0px 5px 5px #0099E0; }

/*!
 * https://github.com/YouCanBookMe/react-datetime
 */
.rdt {
  position: relative; }

.rdtPicker {
  display: none;
  position: absolute;
  width: 250px;
  padding: 4px;
  margin-top: 1px;
  z-index: 99999 !important;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 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 */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* 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-child th {
  cursor: pointer; }

.rdtPicker thead tr:first-child 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 */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* 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; }

.PresetDateRangePicker_panel {
  padding: 0 22px 11px; }

.PresetDateRangePicker_button {
  position: relative;
  height: 100%;
  text-align: center;
  background: 0 0;
  border: 2px solid #00a699;
  color: #00a699;
  padding: 4px 12px;
  margin-right: 8px;
  font: inherit;
  font-weight: 700;
  line-height: normal;
  overflow: visible;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer; }

.PresetDateRangePicker_button:active {
  outline: 0; }

.PresetDateRangePicker_button__selected {
  color: #fff;
  background: #00a699; }

.SingleDatePickerInput {
  display: inline-block;
  background-color: #fff; }

.SingleDatePickerInput__withBorder {
  border: 1px solid #dbdbdb; }

.SingleDatePickerInput__rtl {
  direction: rtl; }

.SingleDatePickerInput__disabled {
  background-color: #f2f2f2; }

.SingleDatePickerInput__block {
  display: block; }

.SingleDatePickerInput__showClearDate {
  padding-right: 30px; }

.SingleDatePickerInput_clearDate {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.SingleDatePickerInput_clearDate__default:focus,
.SingleDatePickerInput_clearDate__default:hover {
  background: #dbdbdb;
  border-radius: 50%; }

.SingleDatePickerInput_clearDate__small {
  padding: 6px; }

.SingleDatePickerInput_clearDate__hide {
  visibility: hidden; }

.SingleDatePickerInput_clearDate_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle; }

.SingleDatePickerInput_clearDate_svg__small {
  height: 9px; }

.SingleDatePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px; }

.SingleDatePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle; }

.SingleDatePicker {
  position: relative;
  display: inline-block; }

.SingleDatePicker__block {
  display: block; }

.SingleDatePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute; }

.SingleDatePicker_picker__rtl {
  direction: rtl; }

.SingleDatePicker_picker__directionLeft {
  left: 0; }

.SingleDatePicker_picker__directionRight {
  right: 0; }

.SingleDatePicker_picker__portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.SingleDatePicker_picker__fullScreenPortal {
  background-color: #fff; }

.SingleDatePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2; }

.SingleDatePicker_closeButton:focus,
.SingleDatePicker_closeButton:hover {
  color: #b0b3b4;
  text-decoration: none; }

.SingleDatePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd; }

.DayPickerKeyboardShortcuts_buttonReset {
  background: 0 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  font-size: 14px; }

.DayPickerKeyboardShortcuts_buttonReset:active {
  outline: 0; }

.DayPickerKeyboardShortcuts_show {
  width: 22px;
  position: absolute;
  z-index: 2; }

.DayPickerKeyboardShortcuts_show__bottomRight {
  border-top: 26px solid transparent;
  border-right: 33px solid #00a699;
  bottom: 0;
  right: 0; }

.DayPickerKeyboardShortcuts_show__bottomRight:hover {
  border-right: 33px solid #008489; }

.DayPickerKeyboardShortcuts_show__topRight {
  border-bottom: 26px solid transparent;
  border-right: 33px solid #00a699;
  top: 0;
  right: 0; }

.DayPickerKeyboardShortcuts_show__topRight:hover {
  border-right: 33px solid #008489; }

.DayPickerKeyboardShortcuts_show__topLeft {
  border-bottom: 26px solid transparent;
  border-left: 33px solid #00a699;
  top: 0;
  left: 0; }

.DayPickerKeyboardShortcuts_show__topLeft:hover {
  border-left: 33px solid #008489; }

.DayPickerKeyboardShortcuts_showSpan {
  color: #fff;
  position: absolute; }

.DayPickerKeyboardShortcuts_showSpan__bottomRight {
  bottom: 0;
  right: -28px; }

.DayPickerKeyboardShortcuts_showSpan__topRight {
  top: 1px;
  right: -28px; }

.DayPickerKeyboardShortcuts_showSpan__topLeft {
  top: 1px;
  left: -28px; }

.DayPickerKeyboardShortcuts_panel {
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  margin: 33px; }

.DayPickerKeyboardShortcuts_title {
  font-size: 16px;
  font-weight: 700;
  margin: 0; }

.DayPickerKeyboardShortcuts_list {
  list-style: none;
  padding: 0;
  font-size: 14px; }

.DayPickerKeyboardShortcuts_close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2; }

.DayPickerKeyboardShortcuts_close:active {
  outline: 0; }

.DayPickerKeyboardShortcuts_closeSvg {
  height: 15px;
  width: 15px;
  fill: #cacccd; }

.DayPickerKeyboardShortcuts_closeSvg:focus,
.DayPickerKeyboardShortcuts_closeSvg:hover {
  fill: #82888a; }

.CalendarDay {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  text-align: center; }

.CalendarDay:active {
  outline: 0; }

.CalendarDay__defaultCursor {
  cursor: default; }

.CalendarDay__default {
  border: 1px solid #e4e7e7;
  color: #484848;
  background: #fff; }

.CalendarDay__default:hover {
  background: #e4e7e7;
  border: 1px double #e4e7e7;
  color: inherit; }

.CalendarDay__hovered_offset {
  background: #f4f5f5;
  border: 1px double #e4e7e7;
  color: inherit; }

.CalendarDay__outside {
  border: 0;
  background: #fff;
  color: #484848; }

.CalendarDay__blocked_minimum_nights {
  background: #fff;
  border: 1px solid #eceeee;
  color: #cacccd; }

.CalendarDay__blocked_minimum_nights:active,
.CalendarDay__blocked_minimum_nights:hover {
  background: #fff;
  color: #cacccd; }

.CalendarDay__highlighted_calendar {
  background: #ffe8bc;
  color: #484848; }

.CalendarDay__highlighted_calendar:active,
.CalendarDay__highlighted_calendar:hover {
  background: #ffce71;
  color: #484848; }

.CalendarDay__selected_span {
  background: #66e2da;
  border: 1px solid #33dacd;
  color: #fff; }

.CalendarDay__selected_span:active,
.CalendarDay__selected_span:hover {
  background: #33dacd;
  border: 1px solid #33dacd;
  color: #fff; }

.CalendarDay__last_in_range {
  border-right: #00a699; }

.CalendarDay__selected,
.CalendarDay__selected:active,
.CalendarDay__selected:hover {
  background: #00a699;
  border: 1px solid #00a699;
  color: #fff; }

.CalendarDay__hovered_span,
.CalendarDay__hovered_span:hover {
  background: #b2f1ec;
  border: 1px solid #80e8e0;
  color: #007a87; }

.CalendarDay__hovered_span:active {
  background: #80e8e0;
  border: 1px solid #80e8e0;
  color: #007a87; }

.CalendarDay__blocked_calendar,
.CalendarDay__blocked_calendar:active,
.CalendarDay__blocked_calendar:hover {
  background: #cacccd;
  border: 1px solid #cacccd;
  color: #82888a; }

.CalendarDay__blocked_out_of_range,
.CalendarDay__blocked_out_of_range:active,
.CalendarDay__blocked_out_of_range:hover {
  background: #fff;
  border: 1px solid #e4e7e7;
  color: #cacccd; }

.CalendarMonth {
  background: #fff;
  text-align: center;
  padding: 0 13px;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.CalendarMonth_table {
  border-collapse: collapse;
  border-spacing: 0; }

.CalendarMonth_verticalSpacing {
  border-collapse: separate; }

.CalendarMonth_caption {
  color: #484848;
  font-size: 18px;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 37px;
  caption-side: initial; }

.CalendarMonth_caption__verticalScrollable {
  padding-top: 12px;
  padding-bottom: 7px; }

.CalendarMonthGrid {
  background: #fff;
  text-align: left;
  z-index: 0; }

.CalendarMonthGrid__animating {
  z-index: 1; }

.CalendarMonthGrid__horizontal {
  position: absolute;
  left: 9px; }

.CalendarMonthGrid__vertical {
  margin: 0 auto; }

.CalendarMonthGrid__vertical_scrollable {
  margin: 0 auto;
  overflow-y: scroll; }

.CalendarMonthGrid_month__horizontal {
  display: inline-block;
  vertical-align: top;
  min-height: 100%; }

.CalendarMonthGrid_month__hideForAnimation {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none; }

.CalendarMonthGrid_month__hidden {
  visibility: hidden; }

.DayPickerNavigation_container {
  position: relative;
  z-index: 2; }

.DayPickerNavigation_container__vertical {
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 52px;
  width: 100%; }

.DayPickerNavigation_container__verticalScrollable {
  position: relative; }

.DayPickerNavigation_button {
  cursor: pointer;
  line-height: .78;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.DayPickerNavigation_button__default {
  border: 1px solid #e4e7e7;
  background-color: #fff;
  color: #757575; }

.DayPickerNavigation_button__default:focus,
.DayPickerNavigation_button__default:hover {
  border: 1px solid #c4c4c4; }

.DayPickerNavigation_button__default:active {
  background: #f2f2f2; }

.DayPickerNavigation_button__horizontal {
  border-radius: 3px;
  padding: 6px 9px;
  top: 18px;
  position: absolute; }

.DayPickerNavigation_leftButton__horizontal {
  left: 22px; }

.DayPickerNavigation_rightButton__horizontal {
  right: 22px; }

.DayPickerNavigation_button__vertical {
  display: inline-block;
  position: relative;
  height: 100%;
  width: 50%; }

.DayPickerNavigation_button__vertical__default {
  padding: 5px; }

.DayPickerNavigation_nextButton__vertical__default {
  border-left: 0; }

.DayPickerNavigation_nextButton__verticalScrollable {
  width: 100%; }

.DayPickerNavigation_svg__horizontal {
  height: 19px;
  width: 19px;
  fill: #82888a; }

.DayPickerNavigation_svg__vertical {
  height: 42px;
  width: 42px;
  fill: #484848; }

.DayPicker {
  background: #fff;
  position: relative;
  text-align: left; }

.DayPicker__horizontal {
  background: #fff; }

.DayPicker__verticalScrollable {
  height: 100%; }

.DayPicker__hidden {
  visibility: hidden; }

.DayPicker__withBorder {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
  border-radius: 3px; }

.DayPicker_portal__horizontal {
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%; }

.DayPicker_portal__vertical {
  position: initial; }

.DayPicker_focusRegion {
  outline: 0; }

.DayPicker_calendarInfo__horizontal,
.DayPicker_wrapper__horizontal {
  display: inline-block;
  vertical-align: top; }

.DayPicker_weekHeaders {
  position: relative; }

.DayPicker_weekHeaders__horizontal {
  margin-left: 9px; }

.DayPicker_weekHeader {
  color: #757575;
  position: absolute;
  top: 62px;
  z-index: 2;
  padding: 0 13px;
  text-align: left; }

.DayPicker_weekHeader__vertical {
  left: 50%; }

.DayPicker_weekHeader__verticalScrollable {
  top: 0;
  display: table-row;
  border-bottom: 1px solid #dbdbdb;
  background: #fff;
  margin-left: 0;
  left: 0;
  width: 100%;
  text-align: center; }

.DayPicker_weekHeader_ul {
  list-style: none;
  margin: 1px 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px; }

.DayPicker_weekHeader_li {
  display: inline-block;
  text-align: center; }

.DayPicker_transitionContainer {
  position: relative;
  overflow: hidden;
  border-radius: 3px; }

.DayPicker_transitionContainer__horizontal {
  -webkit-transition: height .2s ease-in-out;
  -moz-transition: height .2s ease-in-out;
  transition: height .2s ease-in-out; }

.DayPicker_transitionContainer__vertical {
  width: 100%; }

.DayPicker_transitionContainer__verticalScrollable {
  padding-top: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow-y: scroll; }

.DateInput {
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
  display: inline-block;
  width: 130px;
  vertical-align: middle; }

.DateInput__small {
  width: 97px; }

.DateInput__block {
  width: 100%; }

.DateInput__disabled {
  background: #f2f2f2;
  color: #dbdbdb; }

.DateInput_input {
  font-weight: 200;
  font-size: 19px;
  line-height: 24px;
  color: #484848;
  background-color: #fff;
  width: 100%;
  padding: 11px 11px 9px;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid transparent;
  border-left: 0;
  border-radius: 0; }

.DateInput_input__small {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: .2px;
  padding: 7px 7px 5px; }

.DateInput_input__regular {
  font-weight: auto; }

.DateInput_input__readOnly {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.DateInput_input__focused {
  outline: 0;
  background: #fff;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid #008489;
  border-left: 0; }

.DateInput_input__disabled {
  background: #f2f2f2;
  font-style: italic; }

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

.DateInput_fang {
  position: absolute;
  width: 20px;
  height: 10px;
  left: 22px;
  z-index: 2; }

.DateInput_fangShape {
  fill: #fff; }

.DateInput_fangStroke {
  stroke: #dbdbdb;
  fill: transparent; }

.DateRangePickerInput {
  background-color: #fff;
  display: inline-block; }

.DateRangePickerInput__disabled {
  background: #f2f2f2; }

.DateRangePickerInput__withBorder {
  border: 1px solid #dbdbdb;
  border-radius: 2px; }

.DateRangePickerInput__rtl {
  direction: rtl; }

.DateRangePickerInput__block {
  display: block; }

.DateRangePickerInput__showClearDates {
  padding-right: 30px; }

.DateRangePickerInput_arrow {
  display: inline-block;
  vertical-align: middle;
  color: #484848; }

.DateRangePickerInput_arrow_svg {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px; }

.DateRangePickerInput_clearDates {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.DateRangePickerInput_clearDates__small {
  padding: 6px; }

.DateRangePickerInput_clearDates_default:focus,
.DateRangePickerInput_clearDates_default:hover {
  background: #dbdbdb;
  border-radius: 50%; }

.DateRangePickerInput_clearDates__hide {
  visibility: hidden; }

.DateRangePickerInput_clearDates_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle; }

.DateRangePickerInput_clearDates_svg__small {
  height: 9px; }

.DateRangePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px; }

.DateRangePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle; }

.DateRangePicker {
  position: relative;
  display: inline-block; }

.DateRangePicker__block {
  display: block; }

.DateRangePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute; }

.DateRangePicker_picker__rtl {
  direction: rtl; }

.DateRangePicker_picker__directionLeft {
  left: 0; }

.DateRangePicker_picker__directionRight {
  right: 0; }

.DateRangePicker_picker__portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.DateRangePicker_picker__fullScreenPortal {
  background-color: #fff; }

.DateRangePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2; }

.DateRangePicker_closeButton:focus,
.DateRangePicker_closeButton:hover {
  color: #b0b3b4;
  text-decoration: none; }

.DateRangePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd; }

@charset "UTF-8";
.cyanLink {
  color: #2EFFD9; }
  .cyanLink:hover {
    color: #24E8C4; }
  .cyanLink:active, .cyanLink:focus, .cyanLink:active:focus {
    color: #24E8C4; }

.purpleButton {
  background: #8940FA; }
  .purpleButton:hover {
    background: #6732B9; }
  .purpleButton:active, .purpleButton:focus, .purpleButton:active:focus {
    background: #6D33C8; }
  .purpleButton:disabled, .purpleButton:disabled:hover {
    background: #DBC5FD; }

/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

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

pre {
  overflow: auto; }

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

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

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

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

input {
  line-height: normal; }

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

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

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

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

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

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

@font-face {
  font-family: "Glyphicons Halflings";
  src: url("https://d1rx8vrt2hn1hc.cloudfront.net/fonts/bootstrap/glyphicons-halflings-regular.eot");
  src: url("https://d1rx8vrt2hn1hc.cloudfront.net/fonts/bootstrap/glyphicons-halflings-regular.eot#iefix") format("embedded-opentype"), url("https://d1rx8vrt2hn1hc.cloudfront.net/fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("https://d1rx8vrt2hn1hc.cloudfront.net/fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("https://d1rx8vrt2hn1hc.cloudfront.net/fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("https://d1rx8vrt2hn1hc.cloudfront.net/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: "*"; }

.glyphicon-plus:before {
  content: "+"; }

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20AC"; }

.glyphicon-minus:before {
  content: "\2212"; }

.glyphicon-cloud:before {
  content: "\2601"; }

.glyphicon-envelope:before {
  content: "\2709"; }

.glyphicon-pencil:before {
  content: "\270F"; }

.glyphicon-glass:before {
  content: "\E001"; }

.glyphicon-music:before {
  content: "\E002"; }

.glyphicon-search:before {
  content: "\E003"; }

.glyphicon-heart:before {
  content: "\E005"; }

.glyphicon-star:before {
  content: "\E006"; }

.glyphicon-star-empty:before {
  content: "\E007"; }

.glyphicon-user:before {
  content: "\E008"; }

.glyphicon-film:before {
  content: "\E009"; }

.glyphicon-th-large:before {
  content: "\E010"; }

.glyphicon-th:before {
  content: "\E011"; }

.glyphicon-th-list:before {
  content: "\E012"; }

.glyphicon-ok:before {
  content: "\E013"; }

.glyphicon-remove:before {
  content: "\E014"; }

.glyphicon-zoom-in:before {
  content: "\E015"; }

.glyphicon-zoom-out:before {
  content: "\E016"; }

.glyphicon-off:before {
  content: "\E017"; }

.glyphicon-signal:before {
  content: "\E018"; }

.glyphicon-cog:before {
  content: "\E019"; }

.glyphicon-trash:before {
  content: "\E020"; }

.glyphicon-home:before {
  content: "\E021"; }

.glyphicon-file:before {
  content: "\E022"; }

.glyphicon-time:before {
  content: "\E023"; }

.glyphicon-road:before {
  content: "\E024"; }

.glyphicon-download-alt:before {
  content: "\E025"; }

.glyphicon-download:before {
  content: "\E026"; }

.glyphicon-upload:before {
  content: "\E027"; }

.glyphicon-inbox:before {
  content: "\E028"; }

.glyphicon-play-circle:before {
  content: "\E029"; }

.glyphicon-repeat:before {
  content: "\E030"; }

.glyphicon-refresh:before {
  content: "\E031"; }

.glyphicon-list-alt:before {
  content: "\E032"; }

.glyphicon-lock:before {
  content: "\E033"; }

.glyphicon-flag:before {
  content: "\E034"; }

.glyphicon-headphones:before {
  content: "\E035"; }

.glyphicon-volume-off:before {
  content: "\E036"; }

.glyphicon-volume-down:before {
  content: "\E037"; }

.glyphicon-volume-up:before {
  content: "\E038"; }

.glyphicon-qrcode:before {
  content: "\E039"; }

.glyphicon-barcode:before {
  content: "\E040"; }

.glyphicon-tag:before {
  content: "\E041"; }

.glyphicon-tags:before {
  content: "\E042"; }

.glyphicon-book:before {
  content: "\E043"; }

.glyphicon-bookmark:before {
  content: "\E044"; }

.glyphicon-print:before {
  content: "\E045"; }

.glyphicon-camera:before {
  content: "\E046"; }

.glyphicon-font:before {
  content: "\E047"; }

.glyphicon-bold:before {
  content: "\E048"; }

.glyphicon-italic:before {
  content: "\E049"; }

.glyphicon-text-height:before {
  content: "\E050"; }

.glyphicon-text-width:before {
  content: "\E051"; }

.glyphicon-align-left:before {
  content: "\E052"; }

.glyphicon-align-center:before {
  content: "\E053"; }

.glyphicon-align-right:before {
  content: "\E054"; }

.glyphicon-align-justify:before {
  content: "\E055"; }

.glyphicon-list:before {
  content: "\E056"; }

.glyphicon-indent-left:before {
  content: "\E057"; }

.glyphicon-indent-right:before {
  content: "\E058"; }

.glyphicon-facetime-video:before {
  content: "\E059"; }

.glyphicon-picture:before {
  content: "\E060"; }

.glyphicon-map-marker:before {
  content: "\E062"; }

.glyphicon-adjust:before {
  content: "\E063"; }

.glyphicon-tint:before {
  content: "\E064"; }

.glyphicon-edit:before {
  content: "\E065"; }

.glyphicon-share:before {
  content: "\E066"; }

.glyphicon-check:before {
  content: "\E067"; }

.glyphicon-move:before {
  content: "\E068"; }

.glyphicon-step-backward:before {
  content: "\E069"; }

.glyphicon-fast-backward:before {
  content: "\E070"; }

.glyphicon-backward:before {
  content: "\E071"; }

.glyphicon-play:before {
  content: "\E072"; }

.glyphicon-pause:before {
  content: "\E073"; }

.glyphicon-stop:before {
  content: "\E074"; }

.glyphicon-forward:before {
  content: "\E075"; }

.glyphicon-fast-forward:before {
  content: "\E076"; }

.glyphicon-step-forward:before {
  content: "\E077"; }

.glyphicon-eject:before {
  content: "\E078"; }

.glyphicon-chevron-left:before {
  content: "\E079"; }

.glyphicon-chevron-right:before {
  content: "\E080"; }

.glyphicon-plus-sign:before {
  content: "\E081"; }

.glyphicon-minus-sign:before {
  content: "\E082"; }

.glyphicon-remove-sign:before {
  content: "\E083"; }

.glyphicon-ok-sign:before {
  content: "\E084"; }

.glyphicon-question-sign:before {
  content: "\E085"; }

.glyphicon-info-sign:before {
  content: "\E086"; }

.glyphicon-screenshot:before {
  content: "\E087"; }

.glyphicon-remove-circle:before {
  content: "\E088"; }

.glyphicon-ok-circle:before {
  content: "\E089"; }

.glyphicon-ban-circle:before {
  content: "\E090"; }

.glyphicon-arrow-left:before {
  content: "\E091"; }

.glyphicon-arrow-right:before {
  content: "\E092"; }

.glyphicon-arrow-up:before {
  content: "\E093"; }

.glyphicon-arrow-down:before {
  content: "\E094"; }

.glyphicon-share-alt:before {
  content: "\E095"; }

.glyphicon-resize-full:before {
  content: "\E096"; }

.glyphicon-resize-small:before {
  content: "\E097"; }

.glyphicon-exclamation-sign:before {
  content: "\E101"; }

.glyphicon-gift:before {
  content: "\E102"; }

.glyphicon-leaf:before {
  content: "\E103"; }

.glyphicon-fire:before {
  content: "\E104"; }

.glyphicon-eye-open:before {
  content: "\E105"; }

.glyphicon-eye-close:before {
  content: "\E106"; }

.glyphicon-warning-sign:before {
  content: "\E107"; }

.glyphicon-plane:before {
  content: "\E108"; }

.glyphicon-calendar:before {
  content: "\E109"; }

.glyphicon-random:before {
  content: "\E110"; }

.glyphicon-comment:before {
  content: "\E111"; }

.glyphicon-magnet:before {
  content: "\E112"; }

.glyphicon-chevron-up:before {
  content: "\E113"; }

.glyphicon-chevron-down:before {
  content: "\E114"; }

.glyphicon-retweet:before {
  content: "\E115"; }

.glyphicon-shopping-cart:before {
  content: "\E116"; }

.glyphicon-folder-close:before {
  content: "\E117"; }

.glyphicon-folder-open:before {
  content: "\E118"; }

.glyphicon-resize-vertical:before {
  content: "\E119"; }

.glyphicon-resize-horizontal:before {
  content: "\E120"; }

.glyphicon-hdd:before {
  content: "\E121"; }

.glyphicon-bullhorn:before {
  content: "\E122"; }

.glyphicon-bell:before {
  content: "\E123"; }

.glyphicon-certificate:before {
  content: "\E124"; }

.glyphicon-thumbs-up:before {
  content: "\E125"; }

.glyphicon-thumbs-down:before {
  content: "\E126"; }

.glyphicon-hand-right:before {
  content: "\E127"; }

.glyphicon-hand-left:before {
  content: "\E128"; }

.glyphicon-hand-up:before {
  content: "\E129"; }

.glyphicon-hand-down:before {
  content: "\E130"; }

.glyphicon-circle-arrow-right:before {
  content: "\E131"; }

.glyphicon-circle-arrow-left:before {
  content: "\E132"; }

.glyphicon-circle-arrow-up:before {
  content: "\E133"; }

.glyphicon-circle-arrow-down:before {
  content: "\E134"; }

.glyphicon-globe:before {
  content: "\E135"; }

.glyphicon-wrench:before {
  content: "\E136"; }

.glyphicon-tasks:before {
  content: "\E137"; }

.glyphicon-filter:before {
  content: "\E138"; }

.glyphicon-briefcase:before {
  content: "\E139"; }

.glyphicon-fullscreen:before {
  content: "\E140"; }

.glyphicon-dashboard:before {
  content: "\E141"; }

.glyphicon-paperclip:before {
  content: "\E142"; }

.glyphicon-heart-empty:before {
  content: "\E143"; }

.glyphicon-link:before {
  content: "\E144"; }

.glyphicon-phone:before {
  content: "\E145"; }

.glyphicon-pushpin:before {
  content: "\E146"; }

.glyphicon-usd:before {
  content: "\E148"; }

.glyphicon-gbp:before {
  content: "\E149"; }

.glyphicon-sort:before {
  content: "\E150"; }

.glyphicon-sort-by-alphabet:before {
  content: "\E151"; }

.glyphicon-sort-by-alphabet-alt:before {
  content: "\E152"; }

.glyphicon-sort-by-order:before {
  content: "\E153"; }

.glyphicon-sort-by-order-alt:before {
  content: "\E154"; }

.glyphicon-sort-by-attributes:before {
  content: "\E155"; }

.glyphicon-sort-by-attributes-alt:before {
  content: "\E156"; }

.glyphicon-unchecked:before {
  content: "\E157"; }

.glyphicon-expand:before {
  content: "\E158"; }

.glyphicon-collapse-down:before {
  content: "\E159"; }

.glyphicon-collapse-up:before {
  content: "\E160"; }

.glyphicon-log-in:before {
  content: "\E161"; }

.glyphicon-flash:before {
  content: "\E162"; }

.glyphicon-log-out:before {
  content: "\E163"; }

.glyphicon-new-window:before {
  content: "\E164"; }

.glyphicon-record:before {
  content: "\E165"; }

.glyphicon-save:before {
  content: "\E166"; }

.glyphicon-open:before {
  content: "\E167"; }

.glyphicon-saved:before {
  content: "\E168"; }

.glyphicon-import:before {
  content: "\E169"; }

.glyphicon-export:before {
  content: "\E170"; }

.glyphicon-send:before {
  content: "\E171"; }

.glyphicon-floppy-disk:before {
  content: "\E172"; }

.glyphicon-floppy-saved:before {
  content: "\E173"; }

.glyphicon-floppy-remove:before {
  content: "\E174"; }

.glyphicon-floppy-save:before {
  content: "\E175"; }

.glyphicon-floppy-open:before {
  content: "\E176"; }

.glyphicon-credit-card:before {
  content: "\E177"; }

.glyphicon-transfer:before {
  content: "\E178"; }

.glyphicon-cutlery:before {
  content: "\E179"; }

.glyphicon-header:before {
  content: "\E180"; }

.glyphicon-compressed:before {
  content: "\E181"; }

.glyphicon-earphone:before {
  content: "\E182"; }

.glyphicon-phone-alt:before {
  content: "\E183"; }

.glyphicon-tower:before {
  content: "\E184"; }

.glyphicon-stats:before {
  content: "\E185"; }

.glyphicon-sd-video:before {
  content: "\E186"; }

.glyphicon-hd-video:before {
  content: "\E187"; }

.glyphicon-subtitles:before {
  content: "\E188"; }

.glyphicon-sound-stereo:before {
  content: "\E189"; }

.glyphicon-sound-dolby:before {
  content: "\E190"; }

.glyphicon-sound-5-1:before {
  content: "\E191"; }

.glyphicon-sound-6-1:before {
  content: "\E192"; }

.glyphicon-sound-7-1:before {
  content: "\E193"; }

.glyphicon-copyright-mark:before {
  content: "\E194"; }

.glyphicon-registration-mark:before {
  content: "\E195"; }

.glyphicon-cloud-download:before {
  content: "\E197"; }

.glyphicon-cloud-upload:before {
  content: "\E198"; }

.glyphicon-tree-conifer:before {
  content: "\E199"; }

.glyphicon-tree-deciduous:before {
  content: "\E200"; }

.glyphicon-cd:before {
  content: "\E201"; }

.glyphicon-save-file:before {
  content: "\E202"; }

.glyphicon-open-file:before {
  content: "\E203"; }

.glyphicon-level-up:before {
  content: "\E204"; }

.glyphicon-copy:before {
  content: "\E205"; }

.glyphicon-paste:before {
  content: "\E206"; }

.glyphicon-alert:before {
  content: "\E209"; }

.glyphicon-equalizer:before {
  content: "\E210"; }

.glyphicon-king:before {
  content: "\E211"; }

.glyphicon-queen:before {
  content: "\E212"; }

.glyphicon-pawn:before {
  content: "\E213"; }

.glyphicon-bishop:before {
  content: "\E214"; }

.glyphicon-knight:before {
  content: "\E215"; }

.glyphicon-baby-formula:before {
  content: "\E216"; }

.glyphicon-tent:before {
  content: "\26FA"; }

.glyphicon-blackboard:before {
  content: "\E218"; }

.glyphicon-bed:before {
  content: "\E219"; }

.glyphicon-apple:before {
  content: "\F8FF"; }

.glyphicon-erase:before {
  content: "\E221"; }

.glyphicon-hourglass:before {
  content: "\231B"; }

.glyphicon-lamp:before {
  content: "\E223"; }

.glyphicon-duplicate:before {
  content: "\E224"; }

.glyphicon-piggy-bank:before {
  content: "\E225"; }

.glyphicon-scissors:before {
  content: "\E226"; }

.glyphicon-bitcoin:before {
  content: "\E227"; }

.glyphicon-btc:before {
  content: "\E227"; }

.glyphicon-xbt:before {
  content: "\E227"; }

.glyphicon-yen:before {
  content: "\A5"; }

.glyphicon-jpy:before {
  content: "\A5"; }

.glyphicon-ruble:before {
  content: "\20BD"; }

.glyphicon-rub:before {
  content: "\20BD"; }

.glyphicon-scale:before {
  content: "\E230"; }

.glyphicon-ice-lolly:before {
  content: "\E231"; }

.glyphicon-ice-lolly-tasted:before {
  content: "\E232"; }

.glyphicon-education:before {
  content: "\E233"; }

.glyphicon-option-horizontal:before {
  content: "\E234"; }

.glyphicon-option-vertical:before {
  content: "\E235"; }

.glyphicon-menu-hamburger:before {
  content: "\E236"; }

.glyphicon-modal-window:before {
  content: "\E237"; }

.glyphicon-oil:before {
  content: "\E238"; }

.glyphicon-grain:before {
  content: "\E239"; }

.glyphicon-sunglasses:before {
  content: "\E240"; }

.glyphicon-text-size:before {
  content: "\E241"; }

.glyphicon-text-color:before {
  content: "\E242"; }

.glyphicon-text-background:before {
  content: "\E243"; }

.glyphicon-object-align-top:before {
  content: "\E244"; }

.glyphicon-object-align-bottom:before {
  content: "\E245"; }

.glyphicon-object-align-horizontal:before {
  content: "\E246"; }

.glyphicon-object-align-left:before {
  content: "\E247"; }

.glyphicon-object-align-vertical:before {
  content: "\E248"; }

.glyphicon-object-align-right:before {
  content: "\E249"; }

.glyphicon-triangle-right:before {
  content: "\E250"; }

.glyphicon-triangle-left:before {
  content: "\E251"; }

.glyphicon-triangle-bottom:before {
  content: "\E252"; }

.glyphicon-triangle-top:before {
  content: "\E253"; }

.glyphicon-console:before {
  content: "\E254"; }

.glyphicon-superscript:before {
  content: "\E255"; }

.glyphicon-subscript:before {
  content: "\E256"; }

.glyphicon-menu-left:before {
  content: "\E257"; }

.glyphicon-menu-right:before {
  content: "\E258"; }

.glyphicon-menu-down:before {
  content: "\E259"; }

.glyphicon-menu-up:before {
  content: "\E260"; }

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

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

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: "Karla", sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #292F36;
  background-color: #292F36; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #8940FA;
  text-decoration: none; }
  a:hover, a:focus {
    color: #6732B9;
    text-decoration: underline; }
  a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

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

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

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

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

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

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

[role="button"] {
  cursor: pointer; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: 400;
    line-height: 1;
    color: #777777; }

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

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

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

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

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

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

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

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

p {
  margin: 0 0 10px; }

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

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

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

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

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

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

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

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

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

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

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

.text-muted {
  color: rgba(41, 47, 54, 0.5); }

.text-primary {
  color: #428EFF; }

a.text-primary:hover,
a.text-primary:focus {
  color: #0f70ff; }

.text-success {
  color: #292F36; }

a.text-success:hover,
a.text-success:focus {
  color: #131619; }

.text-info {
  color: #31708f; }

a.text-info:hover,
a.text-info:focus {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #428EFF; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #0f70ff; }

.bg-success {
  background-color: #43eacc; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #19e1bd; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: rgba(208, 2, 27, 0.1); }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: rgba(157, 2, 20, 0.1); }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee; }

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

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

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

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

dt,
dd {
  line-height: 1.42857; }

dt {
  font-weight: 700; }

dd {
  margin-left: 0; }

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

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

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

abbr[title],
abbr[data-original-title] {
  cursor: help; }

.initialism {
  font-size: 90%; }

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

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

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

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

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
    box-shadow: none; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857;
  color: #333333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  .container:before, .container:after {
    display: table;
    content: " "; }
  .container:after {
    clear: both; }
  @media (min-width: 769px) {
    .container {
      width: 294px; } }
  @media (min-width: 992px) {
    .container {
      width: 724px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1124px; } }

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

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

.row-no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .row-no-gutters [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 769px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

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

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

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

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: rgba(41, 47, 54, 0.5);
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  .table > caption + thead > tr:first-child > th,
  .table > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  .table > tbody + tbody {
    border-top: 2px solid #ddd; }
  .table .table {
    background-color: #292F36; }

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

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

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

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

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

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

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

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

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

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: rgba(208, 2, 27, 0.1); }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: rgba(183, 2, 24, 0.1); }

.table-responsive {
  min-height: .01%;
  overflow-x: auto; }
  @media screen and (max-width: 768px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 15px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #ddd; }
      .table-responsive > .table {
        margin-bottom: 0; }
        .table-responsive > .table > thead > tr > th,
        .table-responsive > .table > thead > tr > td,
        .table-responsive > .table > tbody > tr > th,
        .table-responsive > .table > tbody > tr > td,
        .table-responsive > .table > tfoot > tr > th,
        .table-responsive > .table > tfoot > tr > td {
          white-space: nowrap; }
      .table-responsive > .table-bordered {
        border: 0; }
        .table-responsive > .table-bordered > thead > tr > th:first-child,
        .table-responsive > .table-bordered > thead > tr > td:first-child,
        .table-responsive > .table-bordered > tbody > tr > th:first-child,
        .table-responsive > .table-bordered > tbody > tr > td:first-child,
        .table-responsive > .table-bordered > tfoot > tr > th:first-child,
        .table-responsive > .table-bordered > tfoot > tr > td:first-child {
          border-left: 0; }
        .table-responsive > .table-bordered > thead > tr > th:last-child,
        .table-responsive > .table-bordered > thead > tr > td:last-child,
        .table-responsive > .table-bordered > tbody > tr > th:last-child,
        .table-responsive > .table-bordered > tbody > tr > td:last-child,
        .table-responsive > .table-bordered > tfoot > tr > th:last-child,
        .table-responsive > .table-bordered > tfoot > tr > td:last-child {
          border-right: 0; }
        .table-responsive > .table-bordered > tbody > tr:last-child > th,
        .table-responsive > .table-bordered > tbody > tr:last-child > td,
        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

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

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

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

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

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

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

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

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

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

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

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #292F36;
  background-color: #F2F2F3;
  background-image: none;
  border: 1px solid #DFE0E1;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control:focus {
    border-color: #DFE0E1;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(223, 224, 225, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(223, 224, 225, 0.6); }
  .form-control::-moz-placeholder {
    color: rgba(41, 47, 54, 0.5);
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: rgba(41, 47, 54, 0.5); }
  .form-control::-webkit-input-placeholder {
    color: rgba(41, 47, 54, 0.5); }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control[disabled], .form-control[readonly],
  fieldset[disabled] .form-control {
    background-color: #eeeeee;
    opacity: 1; }
  .form-control[disabled],
  fieldset[disabled] .form-control {
    cursor: not-allowed; }

textarea.form-control {
  height: auto; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px; }
  input[type="date"].input-sm, .input-group-sm > input.form-control[type="date"],
  .input-group-sm > input.input-group-addon[type="date"],
  .input-group-sm > .input-group-btn > input.btn[type="date"],
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input.form-control[type="time"],
  .input-group-sm > input.input-group-addon[type="time"],
  .input-group-sm > .input-group-btn > input.btn[type="time"],
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input.form-control[type="datetime-local"],
  .input-group-sm > input.input-group-addon[type="datetime-local"],
  .input-group-sm > .input-group-btn > input.btn[type="datetime-local"],
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input.form-control[type="month"],
  .input-group-sm > input.input-group-addon[type="month"],
  .input-group-sm > .input-group-btn > input.btn[type="month"],
  .input-group-sm
  input[type="month"] {
    line-height: 30px; }
  input[type="date"].input-lg, .input-group-lg > input.form-control[type="date"],
  .input-group-lg > input.input-group-addon[type="date"],
  .input-group-lg > .input-group-btn > input.btn[type="date"],
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input.form-control[type="time"],
  .input-group-lg > input.input-group-addon[type="time"],
  .input-group-lg > .input-group-btn > input.btn[type="time"],
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input.form-control[type="datetime-local"],
  .input-group-lg > input.input-group-addon[type="datetime-local"],
  .input-group-lg > .input-group-btn > input.btn[type="datetime-local"],
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input.form-control[type="month"],
  .input-group-lg > input.input-group-addon[type="month"],
  .input-group-lg > .input-group-btn > input.btn[type="month"],
  .input-group-lg
  input[type="month"] {
    line-height: 52px; } }

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

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio.disabled label,
  fieldset[disabled] .radio label,
  .checkbox.disabled label,
  fieldset[disabled]
  .checkbox label {
    cursor: not-allowed; }
  .radio label,
  .checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer; }

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

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

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer; }
  .radio-inline.disabled,
  fieldset[disabled] .radio-inline,
  .checkbox-inline.disabled,
  fieldset[disabled]
  .checkbox-inline {
    cursor: not-allowed; }

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

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

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

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px; }

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

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px; }

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto; }

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5; }

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 52px;
  padding: 10px 16px;
  font-size: 22px;
  line-height: 1.33333;
  border-radius: 4px; }

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 52px;
  line-height: 52px; }

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

.form-group-lg .form-control {
  height: 52px;
  padding: 10px 16px;
  font-size: 22px;
  line-height: 1.33333;
  border-radius: 4px; }

.form-group-lg select.form-control {
  height: 52px;
  line-height: 52px; }

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }

.form-group-lg .form-control-static {
  height: 52px;
  min-height: 42px;
  padding: 11px 16px;
  font-size: 22px;
  line-height: 1.33333; }

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

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

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

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

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

.has-success .form-control {
  border-color: #292F36;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus {
    border-color: #131619;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #556170;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #556170; }

.has-success .input-group-addon {
  color: #292F36;
  background-color: #43eacc;
  border-color: #292F36; }

.has-success .form-control-feedback {
  color: #292F36; }

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

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

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

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

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

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

.has-error .input-group-addon {
  color: #a94442;
  background-color: rgba(208, 2, 27, 0.1);
  border-color: #a94442; }

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

.has-feedback label ~ .form-control-feedback {
  top: 25px; }

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

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

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

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

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

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

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

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

@media (min-width: 769px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 22px; } }

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

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

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:focus, .btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c; }
  .btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    background-image: none;
    border-color: #adadad; }
    .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
    .open > .btn-default.dropdown-toggle:hover,
    .open > .btn-default.dropdown-toggle:focus,
    .open > .btn-default.dropdown-toggle.focus {
      color: #333;
      background-color: #d4d4d4;
      border-color: #8c8c8c; }
  .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc; }
  .btn-default .badge {
    color: #fff;
    background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #8940FA;
  border-color: #8940FA; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #6a0ef9;
    border-color: #4a05b6; }
  .btn-primary:hover {
    color: #fff;
    background-color: #6a0ef9;
    border-color: #6506f6; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #6a0ef9;
    background-image: none;
    border-color: #6506f6; }
    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
    .open > .btn-primary.dropdown-toggle:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .open > .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #5a06de;
      border-color: #4a05b6; }
  .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus {
    background-color: #8940FA;
    border-color: #8940FA; }
  .btn-primary .badge {
    color: #8940FA;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625; }
  .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    background-image: none;
    border-color: #398439; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
    .open > .btn-success.dropdown-toggle:hover,
    .open > .btn-success.dropdown-toggle:focus,
    .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #398439;
      border-color: #255625; }
  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus {
    background-color: #5cb85c;
    border-color: #4cae4c; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85; }
  .btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    background-image: none;
    border-color: #269abc; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #269abc;
      border-color: #1b6d85; }
  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus {
    background-color: #5bc0de;
    border-color: #46b8da; }
  .btn-info .badge {
    color: #5bc0de;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    background-image: none;
    border-color: #d58512; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #d58512;
      border-color: #985f0d; }
  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    background-image: none;
    border-color: #ac2925; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #ac2925;
      border-color: #761c19; }
  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  font-weight: 400;
  color: #8940FA;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #6732B9;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none; }

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

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

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

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

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

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

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

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

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

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

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease; }

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

.dropup,
.dropdown {
  position: relative; }

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

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

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

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

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

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

.open > a {
  outline: 0; }

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

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

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

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

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

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

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

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

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

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

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

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }
  .input-group-addon:not(:first-child):not(:last-child),
  .input-group-btn:not(:first-child):not(:last-child),
  .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #292F36;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #DFE0E1;
  border-radius: 4px; }
  .input-group-addon.input-sm,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px; }
  .input-group-addon.input-lg,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 22px;
    border-radius: 4px; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

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

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

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

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

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

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .nav:before, .nav:after {
    display: table;
    content: " "; }
  .nav:after {
    clear: both; }
  .nav > li {
    position: relative;
    display: block; }
    .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 15px; }
      .nav > li > a:hover, .nav > li > a:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    .nav > li.disabled > a {
      color: #777777; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #777777;
        text-decoration: none;
        cursor: not-allowed;
        background-color: transparent; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #8940FA; }
  .nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .nav > li > a > img {
    max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs > li > a {
      margin-right: 2px;
      line-height: 1.42857;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #eeeeee #eeeeee #ddd; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #4D4848;
      cursor: default;
      background-color: #292F36;
      border: 1px solid #ddd;
      border-bottom-color: transparent; }

.nav-pills > li {
  float: left; }
  .nav-pills > li > a {
    border-radius: 4px; }
  .nav-pills > li + li {
    margin-left: 2px; }
  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #428EFF; }

.nav-stacked > li {
  float: none; }
  .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0; }

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

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

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

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

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

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

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

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

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

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  .navbar-collapse:before, .navbar-collapse:after {
    display: table;
    content: " "; }
  .navbar-collapse:after {
    clear: both; }
  .navbar-collapse.in {
    overflow-y: auto; }
  @media (min-width: 769px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none; }
      .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important; }
      .navbar-collapse.in {
        overflow-y: visible; }
      .navbar-fixed-top .navbar-collapse,
      .navbar-static-top .navbar-collapse,
      .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px; }
    @media (max-device-width: 769px) and (orientation: landscape) {
      .navbar-fixed-top .navbar-collapse,
      .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px; } }
  @media (min-width: 769px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }

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

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

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 769px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .container-fluid > .navbar-collapse {
      margin-right: 0;
      margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }
  @media (min-width: 769px) {
    .navbar-static-top {
      border-radius: 0; } }

.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 22px;
  line-height: 20px; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }
  @media (min-width: 769px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
      margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-right: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  .navbar-toggle:focus {
    outline: 0; }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px; }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  @media (min-width: 769px) {
    .navbar-toggle {
      display: none; } }

.navbar-nav {
  margin: 7.5px -15px; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px; }
  @media (max-width: 768px) {
    .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      box-shadow: none; }
      .navbar-nav .open .dropdown-menu > li > a,
      .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px; }
      .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px; }
        .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
          background-image: none; } }
  @media (min-width: 769px) {
    .navbar-nav {
      float: left;
      margin: 0; }
      .navbar-nav > li {
        float: left; }
        .navbar-nav > li > a {
          padding-top: 15px;
          padding-bottom: 15px; } }

.navbar-form {
  padding: 10px 15px;
  margin-right: -15px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px; }
  @media (min-width: 769px) {
    .navbar-form .form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .navbar-form .form-control-static {
      display: inline-block; }
    .navbar-form .input-group {
      display: inline-table;
      vertical-align: middle; }
      .navbar-form .input-group .input-group-addon,
      .navbar-form .input-group .input-group-btn,
      .navbar-form .input-group .form-control {
        width: auto; }
    .navbar-form .input-group > .form-control {
      width: 100%; }
    .navbar-form .control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .radio,
    .navbar-form .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle; }
      .navbar-form .radio label,
      .navbar-form .checkbox label {
        padding-left: 0; }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0; }
    .navbar-form .has-feedback .form-control-feedback {
      top: 0; } }
  @media (max-width: 768px) {
    .navbar-form .form-group {
      margin-bottom: 5px; }
      .navbar-form .form-group:last-child {
        margin-bottom: 0; } }
  @media (min-width: 769px) {
    .navbar-form {
      width: auto;
      padding-top: 0;
      padding-bottom: 0;
      margin-right: 0;
      margin-left: 0;
      border: 0;
      -webkit-box-shadow: none;
      box-shadow: none; } }

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

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

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

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }
  @media (min-width: 769px) {
    .navbar-text {
      float: left;
      margin-right: 15px;
      margin-left: 15px; } }

@media (min-width: 769px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
    .navbar-right ~ .navbar-right {
      margin-right: 0; } }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }
  .navbar-default .navbar-brand {
    color: #777; }
    .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
      color: #5e5e5e;
      background-color: transparent; }
  .navbar-default .navbar-text {
    color: #777; }
  .navbar-default .navbar-nav > li > a {
    color: #777; }
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
      color: #333;
      background-color: transparent; }
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; }
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  @media (max-width: 768px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #777; }
      .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent; }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #555;
      background-color: #e7e7e7; }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #ccc;
      background-color: transparent; } }
  .navbar-default .navbar-toggle {
    border-color: #ddd; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: #ddd; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #888; }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #e7e7e7; }
  .navbar-default .navbar-link {
    color: #777; }
    .navbar-default .navbar-link:hover {
      color: #333; }
  .navbar-default .btn-link {
    color: #777; }
    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
      color: #333; }
    .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:hover,
    fieldset[disabled] .navbar-default .btn-link:focus {
      color: #ccc; }

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

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

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

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 22px;
  line-height: 1.33333; }

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

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

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

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

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

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

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

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

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

.label-primary {
  background-color: #428EFF; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #0f70ff; }

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

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

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

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

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

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

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

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

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #8940FA; }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    font-weight: bold; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissable .close,
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  color: #292F36;
  background-color: #43eacc;
  border-color: #2EFFD9; }
  .alert-success hr {
    border-top-color: #15ffd4; }
  .alert-success .alert-link {
    color: #131619; }

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

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

.alert-danger {
  color: #a94442;
  background-color: rgba(208, 2, 27, 0.1);
  border-color: rgba(183, 2, 54, 0.1); }
  .alert-danger hr {
    border-top-color: rgba(157, 2, 46, 0.1); }
  .alert-danger .alert-link {
    color: #843534; }

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

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

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

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

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

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

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

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

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

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

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

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

.media-body {
  width: 10000px; }

.media-object {
  display: block; }
  .media-object.img-thumbnail {
    max-width: none; }

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

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

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

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

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

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

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  .list-group-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }
  .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
    color: #777777;
    cursor: not-allowed;
    background-color: #eeeeee; }
    .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
      color: inherit; }
    .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
      color: #777777; }
  .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #428EFF;
    border-color: #428EFF; }
    .list-group-item.active .list-group-item-heading,
    .list-group-item.active .list-group-item-heading > small,
    .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
    .list-group-item.active:hover .list-group-item-heading > small,
    .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
    .list-group-item.active:focus .list-group-item-heading > small,
    .list-group-item.active:focus .list-group-item-heading > .small {
      color: inherit; }
    .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
      color: white; }

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

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item-success {
  color: #292F36;
  background-color: #43eacc; }

a.list-group-item-success,
button.list-group-item-success {
  color: #292F36; }
  a.list-group-item-success .list-group-item-heading,
  button.list-group-item-success .list-group-item-heading {
    color: inherit; }
  a.list-group-item-success:hover, a.list-group-item-success:focus,
  button.list-group-item-success:hover,
  button.list-group-item-success:focus {
    color: #292F36;
    background-color: #2ce8c5; }
  a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
  button.list-group-item-success.active,
  button.list-group-item-success.active:hover,
  button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #292F36;
    border-color: #292F36; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }
  a.list-group-item-info .list-group-item-heading,
  button.list-group-item-info .list-group-item-heading {
    color: inherit; }
  a.list-group-item-info:hover, a.list-group-item-info:focus,
  button.list-group-item-info:hover,
  button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3; }
  a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
  button.list-group-item-info.active,
  button.list-group-item-info.active:hover,
  button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }
  a.list-group-item-warning .list-group-item-heading,
  button.list-group-item-warning .list-group-item-heading {
    color: inherit; }
  a.list-group-item-warning:hover, a.list-group-item-warning:focus,
  button.list-group-item-warning:hover,
  button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc; }
  a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
  button.list-group-item-warning.active,
  button.list-group-item-warning.active:hover,
  button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: rgba(208, 2, 27, 0.1); }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }
  a.list-group-item-danger .list-group-item-heading,
  button.list-group-item-danger .list-group-item-heading {
    color: inherit; }
  a.list-group-item-danger:hover, a.list-group-item-danger:focus,
  button.list-group-item-danger:hover,
  button.list-group-item-danger:focus {
    color: #a94442;
    background-color: rgba(183, 2, 24, 0.1); }
  a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
  button.list-group-item-danger.active,
  button.list-group-item-danger.active:hover,
  button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.panel {
  margin-bottom: 20px;
  background-color: #414141;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

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

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

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

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

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

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

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

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

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }
  .panel > .table caption,
  .panel > .table-responsive > .table caption,
  .panel > .panel-collapse > .table caption {
    padding-right: 15px;
    padding-left: 15px; }

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

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
  .panel > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table:last-child > tfoot:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
      border-bottom-left-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
      border-bottom-right-radius: 3px; }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }
  .panel > .table-bordered > thead > tr > th:first-child,
  .panel > .table-bordered > thead > tr > td:first-child,
  .panel > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-bordered > tfoot > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .panel > .table-bordered > thead > tr > th:last-child,
  .panel > .table-bordered > thead > tr > td:last-child,
  .panel > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-bordered > tfoot > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .panel > .table-bordered > thead > tr:first-child > td,
  .panel > .table-bordered > thead > tr:first-child > th,
  .panel > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-bordered > tbody > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
  .panel > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-bordered > tfoot > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

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

.panel-group {
  margin-bottom: 20px; }
  .panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px; }
    .panel-group .panel + .panel {
      margin-top: 5px; }
  .panel-group .panel-heading {
    border-bottom: 0; }
    .panel-group .panel-heading + .panel-collapse > .panel-body,
    .panel-group .panel-heading + .panel-collapse > .list-group {
      border-top: 1px solid #414141; }
  .panel-group .panel-footer {
    border-top: 0; }
    .panel-group .panel-footer + .panel-collapse .panel-body {
      border-bottom: 1px solid #414141; }

.panel-default {
  border-color: #414141; }
  .panel-default > .panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #414141; }
    .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #414141; }
    .panel-default > .panel-heading .badge {
      color: #f5f5f5;
      background-color: #333333; }
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #414141; }

.panel-primary {
  border-color: #428EFF; }
  .panel-primary > .panel-heading {
    color: #fff;
    background-color: #428EFF;
    border-color: #428EFF; }
    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #428EFF; }
    .panel-primary > .panel-heading .badge {
      color: #428EFF;
      background-color: #fff; }
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #428EFF; }

.panel-success {
  border-color: #2EFFD9; }
  .panel-success > .panel-heading {
    color: #292F36;
    background-color: #43eacc;
    border-color: #2EFFD9; }
    .panel-success > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #2EFFD9; }
    .panel-success > .panel-heading .badge {
      color: #43eacc;
      background-color: #292F36; }
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #2EFFD9; }

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

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

.panel-danger {
  border-color: rgba(183, 2, 54, 0.1); }
  .panel-danger > .panel-heading {
    color: #a94442;
    background-color: rgba(208, 2, 27, 0.1);
    border-color: rgba(183, 2, 54, 0.1); }
    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: rgba(183, 2, 54, 0.1); }
    .panel-danger > .panel-heading .badge {
      color: rgba(208, 2, 27, 0.1);
      background-color: #a94442; }
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: rgba(183, 2, 54, 0.1); }

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

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

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

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

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

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

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

.modal-open {
  overflow: hidden; }

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

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

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

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

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

.modal-header {
  padding: 32px 50px;
  border-bottom: 1px solid #fff; }
  .modal-header:before, .modal-header:after {
    display: table;
    content: " "; }
  .modal-header:after {
    clear: both; }

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

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

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

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

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

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

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

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Karla", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0; }
  .tooltip.in {
    filter: alpha(opacity=90);
    opacity: 0.9; }
  .tooltip.top {
    padding: 5px 0;
    margin-top: -3px; }
  .tooltip.right {
    padding: 0 5px;
    margin-left: 3px; }
  .tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px; }
  .tooltip.left {
    padding: 0 5px;
    margin-left: -3px; }
  .tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  .tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  .tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  .tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000; }
  .tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000; }
  .tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }
  .tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }
  .tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 380px;
  padding: 1px;
  font-family: "Karla", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  .popover.top {
    margin-top: 0px; }
  .popover.right {
    margin-left: 0px; }
  .popover.bottom {
    margin-top: 0px; }
  .popover.left {
    margin-left: 0px; }
  .popover > .arrow {
    border-width: 1px; }
    .popover > .arrow, .popover > .arrow:after {
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      border-color: transparent;
      border-style: solid; }
    .popover > .arrow:after {
      content: "";
      border-width: 0px; }
  .popover.top > .arrow {
    bottom: -1px;
    left: 50%;
    margin-left: -1px;
    border-top-color: #cccccc;
    border-top-color: white;
    border-bottom-width: 0; }
    .popover.top > .arrow:after {
      bottom: 1px;
      margin-left: 0px;
      content: " ";
      border-top-color: #fff;
      border-bottom-width: 0; }
  .popover.right > .arrow {
    top: 50%;
    left: -1px;
    margin-top: -1px;
    border-right-color: #cccccc;
    border-right-color: white;
    border-left-width: 0; }
    .popover.right > .arrow:after {
      bottom: 0px;
      left: 1px;
      content: " ";
      border-right-color: #fff;
      border-left-width: 0; }
  .popover.bottom > .arrow {
    top: -1px;
    left: 50%;
    margin-left: -1px;
    border-top-width: 0;
    border-bottom-color: #cccccc;
    border-bottom-color: white; }
    .popover.bottom > .arrow:after {
      top: 1px;
      margin-left: 0px;
      content: " ";
      border-top-width: 0;
      border-bottom-color: #fff; }
  .popover.left > .arrow {
    top: 50%;
    right: -1px;
    margin-top: -1px;
    border-right-width: 0;
    border-left-color: #cccccc;
    border-left-color: white; }
    .popover.left > .arrow:after {
      right: 1px;
      bottom: 0px;
      content: " ";
      border-right-width: 0;
      border-left-color: #fff; }

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

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

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner > .item {
    position: relative;
    display: none;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

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

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

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

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

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

.clearfix:after {
  clear: both; }

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

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

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

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

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

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! uncss:ignore start */
#modal-takeover-episode-pages-tagline-2,
#modal-takeover-episode-pages-tagline-3 {
  display: none; }

body[amp-x-amp-home-start-button="1"] .amp-ex-home-start-button-0 {
  display: none; }

body[amp-x-amp-home-start-button="1"] .amp-ex-home-start-button-1 {
  display: inline; }

body[amp-x-amp-home-start-button="1"] .amp-ex-home-start-button-2 {
  display: none; }

body[amp-x-amp-home-start-button="2"] .amp-ex-home-start-button-0 {
  display: none; }

body[amp-x-amp-home-start-button="2"] .amp-ex-home-start-button-1 {
  display: none; }

body[amp-x-amp-home-start-button="2"] .amp-ex-home-start-button-2 {
  display: inline; }

/*! uncss:ignore end */
h1 {
  letter-spacing: -1.93px;
  margin: 0; }
  @media (min-width: 992px) {
    h1 {
      font-size: 46px; } }

h2 {
  font-weight: 300; }

p {
  color: #292F36;
  margin: 0; }

button {
  background: transparent; }
  button:focus, button:active:focus {
    outline: none; }

.btn:focus, .btn:active:focus {
  outline: none; }

img {
  vertical-align: middle; }

.purpleLink {
  color: #8940FA; }
  .purpleLink:active, .purpleLink:focus, .purpleLink:active:focus {
    color: #6D33C8; }

.cyanButton {
  background: #2EFFD9; }
  .cyanButton:hover {
    background: #24E8C4; }
  .cyanButton:active, .cyanButton:focus, .cyanButton:active:focus {
    background: #22DFBD;
    color: #292F36;
    text-decoration: none; }

.nowrap {
  white-space: nowrap; }

.linkButton {
  height: 46px;
  width: 300px;
  margin-top: 25px;
  color: #292F36;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  padding-top: 12px;
  display: inline-block;
  text-align: center; }
  .linkButton:hover {
    color: #292F36;
    text-decoration: none; }
  @media (max-width: 769px) {
    .linkButton {
      padding-left: 30px;
      padding-right: 30px;
      max-width: 300px;
      width: 100%; } }

a:active, a:focus, a:active:focus {
  color: #6D33C8; }

a:focus {
  outline: 0; }

.alert.alert-danger {
  background-color: rgba(208, 2, 27, 0.1);
  border: 0; }

.well {
  min-height: 80px;
  padding: 12px;
  border-radius: 7px; }

.media {
  margin-top: 0; }

.media-right,
.media > .pull-right {
  padding-left: 22px; }

.media-left,
.media > .pull-left {
  padding-right: 22px; }

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }
  body.containEmbed {
    background-color: transparent; }

select {
  cursor: pointer; }

.react-toggle-track {
  background-color: #DFE0E1; }

.react-toggle-thumb {
  border-color: #DFE0E1; }

.react-toggle--checked .react-toggle-track,
.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #8940FA; }

.react-toggle--checked .react-toggle-thumb {
  border-color: #8940FA; }

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #DFE0E1; }

.form-group-lg .form-control {
  height: 50px;
  border-radius: 7px; }

.has-feedback label ~ .form-control-feedback {
  top: 19px; }

.form-control {
  transition: background-color 0.1s ease-in;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none; }

.has-error .form-control {
  border: solid 1px rgba(208, 2, 27, 0.5);
  background-color: none; }

.glyphicon:before {
  content: none; }

button, .btn {
  border: none; }
  button:focus, button:active, button:selected, button.active.focus, button.active:focus, button.focus, button:active.focus, button:active:focus, button:focus, .btn:focus, .btn:active, .btn:selected, .btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    border: none;
    outline: none; }

.rdtPicker {
  color: #292F36; }
  .rdtPicker td.rdtToday:before {
    display: none; }
  .rdtPicker td.rdtActive, .rdtPicker td.rdtActive:hover {
    background-color: #292F36; }
  .rdtPicker .rdtTime th.rdtSwitch,
  .rdtPicker td.rdtTimeToggle {
    font-weight: bold;
    color: #8940FA; }

.rdtCounter .rdtBtn {
  visibility: hidden; }

.rdtCounter:first-child .rdtBtn, .rdtCounter:last-child .rdtBtn {
  visibility: visible; }

.btn-overlay {
  background-color: rgba(0, 0, 0, 0.47);
  border-radius: 15px; }
  .btn-overlay:hover, .btn-overlay:focus, .btn-overlay.focus {
    color: inherit; }
  .btn-overlay.btn-sm, .btn-group-sm > .btn-overlay.btn {
    height: 28px;
    padding-top: 2px;
    padding-bottom: 2px; }

.btn-listen {
  background-color: #2EFFD9;
  color: #4D4848;
  border-radius: 45px;
  font-weight: bold;
  padding: 2px 15px 3px 6px;
  font-size: 20px; }
  .btn-listen > div, .btn-listen > button {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle; }
  .btn-listen.btn-sm, .btn-group-sm > .btn-listen.btn {
    height: 28px;
    padding-top: 2px;
    padding-bottom: 2px; }
  .btn-listen:hover, .btn-listen:focus, .btn-listen.focus, .btn-listen:active, .btn-listen.active, .btn-listen:active:hover, .btn-listen:active:focus, .btn-listen:active.focus, .btn-listen.active:hover, .btn-listen.active:focus, .btn-listen.active.focus {
    color: #4D4848;
    background: #24E8C4; }
  .btn-listen:active, .btn-listen.active, .btn-listen:active:hover, .btn-listen:active:focus, .btn-listen:active.focus, .btn-listen.active:hover, .btn-listen.active:focus, .btn-listen.active.focus {
    background: #22DFBD; }

.btn-nav {
  border-radius: 8px;
  color: #2EFFD9;
  font-weight: 700;
  text-transform: uppercase;
  background: #292F36;
  padding: 6px 13px;
  line-height: 1;
  -webkit-box-shadow: 5px 5px 0 #2EFFD9;
  box-shadow: 5px 5px 0 #2EFFD9; }
  .btn-nav:hover, .btn-nav:focus, .btn-nav.focus, .btn-nav:active, .btn-nav.active, .btn-nav:active:hover, .btn-nav:active:focus, .btn-nav:active.focus, .btn-nav.active:hover, .btn-nav.active:focus, .btn-nav.active.focus {
    color: #2EFFD9;
    background: #181D22;
    border-color: #181D22; }
  .btn-nav:active, .btn-nav.active, .btn-nav:active:hover, .btn-nav:active:focus, .btn-nav:active.focus, .btn-nav.active:hover, .btn-nav.active:focus, .btn-nav.active.focus {
    position: relative;
    top: 2px;
    left: 2px;
    -webkit-box-shadow: 3px 3px 0 #37CAAF;
    box-shadow: 3px 3px 0 #37CAAF; }
  @media (min-width: 992px) {
    .btn-nav {
      padding: 12px 25px; } }

.btn:disabled {
  opacity: 1; }

.btn:active {
  box-shadow: none; }

.btn-primary, .btn-secondary {
  border-radius: 25px;
  font-size: 18px;
  line-height: 38px;
  height: 50px;
  font-weight: 700;
  background-color: #8940FA;
  color: white;
  position: relative; }
  .btn-primary:hover, .btn-secondary:hover {
    background-color: #6732B9; }
  .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .btn-secondary:hover, .btn-secondary:focus, .btn-secondary.focus, .btn-secondary:active, .btn-secondary.active, .btn-secondary:active:hover, .btn-secondary:active:focus, .btn-secondary:active.focus, .btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active.focus {
    background-color: #6D33C8; }
  .btn-primary:disabled, .btn-primary:disabled:hover, .btn-secondary:disabled, .btn-secondary:disabled:hover {
    background-color: #DBC5FD; }

.btn-secondary {
  background-color: #dfe0e1;
  color: #5F6369; }
  .btn-secondary:hover {
    background-color: #C9CBCD; }
  .btn-secondary:hover, .btn-secondary:focus, .btn-secondary.focus, .btn-secondary:active, .btn-secondary.active, .btn-secondary:active:hover, .btn-secondary:active:focus, .btn-secondary:active.focus, .btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active.focus {
    background-color: #A8ACB0; }
  .btn-secondary:disabled, .btn-secondary:disabled:hover {
    background-color: #e0e1e1; }

.btn-inverted, .btn-inverted-gray {
  border-radius: 25px;
  font-size: 18px;
  height: 50px;
  font-weight: 700;
  padding: 0 24px;
  background-color: #fff; }
  .btn-inverted:hover, .btn-inverted-gray:hover {
    background-color: #fff; }
  .btn-inverted:hover, .btn-inverted:focus, .btn-inverted.focus, .btn-inverted:active, .btn-inverted.active, .btn-inverted:active:hover, .btn-inverted:active:focus, .btn-inverted:active.focus, .btn-inverted.active:hover, .btn-inverted.active:focus, .btn-inverted.active.focus, .btn-inverted-gray:hover, .btn-inverted-gray:focus, .btn-inverted-gray.focus, .btn-inverted-gray:active, .btn-inverted-gray.active, .btn-inverted-gray:active:hover, .btn-inverted-gray:active:focus, .btn-inverted-gray:active.focus, .btn-inverted-gray.active:hover, .btn-inverted-gray.active:focus, .btn-inverted-gray.active.focus {
    background-color: #fff; }

.btn-inverted-gray {
  color: #7F8287;
  font-weight: bold; }
  .btn-inverted-gray:hover, .btn-inverted-gray:focus, .btn-inverted-gray.focus, .btn-inverted-gray:active, .btn-inverted-gray.active, .btn-inverted-gray:active:hover, .btn-inverted-gray:active:focus, .btn-inverted-gray:active.focus, .btn-inverted-gray.active:hover, .btn-inverted-gray.active:focus, .btn-inverted-gray.active.focus {
    color: #727579; }

.btn-danger {
  border-radius: 25px;
  font-size: 18px;
  height: 50px;
  font-weight: bold;
  background-color: #E54751; }

.btn-primary.btn-lg, .btn-group-lg > .btn-primary.btn {
  -webkit-box-shadow: 5px 5px 0 #2EFFD9;
  box-shadow: 5px 5px 0 #2EFFD9;
  padding: 6px 13px;
  line-height: 1; }
  @media (min-width: 992px) {
    .btn-primary.btn-lg, .btn-group-lg > .btn-primary.btn {
      padding: 12px 25px; } }
  .btn-primary.btn-lg:active, .btn-group-lg > .btn-primary.btn:active, .btn-primary.btn-lg.active, .btn-group-lg > .btn-primary.active.btn, .btn-primary.btn-lg:active:hover, .btn-group-lg > .btn-primary.btn:active:hover, .btn-primary.btn-lg:active:focus, .btn-group-lg > .btn-primary.btn:active:focus, .btn-primary.btn-lg:active.focus, .btn-group-lg > .btn-primary.btn:active.focus, .btn-primary.btn-lg.active:hover, .btn-group-lg > .btn-primary.active.btn:hover, .btn-primary.btn-lg.active:focus, .btn-group-lg > .btn-primary.active.btn:focus, .btn-primary.btn-lg.active.focus, .btn-group-lg > .btn-primary.active.focus.btn {
    position: relative;
    top: 2px;
    left: 2px;
    -webkit-box-shadow: 3px 3px 0 #37CAAF;
    box-shadow: 3px 3px 0 #37CAAF; }

.table > tbody > tr > td:first-child,
.table > thead > tr > th:first-child {
  padding-left: 15px; }

.table > tbody > tr > td:last-child,
.table > thead > tr > th:last-child {
  padding-right: 15px; }

.table th {
  font-size: 24px;
  line-height: 30px; }
  @media (min-width: 1200px) {
    .table th {
      font-size: 30px;
      line-height: 36px; } }

.table > tbody > tr > td {
  border-top-width: 0; }

.table > thead > tr > th {
  border-bottom-width: 0; }

.popover-content {
  padding: 24px 20px; }

.popover.bottom {
  margin-top: 10px; }

.popover {
  border-radius: 7px;
  font-weight: bold;
  color: #787c81;
  margin-right: 6px;
  height: auto; }
  .popover a:link, .popover a:visited, .popover a:hover, .popover a:active {
    text-decoration: none;
    color: #8940FA; }

.modal-content {
  -webkit-box-shadow: 0 2px 2px rgba(76, 76, 77, 0.25);
  box-shadow: 0 2px 2px rgba(76, 76, 77, 0.25);
  background-clip: border-box; }

.modal-body {
  padding: 18px; }
  .modal-body p {
    font-size: 20px; }
  .modal-body p, .modal-body pre {
    margin: 18px 0 30px; }
  @media (min-width: 769px) {
    .modal-body {
      padding: 32px 50px; } }

.modal-open > div:first-child {
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px); }

.playback-modal .modal-content {
  background-color: #8940FA;
  background-image: -webkit-linear-gradient(62deg, #8756F2 38%, transparent 38%);
  border: 1px solid #8940FA; }

.playback-modal .modal-header {
  padding-bottom: 0;
  border-bottom-width: 0; }

.playback-modal .modal-body {
  padding-top: 10px;
  padding-bottom: 10px; }

@media (min-width: 769px) {
  .playback-modal .modal-dialog {
    width: auto; } }

.modal.fade {
  display: flex !important;
  height: 100%; }
  .modal.fade .modal-dialog {
    margin: auto;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }

.close {
  filter: alpha(opacity=80);
  opacity: 0.8; }

.modal-dialog {
  max-width: 639px;
  margin: 30px auto;
  width: auto; }
  @media (min-width: 769px) {
    .modal-dialog {
      width: 639px;
      max-width: none; } }

.modal-content {
  margin: 0 12px;
  overflow: visible; }

.modal-content,
.modal-content p,
.modal-content li {
  font-size: 16px;
  color: #292F36; }
  @media (min-width: 769px) {
    .modal-content,
    .modal-content p,
    .modal-content li {
      font-size: 20px; } }

.modal-content p,
.modal-content li {
  margin-bottom: 15px; }
  .modal-content p:last-child,
  .modal-content li:last-child {
    margin-bottom: 0; }

.modal-content .checkbox input {
  height: 22px; }

.modal-header {
  padding-bottom: 0; }
  .modal-header h1, .modal-header h2, .modal-header h3, .modal-header h4, .modal-header h5, .modal-header h6 {
    margin: 0; }
  .modal-header .close {
    float: left;
    color: #5F6369;
    opacity: 1; }
    .modal-header .close:hover, .modal-header .close:active, .modal-header .close:selected {
      color: #55595E; }
  .modal-header h2 {
    font-size: 24px;
    text-align: center; }
    @media (min-width: 769px) {
      .modal-header h2 {
        font-size: 32px; } }

.modal-footer {
  padding-top: 0; }

.highcharts-container {
  width: 100%; }

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .hidden-ie11 {
    display: none; } }

.isV2LegacyPage {
  color: #fff; }
  .isV2LegacyPage p {
    color: #fff; }
  .isV2LegacyPage h1 {
    font-size: 39px;
    line-height: 48px;
    letter-spacing: -1px; }
    @media (min-width: 992px) {
      .isV2LegacyPage h1 {
        font-size: 64px;
        line-height: 76px;
        letter-spacing: -2px; } }
    @media (min-width: 1200px) {
      .isV2LegacyPage h1 {
        font-size: 80px;
        line-height: 86px; } }
  .isV2LegacyPage h2 {
    font-size: 32px;
    line-height: 37px;
    letter-spacing: -1px; }
    @media (min-width: 992px) {
      .isV2LegacyPage h2 {
        font-size: 48px;
        line-height: 56px;
        letter-spacing: -2px; } }
  .isV2LegacyPage a {
    color: #2EFFD9; }
    .isV2LegacyPage a:hover {
      color: #2EFFD9; }
    .isV2LegacyPage a:active, .isV2LegacyPage a:focus, .isV2LegacyPage a:active:focus {
      color: #2EFFD9; }

.caret {
  border-top: 6px dashed;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent; }

body.dragging, body.dragging * {
  cursor: grabbing !important;
  cursor: -webkit-grabbing !important;
  cursor: -moz-grabbing !important; }

.lockScroll {
  overflow: hidden;
  position: fixed;
  width: 100vw; }

.hidden {
  visibility: hidden; }

/*! uncss:ignore start */
.cookieBanner {
  background-color: #292F36;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  padding: 11px 20px 6px 47px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; }
  @media (min-width: 992px) {
    .cookieBanner {
      padding-top: 22px;
      padding-bottom: 22px; } }
  .cookieBanner a, .cookieBanner a:link, .cookieBanner a:hover, .cookieBanner a:active, .cookieBanner a:visited {
    color: inherit;
    font-weight: bold;
    text-decoration: none; }
  .cookieBanner > div {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    cursor: pointer; }

/*! uncss:ignore end */

.styles__spinner____YOfz {
  position: relative;
  background: transparent; }

.styles__spinnerSpoke___5vS8P {
  height: 28%;
  border-radius: 25%;
  width: 8%;
  animation: styles__spinner____YOfz 1.2s infinite;
  animation-fill-mode: backwards;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform-origin: 50% 180%;
  margin-left: -5%; }

.styles__spinnerSpoke___5vS8P:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1.1s; }

.styles__spinnerSpoke___5vS8P:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -1.0s; }

.styles__spinnerSpoke___5vS8P:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.9s; }

.styles__spinnerSpoke___5vS8P:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.8s; }

.styles__spinnerSpoke___5vS8P:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.7s; }

.styles__spinnerSpoke___5vS8P:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.6s; }

.styles__spinnerSpoke___5vS8P:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.5s; }

.styles__spinnerSpoke___5vS8P:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.4s; }

.styles__spinnerSpoke___5vS8P:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.3s; }

.styles__spinnerSpoke___5vS8P:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.2s; }

.styles__spinnerSpoke___5vS8P:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: -0.1s; }

@keyframes styles__spinner____YOfz {
  0%, 100% {
    opacity: 0; }
  50% {
    opacity: 1; } }

.styles__centered___3YUCQ {
  display: flex;
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center; }

.styles__spinner___3yVrj {
  display: inline-block;
  animation-name: styles__spin___cnBTI;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; }

@keyframes styles__spin___cnBTI {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.styles__dropdownButton___1PmHe {
  position: relative;
  display: inline-block; }
  .styles__dropdownButton___1PmHe > button {
    padding: 0;
    height: 14px;
    display: flex; }

.styles__dropdown___2e0Rp {
  position: absolute;
  white-space: nowrap;
  z-index: 1; }

.styles__left___8Dd2n {
  left: 0;
  transform: translate(-100%, -50%);
  top: 50%; }

.styles__bottom___3Wa_E {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%); }

.styles__right___3-3Ta {
  right: 0;
  transform: translate(100%, -50%);
  top: 50%; }

.styles__top___2lD0w {
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%); }

.styles__container___11EYf {
  display: flex;
  align-items: center;
  box-shadow: 1px 2px 1px 0px #C9CBCD; }
  .styles__container___11EYf:before {
    content: ' ';
    height: 16px;
    width: 16px;
    position: absolute;
    background: inherit;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg); }

.styles__relative____L9Iw {
  position: relative; }
  .styles__relative____L9Iw.styles__bottom___2roVd {
    top: 9px; }
  .styles__relative____L9Iw.styles__top___1VDju {
    bottom: 9px; }
  .styles__relative____L9Iw.styles__left___yGdMN {
    right: 9px; }
  .styles__relative____L9Iw.styles__right___UMGF4 {
    left: 9px; }

.styles__absolute___3LP-x {
  position: absolute; }
  .styles__absolute___3LP-x.styles__bottom___2roVd {
    z-index: 1;
    left: 50%;
    transform: translate(-50%, 100%);
    bottom: -13px; }
  .styles__absolute___3LP-x.styles__top___1VDju {
    top: -13px;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -100%); }
  .styles__absolute___3LP-x.styles__left___yGdMN {
    top: 50%;
    left: -13px;
    transform: translate(-100%, -50%);
    z-index: 1; }
  .styles__absolute___3LP-x.styles__right___UMGF4 {
    top: 50%;
    right: -13px;
    transform: translate(100%, -50%);
    z-index: 1; }

.styles__bottom___2roVd:before {
  top: -8px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0; }

.styles__top___1VDju:before {
  bottom: -8px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  box-shadow: 1.5px 1.5px 1px 0px #C9CBCD;
  z-index: 1; }

.styles__left___yGdMN:before {
  right: -8px;
  align-self: center;
  box-shadow: 1px -1px 1px 0px #C9CBCD;
  z-index: 1; }

.styles__right___UMGF4:before {
  left: -8px;
  align-self: center;
  z-index: -1; }

.styles__bubble___2Rc6H {
  padding: 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #FFF;
  letter-spacing: 0;
  white-space: normal;
  text-align: left;
  background: black; }

.styles__appLink___2qz6t {
  font-size: 0px;
  vertical-align: top; }
  .styles__appLink___2qz6t svg {
    display: block; }

.styles__appStoreWithShadow___KbrPb svg {
  border-radius: 16px; }

.styles__googlePlayWithShadow___3ZBF1 svg {
  border-radius: 10px; }

.styles__isolate___PorP1 {
  isolation: isolate; }

.styles__outerContainer___26Q1l {
  margin: 0 auto; }

.styles__innerContainer___1Fm9K {
  display: flex;
  width: 1295px;
  justify-content: space-between; }

.styles__container___2SaF- {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  background-color: #292f36;
  position: absolute;
  top: -96px;
  height: 96px;
  width: 100%;
  z-index: 4; }
  @media (max-width: 769px) {
    .styles__container___2SaF- {
      background-color: #53585e; } }
  @media (max-width: 880px) {
    .styles__container___2SaF- {
      padding: 0 16px;
      height: 76px;
      top: -76px; } }

.styles__containerWithMobileCTA___vKGsT {
  background-color: rgba(255, 255, 255, 0.2);
  justify-content: space-between; }

.styles__logoContainer___5KUJ4 {
  width: 250px;
  margin-left: 12px; }

.styles__logoLink___1RHl- {
  display: inline-block; }

.styles__profileNavText___mOkBS {
  color: #fff;
  font-size: 14px;
  display: none; }
  @media (max-width: 768px) {
    .styles__profileNavText___mOkBS {
      display: block;
      font-size: 13px; } }

.styles__linksContainer___sKjzR {
  display: flex;
  align-items: center; }

.styles__cta___2oPe6 {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  height: 42px;
  cursor: pointer;
  padding: 0 16px 0 16px;
  font-weight: bold;
  display: inline-block;
  line-height: 3; }
  .styles__cta___2oPe6:hover {
    background-color: rgba(255, 255, 255, 0.7);
    text-decoration: none; }

.styles__ctaCopy___2qzA8 {
  color: white; }

.styles__separator___2hiuM {
  margin: 0 26px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  display: inline-block;
  background-color: #7f8287;
  margin: auto 15px; }

.styles__appButtonWrapper___AtRcp {
  display: inline-block;
  margin-left: 16px; }

.ButtonBase__root___2GNnu {
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); }

.ButtonBase__root___2GNnu:before {
  opacity: 0.08; }

.ButtonBase__root___2GNnu:focus {
  outline: 0; }

.styles__spinner___3g9Fd {
  position: relative;
  margin: 0 auto;
  background: transparent; }
  .styles__spinner___3g9Fd.styles__gray___1-_e4 div {
    background-color: #5F6369; }
  .styles__spinner___3g9Fd.styles__light-gray___bcQae div {
    background-color: #8f9196; }
  .styles__spinner___3g9Fd.styles__white___2RSo- div {
    background-color: #FFF; }
  .styles__spinner___3g9Fd div {
    height: 28%;
    border-radius: 25%;
    width: 8%;
    animation: styles__spinner___3g9Fd 1.2s infinite;
    animation-fill-mode: backwards;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform-origin: 50% 180%;
    margin-left: -5%; }

.styles__spinner___3g9Fd div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1.1s; }

.styles__spinner___3g9Fd div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -1.0s; }

.styles__spinner___3g9Fd div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.9s; }

.styles__spinner___3g9Fd div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.8s; }

.styles__spinner___3g9Fd div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.7s; }

.styles__spinner___3g9Fd div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.6s; }

.styles__spinner___3g9Fd div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.5s; }

.styles__spinner___3g9Fd div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.4s; }

.styles__spinner___3g9Fd div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.3s; }

.styles__spinner___3g9Fd div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.2s; }

.styles__spinner___3g9Fd div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: -0.1s; }

@keyframes styles__spinner___3g9Fd {
  0%, 100% {
    opacity: 0; }
  50% {
    opacity: 1; } }

.styles__centered___3OTMo {
  display: flex;
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center; }

.styles__wrapper___1oFey {
  display: inline-block;
  position: relative;
  height: 100%; }

.IconBadge__svgHeightWidth___1DpGG {
  height: 100%;
  width: 100%; }

.styles__link___1ZZct {
  display: block; }
  .styles__link___1ZZct:focus, .styles__link___1ZZct:hover {
    text-decoration: none; }
  .styles__link___1ZZct:hover {
    background-color: rgba(235, 235, 236, 0.3); }
  .styles__link___1ZZct:active {
    background-color: rgba(235, 235, 236, 0.5); }

.styles__distributionLink___3pzy_ {
  display: flex;
  width: 100%;
  padding: 8px 0 8px 0; }

.styles__distributionLinkContainer___1CaM3 {
  display: block;
  width: 100%; }
  .styles__distributionLinkContainer___1CaM3:hover {
    text-decoration: none; }

.styles__alignFlyoutBottom___yvUGg {
  align-self: flex-end; }

.styles__alignFlyoutTop___29Yhv {
  align-self: flex-start; }

.styles__caret___VOJoF {
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom-width: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: #c9cbcd;
  margin-left: 4px;
  display: inline-block; }

.LinkStyles__link___qLgH7 {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  font-size: 18px; }
  .LinkStyles__link___qLgH7 .LinkStyles__caret___JW3Zu {
    border-top-color: rgba(255, 255, 255, 0.8); }
    .LinkStyles__link___qLgH7 .LinkStyles__caret___JW3Zu:hover {
      border-top-color: #fff; }
  @media (max-width: 968px) {
    .LinkStyles__link___qLgH7 {
      font-size: 16px; } }
  .LinkStyles__link___qLgH7:hover, .LinkStyles__link___qLgH7:active, .LinkStyles__link___qLgH7:focus {
    text-decoration: none; }
    .LinkStyles__link___qLgH7:hover .LinkStyles__caret___JW3Zu, .LinkStyles__link___qLgH7:active .LinkStyles__caret___JW3Zu, .LinkStyles__link___qLgH7:focus .LinkStyles__caret___JW3Zu {
      border-top-color: #ffffff; }
  .LinkStyles__link___qLgH7:active:focus, .LinkStyles__link___qLgH7:focus, .LinkStyles__link___qLgH7:active {
    color: #50e3c2; }
  .LinkStyles__link___qLgH7:hover {
    color: #ffffff; }

.LinkStyles__settings___1o-3k {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.25;
  font-weight: bold; }
  .LinkStyles__settings___1o-3k:hover {
    color: #fff; }
    .LinkStyles__settings___1o-3k:hover .LinkStyles__caret___JW3Zu {
      border-top-color: #fff; }

.LinkStyles__linkActive___2dcCT {
  color: #50e3c2 !important; }

.styles__wrapper___2L1hx {
  display: flex;
  flex-direction: row;
  align-items: center; }

.styles__buttonLink___1DeE3 {
  width: 180px;
  height: 40px;
  border-radius: 25px;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-right: 26px;
  font-weight: bold; }
  @media (max-width: 968px) {
    .styles__buttonLink___1DeE3 {
      width: 130px; } }
  .styles__buttonLink___1DeE3:active, .styles__buttonLink___1DeE3:hover, .styles__buttonLink___1DeE3:focus {
    color: #fff;
    text-decoration: none; }
  .styles__buttonLink___1DeE3:hover {
    background-color: rgba(255, 255, 255, 0.05); }
  .styles__buttonLink___1DeE3:active, .styles__buttonLink___1DeE3:active:focus {
    background-color: rgba(255, 255, 255, 0.2); }
  .styles__buttonLink___1DeE3:active, .styles__buttonLink___1DeE3:focus, .styles__buttonLink___1DeE3:active:focus {
    color: #fff; }

.styles__link___1cFVl {
  font-size: 16px; }

.styles__wrapper___x1ol_ {
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0; }

.styles__lineContainer___27zYb {
  height: 30px;
  width: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0; }

.styles__line___11STI {
  height: 3px;
  background-color: rgba(255, 255, 255, 0.8);
  display: block;
  width: 30px;
  border-radius: 2px; }

.styles__container___1vNez {
  background-color: #292F36;
  height: 100vh;
  padding: 26px;
  padding-top: 22px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 1px;
  overflow: hidden;
  z-index: 11;
  height: 100vh; }

.styles__contentWrapper___2WXlv {
  display: flex;
  flex-direction: column;
  height: 80%; }

.styles__topSection___2tZBB {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.styles__iconLink___2vOvH {
  position: relative;
  top: -1px; }

.styles__closeButton___U9_8S {
  width: 34px;
  height: 34px;
  position: relative;
  top: -1px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-content: center; }

.styles__closeLine___27c_2 {
  background: #7f8287;
  display: block;
  width: 24px;
  height: 3px;
  position: absolute; }

.styles__closeLineOne___3j8ep {
  transform: rotate(45deg); }

.styles__closeLineTwo___2viHS {
  transform: rotate(-45deg); }

.styles__content___b8Pbm {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.styles__linkList___2hFNV {
  margin: 14px 28px;
  padding: 0; }

.styles__linkListItem___ThyAx {
  padding: 14px 0; }

.styles__link___1xOTc {
  font-size: 18px !important; }

.styles__linkAccount___vYcXq {
  font-size: 16px; }

.styles__rule___1s_qT {
  margin: 10px 0;
  border: 1px solid #7f8287;
  width: 100%; }

.styles__accountLinksWrapper___1HIep {
  display: flex;
  flex: 1;
  flex-direction: column; }

.styles__buttonContainer___6-HXN {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: flex-end; }

.styles__signUpButton___2JIXI {
  width: 180px;
  height: 40px;
  border-radius: 25px;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-bottom: 24px; }

.styles__loginLink___vBOKc {
  color: #c9cbcd;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold; }

.styles__navLinksList___3Zswm {
  display: flex;
  margin: 0;
  list-style: none; }

.styles__linkItem___2CckS {
  margin-right: 26px;
  position: relative; }
  .styles__linkItem___2CckS .withSubLinks {
    cursor: pointer;
    outline: none; }
    .styles__linkItem___2CckS .withSubLinks:focus {
      color: #ffffff !important; }

.styles__subLinks___19IJ6 {
  z-index: 1;
  position: absolute;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 375px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.17);
  top: 60px; }

.styles__subLink___OBn81 {
  display: block;
  width: 100%;
  color: #292f36;
  font-size: 1.4rem;
  font-weight: bold;
  height: 100px; }
  .styles__subLink___OBn81 svg {
    width: 25px;
    height: auto; }
  .styles__subLink___OBn81:hover, .styles__subLink___OBn81:active, .styles__subLink___OBn81:focus {
    text-decoration: none;
    background: #8940FA;
    color: white; }
    .styles__subLink___OBn81:hover svg, .styles__subLink___OBn81:active svg, .styles__subLink___OBn81:focus svg {
      fill: white; }
      .styles__subLink___OBn81:hover svg path, .styles__subLink___OBn81:active svg path, .styles__subLink___OBn81:focus svg path {
        fill: white;
        strokeWidth: 0px; }

.styles__subLinkContainer___-k9M2 {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 76px 8px 26px;
  height: 100%; }

.styles__subLinkSvgContainer___2b0Ow {
  width: 40px;
  margin-right: 30px; }

.styles__subLinkDescription___YQvJ3 {
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
  padding-top: 7px; }

.styles__wrapper___3vMX8 {
  height: 96px;
  background-color: #292f36; }
  @media (max-width: 880px) {
    .styles__wrapper___3vMX8 {
      height: 76px; } }

.styles__sticky___1tBLw {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 2; }

.styles__shadow___1Cust {
  box-shadow: 0px -2px 6px #000; }

.styles__contentBackground___Zc5y_ {
  background-color: #292f36;
  height: 96px;
  width: 100%;
  margin: auto; }
  @media (max-width: 880px) {
    .styles__contentBackground___Zc5y_ {
      height: 76px; } }

.styles__contentBackgroundFixed___6wwjZ {
  position: fixed;
  z-index: 10;
  right: 0;
  left: 0; }

.styles__contentWrapper___3Yfih {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  height: 96px;
  width: 100%;
  max-width: 1400px;
  margin: auto; }
  @media (max-width: 880px) {
    .styles__contentWrapper___3Yfih {
      height: 76px; } }
  @media (max-width: 769px) {
    .styles__contentWrapper___3Yfih {
      z-index: 3; } }

.styles__isHidingPrimaryNav___3dXvM {
  display: none; }

.styles__mainNav___1LdyY {
  flex: 1; }

.styles__desktopNav___79C5K {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 880px) {
    .styles__desktopNav___79C5K {
      display: none; } }

.styles__mobileNav___3nLr2 {
  display: none; }
  @media (max-width: 880px) {
    .styles__mobileNav___3nLr2 {
      display: flex;
      justify-content: flex-end; } }

.styles__leftContent___3qcV_ {
  display: flex;
  flex-direction: row;
  align-items: center; }

.styles__globalLinks___3XPgt {
  background-color: #4E40A9;
  overflow: hidden; }
  .styles__globalLinks___3XPgt li > a {
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none; }
    .styles__globalLinks___3XPgt li > a:hover, .styles__globalLinks___3XPgt li > a:focus {
      text-decoration: none; }

.styles__nav___1JPXJ {
  height: 62px;
  line-height: 62px; }
  .styles__nav___1JPXJ ul {
    margin-bottom: 0; }
  .styles__nav___1JPXJ .btn-nav {
    margin-top: -11px; }
  @media (min-width: 992px) {
    .styles__nav___1JPXJ {
      height: 85px;
      line-height: 85px; }
      .styles__nav___1JPXJ li {
        margin-left: 40px; }
      .styles__nav___1JPXJ .btn-nav {
        margin-top: -7px; } }

.styles__navLogo___29_7A {
  padding-left: 0; }
  .styles__navLogo___29_7A img {
    width: 133px;
    height: 35px; }
  @media (min-width: 992px) {
    .styles__navLogo___29_7A img {
      width: 177px;
      height: 46px; } }

.styles__navLinks___1SXxD {
  padding-right: 0; }

.styles__appChildrenContainer___1gAYY {
  clear: both;
  min-height: 300px;
  position: relative; }

.containSite .appChildrenContainer {
  z-index: 0;
  clear: both;
  min-height: 300px;
  background: #292F36; }

.styles__loginPopover___1yVeZ {
  min-width: 378px; }

.styles__ArrowLink___TFzlr {
  color: #2EFFD9;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 2rem; }
  @media (max-width: 600px) {
    .styles__ArrowLink___TFzlr {
      font-size: 1.6rem;
      line-height: 1.8rem; } }
  .styles__ArrowLink___TFzlr:hover, .styles__ArrowLink___TFzlr:focus, .styles__ArrowLink___TFzlr:active {
    text-decoration: none; }
  .styles__ArrowLink___TFzlr:hover {
    color: #fff; }
    .styles__ArrowLink___TFzlr:hover .styles__arrow___1gr3V {
      left: 1px; }
  .styles__ArrowLink___TFzlr:focus {
    color: #fff; }
  .styles__ArrowLink___TFzlr:active {
    color: #fff; }
  .styles__ArrowLink___TFzlr .styles__arrow___1gr3V {
    position: relative;
    left: -2px;
    top: 2px;
    transition: left 100ms; }

.styles__FeatureItem___2tXR3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  align-items: center;
  margin: 12px 0;
  text-align: center; }
  @media (max-width: 700px) {
    .styles__FeatureItem___2tXR3 {
      margin: 50px 0; } }
  @media (max-width: 600px) {
    .styles__FeatureItem___2tXR3 {
      margin: 100px 0;
      grid-gap: 0;
      grid-template-columns: auto;
      grid-template-rows: auto auto; }
      .styles__FeatureItem___2tXR3:last-of-type {
        margin-bottom: 32px; }
      .styles__FeatureItem___2tXR3:first-of-type {
        margin-top: 0; } }

.styles__AlignImageRight___1zzwo {
  grid-column-start: 2; }
  @media (max-width: 600px) {
    .styles__AlignImageRight___1zzwo {
      grid-column-start: 1;
      grid-row-start: 1; } }

.styles__AlignTextLeft___3sJlj {
  grid-column-start: 1;
  grid-row-start: 1; }
  @media (max-width: 600px) {
    .styles__AlignTextLeft___3sJlj {
      grid-column-start: 1;
      grid-row-start: 2; } }

.styles__FeatureItemHeader___2Aofj {
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 2.6rem;
  margin-bottom: 20px; }
  @media (max-width: 600px) {
    .styles__FeatureItemHeader___2Aofj {
      font-size: 1.8rem;
      line-height: 2rem;
      margin-bottom: 16px; } }

.styles__FeatureItemImage___17V2J, .styles__FeatureItemContentContainer___Vu88d {
  flex: 1;
  margin-bottom: 20px;
  flex: 0 0 50%; }

.styles__FeatureItemSvgWrapper___ErjPL {
  margin: auto; }

.styles__FeatureItemContentContainer___Vu88d {
  text-align: left; }
  @media (max-width: 600px) {
    .styles__FeatureItemContentContainer___Vu88d {
      text-align: center; } }

.styles__FeatureItemText___ghGDY {
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-bottom: 20px; }
  @media (max-width: 600px) {
    .styles__FeatureItemText___ghGDY {
      margin-bottom: 14px; } }

.styles__appOfTheDay___1L1WG {
  grid-column-start: 1;
  grid-row-start: 1;
  align-self: center; }
  @media (max-width: 600px) {
    .styles__appOfTheDay___1L1WG {
      grid-column-start: 1;
      grid-row-start: 3; } }

.styles__googlePlay___2ZXYF {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 1;
  align-self: center; }
  @media (max-width: 600px) {
    .styles__googlePlay___2ZXYF {
      grid-column-start: 1;
      grid-row-start: 1; } }

.styles__appStoreRating___3tg-y {
  grid-column-start: 4;
  grid-row-start: 1;
  align-self: center; }
  @media (max-width: 600px) {
    .styles__appStoreRating___3tg-y {
      grid-column-start: 1;
      grid-row-start: 2; } }

.styles__fastCompany___1UFWq {
  grid-column-start: 1;
  grid-row-start: 3;
  align-self: start; }
  @media (max-width: 880px) {
    .styles__fastCompany___1UFWq {
      grid-column-start: 1;
      grid-column-end: 3; } }
  @media (max-width: 600px) {
    .styles__fastCompany___1UFWq {
      grid-column-start: 1;
      grid-row-start: 5;
      align-self: center; } }

.styles__adAgeContainer___7d3MB {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 3;
  align-self: start; }
  @media (max-width: 880px) {
    .styles__adAgeContainer___7d3MB {
      grid-column-start: 1;
      grid-column-end: 5;
      grid-row-start: 2;
      align-self: center;
      margin: 32px 0; } }
  @media (max-width: 600px) {
    .styles__adAgeContainer___7d3MB {
      grid-column-start: 1;
      grid-row-start: 4;
      margin: 0; } }

.styles__googleDesign___19tzq {
  grid-column-start: 4;
  grid-row-start: 3;
  align-self: start; }
  @media (max-width: 880px) {
    .styles__googleDesign___19tzq {
      grid-column-start: 3;
      grid-column-end: 5; } }
  @media (max-width: 600px) {
    .styles__googleDesign___19tzq {
      grid-column-start: 1;
      grid-row-start: 6;
      align-self: center; } }

.styles__pressSectionContent___S4u43 {
  max-width: 1056px;
  margin: auto;
  text-align: center;
  display: grid;
  grid-template-columns: 258px auto auto 258px;
  grid-template-rows: 1fr 50px 1fr; }
  @media (max-width: 880px) {
    .styles__pressSectionContent___S4u43 {
      grid-template-columns: 154px auto auto 154px;
      grid-template-rows: 1fr auto auto; } }
  @media (max-width: 600px) {
    .styles__pressSectionContent___S4u43 {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(6, auto);
      grid-row-gap: 48px; } }

.styles__pressQuote___1hoEj {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 2rem; }

.styles__pressBadgeWrapper___2eVPW {
  width: 136px;
  margin: auto; }

.styles__pressStore___1kd1_ {
  font-size: 1.6rem;
  text-transform: uppercase; }

.styles__pressAwardName___2zrte {
  font-size: 1.6rem;
  text-transform: uppercase; }

.styles__adAgeTitle___2rmez {
  font-weight: bold;
  font-size: 3rem; }
  @media (max-width: 880px) {
    .styles__adAgeTitle___2rmez {
      font-size: 2.8rem; } }
  @media (max-width: 600px) {
    .styles__adAgeTitle___2rmez {
      font-size: 2.4rem; } }

.styles__pressYear___1h3Ay {
  font-weight: bold; }

.styles__appRatingContainer___3QcGA {
  max-width: 176px;
  width: 100%;
  margin: auto; }

.styles__starsWrapper___2kmuV {
  max-width: 128px;
  width: 100%;
  margin: auto;
  margin-bottom: 4px; }

.styles__pressImage___2MCa6 {
  margin-top: 6px; }

.PlatformBadge__platformBadge___MMdwY {
  width: 140px;
  border: rgba(255, 255, 255, 0.31) 2px solid;
  border-radius: 9px; }

.PlatformBadge__platformBadge___MMdwY:hover {
  background-color: rgba(255, 255, 255, 0.3); }

.PlatformBadge__platformBadgeContent___1QAtA {
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.PlatformBadge__platformBadgeIconContainer___3Rif4 {
  flex: 0 0 18px;
  max-width: 18px; }

.PlatformBadge__platformBadgeLabel___1LUYj {
  font-size: 1.6rem;
  font-weight: normal;
  font-style: normal;
  color: #ffffff; }

.PlatformBadge__platformBadgeLink___3bAqK:hover, .PlatformBadge__platformBadgeLink___3bAqK:focus {
  text-decoration: none; }

.styles__appButtonContainer___3cAn9 {
  display: flex;
  justify-content: center; }

.styles__desktopAppButtonContainer___3Nxj6 {
  width: 300px; }
  @media (max-width: 768px) {
    .styles__desktopAppButtonContainer___3Nxj6 {
      width: 100%; } }

.styles__desktopAppStoreOnly___3Ar9J {
  display: none; }
  @media (max-width: 768px) {
    .styles__desktopAppStoreOnly___3Ar9J {
      display: flex;
      justify-content: center; } }

.styles__desktopAllPlatform___-y2HQ {
  width: 100%;
  display: flex;
  justify-content: space-between; }
  @media (max-width: 768px) {
    .styles__desktopAllPlatform___-y2HQ {
      display: none; } }

.styles__placeholderButton___3fNYh {
  padding: 0;
  width: 100%; }

.styles__placeholderImage___3wKQs {
  width: 100%; }

.styles__videoWrapper___XVO-r {
  width: 100%; }

.styles__button___2oNPe {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #DFE0E1;
  border-radius: 24px;
  padding: 0 14px;
  font-weight: bold;
  font-size: 1.6rem;
  position: relative; }
  .styles__button___2oNPe:hover {
    text-decoration: none; }
  .styles__button___2oNPe:focus {
    text-decoration: none; }
  .styles__button___2oNPe:focus:before {
    content: '';
    border: 1px dotted #fff;
    width: 98%;
    position: absolute;
    height: 90%;
    border-radius: 24px; }

.styles__disabled___I1Lr- {
  pointer-events: none; }

.styles__purple___2u-0h {
  color: #fff;
  background-color: #8940FA;
  border-color: #8940FA; }
  .styles__purple___2u-0h:hover {
    color: #fff;
    background-color: #6732B9;
    border-color: #6732B9; }
  .styles__purple___2u-0h:active, .styles__purple___2u-0h:active:focus, .styles__purple___2u-0h:active:hover:focus {
    color: #c59ffc;
    background-color: #6732B9;
    border-color: #6732B9; }
  .styles__purple___2u-0h:focus {
    color: #fff;
    background-color: #8940FA;
    border-color: #8940FA; }
  .styles__purple___2u-0h.styles__disabled___I1Lr- {
    border-color: #c59ffc;
    background-color: #c59ffc; }

.styles__white___3jQwS {
  color: #8940FA;
  background-color: #fff;
  border-color: #C9CBCD; }
  .styles__white___3jQwS:hover {
    color: #8940FA;
    background-color: #faf6fe;
    border-color: #C9CBCD; }
  .styles__white___3jQwS:active, .styles__white___3jQwS:active:focus, .styles__white___3jQwS:active:hover:focus {
    color: #8940FA;
    background-color: #e8d9fe;
    border-color: #C9CBCD; }
  .styles__white___3jQwS:focus {
    color: #8940FA;
    background-color: #fff;
    border-color: #C9CBCD; }
  .styles__white___3jQwS:focus::before {
    border: 1px dotted #C9CBCD; }
  .styles__white___3jQwS.styles__disabled___I1Lr- {
    color: #c59ffc;
    border-color: #e4e5e6; }

.styles__red___tvUC- {
  color: #fff;
  background-color: #E54751;
  border-color: #E54751; }
  .styles__red___tvUC-:hover {
    color: #fff;
    background-color: #D04049;
    border-color: #D04049; }
  .styles__red___tvUC-:active, .styles__red___tvUC-:active:focus, .styles__red___tvUC-:active:hover:focus {
    color: #fff;
    background-color: #B73840;
    border-color: #B73840; }
  .styles__red___tvUC-:focus {
    color: #fff;
    background-color: #E54751;
    border-color: #E54751; }
  .styles__red___tvUC-.styles__disabled___I1Lr- {
    border-color: #f2a2a8 !important;
    background-color: #f2a2a8 !important; }

.styles__green___5ZXwX {
  color: #292F36;
  background-color: #1CEE4E;
  border-color: #1CEE4E; }
  .styles__green___5ZXwX:hover {
    color: #292F36;
    background-color: #14D843;
    border-color: #14D843; }
  .styles__green___5ZXwX:active, .styles__green___5ZXwX:active:focus, .styles__green___5ZXwX:active:hover:focus {
    color: #292F36;
    background-color: #08BF33;
    border-color: #08BF33; }
  .styles__green___5ZXwX:focus {
    color: #292F36;
    background-color: #1CEE4E;
    border-color: #1CEE4E; }
  .styles__green___5ZXwX.styles__disabled___I1Lr- {
    border-color: #8df6a6;
    background-color: #8df6a6; }

.styles__aqua___3jkM8 {
  color: #292F36;
  background-color: #2EFFD9;
  border-color: #2EFFD9; }
  .styles__aqua___3jkM8:hover {
    color: #292F36;
    background-color: #24E8C4;
    border-color: #24E8C4; }
  .styles__aqua___3jkM8:active, .styles__aqua___3jkM8:active:focus, .styles__aqua___3jkM8:active:hover:focus {
    color: #292F36;
    background-color: #24E8C4;
    border-color: #24E8C4; }
  .styles__aqua___3jkM8:focus {
    color: #292F36;
    background-color: #2EFFD9;
    border-color: #2EFFD9; }
  .styles__aqua___3jkM8.styles__disabled___I1Lr- {
    border-color: #8df6a6;
    background-color: #8df6a6; }

.styles__black___w-3up {
  color: #ffffff;
  background-color: #292f36;
  border-color: #292f36; }
  .styles__black___w-3up:hover {
    color: #ffffff;
    background-color: #41464D;
    border-color: #41464D; }
  .styles__black___w-3up:active, .styles__black___w-3up:active:focus, .styles__black___w-3up:active:hover:focus {
    color: #ffffff;
    background-color: #5F6369;
    border-color: #5F6369; }
  .styles__black___w-3up:focus {
    color: #ffffff;
    background-color: #292f36;
    border-color: #292f36; }
  .styles__black___w-3up.styles__disabled___I1Lr- {
    border-color: rgba(95, 99, 105, 0.5);
    background-color: rgba(95, 99, 105, 0.5); }

.styles__homepage____ruOk h1, .styles__homepage____ruOk h2, .styles__homepage____ruOk p {
  color: #fff; }

.styles__homepage____ruOk h1, .styles__homepage____ruOk h2 {
  font-weight: bold; }

.styles__h1___30Wf0 {
  font-size: 5.6rem;
  line-height: 6.4rem;
  margin-bottom: 26px; }
  @media (max-width: 1200px) {
    .styles__h1___30Wf0 {
      font-size: 5rem;
      line-height: 5.8rem;
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .styles__h1___30Wf0 {
      font-size: 4.6rem;
      line-height: 5rem;
      margin-bottom: 16px; } }
  @media (max-width: 768px) {
    .styles__h1___30Wf0 {
      font-size: 3.4rem;
      line-height: 4rem;
      margin-bottom: 20px; } }

.styles__heroSubheader___313m2 {
  font-size: 2.2rem;
  line-height: 2.6rem;
  margin-bottom: 30px; }
  @media (max-width: 1200px) {
    .styles__heroSubheader___313m2 {
      font-size: 2rem;
      line-height: 2.4rem;
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .styles__heroSubheader___313m2 {
      font-size: 2rem;
      line-height: 2.6rem;
      margin-bottom: 24px; } }
  @media (max-width: 600px) {
    .styles__heroSubheader___313m2 {
      margin-bottom: 30px; } }

.styles__heroSection___2VRW4 {
  background: #8940fa;
  padding: 70px;
  padding-bottom: 0; }
  @media (max-width: 1024px) {
    .styles__heroSection___2VRW4 {
      padding: 36px; } }
  @media (max-width: 600px) {
    .styles__heroSection___2VRW4 {
      padding: 36px 14px; } }

.styles__heroContent___1QAGB {
  display: flex;
  width: 100%;
  max-width: 1056px;
  margin: auto; }
  @media (max-width: 1024px) {
    .styles__heroContent___1QAGB {
      align-items: center; } }
  @media (max-width: 768px) {
    .styles__heroContent___1QAGB {
      flex-direction: column; } }

.styles__heroSectionLeftContent___jAmqV, .styles__heroSectionRightContent___2EKyf {
  width: 50%; }

@media (max-width: 768px) {
  .styles__heroSectionLeftContent___jAmqV {
    margin: auto;
    text-align: center;
    width: 336px; } }

@media (max-width: 600px) {
  .styles__heroSectionLeftContent___jAmqV {
    width: 100%; } }

@media (max-width: 768px) {
  .styles__heroSectionRightContent___2EKyf {
    display: none; } }

.styles__heroImage___24CZV {
  width: 100%; }

.styles__heroCtaWrapper___PE_Y2 {
  width: 300px; }
  @media (max-width: 768px) {
    .styles__heroCtaWrapper___PE_Y2 {
      width: 100%; } }

.styles__heroCta___11jG7 {
  margin: 0;
  margin-bottom: 30px; }
  @media (max-width: 1200px) {
    .styles__heroCta___11jG7 {
      margin-bottom: 24px; } }
  @media (max-width: 768px) {
    .styles__heroCta___11jG7 {
      display: none; } }

.styles__appLinksContainer___A0xza {
  display: flex;
  justify-content: space-between;
  width: 300px; }
  @media (max-width: 1024px) {
    .styles__appLinksContainer___A0xza {
      width: 100%; } }

.styles__featuresSection___39oif {
  background: #292F36;
  width: 100%;
  max-width: 1056px;
  padding: 70px;
  margin: auto; }
  @media (max-width: 600px) {
    .styles__featuresSection___39oif {
      padding: 36px; } }

.styles__featuresSectionHeader___39jWm {
  text-align: center;
  font-size: 3rem;
  line-height: 4rem;
  margin: auto;
  margin-bottom: 50px; }
  @media (max-width: 600px) {
    .styles__featuresSectionHeader___39jWm {
      font-size: 2.4rem;
      line-height: 3rem;
      letter-spacing: -1px;
      margin-bottom: 24px; } }

.styles__featuresSectionHeaderHighlight___D2q_R {
  color: #e569ff; }

.styles__howToSection___21uUz {
  background: #8940fa;
  padding: 70px; }
  @media (max-width: 600px) {
    .styles__howToSection___21uUz {
      padding: 40px 16px; } }

.styles__howToContentContainer___3xp2s {
  display: flex;
  width: 100%;
  max-width: 1056px;
  margin: auto; }
  @media (max-width: 1024px) {
    .styles__howToContentContainer___3xp2s {
      flex-direction: column; } }

.styles__howToVideoWrapper___3mIW2 {
  flex: 1;
  margin-right: 50px; }
  @media (max-width: 1024px) {
    .styles__howToVideoWrapper___3mIW2 {
      margin: 0;
      margin-bottom: 50px; } }
  @media (max-width: 1024px) {
    .styles__howToVideoWrapper___3mIW2 {
      margin-bottom: 24px; } }

.styles__howToText___1YVTq {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  @media (max-width: 1024px) {
    .styles__howToText___1YVTq {
      flex: 0;
      flex-direction: row;
      justify-content: space-between;
      align-items: center; } }
  @media (max-width: 600px) {
    .styles__howToText___1YVTq {
      flex-direction: column; } }

.styles__howToHeaderMobile___3eyDP, .styles__howToHeaderDesktop___34pgr {
  margin: 0; }

.styles__howToHeaderMobile___3eyDP {
  text-align: center;
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 50px; }
  @media (max-width: 600px) {
    .styles__howToHeaderMobile___3eyDP {
      margin-bottom: 24px;
      font-size: 2.4rem;
      letter-spacing: -1; } }

.styles__howToHeaderDesktop___34pgr {
  font-size: 3rem;
  line-height: 3.6rem;
  margin-top: 0;
  margin-bottom: 24px; }

.styles__howToLink___2_bAZ {
  font-weight: bold;
  color: #2EFFD9;
  text-decoration: none; }
  .styles__howToLink___2_bAZ:hover, .styles__howToLink___2_bAZ:focus, .styles__howToLink___2_bAZ:active {
    text-decoration: none; }
  .styles__howToLink___2_bAZ:hover {
    color: #fff; }
  .styles__howToLink___2_bAZ:focus {
    color: #fff; }
  .styles__howToLink___2_bAZ:active {
    color: #fff; }

.styles__howToList___1CYq1 {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.8rem;
  padding-left: 20px; }
  @media (max-width: 1024px) {
    .styles__howToList___1CYq1 {
      margin-right: 50px; } }
  @media (max-width: 600px) {
    .styles__howToList___1CYq1 {
      margin: 0 auto 20px 0; } }

.styles__howToCta___2T2tW {
  max-width: 220px; }
  @media (max-width: 1024px) {
    .styles__howToCta___2T2tW {
      margin: 0;
      margin-left: auto; } }
  @media (max-width: 600px) {
    .styles__howToCta___2T2tW {
      margin: auto; } }

.styles__showSection___3OZ3a {
  width: 100%;
  margin: auto;
  padding: 70px 0; }
  @media (max-width: 600px) {
    .styles__showSection___3OZ3a {
      padding: 40px 0; } }

.styles__showSectionHeader___1uGcG, .styles__showSectionCtaHeader___2PJ6f {
  font-size: 3rem;
  line-height: 3.6rem;
  text-align: center;
  width: 756px;
  margin: auto;
  margin-bottom: 50px; }
  @media (max-width: 1024px) {
    .styles__showSectionHeader___1uGcG, .styles__showSectionCtaHeader___2PJ6f {
      width: 614px; } }
  @media (max-width: 600px) {
    .styles__showSectionHeader___1uGcG, .styles__showSectionCtaHeader___2PJ6f {
      margin-bottom: 40px;
      width: 100%;
      font-size: 2.4rem;
      line-height: 3.2rem; } }

.styles__showFeaturedWrapper___1MCVS {
  background: #171A1E;
  padding: 40px 16px;
  margin-bottom: 40px; }

.styles__showFeaturedContainer___ybyoF {
  max-width: 1056px;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(6, 1fr);
  justify-content: center;
  margin: auto; }
  @media (max-width: 768px) {
    .styles__showFeaturedContainer___ybyoF {
      grid-template-columns: repeat(3, 160px);
      grid-template-rows: repeat(2, 160px); } }
  @media (max-width: 600px) {
    .styles__showFeaturedContainer___ybyoF {
      grid-gap: 20px;
      grid-template-columns: repeat(2, 136px);
      grid-template-rows: repeat(3, 136px); } }

.styles__showSectionHeading___3SjsY, .styles__showSectionCta___3em_1 {
  text-align: center;
  max-width: 1056px;
  margin: auto; }
  @media (max-width: 600px) {
    .styles__showSectionHeading___3SjsY, .styles__showSectionCta___3em_1 {
      padding: 0 20px; } }

.styles__showFeaturedCover___1a099 {
  width: 100%;
  height: 100%; }

.styles__showSectionCtaLink___19zw5 {
  display: block;
  max-width: 220px;
  margin: auto;
  margin-bottom: 24px; }
  @media (max-width: 600px) {
    .styles__showSectionCtaLink___19zw5 {
      margin-bottom: 20px; } }

.styles__showSectionText___2HJ1M {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 6px; }
  @media (max-width: 600px) {
    .styles__showSectionText___2HJ1M {
      font-size: 1.6rem;
      line-height: 2.4rem; } }

.styles__pressSection___23APg {
  background: #fff;
  padding: 50px 24px; }
  .styles__pressSection___23APg p {
    color: #292F36; }

.styles__purpleLink___2DlQ9 {
  color: #8940FA; }
  .styles__purpleLink___2DlQ9:active, .styles__purpleLink___2DlQ9:focus, .styles__purpleLink___2DlQ9:active:focus {
    color: #6D33C8; }

.styles__cyanLink___2mxm1 {
  color: #2EFFD9; }
  .styles__cyanLink___2mxm1:active, .styles__cyanLink___2mxm1:focus, .styles__cyanLink___2mxm1:active:focus {
    color: #24E8C4; }

.styles__cyanButton___8lyGT {
  background: #2EFFD9; }
  .styles__cyanButton___8lyGT:hover {
    background: #24E8C4; }
  .styles__cyanButton___8lyGT:active, .styles__cyanButton___8lyGT:focus, .styles__cyanButton___8lyGT:active:focus {
    background: #22DFBD; }

.styles__ampPage___2vnKE {
  overflow: hidden;
  background: #8940FA; }

.styles__header___1IKI1 {
  min-height: 208px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(158deg, transparent 140px, rgba(41, 47, 54, 0.16) 140px), linear-gradient(36deg, transparent 260px, rgba(41, 47, 54, 0.23) 260px); }
  .styles__header___1IKI1 h1, .styles__header___1IKI1 h2 {
    color: white;
    margin: 0; }
  .styles__header___1IKI1 h2 {
    font-size: 16px;
    font-weight: normal;
    padding-top: 12px; }

.styles__aligned___2-zOB {
  width: 100%;
  max-width: 863px;
  margin: 0 auto;
  padding: 36px; }

.styles__content___XbSF4 {
  padding: 40px;
  width: 100%;
  position: relative; }
  .styles__content___XbSF4 h2 {
    margin-top: 10px;
    margin-bottom: 26px;
    font-weight: bold;
    letter-spacing: -1.43px; }
    @media (min-width: 992px) {
      .styles__content___XbSF4 h2 {
        font-size: 32px;
        line-height: 32px;
        letter-spacing: -1.76px; } }
  .styles__content___XbSF4 h3 {
    margin: 0;
    font-size: 18px; }
  .styles__content___XbSF4 p, .styles__content___XbSF4 ul {
    font-size: 18px;
    padding-bottom: 18px; }

.styles__white___1XtQs {
  background: white; }
  .styles__white___1XtQs h2, .styles__white___1XtQs h3, .styles__white___1XtQs p {
    color: #292F36; }

.styles__gray___3U374 {
  background: #F8F8F8; }
  .styles__gray___3U374 h2, .styles__gray___3U374 h3, .styles__gray___3U374 p {
    color: #292F36; }

.styles__blue___2NqvM {
  background: #428EFF; }
  .styles__blue___2NqvM h2, .styles__blue___2NqvM h3, .styles__blue___2NqvM p {
    color: white; }

.styles__black___1w3fO {
  background: #292F36; }
  .styles__black___1w3fO h2, .styles__black___1w3fO h3, .styles__black___1w3fO p {
    color: white; }

.styles__alignedContent___a4AKC {
  width: 100%;
  max-width: 791px;
  margin: 0 auto;
  position: relative; }

.styles__unalignedContent___2kBVK {
  width: 100%;
  margin: 0 auto;
  position: relative; }

.styles__container___3DOCD {
  min-height: 320px;
  width: 100%;
  background: linear-gradient(158deg, rgba(41, 47, 54, 0.16) 240px, transparent 240px);
  display: flex;
  align-items: center; }

.styles__aligned___2H7Xo {
  width: 100%;
  max-width: 863px;
  margin: 0 auto;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .styles__aligned___2H7Xo h2 {
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    color: #FFFFFF;
    letter-spacing: -1.89px; }
    @media (min-width: 769px) {
      .styles__aligned___2H7Xo h2 {
        font-size: 42px; } }

.styles__linkButton___1tAAJ {
  border-radius: 25px;
  height: 50px;
  width: 240px;
  color: #292F36;
  box-shadow: 1px 2px 1px 0 #292F36;
  border-radius: 25px;
  margin: 22px 0;
  font-size: 18px;
  font-weight: bold; }

.styles__lastLine___3_1G_ {
  text-align: center;
  color: white; }
  .styles__lastLine___3_1G_ a {
    font-weight: bold; }

.styles__getStarted___32icA button {
  background: #8940FA; }
  .styles__getStarted___32icA button:hover {
    background: #6732B9; }
  .styles__getStarted___32icA button:active, .styles__getStarted___32icA button:focus, .styles__getStarted___32icA button:active:focus {
    background: #6D33C8; }
  .styles__getStarted___32icA button:disabled, .styles__getStarted___32icA button:disabled:hover {
    background: #DBC5FD; }

.styles__navList___1sp2X {
  padding-left: 16px; }
  .styles__navList___1sp2X a {
    font-size: 16px; }

.styles__podcastSubHeader___3Z1v4 h3 {
  font-size: 25px;
  margin-bottom: 36px;
  font-weight: normal; }

.styles__firstImage___2Sq1e {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  @media (min-width: 769px) {
    .styles__firstImage___2Sq1e {
      flex-direction: row;
      justify-content: flex-end; } }
  .styles__firstImage___2Sq1e img {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.65); }

.styles__skillsharePrompt___3-bWz {
  padding-top: 18px; }

.styles__imageCol___11jIz, .styles__imageColCreating___22S6H, .styles__imageColSharing___1GgvP {
  padding-bottom: 12px; }
  .styles__imageCol___11jIz img, .styles__imageColCreating___22S6H img, .styles__imageColSharing___1GgvP img {
    display: block;
    margin: 0 auto; }

.styles__imageCol___11jIz > img {
  max-width: 233px; }
  @media (min-width: 769px) {
    .styles__imageCol___11jIz > img {
      max-width: none; } }

.styles__imageColCreating___22S6H img, .styles__imageColSharing___1GgvP img {
  max-width: 350px; }
  @media (min-width: 769px) {
    .styles__imageColCreating___22S6H img, .styles__imageColSharing___1GgvP img {
      max-width: none; } }

@media (min-width: 769px) {
  .styles__imageColCreating___22S6H {
    float: left;
    max-width: 233px; } }

.styles__anchorSteps___2t24a {
  padding-left: 16px;
  margin-top: 18px; }

.styles__readyContainer___18OgA {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; }
  @media (min-width: 769px) {
    .styles__readyContainer___18OgA {
      flex-direction: row; } }
  .styles__readyContainer___18OgA p {
    font-size: 24px;
    padding-bottom: 12px;
    text-align: center; }
    @media (min-width: 769px) {
      .styles__readyContainer___18OgA p {
        padding-bottom: 0;
        text-align: left; } }

.styles__getStarted___32icA {
  display: none; }
  @media (min-width: 769px) {
    .styles__getStarted___32icA {
      display: block; } }
  .styles__getStarted___32icA button {
    box-shadow: 1px 2px 1px 0 #292F36;
    border-radius: 25px;
    width: 215px;
    height: 50px;
    color: white;
    font-weight: bold;
    font-size: 18px; }

.styles__mobileButtons___37KtG {
  display: flex;
  flex-direction: column; }
  @media (min-width: 769px) {
    .styles__mobileButtons___37KtG {
      display: none; } }
  .styles__mobileButtons___37KtG a {
    margin: 12px 0; }

.styles__featuredEmbed___HIxHu {
  margin-bottom: 18px;
  color: #fff; }

.styles__featuredEmbedFrame___2D9w2 {
  margin: 0 auto;
  width: 288px; }

.styles__featuredEmbedFrame___2D9w2 {
  height: 98px;
  overflow: hidden; }
  @media (min-width: 769px) {
    .styles__featuredEmbedFrame___2D9w2 {
      width: 769px;
      height: 161px; } }

.styles__wrapAround___3XIn3 {
  float: none;
  width: auto; }

@media (min-width: 769px) {
  .styles__verticalCenterImage___3tPmt {
    margin-top: 20px; } }

.styles__description___2j0b4 {
  font-weight: normal;
  font-size: 20px;
  color: #292F36; }

.styles__techCol___jc86d {
  text-align: left; }
  @media (min-width: 769px) {
    .styles__techCol___jc86d {
      text-align: right; } }

.styles__techRow___2Ohnt img, .styles__aboutRow___3dfrc img, .styles__infoRow___2osjc img {
  display: block;
  margin: 0 auto; }

.styles__infoRow___2osjc h3, .styles__techRow___2Ohnt h3 {
  margin-bottom: 18px; }

.styles__techRow___2Ohnt {
  margin: 48px -15px; }

.styles__polaroids___20i7Y {
  position: absolute;
  top: -119px;
  bottom: 0;
  right: -144px;
  display: none; }
  @media (min-width: 769px) {
    .styles__polaroids___20i7Y {
      display: block; } }

.styles__aboutStory___f8GRs {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0; }

.styles__aboutRow___3dfrc {
  padding: 200px 0 300px 0; }
  @media (min-width: 769px) {
    .styles__aboutRow___3dfrc {
      padding: 36px 0; } }

.styles__investors___3WKMV {
  font-size: 12px;
  color: white; }

.styles__smallPolaroidTop___-v5GD, .styles__smallPolaroidBottom___2gFPv {
  position: absolute;
  left: 50%;
  transform: translateX(-50%); }
  @media (min-width: 769px) {
    .styles__smallPolaroidTop___-v5GD, .styles__smallPolaroidBottom___2gFPv {
      display: none; } }

.styles__smallPolaroidTop___-v5GD {
  top: -42px; }

.styles__smallPolaroidBottom___2gFPv {
  bottom: 0; }

.styles__teamTitle___88H-1 {
  max-width: 791px;
  margin: 0 auto; }

.styles__employeeRow___3_sC_ {
  max-width: 1018px;
  margin: 0 auto; }

.styles__employeeInfo___1XMPb {
  display: flex;
  margin: 24px 0;
  height: auto; }
  @media (min-width: 769px) {
    .styles__employeeInfo___1XMPb {
      height: 129px; } }
  .styles__employeeInfo___1XMPb img {
    border-radius: 100%;
    flex-shrink: 0; }

.styles__rightContent___2rq-v {
  margin-left: 20px;
  display: flex;
  flex-direction: column; }
  .styles__rightContent___2rq-v h3, .styles__rightContent___2rq-v p {
    color: white;
    font-size: 12px; }
  .styles__rightContent___2rq-v h3 {
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 3px;
    padding: 0; }
  .styles__rightContent___2rq-v p {
    padding: 0; }

.styles__roleDescription___3sN7i {
  margin-bottom: 6px; }

.styles__joinSection___7hNVh {
  padding: 15px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.75); }

.styles__joinLine___3ZGSG {
  font-size: 20px;
  margin-top: 40px;
  max-width: 791px;
  margin: 0 auto;
  text-align: left;
  padding: 0; }
  .styles__joinLine___3ZGSG a {
    font-weight: bold; }

@keyframes Modal__fadeIn___1u1Bs {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.Modal__content___1noPH {
  padding: 25px 18px; }
  @media (min-width: 769px) {
    .Modal__content___1noPH {
      padding: 32px 50px; } }

.Modal__overlay___G-plR {
  animation: Modal__fadeIn___1u1Bs .5s; }

.Modal__dialog___3c-7p .modal-content {
  border-radius: 10px;
  overflow: hidden;
  overflow: visible; }

.Modal__closeButton___1fEFK {
  position: absolute;
  cursor: pointer;
  top: 8px;
  left: 8px; }
  @media (min-width: 769px) {
    .Modal__closeButton___1fEFK {
      top: 24px;
      left: 27px; } }

.Link__root___3pzuK:hover, .Link__root___3pzuK:visited, .Link__root___3pzuK:link, .Link__root___3pzuK:active {
  text-decoration: none; }

.Link__gray___3z4aH {
  color: #7f8287; }

.Link__gray___3z4aH:hover {
  color: #292F36; }

.Link__purple___1_8oZ {
  color: #8940FA; }

.Link__purple___1_8oZ:hover {
  color: #6732B9; }

.styles__modalDialog___9bVs4 {
  width: 90%; }
  @media (min-width: 769px) {
    .styles__modalDialog___9bVs4 {
      max-width: 748px; } }

.RecordScene__control___1BNaR {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  justify-content: center;
  text-align: left; }
  .RecordScene__control___1BNaR label {
    width: 100px;
    margin-bottom: 0;
    position: absolute;
    left: -70px; }
  .RecordScene__control___1BNaR .btn-group.open .dropdown-toggle {
    box-shadow: none; }
  .RecordScene__control___1BNaR .dropdown {
    flex: 1; }
  .RecordScene__control___1BNaR .dropdown-toggle, .RecordScene__control___1BNaR .dropdown-menu {
    margin: 0;
    background-color: #f8f8f8;
    overflow-y: auto;
    width: 100%;
    text-align: start; }
    .RecordScene__control___1BNaR .dropdown-toggle li, .RecordScene__control___1BNaR .dropdown-menu li {
      margin-bottom: 7px; }
      .RecordScene__control___1BNaR .dropdown-toggle li a, .RecordScene__control___1BNaR .dropdown-menu li a {
        padding-left: 17; }
  .RecordScene__control___1BNaR .dropdown-toggle,
  .RecordScene__control___1BNaR .btn-group.open .dropdown-toggle,
  .RecordScene__control___1BNaR .dropdown-toggle:active {
    padding: 0;
    padding-left: 16px;
    line-height: 44px;
    height: 51px;
    overflow: hidden;
    background-color: #f8f8f8;
    border-radius: 4px;
    background-color: #f8f8f8;
    border: 1px solid #dfe0e1;
    font-size: 16px;
    color: #7f8287; }
    .RecordScene__control___1BNaR .dropdown-toggle .caret,
    .RecordScene__control___1BNaR .btn-group.open .dropdown-toggle .caret,
    .RecordScene__control___1BNaR .dropdown-toggle:active .caret {
      background: #8940FA;
      position: absolute;
      color: white;
      right: 0;
      top: 0;
      height: 53px;
      width: 45px;
      border: none; }
    .RecordScene__control___1BNaR .dropdown-toggle .caret:before,
    .RecordScene__control___1BNaR .btn-group.open .dropdown-toggle .caret:before,
    .RecordScene__control___1BNaR .dropdown-toggle:active .caret:before {
      content: '';
      display: block;
      position: absolute;
      border-top: 6px solid;
      border-right: 7px solid transparent;
      border-left: 7px solid transparent;
      left: 15px;
      top: 23px; }
    .RecordScene__control___1BNaR .dropdown-toggle:hover .caret, .RecordScene__control___1BNaR .dropdown-toggle:focus .caret,
    .RecordScene__control___1BNaR .btn-group.open .dropdown-toggle:hover .caret,
    .RecordScene__control___1BNaR .btn-group.open .dropdown-toggle:focus .caret,
    .RecordScene__control___1BNaR .dropdown-toggle:active:hover .caret,
    .RecordScene__control___1BNaR .dropdown-toggle:active:focus .caret {
      background: #6732B9; }
    .RecordScene__control___1BNaR .dropdown-toggle:selected .caret,
    .RecordScene__control___1BNaR .btn-group.open .dropdown-toggle:selected .caret,
    .RecordScene__control___1BNaR .dropdown-toggle:active:selected .caret {
      background: #6D33C8; }

.RecordScene__disabledRecording___2B7Pp {
  max-width: 356px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__headingContainer___2n48E {
    margin: 0 auto;
    text-align: center; }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__heading___2V7Sk {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 18px; }
    @media (max-width: 326px) {
      .RecordScene__disabledRecording___2B7Pp .RecordScene__heading___2V7Sk {
        font-size: 18px; } }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__copy___1mORu {
    line-height: 18px;
    display: block; }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__icon___1muu6 {
    height: 17px;
    width: 17px;
    display: inline-block;
    margin-left: 17px; }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__bullets___ukBlj {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: space-between;
    padding-left: 0; }
    @media (max-width: 325px) {
      .RecordScene__disabledRecording___2B7Pp .RecordScene__bullets___ukBlj {
        display: block; } }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__bullet___1aJ85 {
    margin-bottom: 24px;
    display: flex;
    align-items: center; }
    @media (max-width: 325px) {
      .RecordScene__disabledRecording___2B7Pp .RecordScene__bullet___1aJ85 {
        margin-bottom: 16px; } }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__circle___3zaMn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid #DFE0E1;
    font-size: 18px;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
    display: inline-table;
    margin-right: 20px; }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__bulletCopy___3J62U {
    justify-content: space-around;
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    color: #7F8287; }
    @media (max-width: 325px) {
      .RecordScene__disabledRecording___2B7Pp .RecordScene__bulletCopy___3J62U {
        font-size: 18px; } }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__bold___37E6E {
    font-weight: bold;
    color: #292F36; }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__tapSafariCopy___d9SIw {
    font-size: 14px;
    color: #74777C;
    width: 200px;
    margin: 0 0 24px 0; }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__tapSafariContainer___2vM5P {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    @media (max-width: 325px) {
      .RecordScene__disabledRecording___2B7Pp .RecordScene__tapSafariContainer___2vM5P {
        transform: translateY(20px); } }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__arrowContainer___2qz3G {
    height: 49px;
    width: 36px; }
  .RecordScene__disabledRecording___2B7Pp .RecordScene__numeral___2khiE {
    color: #7F8287; }

.Input__root___2lyAt {
  position: relative;
  background: white;
  display: flex;
  width: 100%; }

.Input__textarea___3ggCo {
  background: none;
  border: none;
  resize: none;
  font-weight: normal;
  color: #292F36;
  width: 100%;
  margin: 0;
  cursor: text;
  outline: none; }

textarea:focus {
  outline: none; }

.Input__prependContainer___3c8Vb,
.Input__appendContainer___18BXL {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: auto 0; }

.Input__prependContainer___3c8Vb {
  padding-right: 12px; }

.Input__appendContainer___18BXL {
  padding-left: 12px; }

.Input__placeholder___1lqRe {
  padding: 0;
  display: inline; }

.CallJoinContent__wrapper___-8x-v {
  align-items: center !important; }
  @media (min-width: 769px) {
    .CallJoinContent__wrapper___-8x-v {
      align-items: start !important; } }
  @media (min-width: 992px) {
    .CallJoinContent__wrapper___-8x-v {
      align-items: start !important; } }

.CallJoinContent__control___2cpp- {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  justify-content: center;
  text-align: left; }
  .CallJoinContent__control___2cpp- label {
    width: 100px;
    margin-bottom: 0;
    position: absolute;
    left: -70px; }
  .CallJoinContent__control___2cpp- .btn-group.open .dropdown-toggle {
    box-shadow: none; }
  .CallJoinContent__control___2cpp- .dropdown {
    width: 100%;
    flex: 1; }
  .CallJoinContent__control___2cpp- .dropdown-toggle, .CallJoinContent__control___2cpp- .dropdown-menu {
    overflow-y: scroll;
    width: 100%;
    text-align: start; }
    .CallJoinContent__control___2cpp- .dropdown-toggle li, .CallJoinContent__control___2cpp- .dropdown-menu li {
      margin-bottom: 7px; }
  .CallJoinContent__control___2cpp- .dropdown-toggle {
    padding: 0;
    padding-left: 16px;
    line-height: 44px;
    height: 51px;
    overflow: hidden;
    background-color: #f8f8f8;
    border-radius: 4px;
    background-color: #f8f8f8;
    color: #292f36;
    border: 1px solid #dfe0e1;
    font-size: 14px; }
    .CallJoinContent__control___2cpp- .dropdown-toggle .caret {
      background: #8940FA;
      position: absolute;
      color: white;
      right: 0;
      top: 0;
      height: 53px;
      width: 45px;
      border: none; }
    .CallJoinContent__control___2cpp- .dropdown-toggle .caret:before {
      content: '';
      display: block;
      position: absolute;
      border-top: 6px solid;
      border-right: 7px solid transparent;
      border-left: 7px solid transparent;
      left: 15px;
      top: 23px; }
    .CallJoinContent__control___2cpp- .dropdown-toggle:hover .caret, .CallJoinContent__control___2cpp- .dropdown-toggle:focus .caret {
      background: #6732B9; }
    .CallJoinContent__control___2cpp- .dropdown-toggle:selected .caret {
      background: #6D33C8; }

.CallJoinContent__recordingNotSupportedModalDialog___3_Anb {
  width: 100% !important;
  height: 100vh !important; }
  .CallJoinContent__recordingNotSupportedModalDialog___3_Anb .modal-content {
    margin: 0px;
    border-radius: 0px; }

.CallJoinContent__modalDialog___3-UCF {
  margin: 0; }
  @media (min-width: 769px) {
    .CallJoinContent__modalDialog___3-UCF {
      height: auto;
      margin: 0;
      width: 748px;
      max-width: none; } }
  .CallJoinContent__modalDialog___3-UCF .modal-content {
    height: 100vh; }
    @media (min-width: 769px) {
      .CallJoinContent__modalDialog___3-UCF .modal-content {
        margin: 0; } }

.CallJoinContent__modalContent___729-O {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 3; }

.styles__participantList___1It-U {
  overflow-y: auto;
  height: 100%;
  padding-top: 14px; }

.styles__participantList___1It-U::-webkit-scrollbar {
  width: 4px;
  background-color: #dfe0e1;
  border-radius: 2.3px; }

.styles__participantList___1It-U::-webkit-scrollbar-thumb {
  width: 4px;
  background-color: #8940fa;
  opacity: 0.5;
  border-radius: 2.3px; }

.styles__recordOnMobile___3uu0d {
  text-align: center;
  background: #8940FA; }
  .styles__recordOnMobile___3uu0d h2 {
    font-size: 20px;
    margin-top: 0;
    padding: 20px 0; }

.styles__openInAppText___162TA {
  opacity: 0.56; }

.styles__openInApp___1uBKt {
  min-width: 180px;
  border-radius: 8px;
  font-weight: 700;
  font-weight: bold;
  padding: 16px 25px;
  line-height: 1;
  text-transform: uppercase;
  background-color: #2EFFD9;
  border-color: #2EFFD9; }
  .styles__openInApp___1uBKt:hover, .styles__openInApp___1uBKt:focus, .styles__openInApp___1uBKt.styles__focus___19jUw, .styles__openInApp___1uBKt:active, .styles__openInApp___1uBKt.styles__active___3EdW4, .styles__openInApp___1uBKt:active:hover, .styles__openInApp___1uBKt:active:focus, .styles__openInApp___1uBKt:active.styles__focus___19jUw, .styles__openInApp___1uBKt.styles__active___3EdW4:hover, .styles__openInApp___1uBKt.styles__active___3EdW4:focus, .styles__openInApp___1uBKt.styles__active___3EdW4.styles__focus___19jUw {
    background-color: #2EFFD9;
    border-color: #2EFFD9; }

.styles__learnAboutAnchor___3f4c5 {
  padding-top: 50px;
  padding-bottom: 20px; }

.styles__spinner___6cyEy svg {
  transform: translateZ(0); }

.styles__spinner___6cyEy line {
  strokeWidth: 4px;
  stroke-linecap: round;
  animation: styles__spinner-fade-out___3PjFJ 1s linear infinite; }

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

.styles__loading___3IEvI {
  display: table;
  width: 100%;
  min-height: 200px; }

.styles__loadingCentered___12HZH {
  display: table-cell;
  vertical-align: middle;
  text-align: center; }

.styles__redirectingLabel___2a5Sj {
  text-align: center;
  margin: 0 0 50px; }

.styles__FieldFormGroup___2eUuw .form-control {
  background-color: #ffffff;
  border-radius: 6px;
  border: 2px solid #dfe0e1;
  color: #5f6369;
  font-weight: normal;
  font-size: 18px; }

.styles__maxLengthLabel___2ClnM {
  display: block;
  margin-top: 3px;
  position: relative;
  top: 4px;
  font-size: 12px;
  line-height: 18px;
  color: #7f8287;
  font-weight: normal; }

.styles__withFieldLevelError___3PEM0 .has-error .form-control {
  background-color: #fff; }

.styles__resetPassword___kSc5B {
  background: #292F36; }
  .styles__resetPassword___kSc5B .container {
    padding-bottom: 30px;
    padding-top: 30px;
    min-height: 300px; }

.SupportersCancelScreen__root___375HS {
  background-color: white;
  text-align: center;
  padding: 20px;
  width: 100%;
  height: calc(100vh - 96px); }

.SupportersCancelScreen__content___1jQAe {
  margin: auto;
  width: 100%; }
  @media (min-width: 769px) {
    .SupportersCancelScreen__content___1jQAe {
      width: 400px; } }

.SupportersCancelScreen__title___APo9E {
  font-size: 24px; }

.SupportersCancelScreen__podcastTitle___1m0BM {
  font-weight: bold; }

.SupportersCancelScreen__bodyText___UcN0E {
  margin-top: 20px;
  margin-bottom: 20px; }

.SupportersCancelScreen__cancelButton___3czuW {
  width: 100%;
  height: 40px;
  border-radius: 25px;
  background-color: #8940FA;
  color: white;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold; }
  @media (min-width: 769px) {
    .SupportersCancelScreen__cancelButton___3czuW {
      width: 250px; } }

.SupportersCancelScreen__cancelButton___3czuW:hover {
  background-color: #6732B9; }

.styles__captcha___OB9af {
  min-height: 78px; }
  .styles__captcha___OB9af div {
    margin: 0 auto; }

.styles__inputContainer___1HbGB {
  display: flex;
  align-items: center;
  position: relative; }

.styles__input___2RwvF {
  height: 46px;
  padding: 0 15px;
  width: 100%;
  border: 2px solid #dedfe0;
  border-radius: 6px;
  color: #292F36;
  font-weight: normal;
  font-size: 1.6rem;
  -webkit-appearance: none;
  line-height: 2rem; }
  .styles__input___2RwvF:focus, .styles__input___2RwvF:active {
    outline: 0;
    border-color: #8940fa; }
  .styles__input___2RwvF::placeholder {
    color: #7f8287;
    font-weight: normal;
    font-size: 1.6rem; }

.styles__numberInput___3MWYb {
  padding: 0 8px 0 20px; }
  @media (max-width: 769px) {
    .styles__numberInput___3MWYb {
      padding: 0 8px; } }

.styles__numberInputMobile___e8yBm {
  padding: 0 8px 0 8px; }

.styles__inputError___3KOrt {
  border-color: #d0021b; }

.styles__errorText___3_fy9 {
  visibility: hidden; }

.styles__errorTextVisible___29_F4 {
  visibility: visible; }

.styles__bottomSection___3Oyxy {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  height: 18px; }

.styles__iconWrapper___3yAVq {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 14px; }

.styles__inputWithClearButton___kAQR9 {
  padding-right: 43px; }

.styles__inputWithIcon___1nKDR {
  padding-left: 43px; }

.styles__clearButton___363or {
  position: absolute;
  right: 14px;
  width: 18px;
  height: 18px;
  background-color: #C9CBCD;
  border-radius: 100%;
  padding: 5px; }

.styles__disabled___11Dhw {
  background-color: #EBECED;
  border-color: #C9CBCD !important;
  pointer-events: none;
  font-weight: bold !important;
  font-size: 1.4rem !important;
  color: #7F8287 !important; }

.styles__nextButton___2Hskw {
  background: #8940FA; }
  .styles__nextButton___2Hskw:hover {
    background: #6732B9; }
  .styles__nextButton___2Hskw:active, .styles__nextButton___2Hskw:focus, .styles__nextButton___2Hskw:active:focus {
    background: #6D33C8; }
  .styles__nextButton___2Hskw:disabled, .styles__nextButton___2Hskw:disabled:hover {
    background: #DBC5FD; }

.styles__onboardingPage___2wuEx, .styles__purpleContent___26F_z {
  min-width: fit-content;
  min-height: calc(100vh - 66px);
  position: relative; }

.styles__onboardingPage___2wuEx {
  background-color: #F2F2F4;
  background-image: -webkit-linear-gradient(54deg, transparent 67%, #E6E7E8 67%), -webkit-linear-gradient(62deg, #F8F8F9 38%, transparent 38%); }

.styles__purpleContent___26F_z {
  background-color: #6C44C4;
  background-image: -webkit-linear-gradient(54deg, transparent 67%, #6640B6 67%), -webkit-linear-gradient(62deg, #8756F2 38%, transparent 38%); }
  .styles__purpleContent___26F_z h1 {
    color: #fff;
    margin-bottom: 16px; }
  .styles__purpleContent___26F_z input {
    width: 75%;
    display: inline; }
  .styles__purpleContent___26F_z textarea {
    background: #fff; }
  .styles__purpleContent___26F_z p {
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding-top: 7px; }
  .styles__purpleContent___26F_z a {
    color: #2EFFD9; }
  .styles__purpleContent___26F_z .alert-success p {
    color: #292F36; }

.styles__redeemButton___3vYLt {
  background: #292F36;
  border-radius: 6px;
  /* Redeem Code: */
  border: none;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  width: 25%;
  margin-left: 25px;
  font-size: 30px;
  box-shadow: 3px 3px 0px 0px #2EFFD9; }
  .styles__redeemButton___3vYLt:hover, .styles__redeemButton___3vYLt:active {
    background: black; }
  .styles__redeemButton___3vYLt:active {
    box-shadow: 1px 1px 0px 0px #2EFFD9;
    position: relative;
    top: 2px;
    left: 2px; }

.styles__betacodeField___1neIN {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px; }

.styles__pageContent___j5w58 {
  display: flex;
  min-height: calc(100vh - 66px);
  justify-content: center;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
  padding: 24px 0; }
  @media (min-width: 769px) {
    .styles__pageContent___j5w58 {
      width: 70%; } }
  .styles__pageContent___j5w58.styles__pageFlex___3P06P {
    flex-direction: row;
    align-items: center; }
  .styles__pageContent___j5w58.styles__centeredContent___1BzOZ h1, .styles__pageContent___j5w58.styles__centeredContent___1BzOZ h2 {
    text-align: center; }
  .styles__pageContent___j5w58.styles__centeredContent___1BzOZ li {
    color: #5F6369;
    margin-bottom: 12px;
    font-size: 18px; }
    @media (min-width: 769px) {
      .styles__pageContent___j5w58.styles__centeredContent___1BzOZ li {
        font-size: 22px; } }

.styles__centeredNav___14Utd {
  margin: 0 auto;
  text-align: center; }
  .styles__centeredNav___14Utd .form-group input {
    background-color: #fff; }
  .styles__centeredNav___14Utd h1 {
    margin-bottom: 24px; }
  .styles__centeredNav___14Utd .styles__loginButton___2hn_4 {
    margin-bottom: 9px; }
  .styles__centeredNav___14Utd p {
    text-align: center;
    margin-top: 16px; }
    .styles__centeredNav___14Utd p a {
      color: #8940FA; }

.styles__link___1EFjJ {
  color: #5F6369; }
  .styles__link___1EFjJ:hover, .styles__link___1EFjJ:active, .styles__link___1EFjJ:focus {
    color: #55595E; }

.styles__linkButton___1vpaE {
  padding: 0;
  font-size: 18px;
  border: none;
  color: #8940FA;
  cursor: pointer; }
  .styles__linkButton___1vpaE:hover, .styles__linkButton___1vpaE:active, .styles__linkButton___1vpaE:focus {
    color: #6732B9; }
  @media (min-width: 769px) {
    .styles__linkButton___1vpaE {
      font-size: 22px; } }

.styles__letsDoItButton___hhNa_ {
  border-radius: 25px;
  height: 50px;
  width: 100%;
  color: #292F36;
  box-shadow: 1px 2px 1px 0 #292F36;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap; }
  @media (min-width: 769px) {
    .styles__letsDoItButton___hhNa_ {
      font-size: 14px; } }
  @media (min-width: 992px) {
    .styles__letsDoItButton___hhNa_ {
      font-size: 16px; } }

.styles__linkButtonGray___28plF {
  padding: 0;
  font-size: 17px;
  margin: 12px auto;
  border: none;
  cursor: pointer;
  opacity: 0.5;
  color: #292F36;
  text-align: center; }
  .styles__linkButtonGray___28plF:hover, .styles__linkButtonGray___28plF:active, .styles__linkButtonGray___28plF:focus {
    color: #55595E;
    opacity: 1; }

.styles__subtitle___2aO7b {
  font-size: 20px;
  color: #292F36;
  letter-spacing: -1.43px;
  margin: 16px 0 27px 0; }
  @media (min-width: 769px) {
    .styles__subtitle___2aO7b {
      font-size: 26px; } }

.styles__podcastNameField___OjhFL {
  margin-bottom: 20px; }
  .styles__podcastNameField___OjhFL input {
    background: #FFF;
    box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.33);
    border-radius: 7px;
    font-size: 16px;
    height: 50px; }
    .styles__podcastNameField___OjhFL input::placeholder {
      color: rgba(41, 47, 54, 0.35); }
    @media (min-width: 769px) {
      .styles__podcastNameField___OjhFL input {
        font-size: 22px;
        height: 82px;
        padding: 0 30px; } }
    @media (min-width: 992px) {
      .styles__podcastNameField___OjhFL input {
        font-size: 26px; } }

.styles__podcastRSSField___2lvbN {
  display: flex;
  flex-direction: column; }
  .styles__podcastRSSField___2lvbN .alert {
    margin-top: 20px; }
  .styles__podcastRSSField___2lvbN .dropdown-menu {
    width: 100%;
    overflow: hidden; }
  .styles__podcastRSSField___2lvbN .rbt-input {
    width: 100%;
    background: #FFF;
    box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.33);
    border-radius: 25px;
    font-size: 31px;
    height: 50px;
    padding: 0 30px;
    cursor: text; }
    .styles__podcastRSSField___2lvbN .rbt-input div {
      overflow: auto;
      width: 100%; }
    .styles__podcastRSSField___2lvbN .rbt-input input {
      width: 100% !important;
      font-size: 22px;
      height: 50px; }
      .styles__podcastRSSField___2lvbN .rbt-input input::placeholder {
        font-size: 22px;
        color: rgba(41, 47, 54, 0.35); }

.styles__form___1pnDt div div textarea {
  resize: none;
  width: 100%;
  background: #FFF;
  box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.33);
  border-radius: 7px;
  font-size: 31px;
  padding: 0 30px; }
  .styles__form___1pnDt div div textarea::placeholder {
    color: rgba(41, 47, 54, 0.35); }

.styles__podcastImage___14tUT {
  float: left;
  margin: 0 12px; }

.styles__podcastSquare___1dRbx {
  float: right;
  margin-left: 12px; }

.styles__backButton___EWq72 {
  padding: 0;
  width: 36px;
  border: none;
  background: none;
  font-size: 12px;
  color: #8940FA;
  float: right;
  margin: 16px; }

.styles__nextButton___2Hskw {
  padding: 0;
  position: relative;
  height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: white;
  font-size: 18px;
  width: 180px;
  float: right; }
  .styles__nextButton___2Hskw.styles__fullWidth___3ZmEm {
    width: 100%;
    float: none; }

a {
  font-weight: bold; }

.styles__small___1lN1d {
  display: block;
  opacity: 0.45;
  font-size: 14px;
  color: #292F36;
  letter-spacing: 0;
  margin-bottom: 8px; }

.styles__remainingChars___RQaRA {
  float: right;
  opacity: .5; }

.styles__info___2oO8g {
  padding: 24px 0;
  font-size: 18px;
  color: #000; }
  .styles__info___2oO8g a {
    color: #8940FA;
    font-weight: bold; }

.styles__podcastCard___2WhPM {
  width: 100%;
  word-break: break-word;
  display: flex;
  align-items: center;
  position: relative;
  float: left;
  background: #f0f0f0;
  padding: 18px 12px;
  border-radius: 7px;
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 12px; }
  .styles__podcastCard___2WhPM h3 {
    margin: 0;
    flex: 1;
    font-size: 18px; }

.styles__podcastCardWide___2CUwu {
  margin-top: 20px;
  background: #f0f0f0;
  padding: 12px;
  border-radius: 7px;
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.15);
  min-height: 124px;
  align-items: start; }
  @media (min-width: 769px) {
    .styles__podcastCardWide___2CUwu {
      padding: 18px; } }
  .styles__podcastCardWide___2CUwu .col-xs-12 {
    display: flex; }
  .styles__podcastCardWide___2CUwu .hidden-sm {
    margin-top: 12px; }
  .styles__podcastCardWide___2CUwu h3 {
    margin: 0;
    font-size: 18px; }

.styles__podcastCardInfo___2rFYt {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 12px; }
  .styles__podcastCardInfo___2rFYt p {
    margin: 8px 0;
    display: none; }
    @media (min-width: 769px) {
      .styles__podcastCardInfo___2rFYt p {
        display: block; } }

.styles__categoryDropdown___2ODDL {
  margin-bottom: 20px; }
  .styles__categoryDropdown___2ODDL .dropdown {
    width: 100%; }
  .styles__categoryDropdown___2ODDL .dropdown-toggle {
    box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.33);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    font-size: 20px;
    height: 50px; }
    @media (min-width: 769px) {
      .styles__categoryDropdown___2ODDL .dropdown-toggle {
        padding: 0 30px; } }
    .styles__categoryDropdown___2ODDL .dropdown-toggle .caret {
      border-width: 8px; }
  .styles__categoryDropdown___2ODDL .dropdown-menu {
    width: 100%;
    max-height: 300px;
    overflow: scroll; }

.styles__loginText___122cu {
  font-size: 17px;
  vertical-align: middle;
  margin-bottom: 20px; }
  .styles__loginText___122cu a {
    font-weight: bold; }
  .styles__loginText___122cu.styles__centered___1HICF {
    display: block;
    text-align: center; }

.styles__subtext___3STlk {
  margin-top: 7px;
  font-size: 28px;
  color: #292F36;
  letter-spacing: -1.54px;
  line-height: 36px; }

.styles__finishButton___NYdLw {
  height: 93px;
  width: 374px;
  padding: 0 24px;
  vertical-align: middle;
  font-size: 18px;
  font-weight: normal; }
  .styles__finishButton___NYdLw.styles__dashboardButton___17peb {
    background: #EB9FEF;
    border-radius: 6px;
    color: #FFFFFF; }
    .styles__finishButton___NYdLw.styles__dashboardButton___17peb:hover {
      background: #E37CE9; }

.styles__signupPage___3AAyD {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column; }
  .styles__signupPage___3AAyD .styles__subtitle___2aO7b {
    color: #7F8287; }
  .styles__signupPage___3AAyD form {
    width: 100%;
    max-width: 363px; }

.styles__vanityUrlContainer___FRDnd {
  display: flex;
  align-items: center; }
  .styles__vanityUrlContainer___FRDnd input {
    flex: 1;
    background: #FFF;
    box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.33);
    border-radius: 7px;
    font-size: 16px;
    height: 50px; }
    .styles__vanityUrlContainer___FRDnd input::placeholder {
      color: rgba(41, 47, 54, 0.35); }

.styles__vanityUrlInfo___2en4u {
  color: #7F8287;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin: 4px 0 6px 0; }

.styles__vanityUrlTip___2d389 {
  color: #5F6369;
  opacity: .5;
  text-align: right;
  width: 100%; }

.styles__loginFooter___2Bh9V a {
  cursor: pointer; }
  .styles__loginFooter___2Bh9V a:hover, .styles__loginFooter___2Bh9V a:active {
    text-decoration: underline; }

.styles__signupButton___Piufu {
  margin-bottom: 9px; }

.styles__terms___1IjQ8 {
  margin-bottom: 21px;
  font-size: 11px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #7f8287; }

.styles__typeform___DTCDF {
  color: white; }
  .styles__typeform___DTCDF:hover {
    color: #C9CBCD;
    text-decoration: none; }

.styles__chevron___2BADf {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 3px solid #5F6369;
  border-width: 3px 3px 0px 0px; }

.styles__up___3ZhaK {
  transform: rotate(-45deg); }

.styles__down___3XVON {
  transform: rotate(135deg); }

.styles__left___Dj1U_ {
  transform: rotate(225deg); }

.styles__right___iZ_Su {
  transform: rotate(45deg); }

.TypeaheadOption__typeaheadResult___Njsbh {
  display: flex;
  align-items: center;
  min-height: 56px;
  overflow: hidden;
  white-space: normal; }
  .TypeaheadOption__typeaheadResult___Njsbh div {
    margin-left: 12px; }
  .TypeaheadOption__typeaheadResult___Njsbh h5 {
    margin: 0; }
  .TypeaheadOption__typeaheadResult___Njsbh p {
    margin-top: 4px; }

.styles__successButton___3HfKp {
  cursor: pointer; }
  .styles__successButton___3HfKp button {
    margin: 0;
    padding: 0;
    border-width: 0;
    background-color: transparent; }

.styles__successIcon___2RIfM {
  margin: 25px auto 25px; }

.styles__loginFooter___1diiV {
  padding-top: 10px; }
  .styles__loginFooter___1diiV a:link, .styles__loginFooter___1diiV a:hover, .styles__loginFooter___1diiV a:active {
    text-decoration: underline; }

.styles__loginFooter___XUCVQ {
  padding-top: 20px; }
  .styles__loginFooter___XUCVQ a {
    cursor: pointer; }
    .styles__loginFooter___XUCVQ a:link, .styles__loginFooter___XUCVQ a:hover, .styles__loginFooter___XUCVQ a:active {
      text-decoration: underline; }

.styles__list___3znXJ {
  list-style: none;
  display: flex;
  margin: 4px 0 30px 0;
  padding: 0; }
  @media (max-width: 600px) {
    .styles__list___3znXJ {
      flex-direction: column; } }

.styles__listItem___ygz9o {
  background: #fff;
  border-radius: 4px;
  margin-right: 60px; }
  @media (max-width: 600px) {
    .styles__listItem___ygz9o {
      margin: auto; } }

.styles__listItemSelected___2Nmj_ {
  background: #8940FA; }

.styles__link___2R9FB {
  color: #8940FA;
  padding: 4px 20px;
  font-weight: normal;
  display: inline-block;
  font-weight: bold;
  text-decoration: none; }
  .styles__link___2R9FB:hover {
    text-decoration: none; }
  .styles__link___2R9FB:active {
    text-decoration: none; }

.styles__selected___EObwZ {
  color: #fff; }
  .styles__selected___EObwZ:hover {
    color: #fff;
    text-decoration: none; }
  .styles__selected___EObwZ:active {
    text-decoration: none; }

.styles__wrapper___1eE_0 {
  background-color: #fff;
  padding: 24px; }

.styles__container___2Oqeo {
  max-width: 1056px;
  width: 100%;
  margin: auto; }
  .styles__container___2Oqeo p, .styles__container___2Oqeo li, .styles__container___2Oqeo td, .styles__container___2Oqeo th {
    font-size: 1.6rem;
    line-height: 3rem; }
  .styles__container___2Oqeo p {
    margin-bottom: 12px; }
  .styles__container___2Oqeo h1, .styles__container___2Oqeo h2, .styles__container___2Oqeo h3 {
    font-weight: bold; }
  .styles__container___2Oqeo h1 {
    margin: 24px 0 48px 0; }
  .styles__container___2Oqeo h2 {
    margin: 32px 0 24px 0; }
  .styles__container___2Oqeo table {
    background: #fff; }
  .styles__container___2Oqeo td, .styles__container___2Oqeo th {
    padding: 14px; }

.styles__addressContainer___19Dse {
  margin-bottom: 16px; }

.styles__addressLine___3ds6t {
  display: block;
  line-height: 2rem; }

.styles__twoColTable___30EOE {
  table-layout: fixed;
  border-collapse: collapse; }
  .styles__twoColTable___30EOE tr th:first-of-type, .styles__twoColTable___30EOE tr td:first-of-type {
    min-width: 200px; }

.styles__threeColTable___1CP6u {
  table-layout: fixed;
  border-collapse: collapse; }
  .styles__threeColTable___1CP6u tr th, .styles__threeColTable___1CP6u tr td {
    min-width: 200px; }
  .styles__threeColTable___1CP6u tr th:first-of-type, .styles__threeColTable___1CP6u tr td:first-of-type {
    width: 100%; }
  @media (max-width: 600px) {
    .styles__threeColTable___1CP6u tr th, .styles__threeColTable___1CP6u tr td, .styles__threeColTable___1CP6u tr th:first-of-type, .styles__threeColTable___1CP6u tr td:first-of-type {
      min-width: auto; } }

.styles__lowerLatinList___3OP8Y {
  list-style: lower-latin; }
  .styles__lowerLatinList___3OP8Y h3 {
    font-size: 1.6rem; }

.styles__lowerRomanList___NSTaE {
  list-style: lower-roman; }

.styles__explainer___2ieuG {
  border-left: 4px solid #aaa;
  padding: 8px 24px; }

.styles__howItWorksStepsInt___1VTXK {
  color: #ffffff;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  font-size: 48px;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold; }

.styles__sponsorshipsHeader____F8Vk {
  background: url("../images/screens/sponsorships/web_hero_wide-2x.jpg") bottom center no-repeat;
  background-image: url("../images/screens/sponsorships/web_hero_wide-2x.jpg"), linear-gradient(#292f35, #2a2d34);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover; }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__sponsorshipsHeader____F8Vk {
      min-height: 450px !important;
      background-size: 145%; } }
  @media (min-width: 481px) and (max-width: 1024px) {
    .styles__sponsorshipsHeader____F8Vk {
      min-height: 645px !important;
      background-size: 140%; } }

.styles__topHeaderText___mmpl_ {
  line-height: 64px;
  margin: 0 0 18px 0;
  padding: 0px;
  border: 0px;
  vertical-align: baseline;
  text-align: center;
  color: white;
  font-size: 60px;
  letter-spacing: 0px;
  font-weight: 700; }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__topHeaderText___mmpl_ {
      font-size: 32px !important;
      margin: 0;
      line-height: 32px; } }

.styles__topSubheaderText___3ckpg {
  line-height: 36px;
  margin: 0px;
  padding: 0px;
  border: 0px;
  vertical-align: baseline;
  text-align: center;
  color: white;
  font-size: 32px;
  font-weight: 400; }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__topSubheaderText___3ckpg {
      font-size: 18px !important;
      letter-spacing: 0; } }

.styles__mountainSeperator___fZu-r {
  background: url("../images/screens/sponsorships/landscape_sm.gif") bottom center no-repeat;
  background-size: cover; }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__mountainSeperator___fZu-r {
      min-height: 320px !important;
      background-size: 167%; } }

.styles__forPodcastersButton___1xYFf {
  background: #8940FA;
  color: #ffffff;
  font-weight: bold;
  border-radius: 25px;
  padding: 16px 0px;
  width: 210px;
  margin: 15px 0;
  font-size: 18px;
  margin-right: 20px; }
  .styles__forPodcastersButton___1xYFf:hover {
    background: #753CD3; }
  @media (min-width: 320px) and (max-width: 499px) {
    .styles__forPodcastersButton___1xYFf {
      width: 100%;
      margin-bottom: 0px; } }

.styles__forBrandsButton___KHplR {
  color: #ffffff;
  font-weight: bold;
  border-radius: 25px;
  padding: 16px 0px;
  width: 210px;
  margin: 15px 0;
  font-size: 18px;
  border: 2px solid #ffffff;
  background: #2a2d35; }
  .styles__forBrandsButton___KHplR:hover {
    background: #333940; }
  @media (min-width: 320px) and (max-width: 499px) {
    .styles__forBrandsButton___KHplR {
      width: 100%; } }

.styles__signUpNowButton___36v8K, .styles__getInTouchButton___2V0jc {
  background: #2effd9;
  color: #292f36;
  font-weight: bold;
  border-radius: 25px;
  padding: 16px 0px;
  width: 210px;
  margin: 15px 0;
  font-size: 18px; }
  .styles__signUpNowButton___36v8K:hover, .styles__getInTouchButton___2V0jc:hover {
    background: #26E8C3; }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__signUpNowButton___36v8K, .styles__getInTouchButton___2V0jc {
      width: 100%; } }

.styles__getInTouchButton___2V0jc {
  width: 300px; }

.styles__signUpNowButton___36v8K {
  margin-right: 60px; }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__signUpNowButton___36v8K {
      width: 300px; } }
  @media (min-width: 320px) and (max-width: 539px) {
    .styles__signUpNowButton___36v8K {
      margin-right: 0px; } }

.styles__learnMoreButton___2wMqP {
  color: #ffffff;
  font-weight: bold;
  border-radius: 25px;
  padding: 16px 0px;
  width: 210px;
  margin: 15px 0;
  font-size: 18px;
  border: 2px solid #ffffff;
  background: #2a2d35; }
  .styles__learnMoreButton___2wMqP:hover {
    background: #333940; }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__learnMoreButton___2wMqP {
      display: none; } }
  @media (min-width: 320px) and (max-width: 539px) {
    .styles__learnMoreButton___2wMqP {
      width: 100%; } }

.styles__existingAccountButton___3zx8O {
  color: #2effd9;
  font-weight: bold;
  border-radius: 25px;
  padding: 16px 30px;
  margin: 15px 0;
  font-size: 18px; }
  .styles__existingAccountButton___3zx8O:hover {
    color: #26E8C3; }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__existingAccountButton___3zx8O {
      display: none; } }

.styles__sponsorshipsVideoWrapper___2IzGq {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  margin-bottom: 37px;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.3); }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__sponsorshipsVideoWrapper___2IzGq {
      width: 100vw; } }

.styles__sponsorshipsVideo___qOC9d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; }

@media (max-width: 1024px) {
  .styles__aboutContentWrapper___3b0kO {
    flex-flow: column !important; }
    .styles__aboutContentWrapper___3b0kO * {
      text-align: center !important; } }

@media (min-width: 320px) and (max-width: 480px) {
  .styles__aboutSimplifyText___2OUlh {
    order: 2; } }

.styles__aboutSimplifyImage___2qcRH {
  max-width: 362px; }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__aboutSimplifyImage___2qcRH {
      max-width: 180px;
      order: 1; } }
  @media (min-width: 481px) and (max-width: 1024px) {
    .styles__aboutSimplifyImage___2qcRH {
      max-width: 280px;
      margin-top: 60px !important; } }

@media (min-width: 481px) and (max-width: 1024px) {
  .styles__aboutMonetizeText___2hWF2 {
    order: 3; } }

.styles__aboutMonetizeImage___3sFtc {
  max-width: 362px; }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__aboutMonetizeImage___3sFtc {
      max-width: 180px; } }
  @media (min-width: 481px) and (max-width: 1024px) {
    .styles__aboutMonetizeImage___3sFtc {
      max-width: 280px;
      margin-top: 60px !important;
      order: 4; } }

.styles__andMore___ktX8C {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  position: relative; }

.styles__andMoreSeparator___2G1ka {
  border: 1px solid #f0f1f2;
  position: absolute;
  top: 50%;
  height: 0px;
  width: 100%;
  z-index: 1; }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__andMoreSeparator___2G1ka {
      display: none; } }

.styles__andMoreText___2sE7F {
  background: #ffffff;
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 50px; }

.styles__mobileAppLink___11oaE {
  display: inline-block; }

@media (max-width: 810px) {
  .styles__stepsSection___YD0Sg {
    flex-flow: column !important;
    align-items: center !important; } }

.styles__brandsSectionContent___2I97p {
  width: 100%;
  max-width: 800px; }

.styles__brandsImageContainer___2uFXs {
  margin: 60px 0;
  padding: 0 24px; }

@font-face {
  font-family: Circular;
  src: url("../8.9.0/fonts/circular-book.woff") format("woff");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: Circular;
  src: url("../8.9.0/fonts/circular-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: Circular;
  src: url("../8.9.0/fonts/circular-black.woff") format("woff");
  font-weight: 900;
  font-style: normal; }

.styles__howItWorksStepsInt___3Cg1- {
  color: #ffffff;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  font-size: 48px;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold; }

.styles__quicksilverLandingPage___TQcg_ {
  font-family: "Circular", sans-serif;
  background-color: #4100F5; }

.styles__imageContainer___3igZb {
  width: 265px;
  margin: 0; }
  @media (max-width: 992px) {
    .styles__imageContainer___3igZb {
      margin: 0 auto;
      height: auto; } }
  @media (max-width: 320px) {
    .styles__imageContainer___3igZb {
      width: 170px; } }

.styles__arrowDownContainer___uHftS {
  margin: 18px auto;
  margin-bottom: 24px;
  height: 10px;
  width: 10px;
  animation: styles__move___2e9vt 1.5s ease-out infinite; }

@keyframes styles__move___2e9vt {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(4px); }
  100% {
    transform: translateY(0); } }

.styles__hero___2-bNH {
  background-color: #4100F5;
  padding: 144px 0;
  display: flex;
  justify-content: center; }
  @media (max-width: 992px) {
    .styles__hero___2-bNH {
      padding: 28px 20px 0 20px;
      display: flex;
      justify-content: center;
      flex-direction: column;
      height: auto; } }
  @media (min-width: 320px) and (max-width: 480px) {
    .styles__hero___2-bNH {
      background-size: 145%;
      padding-left: 15px;
      padding-right: 15px;
      min-height: 450px; } }
  @media (min-width: 481px) and (max-width: 1024px) {
    .styles__hero___2-bNH {
      background-size: 140%; } }

.styles__heroCopy___2W-tn {
  max-width: 550px;
  margin-right: 55px; }
  @media (max-width: 480px) {
    .styles__heroCopy___2W-tn {
      text-align: center;
      margin: 0 auto; } }
  .styles__heroCopy___2W-tn .styles__title___B1D_4 {
    line-height: 48px; }

.styles__heroImageContainer___3p8dX {
  padding-bottom: 16px;
  width: 266px; }
  @media (max-width: 480px) {
    .styles__heroImageContainer___3p8dX {
      padding-top: 16px;
      padding-bottom: 32px;
      margin: 0 auto; } }

.styles__copy___3YGN- {
  display: flex;
  flex-direction: column;
  padding: 32px;
  max-width: 800px;
  justify-content: center; }
  @media (max-width: 992px) {
    .styles__copy___3YGN- {
      text-align: center;
      padding: 24px 0; } }

.styles__title___B1D_4 {
  margin: 0 0 30px 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 48px;
  font-weight: 700;
  font-family: Circular, sans-serif; }
  @media (max-width: 992px) {
    .styles__title___B1D_4 {
      font-size: 48px;
      line-height: 48px; } }
  @media (max-width: 769px) {
    .styles__title___B1D_4 {
      font-size: 32px;
      line-height: 34px; } }

.styles__white___3SsWu {
  color: white; }

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

.styles__subheader___1UNo_ {
  line-height: 26px;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 18px;
  margin: 0 0 16px;
  font-family: Circular, sans-serif;
  max-width: 450px; }
  @media (max-width: 992px) {
    .styles__subheader___1UNo_ {
      font-size: 18px;
      line-height: 26px; } }

.styles__description___82Od4 {
  margin-bottom: 36px; }
  @media (max-width: 992px) {
    .styles__description___82Od4 {
      margin: 16px 16px 0 16px; } }

.styles__valueProps___hfC7p {
  background-color: white;
  padding: 100px 20px; }
  @media (max-width: 992px) {
    .styles__valueProps___hfC7p {
      padding: 44px 20px; } }

.styles__valueProp___1g_3w {
  margin: 0 auto;
  max-width: 992px;
  display: flex;
  justify-content: space-around;
  background-color: white;
  padding: 55px 0;
  align-items: center; }
  @media (max-width: 992px) {
    .styles__valueProp___1g_3w {
      justify-content: center;
      padding: 0;
      flex-direction: column-reverse; } }
  @media (max-width: 992px) {
    .styles__valueProp___1g_3w:nth-of-type(2) {
      flex-direction: column; } }
  .styles__valueProp___1g_3w .styles__title___B1D_4 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 20px; }

.styles__notFound___2Y9Yn {
  background-color: #292F36;
  color: white; }

.styles__pageStartBackground___2M5A9 {
  background-color: #fff; }

.styles__pageHeaderBackground___K6jYa {
  background-color: #292F36; }

.styles__notFoundPageHeader___1NAdH h1 {
  text-shadow: 0 2px #2EFFD9; }

.styles__header___QU0Y1, .styles__copy___8Cb3n {
  font-size: 22px;
  margin-bottom: 22px; }
  @media (max-width: 769px) {
    .styles__header___QU0Y1, .styles__copy___8Cb3n {
      font-size: 18px; } }

.styles__herman___38ZNb {
  width: 290px;
  height: 111px;
  margin: 0 auto 60px; }
  @media (max-width: 769px) {
    .styles__herman___38ZNb {
      width: 230px;
      height: auto; } }

.styles__content___31pOM {
  background-color: #8940FA;
  padding: 150px 0 150px;
  margin: 0 auto;
  text-align: center; }
  @media (max-width: 992px) {
    .styles__content___31pOM {
      padding: 100px 0 100px; } }
  @media (max-width: 769px) {
    .styles__content___31pOM {
      width: auto;
      padding: 48px 26px; } }

.styles__textContainer___3eaEa {
  max-width: 540px;
  margin: auto; }

.styles__copy___8Cb3n {
  color: white; }

.styles__episodeContainer___12nNQ {
  position: relative;
  background: #f2f2f2;
  color: #292F36; }
  @media (min-width: 769px) {
    .styles__episodeContainer___12nNQ > .styles__playButton___1Sp9K {
      display: none; } }

.styles__embedNotFoundContainer___6w20e {
  height: 161px;
  text-align: center;
  margin: 0 auto;
  background-color: #f2f2f2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media (max-width: 410px) {
    .styles__embedNotFoundContainer___6w20e {
      height: 100px; } }
  .styles__embedNotFoundContainer___6w20e .styles__header___293cS {
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 50%;
    display: flex;
    align-self: center; }
    @media (max-width: 410px) {
      .styles__embedNotFoundContainer___6w20e .styles__header___293cS {
        font-size: 14px; } }

.styles__episodeImage___2hk_L img {
  height: 98px;
  width: 98px; }
  @media (min-width: 769px) {
    .styles__episodeImage___2hk_L img {
      height: 161px;
      width: 161px; } }

.styles__episodeContainerInner___GWTzW {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 98px; }
  @media (min-width: 769px) {
    .styles__episodeContainerInner___GWTzW {
      left: 161px; } }

.styles__playButton___1Sp9K {
  position: absolute;
  top: 23px;
  left: 23px; }

.styles__segmentInfo___4yt5o {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  min-width: 190px;
  padding: 11px;
  padding-right: 30px; }
  .styles__segmentInfo___4yt5o a:hover, .styles__segmentInfo___4yt5o a:active, .styles__segmentInfo___4yt5o a:focus {
    text-decoration: none; }
  .styles__segmentInfo___4yt5o h2, .styles__segmentInfo___4yt5o h3 {
    margin: 0; }
  .styles__segmentInfo___4yt5o h2 {
    height: 33px;
    font-size: 12px;
    line-height: 14px;
    color: #292F36;
    display: table-cell;
    vertical-align: middle;
    font-weight: bold; }
    @media (min-width: 769px) {
      .styles__segmentInfo___4yt5o h2 {
        font-size: 25px;
        line-height: 27px;
        padding-bottom: 0; } }
    .styles__segmentInfo___4yt5o h2 a, .styles__segmentInfo___4yt5o h2 a:hover, .styles__segmentInfo___4yt5o h2 a:active {
      color: #292F36; }
  .styles__segmentInfo___4yt5o h3 {
    font-size: 11px;
    line-height: 13px;
    color: #7F8287;
    height: 26px;
    font-weight: normal; }
    .styles__segmentInfo___4yt5o h3 a {
      font-weight: normal; }
  .styles__segmentInfo___4yt5o .styles__withSegmentImage___3wG7u h2 {
    padding-left: 29px; }
  @media (min-width: 769px) {
    .styles__segmentInfo___4yt5o {
      padding-left: 21px; }
      .styles__segmentInfo___4yt5o h2 {
        font-size: 25px;
        line-height: 27px;
        min-height: 33px;
        height: 54px; }
      .styles__segmentInfo___4yt5o h3 {
        font-size: 14px;
        line-height: 18px; } }

.styles__albumArt___1sQF4 {
  float: left;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.11);
  position: relative;
  top: 3px; }
  @media (min-width: 769px) {
    .styles__albumArt___1sQF4 {
      height: 48px;
      width: 48px; } }

.styles__anchoredActions___pj5jF {
  opacity: 1;
  -webkit-transition: opacity 0.1s ease-out;
  -o-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
  position: absolute;
  bottom: 14px;
  right: 5px; }
  @media (min-width: 769px) {
    .styles__anchoredActions___pj5jF {
      right: 24px;
      bottom: 37px; } }

.styles__shareAudioButton___2gO2V {
  background: transparent;
  display: inline-block;
  padding: 0; }
  .styles__shareAudioButton___2gO2V .styles__hoverWrappedComponent___2FWLy {
    width: 11px;
    height: 12px;
    position: absolute;
    bottom: 0;
    right: 0; }
  .styles__shareAudioButton___2gO2V > span {
    display: none; }
  @media (min-width: 769px) {
    .styles__shareAudioButton___2gO2V {
      font-size: 14px;
      line-height: 17px;
      color: #7F8287;
      padding: 5px 0; }
      .styles__shareAudioButton___2gO2V:hover, .styles__shareAudioButton___2gO2V:active, .styles__shareAudioButton___2gO2V:focus, .styles__shareAudioButton___2gO2V:active:focus {
        color: #292F36; }
        .styles__shareAudioButton___2gO2V:hover svg path, .styles__shareAudioButton___2gO2V:active svg path, .styles__shareAudioButton___2gO2V:focus svg path, .styles__shareAudioButton___2gO2V:active:focus svg path {
          fill: #292F36; }
      .styles__shareAudioButton___2gO2V .styles__hoverWrappedComponent___2FWLy {
        position: relative;
        top: -2px;
        display: inline-block;
        margin-right: 7px; }
      .styles__shareAudioButton___2gO2V > span {
        display: inline;
        font-weight: bold; }
      .styles__shareAudioButton___2gO2V svg {
        height: 16px;
        width: 14px; }
      .styles__shareAudioButton___2gO2V .styles__anchorPayLogo___1ROWb > svg {
        height: 15px;
        width: 17px;
        margin-left: 0;
        margin-right: 5px; } }

.styles__supportButton___1o24e {
  display: none; }
  @media (min-width: 769px) {
    .styles__supportButton___1o24e {
      display: inline-block;
      margin-right: 23px; }
      .styles__supportButton___1o24e .styles__hoverWrappedComponent___2FWLy {
        top: -1px;
        margin-right: 11px; }
      .styles__supportButton___1o24e svg {
        height: 15px;
        width: 17px; } }

.styles__episodeMetadata___2DrZ_ {
  height: 10px;
  margin-bottom: 7px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px; }
  @media (max-width: 769px) {
    .styles__episodeMetadata___2DrZ_ {
      display: none; } }
  .styles__episodeMetadata___2DrZ_ h4 {
    margin: 0 30px 0 11px;
    font-size: 9px;
    line-height: 10px;
    color: rgba(127, 130, 135, 0.5); }
    @media (min-width: 769px) {
      .styles__episodeMetadata___2DrZ_ h4 {
        display: none; } }

.styles__controls___2bpCh {
  height: 10px;
  margin-bottom: 7px;
  position: absolute;
  left: 0;
  width: 130px;
  bottom: 7px; }
  .styles__controls___2bpCh .styles__playButton___1Sp9K {
    display: none; }
  @media (min-width: 769px) {
    .styles__controls___2bpCh {
      height: 35px;
      margin-bottom: 17px;
      right: 205px; }
      .styles__controls___2bpCh .styles__leftSkipButton___aK80Y svg, .styles__controls___2bpCh .styles__rightSkipButton___25pux svg {
        top: 12px;
        width: 17px;
        height: 12px; }
      .styles__controls___2bpCh .styles__leftSkipButton___aK80Y {
        left: 21px; }
      .styles__controls___2bpCh .styles__playButton___1Sp9K {
        display: flex;
        top: -10px;
        left: 20px; }
      .styles__controls___2bpCh .styles__rightSkipButton___25pux {
        left: 91px; } }

.styles__controlsWhilePlaying___IP_c6 {
  display: block; }

.styles__episodeDuration___3f8yQ, .styles__episodePlaybackPosition___3SXru {
  display: none;
  font-size: 9px;
  line-height: 10px;
  color: rgba(127, 130, 135, 0.5);
  position: absolute;
  top: 0; }
  @media (min-width: 769px) {
    .styles__episodeDuration___3f8yQ, .styles__episodePlaybackPosition___3SXru {
      display: block; } }

.styles__episodeDuration___3f8yQ {
  right: 30px; }
  @media (min-width: 769px) {
    .styles__episodeDuration___3f8yQ {
      right: 13px; } }

.styles__episodePlaybackPosition___3SXru {
  left: 30px; }
  @media (min-width: 769px) {
    .styles__episodePlaybackPosition___3SXru {
      left: 13px; } }

.styles__episodeContainerIsPlaying___3Ongu .styles__controlsWhilePlaying___IP_c6 {
  display: block; }

.styles__episodeContainerIsPlaying___3Ongu .styles__episodeMetadata___2DrZ_ .styles__episodeDuration___3f8yQ {
  display: block; }

.styles__episodeContainerIsPlaying___3Ongu .styles__episodeMetadata___2DrZ_ h4 {
  visibility: hidden; }

@media (min-width: 769px) {
  .styles__episodeContainerIsPlaying___3Ongu .styles__episodeMetadata___2DrZ_ h4 {
    visibility: visible; } }

.styles__leftSkipButton___aK80Y, .styles__rightSkipButton___25pux {
  cursor: pointer; }

.styles__leftSkipButton___aK80Y {
  position: absolute;
  top: 0;
  left: 8px; }
  @media (min-width: 769px) {
    .styles__leftSkipButton___aK80Y {
      bottom: 7px;
      left: 7px; } }

.styles__rightSkipButton___25pux {
  position: absolute;
  top: 0;
  left: 114px; }
  @media (min-width: 769px) {
    .styles__rightSkipButton___25pux {
      bottom: 7px;
      right: 7px; } }

.styles__soundIndicator___3pO1G, .styles__anchorLogo___3V1bA {
  position: absolute;
  right: 11px;
  top: 11px; }

.styles__playbackSpeedIndicator___1fUCb {
  color: rgba(255, 255, 255, 0.6);
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 12px;
  top: 10px;
  cursor: pointer;
  display: none; }

.styles__waveform___3PY0T {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 61px; }
  @media (min-width: 769px) {
    .styles__waveform___3PY0T {
      height: 154px; } }

.styles__spotifyLink___mR6HU .btn, .styles__appleLink___3p-pE .btn {
  border-radius: 100px;
  color: #fff;
  font-size: 9px;
  line-height: 10px;
  min-width: 18px;
  padding: 4px 5px; }
  .styles__spotifyLink___mR6HU .btn:hover, .styles__spotifyLink___mR6HU .btn:focus, .styles__spotifyLink___mR6HU .btn.focus, .styles__appleLink___3p-pE .btn:hover, .styles__appleLink___3p-pE .btn:focus, .styles__appleLink___3p-pE .btn.focus {
    color: #fff; }

.styles__spotifyLink___mR6HU span, .styles__appleLink___3p-pE span {
  margin-left: 3px; }

.styles__spotifyLink___mR6HU img, .styles__appleLink___3p-pE img {
  position: relative;
  bottom: 1px; }

@media (min-width: 769px) {
  .styles__spotifyLink___mR6HU, .styles__appleLink___3p-pE {
    padding: 0; }
    .styles__spotifyLink___mR6HU .btn, .styles__appleLink___3p-pE .btn {
      font-size: 14px;
      line-height: 17px;
      padding: 5px 15px; }
      .styles__spotifyLink___mR6HU .btn span, .styles__appleLink___3p-pE .btn span {
        margin-left: 9px; }
      .styles__spotifyLink___mR6HU .btn img, .styles__appleLink___3p-pE .btn img {
        height: 11px;
        width: 11px; } }

.styles__episodeContainerIsPlaying___3Ongu .styles__spotifyLink___mR6HU span, .styles__episodeContainerIsPlaying___3Ongu .styles__appleLink___3p-pE span {
  display: none; }
  @media (min-width: 769px) {
    .styles__episodeContainerIsPlaying___3Ongu .styles__spotifyLink___mR6HU span, .styles__episodeContainerIsPlaying___3Ongu .styles__appleLink___3p-pE span {
      display: inline; } }

.styles__spotifyLink___mR6HU .btn {
  background-color: #1ED760; }
  .styles__spotifyLink___mR6HU .btn:hover, .styles__spotifyLink___mR6HU .btn:focus, .styles__spotifyLink___mR6HU .btn.focus {
    background-color: #1ED760; }

.styles__appleLink___3p-pE .btn {
  background-color: #292F36; }
  .styles__appleLink___3p-pE .btn:hover, .styles__appleLink___3p-pE .btn:focus, .styles__appleLink___3p-pE .btn.focus {
    background-color: #292F36; }

.styles__segmentLoading___pBrSq {
  display: table; }

.styles__segmentLoadingCentered___26T9D {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 24px; }

.styles__emptyStation___jST8v {
  padding: 20px 20px 0;
  font-size: 16px; }
  .styles__emptyStation___jST8v p {
    margin: 28px 0; }
  @media (min-width: 769px) {
    .styles__emptyStation___jST8v {
      font-size: 24px;
      padding: 0 56px; } }

.styles__segmentLoadingSpinner___36hHd {
  display: inline-block;
  vertical-align: middle; }

.styles__progressBar___3pIiH {
  position: absolute;
  bottom: 0; }
  .styles__progressBar___3pIiH svg {
    position: absolute; }

.styles__stationLink___ctE3i {
  color: inherit; }
  .styles__stationLink___ctE3i:hover, .styles__stationLink___ctE3i:active, .styles__stationLink___ctE3i:focus, .styles__stationLink___ctE3i:active:focus {
    color: #8940FA; }

.styles__anchorLogo___3V1bA {
  width: 15px;
  height: 18px;
  right: 7px; }
  .styles__anchorLogo___3V1bA img {
    position: absolute;
    top: 0;
    left: 0; }
  .styles__anchorLogo___3V1bA .styles__anchorLogoDesktop___39Hl_ {
    display: none; }
  .styles__anchorLogo___3V1bA .styles__anchorLogoDefault___137DJ {
    visibility: visible; }
  .styles__anchorLogo___3V1bA .styles__anchorLogoHover___2o-rY {
    visibility: hidden; }
  .styles__anchorLogo___3V1bA:hover .styles__anchorLogoDefault___137DJ, .styles__anchorLogo___3V1bA:active .styles__anchorLogoDefault___137DJ, .styles__anchorLogo___3V1bA:focus .styles__anchorLogoDefault___137DJ {
    visibility: hidden; }
  .styles__anchorLogo___3V1bA:hover .styles__anchorLogoHover___2o-rY, .styles__anchorLogo___3V1bA:active .styles__anchorLogoHover___2o-rY, .styles__anchorLogo___3V1bA:focus .styles__anchorLogoHover___2o-rY {
    visibility: visible; }
  @media (min-width: 769px) {
    .styles__anchorLogo___3V1bA {
      width: 71px;
      height: 29px;
      top: 3px; }
      .styles__anchorLogo___3V1bA .styles__anchorLogoMobile___3xaAF {
        display: none; }
      .styles__anchorLogo___3V1bA .styles__anchorLogoDesktop___39Hl_ {
        display: inline-block; } }

.styles__hoverWrappedComponent___2FWLy .styles__hoverWrappedComponentDefault___3xz7l, .styles__hoverWrappedComponent___2FWLy .styles__hoverWrappedComponentHover___37Upu {
  position: absolute;
  top: 0;
  left: 0; }

.styles__hoverWrappedComponent___2FWLy .styles__hoverWrappedComponentDefault___3xz7l {
  visibility: visible; }

.styles__hoverWrappedComponent___2FWLy .styles__hoverWrappedComponentHover___37Upu {
  visibility: hidden; }

.styles__hoverWrappedComponent___2FWLy:hover .styles__hoverWrappedComponentDefault___3xz7l, .styles__hoverWrappedComponent___2FWLy:active .styles__hoverWrappedComponentDefault___3xz7l, .styles__hoverWrappedComponent___2FWLy:focus .styles__hoverWrappedComponentDefault___3xz7l {
  visibility: hidden; }

.styles__hoverWrappedComponent___2FWLy:hover .styles__hoverWrappedComponentHover___37Upu, .styles__hoverWrappedComponent___2FWLy:active .styles__hoverWrappedComponentHover___37Upu, .styles__hoverWrappedComponent___2FWLy:focus .styles__hoverWrappedComponentHover___37Upu {
  visibility: visible; }

.styles__byLineStation___GRVUm {
  display: none; }

.styles__byLinePublishOn___vSx0M {
  display: none; }
  @media (min-width: 769px) {
    .styles__byLinePublishOn___vSx0M {
      display: inline; } }

@media (min-width: 769px) {
  .styles__episodeContainerIsEmbedded___3-hcU .styles__byLineStation___GRVUm {
    display: inline; } }

.styles__enter___dD0VF {
  opacity: 0.01; }

.styles__enter___dD0VF.styles__enterActive___IiVEc {
  opacity: 1;
  transition: opacity 300ms ease-in; }

.styles__leave___36GGP {
  opacity: 1; }

.styles__leave___36GGP.styles__leaveActive___N2Szt {
  opacity: 0.01;
  transition: opacity 300ms ease-in; }

.styles__circle___1g-9u {
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center; }

.styles__black___1kxtY {
  background: #292f36; }
  .styles__black___1kxtY:hover {
    background: #41464d; }
  .styles__black___1kxtY:active {
    background: #5f6369; }
  .styles__black___1kxtY:disabled {
    background: #292f36; }

.styles__gray___3ikRg {
  background: #7f8287; }
  .styles__gray___3ikRg:hover {
    background: #55595E; }
  .styles__gray___3ikRg:active {
    background: #424549; }
  .styles__gray___3ikRg:disabled {
    background: #8f9196; }

.styles__lightgray___3Sqr7 {
  background: #CCCDCF; }
  .styles__lightgray___3Sqr7:disabled {
    background: #d1d2d3; }
  .styles__lightgray___3Sqr7:active, .styles__lightgray___3Sqr7:hover {
    background: #a3a4a5; }

.styles__offwhite___RE24y {
  background: #EBEBEC; }
  .styles__offwhite___RE24y:disabled {
    background: #eaeaec; }
  .styles__offwhite___RE24y:active, .styles__offwhite___RE24y:hover {
    background: #eaeaec; }

.styles__orange___3zANc {
  background: #FD6767; }
  .styles__orange___3zANc:hover {
    background: #E14040; }
  .styles__orange___3zANc:active {
    background: #BE1E1E; }
  .styles__orange___3zANc:disabled {
    background: #FED1D1; }

.styles__purple___3QrmV {
  background: #8940FA; }
  .styles__purple___3QrmV:hover {
    background: #6732B9; }
  .styles__purple___3QrmV:active {
    background: #6D33C8; }
  .styles__purple___3QrmV:disabled {
    background: #DBC5FD; }

.styles__blue___1XuPv {
  background: #428EFF; }
  .styles__blue___1XuPv:hover {
    background: #1674FF; }
  .styles__blue___1XuPv:active {
    background: #0568FB; }
  .styles__blue___1XuPv:disabled {
    background: #C6DDFF; }

.styles__cyan___36YSk {
  background: #2DCFB3; }
  .styles__cyan___36YSk:hover {
    background: #28BAA1; }
  .styles__cyan___36YSk:active {
    background: #24a58f; }
  .styles__cyan___36YSk:disabled {
    background: #81E2D1; }

.styles__pink___3Hdwb {
  background: #FFACE7; }
  .styles__pink___3Hdwb:hover {
    background: #E59ACF; }
  .styles__pink___3Hdwb:active {
    background: #CC89B8; }
  .styles__pink___3Hdwb:disabled {
    background: #F6D4F7; }

.styles__red___PUWeS {
  background: #E54751; }
  .styles__red___PUWeS:hover {
    background: #ce3f48; }
  .styles__red___PUWeS:active {
    background: #b73840; }
  .styles__red___PUWeS:disabled {
    background: #e54751; }

.styles__white___372tQ {
  background: #fff; }

.styles__green___1ak0n {
  background: #1cee4e; }
  .styles__green___1ak0n:hover {
    background: #0eb434; }
  .styles__green___1ak0n:active {
    background: #0eb434; }
  .styles__green___1ak0n:disabled {
    background: #10d53e; }

.styles__playButton___1Ivi4 {
  cursor: pointer;
  text-align: center;
  padding: 0; }
  .styles__playButton___1Ivi4 svg {
    overflow: visible; }

.styles__playButtonLabel___2tcNa {
  display: inline-block;
  margin-top: 5px; }

.styles__screen___hI-uZ {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-top: 64px;
  padding-bottom: 96px;
  text-align: center;
  align-items: center;
  width: 100vw;
  height: calc(100vh - 96px);
  background-color: white; }
  @media (max-width: 880px) {
    .styles__screen___hI-uZ {
      height: calc(100vh - 76px); } }

.styles__container___2I31G {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.styles__button___3M77r {
  background: #8940FA;
  color: white;
  font-size: 1.6rem; }
  .styles__button___3M77r:first-of-type {
    margin-bottom: 16px; }

.styles__copy___3qpn1 {
  margin-bottom: 24px;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #7F8287; }

.styles__dashboardLink___EfotE {
  font-size: 1.6rem;
  line-height: 1.9rem; }
  .styles__dashboardLink___EfotE:hover, .styles__dashboardLink___EfotE:active {
    text-decoration: none; }

.styles__title___2M_30 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1rem; }

.styles__emailIcon___1Il6V {
  width: 95px;
  height: auto;
  margin: 0 auto 1.6rem; }

._2m46e4ac1EOtUGMS5ZOrsP {
  padding: 0 22px 11px
}
._2y0fUL2Wjl3matJv41bE5 {
  position: relative;
  height: 100%;
  text-align: center;
  background: 0 0;
  border: 2px solid #00a699;
  color: #00a699;
  padding: 4px 12px;
  margin-right: 8px;
  font: inherit;
  font-weight: 700;
  line-height: normal;
  overflow: visible;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer
}
._2y0fUL2Wjl3matJv41bE5:active {
  outline: 0
}
._2c_vfMAcj4ZsZA5bTo2B62 {
  color: #fff;
  background: #00a699
}
.BQiHV3DCkjdYs7jgbn3s {
  display: inline-block;
  background-color: #fff
}
._23T214PWjMSuKOvDAaaUyd {
  border: 1px solid #dbdbdb
}
._3F3LakNn8gfv2Egq5urODK {
  direction: rtl
}
._2VkMLW3VZAv56eEDfO6MoE {
  background-color: #f2f2f2
}
._1LWPCRn2k5FSGA3rwsF4r5 {
  display: block
}
._3cZJp0AUxnxE5vaU_8RpUU {
  padding-right: 30px
}
._3MqjIkonIUtN7o4_Tzy_4F {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}
._3I48ZZWYbkNF8P5dy2B8ah:focus,
._3I48ZZWYbkNF8P5dy2B8ah:hover {
  background: #dbdbdb;
  border-radius: 50%
}
.sJoQFf50H81uoZNPdb0EZ {
  padding: 6px
}
._2lVgUSzgPqAVSPjVGYUm9x {
  visibility: hidden
}
._3Oty9h4bn4wOUYykvl2jHV {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}
._1UV0F3sA5GR0OuGF1DOt6U {
  height: 9px
}
._2MdBC-sf853_SE7My5Lvqv {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px
}
._2frx4VHd_APaksLeh9FCiL {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle
}
._21YdRy80MV6F5U38GhqwFS {
  position: relative;
  display: inline-block
}
._1v08NDMvxDP-Q2gnE3nayg {
  display: block
}
._1522mpnG3JWvRl4Syyzgne {
  z-index: 1;
  background-color: #fff;
  position: absolute
}
._2BDJ-_1TE8R9OuRDim1sGy {
  direction: rtl
}
._1f35R9HO-di39a8pHfsEJk {
  left: 0
}
._1AUD9oVjFWLJHc3UxY9ObR {
  right: 0
}
.RF5TwEcuHZXbqgLRGzcWb {
  background-color: rgba(0,0,0,.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}
._juEVp82neZu2cycoA49R {
  background-color: #fff
}
._3ACUM6WbBKVpvA5fNYY0sR {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}
._3ACUM6WbBKVpvA5fNYY0sR:focus,
._3ACUM6WbBKVpvA5fNYY0sR:hover {
  color: darken(#cacccd,10%);
  text-decoration: none
}
._31yROiaRSGdyfy46ZZBbz2 {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
._224RNIPH0nJ_RCKJnJbBGy {
  background: 0 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  font-size: 14px
}
._224RNIPH0nJ_RCKJnJbBGy:active {
  outline: 0
}
._1bb2SPXPvKPLgrgp6XCZe6 {
  width: 22px;
  position: absolute;
  z-index: 2
}
._3mBgAcvQexPfkmIQYVALMw {
  border-top: 26px solid transparent;
  border-right: 33px solid #00a699;
  bottom: 0;
  right: 0
}
._3mBgAcvQexPfkmIQYVALMw:hover {
  border-right: 33px solid #008489
}
.mUViwt1qYvfkRy5B9x4LH {
  border-bottom: 26px solid transparent;
  border-right: 33px solid #00a699;
  top: 0;
  right: 0
}
.mUViwt1qYvfkRy5B9x4LH:hover {
  border-right: 33px solid #008489
}
.SwsCrMwEp9exInG97P8n2 {
  border-bottom: 26px solid transparent;
  border-left: 33px solid #00a699;
  top: 0;
  left: 0
}
.SwsCrMwEp9exInG97P8n2:hover {
  border-left: 33px solid #008489
}
._3ljsyPnQ0Sasqe9A-QCfQs {
  color: #fff;
  position: absolute
}
._3WYbWe0rnBzQgfX8eQo4LQ {
  bottom: 0;
  right: -28px
}
._1s97v0E5FrSyFCTRiZRKg7 {
  top: 1px;
  right: -28px
}
._3UUImKjh65giXweXxg__Gw {
  top: 1px;
  left: -28px
}
._250s8C5DFDCFJrqrsKltNf {
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  margin: 33px
}
._1XaLcWgOfxzHlPAr5KFkGf {
  font-size: 16px;
  font-weight: 700;
  margin: 0
}
._2hKx6MADqhUHfNPJY3RKj2 {
  list-style: none;
  padding: 0;
  font-size: 14px
}
._2N4c2NhP1-wSiWP7oA9LSV {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2
}
._2N4c2NhP1-wSiWP7oA9LSV:active {
  outline: 0
}
._2pcAsgcQlN1qnBDIeVUnP {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
._2pcAsgcQlN1qnBDIeVUnP:focus,
._2pcAsgcQlN1qnBDIeVUnP:hover {
  fill: #82888a
}
._2FmMOcl5tTtBOA9AQV7i_o {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  text-align: center
}
._2FmMOcl5tTtBOA9AQV7i_o:active {
  outline: 0
}
._2BP-BNtfnPwAiGhErywS7O {
  cursor: default
}
._11oPPslFGNdIERnyittWgp {
  border: 1px solid #e4e7e7;
  color: #484848;
  background: #fff
}
._11oPPslFGNdIERnyittWgp:hover {
  background: #e4e7e7;
  border: 1px double #e4e7e7;
  color: inherit
}
._2SDWcBtATjMKfKAe2TCOvm {
  background: #f4f5f5;
  border: 1px double #e4e7e7;
  color: inherit
}
._2Em-55BOa0VKTwROp8Ou4o {
  border: 0;
  background: #fff;
  color: #484848
}
.ScB0lkc_sMu2DgFF7wxMr {
  background: #fff;
  border: 1px solid #eceeee;
  color: #cacccd
}
.ScB0lkc_sMu2DgFF7wxMr:active,
.ScB0lkc_sMu2DgFF7wxMr:hover {
  background: #fff;
  color: #cacccd
}
._1sLbdqZNeOYRHM_J9yYRzP {
  background: #ffe8bc;
  color: #484848
}
._1sLbdqZNeOYRHM_J9yYRzP:active,
._1sLbdqZNeOYRHM_J9yYRzP:hover {
  background: #ffce71;
  color: #484848
}
._1OuG0RM40_UwY0Wq68IYDm {
  background: #66e2da;
  border: 1px solid #33dacd;
  color: #fff
}
._1OuG0RM40_UwY0Wq68IYDm:active,
._1OuG0RM40_UwY0Wq68IYDm:hover {
  background: #33dacd;
  border: 1px solid #33dacd;
  color: #fff
}
._3X2xBZumVAqBpU5XBCW-2V {
  border-right: #00a699
}
._3s6grh3HIPshee3NRdR9zt,
._3s6grh3HIPshee3NRdR9zt:active,
._3s6grh3HIPshee3NRdR9zt:hover {
  background: #00a699;
  border: 1px solid #00a699;
  color: #fff
}
._2Fk4Mwdz5oTwAZ-SSd0ii_,
._2Fk4Mwdz5oTwAZ-SSd0ii_:hover {
  background: #b2f1ec;
  border: 1px solid #80e8e0;
  color: #007a87
}
._2Fk4Mwdz5oTwAZ-SSd0ii_:active {
  background: #80e8e0;
  border: 1px solid #80e8e0;
  color: #007a87
}
.GwRAs_iIABhiFmklHB0CJ,
.GwRAs_iIABhiFmklHB0CJ:active,
.GwRAs_iIABhiFmklHB0CJ:hover {
  background: #cacccd;
  border: 1px solid #cacccd;
  color: #82888a
}
._1-dUef_BVACjkr4FAuFVlD,
._1-dUef_BVACjkr4FAuFVlD:active,
._1-dUef_BVACjkr4FAuFVlD:hover {
  background: #fff;
  border: 1px solid #e4e7e7;
  color: #cacccd
}
._3n7I7csZ7idTK2ZanBjukz {
  background: #fff;
  text-align: center;
  padding: 0 13px;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
._3hAKeRjIlotk6LEsJTNev8 {
  border-collapse: collapse;
  border-spacing: 0
}
._3k_pLwypv2wlXSI5wJ4eWG {
  border-collapse: separate
}
._2RD4FY1EJnBU-xUofyz3dD {
  color: #484848;
  font-size: 18px;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 37px;
  caption-side: initial
}
._1drQp7W7nxnBJe3y7I7CV2 {
  padding-top: 12px;
  padding-bottom: 7px
}
._1vclbkgp4s0CJDZoLtLIa9 {
  background: #fff;
  text-align: left;
  z-index: 0
}
.Lu1pLswWzhb2vE5_UtHoS {
  z-index: 1
}
._1KHesm1LY4TCvkHVHOhHx {
  position: absolute;
  left: 9px
}
._2t8p_7wx_uVX_tucxbySF9 {
  margin: 0 auto
}
._1CgOpppl7GkF4fWA0PvoYI {
  margin: 0 auto;
  overflow-y: scroll
}
._3oilRwJE-bNLYdaZqB7KPi {
  display: inline-block;
  vertical-align: top;
  min-height: 100%
}
._3E1pN4BKAO-wgQlQCX_yBS {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none
}
.nUZMtm4Epp-eIUimylHIv {
  visibility: hidden
}
._3lHc5Y_ftEDWfIL9gV2_mP {
  position: relative;
  z-index: 2
}
._1SW-pF3FhDI45gj_p0KaGl {
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0,0,0,.1);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 52px;
  width: 100%
}
._1ULNKYz4874PL8gooPLqxE {
  position: relative
}
._39bti_LVL5_igy7NmScLwC {
  cursor: pointer;
  line-height: .78;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
._3Xah9nAwB3yl-DZ5vYfFip {
  border: 1px solid #e4e7e7;
  background-color: #fff;
  color: #757575
}
._3Xah9nAwB3yl-DZ5vYfFip:focus,
._3Xah9nAwB3yl-DZ5vYfFip:hover {
  border: 1px solid #c4c4c4
}
._3Xah9nAwB3yl-DZ5vYfFip:active {
  background: #f2f2f2
}
._3-Z9ZEUx8IUiYZEmMxFOnA {
  border-radius: 3px;
  padding: 6px 9px;
  top: 18px;
  position: absolute
}
._2EYLLerrjn67c0X6TRkr2V {
  left: 22px
}
._3wPjFDL-u-ntgkHse9xSGi {
  right: 22px
}
.hrGI8w_fIe0FPSHL9-sTR {
  display: inline-block;
  position: relative;
  height: 100%;
  width: 50%
}
._2czI3jF_GwMPY0B6xTWP05 {
  padding: 5px
}
._1sM_DYE-QWNu0apbYrzAYQ {
  border-left: 0
}
._2hsqoHNYDK_Hg3eqGrzFYO {
  width: 100%
}
._2wOjru-3r7V8MQzb8BAOVu {
  height: 19px;
  width: 19px;
  fill: #82888a
}
._3MIae8Al5L2P2RZylDySK1 {
  height: 42px;
  width: 42px;
  fill: #484848
}
._20izmoX8U4Di-zdLp6p7jS {
  background: #fff;
  position: relative;
  text-align: left
}
._3WLMrtZ5928nwzbCCEWc2I {
  background: #fff
}
._1XUxPXeWMzRWB4hXfQKXio {
  height: 100%
}
._3QeWzUo95dV4T2klq6n_YN {
  visibility: hidden
}
._309sqU8k_bJPRRAoFq1RS2 {
  box-shadow: 0 2px 6px rgba(0,0,0,.05),0 0 0 1px rgba(0,0,0,.07);
  border-radius: 3px
}
._2Z1DfR-Lyp61Hqh8EXR1Kd {
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%
}
.esK6ueQOntVfftDFuCva {
  position: initial
}
.-goBNPB8nV8RuaZihYJSp {
  outline: 0
}
._1MVavUYa5Kg0sPJZfJstpo,
._3Lu1c8NWeOsd6hvWaSmMPA {
  display: inline-block;
  vertical-align: top
}
.o2POoMcg7v3kYBHrG0D62 {
  position: relative
}
._3s67ndtyKovQKGFVwHmSZV {
  margin-left: 9px
}
._2D2vwlBzIw382em5vEabae {
  color: #757575;
  position: absolute;
  top: 62px;
  z-index: 2;
  padding: 0 13px;
  text-align: left
}
._2TeD766kAG_nxkMgPYL2gI {
  left: 50%
}
._1sjqyCZ8G0BHjAUkQwribH {
  top: 0;
  display: table-row;
  border-bottom: 1px solid #dbdbdb;
  background: #fff;
  margin-left: 0;
  left: 0;
  width: 100%;
  text-align: center
}
._1ftXeORYQAyWnsyUpfTKJO {
  list-style: none;
  margin: 1px 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px
}
._2HB_8l5JVZUhaGDwjR2QVp {
  display: inline-block;
  text-align: center
}
._1DUKxyn2tPwgCnQzFSEO9J {
  position: relative;
  overflow: hidden;
  border-radius: 3px
}
.QmrzwS8XIobF2ex_Tkfca {
  -webkit-transition: height .2s ease-in-out;
  -moz-transition: height .2s ease-in-out;
  transition: height .2s ease-in-out
}
.vt3wp9gc56T-rcbBgyrGT {
  width: 100%
}
._1c9QFqGQOe44p0UKHiWmtJ {
  padding-top: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow-y: scroll
}
._2CJOzzobRPHlTg9ckUL3XJ {
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
  display: inline-block;
  width: 130px;
  vertical-align: middle
}
._3-FNPQDcQ3ifvNDl_yzBnF {
  width: 97px
}
.GpVeIIHWLFi1QF7o48is2 {
  width: 100%
}
.vuPuLcfve0xkWndTwao7q {
  background: #f2f2f2;
  color: #dbdbdb
}
._1O9oElWy8vGnxW0uOMfccL {
  font-weight: 200;
  font-size: 19px;
  line-height: 24px;
  color: #484848;
  background-color: #fff;
  width: 100%;
  padding: 11px 11px 9px;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid transparent;
  border-left: 0;
  border-radius: 0
}
._3R8zo3D4k9PJJPruz1tiBT {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: .2px;
  padding: 7px 7px 5px
}
._2JnXLBv8kd9ZWHm8cf0zuT {
  font-weight: auto
}
._3_g9KiCfCdxRFOrna437yI {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.BpGw9rwvk463qMBsrt2Wd {
  outline: 0;
  background: #fff;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid #008489;
  border-left: 0
}
._16LO99NAy-oPcYftN_dYj7 {
  background: #f2f2f2;
  font-style: italic
}
._2RoG_Qzkcq_rKJYiXPWLLv {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}
._3_0beYPjWQUD4P_lsIpN-T {
  position: absolute;
  width: 20px;
  height: 10px;
  left: 22px;
  z-index: 2
}
._1I9RF0tvMgUKZr5g48r9bi {
  fill: #fff
}
.Rovs8leAL0OUrLpCUFb0w {
  stroke: #dbdbdb;
  fill: transparent
}
._2OhAM-9UcOQUTNOpU9umLA {
  background-color: #fff;
  display: inline-block
}
._3J4FS3k18a7rRXlz0_atN {
  background: #f2f2f2
}
._24F8w6MRF-B7OS2ZFWYGjI {
  border: 1px solid #dbdbdb;
  border-radius: 2px
}
._10YPavxWRGIc_Dtw70XBBc {
  direction: rtl
}
._15-zSK4D_vk5q9UKdn6dZT {
  display: block
}
.iDeCkE3oxWSaDely_74nG {
  padding-right: 30px
}
._2kPIjhoyNp2Jgy4ERv_KDZ {
  display: inline-block;
  vertical-align: middle;
  color: #484848
}
._1Zu-xJcp3dlltyCT4jjCgC {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px
}
._23MlZZwoja9_fZhSlAPBBK {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}
._3Cywg9h8mmnAP6dNjikNz5 {
  padding: 6px
}
.jqk0Soht_CigjV89ZunPR:focus,
.jqk0Soht_CigjV89ZunPR:hover {
  background: #dbdbdb;
  border-radius: 50%
}
.WL8LZ7vziLf_x72pQdi80 {
  visibility: hidden
}
._3cAevj94y7lb5_qipZaKs4 {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}
._2_hEh9RzG8oqLHwwI4ld7i {
  height: 9px
}
._1JM2MEbY53LvKRnyaut4gE {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px
}
._2EJhg-hfT8c8R6MzBtrQY2 {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle
}
._1C_DOT_FSxJiv_S0kQKcK6 {
  position: relative;
  display: inline-block
}
._1TY7fnHFmw_q5wCANPE6oN {
  display: block
}
._2vZVta-95C4oOezC4cuhQU {
  z-index: 1;
  background-color: #fff;
  position: absolute
}
._1RqUYKqHOnveOiPUgvCTWo {
  direction: rtl
}
._2o4xKGGPcwiZhFG9w8yGf6 {
  left: 0
}
._57NlY8b49R_gBbfZ9mN_F {
  right: 0
}
._2QQqQmJacO3KzBECIVjQlY {
  background-color: rgba(0,0,0,.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}
._2i5RRi9qDwlHwR-xXW4Zpy {
  background-color: #fff
}
._2Il_3UmCXtsWKr1tFNmH8o {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}
._2Il_3UmCXtsWKr1tFNmH8o:focus,
._2Il_3UmCXtsWKr1tFNmH8o:hover {
  color: darken(#cacccd,10%);
  text-decoration: none
}
._3N-zYkH6pX_pMCxeLyL0lH {
  height: 15px;
  width: 15px;
  fill: #cacccd
}

/*# sourceMappingURL=bundle-29bff958bcffbcc81249.css.map*/