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

@keyframes rotation {
  from {
    transform: rotate(0deg) translate(-50%, -50%);
  }
  to {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}
.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;
}

.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);
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

@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;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.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;
  }
}
.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*=form] .padding {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 640px) {
  [data-module*=form] .padding {
    flex-direction: row;
  }
}
[data-module*=form] .nestedy--no-flex {
  display: block;
}

.trix-toolbar .trix-button-row {
  flex-wrap: wrap;
}

[data-module*=form] .form-row-one,
[data-module*=form] .form-row-three,
[data-module*=form] .form-row-four {
  display: flex;
  flex-wrap: wrap;
}

[data-module*=form] .form-row-one .form-field,
[data-module*=form] .form-row-three .form-field,
[data-module*=form] .form-row-four .form-field {
  width: 100%;
}

[data-module*=form] .form-field-wrapper {
  margin-top: 20px;
}

[data-module*=form] .form-field-wrapper::before {
  content: "";
  clear: both;
  display: table;
}

.photos__form__item {
  position: relative;
}

.photos__form__remove {
  height: 30px;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 30px;
  z-index: 1;
}

@media only screen and (min-width: 640px) {
  .photos__form__remove {
    height: 40px;
    right: -15px;
    top: -15px;
    width: 40px;
  }
}
.photos__form__row {
  display: flex;
  flex-wrap: wrap;
}

[data-module~="courses.show_unit"] .course__cover {
  display: none;
}

@media only screen and (min-width: 640px) {
  [data-module~="courses.show_unit"] .course__cover {
    display: block;
  }
}
@media only screen and (min-width: 640px) {
  [data-module~="courses.show_unit"] .course__grades {
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }
}
@media only screen and (min-width: 960px) {
  [data-module~="courses.show_unit"] .course__grades {
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
  }
}
[data-module~="courses.show_unit"] .course__level {
  border-bottom: 3px solid #fff;
  color: #575757;
  cursor: pointer;
  font-size: 9px;
  font-weight: bold;
  margin-left: 8px;
  margin-right: 8px;
  padding-bottom: 16px;
  padding-top: 19px;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.3s ease, border 0.3s ease;
}

@media only screen and (min-width: 640px) {
  [data-module~="courses.show_unit"] .course__level {
    font-size: 14px;
  }
}
[data-module~="courses.show_unit"] .course__level--active {
  border-bottom: 3px solid #0065e1;
  color: #0065e1;
}

[data-module~="courses.show_unit"] .course__level__description {
  word-wrap: break-word;
  font-size: 14px;
  white-space: pre-line;
}

[data-module~="courses.show_unit"] .course__level__name {
  font-size: 18px;
  font-weight: bold;
  margin-left: 10px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) {
  [data-module~="courses.show_unit"] .course__level__name {
    margin-left: 20px;
  }
}
[data-module~="courses.show_unit"] .course__level__title {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}

[data-module~="courses.show_unit"] .course__levels {
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 1px;
  overflow-x: scroll;
  padding-bottom: 19px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 19px;
  white-space: nowrap;
}

@media only screen and (min-width: 640px) {
  [data-module~="courses.show_unit"] .course__levels {
    align-items: center;
    display: flex;
    justify-content: space-around;
    overflow-x: auto;
    padding-bottom: 0;
    padding-top: 0;
    white-space: inherit;
  }
}
[data-module~="courses.show_unit"] .course__name {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  left: 0;
  margin-left: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

[data-module~="courses.show_unit"] .course__sidebar {
  display: none;
}

@media only screen and (min-width: 640px) {
  [data-module~="courses.show_unit"] .course__sidebar {
    display: block;
  }
}
.grade__header-column {
  background-color: rgba(175, 190, 214, 0.3);
  color: #455876;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  justify-content: flex-end;
  margin-left: 0;
  max-width: 150px;
  min-width: 115px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 10px;
}

.grade__info-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-start;
  min-height: 38px;
}

