a.disabled {
  color: #afbed6;
  cursor: not-allowed !important;
}

.air-datepicker-cell.-year-.-other-decade-, .air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}

.air-datepicker-cell.-year-.-other-decade-:hover, .air-datepicker-cell.-day-.-other-month-:hover {
  color: var(--adp-color-other-month-hover);
}

.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade-, .-disabled-.-focus-.air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}

.-selected-.air-datepicker-cell.-year-.-other-decade-, .-selected-.air-datepicker-cell.-day-.-other-month- {
  color: #fff;
  background: var(--adp-background-color-selected-other-month);
}

.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade-, .-selected-.-focus-.air-datepicker-cell.-day-.-other-month- {
  background: var(--adp-background-color-selected-other-month-focused);
}

.-in-range-.air-datepicker-cell.-year-.-other-decade-, .-in-range-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range);
  color: var(--adp-color);
}

.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade-, .-in-range-.-focus-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range-focused);
}

.air-datepicker-cell.-year-.-other-decade-:empty, .air-datepicker-cell.-day-.-other-month-:empty {
  background: none;
  border: none;
}

.air-datepicker-cell {
  border-radius: var(--adp-cell-border-radius);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.air-datepicker-cell.-focus- {
  background: var(--adp-cell-background-color-hover);
}

.air-datepicker-cell.-current- {
  color: var(--adp-color-current-date);
}

.air-datepicker-cell.-current-.-focus- {
  color: var(--adp-color);
}

.air-datepicker-cell.-current-.-in-range- {
  color: var(--adp-color-current-date);
}

.air-datepicker-cell.-disabled- {
  cursor: default;
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-disabled-.-focus- {
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-disabled-.-in-range- {
  color: var(--adp-color-disabled-in-range);
}

.air-datepicker-cell.-disabled-.-current-.-focus- {
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-in-range- {
  background: var(--adp-cell-background-color-in-range);
  border-radius: 0;
}

.air-datepicker-cell.-in-range-:hover, .air-datepicker-cell.-in-range-.-focus- {
  background: var(--adp-cell-background-color-in-range-hover);
}

.air-datepicker-cell.-range-from- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
}

.air-datepicker-cell.-range-to- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0;
}

.air-datepicker-cell.-range-to-.-range-from- {
  border-radius: var(--adp-cell-border-radius);
}

.air-datepicker-cell.-selected- {
  color: #fff;
  border: none;
  background: var(--adp-cell-background-color-selected);
}

.air-datepicker-cell.-selected-.-current- {
  color: #fff;
  background: var(--adp-cell-background-color-selected);
}

.air-datepicker-cell.-selected-.-focus- {
  background: var(--adp-cell-background-color-selected-hover);
}

.air-datepicker-body {
  transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}

.air-datepicker-body.-hidden- {
  display: none;
}

.air-datepicker-body--day-names {
  display: grid;
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  margin: 8px 0 3px;
}

.air-datepicker-body--day-name {
  color: var(--adp-day-name-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}

.air-datepicker-body--day-name.-clickable- {
  cursor: pointer;
}

.air-datepicker-body--day-name.-clickable-:hover {
  color: var(--adp-day-name-color-hover);
}

.air-datepicker-body--cells {
  display: grid;
}

.air-datepicker-body--cells.-days- {
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  grid-auto-rows: var(--adp-day-cell-height);
}

.air-datepicker-body--cells.-months- {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: var(--adp-month-cell-height);
}

.air-datepicker-body--cells.-years- {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: var(--adp-year-cell-height);
}

.air-datepicker-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--adp-border-color-inner);
  min-height: var(--adp-nav-height);
  padding: var(--adp-padding);
  box-sizing: content-box;
}

.-only-timepicker- .air-datepicker-nav {
  display: none;
}

.air-datepicker-nav--title, .air-datepicker-nav--action {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.air-datepicker-nav--action {
  width: var(--adp-nav-action-size);
  border-radius: var(--adp-border-radius);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.air-datepicker-nav--action:hover {
  background: var(--adp-background-color-hover);
}

.air-datepicker-nav--action:active {
  background: var(--adp-background-color-active);
}

.air-datepicker-nav--action.-disabled- {
  visibility: hidden;
}

.air-datepicker-nav--action svg {
  width: 32px;
  height: 32px;
}

.air-datepicker-nav--action path {
  fill: none;
  stroke: var(--adp-nav-arrow-color);
  stroke-width: 2px;
}

.air-datepicker-nav--title {
  border-radius: var(--adp-border-radius);
  padding: 0 8px;
}

.air-datepicker-nav--title i {
  font-style: normal;
  color: var(--adp-nav-color-secondary);
  margin-left: 0.3em;
}

.air-datepicker-nav--title:hover {
  background: var(--adp-background-color-hover);
}

.air-datepicker-nav--title:active {
  background: var(--adp-background-color-active);
}

.air-datepicker-nav--title.-disabled- {
  cursor: default;
  background: none;
}

.air-datepicker-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}

.air-datepicker-button {
  display: inline-flex;
  color: var(--adp-btn-color);
  border-radius: var(--adp-btn-border-radius);
  cursor: pointer;
  height: var(--adp-btn-height);
  border: none;
  background: rgba(255, 255, 255, 0);
}

.air-datepicker-button:hover {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
}

.air-datepicker-button:focus {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
  outline: none;
}

.air-datepicker-button:active {
  background: var(--adp-btn-background-color-active);
}

.air-datepicker-button span {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.air-datepicker-time {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 12px;
  align-items: center;
  position: relative;
  padding: 0 var(--adp-time-padding-inner);
}

.-only-timepicker- .air-datepicker-time {
  border-top: none;
}

.air-datepicker-time--current {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 14px;
  text-align: center;
}

.air-datepicker-time--current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.air-datepicker-time--current-hours, .air-datepicker-time--current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}

.air-datepicker-time--current-hours:after, .air-datepicker-time--current-minutes:after {
  content: "";
  background: var(--adp-background-color-hover);
  border-radius: var(--adp-border-radius);
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.air-datepicker-time--current-hours.-focus-:after, .air-datepicker-time--current-minutes.-focus-:after {
  opacity: 1;
}

.air-datepicker-time--current-ampm {
  text-transform: uppercase;
  align-self: flex-end;
  color: var(--adp-time-day-period-color);
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.air-datepicker-time--row {
  display: flex;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat;
}

.air-datepicker-time--row:first-child {
  margin-bottom: 4px;
}

.air-datepicker-time--row input[type=range] {
  background: none;
  cursor: pointer;
  flex: 1;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-ms-tooltip {
  display: none;
}

.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:hover::-ms-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:focus {
  outline: none;
}

.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-ms-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -webkit-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -moz-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -ms-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  margin-top: calc(var(--adp-time-thumb-size) / 2 * -1);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-moz-range-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-ms-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-ms-fill-lower {
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-ms-fill-upper {
  background: rgba(0, 0, 0, 0);
}

.air-datepicker {
  --adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --adp-font-size: 14px;
  --adp-width: 246px;
  --adp-z-index: 100;
  --adp-padding: 4px;
  --adp-grid-areas: "nav" "body" "timepicker" "buttons";
  --adp-transition-duration: .3s;
  --adp-transition-ease: ease-out;
  --adp-transition-offset: 8px;
  --adp-background-color: #fff;
  --adp-background-color-hover: #f0f0f0;
  --adp-background-color-active: #eaeaea;
  --adp-background-color-in-range: rgba(92, 196, 239, .1);
  --adp-background-color-in-range-focused: rgba(92, 196, 239, .2);
  --adp-background-color-selected-other-month-focused: #8ad5f4;
  --adp-background-color-selected-other-month: #a2ddf6;
  --adp-color: #4a4a4a;
  --adp-color-secondary: #9c9c9c;
  --adp-accent-color: #4eb5e6;
  --adp-color-current-date: var(--adp-accent-color);
  --adp-color-other-month: #dedede;
  --adp-color-disabled: #aeaeae;
  --adp-color-disabled-in-range: #939393;
  --adp-color-other-month-hover: #c5c5c5;
  --adp-border-color: #dbdbdb;
  --adp-border-color-inner: #efefef;
  --adp-border-radius: 4px;
  --adp-border-color-inline: #d7d7d7;
  --adp-nav-height: 32px;
  --adp-nav-arrow-color: var(--adp-color-secondary);
  --adp-nav-action-size: 32px;
  --adp-nav-color-secondary: var(--adp-color-secondary);
  --adp-day-name-color: #ff9a19;
  --adp-day-name-color-hover: #8ad5f4;
  --adp-day-cell-width: 1fr;
  --adp-day-cell-height: 32px;
  --adp-month-cell-height: 42px;
  --adp-year-cell-height: 56px;
  --adp-pointer-size: 10px;
  --adp-poiner-border-radius: 2px;
  --adp-pointer-offset: 14px;
  --adp-cell-border-radius: 4px;
  --adp-cell-background-color-hover: var(--adp-background-color-hover);
  --adp-cell-background-color-selected: #5cc4ef;
  --adp-cell-background-color-selected-hover: #45bced;
  --adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);
  --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
  --adp-btn-height: 32px;
  --adp-btn-color: var(--adp-accent-color);
  --adp-btn-color-hover: var(--adp-color);
  --adp-btn-border-radius: var(--adp-border-radius);
  --adp-btn-background-color-hover: var(--adp-background-color-hover);
  --adp-btn-background-color-active: var(--adp-background-color-active);
  --adp-time-track-height: 1px;
  --adp-time-track-color: #dedede;
  --adp-time-track-color-hover: #b1b1b1;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --adp-time-day-period-color: var(--adp-color-secondary);
  --adp-mobile-font-size: 16px;
  --adp-mobile-nav-height: 40px;
  --adp-mobile-width: 320px;
  --adp-mobile-day-cell-height: 38px;
  --adp-mobile-month-cell-height: 48px;
  --adp-mobile-year-cell-height: 64px;
}

.air-datepicker-overlay {
  --adp-overlay-background-color: rgba(0, 0, 0, .3);
  --adp-overlay-transition-duration: .3s;
  --adp-overlay-transition-ease: ease-out;
  --adp-overlay-z-index: 99;
}

.air-datepicker {
  background: var(--adp-background-color);
  border: 1px solid var(--adp-border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: var(--adp-border-radius);
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, max-content);
  grid-template-areas: var(--adp-grid-areas);
  font-family: var(--adp-font-family), sans-serif;
  font-size: var(--adp-font-size);
  color: var(--adp-color);
  width: var(--adp-width);
  position: absolute;
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease);
  z-index: var(--adp-z-index);
}

.air-datepicker:not(.-custom-position-) {
  opacity: 0;
}

.air-datepicker.-from-top- {
  transform: translateY(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-from-right- {
  transform: translateX(var(--adp-transition-offset));
}

.air-datepicker.-from-bottom- {
  transform: translateY(var(--adp-transition-offset));
}

.air-datepicker.-from-left- {
  transform: translateX(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-active-:not(.-custom-position-) {
  transform: translate(0, 0);
  opacity: 1;
}

.air-datepicker.-active-.-custom-position- {
  transition: none;
}

.air-datepicker.-inline- {
  border-color: var(--adp-border-color-inline);
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  transform: none;
}

.air-datepicker.-inline- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile- {
  --adp-font-size: var(--adp-mobile-font-size);
  --adp-day-cell-height: var(--adp-mobile-day-cell-height);
  --adp-month-cell-height: var(--adp-mobile-month-cell-height);
  --adp-year-cell-height: var(--adp-mobile-year-cell-height);
  --adp-nav-height: var(--adp-mobile-nav-height);
  --adp-nav-action-size: var(--adp-mobile-nav-height);
  position: fixed;
  width: var(--adp-mobile-width);
  border: none;
}

.air-datepicker.-is-mobile- * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.air-datepicker.-is-mobile- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile-:not(.-custom-position-) {
  transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
}

.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
  transform: translate(-50%, -50%);
}

.air-datepicker.-custom-position- {
  transition: none;
}

.air-datepicker-global-container {
  position: absolute;
  left: 0;
  top: 0;
}

.air-datepicker--pointer {
  --pointer-half-size: calc(var(--adp-pointer-size) / 2);
  position: absolute;
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  z-index: -1;
}

.air-datepicker--pointer:after {
  content: "";
  position: absolute;
  background: #fff;
  border-top: 1px solid var(--adp-border-color-inline);
  border-right: 1px solid var(--adp-border-color-inline);
  border-top-right-radius: var(--adp-poiner-border-radius);
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  box-sizing: border-box;
}

.-top-left- .air-datepicker--pointer, .-top-center- .air-datepicker--pointer, .-top-right- .air-datepicker--pointer, [data-popper-placement^=top] .air-datepicker--pointer {
  top: calc(100% - var(--pointer-half-size) + 1px);
}

.-top-left- .air-datepicker--pointer:after, .-top-center- .air-datepicker--pointer:after, .-top-right- .air-datepicker--pointer:after, [data-popper-placement^=top] .air-datepicker--pointer:after {
  transform: rotate(135deg);
}

.-right-top- .air-datepicker--pointer, .-right-center- .air-datepicker--pointer, .-right-bottom- .air-datepicker--pointer, [data-popper-placement^=right] .air-datepicker--pointer {
  right: calc(100% - var(--pointer-half-size) + 1px);
}

.-right-top- .air-datepicker--pointer:after, .-right-center- .air-datepicker--pointer:after, .-right-bottom- .air-datepicker--pointer:after, [data-popper-placement^=right] .air-datepicker--pointer:after {
  transform: rotate(225deg);
}

.-bottom-left- .air-datepicker--pointer, .-bottom-center- .air-datepicker--pointer, .-bottom-right- .air-datepicker--pointer, [data-popper-placement^=bottom] .air-datepicker--pointer {
  bottom: calc(100% - var(--pointer-half-size) + 1px);
}

.-bottom-left- .air-datepicker--pointer:after, .-bottom-center- .air-datepicker--pointer:after, .-bottom-right- .air-datepicker--pointer:after, [data-popper-placement^=bottom] .air-datepicker--pointer:after {
  transform: rotate(315deg);
}

.-left-top- .air-datepicker--pointer, .-left-center- .air-datepicker--pointer, .-left-bottom- .air-datepicker--pointer, [data-popper-placement^=left] .air-datepicker--pointer {
  left: calc(100% - var(--pointer-half-size) + 1px);
}

.-left-top- .air-datepicker--pointer:after, .-left-center- .air-datepicker--pointer:after, .-left-bottom- .air-datepicker--pointer:after, [data-popper-placement^=left] .air-datepicker--pointer:after {
  transform: rotate(45deg);
}

.-top-left- .air-datepicker--pointer, .-bottom-left- .air-datepicker--pointer {
  left: var(--adp-pointer-offset);
}

.-top-right- .air-datepicker--pointer, .-bottom-right- .air-datepicker--pointer {
  right: var(--adp-pointer-offset);
}

.-top-center- .air-datepicker--pointer, .-bottom-center- .air-datepicker--pointer {
  left: calc(50% - var(--adp-pointer-size) / 2);
}

.-left-top- .air-datepicker--pointer, .-right-top- .air-datepicker--pointer {
  top: var(--adp-pointer-offset);
}

.-left-bottom- .air-datepicker--pointer, .-right-bottom- .air-datepicker--pointer {
  bottom: var(--adp-pointer-offset);
}

.-left-center- .air-datepicker--pointer, .-right-center- .air-datepicker--pointer {
  top: calc(50% - var(--adp-pointer-size) / 2);
}

.air-datepicker--navigation {
  grid-area: nav;
}

.air-datepicker--content {
  box-sizing: content-box;
  padding: var(--adp-padding);
  grid-area: body;
}

.-only-timepicker- .air-datepicker--content {
  display: none;
}

.air-datepicker--time {
  grid-area: timepicker;
}

.air-datepicker--buttons {
  grid-area: buttons;
}

.air-datepicker--buttons, .air-datepicker--time {
  padding: var(--adp-padding);
  border-top: 1px solid var(--adp-border-color-inner);
}

.air-datepicker-overlay {
  position: fixed;
  background: var(--adp-overlay-background-color);
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
  transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
  z-index: var(--adp-overlay-z-index);
}

.air-datepicker-overlay.-active- {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s;
}

.editor {
  border: 1px solid #c9d8db;
  float: left;
  margin-top: 30px;
  position: relative;
  width: 100%;
}

.editor__body {
  border: 0;
  float: left;
  min-height: 400px;
  outline: none;
  padding: 15px;
  resize: none;
  width: 100%;
}

.editor__body a {
  color: #00a1ff;
  cursor: pointer;
  text-decoration: underline;
}

.editor__body ol,
.editor__body ul {
  padding-left: 30px;
}

.editor__body ol {
  list-style: circle;
}

.editor__body ol {
  list-style: decimal;
}

.editor__button {
  background-color: transparent;
  border: none;
  color: #999;
  cursor: pointer;
  float: left;
  font-size: 15px;
  height: 40px;
  line-height: 41px;
  outline: none;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  min-width: 50px;
}

.editor__button::after {
  background: #ccc;
  content: "";
  float: right;
  height: 15px;
  margin-left: 15px;
  margin-top: 12px;
  width: 1px;
}

.editor__button:active,
.editor__button--selected {
  color: #369;
}

.editor__button:hover {
  color: #000;
}

.editor__toolbar {
  border-bottom: 1px solid #eee;
  float: left;
  padding-left: 7px;
  width: 100%;
}

.flipy__content {
  display: none;
}

.flipy__trigger {
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 20px;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(45deg);
  transition-duration: 0.3s;
  transition-property: transform;
}

.flipy__trigger:hover {
  background-color: rgba(175, 190, 214, 0.2);
}

.flipy__trigger::after {
  border-bottom: 2px solid #0065e1;
  border-right: 2px solid #0065e1;
  content: "";
  height: 8px;
  position: absolute;
  width: 8px;
}

.flipy__trigger--opened {
  transform: rotate(-135deg);
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide--rtl {
  direction: rtl;
}

@media only screen and (min-width: 640px) {
  #notify {
    right: 0;
    top: 20px;
    width: 340px;
  }
}
#notify > div {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #e7e7e7;
  border-bottom: 5px solid #0065e1;
  border-radius: 3px;
  cursor: pointer;
  display: none;
  margin: 7px;
  padding: 10px;
  position: relative;
  transition: background-color 0.2s ease;
  width: calc(100% - 10px - 10px);
}

#notify > div:hover {
  background-color: white;
}

#notify > div.notify-image {
  padding-left: 69px;
}

#notify i {
  color: #fefefe;
  font-size: 17px;
  opacity: 0.4;
  padding: 14px;
  position: absolute;
  right: 0;
  text-shadow: none;
  top: 0px;
}

#notify img {
  border-radius: 2px;
  height: 48px;
  left: 12px;
  position: absolute;
  top: 12px;
  width: 48px;
}

#notify p {
  word-wrap: break-word;
  color: #575757;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.7px;
  margin-bottom: 0;
  margin-top: 0;
  padding-right: 25px;
}

#notify strong {
  color: #575757;
  display: block;
  margin-bottom: 5px;
}