.grade__info-row--actions .grade__value-column {
  flex-direction: inherit;
  justify-content: space-evenly;
}

.grade__list {
  background-color: #fff;
  border-radius: 4px;
  border-spacing: 0;
  border-top: 0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  margin-top: 30px;
  padding: 0;
}

@media only screen and (min-width: 640px) {
  .grade__list {
    width: calc(50% - 24px);
    float: left;
    margin-left: 16px;
  }
}
@media only screen and (min-width: 960px) {
  .grade__list {
    width: calc(100% - 60px);
    float: left;
    margin-left: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .grade__list {
    width: calc(50% - 45px);
    float: left;
    margin-left: 30px;
  }
}
.grade__subtitle {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  margin-bottom: 10px;
  margin-top: 15px;
}

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

.grade__teacher__name {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
}

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

.grade__teacher__name--substitute {
  font-weight: normal;
}

.grade__value-column {
  align-self: center;
  display: flex;
  font-size: 14px;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: 0;
  margin-top: 0;
  padding: 10px;
  width: 100%;
}

.grade__value-column__line {
  line-height: 1.3;
  margin-bottom: 5px;
  margin-top: 5px;
}

[data-module~="languages.index"] .language__button {
  width: calc(100% - 32px);
  float: left;
  margin-left: 16px;
  margin-top: 16px;
}

[data-module~="languages.index"] .language__wrapper {
  margin: 32px auto;
  max-width: 200px;
  text-align: center;
}

[data-module~="link_trees.form"] .drag {
  cursor: grab;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
}

[data-module~="link_trees.form"] .message.message--form {
  margin: 0 auto;
  width: calc(100% - 32px);
}

[data-module~="link_trees.form"] .nestedy {
  margin: 0 auto;
  width: calc(100% - 32px);
}

[data-module~="link_trees.form"] .nestedy .nestedy-item:first-child .nestedy-remove {
  visibility: hidden;
}

[data-module~="link_trees.form"] .nestedy-add {
  margin: 32px auto;
}

[data-module~="link_trees.form"] .nestedy-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  display: block;
  margin-top: 16px;
  position: relative;
  width: 100%;
}

[data-module~="link_trees.form"] .nestedy-remove {
  float: right;
  margin-bottom: 16px;
  margin-right: 16px;
  margin-top: 15px;
}

[data-module~="link_trees.form"] .form__subtitle {
  font-size: 17px;
  margin-bottom: 10px;
  margin-left: 16px;
  margin-top: 20px;
}

[data-module~="link_trees.form"] .grid__description,
[data-module~="link_trees.form"] .grid__name {
  width: calc(100% - 32px);
  float: left;
  margin-left: 16px;
}

@media only screen and (min-width: 640px) {
  [data-module~="link_trees.form"] .grid__description,
  [data-module~="link_trees.form"] .grid__name {
    width: calc(50% - 24px);
    float: left;
    margin-left: 16px;
  }
}
[data-module~="link_trees.form"] .grid__link__name,
[data-module~="link_trees.form"] .grid__link__url {
  width: calc(100% - 32px);
  float: left;
  margin-left: 16px;
}

@media only screen and (min-width: 640px) {
  [data-module~="link_trees.form"] .grid__link__name,
  [data-module~="link_trees.form"] .grid__link__url {
    width: calc(50% - 24px);
    float: left;
    margin-left: 16px;
  }
}
[data-module~="link_trees.form"] .sortable__ghost {
  background-color: #c8ebfb;
  border-color: #c8ebfb;
}

.page__content {
  padding: 16px;
  max-width: 80%;
}

@media only screen and (min-width: 640px) {
  .page__content {
    padding: 30px;
  }
}
.page__title {
  color: rgba(0, 0, 0, 0.8);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}

@media only screen and (min-width: 640px) {
  .page__title {
    margin-bottom: 50px;
    margin-top: 50px;
  }
}
[data-module="products.show"] .product__description {
  color: #666;
  letter-spacing: 0.3px;
  line-height: 23px;
  margin-left: 16px;
  margin-top: 16px;
}