#notify .details {
  font-size: 13px;
  margin-top: 10px;
  text-align: right;
}

#notify .details a {
  color: rgba(87, 87, 87, 0.8);
  cursor: help;
  padding: 5px;
  text-decoration: underline;
  transition: color 0.2s ease-out;
}

#notify .details a:hover {
  color: #575757;
}

#notify .details div {
  background-color: #fefefe;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  color: #444;
  cursor: text;
  display: none;
  margin-top: 10px;
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
  text-align: left;
}

.tippy-box[data-placement^=top] > .tippy-svg-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-svg-arrow:after,
.tippy-box[data-placement^=top] > .tippy-svg-arrow > svg {
  top: 16px;
  transform: rotate(180deg);
}

.tippy-box[data-placement^=bottom] > .tippy-svg-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-svg-arrow > svg {
  bottom: 16px;
}

.tippy-box[data-placement^=left] > .tippy-svg-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-svg-arrow:after,
.tippy-box[data-placement^=left] > .tippy-svg-arrow > svg {
  transform: rotate(90deg);
  top: calc(50% - 3px);
  left: 11px;
}

.tippy-box[data-placement^=right] > .tippy-svg-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-svg-arrow:after,
.tippy-box[data-placement^=right] > .tippy-svg-arrow > svg {
  transform: rotate(-90deg);
  top: calc(50% - 3px);
  right: 11px;
}

.tippy-svg-arrow {
  width: 16px;
  height: 16px;
  fill: #333;
  text-align: initial;
}

.tippy-svg-arrow,
.tippy-svg-arrow > svg {
  position: absolute;
}

.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  transition-property: transform, visibility, opacity;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

.ts-control {
  border: 1px solid #d0d0d0;
  border-color: #afbed6;
  border-radius: 4px 4px 0 0;
  border-style: solid;
  box-shadow: none;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  min-height: 44px;
  overflow: hidden;
  padding: 8px 8px;
  position: relative;
  transition: border-opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.ts-wrapper.multi.has-items .ts-control {
  padding: 6px 8px 3px;
}

.full .ts-control {
  background-color: #fff;
}

.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}

.focus .ts-control {
  box-shadow: none;
}

.ts-control > * {
  display: inline-block;
  vertical-align: baseline;
}

.ts-wrapper.multi .ts-control > div {
  background: #f2f2f2;
  border: 0 solid #d0d0d0;
  border-radius: 3px;
  color: #303030;
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
}

.ts-wrapper.multi .ts-control > div.active {
  background: #e8e8e8;
  border: 0 solid #cacaca;
  color: #303030;
}

.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  background: white;
  border: 0 solid white;
  color: rgb(124.5, 124.5, 124.5);
}

.ts-control > input {
  background: none !important;
  border: 0 none !important;
  display: inline-block !important;
  flex: 1 1 auto;
  line-height: inherit !important;
  margin: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  min-height: 0 !important;
  min-width: 7rem;
  padding: 0 !important;
  text-indent: 0 !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  box-shadow: none !important;
  user-select: auto !important;
}

.ts-control > input::-ms-clear {
  display: none;
}

.ts-control > input:focus {
  outline: none !important;
}

.has-items .ts-control > input {
  margin: 0 4px !important;
}

.ts-control.rtl {
  text-align: right;
}

.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}

.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}

.disabled .ts-control {
  background-color: #fafafa;
  opacity: 0.5;
}

.input-hidden .ts-control > input {
  left: -10000px;
  opacity: 0;
  position: absolute;
}