[data-module="products.show"] .product__description__title {
  color: #000;
  font-size: 21px;
  font-weight: 400;
  padding-bottom: 16px;
}

[data-module="products.show"] .product__image {
  margin: 0 auto;
  max-width: 480px;
  min-height: 480px;
}

[data-module="products.show"] .product__image__img {
  height: 100%;
  width: 100%;
}

[data-module="products.show"] .product__left {
  border-right-color: #eee;
  border-right-style: solid;
  border-right-width: 1px;
  float: left;
  padding: 16px;
  width: 100%;
}

@media only screen and (min-width: 640px) {
  [data-module="products.show"] .product__left {
    width: calc(100% - 80px);
  }
}
@media only screen and (min-width: 960px) {
  [data-module="products.show"] .product__left {
    width: 500px;
  }
}
@media only screen and (min-width: 1200px) {
  [data-module="products.show"] .product__left {
    width: 680px;
  }
}
[data-module="products.show"] .product__left img {
  width: 100%;
}

[data-module="products.show"] .product__name {
  line-height: 1.05;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
}

@media only screen and (min-width: 960px) {
  [data-module="products.show"] .product__name {
    font-size: 18px;
    font-weight: 600;
  }
}
[data-module="products.show"] .product__price {
  font-size: 24px;
  font-weight: 600;
  margin-top: 4px;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  [data-module="products.show"] .product__price {
    font-size: 24px;
    font-weight: normal;
    margin-top: 10px;
  }
}
[data-module="products.show"] .product__quantities {
  margin: 16px auto 24px;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

@media only screen and (min-width: 960px) {
  [data-module="products.show"] .product__quantities {
    margin: 16px auto 0;
    text-align: center;
    width: 100%;
  }
}
[data-module="products.show"] .product__quantities__buttons {
  margin: 12px auto 0;
  width: 120px;
}

@media only screen and (min-width: 640px) {
  [data-module="products.show"] .product__quantities__buttons {
    margin: 12px auto 0;
    width: 120px;
  }
}
[data-module="products.show"] .product__quantities__selected__label,
[data-module="products.show"] .product__sizes__selected__label {
  color: #333;
}

[data-module="products.show"] .product__right {
  float: left;
  width: 100%;
}

@media only screen and (min-width: 960px) {
  [data-module="products.show"] .product__right {
    min-height: 516px;
    padding-top: 24px;
    width: calc(100% - 80px - 3px - 500px);
  }
}
@media only screen and (min-width: 1200px) {
  [data-module="products.show"] .product__right {
    width: calc(100% - 80px - 3px - 680px);
  }
}
[data-module="products.show"] .product__sizes {
  margin-top: 18px;
  padding: 16px;
  text-align: center;
}

[data-module="products.show"] .product__sizes__option {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #eee;
  cursor: pointer;
  display: inline-block;
  height: 46px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 12px;
  text-align: center;
  transition: border-color 200ms ease;
  width: 55px;
}

[data-module="products.show"] .product__sizes__option:not(.product__sizes__option--disabled):hover {
  border-color: #7396ff;
}

[data-module="products.show"] .product__sizes__option .product__sizes__option--active {
  border-color: #7396ff;
}

[data-module="products.show"] .product__sizes__option .product__sizes__option--disabled {
  cursor: default;
  opacity: 0.2;
}

[data-module="products.show"] .product__sizes__options,
[data-module="products.show"] .checkout__product__quantity {
  margin-top: 12px;
}

[data-module="products.show"] .product__sizes__selected {
  text-align: center;
}

[data-module="products.show"] .product__sizes__selected__value {
  color: #333;
  font-weight: bold;
}

[data-module="products.show"] .product__thumbs {
  float: left;
}

[data-module="products.show"] .product__thumbs__image {
  border-color: #ddd;
  border-style: solid;
  border-width: 1px 0 1px 3px;
  cursor: pointer;
  float: left;
  height: 80px;
  transition: border-color 200ms ease;
  width: 80px;
}

@media only screen and (min-width: 640px) {
  [data-module="products.show"] .product__thumbs__image {
    border-width: 1px 1px 0 3px;
    clear: both;
  }
}
[data-module="products.show"] .product__thumbs__image:hover {
  border-left-color: #7396ff;
  border-left-width: 3px;
}

[data-module="products.show"] .product__thumbs__image:last-child {
  border-right-width: 1px;
}

@media only screen and (min-width: 640px) {
  [data-module="products.show"] .product__thumbs__image:last-child {
    border-bottom-width: 1px;
  }
}
[data-module="products.show"] .product__wrapper {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  float: left;
  margin-left: 8px;
  width: calc(100% - 16px);
}

[data-module~="schools.form"] .grid__school__description,
[data-module~="schools.form"] .grid__school__name,
[data-module~="schools.form"] .grid__school__photos,
[data-module~="schools.form"] .grid__school__upload-button {
  width: calc(100% - 32px);
  float: left;
  margin-left: 16px;
}

[data-module~="schools.form"] .grid__school__email,
[data-module~="schools.form"] .grid__school__site {
  width: calc(100% - 32px);
  float: left;
  margin-left: 16px;
}

@media only screen and (min-width: 640px) {
  [data-module~="schools.form"] .grid__school__email,
  [data-module~="schools.form"] .grid__school__site {
    width: calc(50% - 24px);
    float: left;
    margin-left: 16px;
  }
}
[data-module~="schools.form"] .grid__school__cancel-link,
[data-module~="schools.form"] .grid__school__create-button {
  width: calc(50% - 24px);
  float: left;
  margin-left: 16px;
}

[data-module="schools.show"] .grid--group {
  width: calc(100% - 32px);
  float: left;
  margin-left: 16px;
}

[data-module="schools.show"] .entity__units .button--facebook {
  float: left;
  margin-top: 30px;
}

[data-module="schools.show"] .entity__units .message--info {
  margin-top: 10px;
}

@media only screen and (min-width: 640px) {
  [data-module="schools.show"] .grid--group {
    width: calc(50% - 45px);
    float: left;
    margin-left: 30px;
  }
}
[data-module="settings.graduations"] .graduation {
  float: left;
  margin-left: 16px;
  margin-top: 4px;
  width: calc(100% - 32px);
}

@media only screen and (min-width: 640px) {
  [data-module="settings.graduations"] .graduation {
    margin-top: 16px;
  }
}
[data-module="settings.graduations"] .graduation__avatar__wrapper {
  display: inline-block;
  float: left;
  height: 60px;
  margin-top: 24px;
  position: relative;
  width: 60px;
}

[data-module="settings.graduations"] .graduation__body {
  float: left;
  margin-left: 16px;
  margin-top: 25px;
  width: calc(100% - 87px);
}

[data-module="settings.graduations"] .graduation__body__level {
  font-size: 14px;
}

[data-module="settings.graduations"] .graduation__body__options {
  font-size: 13px;
  font-style: italic;
  margin-top: 4px;
}

[data-module="settings.graduations"] .graduation__empty {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-weight: bold;
  margin: 16px auto 0;
  text-align: center;
}

[data-module="settings.graduations"] .graduation__item {
  float: left;
  margin-top: 12px;
  width: 100%;
}

@media only screen and (min-width: 640px) {
  [data-module="settings.graduations"] .graduation__item {
    float: left;
    margin-left: 16px;
    width: calc(50% - 24px);
  }
}
[data-module="settings.graduations"] .graduation__options {
  float: left;
  margin-left: 16px;
  margin-top: 20px;
  width: calc(100% - 32px);
}

@media only screen and (min-width: 640px) {
  [data-module="settings.graduations"] .graduation__options {
    float: none;
    margin: 24px auto 0;
    overflow: hidden;
    padding: 32px 16px;
    width: 600px;
  }
}
[data-module="settings.graduations"] .graduation__options__item {
  margin-top: 8px;
}

@media only screen and (min-width: 640px) {
  [data-module="settings.graduations"] .graduation__options__profile {
    float: left;
    margin-left: 16px;
    width: calc(50% - 24px);
  }
}
[data-module="settings.graduations"] .graduation__options__role {
  margin-top: 20px;
}

@media only screen and (min-width: 640px) {
  [data-module="settings.graduations"] .graduation__options__role {
    float: left;
    margin-left: 16px;
    margin-top: 0;
    width: calc(50% - 24px);
  }
}
[data-module="settings.graduations"] .graduation__options__title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
}