.ts-dropdown {
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 0 0 3px 3px;
  border-top: 0 none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  left: 0;
  margin: 0.25rem 0 0;
  position: absolute;
  top: calc(100% - 4px);
  width: 100%;
  z-index: 10;
}

.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 5px 8px;
}

.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}

.ts-dropdown [data-selectable].option {
  cursor: pointer;
  opacity: 1;
}

.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.ts-dropdown .optgroup-header {
  background: #fff;
  color: #303030;
  cursor: default;
}

.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

.ts-dropdown .active.create {
  color: #495c68;
}

.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.ts-dropdown .spinner {
  display: inline-block;
  height: 30px;
  margin: 5px 8px;
  width: 30px;
}

.ts-dropdown .spinner::after {
  animation: lds-dual-ring 1.2s linear infinite;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  border-radius: 50%;
  content: " ";
  display: block;
  height: 24px;
  margin: 3px;
  width: 24px;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ts-dropdown-content {
  max-height: 200px;
  overflow: hidden auto;
  scroll-behavior: smooth;
}

.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}

.ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}

.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}

.plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}

/* stylelint-disable function-name-case */
.plugin-clear_button {
  --ts-pr-clear-button: 1em;
}

.plugin-clear_button .clear-button {
  background: transparent !important;
  cursor: pointer;
  margin-right: 0 !important;
  opacity: 0;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
}

.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
  right: max(var(--ts-pr-caret), 8px);
}

.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}

.ts-wrapper .dropdown-header {
  background: color-mix(#fff, #d0d0d0, 85%);
  border-bottom: 1px solid #d0d0d0;
  border-radius: 3px 3px 0 0;
  padding: 10px 8px;
  position: relative;
}

.ts-wrapper .dropdown-header-close {
  color: #303030;
  font-size: 20px !important;
  line-height: 20px;
  margin-top: -12px;
  opacity: 0.4;
  position: absolute;
  right: 8px;
  top: 50%;
}

.ts-wrapper .dropdown-header-close:hover {
  color: black;
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  border: 1px solid #d0d0d0;
  box-shadow: none;
}

.plugin-dropdown_input .dropdown-input {
  background: transparent;
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px;
  box-shadow: none;
  display: block;
  padding: 8px 8px;
  width: 100%;
}

.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
  width: 100%;
}

.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-ms-input-placeholder {
  color: transparent;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}

.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
}

.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.ts-dropdown.plugin-optgroup_columns .optgroup::before {
  display: none;
}

.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.ts-wrapper.plugin-remove_button .item {
  align-items: center;
  display: inline-flex;
}

.ts-wrapper.plugin-remove_button .item .remove {
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
  color: inherit;
  display: inline-block;
  padding: 0 6px;
  text-decoration: none;
  vertical-align: middle;
}

.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}

.ts-wrapper.plugin-remove_button .remove-single {
  font-size: 23px;
  position: absolute;
  right: 0;
  top: 0;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #d0d0d0;
  margin-left: 6px;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #cacaca;
}

.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: white;
}

.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}

.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #d0d0d0;
  margin-right: 6px;
}

.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #cacaca;
}

.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: white;
}

:root {
  --ts-pr-clear-button: 0px;
  --ts-pr-caret: 0px;
  --ts-pr-min: .75rem;
}

.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}