[data-module="settings.graduations"] .graduation__search {
  float: left;
  margin-left: 16px;
  width: calc(100% - 32px);
}

@media only screen and (min-width: 640px) {
  [data-module="settings.graduations"] .graduation__search {
    float: none;
    margin: 35px auto 0;
    width: 400px;
  }
}
[data-module="settings.subscriptions"] .invoices__line {
  margin-top: 4px;
}

[data-module="settings.subscriptions"] .subscription__item {
  border-radius: 3px;
  border: 1px solid #e9e9e9;
  font-size: 14px;
  margin-top: 18px;
  margin: 24px 0;
  overflow: hidden;
  padding: 10px;
}

[data-module="settings.subscriptions"] .subscription__item__line {
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 8px;
}

[data-module="settings.subscriptions"] .subscription__item__title {
  font-size: 17px;
  font-weight: bold;
}

[data-module="sites.index"] .home__explanation__description {
  color: rgba(0, 0, 0, 0.5);
  display: block;
  margin-top: 8px;
  margin: 16px auto 0;
  max-width: 480px;
  text-align: center;
}

[data-module="units.checkout"] .avatar--checkout {
  display: block;
  margin: 0 auto;
}

[data-module="units.checkout"] .checkout__title {
  display: block;
  font-size: 18px;
  margin-top: 15px;
  text-align: center;
}

[data-module="units.checkout"] .checkout__total {
  background-color: #eee;
  border-radius: 4px;
  color: #575757;
  font-size: 18px;
  font-weight: bold;
  margin-left: 16px;
  margin-right: 16px;
  margin-top: 32px;
  padding: 16px;
  text-align: center;
  width: 100%;
}

[data-module="units.show"] .product {
  background-color: white;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  padding: 8px;
  transition: box-shadow 0.2s ease-in-out;
}

[data-module="units.show"] .product:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 640px) {
  [data-module="units.show"] .product {
    float: left;
    margin-left: 16px;
    width: calc(50% - 24px);
  }
}
@media only screen and (min-width: 1200px) {
  [data-module="units.show"] .product {
    float: left;
    margin-left: 16px;
    width: calc(25% - 20px);
  }
}
[data-module="units.show"] .products-button {
  margin: 30px auto 0;
  max-width: 320px;
}

@media only screen and (min-width: 640px) {
  [data-module="units.show"] .product__image__img {
    height: 256px;
    width: 256px;
  }
}
@media only screen and (min-width: 960px) {
  [data-module="units.show"] .product__image__img {
    height: 236px;
    width: 236px;
  }
}
@media only screen and (min-width: 1200px) {
  [data-module="units.show"] .product__image__img {
    height: 130px;
    width: 130px;
  }
}
[data-module="units.show"] .product__items::after {
  clear: both;
  content: "";
  display: block;
}

@media only screen and (min-width: 640px) {
  [data-module="units.show"] .product__items {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }
}
.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: flex;
  font-size: 0.875rem;
  justify-content: center;
  line-height: 1.25rem;
  padding: 0.75rem;
  text-align: center;
  text-decoration: none;
  text-decoration-thickness: 0;
  text-transform: uppercase;
}

.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: 8px;
  padding-top: 16px;
  text-align: center;
}

.email__centralized {
  display: flex;
  justify-content: center;
  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%;
}

.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;
  }
}