.ts-control:not(.rtl) {
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-control.rtl {
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-wrapper {
  position: relative;
}

.ts-dropdown,
.ts-control,
.ts-control input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}

.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.container {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 16px;
  width: 100%;
}

.container::after {
  clear: both;
  content: "";
  display: block;
}

form .container--form {
  border-radius: 8px;
}

.container--without-cover {
  margin-top: 60px;
}

.container--form-with-avatar {
  margin-top: 64px;
}

.container--small {
  max-width: 530px;
}

@media only screen and (min-width: 640px) {
  .container {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 960px) {
  .container--without-cover {
    margin-top: 60px;
  }
  .container--medium {
    max-width: 800px;
  }
}
.grid-container::after {
  clear: both;
  content: "";
  display: block;
}

.grid__collapse {
  margin-left: -16px;
  margin-right: -16px;
  width: calc(100% + 32px);
}

.padding {
  padding: 16px;
}

@media only screen and (min-width: 960px) {
  .padding {
    padding: 0;
  }
}
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.rating {
  display: flex;
  float: left;
  width: auto;
}

.rating img {
  float: left;
  height: 16px;
  width: 16px;
  margin-right: 10px;
}

.rating img:last-child {
  margin-right: 0;
}

.rating__skill {
  font-size: 13px;
  padding-right: 0;
  width: 50%;
}

.avatar img {
  width: 100%;
}

.avatar--event {
  max-width: 288px;
  width: 100% !important;
}

.avatar--form {
  position: absolute;
}

.avatar--left {
  left: 0;
  margin: 10px 0;
  position: absolute;
}

@media only screen and (min-width: 640px) {
  .avatar--left {
    margin: -45px auto 0;
    right: 0;
  }
}
.avatar--square {
  border-radius: 4px;
}

.avatar__wrapper {
  background-color: #ccc;
  height: 96px;
  margin: -65px auto 0;
  position: relative;
  width: 96px;
}

.avatar__wrapper--rounded {
  border-radius: 50%;
}

.avatar__wrapper--square {
  border-radius: 4px;
}

.avatar__wrapper .photos__preview__loading {
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  color: #666;
  left: -10px;
  z-index: 1;
}

.avatar__wrapper .photos__preview__loading.visible {
  display: flex;
}

.avatar__wrapper .upload__button {
  position: absolute;
  right: 3px;
  top: 3px;
  z-index: 1;
}

.avatar__wrapper--field {
  margin: 0;
}

.avatar__wrapper--field .upload__button {
  right: 10px;
  top: 10px;
}

.avatar__wrapper--field .avatar {
  border: 0;
}

.button--grow {
  width: 100%;
}

@media only screen and (min-width: 640px) {
  .button--grow {
    max-width: 280px;
  }
}
:root {
  --graycom: #afbed6 ;
}

.toggle__button svg {
  fill: var(--graycom);
  height: 32px;
  width: 32px;
}

.button:disabled {
  background-color: #afbed6;
  color: #fff;
}

.button:disabled:hover {
  cursor: not-allowed;
}

.button--disabled {
  background-color: #afbed6;
  color: #fff;
}

.button--disabled:hover {
  cursor: not-allowed;
}

.button--medium {
  padding: 15px;
}

.button--outline {
  background-color: #fff;
  border: 1px solid #e9e9e9;
}

.button--outline:hover {
  background-color: #efefef;
}

.button--print {
  background-color: #aaa;
  border: 1px solid #e9e9e9;
  color: #fff;
}

.button--print:hover {
  background-color: #999;
  color: #fff;
}

.button--short {
  font-size: 12px;
  padding: 7px 12px;
}

.button--fluid {
  width: 100%;
}

.button--raise {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.button--round {
  border-radius: 100px;
}

.button--facebook {
  background-color: #4b64a6;
  color: #fff;
}

.button--facebook:hover {
  background-color: #1940a6;
  color: #fff;
}

.button--center {
  margin-left: auto;
  margin-right: auto;
}

.button--line {
  margin-left: auto;
  margin-right: auto;
}

.button--line::before {
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: -1;
}

.button--wide {
  padding-left: 60px;
  padding-right: 60px;
}

.button--link {
  background-color: transparent;
  color: rgba(0, 101, 225, 0.75);
  font-size: 12px;
  padding: inherit;
  transition: color ease-in-out 0.1s;
}

.button--link:hover {
  background-color: transparent;
}

.button--tag {
  border: none;
  cursor: pointer;
}

.button__text {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.button__icon {
  display: inline-block;
  vertical-align: middle;
}

.by {
  color: rgba(0, 0, 0, 0.4);
  font-size: 11px;
  font-style: italic;
  margin-top: 16px;
  text-align: center;
}

.card--no-over .card__content:hover {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.card__sub-title {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-style: italic;
  line-height: 20px;
  margin-top: 16px;
}

.card__footer .card__icon {
  height: 16px;
  margin-right: 5px;
  width: 16px;
}

.card__rating,
.card__comments,
.card__likes {
  align-items: center;
  display: flex;
}

.card__rating span,
.card__comments span,
.card__likes span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
}

.card-list {
  color: #575757;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.card-list__item {
  display: inline-block;
  line-height: 20px;
}

.card-list__item--categories {
  font-weight: 600;
}

.card-list__item:not(:first-child)::before {
  content: "-";
  margin-right: 4px;
}

.card-list--dash__item:not(:first-child)::before {
  content: "-";
  margin-right: 4px;
}

.comment__card {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  display: block;
  margin-top: 20px;
  padding: 20px;
}

.comment__card--active {
  border: 1px solid #afbed6;
  box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.1);
}

.comment__person-info {
  align-items: center;
  display: flex;
}

.comment__avatar {
  background-color: #afbed6;
  border-radius: 50%;
  display: inline-block;
  height: 32px;
  margin-right: 5px;
  vertical-align: top;
  width: 32px;
}

.comment__profile {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}

.comment__name {
  color: rgba(0, 0, 0, 0.6);
}

.comment__date {
  color: rgba(0, 0, 0, 0.4);
  display: block;
  font-weight: 500;
  line-height: 9px;
  margin-top: 4px;
}

.comment__content {
  word-wrap: break-word;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 1.3;
  margin-top: 10px;
  white-space: pre-line;
}

.comment__actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.comment__rate {
  display: flex;
}

.comment__like,
.comment__dislike {
  align-items: center;
  display: flex;
}

.comment__like span,
.comment__dislike .voting_button {
  margin-top: 7px;
}

.comment__like span,
.comment__dislike span {
  background-color: #fafafa;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-right: 7px;
  margin-top: 5px;
  padding: 4px 7px;
}

.comment__dislike {
  margin-left: 10px;
}

.comment__replies {
  margin: 0;
  padding-left: 20px;
}

.comment__replies .comment__card {
  margin-top: 10px;
  padding: 16px;
}

.comment__reply {
  color: rgba(175, 190, 214, 0.9);
  font-size: 12px;
  font-weight: 500;
  margin-left: 20px;
  margin-top: 6px;
  text-transform: uppercase;
}

.comment__answer {
  border-top: 1px solid rgba(87, 87, 87, 0.1);
  margin-left: -20px;
  margin-right: -20px;
  padding: 10px 20px 0;
}

.comment__more-answer {
  border-top: 1px solid rgba(87, 87, 87, 0.1);
  margin-left: -20px;
  margin-right: -20px;
  padding: 20px 20px 0;
}

.comment__more-answer span {
  color: #0065e1;
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.17;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.comment__replying-to {
  align-items: center;
  display: none;
  font-size: 13px;
  justify-content: space-between;
  margin-top: 10px;
}

.comment__replying-to--active {
  display: flex;
}

.comment__replying-to a {
  display: inline-block;
  margin-top: 4px;
}

.dashboard__link {
  display: block;
  margin-top: 6px;
  text-align: center;
}

.dashboard__notification {
  margin-top: 20px;
  text-align: center;
}

.dashboard__welcome {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}

.text-overdue {
  color: #d81e50;
  font-weight: bold;
}

.footer__content {
  display: block;
  padding: 24px 0;
}

@media only screen and (min-width: 960px) {
  .footer__content {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
.footer__summary {
  display: block;
  width: 100%;
}

@media only screen and (min-width: 960px) {
  .footer__summary {
    display: flex;
    height: 36px;
    width: auto;
  }
}
.footer__logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 125px;
}

.footer__link {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (min-width: 960px) {
  .footer__link {
    display: inline-block;
    line-height: 32px;
    margin-bottom: 0;
    margin-left: 20px;
  }
}
.footer__links {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

@media only screen and (min-width: 960px) {
  .footer__links {
    display: flex;
    flex-flow: wrap;
    margin: 0 16px 0 16px;
  }
}
.footer__socials {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer__social {
  display: inline-block;
  margin-right: 5px;
}

.footer__social:last-child {
  margin-right: 0;
}

.footer__social:hover {
  opacity: 0.7;
}

.grid__cancel-link,
.grid__create-button {
  width: calc(50% - 24px);
  float: left;
  margin-left: 16px;
}

.form_actions {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.form_actions .button {
  width: calc(50% - 16px);
}

.form_actions .button:first-child {
  margin-left: 0;
}

.form__checkbox {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.form__checkbox:checked + .form__label-checkbox::after {
  opacity: 1;
}

.form__label-checkbox {
  color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  height: 24px;
  line-height: 1.3;
  padding: 4px 0 5px 34px;
  position: relative;
}

.form__label-checkbox:hover {
  cursor: pointer;
}

.panel__body .form__label-checkbox {
  margin-bottom: 8px;
}

.form__checkbox:disabled + .form__label-checkbox {
  color: #bbb;
  cursor: default;
}

.form__checkbox:disabled + .form__label-checkbox::after {
  border-bottom-color: rgba(0, 101, 225, 0.59);
  border-right-color: rgba(0, 101, 225, 0.59);
}

.form__checkbox:disabled + .form__label-checkbox:hover::before {
  border-color: rgba(0, 0, 0, 0.1);
}

.form__label-checkbox::before {
  background-color: #fff;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  top: 0;
  transition: border ease-in-out 0.1s;
  width: 22px;
}

.form__label-checkbox:hover::before {
  border: solid 1px #0065e1;
}

.form__label-checkbox::after {
  border-bottom: 3px solid #0065e1;
  border-right: 3px solid #0065e1;
  content: "";
  height: 12px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 3px;
  transform: rotate(45deg);
  width: 8px;
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
}

.form__error {
  border: 1px solid #9b0c0c;
}

.form__error--list {
  background-color: #c59494;
  border-radius: 3px;
  color: white;
  list-style: none;
  margin-top: 24px;
  padding: 10px;
}

.form__error--list li {
  margin-top: 4px;
}

.form__error--list li:first-child {
  margin-top: 0;
}

.form-field {
  margin-top: 28px;
  vertical-align: top;
}

.form-field--first {
  margin-top: 0;
}

.form-field ~ .form__field {
  padding-right: 30px;
}

.form-field--fluid {
  width: 100%;
}

.form-fieldset {
  border: 0;
  padding: 0;
}

.form-fieldset ~ .form-fieldset {
  margin-top: 40px;
}

.form__input:disabled,
.form__input__disabled {
  background-color: #fafafa;
}

.form__input:disabled:hover,
.form__input__disabled:hover {
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
}

.form__input--clean {
  border: 0;
  border-radius: 0;
}

.form__input--fluid {
  width: 100%;
}

.form__input--flush {
  background-image: linear-gradient(to bottom, #fff 5%, #fff 49%, rgba(0, 0, 0, 0.05) 99%);
}

.form__input--short {
  height: 44px;
  line-height: 1;
}

.form__links {
  text-align: center;
  margin-top: 30px;
}

.form__links__link {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
}

.form__radio {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.form__radio__option {
  margin-bottom: 10px;
}

.form__radio:checked + .form__label-radio::after {
  opacity: 1;
}

.form__label-radio {
  color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  height: 24px;
  line-height: 1.3;
  padding: 4px 0 5px 34px;
  position: relative;
  width: 100%;
}

.form__label-radio:hover {
  cursor: pointer;
}

.form__radio:disabled + .form__label-radio {
  color: #bbb;
  cursor: default;
}

.form__radio:disabled + .form__label-radio::after {
  border-bottom-color: rgba(0, 101, 225, 0.59);
  border-right-color: rgba(0, 101, 225, 0.59);
}

.form__radio:disabled + .form__label-radio:hover::before {
  border-color: rgba(0, 0, 0, 0.1);
}

.form__label-radio::before {
  background-color: #fff;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  top: 0;
  transition: border ease-in-out 0.1s;
  width: 22px;
}

.form__label-radio:hover::before {
  border: solid 1px #0065e1;
}

.form__label-radio::after {
  background-color: #0065e1;
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 5px;
  opacity: 0;
  position: absolute;
  top: 5px;
  width: 12px;
}

.form__tip {
  margin-top: 3px;
  font-size: 11px;
  color: #575757;
}

.grade-tree__header {
  align-items: center;
  background-color: #fff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  margin-bottom: 1px;
  overflow: hidden;
  padding-left: 1px;
  padding-right: 1px;
}

.grade-tree__button {
  background-color: transparent;
  border-bottom: 3px solid #fff;
  border: 0;
  color: #575757;
  cursor: pointer;
  float: left;
  font-size: 12px;
  font-weight: bold;
  outline: inherit;
  padding-bottom: 16px;
  padding-top: 16px;
  text-transform: uppercase;
  transition: color, border 0.3s ease;
  width: 100%;
}

.grade-tree__button--active {
  border-bottom: 3px solid #0065e1;
  color: #0065e1;
}

.grade-tree__button--disabled {
  color: rgba(0, 0, 0, 0.2);
  cursor: default;
}

.grade-tree__content {
  background-color: #fff;
  border-top: 0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.grade-tree__content--active {
  display: block;
}

.grade-tree__section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-start;
  min-height: 67px;
  padding-right: 38px;
}

.grade-tree__hour-section {
  align-items: center;
  background-color: rgba(175, 190, 214, 0.3);
  color: #455876;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 25%;
}

.grade-tree__hour {
  font-weight: bold;
  line-height: 0.78;
}

.grade-tree__hour--small {
  font-size: 12px;
  font-weight: normal;
  margin-top: 8px;
}

@media only screen and (min-width: 640px) {
  .grade-tree__hour--small {
    margin-top: 5px;
  }
}
.grade-tree__lessons {
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-bottom: 4px;
  padding-left: 16px;
  padding-top: 4px;
}

.grade-tree__lesson {
  color: #575757;
  display: inline;
  font-size: 14px;
  margin-bottom: 4px;
  margin-right: 16px;
  margin-top: 4px;
}

.grade-tree__lesson-type {
  color: #0065e1;
}

.icon-remove {
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #bbb;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);
  color: #c83265;
  cursor: pointer;
  display: inline-block;
  font-size: 23px;
  font-style: normal;
  line-height: 0.5;
  min-height: 32px;
  min-width: 32px;
  padding: 7.5px 0;
  text-align: center;
  transition: box-shadow 0.2s ease-in-out;
  z-index: 1;
}

.icon-remove:hover {
  box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.1);
}

.credit {
  overflow: hidden;
}

.credit__amount,
.credit__payment-method {
  float: left;
  width: 100%;
}

.credit__body {
  margin: 20px auto 0;
}

@media only screen and (min-width: 640px) {
  .credit__body {
    width: 550px;
  }
}
.credit__buttons {
  float: right;
  margin-top: 20px;
  width: 100%;
}

@media only screen and (min-width: 640px) {
  .credit__buttons {
    margin-top: 26px;
    width: 130px;
  }
}
@media only screen and (min-width: 640px) {
  .credit__fields {
    float: left;
    width: 415px;
  }
}
.credit__fields .form-field {
  float: left;
  width: 100%;
}

@media only screen and (min-width: 640px) {
  .credit__fields .form-field {
    margin-top: 0;
    width: auto;
  }
  .credit__fields .form-field:last-child {
    margin-left: 16px;
    width: 150px;
  }
}
@media only screen and (min-width: 640px) {
  .credit__payment-method {
    width: 220px;
  }
}
.dashboard__resume .avatar {
  display: block;
  margin: 0 auto;
}

.dashboard__resume__body {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

.dashboard__resume__subtitle {
  align-self: center;
  color: rgba(0, 0, 0, 0.8);
  display: flex;
  font-size: 12px;
  text-align: center;
}

.dashboard__resume__subtitle img {
  margin-right: 3px;
  vertical-align: middle;
}

.dashboard__resume__subtitle span {
  vertical-align: middle;
}

.dashboard__resume__title {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 700;
  text-align: center;
}

@media only screen and (min-width: 640px) {
  .dashboard__resume .avatar {
    float: left;
  }
  .dashboard__resume__body {
    margin-top: 10px;
    padding-left: 16px;
  }
  .dashboard__resume__subtitle {
    align-self: initial;
  }
  .dashboard__resume__title {
    text-align: left;
  }
}
.dashboard__enrollment {
  margin-top: 8px;
}

.dashboard__enrollment:first-child {
  margin-top: 0;
}

@media only screen and (min-width: 640px) {
  .dashboard__enrollment {
    align-items: center;
    display: flex;
    margin-top: 0;
    padding: 0 16px;
  }
}
.grid__search__city {
  width: calc(66.6666666667% - 26.666666664px);
  float: left;
  margin-left: 16px;
}

.grid__search__fields {
  margin-left: -16px;
  margin-right: -16px;
  width: calc(100% + 32px);
}

.grid__search__neighborhood {
  width: calc(100% - 32px);
  float: left;
  margin-left: 16px;
}

.grid__search__uf {
  width: calc(33.3333333333% - 21.3333333333px);
  float: left;
  margin-left: 16px;
}

.grid--search-body {
  width: calc(100% - 32px);
  float: left;
  margin-left: 16px;
}

@media only screen and (min-width: 960px) {
  .grid--search-body {
    float: left;
    margin-left: 0;
    width: 66.6666666667%;
  }
}
.grid--list__filter {
  float: left;
  width: 33.3333333333%;
}

@media only screen and (min-width: 640px) {
  .stats__calendar {
    width: calc(50% - 24px);
    float: left;
    margin-left: 16px;
  }
}
.stats__calendar .month-calendar {
  margin-left: -16px;
  margin-right: -16px;
  width: calc(100% + 32px);
  float: left;
}

@media only screen and (min-width: 640px) {
  .stats__calendar .month-calendar {
    margin-top: 5px;
  }
  .stats__calendar .month-calendar .form__label {
    display: inline-block;
    margin-right: 10px;
    width: auto;
  }
}
.stats__calendar .month-calendar .form__input {
  width: 100%;
}

@media only screen and (min-width: 640px) {
  .stats__calendar .month-calendar .form__input {
    display: inline-block;
  }
}
.stats__calendar .month-calendar .grid__month-calendar__year,
.stats__calendar .month-calendar .grid__month-calendar__month {
  width: calc(50% - 24px);
  float: left;
  margin-left: 16px;
}

.stats__enrollments {
  width: calc(100% - 32px);
  float: left;
  margin-left: 16px;
}

@media only screen and (min-width: 640px) {
  .stats__main .stats__panel {
    width: calc(50% - 24px);
    float: left;
    margin-left: 16px;
  }
}
.stats__panel {
  display: flex;
  flex-wrap: wrap;
}

.stats__panel__body {
  color: white;
}

.stats__panel__card {
  width: calc(100% - 32px);
  float: left;
  margin-left: 16px;
  background-color: #428bca;
  border-color: #428bca;
  border-radius: 3px;
  color: white;
  margin-top: 20px;
  padding: 18px 20px 20px 20px;
  position: relative;
}

.stats__panel__description {
  font-size: 13px;
  margin-top: 16px;
  text-align: center;
  white-space: pre-line;
  word-wrap: break-word;
}

.stats__panel__divider {
  border-top: 1px solid #eee;
  border-width: 2px;
  color: white;
  margin: 15px 0 0 0;
  opacity: 0.3;
}

.stats__panel__footer {
  overflow: hidden;
}

.stats__panel__icon {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  color: white;
  float: left;
  height: 60px;
  margin-right: 15px;
  text-align: center;
  width: 60px;
}

.stats__panel__left {
  float: left;
  min-width: 135px;
}

.stats__panel__right {
  float: right;
  min-width: 135px;
}

.stats__panel__row {
  float: left;
  width: 100%;
}

.stats__panel__subtitle {
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 5px;
  opacity: 0.6;
  text-transform: uppercase;
}

.stats__panel__subvalue {
  font-size: 18px;
  margin: 0;
}

.stats__panel__title {
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 5px;
  margin-top: 5px;
  opacity: 0.6;
  text-transform: uppercase;
}

.stats__panel__value {
  font-size: 28px;
}

@media only screen and (min-width: 640px) {
  .stats__secondary .stats__panel__card {
    width: calc(50% - 24px);
    float: left;
    margin-left: 16px;
  }
}
.invoice__error {
  color: #9b0c0c;
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

.invoice__error--global {
  background-color: #c59494;
  border-radius: 3px;
  clear: both;
  color: #fff;
  display: none;
  float: left;
  font-size: 14px;
  margin-left: 16px;
  margin-top: 16px;
  padding: 8px;
  text-align: center;
  width: calc(100% - 32px);
}

.barcode-image {
  display: none;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (min-width: 640px) {
  .barcode-image {
    display: block;
  }
}
.barcode {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-align: center;
}

.invoice__submit {
  float: right;
  margin-right: 8px;
  margin-top: 20px;
}

@media only screen and (min-width: 960px) {
  .invoice__submit {
    margin-right: 16px;
  }
}
.heart {
  background-position: 0 0;
  background-repeat: no-repeat;
  cursor: pointer;
  display: flex;
  height: 100px;
  opacity: 0.9;
  transform: translate(-50%, -50%);
  transition: background 1s steps(28);
  width: 100px;
}

.heart:hover {
  opacity: 1;
}

.heart--clicked {
  animation: fave-heart 1s steps(28);
}

.heart--on {
  background-position: -2800px 0;
}

.heart--off {
  background-position: 0;
}

.login__logo {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 196px;
}

.map__content {
  height: 100%;
  width: 100%;
}

.map__container {
  height: 200px;
  width: 100%;
}

.map__address {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.map__address__marker {
  height: 16px;
  width: 16px;
}

.map__address__text {
  font-size: 14px;
  margin-top: 0;
  margin-left: 20px;
}

.menu__user {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu__user a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu__profile {
  color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  font-size: 13px;
  line-height: 1.3;
}

.menu__logout {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu__body {
  display: inline-block;
  width: calc(100% - 64px);
}

.navbar--pinned {
  position: fixed;
}

.navbar__container {
  position: relative;
}

@media only screen and (min-width: 960px) {
  .navbar__container {
    margin: 0 auto;
    max-width: 1180px;
    width: 100%;
  }
}
.navbar__content {
  align-items: center;
  display: flex;
  height: 50px;
  margin-left: 16px;
  margin-right: 16px;
  position: relative;
}

@media only screen and (min-width: 960px) {
  .navbar__content {
    height: 80px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
.navbar__logo {
  display: flex;
}

.navbar__logo img {
  height: 24px;
}

@media only screen and (min-width: 960px) {
  .navbar__logo img {
    height: 40px;
  }
}
.navbar__menu {
  position: absolute;
  right: 0;
}

.navbar__menu .button:hover {
  background-color: #015ac8;
  border: 1px solid #015ac8;
  color: #fff;
}

.navbar__menu .button span {
  display: inline-block;
}

.navbar__nav {
  border-top: 1px solid rgba(87, 87, 87, 0.15);
  display: flex;
  height: 100%;
  min-height: 41px;
  top: 0;
  width: 100%;
}

@media only screen and (min-width: 960px) {
  .navbar__nav {
    border-top: 0;
    left: 224px;
    min-height: 80px;
    position: absolute;
    width: auto;
  }
}
.navbar__search {
  overflow: hidden;
}

.options {
  align-items: center;
  display: flex;
  min-height: 100%;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

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

.options__link {
  display: flex;
  min-height: 100%;
}

.options__button {
  align-items: center;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  color: #575757;
  display: flex;
  font-size: 9px;
  font-weight: 700;
  min-height: 100%;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
}

@media only screen and (min-width: 960px) {
  .options__button {
    font-size: 14px;
    padding: 0 22px;
  }
}
.options__button--active {
  border-color: #0065e1;
  color: #0065e1;
}

.options__button:hover {
  color: #0065e1;
  cursor: pointer;
}

.owner {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.page-header {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  width: 100%;
  z-index: 0;
}

@media only screen and (min-width: 960px) {
  .page-header {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .page-header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 960px) {
  .page-header__title {
    font-size: 48px;
    line-height: normal;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.page-header__title small {
  color: #575757;
  display: block;
  font-size: 20px;
  font-weight: 100;
  line-height: 18px;
  margin-top: 5px;
}

.page-header__title--small small {
  font-size: 16px;
}

.page-header__title--session {
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .page-header__title--small {
    font-size: 24px;
  }
}
.pagination {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  text-align: center;
}

.pagination .pagination__item {
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #afbed6;
  color: #0065e1;
  display: inline-block;
  margin-left: 5px;
}

.pagination .pagination__item--active {
  background-color: #0065e1;
  border: 1px solid #0065e1;
  color: #fff;
}

.pagination .pagination__item:first-child {
  margin-left: 0;
}

.pagination .pagination__item:hover {
  border: 1px solid #0065e1;
}

.pagination .pagination__link {
  color: inherit;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 13px;
}

.pagination .pagination__link--left::before {
  content: "<";
}

.pagination .pagination__link--right::before {
  content: ">";
}

.grid__panel {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  float: left;
  margin-bottom: 16px;
  margin-left: 16px;
  width: calc(100% - 32px);
}

.grid__panel__body {
  padding: 16px;
}

.grid__panel__body [data-checkbox] {
  padding: 4px 0;
}

.grid__panel__divider {
  border-bottom: 1px solid rgba(175, 190, 214, 0.2);
  height: 2px;
  margin-left: 16px;
  margin-right: 16px;
}

.grid__panel__header {
  align-items: center;
  display: flex;
  padding: 16px;
}

.grid__panel__header-title {
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
}

.grid__panel__header-title.disabled {
  color: #bbb;
  cursor: default;
}

.grid__panel__label {
  color: #575757;
  font-size: 13px;
  margin-bottom: 10px;
}

.grid__panel__panels {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .grid__panel {
    float: left;
    margin-left: 16px;
    width: calc(50% - 24px);
  }
}
.phones__button {
  background-color: transparent;
  border: 0;
  color: #0065e1;
  font-size: 12px;
  font-weight: bold;
  margin-left: 10px;
  padding: 0;
  text-transform: uppercase;
}

.phones__button:focus {
  outline: 0;
}

.phones__button:hover {
  cursor: pointer;
}

.phones__icon {
  margin-right: 16px;
}

.phones__info {
  display: flex;
  flex-wrap: wrap;
  margin-left: 30px;
}

.phones__list {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.photos__preview {
  position: relative;
}

.photos__preview__image {
  max-height: 180px;
  max-width: 180px;
}

.photos__preview__loading {
  background-color: #afbed6;
  border-radius: 0 0 5px 0;
  color: #fff;
  cursor: help;
  display: none;
  font-size: 13px;
  padding: 9px;
  position: absolute;
}

.photos__image {
  height: 100%;
  width: 100%;
}

@media only screen and (min-width: 320px) {
  .photos__items {
    margin-left: -8px;
    margin-right: -8px;
    width: calc(100% + 16px);
  }
}
@media only screen and (min-width: 640px) {
  .photos__items {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }
}
@media only screen and (min-width: 320px) {
  .photos__link,
  .photos__more,
  .photos__item {
    float: left;
    margin-left: 4px;
    margin-top: 4px;
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 567px) {
  .photos__link,
  .photos__more,
  .photos__item {
    float: left;
    margin-left: 8px;
    margin-top: 8px;
    width: calc(25% - 16px);
  }
}
.photos::after {
  clear: both;
  content: "";
  display: block;
}

.photos__link,
.photos__more {
  border-radius: 4px;
}

.photos__more__label {
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.product {
  margin-top: 48px;
  text-align: center;
}

.product__image__img {
  border-radius: 2px;
  max-width: 100%;
}

.product__name {
  font-weight: bold;
  margin-top: 8px;
}

.product__price {
  font-size: 14px;
  margin-top: 4px;
}

.product__quantity__icon {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 200ms ease;
}

.product__quantity__icon:not(.product__quantity__icon--disabled):hover {
  opacity: 1;
}

.product__quantity__icon--disabled {
  cursor: default;
  opacity: 0.2;
}

.product__quantity {
  background-color: transparent;
  border: 0;
  display: inline-block;
  font-size: 14px;
  outline: none;
  padding: 6px 0 0 0;
  text-align: center;
  width: 42px;
}

.products {
  margin-left: 8px;
  margin-top: 40px;
  width: calc(100% - 8px);
}

@media only screen and (min-width: 640px) {
  .products {
    margin-top: 0;
  }
}
.ranking-sorter {
  margin-top: 20px;
}

.rating {
  width: 100%;
}

.rating__title {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  text-align: center;
  width: 100%;
}

.rating__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rating__skill {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  text-align: center;
  margin-bottom: 6px;
}

.rating__range {
  display: flex;
  vertical-align: top;
}

.rating__star {
  float: left;
  margin-right: 5px;
  vertical-align: top;
}

.rating__estimate {
  color: rgba(0, 0, 0, 0.4);
  cursor: help;
  font-size: 12px;
  margin-left: 5px;
  margin-top: 3px;
}

.rating__active {
  display: none;
}

.rating__buttons {
  display: flex;
  justify-content: space-between;
}

.rating__button {
  width: 45%;
}

.searchbar__button {
  display: none;
  visibility: hidden;
}

.searchbar__form {
  width: 100%;
}

.searchbar__input,
.searchbar__close {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  visibility: hidden;
}

.searchbar__input:focus,
.searchbar__input:hover {
  border: 0;
  outline: none;
}

.searchbar__close:hover {
  cursor: pointer;
  opacity: 0.7;
}

.searchbar--active .searchbar__input,
.searchbar--active .searchbar__close {
  opacity: 1;
  visibility: visible;
}

.searchbar--active .searchbar__close:hover {
  opacity: 0.7;
}

@media only screen and (min-width: 960px) {
  .searchbar:hover {
    background-color: #f6f6f6;
    cursor: pointer;
  }
  .searchbar__button {
    color: #0065e1;
    display: flex;
    font-size: 14px;
    text-transform: uppercase;
    visibility: visible;
  }
  .searchbar--active {
    width: calc(100% - 345px);
  }
  .searchbar--active:hover {
    background-color: #fff;
    cursor: default;
  }
  .searchbar--active .searchbar__button {
    display: none;
    visibility: hidden;
  }
  .searchbar--active .searchbar__input {
    opacity: 1;
    visibility: visible;
  }
}
.searchbar .form__input:focus,
.searchbar .form__input:hover {
  border: 0;
}

.separator {
  border-color: rgba(87, 87, 87, 0.1);
  border-style: solid;
  border-width: 0 0 1px;
  margin-top: 40px;
  width: 100%;
}

.social-button {
  border: none;
  border-radius: 0.2em;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  display: block;
  font-size: 16px;
  line-height: 34px;
  margin: 0.2em;
  padding: 0 15px 0 46px;
  position: relative;
  text-align: left;
  white-space: nowrap;
}

.social-button:active {
  box-shadow: inset 0 0 0 32px rgba(0, 0, 0, 0.1);
}

.social-button:before {
  box-sizing: border-box;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 34px;
}

.social-button:focus {
  outline: none;
}

.social-button:hover {
  color: white;
}

.social-button--facebook {
  background-color: #4c69ba;
  background-image: linear-gradient(#4c69ba, #3b55a0);
  text-shadow: 0 -1px 0 #354c8c;
}

.social-button--facebook:before {
  background: url(/assets/icons/social_facebook-a61b8a80e248ca8ef1cc0c7dca3c4efd51776a75805a1f0a721e072c92884d2c.svg) 11px 5px no-repeat;
  border-right: #364e92 1px solid;
}

.social-button--facebook:focus,
.social-button--facebook:hover {
  background-color: #5b7bd5;
  background-image: linear-gradient(#5b7bd5, #4864b1);
}

.social-button--google {
  background: #dd4b39;
}

.social-button--google:before {
  background: url(/assets/icons/social_google-6b9ae92c5bd6f83c3d9b5458d4b06a36178c6f87fdf6639a0872bc75b8a9b634.svg) 9px 5px no-repeat;
  border-right: #bb3f30 1px solid;
}

.social-button--google:focus,
.social-button--google:hover {
  background: #e74b37;
}

.error {
  align-items: center;
  color: #afbed6;
  display: flex;
  height: calc(100vh - 80px);
  justify-content: center;
  margin-top: -20px;
}

@media only screen and (min-width: 960px) {
  .error {
    margin-top: -40px;
  }
}
.error__info {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .error__info {
    margin-left: 30px;
  }
}
.error__image {
  height: 100px;
  width: 96px;
}

@media only screen and (min-width: 960px) {
  .error__image {
    height: 200px;
    width: 180px;
  }
}
.error__status {
  font-size: 44px;
  font-weight: 900;
}

@media only screen and (min-width: 960px) {
  .error__status {
    font-size: 134px;
  }
}
.error__message {
  font-size: 18px;
  font-weight: bold;
  width: 200px;
}

@media only screen and (min-width: 960px) {
  .error__message {
    font-size: 24px;
    width: 280px;
  }
}
.system-title {
  color: rgba(0, 0, 0, 0.8);
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
}

.tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  width: 100%;
}

.tags .tag {
  align-items: center;
  background-color: #d7deea;
  border: none;
  border-radius: 50px;
  color: #535962;
  display: flex;
  font-size: 12px;
  margin: 10px;
  padding: 10px;
  position: relative;
  text-transform: uppercase;
}

.tags .tag__destroy {
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: -14px;
  top: -12px;
  width: 30px;
}

.tags .tag__destroy:hover .tag__destroy__icon {
  fill: #dc3265;
}

.tags .tag .tag__destroy__icon {
  transition: fill 0.2s ease;
}

.tags .tag__highlight {
  color: #015ac8;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 5px;
}

.page__title {
  color: #0065e1;
  font-size: 24px;
  font-weight: 900;
}

.upload__button {
  background-color: #fff;
  border-radius: 50%;
  display: block;
  height: 30px;
  position: absolute;
  right: 24px;
  top: 24px;
  transition: background-color 0.2s ease-out;
  width: 30px;
}

.upload__button:active,
.upload__button:hover {
  background-color: #e9e9e9;
}

.upload__button__image {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 640px) {
  .user-info {
    flex-direction: row;
  }
}
.user-info__avatar {
  background-color: #d8d8d8;
  border-radius: 50%;
  height: 96px;
  margin-bottom: 16px;
  width: 96px;
}

@media only screen and (min-width: 640px) {
  .user-info__avatar {
    margin-right: 20px;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.user-info__emails,
.user-info__levels {
  list-style: none;
  padding: 0;
}

@media only screen and (min-width: 640px) {
  .user-info__emails,
  .user-info__levels {
    margin: 0;
  }
}
.user-info__emails {
  margin: 5px 0;
}

.user-info__levels {
  margin: 10px 0;
}

.user-info__email,
.user-info__level {
  align-items: center;
  display: flex;
  font-size: 12px;
  margin-top: 5px;
}

.user-info__email {
  color: rgba(0, 0, 0, 0.8);
}

.user-info__level {
  color: rgba(0, 0, 0, 0.6);
}

.user-info__email-icon,
.user-info__level-icon {
  height: 12px;
  margin-right: 5px;
}

.user-top-profile__avatar {
  margin: 0 auto;
}

.user-top-profile__email {
  font-size: 13px;
  font-style: italic;
  margin-top: 4px;
  text-align: center;
}

.user-top-profile__email img {
  vertical-align: middle;
}

.user-top-profile__name {
  font-size: 17px;
  font-weight: bold;
  margin-top: 8px;
  text-align: center;
}

.validaty-message ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.validaty-message li {
  color: #9b0c0c;
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

[data-module~="events.admin.form"] .address {
  margin-left: -16px;
  margin-right: -16px;
  width: calc(100% + 32px);
}
[data-module~="events.admin.form"] .container__separator {
  margin-top: 30px;
}
[data-module~="events.admin.form"] .grid__title {
  margin-left: 16px;
}
[data-module~="events.admin.form"] .grid__tags .form-field {
  margin-top: 0;
}
[data-module~="events.admin.form"] .tags {
  float: left;
  margin-top: 24px;
}

[data-module="events.admin.index"] .from,
[data-module="events.admin.index"] .status,
[data-module="events.admin.index"] .to {
  width: calc(100% - 32px);
  float: left;
  margin-left: 16px;
}

@media only screen and (min-width: 640px) {
  [data-module="events.admin.index"] .from,
  [data-module="events.admin.index"] .status,
  [data-module="events.admin.index"] .to {
    width: calc(33.3333333333% - 21.3333333333px);
    float: left;
    margin-left: 16px;
  }
}
[data-module="events.admin.index"] .from,
[data-module="events.admin.index"] .to {
  margin-top: 20px;
}

@media only screen and (min-width: 640px) {
  [data-module="events.admin.index"] .from,
  [data-module="events.admin.index"] .to {
    margin-top: 0;
  }
}
[data-module="events.admin.show"] .event__dashboard__sell__amount {
  color: #0065e1;
  font-size: 24px;
  font-weight: bold;
  margin-top: 5px;
}
[data-module="events.admin.show"] .event__dashboard__sell__tickets {
  float: left;
  margin-left: 16px;
  width: calc(100% - 32px);
}
@media only screen and (min-width: 640px) {
  [data-module="events.admin.show"] .event__dashboard__sell__tickets {
    float: left;
    margin-left: 16px;
    width: calc(50% - 24px);
  }
}
[data-module="events.admin.show"] .event__dashboard__title {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-weight: bold;
}
[data-module="events.admin.show"] .event__resume {
  color: #575757;
  float: left;
  margin-left: 16px;
  margin-top: 24px;
  width: calc(100% - 32px);
}
@media only screen and (min-width: 960px) {
  [data-module="events.admin.show"] .event__resume {
    margin-top: 48px;
    width: 270px;
  }
}
@media only screen and (min-width: 1200px) {
  [data-module="events.admin.show"] .event__resume {
    margin-left: 40px;
    width: 300px;
  }
}
[data-module="events.admin.show"] .event__resume__edit-button {
  float: right;
}
@media only screen and (min-width: 960px) {
  [data-module="events.admin.show"] .event__resume__edit-button {
    float: right;
    margin-left: 16px;
    width: calc(33.3333333333% - 21.3333333333px);
  }
}
[data-module="events.admin.show"] .event__resume__label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-weight: bold;
}
[data-module="events.admin.show"] .event__resume__line {
  margin-top: 16px;
}
[data-module="events.admin.show"] .event__resume__line__content {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 5px;
}
[data-module="events.admin.show"] .event__resume__line__title {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-weight: bold;
}

[data-module~="events.checkout"] .checkout__countdown {
  background-color: #fff;
  border: solid 1px #afbed6;
  border-radius: 4px;
  margin: 30px auto 0;
  max-width: 459px;
  padding: 16px;
  width: calc(100% - 16px);
}
[data-module~="events.checkout"] .checkout__countdown__description {
  color: rgba(87, 87, 87, 0.6);
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}
[data-module~="events.checkout"] .checkout__countdown__time {
  color: #0065e1;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
[data-module~="events.checkout"] .checkout__title {
  color: rgba(0, 0, 0, 0.8);
  font-size: 24px;
  font-weight: 900;
  margin-top: 32px;
  text-align: center;
}
[data-module~="events.checkout"] .event__description {
  float: left;
  margin-left: 8px;
  margin-top: 30px;
  width: calc(100% - 16px);
}
[data-module~="events.checkout"] .event__description__body {
  color: #575757;
  font-size: 14px;
  line-height: 24px;
  margin-top: 24px;
  white-space: pre-line;
}
[data-module~="events.checkout"] .event__info {
  background-color: white;
  margin-left: 8px;
  margin-right: 8px;
  margin-top: -8px;
  overflow: hidden;
  padding-bottom: 50px;
}
[data-module~="events.checkout"] .event__name {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}
[data-module~="events.checkout"] .event__wrapper {
  margin: 0 auto;
}
[data-module~="events.checkout"] .form-row .form__label-checkbox {
  margin-bottom: 0;
}
@media only screen and (min-width: 567px) {
  [data-module~="events.checkout"] .checkout__title {
    font-size: 36px;
  }
  [data-module~="events.checkout"] .event__description {
    margin-top: 48px;
  }
  [data-module~="events.checkout"] .event__name {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  [data-module~="events.checkout"] .event__info {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: -16px;
  }
}
@media only screen and (min-width: 960px) {
  [data-module~="events.checkout"] .event__description {
    float: left;
    margin-left: 16px;
    width: calc(66.6666666667% - 26.666666664px);
  }
  [data-module~="events.checkout"] .event__info {
    padding-bottom: 32px;
  }
}
@media only screen and (min-width: 1200px) {
  [data-module~="events.checkout"] .event__info {
    border-radius: 0 0 12px 12px;
  }
}

[data-module~="events.index"] .card--event {
  float: left;
  margin-left: 16px;
  margin-top: 32px;
  width: calc(100% - 32px);
}
@media only screen and (min-width: 640px) {
  [data-module~="events.index"] .card--event {
    float: left;
    margin-left: 16px;
    width: calc(50% - 24px);
  }
}
@media only screen and (min-width: 960px) {
  [data-module~="events.index"] .card--event {
    float: left;
    margin-left: 16px;
    width: calc(33.3333333333% - 21.3333333333px);
  }
}
@media only screen and (min-width: 1200px) {
  [data-module~="events.index"] .card--event {
    float: left;
    margin-left: 16px;
    width: calc(25% - 20px);
  }
}
[data-module~="events.index"] .card__title--event {
  color: #575757;
  font-size: 14px;
  margin-top: 8px;
}
[data-module~="events.index"] .event__none__link {
  font-size: 15px;
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 640px) {
  [data-module~="events.index"] .cover__form__title {
    font-size: 24px;
  }
  [data-module~="events.index"] .grid__event__home__form__name {
    float: left;
    margin-left: 16px;
    width: calc(50% - 24px);
  }
}
@media only screen and (min-width: 960px) {
  [data-module~="events.index"] .cover__form {
    padding-bottom: 55px;
  }
  [data-module~="events.index"] .grid__event__home__form__name,
  [data-module~="events.index"] .grid__event__home__form__name {
    float: left;
    margin-left: 8px;
  }
  [data-module~="events.index"] .grid__event__home__form__name {
    width: calc(40% - 8px - 8px - 8px - 8px - 8px - 8px - 100px);
  }
}

[data-module="events.preview"] .content,
[data-module="events.show"] .content {
  padding-top: 0;
}
[data-module="events.preview"] .event__comment__wrapper,
[data-module="events.preview"] .event__description,
[data-module="events.preview"] .event__map,
[data-module="events.preview"] .event__participants,
[data-module="events.preview"] .event__promoter,
[data-module="events.preview"] .event__share,
[data-module="events.preview"] .event__trails,
[data-module="events.show"] .event__comment__wrapper,
[data-module="events.show"] .event__description,
[data-module="events.show"] .event__map,
[data-module="events.show"] .event__participants,
[data-module="events.show"] .event__promoter,
[data-module="events.show"] .event__share,
[data-module="events.show"] .event__trails {
  float: left;
  margin-left: 8px;
  margin-top: 50px;
  width: calc(100% - 16px);
}
[data-module="events.preview"] .event__description__body,
[data-module="events.show"] .event__description__body {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  color: #575757;
  line-height: 24px;
  margin-top: 20px;
  padding: 0 16px 0 16px;
  white-space: pre-line;
}
[data-module="events.preview"] .event__examiners,
[data-module="events.preview"] .event__prospects,
[data-module="events.show"] .event__examiners,
[data-module="events.show"] .event__prospects {
  margin-bottom: 20px;
  margin-top: 24px;
}
[data-module="events.preview"] .event__examiners__items,
[data-module="events.preview"] .event__prospects__items,
[data-module="events.show"] .event__examiners__items,
[data-module="events.show"] .event__prospects__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 5px;
  width: 100%;
}
[data-module="events.preview"] .event__info,
[data-module="events.show"] .event__info {
  background-color: white;
  overflow: hidden;
  padding-bottom: 50px;
}
[data-module="events.preview"] .event__map__picture,
[data-module="events.show"] .event__map__picture {
  margin-top: 32px;
}
[data-module="events.preview"] .event__name,
[data-module="events.show"] .event__name {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}
[data-module="events.preview"] .event__participants__line,
[data-module="events.show"] .event__participants__line {
  margin-top: 16px;
}
[data-module="events.preview"] .event__participants__line__content,
[data-module="events.show"] .event__participants__line__content {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 5px;
}
[data-module="events.preview"] .event__participants__line__title,
[data-module="events.show"] .event__participants__line__title {
  color: rgba(0, 0, 0, 0.4);
  font-size: 13px;
  font-weight: bold;
}
[data-module="events.preview"] .event__participants__title,
[data-module="events.show"] .event__participants__title {
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  font-weight: bold;
}
[data-module="events.preview"] .event__promoter__title,
[data-module="events.show"] .event__promoter__title {
  color: rgb(25, 31, 40);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
  text-transform: uppercase;
}
[data-module="events.preview"] .event__submit,
[data-module="events.show"] .event__submit {
  transition: all 300ms ease;
}
[data-module="events.preview"] .event__trail__title__name,
[data-module="events.show"] .event__trail__title__name {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.4;
}
[data-module="events.preview"] .event__trail,
[data-module="events.show"] .event__trail {
  margin-top: 20px;
  width: 100%;
}
[data-module="events.preview"] .event__trail .card__infos,
[data-module="events.show"] .event__trail .card__infos {
  margin-top: 5px;
}
[data-module="events.preview"] .event__trail__description,
[data-module="events.show"] .event__trail__description {
  color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  margin-top: 8px;
}
[data-module="events.preview"] .event__trail__time,
[data-module="events.show"] .event__trail__time {
  margin-top: 16px;
}
[data-module="events.preview"] .event__trail__time__image,
[data-module="events.preview"] .event__trail__time__text,
[data-module="events.show"] .event__trail__time__image,
[data-module="events.show"] .event__trail__time__text {
  display: inline-block;
  vertical-align: middle;
}
[data-module="events.preview"] .event__trail__time__text,
[data-module="events.show"] .event__trail__time__text {
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  margin-left: 5px;
}
[data-module="events.preview"] .event__trail__title,
[data-module="events.show"] .event__trail__title {
  font-size: 18px;
  letter-spacing: 0.1px;
}
[data-module="events.preview"] .event__participants,
[data-module="events.show"] .event__participants {
  color: #575757;
}
[data-module="events.preview"] .event__share__links,
[data-module="events.show"] .event__share__links {
  margin-top: 16px;
  text-align: center;
}
[data-module="events.preview"] .event__share__title,
[data-module="events.show"] .event__share__title {
  color: #575757;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
[data-module="events.preview"] .event__wrapper,
[data-module="events.show"] .event__wrapper {
  margin: 0 auto;
  max-width: 1180px;
}
[data-module="events.preview"] .like,
[data-module="events.show"] .like {
  float: left;
  margin-left: 16px;
  margin-top: 16px;
}
[data-module="events.preview"] .map__address,
[data-module="events.show"] .map__address {
  padding-left: 16px;
  padding-right: 16px;
}
[data-module="events.preview"] .no-tickets,
[data-module="events.show"] .no-tickets {
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}
[data-module="events.preview"] .participant__item,
[data-module="events.show"] .participant__item {
  background-color: #ccc;
  border-radius: 50%;
  display: block;
  height: 45px;
  margin-left: 4px;
  margin-right: 4px;
  margin-top: 8px;
  max-height: 45px;
  max-width: 45px;
  width: 45px;
}
[data-module="events.preview"] .participant__item img,
[data-module="events.show"] .participant__item img {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
[data-module="events.preview"] .participant__item:first-child,
[data-module="events.show"] .participant__item:first-child {
  margin-left: 0;
}
[data-module="events.preview"] .participant__item img,
[data-module="events.show"] .participant__item img {
  border-radius: 50%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  height: 45px;
  max-height: 45px;
  max-width: 45px;
  width: 45px;
}
[data-module="events.preview"] .participant__item img.lead,
[data-module="events.show"] .participant__item img.lead {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
[data-module="events.preview"] .participant__items,
[data-module="events.show"] .participant__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 5px;
}
@media only screen and (min-width: 768px) {
  [data-module="events.preview"] .event__info,
  [data-module="events.show"] .event__info {
    padding: 24px 32px 64px 32px;
  }
  [data-module="events.preview"] .event__name,
  [data-module="events.show"] .event__name {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  [data-module="events.preview"] .event__name,
  [data-module="events.show"] .event__name {
    width: calc(100% - 290px);
  }
}
@media only screen and (min-width: 768px) {
  [data-module="events.preview"] .event__comment__wrapper,
  [data-module="events.preview"] .event__description,
  [data-module="events.preview"] .event__map,
  [data-module="events.preview"] .event__participants,
  [data-module="events.preview"] .event__promoter,
  [data-module="events.preview"] .event__share,
  [data-module="events.preview"] .event__trails,
  [data-module="events.show"] .event__comment__wrapper,
  [data-module="events.show"] .event__description,
  [data-module="events.show"] .event__map,
  [data-module="events.show"] .event__participants,
  [data-module="events.show"] .event__promoter,
  [data-module="events.show"] .event__share,
  [data-module="events.show"] .event__trails {
    width: calc(100% - 300px - 16px);
  }
  [data-module="events.preview"] .event__participants,
  [data-module="events.show"] .event__participants {
    margin-top: 48px;
    width: 270px;
  }
  [data-module="events.preview"] .no-tickets,
  [data-module="events.show"] .no-tickets {
    margin-bottom: 0;
    margin-top: 96px;
  }
}
@media only screen and (min-width: 1200px) {
  [data-module="events.preview"] .event__info,
  [data-module="events.show"] .event__info {
    border-radius: 0 0 12px 12px;
  }
  [data-module="events.preview"] .event__participants,
  [data-module="events.show"] .event__participants {
    margin-left: 40px;
    width: 300px;
  }
}

[data-module="events.ticket"] .ticket__actions {
  float: left;
  margin-top: 26px;
  width: 100%;
}
[data-module="events.ticket"] .ticket__actions .button {
  float: left;
  margin-left: 16px;
  width: calc(50% - 24px);
}
[data-module="events.ticket"] .ticket__body {
  padding: 16px;
}
[data-module="events.ticket"] .ticket__event-name {
  color: #575757;
  font-size: 20px;
  font-weight: bold;
}
[data-module="events.ticket"] .ticket__label {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-weight: bold;
}
[data-module="events.ticket"] .ticket__payment {
  background-color: white;
  border-radius: 5px;
  float: left;
  margin-left: 16px;
  margin-top: 16px;
  padding: 30px;
  width: calc(100% - 32px);
}
[data-module="events.ticket"] .ticket__wrapper {
  background-color: white;
  border-radius: 5px;
  float: left;
  margin-left: 16px;
  width: calc(100% - 32px);
}
@media only screen and (min-width: 640px) {
  [data-module="events.ticket"] .ticket__actions {
    float: none;
    margin: 30px auto 0;
    max-width: 300px;
  }
  [data-module="events.ticket"] .ticket__wrapper {
    float: none;
    margin: 0 auto;
    max-width: 600px;
  }
}

[data-module~="events.tickets"] .dashboard-event__body {
  min-height: 170px;
  overflow: hidden;
  padding: 10px;
}
[data-module~="events.tickets"] .dashboard-event__cover {
  height: 85px;
}
[data-module~="events.tickets"] .dashboard-event__date {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  letter-spacing: 0.5px;
  opacity: 0.6;
}
[data-module~="events.tickets"] .dashboard-event__empty {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin: 0 auto;
  max-width: 500px;
  padding: 30px;
  text-align: center;
}
[data-module~="events.tickets"] .dashboard-event__subtitle {
  color: #aaa;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-top: 16px;
  text-transform: uppercase;
}
[data-module~="events.tickets"] .dashboard-event__text--money {
  color: #05be63;
  font-size: 13px;
  font-weight: bold;
  margin-top: 8px;
}
[data-module~="events.tickets"] .glide__arrow {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 450%;
  cursor: pointer;
  display: none;
  line-height: 1;
  padding: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 150ms ease, border 300ms ease-in-out;
}
[data-module~="events.tickets"] .glide__arrow:focus {
  outline: none;
}
[data-module~="events.tickets"] .glide__arrow--left {
  box-shadow: 0 -0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  left: -75px;
  transform: rotate(180deg);
}
[data-module~="events.tickets"] .glide__arrow--left:hover {
  box-shadow: 0 -0.25em 0.5em 0 rgba(0, 0, 0, 0.2);
}
[data-module~="events.tickets"] .glide__arrow--right {
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  right: -75px;
  top: calc(50% + 22px);
}
[data-module~="events.tickets"] .glide__arrow--right:hover {
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.2);
}
[data-module~="events.tickets"] .glide__arrow--disabled {
  opacity: 0.33;
}
[data-module~="events.tickets"] .glide__bullets {
  bottom: -25px;
  display: inline-flex;
  left: 50%;
  list-style: none;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}
[data-module~="events.tickets"] .glide__bullet {
  background-color: #dbdbdb;
  border: 2px solid transparent;
  border-radius: 50%;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  height: 9px;
  line-height: 0;
  margin: 0 0.25em;
  padding: 0;
  transition: all 300ms ease-in-out;
  width: 9px;
}
[data-module~="events.tickets"] .glide__bullet:focus {
  outline: none;
}
[data-module~="events.tickets"] .glide__bullet:hover,
[data-module~="events.tickets"] .glide__bullet:focus {
  background-color: #0065e1;
  border: 1px solid #fafafa;
}
[data-module~="events.tickets"] .glide__bullet--active {
  background-color: #0065e1;
}
[data-module~="events.tickets"] .glide--swipeable {
  cursor: -moz-grab;
  cursor: -webkit-grab;
  cursor: grab;
}
[data-module~="events.tickets"] .glide--dragging {
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
[data-module~="events.tickets"] .glide__slides {
  margin: 0;
}
[data-module~="events.tickets"] .snip {
  border: dashed 0.5px #bbb;
  float: left;
  margin-top: 10px;
  opacity: 0.6;
  width: 100%;
}
@media only screen and (min-width: 640px) {
  [data-module~="events.tickets"] .glide__arrow {
    display: block;
  }
  [data-module~="events.tickets"] .glide__bullets {
    bottom: -16px;
  }
}

[data-module~="events.trails.form"] .trails__info {
  float: left;
  margin-bottom: 24px;
  margin-top: 16px;
  text-align: center;
  width: 100%;
}

@media only screen and (min-width: 640px) {
  [data-module~="events.trails.form"] .trails__info {
    margin-bottom: 32px;
  }
}
[data-module~="events.trails.form"] .trails__info__evaluation_card,
[data-module~="events.trails.form"] .trails__info__level {
  float: left;
  font-size: 13px;
  margin-left: 16px;
  width: calc(50% - 24px);
}

[data-module~="events.trails.form"] .trails__options {
  float: left;
  margin-left: 16px;
  width: calc(100% - 32px);
}

@media only screen and (min-width: 640px) {
  [data-module~="events.trails.form"] .trails__options {
    float: none;
    margin: 24px auto 0;
    overflow: hidden;
    width: 320px;
  }
}
[data-module~="events.trails.form"] .trails__options__item {
  margin-top: 8px;
}

[data-module~="events.trails.form"] .trails__options__title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
}

[data-module~="events.trails.form"] .trail {
  float: left;
  margin-left: 16px;
  margin-top: 30px;
  width: calc(100% - 32px);
}

@media only screen and (min-width: 640px) {
  [data-module~="events.trails.form"] .trail {
    padding-left: 0;
    padding-right: 0;
  }
}
[data-module~="events.trails.form"] .trail__empty {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-weight: bold;
  margin-top: 16px;
}

[data-module~="events.trails.form"] .trail__search {
  float: left;
  margin-top: 32px;
  width: 100%;
}

@media only screen and (min-width: 640px) {
  [data-module~="events.trails.form"] .trail__search {
    float: left;
    margin-left: 16px;
    margin-top: 0;
    width: calc(50% - 24px);
  }
}
[data-module~="events.trails.form"] .trail__search:first-child {
  margin-top: 0;
}

[data-module~="events.trails.form"] .participant__item {
  margin-top: 24px;
  width: 100%;
}

[data-module~="events.trails.form"] .participant__item__avatar {
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  float: left;
  height: 45px;
  max-height: 45px;
  max-width: 45px;
  position: relative;
  width: 45px;
}

[data-module~="events.trails.form"] .participant__item__body {
  float: left;
  margin-left: 24px;
  margin-top: 6px;
}

[data-module~="events.trails.form"] .participant__item__image {
  border-radius: 50%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  height: 45px;
  max-height: 45px;
  max-width: 45px;
  width: 45px;
}

[data-module~="events.trails.form"] .participant__item__remove {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: -15px;
  top: -15px;
}

[data-module~="events.trails.form"] .participant__item__remove:active {
  border-color: white;
}

[data-module~="events.trails.form"] .participant__item__remove:focus,
[data-module~="events.trails.form"] .participant__item__remove:hover {
  border-color: #d81e50;
}

[data-module~="events.trails.form"] .participant__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 10px;
  width: 100%;
}

.email__asterisk {
  color: #888;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.5px;
}

.email__avatar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 24px;
  width: 100%;
}

.email__avatar__item {
  background-color: #ccc;
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

.email__avatar__item:first-child {
  margin-left: 0;
}

.email__avatar__item__image {
  border-radius: 50%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  height: 45px;
  width: 45px;
}

.email__body {
  background-color: #fafafa;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.email__box {
  background-color: #fff;
  border-radius: 10px;
  color: rgba(0, 0, 0, 0.6);
  font-family: helvetica;
  font-size: 14px;
  line-height: 1.4;
  margin: 40px auto 0;
  max-width: 680px;
  padding: 20px;
}

.email__button {
  align-items: center;
  border-radius: 0.25rem;
  border-width: 0;
  display: inline-flex;
  font-size: 0.875rem;
  justify-content: center;
  line-height: 1.25rem;
  padding: 0.75rem;
  padding-top: 8px;
  text-align: center;
  text-decoration: none;
  text-decoration-thickness: 0;
  text-transform: uppercase;
  width: fit-content;
}

.email__button--primary {
  background-color: #2563EB;
  color: #ffffff;
}

.email__button--primary:hover {
  background-color: #1D4ED8;
  color: #ffffff;
  cursor: pointer;
}

.email__center {
  color: #3b3b3b;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding-bottom: 8px;
  padding-top: 16px;
  text-align: center;
}

.email__center a {
  text-decoration: none;
}

.email__center a:hover {
  text-decoration: underline !important;
}

.email__center-title {
  color: #3b3b3b;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.4px;
  padding-bottom: 6px;
  padding-top: 16px;
  text-align: center;
}

.email__centralized {
  text-align: center;
}

.email__footer {
  margin-top: 32px;
  text-align: center;
}

.email__footer__logo {
  width: 100px;
}

.email__last-line {
  padding-top: 16px;
}

.email__line {
  margin-bottom: 4px;
  margin-top: 4px;
}

.email__mb {
  margin-bottom: 12px;
}

.email__mt {
  margin-top: 12px;
}

.email__quoted {
  background-color: aliceblue;
  border-radius: 4px;
  font-size: 13px;
  padding: 16px;
}

.email__subtitle {
  color: #b4c2d8;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin: 5px auto;
  text-align: center;
}

.email__table--fluid {
  width: 100%;
}

.email__table__label {
  font-weight: bold;
}

.email__table__value {
  padding-left: 8px;
  word-break: break-word;
}

.email__title {
  color: #0065e1;
  font-size: 22px;
  letter-spacing: 0.5px;
  margin: 30px auto 0;
  text-align: center;
}

.email__w-full {
  width: 100%;
}

.form-grid {
  display: flex;
  flex-direction: row;
}

.gridy-system .gridy {
  margin-top: 20px;
}

.gridy-system .gridy .pagination__status {
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  font-stretch: normal;
  font-style: italic;
  font-weight: normal;
}

.gridy-system .gridy__actions {
  display: none;
}

.gridy-system .gridy__content {
  border-radius: 4px;
  border-spacing: 0;
  width: 100%;
}

@media only screen and (min-width: 640px) {
  .gridy-system .gridy__content {
    border: 1px solid rgba(175, 190, 214, 0.2);
  }
}
.gridy-system .gridy__column {
  border-bottom: 1px solid rgba(175, 190, 214, 0.2);
  color: rgba(0, 0, 0, 0.8);
  display: flex;
  font-size: 14px;
  line-height: 30px;
  min-height: 30px;
  padding: 0;
}

@media only screen and (min-width: 640px) {
  .gridy-system .gridy__column {
    border-left: 1px solid rgba(175, 190, 214, 0.2);
    display: table-cell;
  }
  .gridy-system .gridy__column:first-child {
    border-left: 0;
  }
}
.gridy-system .gridy__column::before {
  align-items: center;
  background-color: rgba(175, 190, 214, 0.2);
  color: rgba(0, 0, 0, 0.4);
  content: attr(data-th);
  display: flex;
  justify-content: flex-end;
  min-width: 96px;
  padding-right: 10px;
  text-align: right;
}

@media only screen and (min-width: 640px) {
  .gridy-system .gridy__column::before {
    display: none;
  }
}
.gridy-system .gridy__column:last-child {
  border-bottom: 0;
}

@media only screen and (min-width: 640px) {
  .gridy-system .gridy__column:last-child {
    border-bottom: 1px solid rgba(175, 190, 214, 0.2);
  }
}
.gridy-system .gridy__column--actions {
  position: relative;
}

.gridy-system .gridy__column--date {
  text-align: right;
}

.gridy-system .gridy__column--head {
  display: none;
}

@media only screen and (min-width: 640px) {
  .gridy-system .gridy__column--head {
    background-color: rgba(175, 190, 214, 0.2);
    border-left: 1px solid rgba(175, 190, 214, 0.2);
    color: rgba(0, 0, 0, 0.4);
    display: table-cell;
    height: 34px;
  }
  .gridy-system .gridy__column--head a {
    color: rgba(0, 0, 0, 0.4);
    font-size: 13px;
    font-weight: normal;
  }
}
.gridy-system .gridy__column--money .gridy__column__text {
  text-align: right;
  text-transform: uppercase;
}

.gridy-system .gridy__column--money.c {
  color: #455876;
}

.gridy-system .gridy__column--money.d {
  color: #d81e50;
}

.gridy-system .gridy__column--number .gridy__column__text {
  text-align: right;
}

.gridy-system .gridy__column__text {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.2;
  margin: 0 8px;
  max-width: 135px;
  padding-bottom: 10px;
  padding-top: 10px;
  word-break: break-word;
}

@media only screen and (min-width: 640px) {
  .gridy-system .gridy__column__text {
    max-width: 100%;
  }
}
.gridy-system .gridy__footer {
  margin-top: 20px;
}

.gridy-system .gridy__loading__text {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  margin-left: 30px;
  margin-top: 16px;
}

.gridy-system .gridy__option {
  display: block;
}

.gridy-system .gridy__row {
  border: 1px solid rgba(175, 190, 214, 0.2);
  display: block;
}

.gridy-system .gridy__row:not(:first-child) {
  margin-top: 20px;
}

@media only screen and (min-width: 640px) {
  .gridy-system .gridy__row {
    border: none;
    display: table-row;
    height: 34px;
    margin-top: 0;
  }
}
